 :root {
      --hot-pink: #ff3d8b;
      --deep-pink: #d9156f;
      --purple: #5b2cff;
      --dark: #120817;
      --dark-2: #1c0f25;
      --light: #ffffff;
      --cream: #fff7fb;
      --muted: #6f6175;
      --border: rgba(255, 61, 139, 0.22);
      --shadow: 0 20px 70px rgba(18, 8, 23, 0.18);
      --radius: 26px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--dark);
      background: var(--cream);
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(1140px, 92%);
      margin: 0 auto;
    }

    .top-banner {
      background: var(--dark);
      color: var(--light);
      font-size: 14px;
      text-align: center;
      padding: 10px 16px;
    }

    .top-banner a {
      color: #ffd6e8;
      font-weight: 700;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 999;
      background: rgba(255, 247, 251, 0.88);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(18, 8, 23, 0.08);
    }

    .nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .logo {
      display: flex;
      flex-direction: column;
      line-height: 1.05;
      font-weight: 900;
      letter-spacing: -1px;
    }

    .logo span:first-child {
      font-size: 31px;
      background: linear-gradient(135deg, var(--hot-pink), var(--purple));
      -webkit-background-clip: text;
      color: transparent;
    }

    .logo span:last-child {
      font-size: 12px;
      letter-spacing: 2px;
      color: var(--muted);
      text-transform: uppercase;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 24px;
      color: var(--muted);
      font-weight: 700;
      font-size: 14px;
    }

    nav a:hover {
      color: var(--deep-pink);
    }

    .menu-button {
      display: none;
      border: 1px solid rgba(18, 8, 23, .14);
      background: white;
      border-radius: 12px;
      padding: 8px 12px;
      font-size: 22px;
    }

    .btn {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      padding: 14px 22px;
      border-radius: 999px;
      font-weight: 900;
      border: none;
      cursor: pointer;
      transition: .25s ease;
      text-align: center;
    }

    .btn-primary {
      color: white;
      background: linear-gradient(135deg, var(--hot-pink), var(--purple));
      box-shadow: 0 16px 34px rgba(255, 61, 139, .32);
    }

    .btn-primary:hover,
    .btn-secondary:hover {
      transform: translateY(-2px);
    }

    .btn-secondary {
      color: var(--deep-pink);
      background: white;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }

    .hero {
      position: relative;
      overflow: hidden;
      /*padding: 92px 0 72px;*/
		 padding: 32px 0 72px;
      background:
        radial-gradient(circle at 80% 10%, rgba(91, 44, 255, .18), transparent 32%),
        radial-gradient(circle at 15% 20%, rgba(255, 61, 139, .18), transparent 28%),
        linear-gradient(180deg, #fff7fb 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(--deep-pink);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .8px;
      margin-bottom: 22px;
      box-shadow: 0 10px 30px rgba(18, 8, 23, .06);
    }

    h1 {
      font-size: clamp(44px, 7vw, 76px);
      line-height: .95;
      letter-spacing: -3px;
      margin-bottom: 22px;
    }

    .highlight {
      background: linear-gradient(135deg, var(--hot-pink), var(--purple));
      -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: 700;
    }

    .trust-row span::before {
      content: '✓';
      color: var(--hot-pink);
      margin-right: 6px;
    }

    .phone-card {
      background: white;
      border: 1px solid rgba(18, 8, 23, .08);
      border-radius: 38px;
      padding: 30px;
      box-shadow: var(--shadow);
      position: relative;
    }

    .phone-screen {
      min-height: 520px;
      border-radius: 32px;
      background:
        radial-gradient(circle at 50% 10%, rgba(255, 61, 139, .28), transparent 30%),
        linear-gradient(180deg, #26102f, #120817);
      color: white;
      padding: 34px 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      position: relative;
    }

    .phone-screen::before {
      content: '☎';
      position: absolute;
      right: -18px;
      top: 44px;
      font-size: 210px;
      color: rgba(255,255,255,.05);
      transform: rotate(-10deg);
    }

    .screen-content {
      position: relative;
      z-index: 1;
    }

    .screen-content h2 {
      font-size: 34px;
      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: 20px;
    }

    .number-box small {
      color: #ffd6e8;
      display: block;
      margin-bottom: 4px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .number-box strong {
      font-size: 28px;
    }

    section {
      padding: 82px 0;
    }

    .section-header {
      max-width: 760px;
      margin-bottom: 42px;
    }

    .section-header.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .kicker {
      color: var(--deep-pink);
      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(18, 8, 23, .08);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: 0 14px 34px rgba(18, 8, 23, .06);
    }

    .icon {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(255,61,139,.13), rgba(91,44,255,.13));
      display: grid;
      place-items: center;
      color: var(--deep-pink);
      font-size: 25px;
      margin-bottom: 20px;
    }

    .card h3 {
      font-size: 22px;
      margin-bottom: 10px;
    }

    .card p,
    .card li {
      color: var(--muted);
    }

    .split {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 42px;
      align-items: center;
    }

    .dark-section {
      color: white;
      background:
        radial-gradient(circle at 20% 10%, rgba(255,61,139,.2), transparent 28%),
        linear-gradient(180deg, var(--dark), var(--dark-2));
    }

    .dark-section .section-header p,
    .dark-section .card p,
    .dark-section li {
      color: #d9cbdc;
    }

    .dark-section .card {
      background: rgba(255,255,255,.06);
      border-color: rgba(255,255,255,.1);
    }

    .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(18, 8, 23, .06);
    }

    .step-number {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--hot-pink), var(--purple));
      color: white;
      font-weight: 900;
    }

    .step p {
      color: var(--muted);
    }

    .cta-band {
      padding: 34px 0;
      background: linear-gradient(135deg, var(--hot-pink), var(--purple));
      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: #ffe8f2;
    }

    .cta-band .btn {
      background: white;
      color: var(--deep-pink);
    }

    .faq {
      display: grid;
      gap: 14px;
      max-width: 880px;
      margin: 0 auto;
    }

    details {
      background: white;
      border: 1px solid rgba(18, 8, 23, .08);
      border-radius: 20px;
      padding: 20px 22px;
      box-shadow: 0 10px 26px rgba(18, 8, 23, .05);
    }

    summary {
      cursor: pointer;
      font-weight: 900;
      font-size: 18px;
    }

    details p {
      margin-top: 12px;
      color: var(--muted);
    }

    footer {
      background: var(--dark);
      color: #d9cbdc;
      padding: 44px 0;
      font-size: 14px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr .8fr;
      gap: 26px;
      margin-bottom: 28px;
    }

    footer a {
      color: #ffd6e8;
    }

    .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, 61, 139, .38);
    }
	.fkbtop-d  {
		  display: block;
	  }
	.fkbbot-d  {
		  display: block;
	  }
	 .fkbtop-m  {
		  display: none;
	  }
	 .fkbbot-m  {
		  display: none;
	  }

    @media (max-width: 920px) {
      nav {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background: white;
        padding: 24px 4%;
        border-bottom: 1px solid rgba(18, 8, 23, .08);
      }

      nav.active {
        display: flex;
      }

      .menu-button {
        display: block;
      }

      .hero-grid,
      .split,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        /*padding-top: 64px;*/
		padding-top: 24px;
      }

      .phone-screen {
        min-height: 420px;
      }

      .cards {
        grid-template-columns: repeat(2, 1fr);
      }
	.fkbtop-d  {
		  display: none;
	  }
		.fkbbot-d {
		  display: none;
	  }
	 .fkbtop-m  {
		  display: block;
	  }
	 .fkbbot-m {
		  display: block;
	  }
    }

    @media (max-width: 620px) {
      .top-banner {
        font-size: 13px;
      }

      h1 {
        letter-spacing: -2px;
      }

      .hero-actions .btn,
      .cta-band .btn {
        width: 100%;
      }

      .cards {
        grid-template-columns: 1fr;
      }

      section {
        padding: 66px 0;
      }

      .phone-card {
        padding: 14px;
        border-radius: 28px;
      }

      .phone-screen {
        border-radius: 24px;
        min-height: 390px;
      }

      .sticky-call {
        display: inline-flex;
      }
	  .fkbtop-d {
		  display: none;
	  }
		.fkbbot-d {
		  display: none;
	  }
	 .fkbtop-m {
		  display: block;
	  }
	 .fkbbot-m {
		  display: block;
	  }
      body {
        padding-bottom: 82px;
      }
    }