/* =============================================================================
   REDDY ANNA — GLOBAL DESIGN SYSTEM
   Source of truth: Reddy Anna logo (black + metallic gold + champagne + white)
   Version: 2.0
   ============================================================================= */

/* =============================================================================
   1. DESIGN TOKENS
   ============================================================================= */

:root {
    /* ── Backgrounds ── */
    --black:           #050505;
    --background:      #080808;
    --surface:         #111111;
    --surface-light:   #181818;
    --surface-mid:     #141414;
    --surface-card:    #111111;

    /* ── Brand Gold ── */
    --gold:            #D4A52C;
    --gold-light:      #E8C96A;
    --champagne:       #F7E39A;
    --gold-dark:       #B87908;
    --gold-deep:       #8C5E00;

    /* ── Gradients ── */
    --gold-gradient: linear-gradient(
        180deg,
        #F7E39A 0%,
        #D9A735 35%,
        #B87908 70%,
        #F0D477 100%
    );
    --gold-gradient-h: linear-gradient(
        90deg,
        #F7E39A 0%,
        #D9A735 40%,
        #B87908 75%,
        #F0D477 100%
    );
    --gold-cta: linear-gradient(
        180deg,
        #F3D97F 0%,
        #D4A52C 50%,
        #B97D08 100%
    );

    /* ── Text ── */
    --white:           #FFFFFF;
    --text:            #FFFFFF;
    --text-secondary:  #C8C8C8;
    --text-muted:      #8F8F8F;

    /* ── Borders ── */
    --border-dark:     #292929;
    --border-darker:   #1E1E1E;
    --border-gold:     rgba(212, 165, 44, 0.30);
    --border-gold-sub: rgba(212, 165, 44, 0.15);
    --border-gold-str: rgba(212, 165, 44, 0.50);

    /* ── Shadows ── */
    --shadow-card:     0 4px 28px rgba(0, 0, 0, 0.65);
    --shadow-gold:     0 8px 32px rgba(212, 165, 44, 0.14);
    --shadow-gold-hov: 0 14px 44px rgba(212, 165, 44, 0.22);
    --shadow-deep:     0 20px 60px rgba(0, 0, 0, 0.85);

    /* ── Spacing (4-based scale) ── */
    --s1:  4px;   --s2:  8px;   --s3: 12px;   --s4: 16px;
    --s5:  20px;  --s6:  24px;  --s8: 32px;   --s10: 40px;
    --s12: 48px;  --s16: 64px;  --s20: 80px;  --s24: 96px;
    --s32: 128px;

    /* ── Typography ── */
    --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

    --text-xs:   0.75rem;    /* 12 */
    --text-sm:   0.875rem;   /* 14 */
    --text-base: 1rem;       /* 16 */
    --text-md:   1.125rem;   /* 18 */
    --text-lg:   1.25rem;    /* 20 */
    --text-xl:   1.5rem;     /* 24 */
    --text-2xl:  1.875rem;   /* 30 */
    --text-3xl:  2.25rem;    /* 36 */
    --text-4xl:  3rem;       /* 48 */
    --text-5xl:  3.75rem;    /* 60 */
    --text-6xl:  4.5rem;     /* 72 */

    --lh-tight:   1.2;
    --lh-snug:    1.35;
    --lh-normal:  1.55;
    --lh-relaxed: 1.72;

    /* ── Radius ── */
    --r-sm:   4px;
    --r-md:   8px;
    --r-lg:   12px;
    --r-xl:   16px;
    --r-2xl:  24px;
    --r-full: 9999px;

    /* ── Transitions ── */
    --t-fast: 150ms ease;
    --t-base: 260ms ease;
    --t-slow: 420ms ease;

    /* ── Layout ── */
    --header-h:     88px;
    --header-h-mob: 72px;

    /* ── Z-index ── */
    --z-base:   1;
    --z-raised: 10;
    --z-over:   100;
    --z-modal:  1000;
    --z-header: 200;
}

/* =============================================================================
   2. RESET
   ============================================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: var(--text-base);
    line-height: var(--lh-normal);
    color: var(--text);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img  { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

a {
    color: var(--white);
    text-decoration: none;
    transition: color var(--t-fast);
}
a:hover { color: var(--gold); }
a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: var(--r-sm);
}

::selection { background: rgba(212,165,44,.22); color: var(--white); }

::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: #2c2c2c; border-radius: var(--r-full); }
::-webkit-scrollbar-thumb:hover { background: #3a3a3a; }

/* =============================================================================
   3. TYPOGRAPHY
   ============================================================================= */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: var(--lh-tight);
    color: var(--white);
    letter-spacing: -0.015em;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl);  }
h5 { font-size: var(--text-lg);  }
h6 { font-size: var(--text-md);  }

p {
    color: var(--text-secondary);
    line-height: var(--lh-relaxed);
    max-width: 70ch;
}

/* Gold text treatments */
.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-gold-flat { color: var(--gold); }
.text-white     { color: var(--white); }
.text-muted     { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }

/* =============================================================================
   4. LAYOUT
   ============================================================================= */

.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--s6);
}
.container--wide   { max-width: 1400px; }
.container--narrow { max-width: 820px; }

.section     { padding-block: var(--s20); }
.section--sm { padding-block: var(--s12); }
.section--lg { padding-block: var(--s32); }

/* Tonal backgrounds — alternate sections */
.bg-base    { background-color: var(--background); }
.bg-surface { background-color: var(--surface);    }
.bg-mid     { background-color: var(--surface-mid);}
.bg-black   { background-color: var(--black);      }

/* Grid */
.grid   { display: grid; gap: var(--s6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Flex helpers */
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col     { display: flex; flex-direction: column; }
.gap-2 { gap: var(--s2); }
.gap-4 { gap: var(--s4); }
.gap-6 { gap: var(--s6); }
.gap-8 { gap: var(--s8); }

/* Misc utils */
.text-center { text-align: center; }
.text-left   { text-align: left;   }
.w-full      { width: 100%; }
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* =============================================================================
   5. SKIP LINK
   ============================================================================= */

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--s4);
    z-index: 9999;
    padding: var(--s3) var(--s5);
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
    border-radius: var(--r-md);
    font-size: var(--text-sm);
    transition: top var(--t-fast);
}
.skip-link:focus { top: var(--s4); }

/* =============================================================================
   6. HEADER
   ============================================================================= */

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: var(--z-header);
    background: rgba(5, 5, 5, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212, 165, 44, 0.18);
    transition: box-shadow var(--t-base), background var(--t-base);
}

.site-header.scrolled {
    background: rgba(5, 5, 5, 0.99);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.75);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s8);
    padding-block: var(--s5);
    padding-inline: var(--s2);
}

/* Logo */
.site-logo { flex-shrink: 0; }
.site-logo a { display: flex; align-items: center; }
.site-logo img {
    height: 52px;
    width: auto;
    display: block;
}

/* Desktop nav */
.site-nav {
    display: flex;
    align-items: center;
    gap: var(--s1);
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
    padding: var(--s2) var(--s3);
    border-radius: var(--r-md);
    white-space: nowrap;
    letter-spacing: 0.01em;
    position: relative;
    transition: color var(--t-fast), background var(--t-fast);
}
.nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,.05);
}
.nav-link.active {
    color: var(--gold);
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: var(--r-full);
}

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-menu {
    /* hidden by default — toggled via .is-open class (JS) or :focus-within */
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 4px);   /* reduced gap — less dead zone */
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 210px;
    background: var(--surface);
    border: 1px solid var(--border-gold-sub);
    border-radius: var(--r-lg);
    padding: var(--s2);
    box-shadow: var(--shadow-deep);
    z-index: var(--z-over);
    transition:
        opacity      200ms ease,
        transform    200ms ease,
        visibility   0ms   linear 200ms;   /* delay hide so cursor can reach menu */
}

/* Invisible bridge fills the gap between trigger and menu */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;            /* covers the gap above the menu */
    left: 0;
    right: 0;
    height: 12px;
}

/* Show on hover — delay the hide so cursor can travel across the gap */
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition:
        opacity   180ms ease,
        transform 180ms ease,
        visibility 0ms linear 0ms;   /* show immediately */
}

.nav-dropdown-menu a {
    display: block;
    padding: var(--s3) var(--s4);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    border-radius: var(--r-md);
    transition: color var(--t-fast), background var(--t-fast);
}
.nav-dropdown-menu a:hover {
    color: var(--gold);
    background: rgba(212,165,44,.07);
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--s3);
    flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: var(--s2);
    border-radius: var(--r-md);
    border: 1px solid var(--border-dark);
    cursor: pointer;
    transition: border-color var(--t-fast);
}
.nav-toggle:hover { border-color: var(--border-gold); }
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: var(--r-full);
    transition: transform var(--t-base), opacity var(--t-base), width var(--t-base);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg);  }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    background: rgba(5,5,5,.98);
    z-index: calc(var(--z-header) - 1);
    overflow-y: auto;
    padding: var(--s6);
    border-top: 1px solid var(--border-gold-sub);
}
.mobile-nav.open { display: block; }

.mobile-nav-links { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-links a {
    display: block;
    padding: var(--s4);
    font-size: var(--text-md);
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--r-md);
    border-bottom: 1px solid var(--border-darker);
    transition: color var(--t-fast), background var(--t-fast);
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--gold);
    background: rgba(212,165,44,.06);
}

.mobile-nav-actions {
    margin-top: var(--s6);
    display: flex;
    flex-direction: column;
    gap: var(--s3);
}

/* Body offset */
.header-offset { padding-top: var(--header-h); }

/* =============================================================================
   7. BUTTONS
   ============================================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s2);
    padding: 11px var(--s6);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.025em;
    border-radius: var(--r-md);
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    -webkit-user-select: none;
    user-select: none;
    transition:
        filter      var(--t-fast),
        box-shadow  var(--t-fast),
        transform   var(--t-fast),
        background  var(--t-fast),
        color       var(--t-fast),
        border-color var(--t-fast);
}
.btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}
.btn:active { transform: scale(0.975); }

/* Primary — metallic gold */
.btn-primary {
    background: var(--gold-cta);
    color: var(--black);
    border-color: transparent;
    box-shadow: 0 2px 14px rgba(212,165,44,.30);
    font-weight: 700;
}
.btn-primary:hover {
    color: var(--black);
    filter: brightness(1.09);
    box-shadow: 0 6px 24px rgba(212,165,44,.48);
    transform: translateY(-1px);
}

/* Secondary — outlined */
.btn-secondary {
    background: transparent;
    color: var(--champagne);
    border-color: var(--gold);
}
.btn-secondary:hover {
    background: var(--gold-cta);
    color: var(--black);
    border-color: transparent;
    box-shadow: 0 4px 18px rgba(212,165,44,.38);
    transform: translateY(-1px);
}

/* Ghost */
.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border-dark);
}
.btn-ghost:hover {
    color: var(--white);
    border-color: var(--border-gold);
    background: rgba(255,255,255,.04);
}

/* Sizes */
.btn-sm  { padding: 7px var(--s4); font-size: var(--text-xs); }
.btn-lg  { padding: 14px var(--s8); font-size: var(--text-base); border-radius: var(--r-lg); }
.btn-full { width: 100%; justify-content: center; }

/* =============================================================================
   8. SECTION HEADERS
   ============================================================================= */

.section-label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--s3);
}

.section-title {
    font-size: clamp(1.75rem, 3vw, var(--text-3xl));
    font-weight: 700;
    color: var(--white);
    line-height: var(--lh-snug);
    margin-bottom: var(--s4);
}

.section-desc {
    font-size: var(--text-md);
    color: var(--text-secondary);
    line-height: var(--lh-relaxed);
    max-width: 60ch;
}

.section-header          { margin-bottom: var(--s12); }
.section-header--center  { text-align: center; }
.section-header--center .section-desc { margin-inline: auto; }

/* Gold accent line */
.gold-bar {
    width: 48px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: var(--r-full);
    margin-bottom: var(--s6);
}
.gold-bar--center { margin-inline: auto; }

/* Horizontal rule — fades to transparent */
.sep {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--border-gold) 30%,
        var(--border-gold) 70%,
        transparent 100%
    );
    margin-block: var(--s12);
}

/* =============================================================================
   9. HERO
   ============================================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--black);
    overflow: hidden;
}

/* Subtle radial glow behind content — not garish */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 30% 50%, rgba(212,165,44,.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(212,165,44,.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    padding-top:    calc(var(--header-h) + var(--s16));
    padding-bottom: var(--s20);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--s2);
    padding: 5px var(--s4);
    background: rgba(212,165,44,.09);
    border: 1px solid rgba(212,165,44,.25);
    border-radius: var(--r-full);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--s6);
}

.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 7px var(--gold);
    animation: blink 2.2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .45; transform: scale(.7); }
}

.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, var(--text-6xl));
    line-height: var(--lh-tight);
    color: var(--white);
    margin-bottom: var(--s5);
    letter-spacing: -0.025em;
}

.hero-desc {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--s8);
    max-width: 54ch;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: var(--s4);
    flex-wrap: wrap;
    margin-top: var(--s8);
}

/* Generic reusable button row — used in page heroes and CTA sections */
.btn-row {
    display: flex;
    align-items: center;
    gap: var(--s4);
    flex-wrap: wrap;
    margin-top: var(--s8);
}

/* CTA section description — centred with breathing room below */
.cta-desc {
    font-size: var(--text-md);
    color: var(--text-secondary);
    line-height: var(--lh-relaxed);
    max-width: 60ch;
    margin: 0 auto var(--s8);
}

/* Thin gold accent above heading */
.hero-rule {
    width: 52px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: var(--r-full);
    margin-bottom: var(--s6);
}

/* =============================================================================
   10. STAT CARD
   ============================================================================= */

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border-gold-sub);
    border-radius: var(--r-xl);
    padding: var(--s8) var(--s6);
    text-align: center;
    transition: border-color var(--t-base), box-shadow var(--t-base);
}
.stat-card:hover {
    border-color: rgba(212,165,44,.30);
    box-shadow: var(--shadow-gold);
}

.stat-number {
    font-size: var(--text-4xl);
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--s2);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
    letter-spacing: 0.04em;
    font-weight: 500;
}

/* =============================================================================
   11. CARD
   ============================================================================= */

.card {
    background: var(--surface-card);
    border: 1px solid var(--border-gold-sub);
    border-radius: var(--r-xl);
    padding: var(--s8);
    transition:
        background     var(--t-base),
        border-color   var(--t-base),
        box-shadow     var(--t-base),
        transform      var(--t-base);
}
.card:hover {
    background: #161616;
    border-color: rgba(212,165,44,.28);
    box-shadow: var(--shadow-gold-hov);
    transform: translateY(-3px);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-lg);
    background: rgba(212,165,44,.08);
    border: 1px solid var(--border-gold-sub);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--s5);
    color: var(--gold);
    font-size: 22px;
    flex-shrink: 0;
}

.card-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--s3);
}

.card-text {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
}

/* =============================================================================
   12. BADGE
   ============================================================================= */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: var(--r-full);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.badge-gold  { background: rgba(212,165,44,.11); color: var(--gold-light); border: 1px solid var(--border-gold-sub); }
.badge-green { background: rgba(52,199,89,.09);  color: #6EE7A0;           border: 1px solid rgba(52,199,89,.2); }
.badge-dark  { background: rgba(255,255,255,.05);color: var(--text-secondary); border: 1px solid var(--border-dark); }

/* =============================================================================
   13. FORMS
   ============================================================================= */

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--s2);
    margin-bottom: var(--s5);
}

.form-label {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: .01em;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: var(--surface-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--r-md);
    padding: 12px var(--s4);
    font-size: var(--text-sm);
    color: var(--white);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,165,44,.12);
}

.form-textarea { resize: vertical; min-height: 120px; line-height: var(--lh-relaxed); }

.form-error { font-size: var(--text-xs); color: #E05757; }
.form-hint  { font-size: var(--text-xs); color: var(--text-muted); }

/* Form card wrapper */
.form-card {
    background: var(--surface-card);
    border: 1px solid var(--border-gold-sub);
    border-radius: var(--r-xl);
    padding: var(--s10);
    max-width: 480px;
    width: 100%;
    box-shadow: var(--shadow-card);
}
.form-card-header { text-align: center; margin-bottom: var(--s8); }
.form-card-header h1 { font-size: var(--text-2xl); margin-bottom: var(--s2); }
.form-card-header p { font-size: var(--text-sm); color: var(--text-muted); margin-inline: auto; }

.form-divider {
    position: relative;
    text-align: center;
    margin-block: var(--s6);
}
.form-divider::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 1px;
    background: var(--border-darker);
}
.form-divider span {
    position: relative;
    background: var(--surface-card);
    padding-inline: var(--s3);
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* =============================================================================
   14. PAGE HERO (inner pages)
   ============================================================================= */

.page-hero {
    background: var(--black);
    padding-top:    calc(var(--header-h) + var(--s16));
    padding-bottom: var(--s16);
    position: relative;
    overflow: hidden;
}

/* Subtle gold tint bottom edge */
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212,165,44,.22) 35%,
        rgba(212,165,44,.22) 65%,
        transparent 100%
    );
}

/* Very faint radial glow */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 15% 50%, rgba(212,165,44,.05) 0%, transparent 65%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: clamp(1.9rem, 4vw, var(--text-4xl));
    position: relative;
    z-index: 1;
    margin-bottom: var(--s4);
}
.page-hero-desc {
    font-size: var(--text-md);
    color: var(--text-secondary);
    max-width: 60ch;
    line-height: var(--lh-relaxed);
    position: relative;
    z-index: 1;
}

/* =============================================================================
   15. BREADCRUMB
   ============================================================================= */

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--s2);
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--s5);
    position: relative;
    z-index: 1;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: #3a3a3a; }
.breadcrumb-current { color: var(--gold); font-weight: 500; }

/* =============================================================================
   16. NOTICE BOX
   ============================================================================= */

.notice {
    padding: var(--s4) var(--s5);
    border-radius: var(--r-lg);
    border-left: 3px solid;
    font-size: var(--text-sm);
    line-height: var(--lh-relaxed);
}
.notice-info    { background: rgba(212,165,44,.06); border-color: var(--gold);   color: var(--text-secondary); }
.notice-warning { background: rgba(224,87,87,.06);  border-color: #E05757;       color: var(--text-secondary); }

/* =============================================================================
   17. PREMIUM LIST
   ============================================================================= */

.premium-list { display: flex; flex-direction: column; gap: var(--s3); }
.premium-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--s3);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}
.premium-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 6px;
}

/* =============================================================================
   18. FAQ
   ============================================================================= */

.faq-item { border-bottom: 1px solid var(--border-darker); }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: var(--s5);
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--white);
    text-align: left;
    cursor: pointer;
    background: none;
    border: none;
    gap: var(--s4);
    transition: color var(--t-fast);
}
.faq-question:hover { color: var(--gold); }

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--gold);
    transition: transform var(--t-base);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    display: none;
    padding-bottom: var(--s5);
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
}
.faq-item.open .faq-answer { display: block; }

/* =============================================================================
   19. FOOTER
   ============================================================================= */

.site-footer {
    background: #060606;
    border-top: 1px solid rgba(212,165,44,.13);
    padding-top: var(--s16);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--s12);
    padding-bottom: var(--s12);
}

.footer-logo { margin-bottom: var(--s5); }
.footer-logo img { height: 40px; width: auto; }

.footer-tagline {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
    max-width: 30ch;
}

.footer-col-title {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: var(--s5);
}

.footer-links { display: flex; flex-direction: column; gap: var(--s3); }
.footer-links a {
    font-size: var(--text-sm);
    color: var(--text-muted);
    transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid var(--border-darker);
    padding-block: var(--s6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s4);
    flex-wrap: wrap;
}

.footer-copy { font-size: var(--text-xs); color: var(--text-muted); }

.footer-legal { display: flex; gap: var(--s5); flex-wrap: wrap; }
.footer-legal a {
    font-size: var(--text-xs);
    color: var(--text-muted);
    transition: color var(--t-fast);
}
.footer-legal a:hover { color: var(--gold); }
