  :root {
      --ink: #111827;
      --muted: #64748b;
      --soft: #f8fafc;
      --line: #e2e8f0;
      --accent: #e11d48;
      --accent-dark: #9f1239;
      --warm: #fff1f2;
      --dark: #0f172a;
  }

  * {
      scroll-behavior: smooth;
  }

  body {
      font-family: "DM Sans", sans-serif;
      color: var(--ink);
      background: #fff;
      padding-top: 65px;
  }

  h1,
  h2,
  h3,
  h4 {
      font-family: "Playfair Display", serif;
      letter-spacing: -.02em;
  }

  .navbar {
      background: rgba(255, 255, 255, .92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(226, 232, 240, .8);
      padding: 14px 0;
  }

  .navbar-brand {
      font-family: "Playfair Display", serif;
      font-size: 1.8rem;
      font-weight: 700;
    
  }

  .brand-dot {
      color: var(--accent);
  }

  .nav-link {
      color: #475569;
      font-weight: 600;
      margin: 0 8px;
  }

  .nav-link:hover {
      color: var(--accent);
  }

  .btn-x {
      background: var(--accent);
      color: #fff;
      border-radius: 999px;
      padding: 13px 24px;
      font-weight: 700;
      border: 0;
      box-shadow: 0 12px 25px rgba(225, 29, 72, .2);
  }

  .btn-x:hover {
      background: var(--accent-dark);
      color: #fff;
      transform: translateY(-2px);
  }

  .btn-soft {
      border: 1px solid var(--line);
      color: var(--ink);
      border-radius: 999px;
      padding: 12px 22px;
      font-weight: 700;
      background: #fff;
  }

  .btn-soft:hover {
      border-color: var(--accent);
      color: var(--accent);
  }

  .hero {
      min-height: 760px;
      padding: 150px 0 90px;
      background:
          radial-gradient(circle at 10% 10%, rgba(251, 113, 133, .15), transparent 28%),
          linear-gradient(135deg, #fff 0%, #fff7f8 50%, #f8fafc 100%);
      overflow: hidden;
  }

  .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid #fecdd3;
      color: var(--accent-dark);
      font-size: .82rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
  }

  .hero h1 {
      font-size: clamp(3rem, 6vw, 5.8rem);
      line-height: .98;
      max-width: 760px;
      margin: 25px 0;
  }

  .hero h1 span {
      color: var(--accent);
  }

  .hero-copy {
      color: var(--muted);
      font-size: 1.15rem;
      line-height: 1.8;
      max-width: 620px;
  }

  .hero-image-wrap {
      position: relative;
      min-height: 570px;
  }

  .hero-image {
      width: 100%;
      height: 570px;
      object-fit: cover;
      border-radius: 38px;
      box-shadow: 0 30px 80px rgba(15, 23, 42, .2);
  }

  .floating-stat {
      position: absolute;
      background: rgba(255, 255, 255, .95);
      border: 1px solid rgba(255, 255, 255, .8);
      border-radius: 18px;
      padding: 16px;
      box-shadow: 0 18px 40px rgba(15, 23, 42, .15);
  }

  .stat-one {
      left: -25px;
      bottom: 50px;
  }

  .stat-two {
      right: -20px;
      top: 45px;
  }

  .avatar-stack img {
      width: 34px;
      height: 34px;
      object-fit: cover;
      border-radius: 50%;
      border: 2px solid #fff;
      margin-left: -10px;
  }

  .section {
      padding: 105px 0;
  }

  .section-soft {
      background: var(--soft);
  }

  .section-kicker {
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: .8rem;
      font-weight: 800;
  }

  .section-title {
      font-size: clamp(2.4rem, 4vw, 4rem);
      line-height: 1.05;
      margin: 12px 0 18px;
  }

  .section-lead {
      color: var(--muted);
      line-height: 1.8;
      font-size: 1.05rem;
  }

  .feature-card {
      height: 100%;
      padding: 30px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: #fff;
      transition: .3s ease;
  }

  .feature-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 20px 45px rgba(15, 23, 42, .08);
  }

  .feature-icon {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      background: var(--warm);
      color: var(--accent);
      font-size: 1.5rem;
      margin-bottom: 22px;
  }

  .feature-card p,
  .step-card p,
  .profile-card small,
  .quote-card p {
      color: var(--muted);
      line-height: 1.75;
  }

  .step-card {
      position: relative;
      height: 100%;
      padding: 30px;
      border-radius: 24px;
      background: #fff;
      border: 1px solid var(--line);
  }

  .step-number {
      width: 45px;
      height: 45px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--dark);
      color: #fff;
      font-weight: 800;
      margin-bottom: 22px;
  }

  .profile-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 24px;
      overflow: hidden;
      height: 100%;
      transition: .3s ease;
  }

  .profile-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(15, 23, 42, .1);
  }

  .profile-card img {
      width: 100%;
      height: 310px;
      object-fit: cover;
  }

  .profile-body {
      padding: 20px;
  }

  .interest {
      display: inline-block;
      padding: 6px 10px;
      border-radius: 999px;
      background: var(--soft);
      color: #475569;
      font-size: .75rem;
      margin: 3px;
  }

  .story-image {
      width: 100%;
            object-fit: cover;
      border-radius: 30px;
  }

  .check-list {
      padding: 0;
      list-style: none;
  }

  .check-list li {
      display: flex;
      gap: 12px;
      margin: 18px 0;
      color: #475569;
  }

  .check-list i {
      color: var(--accent);
  }

  .quote-card {
      height: 100%;
      padding: 30px;
      border-radius: 24px;
      background: #fff;
      border: 1px solid var(--line);
  }

  .stars {
      color: #f59e0b;
      letter-spacing: 3px;
      margin-bottom: 18px;
  }

  .quote-user {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 24px;
  }

  .quote-user img {
      width: 48px;
      height: 48px;
      object-fit: cover;
      border-radius: 50%;
  }

  .banner {
      position: relative;
      min-height: 590px;
      background: url("assets/image/xflirtbg1.webp") center/cover;
      display: flex;
      align-items: center;
      overflow: hidden;
  }

  .banner::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(15, 23, 42, .9), rgba(15, 23, 42, .35));
  }

  .banner-content {
      position: relative;
      z-index: 1;
      max-width: 700px;
      color: #fff;
  }

  .banner-content p {
      color: rgba(255, 255, 255, .78);
      line-height: 1.8;
  }

  .faq .accordion-item {
      border: 1px solid var(--line);
      margin-bottom: 12px;
      border-radius: 16px !important;
      overflow: hidden;
  }

  .faq .accordion-button {
      font-weight: 700;
      padding: 22px;
  }

  .faq .accordion-button:not(.collapsed) {
      color: var(--accent-dark);
      background: var(--warm);
      box-shadow: none;
  }

  .final-cta {
      padding: 100px 0;
      background: var(--dark);
      color: #fff;
  }

  footer {
      background: #020617;
      color: #cbd5e1;
      padding: 70px 0 25px;
  }

  footer a {
      color: #cbd5e1;
      text-decoration: none;
  }

  footer a:hover {
      color: #fff;
  }

  .footer-title {
      color: #fff;
      font-weight: 700;
      margin-bottom: 18px;
  }

  @media (max-width: 991px) {
      .hero {
          padding-top: 125px;
      }

      .hero-image-wrap {
          margin-top: 50px;
      }

      .stat-one {
          left: 15px;
      }

      .stat-two {
          right: 15px;
      }
  }

  @media (max-width: 575px) {
      .hero {
          min-height: auto;
          padding-bottom: 70px;
      }

      .hero-image {
          height: 450px;
      }

      .hero-image-wrap {
          min-height: 450px;
      }

      .floating-stat {
          transform: scale(.9);
      }

      .section {
          padding: 75px 0;
      }
  }