  :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 SECTION
========================================= */

.hero-section {
    min-height: 760px;
    padding: 110px 0 100px;
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 92, 120, 0.12), transparent 30%),
        radial-gradient(circle at 10% 80%, rgba(255, 180, 190, 0.12), transparent 30%),
        #fffafa;
}

/* =========================================
   BACKGROUND GLOW
========================================= */

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.hero-glow-one {
    width: 260px;
    height: 260px;
    top: 5%;
    right: 5%;
    background: rgba(255, 99, 132, 0.12);
}

.hero-glow-two {
    width: 220px;
    height: 220px;
    bottom: 5%;
    left: 0;
    background: rgba(255, 190, 200, 0.14);
}

/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    max-width: 600px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px 9px 9px;
    border: 1px solid rgba(220, 53, 69, 0.15);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.75);
    color: #555;
    font-size: 14px;
    font-weight: 600;
}

.eyebrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #dc3545;
    color: #fff;
    font-size: 13px;
}

.hero-title {
    margin: 0;
    color: #171717;
    font-size: clamp(3rem, 5vw, 5.2rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -3px;
}

.hero-title span {
    display: block;
    color: #dc3545;
}

.hero-copy {
    max-width: 540px;
    margin-top: 25px;
    color: #666;
    font-size: 18px;
    line-height: 1.75;
}

/* =========================================
   BUTTONS
========================================= */

.btn-x {
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    background: #dc3545;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 12px 25px rgba(220, 53, 69, 0.2);
    transition: all 0.3s ease;
}

.btn-x:hover {
    background: #bb2d3b;
    color: #fff;
    transform: translateY(-3px);
}

.btn-soft {
    display: inline-flex;
    align-items: center;
    padding: 14px 24px;
    border: 1px solid #e8dfe0;
    border-radius: 12px;
    background: #fff;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-soft:hover {
    border-color: #dc3545;
    color: #dc3545;
    transform: translateY(-3px);
}

/* =========================================
   TRUST ITEMS
========================================= */

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #666;
    font-size: 14px;
}

.trust-item i {
    color: #dc3545;
    font-size: 16px;
}

/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-card {
    position: relative;
    width: min(100%, 480px);
    height: 560px;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 25px 70px rgba(70, 25, 30, 0.18);
    transform: rotate(0deg);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65),
        transparent 45%
    );
}

.hero-image-caption {
    position: absolute;
    right: 25px;
    bottom: 25px;
    left: 25px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    color: #fff;
}

.hero-image-caption small {
    display: block;
    margin-bottom: 5px;
    opacity: 0.8;
}

.hero-image-caption strong {
    display: block;
    max-width: 280px;
    font-size: 19px;
}

.caption-heart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* =========================================
   FLOATING PROFILE CARD
========================================= */

.floating-profile-card {
    position: absolute;
    top: 55px;
    left: -35px;
    z-index: 2;
    width: 285px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
}

.profile-avatar {
    position: relative;
}

.profile-avatar img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 3px solid #fff;
    border-radius: 50%;
}

.online-dot {
    position: absolute;
    right: 1px;
    bottom: 3px;
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #20c997;
}

.profile-like {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-left: auto;
    border-radius: 50%;
    background: #fff0f1;
    color: #dc3545;
}

/* =========================================
   CONNECTION CARD
========================================= */


/* =========================================
   FINAL CTA SECTION
========================================= */

.final-cta-section {
    padding: 100px 0;
    background: var(--section-bg, #f7f5f2);
}

/* CTA CARD */
.final-cta-card {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: #1f1720;
    color: #fff;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

/* CONTENT */
.final-cta-content {
    padding: 70px 60px;
    max-width: 720px;
}

.final-cta-content .eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.final-cta-content h2 {
    max-width: 650px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.final-cta-content .lead {
    max-width: 590px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

/* CTA BUTTON */
.final-cta-content .btn-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* IMAGE WRAPPER */
.final-cta-image-wrap {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

/* IMAGE */
.final-cta-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.final-cta-card:hover .final-cta-image {
    transform: scale(1.05);
}

/* IMAGE OVERLAY */
.final-cta-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(31, 23, 32, 0.25),
        transparent 45%
    );
    pointer-events: none;
}

/* IMAGE BADGE */
.cta-image-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 18px;
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.92);
    color: #1f1720;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.cta-image-badge > i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 50%;
    background: #1f1720;
    color: #fff;
    font-size: 1rem;
}

.cta-image-badge strong {
    display: block;
    font-size: 0.9rem;
    line-height: 1.3;
}

.cta-image-badge small {
    display: block;
    margin-top: 3px;
    color: #6f6870;
    font-size: 0.75rem;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .final-cta-section {
        padding: 70px 0;
    }

    .final-cta-content {
        padding: 55px 40px;
    }

    .final-cta-image-wrap,
    .final-cta-image {
        min-height: 420px;
    }

}

@media (max-width: 575px) {

    .final-cta-section {
        padding: 50px 0;
    }

    .final-cta-card {
        border-radius: 22px;
    }

    .final-cta-content {
        padding: 40px 25px;
    }

    .final-cta-content h2 {
        font-size: 2.2rem;
    }

    .final-cta-content .lead {
        font-size: 1rem;
        line-height: 1.65;
    }

    .final-cta-image-wrap,
    .final-cta-image {
        min-height: 350px;
    }

    .cta-image-badge {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

}

.discover-mini-body .sk{
    font-size: 1.8rem;
}


.floating-connection-card {
    position: absolute;
    right: -35px;
    bottom: 120px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 13px;
    max-width: 270px;
    padding: 15px 18px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.connection-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    border-radius: 14px;
    background: #fff0f1;
    color: #dc3545;
    font-size: 20px;
}

/* =========================================
   AVATAR DISCOVERY CARD
========================================= */

.avatar-discovery-card {
    position: absolute;
    right: 25px;
    bottom: 35px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px 10px 10px;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.avatar-discovery-card small {
    color: #555;
    font-weight: 600;
}

.avatar-stack {
    align-items: center;
}

.avatar-stack img,
.more-avatar {
    width: 35px;
    height: 35px;
    margin-left: -8px;
    border: 2px solid #fff;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.more-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dc3545;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .hero-section {
        padding: 80px 0;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-copy {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 570px;
    }

    .floating-profile-card {
        left: 0;
    }

    .floating-connection-card {
        right: 0;
    }
}

@media (max-width: 575px) {

    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: -2px;
    }

    .hero-copy {
        font-size: 16px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 12px;
        justify-content: center;
    }

    .trust-item {
        font-size: 12px;
    }

    .hero-visual {
        min-height: 500px;
    }

    .hero-image-card {
        height: 470px;
        border-radius: 25px;
    }

    .floating-profile-card {
        top: 25px;
        left: -5px;
        width: 245px;
        transform: scale(0.88);
        transform-origin: left top;
    }

    .floating-connection-card {
        right: -5px;
        bottom: 80px;
        max-width: 230px;
        transform: scale(0.88);
        transform-origin: right bottom;
    }

    .avatar-discovery-card {
        right: 5px;
        bottom: 20px;
    }
}

  .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;
  }


  .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);
  }


 /* =========================================
    WHY XFLIRT SECTION
 ========================================= */

.why-xflirt-section {
    padding: 110px 0;
    background: #fff;
}

/* =========================================
    SECTION HEADER
 ========================================= */

.section-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 50px;
    background: #fff0f1;
    color: #dc3545;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.section-title {
    max-width: 700px;
    margin-bottom: 0;
    color: #181818;
    font-size: clamp(2.5rem, 4vw, 4.3rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
}

.section-title span {
    color: #dc3545;
}

.section-lead {
    color: #6b6b6b;
    font-size: 17px;
    line-height: 1.75;
}

/* =========================================
    FEATURE CARDS
 ========================================= */

.connection-feature-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    padding: 32px;
    border: 1px solid #eee4e5;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(70, 30, 35, 0.06);
    transition: all 0.35s ease;
}

.connection-feature-card:hover {
    border-color: rgba(220, 53, 69, 0.25);
    box-shadow: 0 20px 55px rgba(70, 30, 35, 0.1);
    transform: translateY(-6px);
}

/* =========================================
    FEATURED CARD
 ========================================= */

.featured-card {
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        linear-gradient(
            145deg,
            #fff7f7 0%,
            #ffffff 65%
        );
}

.feature-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    border-radius: 18px;
    background: #fff0f1;
    color: #dc3545;
    font-size: 25px;
}

.feature-number {
    color: #d9cfd0;
    font-size: 14px;
    font-weight: 700;
}

.feature-card-content {
    margin-top: 45px;
}

.feature-label {
    display: block;
    margin-bottom: 10px;
    color: #dc3545;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.connection-feature-card h3 {
    margin-bottom: 15px;
    color: #1c1c1c;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 750;
}

.connection-feature-card h3 span {
    display: block;
    color: #dc3545;
}

.connection-feature-card p {
    max-width: 570px;
    margin-bottom: 0;
    color: #707070;
    font-size: 15px;
    line-height: 1.75;
}

/* =========================================
    PROFILE PREVIEW
 ========================================= */

.profile-preview-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 35px;
    padding: 13px 15px;
    border: 1px solid #eee;
    border-radius: 18px;
    background: #fff;
}

.mini-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mini-profile img {
    width: 45px;
    height: 45px;
    border: 3px solid #fff;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mini-profile strong,
.mini-profile small {
    display: block;
}

.mini-profile strong {
    color: #333;
    font-size: 14px;
}

.mini-profile small {
    margin-top: 3px;
    color: #888;
    font-size: 12px;
}

.mini-profile-heart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff0f1;
    color: #dc3545;
}

/* =========================================
    HORIZONTAL CARDS
 ========================================= */

.horizontal-card {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    min-height: 205px;
}

.horizontal-card .feature-icon {
    width: 54px;
    height: 54px;
}

.horizontal-card h3 {
    font-size: 23px;
}

.horizontal-card p {
    max-width: 620px;
}

.pace-card {
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fff8f8 100%
        );
}

/* =========================================
    BOTTOM CTA
 ========================================= */

.why-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 25px 30px;
    border: 1px solid #f0e3e4;
    border-radius: 22px;
    background: #fffafa;
}

.why-bottom-cta strong,
.why-bottom-cta span {
    display: block;
}

.why-bottom-cta strong {
    margin-bottom: 5px;
    color: #333;
    font-size: 17px;
}

.why-bottom-cta span {
    color: #777;
    font-size: 14px;
}

/* =========================================
    RESPONSIVE
 ========================================= */

@media (max-width: 991px) {

    .why-xflirt-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 3rem;
    }

    .horizontal-card {
        min-height: auto;
    }

    .why-bottom-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575px) {

    .why-xflirt-section {
        padding: 65px 0;
    }

    .section-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .section-lead {
        font-size: 15px;
    }

    .connection-feature-card {
        padding: 24px;
        border-radius: 22px;
    }

    .featured-card {
        min-height: 400px;
    }

    .horizontal-card {
        flex-direction: column;
        gap: 18px;
    }

    .horizontal-card h3 {
        font-size: 21px;
    }

    .why-bottom-cta {
        padding: 22px;
    }

    .why-bottom-cta .btn {
        width: 100%;
    }
}

  .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;
  }

 

  .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) {
     

      .stat-one {
          left: 15px;
      }

      .stat-two {
          right: 15px;
      }
  }

  @media (max-width: 575px) {
   

      .floating-stat {
          transform: scale(.9);
      }

      
  }