/* ============================================================
   E-Dates Me — Premium Design System
   Palette: Burgundy · Rose · Deep Navy · Cream · Warm Neutral
   Typography: Inter (body) + Playfair Display (headings)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
    /* Palette */
    --burgundy:     #8B1A4A;
    --burgundy-dk:  #6A1238;
    --burgundy-lt:  #A82560;
    --rose:         #C2436D;
    --rose-lt:      #E07A9F;
    --rose-pale:    #F5D0DE;
    --navy:         #0F172A;
    --navy-mid:     #1E293B;
    --navy-soft:    #334155;
    --cream:        #FAF7F2;
    --cream-dk:     #F3EDE4;
    --warm-gray:    #78716C;
    --warm-gray-lt: #A8A29E;
    --border:       #E7DDD5;
    --white:        #FFFFFF;

    /* Typography */
    --font-body:    'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --max-width:    1120px;
    --section-pad:  5rem 1.5rem;
    --card-radius:  14px;
    --btn-radius:   50px;

    /* Shadows */
    --shadow-sm:    0 1px 3px rgba(139,26,74,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md:    0 4px 16px rgba(139,26,74,.12), 0 2px 6px rgba(0,0,0,.08);
    --shadow-lg:    0 12px 40px rgba(139,26,74,.18), 0 4px 12px rgba(0,0,0,.10);

    /* Transitions */
    --transition:   all 0.25s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* ── Base ──────────────────────────────────────────────────── */
body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--navy);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── Accessibility ─────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--burgundy);
    color: var(--white);
    padding: .5rem 1rem;
    border-radius: 0 0 6px 6px;
    font-weight: 600;
    z-index: 9999;
    transition: top .2s;
}
.skip-link:focus { top: 0; }

*:focus-visible {
    outline: 2px solid var(--rose);
    outline-offset: 3px;
}
a:focus-visible, button:focus-visible {
    outline: 2px solid var(--rose);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.25;
    color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; margin-bottom: 1.25rem; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: .75rem; }
h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: .5rem; }

p   { margin-bottom: 1.25rem; color: var(--warm-gray); }
p:last-child { margin-bottom: 0; }

a   { color: var(--burgundy); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--burgundy-dk); }

ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--warm-gray);
}
li { margin-bottom: .4rem; }

strong { color: var(--navy); font-weight: 600; }

/* ── Layout Helpers ────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-pad);
}

.section--alt {
    background-color: var(--cream-dk);
}

.section--dark {
    background-color: var(--navy);
    color: var(--white);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--dark p   { color: rgba(255,255,255,.75); }

.text-center { text-align: center; }
.text-muted  { color: var(--warm-gray-lt); font-size: .875rem; }

/* Section labels */
.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--rose);
    background: var(--rose-pale);
    padding: .3rem .85rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

/* ── Site Wrapper ──────────────────────────────────────────── */
.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-main { flex: 1; }

/* ── Header / Navigation ───────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250,247,242,.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .25s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--burgundy);
    text-decoration: none;
    letter-spacing: -.01em;
    display: flex;
    align-items: center;
    gap: .4rem;
}
.brand-logo:hover { text-decoration: none; color: var(--burgundy-dk); }
.brand-logo span   { color: var(--rose); }

/* Nav */
.main-nav { display: flex; align-items: center; gap: .25rem; }

.nav-links {
    display: flex;
    list-style: none;
    gap: .1rem;
    padding: 0;
    margin: 0;
}

.nav-links a {
    display: block;
    padding: .45rem .75rem;
    font-size: .875rem;
    font-weight: 500;
    color: var(--navy-soft);
    border-radius: 6px;
    transition: var(--transition);
}
.nav-links a:hover          { color: var(--burgundy); background: var(--rose-pale); text-decoration: none; }
.nav-links a.active         { color: var(--burgundy); font-weight: 600; }

/* CTA button in nav */
.nav-cta {
    display: inline-block;
    background: var(--burgundy);
    color: var(--white) !important;
    padding: .5rem 1.1rem;
    border-radius: var(--btn-radius);
    font-size: .875rem;
    font-weight: 600;
    margin-left: .75rem;
    transition: var(--transition);
}
.nav-cta:hover { background: var(--burgundy-dk); text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* Mobile hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
    color: var(--navy);
}
.nav-toggle svg { display: block; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,.7);
    padding: 3rem 1.5rem 2rem;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-brand .brand-logo { color: var(--rose-pale); font-size: 1.2rem; }
.footer-brand .brand-logo span { color: var(--rose-lt); }
.footer-brand p { font-size: .875rem; margin-top: .6rem; color: rgba(255,255,255,.5); }

.footer-col h4 {
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: .85rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
    color: rgba(255,255,255,.65);
    font-size: .875rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--rose-lt); text-decoration: none; }

.footer-bottom {
    max-width: var(--max-width);
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .8rem;
    color: rgba(255,255,255,.35);
}

.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--rose-lt); text-decoration: none; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem 1.75rem;
    border-radius: var(--btn-radius);
    font-family: var(--font-body);
    font-size: .9375rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}
.btn-primary:hover {
    background: var(--burgundy-dk);
    border-color: var(--burgundy-dk);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--burgundy);
    border-color: var(--burgundy);
}
.btn-outline:hover {
    background: var(--burgundy);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255,255,255,.1);
    color: var(--white);
    border-color: rgba(255,255,255,.25);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.2);
    color: var(--white);
    text-decoration: none;
}

.btn-disabled, .btn[disabled] {
    background: var(--border);
    color: var(--warm-gray);
    border-color: var(--border);
    cursor: not-allowed;
    pointer-events: none;
    opacity: .8;
}

.btn-sm { padding: .5rem 1.1rem; font-size: .8125rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--burgundy-dk) 60%, var(--navy-mid) 100%);
    color: var(--white);
    padding: 5rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 70% 40%, rgba(194,67,109,.18) 0%, transparent 60%),
                      radial-gradient(circle at 15% 80%, rgba(139,26,74,.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 1.25rem;
}
.hero-content h1 em {
    font-style: italic;
    color: var(--rose-lt);
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-trust {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .825rem;
    color: rgba(255,255,255,.6);
}
.trust-item svg { color: var(--rose-lt); flex-shrink: 0; }

/* Hero visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-cards {
    position: relative;
    width: 280px;
    height: 340px;
}

.hero-card {
    position: absolute;
    width: 220px;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--card-radius);
    padding: 1.25rem;
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.hero-card:nth-child(1) { transform: rotate(-5deg) translate(-30px,10px); z-index: 2; top: 0; left: 0; }
.hero-card:nth-child(2) { transform: rotate(4deg) translate(40px,40px); z-index: 1; opacity: .75; top: 0; left: 0; }

.hero-card-avatar {
    width: 100%;
    height: 130px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(194,67,109,.2), rgba(139,26,74,.1));
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}
.hero-card-line { height: 10px; border-radius: 5px; background: rgba(255,255,255,.12); margin-bottom: .4rem; }
.hero-card-line.short { width: 55%; }
.hero-card-line.med   { width: 75%; }
.hero-card-line.long  { width: 90%; }

/* ── Steps Section ─────────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.step-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step-num {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: var(--rose-pale);
    color: var(--burgundy);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50%;
    margin-bottom: 1rem;
}
.step-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.step-card p  { font-size: .9rem; }

/* ── Partner Cards ─────────────────────────────────────────── */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.partner-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.partner-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.partner-card-header {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    margin-bottom: 1rem;
}

.partner-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.partner-region {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--rose);
    background: var(--rose-pale);
    padding: .15rem .6rem;
    border-radius: 50px;
    margin-bottom: .25rem;
}

.partner-card h3 { font-size: 1.05rem; margin-bottom: 0; }
.partner-card p  { font-size: .875rem; flex: 1; margin-bottom: 1.25rem; }

.partner-card .btn { width: 100%; margin-top: auto; }

/* Unavailable state */
.partner-unavailable-note {
    font-size: .78rem;
    color: var(--warm-gray-lt);
    text-align: center;
    margin-top: .5rem;
}

/* ── Region Filter Tabs ────────────────────────────────────── */
.region-tabs {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    margin-top: 1.5rem;
}
.region-tab {
    background: var(--cream-dk);
    border: 1px solid var(--border);
    color: var(--warm-gray);
    padding: .4rem 1rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.region-tab:hover,
.region-tab.active {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: var(--white);
}

/* ── Trust / Safety Strip ──────────────────────────────────── */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.trust-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
}
.trust-card-icon { font-size: 2rem; margin-bottom: .75rem; display: block; }
.trust-card h3   { font-size: 1rem; margin-bottom: .4rem; }
.trust-card p    { font-size: .875rem; }

/* ── Disclosure Notice ─────────────────────────────────────── */
.disclosure-notice {
    border-left: 4px solid var(--rose);
    background: var(--rose-pale);
    padding: 1rem 1.25rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
    font-size: .9rem;
    color: var(--navy-mid);
}
.disclosure-notice strong { color: var(--burgundy); }

/* ── Adult Notice Badge ────────────────────────────────────── */
.adult-notice {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--navy);
    color: rgba(255,255,255,.8);
    font-size: .8rem;
    font-weight: 600;
    padding: .45rem 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    letter-spacing: .02em;
}
.adult-notice span { background: var(--rose); color: var(--white); padding: .1rem .4rem; border-radius: 4px; font-size: .75rem; }

/* ── FAQ Accordion ─────────────────────────────────────────── */
.faq-list {
    margin-top: 2rem;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: .75rem;
    overflow: hidden;
    background: var(--white);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.25rem;
    text-align: left;
    font-family: var(--font-body);
    font-size: .975rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    gap: 1rem;
    transition: background .2s;
}
.faq-question:hover { background: var(--cream-dk); }

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--rose-pale);
    color: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    transition: transform .25s, background .25s;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--burgundy);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 1.25rem;
    font-size: .9rem;
    color: var(--warm-gray);
}
.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 1.25rem 1.25rem;
}

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--burgundy-dk) 0%, var(--burgundy) 60%, var(--rose) 100%);
    border-radius: 18px;
    padding: 3rem 2.5rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 780px;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.08) 0%, transparent 55%);
}
.cta-banner h2  { color: var(--white); margin-bottom: .75rem; position: relative; }
.cta-banner p   { color: rgba(255,255,255,.8); margin-bottom: 1.75rem; position: relative; }
.cta-banner .btn-ghost { position: relative; }

/* ── Legal Page Layout ─────────────────────────────────────── */
.legal-page { max-width: 780px; margin: 0 auto; padding: 3rem 1.5rem; }
.legal-page h1 { margin-bottom: .5rem; }
.legal-page .legal-date { font-size: .875rem; color: var(--warm-gray-lt); margin-bottom: 2.5rem; display: block; }
.legal-page h2 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 700; margin-top: 2.25rem; margin-bottom: .75rem; padding-bottom: .35rem; border-bottom: 1px solid var(--border); }
.legal-page p  { font-size: .9375rem; }
.legal-page ul, .legal-page ol { font-size: .9375rem; }

/* Safety page callout */
.safety-callout {
    background: linear-gradient(135deg, #fff7f0, #ffe4e6);
    border: 1px solid var(--rose-pale);
    border-left: 4px solid var(--rose);
    border-radius: 0 10px 10px 0;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}
.safety-callout h3 { color: var(--burgundy); font-size: 1rem; margin-bottom: .5rem; }
.safety-callout p  { font-size: .9rem; }

/* ── Contact Card ──────────────────────────────────────────── */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.contact-option {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.contact-option .contact-icon { font-size: 2rem; }
.contact-option h3 { font-size: 1.05rem; margin-bottom: 0; }
.contact-option p  { font-size: .9rem; flex: 1; }

.safety-warning-box {
    background: #fff5f5;
    border: 1px solid #fecaca;
    border-left: 4px solid #ef4444;
    border-radius: 0 10px 10px 0;
    padding: 1.25rem 1.5rem;
    margin-top: 2rem;
    font-size: .9rem;
    color: #7f1d1d;
}
.safety-warning-box strong { color: #b91c1c; }

/* ── 404 Page ──────────────────────────────────────────────── */
.not-found-wrap {
    text-align: center;
    padding: 5rem 1.5rem;
    max-width: 560px;
    margin: 0 auto;
}
.not-found-wrap .not-found-code {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 700;
    color: var(--rose-pale);
    line-height: 1;
    margin-bottom: .5rem;
}
.not-found-wrap h1 { font-size: 1.75rem; margin-bottom: 1rem; }

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--burgundy-dk) 100%);
    color: var(--white);
    padding: 3.5rem 1.5rem;
    text-align: center;
}
.page-hero h1  { color: var(--white); margin-bottom: .5rem; }
.page-hero p   { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto; }

/* ── Payment / Credits Info Box ────────────────────────────── */
.info-box {
    background: var(--cream-dk);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}
.info-box h3 { font-size: 1rem; margin-bottom: .6rem; }
.info-box p, .info-box li { font-size: .9rem; }

/* ── Feature List ──────────────────────────────────────────── */
.feature-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin: 1.5rem 0;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .9375rem;
    color: var(--warm-gray);
}
.feature-list li::before {
    content: '✓';
    flex-shrink: 0;
    display: inline-flex;
    width: 22px;
    height: 22px;
    background: var(--rose-pale);
    color: var(--burgundy);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    margin-top: 2px;
}

/* ── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive: Tablet ────────────────────────────────────── */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero { text-align: center; }
    .hero-content p { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-trust  { justify-content: center; }
    .hero-visual { display: none; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Responsive: Mobile ────────────────────────────────────── */
@media (max-width: 640px) {
    :root { --section-pad: 3.5rem 1.25rem; }

    h1 { font-size: 1.85rem; }
    h2 { font-size: 1.4rem; }

    .main-nav { display: none; }
    .main-nav.open { display: flex; flex-direction: column; align-items: stretch; }

    .nav-toggle { display: flex; }

    .header-inner { flex-wrap: wrap; }

    /* Mobile nav full-width */
    .main-nav.open {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        border-bottom: 1px solid var(--border);
        padding: 1rem 1.5rem;
        z-index: 200;
    }
    .main-nav.open .nav-links {
        flex-direction: column;
        width: 100%;
        gap: .25rem;
    }
    .main-nav.open .nav-links a { padding: .7rem 1rem; border-radius: 8px; font-size: 1rem; }
    .main-nav.open .nav-cta { margin-left: 0; margin-top: .75rem; text-align: center; }

    .site-header { position: sticky; }

    .partners-grid { grid-template-columns: 1fr; }
    .steps-grid    { grid-template-columns: 1fr; }
    .trust-grid    { grid-template-columns: 1fr 1fr; }
    .contact-options { grid-template-columns: 1fr; }
    .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .cta-banner { padding: 2.5rem 1.5rem; border-radius: 12px; }

    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { text-align: center; }
}

/* ── Section Header Spacing ─────────────────────────────── */
.section-header {
    margin-bottom: 2.75rem;
}
.section-header h2 {
    margin-bottom: .5rem;
}
.section-subtext {
    font-size: 1.05rem;
    color: var(--warm-gray);
    margin-bottom: 0;
}

/* ── Partner Card Actions & Dual Buttons ─────────────────── */
.partner-card-actions {
    display: flex;
    gap: .75rem;
    margin-top: auto;
    padding-top: 1rem;
}
.partner-card-actions .btn {
    flex: 1;
    text-align: center;
    justify-content: center;
    font-size: .875rem;
    padding: .65rem .85rem;
}

/* ── Breadcrumb Strip ─────────────────────────────────────── */
.breadcrumb-strip {
    background: var(--cream-dk);
    border-bottom: 1px solid var(--border);
    padding: .9rem 0;
    font-size: .875rem;
}
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-wrap: wrap;
}
.breadcrumb-nav a {
    color: var(--burgundy);
    font-weight: 500;
    text-decoration: none;
}
.breadcrumb-nav a:hover { text-decoration: underline; }
.bc-sep { color: var(--warm-gray-lt); }
.bc-current { color: var(--navy-soft); font-weight: 600; }

/* ── Partner Detail Hero ──────────────────────────────────── */
.partner-hero {
    padding: 4rem 0 3.5rem;
    background: linear-gradient(180deg, var(--cream-dk) 0%, var(--cream) 100%);
    border-bottom: 1px solid var(--border);
}
.partner-hero-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3.5rem;
    align-items: start;
}
.partner-badge-row {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}
.partner-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    font-weight: 600;
    padding: .3rem .85rem;
    border-radius: 50px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--navy);
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.partner-pill-badge.highlight {
    background: var(--rose-pale);
    border-color: var(--rose-lt);
    color: var(--burgundy);
}
.partner-pill-badge.verified {
    background: #E6F4EA;
    border-color: #A8DAB5;
    color: #137333;
}
.partner-title-wrap {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.partner-big-icon {
    font-size: 3.5rem;
    line-height: 1;
    background: var(--white);
    padding: .85rem;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    flex-shrink: 0;
}
.partner-title-wrap h1 {
    margin-bottom: .35rem;
    font-size: clamp(2.2rem, 4.5vw, 3rem);
}
.partner-headline {
    font-size: 1.15rem;
    color: var(--navy-soft);
    line-height: 1.55;
    font-weight: 500;
    margin-bottom: 0;
}
.partner-metrics-bar {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.1rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
}
.metric-block {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.star-rating {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.star-rating .stars {
    color: #F59E0B;
    font-size: 1.2rem;
    letter-spacing: 2px;
}
.star-rating .score {
    font-size: 1.15rem;
    color: var(--navy);
    font-weight: 700;
}
.metric-sub {
    font-size: .8rem;
    color: var(--warm-gray);
}
.metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--burgundy);
}
.metric-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}
.partner-hero-actions {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}
.hero-subtext {
    font-size: .825rem;
    color: var(--warm-gray);
    margin-bottom: 0;
}

/* ── Partner Summary Sidebar ──────────────────────────────── */
.summary-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}
.summary-card-header h3 {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    padding-bottom: .85rem;
    border-bottom: 1px solid var(--border);
}
.summary-facts-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}
.summary-facts-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 0;
    border-bottom: 1px dashed var(--border);
    font-size: .88rem;
    gap: 1rem;
}
.summary-facts-list li:last-child { border-bottom: none; }
.fact-label { color: var(--warm-gray); font-size: .85rem; }
.fact-value { color: var(--navy); font-weight: 600; text-align: right; }
.badge-green {
    background: #E6F4EA;
    color: #137333;
    font-weight: 600;
    padding: .2rem .6rem;
    border-radius: 4px;
    font-size: .8rem;
}

/* ── Offer Banner ─────────────────────────────────────────── */
.offer-section {
    padding: 3rem 0;
}
.offer-banner-card {
    background: linear-gradient(135deg, #FFF0F4 0%, #FFFFFF 100%);
    border: 2px solid var(--rose-lt);
    border-radius: 18px;
    padding: 2.5rem 3rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}
.offer-badge-pill {
    position: absolute;
    top: 1.25rem;
    right: 1.75rem;
    background: var(--burgundy);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .35rem .9rem;
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(139,26,74,.2);
}
.offer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.offer-content {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex: 1;
    min-width: 300px;
}
.offer-icon {
    font-size: 3.25rem;
    line-height: 1;
    background: var(--rose-pale);
    padding: .85rem;
    border-radius: 18px;
    flex-shrink: 0;
}
.offer-content h2 {
    font-size: 1.55rem;
    color: var(--burgundy-dk);
    margin-bottom: .4rem;
}
.offer-content p {
    font-size: 1rem;
    color: var(--navy-soft);
    margin-bottom: 0;
    line-height: 1.55;
}

/* ── Article Card & Content Overview ──────────────────────── */
.article-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

/* ── Features Detail Grid ─────────────────────────────────── */
.features-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
    margin-top: 1rem;
}
.feature-detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 1.75rem;
    display: flex;
    gap: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.feature-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--rose-lt);
}
.feature-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--rose-pale);
    color: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-detail-text h3 {
    font-size: 1.1rem;
    margin-bottom: .35rem;
}
.feature-detail-text p {
    font-size: .88rem;
    color: var(--warm-gray);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ── Why Choose Grid ──────────────────────────────────────── */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}
.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1.15rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.why-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.why-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #E6F4EA;
    color: #137333;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: .1rem;
}
.why-content p {
    font-size: .95rem;
    color: var(--navy);
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.55;
}

/* ── Steps Timeline ───────────────────────────────────────── */
.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.75rem;
    margin-top: 1rem;
}
.timeline-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.timeline-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--rose-lt);
}
.step-badge-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--burgundy);
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.35rem;
    box-shadow: 0 4px 12px rgba(139,26,74,.25);
}
.step-body-card h3 {
    font-size: 1.15rem;
    margin-bottom: .6rem;
    color: var(--navy);
}
.step-body-card p {
    font-size: .9rem;
    color: var(--warm-gray);
    margin-bottom: 0;
    line-height: 1.6;
}

.max-content-wrap {
    max-width: 840px;
    margin: 0 auto;
}
.lead-paragraph {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--navy-soft);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .partner-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .partner-title-wrap { flex-direction: column; gap: 1rem; }
    .partner-metrics-bar { flex-direction: column; align-items: flex-start; gap: .85rem; padding: 1.25rem; }
    .metric-divider { display: none; }
    .offer-grid { flex-direction: column; align-items: flex-start; }
    .offer-badge-pill { position: static; margin-bottom: 1rem; }
    .steps-timeline { grid-template-columns: 1fr; }
    .features-detail-grid, .why-choose-grid { grid-template-columns: 1fr; }
    .offer-banner-card { padding: 1.75rem 1.5rem; }
    .article-card { padding: 1.5rem; }
}

/* ── Print ─────────────────────────────────────────────────── */
@media print {
    .site-header, .site-footer, .nav-toggle, .btn { display: none !important; }
    body { background: white; color: black; }
}

/* ── Partner Minimal Hero & Premium Gallery Auto-Slider ── */
.partner-hero--minimal {
    position: relative;
    padding: 4.5rem 0 5rem 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dk) 100%);
    overflow: hidden;
}

.partner-hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.18; /* Low opacity background image */
    filter: saturate(1.2) blur(1px);
    z-index: 1;
    pointer-events: none;
}

.partner-hero-container {
    position: relative;
    z-index: 2;
}

.center-badges {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.left-badges {
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.partner-hero-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3.5rem;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.hero-left-col h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.hero-right-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.hero-right-col .partner-headline {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1.5;
    color: var(--navy-soft);
    font-weight: 400;
    margin-bottom: 0;
}

.center-actions {
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 3.5rem;
}

.partner-hero-centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.partner-hero-centered-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.partner-hero-centered-content .partner-headline {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1.5;
    color: var(--navy-soft);
    font-weight: 400;
    margin-bottom: 2rem;
}

.left-actions {
    margin-top: 0.5rem;
}


.btn-xl {
    padding: 0.75rem 2.2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .partner-hero-split-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    .left-badges {
        justify-content: center;
    }
    .hero-left-col, .hero-right-col {
        text-align: center;
        align-items: center;
    }
}


.glow-btn {
    box-shadow: 0 0 25px rgba(194, 67, 109, 0.45);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glow-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 35px rgba(194, 67, 109, 0.7);
}

/* Premium Image Gallery Auto-Slider */
.hero-gallery-wrapper {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 1rem 0;
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.hero-gallery-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: galleryMarquee 28s linear infinite;
}

.hero-gallery-wrapper:hover .hero-gallery-track {
    animation-play-state: paused;
}

@keyframes galleryMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.hero-gallery-slide {
    display: block;
    flex: 0 0 auto;
    width: 280px;
    text-decoration: none;
}

.gallery-image-card {
    position: relative;
    width: 280px;
    height: 185px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.gallery-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.75) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    transition: opacity 0.3s ease;
}

.gallery-cta-tag {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    background: var(--burgundy);
    padding: 0.4rem 1.1rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-gallery-slide:hover .gallery-image-card {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 32px rgba(139, 26, 74, 0.25);
}

.hero-gallery-slide:hover .gallery-image-card img {
    transform: scale(1.08);
}

.hero-gallery-slide:hover .gallery-overlay {
    opacity: 1;
}

