*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Reference palette: soft lavender-white bg, coral/orange primary, teal accent, purple secondary */
    --bg: #f0eef8;
    --bg-card: #ffffff;
    --coral: #ff6b6b;
    --coral-dark: #e85555;
    --orange: #ff8c42;
    --purple: #7c3aed;
    --purple-light: #a78bfa;
    --teal: #06b6d4;
    --green: #10b981;
    --yellow: #f59e0b;
    --pink: #ec4899;
    --text-dark: #1a1a2e;
    --text-mid: #4b5563;
    --text-light: #9ca3af;
    --border: #e5e3f0;
    --white: #ffffff;

    --font-head: 'Poppins', sans-serif;
    --font-body: 'Nunito', sans-serif;

    --r-sm: 12px;
    --r-md: 20px;
    --r-lg: 32px;
    --r-xl: 48px;

    --shadow-sm: 0 2px 12px rgba(124, 58, 237, 0.08);
    --shadow-md: 0 8px 32px rgba(124, 58, 237, 0.12);
    --shadow-lg: 0 20px 60px rgba(124, 58, 237, 0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-mid);
    background: var(--bg);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ── UTILS ── */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

.chip {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.chip-purple {
    background: #ede9fe;
    color: var(--purple);
}

.chip-coral {
    background: #fff1f0;
    color: var(--coral-dark);
}

.chip-teal {
    background: #e0f7fa;
    color: #0e7490;
}

h2.sec-title {
    font-family: var(--font-head);
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.4px;
    margin-bottom: 16px;
}

h2.sec-title .accent {
    color: var(--coral);
}

h2.sec-title .accent-purple {
    color: var(--purple);
}

.sec-lead {
    font-size: 1.02rem;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 600px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.18s, box-shadow 0.18s, opacity 0.15s;
    border: none;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.btn-coral {
    background: var(--coral);
    color: #fff;
    box-shadow: 0 6px 24px rgba(255, 107, 107, 0.38);
}

.btn-purple {
    background: var(--purple);
    color: #fff;
    box-shadow: 0 6px 24px rgba(124, 58, 237, 0.35);
}

.btn-outline-purple {
    background: transparent;
    border: 2px solid var(--purple);
    color: var(--purple);
}

.btn-outline-purple:hover {
    background: var(--purple);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--purple);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: rgba(240, 238, 248, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.nav-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.logo {
    font-family: var(--font-head);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--purple);
}
.brand,
.logo{
    display: flex;
    align-items: center;
    gap: .25rem;
}
.brand img,
.logo img{
    display: block;
    width: 54px;
    height: auto;
}
.logo span {
    color: var(--coral);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-mid);
    transition: color 0.15s;
}

.nav-links a:hover {
    color: var(--purple);
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-btn-ghost {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1.5px solid var(--purple);
    color: var(--purple);
    background: transparent;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.nav-btn-ghost:hover {
    background: var(--purple);
    color: #fff;
}

.nav-btn-solid {
    padding: 9px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    background: var(--coral);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
    transition: opacity 0.15s, transform 0.15s;
}

.nav-btn-solid:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
    padding: 110px 28px 80px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

/* Decorative blobs */
.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.10) 0%, transparent 70%);
    top: -80px;
    right: 5%;
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.10) 0%, transparent 70%);
    bottom: 20px;
    left: 5%;
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 6px 16px 6px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    animation: blink 1.6s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.3rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 22px;
}

.hero h1 .h-coral {
    color: var(--coral);
}

.hero h1 .h-purple {
    color: var(--purple);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-number-card {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 16px 20px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-md);
    margin-bottom: 28px;
}

.hero-phone-icon {
    width: 44px;
    height: 44px;
    background: var(--coral);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-phone-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.hero-num-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-num-val {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-main-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 3;
}

.hmc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.hmc-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.online-pill {
    background: #dcfce7;
    color: #166534;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

.caller-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.caller-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--bg);
    border-radius: var(--r-sm);
}

.caller-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.av-1 {
    background: #ede9fe;
    color: var(--purple);
}

.av-2 {
    background: #fff1f0;
    color: var(--coral-dark);
}

.av-3 {
    background: #e0f7fa;
    color: #0e7490;
}

.caller-info {
    flex: 1;
}

.caller-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-dark);
}

.caller-loc {
    font-size: 0.75rem;
    color: var(--text-light);
}

.caller-status {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
}

.cs-live {
    background: #dcfce7;
    color: #166534;
}

.cs-ready {
    background: #ede9fe;
    color: var(--purple);
}

.cs-new {
    background: #fff7ed;
    color: #92400e;
}

.wave-row {
    display: flex;
    gap: 3px;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
}

.wb {
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--purple), var(--coral));
    animation: wv 1.3s ease-in-out infinite;
}

.wb:nth-child(1) {
    height: 10px;
    animation-delay: 0s
}

.wb:nth-child(2) {
    height: 20px;
    animation-delay: 0.1s
}

.wb:nth-child(3) {
    height: 14px;
    animation-delay: 0.2s
}

.wb:nth-child(4) {
    height: 26px;
    animation-delay: 0.3s
}

.wb:nth-child(5) {
    height: 18px;
    animation-delay: 0.4s
}

.wb:nth-child(6) {
    height: 30px;
    animation-delay: 0.2s
}

.wb:nth-child(7) {
    height: 16px;
    animation-delay: 0.1s
}

.wb:nth-child(8) {
    height: 22px;
    animation-delay: 0.3s
}

.wb:nth-child(9) {
    height: 12px;
    animation-delay: 0.0s
}

.wb:nth-child(10) {
    height: 24px;
    animation-delay: 0.4s
}

@keyframes wv {

    0%,
    100% {
        transform: scaleY(1)
    }

    50% {
        transform: scaleY(0.4)
    }
}

.connect-btn-demo {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: var(--r-sm);
    font-weight: 700;
    cursor: pointer;
    text-align: center;
}

/* Floating badges on hero */
.fb {
    position: absolute;
    background: var(--white);
    border-radius: var(--r-sm);
    box-shadow: var(--shadow-md);
    padding: 10px 16px;
    font-size: 0.8rem;
    z-index: 4;
}

.fb-num {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--purple);
    display: block;
    line-height: 1;
    margin-bottom: 2px;
}

.fb-lbl {
    font-size: 0.72rem;
    color: var(--text-light);
    font-weight: 600;
}

.fb-top {
    top: -18px;
    right: -10px;
}

.fb-bot {
    bottom: -18px;
    left: -10px;
}

/* Deco dot blobs inside hero visual */
.deco-blob {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.db-1 {
    width: 80px;
    height: 80px;
    background: #ede9fe;
    top: -30px;
    left: -30px;
}

.db-2 {
    width: 50px;
    height: 50px;
    background: #fff1f0;
    bottom: -20px;
    right: 20px;
}

/* Scatter dots like reference */
.scatter {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-coral {
    background: var(--coral);
}

.dot-purple {
    background: var(--purple-light);
}

.dot-teal {
    background: var(--teal);
}

/* ── SECTION BASE ── */
section {
    padding: 96px 0;
}

/* ── MIAMI CONNECTION ── */
.miami-conn {
    background: var(--white);
}

.mc-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.mc-visual {
    background: var(--bg);
    border-radius: var(--r-lg);
    padding: 40px 32px;
    position: relative;
}

.mc-big-num {
    font-family: var(--font-head);
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple), var(--coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.mc-big-lbl {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 24px;
}

.mc-stat-row {
    display: flex;
    gap: 20px;
}

.mc-stat {
    text-align: center;
}

.mc-stat-n {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
}

.mc-stat-l {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 600;
}

.mc-divider {
    width: 1px;
    background: var(--border);
}

.bullet-list {
    list-style: none;
    margin-top: 18px;
}

.bullet-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-mid);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.bullet-list li:last-child {
    border-bottom: none;
}

.bl-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.bli-purple {
    background: #ede9fe;
    color: var(--purple);
}

.bli-coral {
    background: #fff1f0;
    color: var(--coral);
}

.bli-teal {
    background: #e0f7fa;
    color: #0e7490;
}

.bli-green {
    background: #dcfce7;
    color: #166534;
}

.bli-yellow {
    background: #fef3c7;
    color: #92400e;
}

.bli-pink {
    background: #fce7f3;
    color: #9d174d;
}

/* ── ABOUT ── */
.about-sec {
    background: var(--bg);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.about-card {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 24px 20px;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border);
    transition: box-shadow 0.2s, transform 0.2s;
}

.about-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.about-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.about-card-icon svg {
    width: 20px;
    height: 20px;
}

.aci-p {
    background: #ede9fe;
}

.aci-c {
    background: #fff1f0;
}

.aci-t {
    background: #e0f7fa;
}

.aci-g {
    background: #dcfce7;
}

.about-card-title {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.about-card-val {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ── HOW IT WORKS ── */
.how-sec {
    background: var(--white);
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 52px;
    position: relative;
}

.steps-row::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--coral));
    opacity: 0.2;
    z-index: 0;
}

.step-card {
    background: var(--bg);
    border-radius: var(--r-md);
    padding: 32px 22px;
    text-align: center;
    position: relative;
    z-index: 1;
    border: 1.5px solid var(--border);
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
}

.step-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}

.sn-1 {
    background: var(--purple);
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.35);
}

.sn-2 {
    background: var(--coral);
    box-shadow: 0 6px 18px rgba(255, 107, 107, 0.35);
}

.sn-3 {
    background: var(--teal);
    box-shadow: 0 6px 18px rgba(6, 182, 212, 0.35);
}

.sn-4 {
    background: var(--green);
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.35);
}

.step-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.step-cta {
    text-align: center;
    margin-top: 44px;
}

/* ── GENDER ── */
.gender-sec {
    padding: 96px 0;
    background: #f5f5f5;
}

.women-sec {
    background: var(--bg);
}

.men-sec {
    background: var(--white);
}

.gender-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.gender-inner.rev {
    direction: rtl;
}

.gender-inner.rev>* {
    direction: ltr;
}

.gender-content h2 {
    font-family: var(--font-head);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.gender-content p {
    color: var(--text-mid);
    margin-bottom: 14px;
    font-size: 0.97rem;
}

.gender-content .cta-line {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.check-list {
    list-style: none;
    margin: 0 0 16px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.93rem;
    color: var(--text-mid);
    padding: 7px 0;
}

.chk {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chk-purple {
    background: var(--purple);
}

.chk-coral {
    background: var(--coral);
}

.chk svg {
    width: 10px;
    height: 10px;
}

.gender-visual {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-lg);
    border: 1.5px solid var(--border);
    text-align: center;
}

.gv-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-radius: 50%;
}

.gv-icon svg {
    width: 32px;
    height: 32px;
}

.gv-free-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple), var(--coral));
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.gv-quote {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 10px;
}

.gv-meta {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ── MIAMI LIFESTYLE ── */
.lifestyle-sec {
    background: var(--bg);
}

.lifestyle-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.lifestyle-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ls-card {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 24px 18px;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border);
}

.ls-card.tall {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ls-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.4rem;
}

.ls-title {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.ls-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ── WHY CHOOSE ── */
.why-sec {
    background: var(--white);
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start;
}

.why-left p {
    color: var(--text-mid);
    margin-bottom: 28px;
    font-size: 0.97rem;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-card {
    background: var(--bg);
    border-radius: var(--r-md);
    padding: 28px 24px;
    border: 1.5px solid var(--border);
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
}

.why-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.why-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.why-icon svg {
    width: 22px;
    height: 22px;
}

.wi-p {
    background: #ede9fe;
}

.wi-c {
    background: #fff1f0;
}

.wi-t {
    background: #e0f7fa;
}

.wi-g {
    background: #dcfce7;
}

.wi-y {
    background: #fef3c7;
}

.wi-pk {
    background: #fce7f3;
}

.why-card-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.97rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ── SAFETY ── */
.safety-sec {
    background: var(--bg);
}

.safety-intro {
    max-width: 680px;
    margin: 0 auto 52px;
    text-align: center;
}

.safety-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.safety-card {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border);
}

.sc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.sci-red {
    background: #fff1f2;
}

.sci-purple {
    background: #ede9fe;
}

.sci-teal {
    background: #e0f7fa;
}

.safety-card-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.97rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.safety-card p {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.65;
}

.age-notice {
    max-width: 720px;
    margin: 40px auto 0;
    background: #fff1f2;
    border: 1.5px solid #fecdd3;
    border-radius: var(--r-md);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.age-notice svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.age-notice p {
    font-size: 0.93rem;
    color: #9f1239;
    font-weight: 600;
}

/* ── FAQ ── */
.faq-sec {
    background: var(--white);
}

.faq-inner {
   max-width: 800px;
   margin: 0 auto;
}

.faq-left {
    background: linear-gradient(160deg, #ede9fe 0%, #fce7f3 100%);
    border-radius: var(--r-lg);
    padding: 48px 36px;
    position: sticky;
    top: 90px;
}

.faq-left h2 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.2;
}

.faq-left p {
    font-size: 0.93rem;
    color: var(--text-mid);
    margin-bottom: 28px;
}

.faq-list {}

.faq-item {
    border-bottom: 1.5px solid var(--border);
    padding: 22px 0;
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-q {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.97rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.faq-icon {
    width: 26px;
    height: 26px;
    background: #ede9fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--purple);
    font-size: 1rem;
    font-weight: 700;
}

.faq-a {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ── TESTIMONIALS (bonus) ── */
.testi-sec {
    background: var(--bg);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.testi-card {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border);
}

.testi-stars {
    color: var(--yellow);
    font-size: 0.9rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testi-quote {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 18px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.ta-1 {
    background: #ede9fe;
    color: var(--purple);
}

.ta-2 {
    background: #fff1f0;
    color: var(--coral-dark);
}

.ta-3 {
    background: #e0f7fa;
    color: #0e7490;
}

.testi-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-dark);
}

.testi-loc {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ── FINAL CTA ── */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--purple) 0%, #a855f7 45%, var(--coral) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta .chip-white {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.final-cta h2 {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.final-cta .sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.final-num {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 6px;
}

.final-num-sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.final-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-strip {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.trust-pill {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ── FOOTER ── */
footer {
    background: var(--text-dark);
    padding: 44px 28px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.footer-logo span {
    color: var(--coral);
}

.footer-legal {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.75;
}

.footer-legal strong {
    color: #f87171;
}

/* ── RESPONSIVE ── */
@media (max-width: 980px) {

    .hero-inner,
    .mc-inner,
    .about-inner,
    .gender-inner,
    .lifestyle-inner,
    .why-inner,
    .faq-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gender-inner.rev {
        direction: ltr;
    }

    .steps-row {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .safety-cards {
        grid-template-columns: 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 600px) {
    .steps-row {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    nav {
        padding: 0 20px;
    }

    .lifestyle-visual {
        grid-template-columns: 1fr;
    }

    .ls-card.tall {
        grid-column: span 1;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
