*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --violet: #6c3fc5;
    --violet-light: #8b5cf6;
    --violet-pale: #ede9fe;
    --pink: #f472b6;
    --pink-light: #fce7f3;
    --teal: #06b6d4;
    --teal-light: #cffafe;
    --white: #ffffff;
    --off-white: #f8f7ff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-900: #111827;
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Nunito', sans-serif;
    --shadow-sm: 0 2px 8px rgba(108, 63, 197, 0.10);
    --shadow-md: 0 8px 32px rgba(108, 63, 197, 0.14);
    --shadow-lg: 0 20px 60px rgba(108, 63, 197, 0.18);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

/* ─── UTILITIES ─── */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.tag-violet {
    background: var(--violet-pale);
    color: var(--violet);
}

.tag-pink {
    background: var(--pink-light);
    color: #be185d;
}

.tag-teal {
    background: var(--teal-light);
    color: #0e7490;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-lead {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 600px;
    line-height: 1.75;
}

.section-head-center {
    text-align: center;
}

.section-head-center .section-lead {
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.18s, box-shadow 0.18s, opacity 0.18s;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.btn-violet {
    background: linear-gradient(135deg, var(--violet) 0%, var(--violet-light) 100%);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(108, 63, 197, 0.32);
}

.btn-pink {
    background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(244, 114, 182, 0.35);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--violet);
    color: var(--violet);
}

.btn-outline:hover {
    background: var(--violet);
    color: var(--white);
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--gray-200);
    padding: 0 40px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--violet);
}

.brand span {
    color: var(--pink);
}
.brand,
.logo{
    display: flex;
    align-items: center;
    gap: .25rem;
}
.brand img,
.logo img{
    display: block;
    width: 54px;
    height: auto;
}
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.15s;
}

.nav-links a:hover {
    color: var(--violet);
}

.nav-cta {
    background: linear-gradient(135deg, var(--violet), var(--violet-light));
    color: var(--white);
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    font-family: var(--font-head);
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(108, 63, 197, 0.28);
    transition: transform 0.18s, box-shadow 0.18s;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(108, 63, 197, 0.36);
}

/* ─── HERO ─── */
.hero {
    padding: 120px 24px 80px;
    background: linear-gradient(160deg, #f8f7ff 0%, #fce7f3 50%, #ede9fe 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 63, 197, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -150px;
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.10) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    border-radius: 50%;
}

.hero-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1.5px solid var(--violet-pale);
    border-radius: 50px;
    padding: 6px 16px 6px 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--violet);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--pink);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.7;
    }
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--violet), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.08rem;
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.75;
}

.hero-number-block {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-number-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--violet), var(--violet-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-number-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.hero-number-text {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-number-val {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: 1px;
}

.hero-btn-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-stack {
    position: relative;
    width: 340px;
    height: 400px;
}

.phone-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    position: absolute;
}

.phone-card.main {
    width: 260px;
    top: 30px;
    left: 40px;
    z-index: 3;
}

.phone-card.back {
    width: 240px;
    top: 60px;
    left: 70px;
    z-index: 1;
    background: var(--violet-pale);
    transform: rotate(6deg);
}

.phone-card.back2 {
    width: 240px;
    top: 50px;
    left: 20px;
    z-index: 2;
    background: var(--pink-light);
    transform: rotate(-4deg);
}

.avatar-row {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
}

.av-v {
    background: var(--violet-pale);
    color: var(--violet);
}

.av-p {
    background: var(--pink-light);
    color: #be185d;
}

.av-t {
    background: var(--teal-light);
    color: #0e7490;
}

.card-label {
    font-size: 0.78rem;
    color: var(--gray-500);
    font-weight: 600;
    margin-bottom: 6px;
}

.card-num {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gray-900);
}

.wave-bars {
    display: flex;
    gap: 4px;
    align-items: center;
    margin: 14px 0;
}

.wave-bar {
    width: 4px;
    background: linear-gradient(180deg, var(--violet), var(--pink));
    border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
}

.wave-bar:nth-child(1) {
    height: 12px;
    animation-delay: 0s;
}

.wave-bar:nth-child(2) {
    height: 22px;
    animation-delay: 0.1s;
}

.wave-bar:nth-child(3) {
    height: 16px;
    animation-delay: 0.2s;
}

.wave-bar:nth-child(4) {
    height: 28px;
    animation-delay: 0.3s;
}

.wave-bar:nth-child(5) {
    height: 20px;
    animation-delay: 0.4s;
}

.wave-bar:nth-child(6) {
    height: 14px;
    animation-delay: 0.5s;
}

.wave-bar:nth-child(7) {
    height: 24px;
    animation-delay: 0.3s;
}

.wave-bar:nth-child(8) {
    height: 10px;
    animation-delay: 0.2s;
}

@keyframes wave {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.5);
    }
}

.connecting-pill {
    background: linear-gradient(135deg, var(--violet), var(--violet-light));
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 50px;
    margin-top: 14px;
    display: inline-block;
}

.float-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 10px 14px;
    font-size: 0.8rem;
    font-weight: 700;
}

.float-badge.top-right {
    top: 10px;
    right: 0px;
    z-index: 4;
}

.float-badge.bottom-left {
    bottom: 20px;
    left: 0px;
}

.float-badge .num {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--violet);
    display: block;
}

/* ─── ABOUT ─── */
.about {
    padding: 96px 24px;
    background: var(--white);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-text p {
    color: var(--gray-500);
    margin-bottom: 16px;
}

.about-text p strong {
    color: var(--gray-900);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.stat-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--violet), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
    line-height: 1.1;
}
.stat-card p{
    margin-top: 1rem;
}

/* ─── FEATURE LIST (reusable) ─── */
.feature-list {
    list-style: none;
    margin: 20px 0 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-bottom: 10px;
    padding: 0;
}

.feature-list li .check {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--violet), var(--violet-light));
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.feature-list li .check svg {
    width: 11px;
    height: 11px;
}

/* ─── HOW IT WORKS ─── */
.how {
    padding: 96px 24px;
    background: var(--off-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--gray-100);
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}

.step-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step-num-circle {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--violet), var(--violet-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 6px 20px rgba(108, 63, 197, 0.3);
}

.step-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.step-connector {
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--violet-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.step-connector svg {
    width: 10px;
    height: 10px;
}

.step-card:last-child .step-connector {
    display: none;
}

.step-cta {
    text-align: center;
    margin-top: 44px;
}

/* ─── GENDER SECTIONS ─── */
.gender-sec {
    padding: 96px 24px;
}

.gender-sec.women {
    background: var(--white);
}

.gender-sec.men {
    background: var(--off-white);
}

.gender-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.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.3rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 18px;
}

.gender-content p {
    color: var(--gray-500);
    margin-bottom: 14px;
}

.gender-visual {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1.5px solid var(--gray-100);
    overflow: hidden;
}

.gender-visual img {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.gender-number {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--violet);
    margin: 18px 0 6px;
}

.gender-number-sub {
    font-size: 0.78rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ─── WHY CHOOSE US ─── */
.why {
    padding: 96px 24px;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.why-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.why-card:hover {
    border-color: var(--violet-pale);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 28px;
    height: 28px;
}

.ic-violet {
    background: var(--violet-pale);
}

.ic-pink {
    background: var(--pink-light);
}

.ic-teal {
    background: var(--teal-light);
}

.why-card-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.65;
}

/* ─── SAFETY ─── */
.safety {
    padding: 96px 24px;
    background: var(--off-white);
}

.age-banner {
    background: linear-gradient(135deg, #fff1f2, #ffe4e6);
    border: 1.5px solid #fecdd3;
    border-radius: var(--radius-md);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.age-banner svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.age-banner p {
    font-size: 0.95rem;
    color: #9f1239;
    font-weight: 600;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px;
}

.safety-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--gray-100);
}

.safety-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.si-red {
    background: #fff1f2;
}

.si-violet {
    background: var(--violet-pale);
}

.si-teal {
    background: var(--teal-light);
}

.safety-card-title {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
    font-size: 0.98rem;
}

.safety-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.65;
}

.safety-list {
    list-style: none;
    margin-top: 36px;
}

.safety-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-700);
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}

.safety-list li:last-child {
    border-bottom: none;
}

.sl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--violet), var(--pink));
    flex-shrink: 0;
}

/* ─── FAQ ─── */
.faq {
    padding: 96px 24px;
    background: var(--white);
}

.faq-inner {
    margin: 52px auto 0;
    max-width: 800px;
}


.faq-list {}

.faq-item {
    border-bottom: 1.5px solid var(--gray-100);
    padding: 22px 0;
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-q {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--gray-900);
    font-size: 0.98rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.faq-q-icon {
    width: 26px;
    height: 26px;
    background: var(--violet-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--violet);
    font-size: 1rem;
    font-weight: 700;
}

.faq-a {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ─── FINAL CTA ─── */
.final-cta {
    padding: 120px 24px;
    background: linear-gradient(135deg, var(--violet) 0%, #8b5cf6 50%, #ec4899 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta .tag-white {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.final-cta h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.final-cta .sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.final-num {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.final-num-sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 16px;
}

.final-trust {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.trust-pill {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
}

.cta-btn-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--violet);
    padding: 16px 40px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.18s, box-shadow 0.18s;
    text-decoration: none;
    display: inline-block;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.btn-ghost-white {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.18s;
    text-decoration: none;
    display: inline-block;
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ─── FOOTER ─── */
footer {
    background: var(--gray-900);
    padding: 40px 24px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 14px;
}

.footer-logo span {
    color: var(--pink);
}

.footer-legal {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.75;
}

.footer-legal strong {
    color: #f87171;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {

    .hero-inner,
    .about-inner,
    .gender-inner,
    .faq-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gender-inner.rev {
        direction: ltr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .safety-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 600px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    nav {
        padding: 0 20px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}