/* ============================================================
   buyreview.store — Premium Agency Design System v3.0
   Gold + Electric Teal Dual Accent | Full Animation Suite
   ============================================================ */

/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ── CSS Design Tokens ─────────────────────────────────────── */
:root {
    /* Backgrounds */
    --bg-main: #050508;
    --bg-layer: #0b0b12;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.065);
    --bg-glass: rgba(255, 255, 255, 0.04);
    --bg-glass-border: rgba(255, 255, 255, 0.09);

    /* Gold Brand */
    --gold: #e8b84b;
    --gold-light: #f5d47a;
    --gold-dark: #b8882a;
    --gold-glow: rgba(232, 184, 75, 0.22);
    --gold-glow-strong: rgba(232, 184, 75, 0.40);

    /* Teal Accent */
    --teal: #00e5d4;
    --teal-light: #40fff0;
    --teal-dark: #00b5a6;
    --teal-glow: rgba(0, 229, 212, 0.18);
    --teal-glow-strong: rgba(0, 229, 212, 0.35);

    /* Text */
    --text-main: #eeeef5;
    --text-muted: #7a7a98;
    --text-subtle: #4a4a65;
    --text-light: #ffffff;

    /* Accents */
    --accent-green: #22c55e;
    --accent-red: #ef4444;

    /* Borders */
    --border-color: rgba(255, 255, 255, 0.07);
    --border-gold: rgba(232, 184, 75, 0.28);
    --border-teal: rgba(0, 229, 212, 0.25);

    /* Fonts */
    --font-display: 'Space Grotesk', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Layout */
    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    /* Shadows */
    --shadow-gold: 0 0 40px rgba(232, 184, 75, 0.15), 0 4px 24px rgba(0,0,0,0.5);
    --shadow-teal: 0 0 40px rgba(0, 229, 212, 0.12), 0 4px 24px rgba(0,0,0,0.5);
    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.5);
    --shadow-focus: 0 0 0 3px rgba(232, 184, 75, 0.3);

    /* Transitions */
    --ease-smooth: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: all 0.3s ease-out;
}

/* ── Base Reset ────────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    position: relative;
    cursor: none; /* hide default cursor on desktop */
}

@media (max-width: 768px) {
    body { cursor: auto; }
}

/* ── Page Load Overlay ─────────────────────────────────────── */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-main);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader-logo span { color: var(--gold); }

@keyframes loaderPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.97); }
}

/* ── Custom Cursor ─────────────────────────────────────────── */
#cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, background 0.3s ease, width 0.3s ease, height 0.3s ease;
    mix-blend-mode: difference;
}

#cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(232, 184, 75, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.35s ease, height 0.35s ease, border-color 0.35s ease, opacity 0.3s ease;
}

#cursor-ring.hovered {
    width: 56px;
    height: 56px;
    border-color: var(--teal);
    opacity: 0.7;
}

@media (max-width: 768px) {
    #cursor-dot, #cursor-ring { display: none; }
}

/* Global Noise Texture Overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text-light);
}

p { color: var(--text-muted); line-height: 1.75; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--ease-smooth);
}

img { max-width: 100%; height: auto; }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--gold-dark), var(--teal-dark));
    border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── Layout Utilities ──────────────────────────────────────── */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.section-padding { padding: 7rem 0; }

/* ── Text Gradients ────────────────────────────────────────── */
.text-gradient-gold {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-teal {
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-dual {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── Badge ─────────────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    background: rgba(232, 184, 75, 0.08);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    font-family: var(--font-display);
}

.badge-teal {
    background: rgba(0, 229, 212, 0.08);
    border-color: var(--border-teal);
    color: var(--teal-light);
}

/* ── Scroll Reveal Animations ──────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(42px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.active { opacity: 1; transform: translateX(0); }

.reveal-scale {
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.active { opacity: 1; transform: scale(1); }

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Animated Background Orbs ──────────────────────────────── */
.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.hero-bg-orb-1 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(232, 184, 75, 0.10) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    animation: orbFloat1 10s ease-in-out infinite;
}

.hero-bg-orb-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 229, 212, 0.09) 0%, transparent 70%);
    bottom: -50px;
    left: -80px;
    animation: orbFloat2 13s ease-in-out infinite;
}

.hero-bg-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(100, 60, 200, 0.08) 0%, transparent 70%);
    top: 30%;
    left: 40%;
    animation: orbFloat1 16s ease-in-out infinite reverse;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); }
    33% { transform: translateY(-28px) scale(1.04) rotate(5deg); }
    66% { transform: translateY(14px) scale(0.97) rotate(-3deg); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); }
    40% { transform: translateY(22px) scale(1.06) rotate(-6deg); }
    70% { transform: translateY(-16px) scale(0.95) rotate(4deg); }
}

/* ── Floating Particles (Hero) ─────────────────────────────── */
.particles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

.particle-gold {
    background: var(--gold);
    box-shadow: 0 0 6px var(--gold-glow);
}

.particle-teal {
    background: var(--teal);
    box-shadow: 0 0 6px var(--teal-glow);
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) translateX(0) scale(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-10vh) translateX(var(--drift, 30px)) scale(1); opacity: 0; }
}

/* ── Header / Navbar ───────────────────────────────────────── */
header {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(5, 5, 8, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    position: sticky;
    top: 0;
    z-index: 200;
    transition: padding 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

header.scrolled {
    border-bottom-color: rgba(232, 184, 75, 0.2);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
    padding: 0.75rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    font-family: var(--font-display);
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.logo svg, .logo i {
    color: var(--gold);
    width: 20px;
    height: 20px;
}

.logo .logo-dot {
    width: 7px;
    height: 7px;
    background: var(--teal);
    border-radius: 50%;
    display: inline-block;
    margin-left: 2px;
    animation: pulseDot 2.5s ease-in-out infinite;
    box-shadow: 0 0 8px var(--teal-glow);
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px var(--teal-glow); }
    50% { opacity: 0.7; transform: scale(1.4); box-shadow: 0 0 16px var(--teal-glow-strong); }
}

.nav-links {
    display: flex;
    gap: 0.15rem;
    align-items: center;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    transition: color 0.25s ease, background 0.25s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link:hover {
    color: var(--text-light);
    background: rgba(255,255,255,0.05);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    color: var(--gold-light);
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link-btn {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #050508 !important;
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-link-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 999px;
}

.nav-link-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px var(--gold-glow-strong);
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
    color: #050508 !important;
}

.nav-link-btn::after { display: none; }

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    z-index: 300;
    border-radius: var(--radius-sm);
    transition: border-color 0.3s ease;
}

.hamburger:hover { border-color: var(--border-gold); }

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-main);
    border-radius: 1px;
    transition: var(--ease-smooth);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 100vw);
    height: 100dvh;
    background: rgba(5, 5, 8, 0.97);
    backdrop-filter: blur(30px);
    z-index: 250;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
    border-left: 1px solid var(--border-color);
    transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.open { right: 0; }

.mobile-nav .nav-link {
    font-size: 1.4rem;
    font-weight: 700;
    padding: 0.75rem 0.5rem;
    width: 100%;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transform: translateX(30px);
    opacity: 0;
    transition: color 0.3s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
}

.mobile-nav.open .nav-link { transform: translateX(0); opacity: 1; }
.mobile-nav.open .nav-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.open .nav-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav.open .nav-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.open .nav-link:nth-child(4) { transition-delay: 0.2s; }

.mobile-nav .nav-link:hover { color: var(--gold-light); }
.mobile-nav .nav-link::after { display: none; }
.mobile-nav .nav-link-btn {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    text-align: center;
    border-bottom: none;
}

/* Mobile nav backdrop */
.mobile-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 240;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.open { opacity: 1; }

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 8rem 0 5rem;
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(232, 184, 75, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232, 184, 75, 0.03) 1px, transparent 1px);
    background-size: 70px 70px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black, transparent);
    animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
    0% { background-position: 0 0; }
    100% { background-position: 70px 70px; }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 229, 212, 0.06);
    border: 1px solid var(--border-teal);
    color: var(--teal-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    margin-bottom: 2rem;
    font-family: var(--font-display);
    animation: eyebrowGlow 3s ease-in-out infinite;
}

@keyframes eyebrowGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 229, 212, 0); }
    50% { box-shadow: 0 0 20px rgba(0, 229, 212, 0.15); }
}

.hero-eyebrow span.dot {
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

/* Split text words */
.word {
    display: inline-block;
    overflow: hidden;
}

.word-inner {
    display: inline-block;
    opacity: 0;
    transform: translateY(110%);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.word-inner.active {
    opacity: 1;
    transform: translateY(0);
}

.hero p.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.8;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* ── Floating Hero Chips ───────────────────────────────────── */
.hero-chips {
    display: flex;
    gap: 0.65rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-chip {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    font-family: var(--font-display);
    transition: var(--ease-smooth);
    cursor: default;
}

.hero-chip:hover {
    background: rgba(232, 184, 75, 0.08);
    border-color: var(--border-gold);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.hero-chip svg, .hero-chip i {
    width: 13px;
    height: 13px;
    color: var(--gold);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 999px;
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: none;
    border: none;
}

@media (max-width: 768px) { .btn { cursor: pointer; } }

/* Ripple Effect */
.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    transform: scale(0);
    animation: rippleAnim 0.6s linear;
    pointer-events: none;
}

@keyframes rippleAnim {
    to { transform: scale(4); opacity: 0; }
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    color: #050508;
    box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    border-radius: 999px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(8px);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px var(--gold-glow-strong);
    color: #050508;
}

.btn-primary:hover::before { opacity: 1; }

.btn-primary svg, .btn-primary i {
    width: 16px;
    height: 16px;
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1.5px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal-light);
    background: rgba(0, 229, 212, 0.06);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px var(--teal-glow);
}

.btn-secondary {
    background: rgba(255,255,255,0.06);
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.10);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* ── Marquee Ticker Strip ───────────────────────────────────── */
.marquee-section {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.015);
}

.marquee-section::before,
.marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-section::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-main), transparent);
}

.marquee-section::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-main), transparent);
}

.marquee-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 2.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
    transition: color 0.3s ease;
}

.marquee-item:hover { color: var(--gold-light); }

.marquee-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}

.marquee-dot-gold { background: var(--gold); }
.marquee-dot-teal { background: var(--teal); }

/* ── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
    position: relative;
    z-index: 1;
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.stat-item {
    background: var(--bg-layer);
    padding: 2.25rem 1.5rem;
    text-align: center;
    transition: background 0.35s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--teal));
    transition: width 0.5s ease;
}

.stat-item:hover { background: rgba(255,255,255,0.05); }
.stat-item:hover::before { width: 60%; }

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--teal-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-subtle);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--font-display);
}

/* ── Trust Badges ──────────────────────────────────────────── */
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 2.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--bg-glass-border);
    border-radius: 999px;
    padding: 0.45rem 1.1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    backdrop-filter: blur(12px);
    transition: var(--ease-smooth);
    font-family: var(--font-display);
}

.trust-badge:hover {
    border-color: var(--border-teal);
    color: var(--teal-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--teal-glow);
}

.trust-badge svg, .trust-badge i {
    width: 13px;
    height: 13px;
    color: var(--teal);
}

/* ── Section Headers ───────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ── Glass Info Cards ──────────────────────────────────────── */
.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(12px);
    transition: var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--teal), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(232,184,75,0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.info-card:hover {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.info-card:hover::before { opacity: 1; }
.info-card:hover::after { opacity: 1; }

.info-card h2 {
    font-size: 1.6rem;
    font-family: var(--font-display);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.info-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 0;
}

.info-card ul li {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}

.info-card ul li svg, .info-card ul li i {
    color: var(--gold);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* ── Feature Grid with 3D Tilt ─────────────────────────────── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(800px);
    cursor: default;
}

/* Gradient sweep border on hover */
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, transparent 40%, rgba(232,184,75,0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 212, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    transform: scaleX(0);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.feature-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after { opacity: 1; transform: scaleX(1); }

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(232,184,75,0.08), rgba(0,229,212,0.06));
    border: 1px solid rgba(232,184,75,0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 20px var(--gold-glow);
    border-color: var(--border-teal);
}

.feature-icon svg, .feature-icon i {
    width: 22px;
    height: 22px;
    color: var(--gold);
    transition: color 0.3s ease;
}

.feature-card:hover .feature-icon svg,
.feature-card:hover .feature-icon i { color: var(--teal); }

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
    color: var(--text-light);
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-section {
    padding: 7rem 0;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(0,229,212,0.03), transparent);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--gold);
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--border-teal);
    transform: translateY(-5px);
    box-shadow: var(--shadow-teal);
}

.testimonial-card:hover::before { opacity: 0.15; }

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(0, 229, 212, 0.07);
    border: 1px solid var(--border-teal);
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--gold);
}

.testimonial-quote {
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--teal-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--bg-main);
    font-family: var(--font-display);
}

.testimonial-author-info strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
    font-family: var(--font-display);
}

.testimonial-author-info span {
    font-size: 0.78rem;
    color: var(--text-subtle);
}

/* ── Form & Contact ─────────────────────────────────────────── */
.form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: var(--ease-smooth);
}

.form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--teal));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.form-wrapper:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: -0.03em;
}

.form-header p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-family: var(--font-display);
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    outline: none;
}

.form-control::placeholder { color: var(--text-subtle); }

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
    background: rgba(255,255,255,0.055);
}

.form-control:hover {
    border-color: rgba(255,255,255,0.15);
}

.notice-box {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    background: rgba(232, 184, 75, 0.06);
    border: 1px solid rgba(232, 184, 75, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.notice-box i, .notice-box svg {
    color: var(--gold);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.notice-box p {
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 0;
}

/* ── Accordion / FAQ ───────────────────────────────────────── */
.knowledge-hub {
    padding: 6rem 0;
}

.hub-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    letter-spacing: -0.03em;
    text-align: center;
    margin-bottom: 0.75rem;
}

.hub-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto 3.5rem;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.accordion-item.active {
    border-color: var(--border-gold);
    box-shadow: 0 0 20px rgba(232,184,75,0.08);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 0.975rem;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: none;
    text-align: left;
    transition: color 0.3s ease, background 0.3s ease;
    gap: 1rem;
}

@media (max-width: 768px) { .accordion-header { cursor: pointer; } }

.accordion-header:hover {
    color: var(--gold-light);
    background: rgba(255,255,255,0.02);
}

.accordion-item.active .accordion-header { color: var(--gold-light); }

.accordion-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
    color: var(--text-subtle);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--gold);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-content p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.935rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.accordion-content a {
    color: var(--teal);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── Modals ─────────────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-layer);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.modal-icon.success {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    color: var(--accent-green);
}

.modal-icon.error {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    color: var(--accent-red);
}

.modal-icon svg, .modal-icon i { width: 28px; height: 28px; }

.modal-title {
    font-size: 1.5rem;
    font-family: var(--font-display);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.modal-msg {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

/* ── Timeline ──────────────────────────────────────────────── */
.onboarding-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
    position: relative;
}

.onboarding-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 16px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--gold), var(--teal), transparent);
}

.timeline-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    position: relative;
}

.timeline-badge {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--bg-main);
    color: var(--gold);
    border: 1px solid var(--border-gold);
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    border-radius: var(--radius-sm);
    position: relative;
    z-index: 1;
    transition: var(--ease-smooth);
}

.timeline-step:hover .timeline-badge {
    background: var(--gold);
    color: var(--bg-main);
    box-shadow: 0 0 16px var(--gold-glow);
}

.timeline-text { flex: 1; }

.timeline-text h4 {
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 0.3rem;
    color: var(--text-light);
}

.timeline-text p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ── Footer ─────────────────────────────────────────────────── */
footer {
    border-top: 1px solid var(--border-color);
    padding: 4.5rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--teal), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.04em;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--text-subtle);
    line-height: 1.75;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-subtle);
    margin-bottom: 1.25rem;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0.3rem 0;
    transition: color 0.25s ease, transform 0.25s ease;
    font-family: var(--font-body);
}

.footer-col a:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

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

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-subtle);
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--text-subtle);
    line-height: 1.6;
    text-align: right;
    max-width: 450px;
}

/* ── Progress Bar (scroll indicator) ───────────────────────── */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    z-index: 300;
    transition: width 0.1s linear;
}

/* ── Reviewer Page Specific ─────────────────────────────────── */
.reviewer-hero { padding: 5rem 0 3rem; text-align: center; }

.reviewer-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.req-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--ease-smooth);
}

.req-item:hover {
    border-color: var(--border-gold);
    background: rgba(232,184,75,0.04);
}

.req-item i, .req-item svg {
    color: var(--teal);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.req-item span {
    font-size: 0.875rem;
    color: var(--text-main);
    line-height: 1.5;
}

.payout-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.payout-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: var(--ease-smooth);
    overflow: hidden;
}

.payout-card.featured {
    border-color: var(--border-gold);
    background: rgba(232,184,75,0.05);
}

.payout-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.payout-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--border-gold);
}

.payout-badge {
    position: absolute;
    top: -1px;
    right: 1.25rem;
    background: var(--gold);
    color: var(--bg-main);
    font-size: 0.68rem;
    font-weight: 800;
    font-family: var(--font-display);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 0 0 6px 6px;
}

.payout-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-subtle);
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.payout-amount {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.payout-sub {
    font-size: 0.8rem;
    color: var(--text-subtle);
}

/* Checkbox / Toggle */
.checkbox-group {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.checkbox-group input[type="checkbox"] { display: none; }

.checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 1.5px solid var(--border-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--ease-smooth);
    background: transparent;
    position: relative;
    top: 2px;
}

.checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border-right: 2px solid var(--bg-main);
    border-bottom: 2px solid var(--bg-main);
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
}

.checkbox-group input:checked + .checkbox-custom {
    background: var(--gold);
    border-color: var(--gold);
}

.checkbox-group input:checked + .checkbox-custom::after { transform: rotate(45deg) scale(1); }

.checkbox-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
}

/* ── About Page ─────────────────────────────────────────────── */
.about-hero {
    padding: 5rem 0 3rem;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--ease-smooth);
}

.team-card:hover {
    border-color: var(--border-teal);
    transform: translateY(-4px);
    box-shadow: var(--shadow-teal);
}

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--teal-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--bg-main);
    font-family: var(--font-display);
    margin: 0 auto 1rem;
    border: 2px solid var(--border-gold);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: var(--ease-smooth);
}

.value-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.value-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: rgba(232,184,75,0.08);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.value-icon i, .value-icon svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

/* ── Contact Page ───────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: flex-start;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    transition: var(--ease-smooth);
    height: fit-content;
}

.contact-info-card:hover {
    border-color: var(--border-teal);
    box-shadow: var(--shadow-teal);
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child { border-bottom: none; }

.contact-item-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: var(--radius-sm);
    background: rgba(0,229,212,0.07);
    border: 1px solid var(--border-teal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-icon i, .contact-item-icon svg {
    width: 18px;
    height: 18px;
    color: var(--teal);
}

/* ── Misc Utilities ─────────────────────────────────────────── */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .payout-grid { grid-template-columns: repeat(3, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .mobile-nav { display: flex; }
    .nav-links { display: none; }

    .hero {
        padding: 5rem 0 3rem;
        min-height: auto;
    }

    .hero h1 { font-size: 2.2rem; }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-disclaimer { text-align: center; max-width: 100%; }
    .payout-grid { grid-template-columns: 1fr; }
    .requirements-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .value-grid { grid-template-columns: 1fr; }

    .section-padding { padding: 4rem 0; }

    .form-wrapper { padding: 2rem 1.5rem; }

    .hero-cta-group { flex-direction: column; align-items: center; }

    .hero-chip { font-size: 0.72rem; padding: 0.35rem 0.85rem; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 1.9rem; }
    .container, .container-narrow { padding: 0 1rem; }
}
