:root {
      --blue: #00b8ff;
      --blue-dark: #0066ff;
      --lime: #b6ff3b;
      --orange: #ff8a1f;
      --black: #05070c;
      --charcoal: #0d1320;
      --slate: #121b2b;
      --cream: #f6f9ff;
      --white: #ffffff;
      --muted: #6b7280;
      --border: rgba(0, 184, 255, 0.24);
      --shadow: 0 24px 70px rgba(5, 7, 12, 0.18);
      --radius: 18px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--cream);
      color: var(--black);
      line-height: 1.6;
    }
    a { color: inherit; text-decoration: none; }
    .container { width: min(1160px, 92%); margin: 0 auto; }

    .top-banner {
      background: var(--black);
      color: var(--white);
      text-align: center;
      padding: 10px 16px;
      font-size: 14px;
    }
    .top-banner a { color: #d8f4ff; font-weight: 900; }

    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 247, 251, 0.9);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(8, 5, 13, 0.08);
    }
    .nav {
      min-height: 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .logo {
      display: flex;
      flex-direction: column;
      line-height: 1.05;
      font-weight: 950;
      letter-spacing: -1.4px;
    }
    .logo-main {
      font-size: 32px;
      background: linear-gradient(135deg, var(--blue), var(--orange));
      -webkit-background-clip: text;
      color: transparent;
    }
    .logo-sub {
      font-size: 11px;
      letter-spacing: 2.5px;
      color: var(--muted);
      text-transform: uppercase;
      margin-top: 4px;
    }
    nav {
      display: flex;
      align-items: center;
      gap: 24px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
    }
    nav a:hover { color: var(--blue-dark); }
    .menu-button {
      display: none;
      border: 1px solid rgba(8,5,13,.14);
      background: white;
      border-radius: 12px;
      padding: 8px 12px;
      font-size: 22px;
      cursor: pointer;
    }
	/* sub-Menu - Begin */
	/*.submenu-toggle {
	  text-decoration: none;
	  color: #222;
	  font-size: 16px;
	  background: none;
	  border: none;
	  text-align: left;
	  cursor: pointer;
	  padding: 12px 14px;
	  border-radius: 6px;
	  width: 100%;
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	}
	
	#navLinks a:hover,
	.submenu-toggle:hover {
	  background: #f3f3f3;
	}
	
	.has-submenu {
	  width: 100%;
	}
	
	.submenu {
	  display: none;
	  flex-direction: column;
	  margin-top: 5px;
	  margin-left: 10px;
	  border-left: 2px solid #ddd;
	  padding-left: 10px;
	}
	
	.has-submenu.active .submenu {
	  display: flex;
	}
	
	.arrow {
	  font-size: 12px;
	  transition: transform 0.3s ease;
	}
	
	.has-submenu.active .arrow {
	  transform: rotate(180deg);
	}*/
	/* submenu -  END */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 999px;
      padding: 14px 23px;
      font-weight: 900;
      transition: .25s ease;
      text-align: center;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      background: linear-gradient(135deg, var(--blue), var(--orange));
      color: white;
      box-shadow: 0 16px 36px rgba(255, 47, 143, .32);
    }
    .btn-secondary {
      background: white;
      color: var(--blue-dark);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 92px 0 72px;
      background:
        radial-gradient(circle at 80% 12%, rgba(0,184,255,.22), transparent 34%),
        radial-gradient(circle at 12% 20%, rgba(255,138,31,.16), transparent 30%),
        linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      align-items: center;
      gap: 54px;
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 13px;
      border-radius: 999px;
      background: white;
      border: 1px solid var(--border);
      color: var(--blue-dark);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .8px;
      margin-bottom: 22px;
      box-shadow: 0 10px 30px rgba(8, 5, 13, .06);
		text-align: center;
    }
    h1 {
      font-size: clamp(44px, 7vw, 78px);
      line-height: .95;
      letter-spacing: -3px;
      margin-bottom: 22px;
    }
    .highlight {
      background: linear-gradient(135deg, var(--blue), var(--orange));
      -webkit-background-clip: text;
      color: transparent;
    }
    .hero p {
      color: var(--muted);
      font-size: 20px;
      max-width: 620px;
      margin-bottom: 30px;
    }
    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 26px;
    }
    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
    }
    .trust-row span::before {
      content: '✓';
      color: var(--blue);
      margin-right: 6px;
    }

    .call-card {
      background: white;
      border: 1px solid rgba(8, 5, 13, .08);
      border-radius: 38px;
      padding: 30px;
      box-shadow: var(--shadow);
    }
    .call-screen {
      min-height: 520px;
      border-radius: 32px;
      color: white;
      background:
        radial-gradient(circle at 50% 8%, rgba(0,184,255,.26), transparent 30%),
        linear-gradient(180deg, #121b2b, #05070c);
      padding: 34px 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      position: relative;
    }
    .call-screen::before {
      content: '24/7';
      position: absolute;
      right: -18px;
      top: 52px;
      font-size: 116px;
      line-height: 1;
      color: rgba(255,255,255,.05);
      transform: rotate(-8deg);
      font-weight: 950;
    }
    .screen-content { position: relative; z-index: 1; }
    .screen-content h2 {
      font-size: 36px;
      line-height: 1.05;
      margin-bottom: 14px;
    }
    .number-box {
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 24px;
      padding: 22px;
      margin-top: 18px;
    }
    .number-box small {
      color: #d8f4ff;
      display: block;
      margin-bottom: 4px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .number-box strong { font-size: 29px; }

    section { padding: 82px 0; }
    .section-header {
      max-width: 790px;
      margin: 0 auto 42px;
      text-align: center;
    }
    .kicker {
      color: var(--blue-dark);
      text-transform: uppercase;
      letter-spacing: 1.6px;
      font-weight: 900;
      font-size: 13px;
      margin-bottom: 10px;
    }
    h2 {
      font-size: clamp(34px, 5vw, 54px);
      line-height: 1.02;
      letter-spacing: -2px;
      margin-bottom: 16px;
    }
    .section-header p { color: var(--muted); font-size: 18px; }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .card {
      background: white;
      border: 1px solid rgba(8, 5, 13, .08);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: 0 14px 34px rgba(8, 5, 13, .06);
    }
    .icon {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(255,47,143,.13), rgba(109,53,255,.13));
      display: grid;
      place-items: center;
      color: var(--blue-dark);
      font-size: 25px;
      margin-bottom: 20px;
    }
    .card h3 { font-size: 22px; margin-bottom: 10px; }
    .card p, .card li { color: var(--muted); }

    .dark-section {
      color: white;
      background:
        radial-gradient(circle at 18% 12%, rgba(0,184,255,.24), transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(255,138,31,.14), transparent 26%),
        linear-gradient(180deg, var(--black), var(--charcoal));
    }
    .dark-section .section-header p,
    .dark-section .card p,
    .dark-section li { color: #dfd3e5; }
    .dark-section .card {
      background: rgba(255,255,255,.06);
      border-color: rgba(255,255,255,.1);
    }

    .split {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 42px;
      align-items: center;
    }
    .step-list { display: grid; gap: 14px; }
    .step {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 16px;
      background: white;
      border-radius: 22px;
      padding: 20px;
      box-shadow: 0 14px 34px rgba(8, 5, 13, .06);
    }
    .step-number {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--blue), var(--orange));
      color: white;
      font-weight: 900;
    }
    .step p { color: var(--muted); }

    .cities {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .city {
      background: white;
      border: 1px solid rgba(8,5,13,.08);
      border-radius: 18px;
      padding: 16px;
      text-align: center;
      font-weight: 900;
      color: var(--blue-dark);
      box-shadow: 0 10px 24px rgba(8,5,13,.05);
    }

    .cta-band {
      padding: 34px 0;
      background: linear-gradient(135deg, var(--blue), var(--orange));
      color: white;
    }
    .cta-band-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      flex-wrap: wrap;
    }
    .cta-band h2 {
      font-size: clamp(28px, 4vw, 42px);
      margin-bottom: 4px;
    }
    .cta-band p { color: #e8f8ff; }
    .cta-band .btn { background: white; color: var(--blue-dark); }

    .faq {
      display: grid;
      gap: 14px;
      max-width: 900px;
      margin: 0 auto;
    }
    details {
      background: white;
      border: 1px solid rgba(8, 5, 13, .08);
      border-radius: 20px;
      padding: 20px 22px;
      box-shadow: 0 10px 26px rgba(8, 5, 13, .05);
    }
    summary {
      cursor: pointer;
      font-weight: 900;
      font-size: 18px;
    }
    details p { margin-top: 12px; color: var(--muted); }
	.fkbtop-d {
		  display: block;
	  }
		.fkbbot-d {
		  display: block;
	  }
	 .fkbtop-m {
		  display: none;
	  }
	 .fkbbot-m {
		  display: none;
	  }
    footer {
      background: var(--black);
      color: #dfd3e5;
      padding: 44px 0;
      font-size: 14px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr .95fr .95fr .95fr;
      gap: 26px;
      margin-bottom: 28px;
    }
    footer a { color: #d8f4ff; }
    .footer-links { display: grid; gap: 8px; }

    .sticky-call {
      display: none;
      position: fixed;
      bottom: 14px;
      left: 4%;
      right: 4%;
      z-index: 1000;
      box-shadow: 0 18px 40px rgba(255, 47, 143, .38);
    }
	

    @media (max-width: 920px) {
      .menu-button { display: block; }
      nav {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background: white;
        padding: 24px 4%;
        border-bottom: 1px solid rgba(8,5,13,.08);
      }
      nav.active { display: flex; }
      .hero-grid, .split, .footer-grid { grid-template-columns: 1fr; }
      .hero { padding-top: 24px; }
      .call-screen { min-height: 420px; }
      .cards { grid-template-columns: repeat(2, 1fr); }
      .cities { grid-template-columns: repeat(3, 1fr); }
		.fkbtop-d {
		  display: none;
	  }
		.fkbbot-d {
		  display: none;
	  }
	 .fkbtop-m {
		  display: block;
	  }
	 .fkbbot-m {
		  display: block;
	  }
    }

	/* DESKTOP */
	/*@media (min-width: 768px) {
	  #navLinks {
	    flex-direction: row;
	    align-items: center;
	    gap: 20px;
	  }
	
	  .has-submenu {
	    position: relative;
	    width: auto;
	  }
	
	  .submenu-toggle {
	    width: auto;
	  }
	
	  .submenu {
	    position: absolute;
	    top: 100%;
	    left: 0;
	    min-width: 220px;
	    background: #fff;
	    border: 1px solid #ddd;
	    border-radius: 8px;
	    padding: 10px;
	    margin-left: 0;
	    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	    z-index: 1000;
	  }
	
	  .submenu a {
	    width: 100%;
	  }
	}*/

    @media (max-width: 620px) {
      .top-banner { font-size: 13px; }
      h1 { letter-spacing: -2px; }
      .hero-actions .btn, .cta-band .btn { width: 100%; }
      .cards, .cities { grid-template-columns: 1fr; }
      section { padding: 26px 0; }
      .call-card { padding: 14px; border-radius: 28px; }
      .call-screen { border-radius: 24px; min-height: 390px; }
      .sticky-call { display: inline-flex; }
		
      body { padding-bottom: 82px; }
		.fkbtop-d {
		  display: none;
	  }
		.fkbbot-d {
		  display: none;
	  }
	 .fkbtop-m {
		  display: block;
	  }
	 .fkbbot-m {
		  display: block;
	  }
    }