/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    --background: #0E0815;
    --foreground: #F2EAF5;
    --card: #1A1124;
    --card-foreground: #F2EAF5;
    --popover: #1A1124;
    --popover-foreground: #F2EAF5;
    --primary: #FF2D95;
    --primary-foreground: #0E0815;
    --secondary: #FFD24A;
    --secondary-foreground: #0E0815;
    --muted: #241A30;
    --muted-foreground: #BFB3C7;
    --accent: #22E0FF;
    --accent-foreground: #0E0815;
    --destructive: #F43F5E;
    --destructive-foreground: #000000;
    --border: #2E2340;
    --input: #241A30;
    --ring: #FF2D95;

    --gradient-neon: linear-gradient(135deg, #FF2D95 0%, #22E0FF 100%);
    --gradient-gold: linear-gradient(135deg, #FFD24A 0%, #FF9A3C 50%, #FFD24A 100%);
    --gradient-magenta-glow: radial-gradient(circle at 50% 50%, rgba(255, 45, 149, 0.35) 0%, transparent 70%);
    --gradient-cyan-glow: radial-gradient(circle at 50% 50%, rgba(34, 224, 255, 0.30) 0%, transparent 70%);

    --shadow-neon: 0 0 24px rgba(255, 45, 149, 0.35), 0 0 48px rgba(34, 224, 255, 0.20);
    --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.40);
    --shadow-lift: 0 20px 60px rgba(255, 45, 149, 0.30), 0 0 80px rgba(34, 224, 255, 0.18);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 999px;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 80px;
    --space-2xl: 140px;

    --container: 1240px;
    --header-height: 72px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 280ms var(--ease);
}

.dark {
    --background: #0E0815;
    --foreground: #F2EAF5;
    --card: #1A1124;
    --card-foreground: #F2EAF5;
    --popover: #1A1124;
    --popover-foreground: #F2EAF5;
    --primary: #FF2D95;
    --primary-foreground: #0E0815;
    --secondary: #FFD24A;
    --secondary-foreground: #0E0815;
    --muted: #241A30;
    --muted-foreground: #BFB3C7;
    --accent: #22E0FF;
    --accent-foreground: #0E0815;
    --destructive: #F43F5E;
    --destructive-foreground: #000000;
    --border: #2E2340;
    --input: #241A30;
    --ring: #FF2D95;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
img, video, iframe, embed, object, svg { max-width: 100%; height: auto; }
[class*="grid"] > *, [class*="flex"] > * { min-width: 0; }
pre, code, .code-block { max-width: 100%; overflow-x: auto; }
.table-wrapper { max-width: 100%; overflow-x: auto; }
.table-wrapper:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
p, li, td, th { overflow-wrap: break-word; }
input, textarea, select { max-width: 100%; }
section { overflow: clip; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Manrope", system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(255, 45, 149, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 30%, rgba(34, 224, 255, 0.08) 0%, transparent 60%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Unbounded", system-ui, sans-serif;
    color: var(--foreground);
    margin: 0 0 var(--space-sm);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 3.25rem); font-weight: 700; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

p { margin: 0 0 var(--space-sm); }

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--primary); text-decoration: underline; text-decoration-color: var(--primary); text-underline-offset: 4px; }

ul, ol { padding-left: 1.25em; }
li { margin-bottom: 0.4em; }

::selection { background: var(--primary); color: var(--primary-foreground); }

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: var(--space-sm);
    z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    font-family: "Unbounded", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    text-decoration: none;
    line-height: 1;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.btn-primary {
    background: var(--gradient-neon);
    color: #fff;
    box-shadow: 0 6px 24px rgba(255, 45, 149, 0.40);
}
.btn-primary:hover { box-shadow: var(--shadow-lift); color: #fff; }

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-xl { min-height: 60px; padding: 18px 40px; font-size: 1.1rem; }

.btn-pulse { animation: pulse-glow 2.5s ease-in-out infinite; }

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 6px 24px rgba(255, 45, 149, 0.40), 0 0 0 rgba(34, 224, 255, 0); }
    50% { box-shadow: 0 6px 32px rgba(255, 45, 149, 0.70), 0 0 40px rgba(34, 224, 255, 0.35); }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(14, 8, 21, 0.85);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}

@media (min-width: 769px) {
    .site-header { backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-sm);
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--foreground);
    font-family: "Unbounded", sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
}
.site-brand:hover { color: var(--foreground); text-decoration: none; }

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gradient-neon);
    color: #fff;
    font-family: "Unbounded", sans-serif;
    font-weight: 900;
    box-shadow: 0 0 18px rgba(255, 45, 149, 0.50);
}

.brand-text { letter-spacing: -0.02em; }
.brand-accent { color: var(--accent); }

.primary-nav { display: none; }

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--space-md);
}

.nav-link {
    color: var(--foreground);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 4px;
    position: relative;
}
.nav-link:hover { color: var(--accent); text-decoration: none; }
.nav-link::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--gradient-neon);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; gap: 12px; align-items: center; }

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    z-index: 1001;
    padding: 12px;
}
.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav drawer */
@media (max-width: 768px) {
    .primary-nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--background);
        z-index: 999;
        padding: var(--space-lg) var(--space-sm);
        overflow-y: auto;
        flex-direction: column;
    }
    .primary-nav.is-open { display: flex; }
    .nav-list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
    .nav-list li { border-bottom: 1px solid var(--border); }
    .nav-link {
        display: flex;
        align-items: center;
        min-height: 56px;
        font-size: 1.1rem;
        padding: 8px 0;
    }
    .nav-cta {
        margin-top: var(--space-lg);
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
    }
    .nav-cta .btn { width: 100%; }
}

@media (min-width: 769px) {
    .primary-nav {
        display: flex;
        align-items: center;
        gap: var(--space-lg);
    }
    .menu-toggle { display: none; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, var(--background) 0%, #060309 100%);
    border-top: 1px solid var(--border);
    padding: var(--space-xl) var(--space-sm) var(--space-lg);
    margin-top: var(--space-xl);
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--space-sm);
    font-family: "Unbounded", sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
}

.footer-tagline {
    color: var(--muted-foreground);
    font-size: 0.95rem;
}

.footer-heading {
    font-family: "Unbounded", sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-sm);
    color: var(--foreground);
}

.footer-list,
.footer-badges {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-list li { margin-bottom: 10px; }
.footer-list a { color: var(--muted-foreground); font-size: 0.95rem; }
.footer-list a:hover { color: var(--accent); }

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-badges li {
    margin: 0;
    padding: 6px 12px;
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--foreground);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-top: var(--space-md);
    border-radius: 50%;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: "Unbounded", sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
}

.footer-bottom {
    max-width: var(--container);
    margin: var(--space-lg) auto 0;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--muted-foreground);
    font-size: 0.85rem;
}

/* ============================================
   LAYOUT HELPERS
   ============================================ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.section {
    padding: var(--space-xl) 0;
}
@media (min-width: 1024px) {
    .section { padding: var(--space-2xl) 0; }
}

.section-eyebrow {
    display: inline-block;
    font-family: "Unbounded", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-sm);
}

.section-lead {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    color: var(--muted-foreground);
    font-size: 1.1rem;
}

.gold-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(255, 210, 74, 0.30);
}

.neon-text {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding: var(--space-xl) 0 var(--space-xl);
    overflow: clip;
}
@media (min-width: 1024px) {
    .hero { padding: var(--space-2xl) 0; }
}

.hero-glow-1, .hero-glow-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.hero-glow-1 {
    width: 480px; height: 480px;
    background: var(--gradient-magenta-glow);
    top: -100px; left: -100px;
}
.hero-glow-2 {
    width: 520px; height: 520px;
    background: var(--gradient-cyan-glow);
    bottom: -150px; right: -150px;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-sm);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}
@media (min-width: 1024px) {
    .hero-inner { grid-template-columns: 1.1fr 1fr; gap: var(--space-xl); }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--accent);
    border-radius: var(--radius-full);
    color: var(--accent);
    font-family: "Unbounded", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--space-md);
}

.hero-title {
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.hero-amount {
    font-family: "Unbounded", sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 9vw, 6rem);
    line-height: 1;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 40px rgba(255, 210, 74, 0.35);
    margin: var(--space-sm) 0;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--muted-foreground);
    margin-bottom: var(--space-lg);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    color: var(--muted-foreground);
    font-size: 0.85rem;
}
.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lift);
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(255, 45, 149, 0.15), rgba(34, 224, 255, 0.10));
}
.hero-visual::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-xl);
    background: var(--gradient-neon);
    z-index: -1;
    filter: blur(20px);
    opacity: 0.6;
}
.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   INFO CARD
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}
@media (min-width: 640px) {
    .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .card-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .card-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.info-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    overflow: hidden;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
@media (min-width: 768px) {
    .info-card { padding: var(--space-lg); }
}
.info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 45, 149, 0.4), rgba(34, 224, 255, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: 0.7;
    transition: opacity var(--transition);
}
.info-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-lift);
}
.info-card:hover::before { opacity: 1; }

.info-card-media {
    margin: calc(var(--space-md) * -1) calc(var(--space-md) * -1) var(--space-md);
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
@media (min-width: 768px) {
    .info-card-media { margin: calc(var(--space-lg) * -1) calc(var(--space-lg) * -1) var(--space-md); }
}
.info-card-media img { width: 100%; height: 100%; object-fit: cover; }

.info-card-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--muted);
    border-radius: var(--radius-md);
    font-size: 1.7rem;
    margin-bottom: var(--space-sm);
}

.info-card-stat {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--space-sm);
}
.stat-number {
    font-family: "Unbounded", sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 6px;
}

.info-card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.info-card-desc {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    flex-grow: 1;
}
.info-card-cta {
    margin-top: var(--space-sm);
    align-self: flex-start;
}

.info-card-bonus {
    animation: float-gentle 4s ease-in-out infinite;
}
@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    padding: var(--space-xl) var(--space-sm);
    text-align: center;
    background: linear-gradient(180deg, #150B22 0%, #0E0815 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: var(--space-xl) 0;
    overflow: hidden;
}
@media (min-width: 1024px) {
    .cta-banner { padding: var(--space-2xl) var(--space-sm); }
}

.cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}
.cta-glow-magenta {
    background: var(--gradient-magenta-glow);
    top: -150px;
    left: 10%;
}
.cta-glow-cyan {
    background: var(--gradient-cyan-glow);
    bottom: -150px;
    right: 10%;
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-heading {
    text-transform: uppercase;
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: var(--space-sm);
}

.cta-subtext {
    color: var(--muted-foreground);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.cta-amount {
    font-family: "Unbounded", sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 50px rgba(255, 210, 74, 0.4);
    margin-bottom: var(--space-lg);
}

.cta-microcopy {
    margin-top: var(--space-md);
    color: var(--muted-foreground);
    font-size: 0.8rem;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
    padding: var(--space-xl) var(--space-sm);
}
@media (min-width: 1024px) {
    .faq-section { padding: var(--space-2xl) var(--space-sm); }
}

.faq-inner {
    max-width: 880px;
    margin: 0 auto;
}

.faq-heading {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.faq-list {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.faq-item[open] {
    border-left: 3px solid var(--primary);
    background: rgba(255, 45, 149, 0.03);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md);
    cursor: pointer;
    list-style: none;
    font-family: "Unbounded", sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--foreground);
    transition: background var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { background: rgba(255, 45, 149, 0.05); }

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--muted);
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: 700;
    transition: transform var(--transition), background var(--transition);
}
.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: var(--accent-foreground);
}

.faq-answer {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--muted-foreground);
    font-size: 1rem;
    line-height: 1.7;
}
.faq-answer p { margin: 0; }

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-row {
    padding: var(--space-lg) var(--space-sm);
    background: linear-gradient(180deg, rgba(36, 26, 48, 0.4), rgba(14, 8, 21, 0.4));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-inner {
    max-width: var(--container);
    margin: 0 auto;
}

.trust-label {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: var(--space-md);
}

.trust-track {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.trust-chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--foreground);
    font-family: "Unbounded", sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition);
}
.trust-chip:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}
.trust-chip::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}
.trust-chip:hover::after { transform: translateX(100%); }

.trust-icon { font-size: 1.2rem; }

/* ============================================
   CONTENT BLOCKS - SEO TEXT, CALLOUTS, TABLES
   ============================================ */
.content-section {
    max-width: 880px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-sm);
}

.content-section p {
    color: var(--foreground);
    line-height: 1.75;
}

.content-section h2 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}
.content-section h3 {
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
}

.callout {
    background: var(--card);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-md) 0;
}
.callout-primary { border-left-color: var(--primary); }
.callout-gold { border-left-color: var(--secondary); }

.callout h3,
.callout h4 {
    margin-top: 0;
    color: var(--accent);
    font-family: "Unbounded", sans-serif;
    font-size: 1.1rem;
}
.callout-primary h3,
.callout-primary h4 { color: var(--primary); }
.callout-gold h3,
.callout-gold h4 { color: var(--secondary); }

.summary-box {
    background: linear-gradient(135deg, rgba(255, 45, 149, 0.08), rgba(34, 224, 255, 0.06));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin: var(--space-md) 0 var(--space-lg);
}
.summary-box h2,
.summary-box h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 10px;
    margin-top: 0;
}

.stat-highlight {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    background: var(--muted);
    border-radius: var(--radius-md);
    margin: var(--space-sm) 0;
}
.stat-highlight .big {
    font-family: "Unbounded", sans-serif;
    font-weight: 800;
    font-size: 2rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}
.stat-highlight .small {
    font-size: 0.85rem;
    color: var(--muted-foreground);
}

blockquote.pull-quote {
    border-left: 4px solid var(--primary);
    padding: var(--space-sm) var(--space-md);
    margin: var(--space-md) 0;
    font-family: "Unbounded", sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    font-style: normal;
    color: var(--foreground);
    background: var(--card);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
blockquote.pull-quote cite {
    display: block;
    margin-top: var(--space-sm);
    font-family: "Manrope", sans-serif;
    font-size: 0.9rem;
    color: var(--muted-foreground);
    font-style: normal;
}

.table-wrapper { margin: var(--space-md) 0; }

table.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
table.data-table thead {
    background: var(--muted);
}
table.data-table th {
    text-align: left;
    padding: var(--space-sm);
    font-family: "Unbounded", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent);
    border-bottom: 1px solid var(--border);
}
table.data-table td {
    padding: var(--space-sm);
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}
table.data-table tbody tr:last-child td { border-bottom: none; }
table.data-table tbody tr:hover { background: rgba(255, 45, 149, 0.04); }
table.data-table .recommended {
    background: rgba(255, 45, 149, 0.06);
    font-weight: 600;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--space-sm) var(--space-sm) 0;
    font-size: 0.85rem;
    color: var(--muted-foreground);
}
.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 6px;
    color: var(--border);
}
.breadcrumbs a { color: var(--muted-foreground); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs li[aria-current="page"] { color: var(--foreground); }

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .animate-on-scroll { opacity: 1; transform: none; }
}

/* ============================================
   UTILITY
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center { text-align: center; }

/* Sitemap list (utilitarian) */
.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--space-md);
}
.sitemap-list li {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}
.sitemap-list h3 {
    margin-bottom: 8px;
}
.sitemap-list h3 a { color: var(--accent); }
.sitemap-list p {
    color: var(--muted-foreground);
    margin: 0;
    font-size: 0.95rem;
}