/* ============================================================
   XM Signal - Dark Luxury + Gold Theme
   Official XM VIP Partner Landing Page
   ============================================================ */

/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --gold: #D4A853;
    --gold-light: #F0D78C;
    --gold-dark: #B8860B;
    --bg-primary: #0A0A0F;
    --bg-secondary: #12121A;
    --bg-card: #1A1A25;
    --bg-card-hover: #22222E;
    --text-primary: #F5F5F7;
    --text-secondary: #A0A0B0;
    --text-muted: #6B6B7B;
    --border: #2A2A38;
    --green: #00C853;
    --red: #FF3D57;
    --glow-gold: rgba(212, 168, 83, 0.3);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 10px;
    --radius-lg: 16px;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}
a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }

/* ========== UTILITIES ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.section { padding: 80px 0; }
.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
}
.text-center { text-align: center; }
.gold-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0A0A0F;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--glow-gold);
    text-decoration: none;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(212, 168, 83, 0.45);
    color: #0A0A0F;
}
.btn-primary svg { flex-shrink: 0; }
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(10, 10, 15, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(42, 42, 56, 0.5);
}
.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}
.nav-logo .xm { color: var(--gold); }
.nav-badge {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid rgba(212, 168, 83, 0.25);
    border-radius: 20px;
    color: var(--gold);
    white-space: nowrap;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}
.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
    text-decoration: none;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
    padding: 9px 22px !important;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    color: #0A0A0F !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    font-size: 0.85rem !important;
    box-shadow: 0 2px 12px var(--glow-gold);
}
.nav-cta:hover { color: #0A0A0F !important; }

/* Language Switcher */
.lang-switcher {
    position: relative;
}
.lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.3s;
}
.lang-switcher-btn:hover {
    border-color: var(--gold);
    color: var(--text-primary);
}
.lang-switcher-btn svg { width: 12px; height: 12px; transition: transform 0.3s; }
.lang-switcher.active .lang-switcher-btn svg { transform: rotate(180deg); }
.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 320px;
    max-height: 420px;
    overflow-y: auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    z-index: 999;
    padding: 8px;
}
.lang-switcher.active .lang-dropdown { display: block; }
.lang-dropdown::-webkit-scrollbar { width: 5px; }
.lang-dropdown::-webkit-scrollbar-track { background: transparent; }
.lang-dropdown::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.lang-region-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 10px 10px 6px;
}
.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    border-radius: 6px;
    transition: all 0.2s;
    text-decoration: none;
}
.lang-dropdown a:hover {
    background: rgba(212, 168, 83, 0.08);
    color: var(--text-primary);
}
.lang-dropdown a.active {
    background: rgba(212, 168, 83, 0.12);
    color: var(--gold);
}
.lang-flag { font-size: 1.1rem; line-height: 1; }

/* Mobile Nav Toggle */
.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}
.nav-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========== HERO ========== */
.hero {
    padding: 130px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.07) 0%, transparent 65%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    padding: 8px 16px;
    background: rgba(212, 168, 83, 0.08);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 30px;
}
.hero-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Signal Card */
.signal-card-wrapper { position: relative; z-index: 1; display: flex; justify-content: center; }
.signal-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    width: 100%;
    max-width: 380px;
    position: relative;
    overflow: hidden;
}
.signal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.signal-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.signal-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--green);
}
.signal-live::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}
.signal-time { font-size: 0.78rem; color: var(--text-muted); }
.signal-pair {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.signal-type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 4px 12px;
    background: rgba(0, 200, 83, 0.1);
    color: var(--green);
    border-radius: 6px;
    margin-bottom: 20px;
}
.signal-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.signal-detail {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 8px;
}
.signal-detail-label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.signal-detail-value {
    font-size: 1rem;
    font-weight: 600;
}
.signal-detail-value.green { color: var(--green); }
.signal-detail-value.red { color: var(--red); }
.signal-detail-value.gold { color: var(--gold); }
.signal-chart {
    margin-top: 16px;
    height: 70px;
    background: linear-gradient(180deg, rgba(0, 200, 83, 0.04), transparent);
    border-radius: 8px;
    overflow: hidden;
}
.signal-chart svg { width: 100%; height: 100%; }

/* ========== TRUST BAR ========== */
.trust-bar {
    padding: 48px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    text-align: center;
}
.trust-item { position: relative; }
.trust-number {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}
.trust-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ========== FEATURES ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s ease;
}
.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(212, 168, 83, 0.3);
    transform: translateY(-4px);
}
.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 83, 0.1);
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 1.35rem;
}
.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.feature-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== HOW IT WORKS ========== */
.how-it-works { background: var(--bg-secondary); }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--gold), var(--border));
    z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-number {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--bg-primary);
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
}
.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.step-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ========== EA SEMI-AUTO ========== */
.ea-section { position: relative; overflow: hidden; }
.ea-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.04) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
}
.ea-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.ea-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 8px 16px;
    background: rgba(212, 168, 83, 0.08);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 30px;
    margin-bottom: 20px;
}
.ea-features {
    list-style: none;
    margin: 24px 0 32px;
}
.ea-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.92rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(42, 42, 56, 0.5);
    line-height: 1.5;
}
.ea-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background: rgba(212, 168, 83, 0.15);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 50%;
    margin-top: 1px;
}
.ea-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.ea-stat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: border-color 0.3s;
}
.ea-stat:hover { border-color: rgba(212, 168, 83, 0.3); }
.ea-stat-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}
.ea-stat-label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ========== GLOBAL COVERAGE ========== */
.coverage { background: var(--bg-secondary); }
.country-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
    justify-content: center;
}
.country-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: all 0.3s;
}
.country-chip:hover {
    border-color: rgba(212, 168, 83, 0.3);
    color: var(--text-primary);
}

/* ========== VALUE PROPOSITION ========== */
.value-prop {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.value-prop-header {
    text-align: center;
    margin-bottom: 48px;
}
.value-prop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.vp-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 168, 83, 0.25);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
}
.vp-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(212, 168, 83, 0.1);
}
.vp-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0A0A0F;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 16px var(--glow-gold);
}
.vp-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
}
.vp-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.vp-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.value-prop-bottom {
    text-align: center;
    margin-top: 32px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 16px 24px;
    background: rgba(212, 168, 83, 0.06);
    border: 1px solid rgba(212, 168, 83, 0.15);
    border-radius: var(--radius);
}

/* ========== EA SHOWCASE ========== */
.ea-showcase {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.ea-showcase::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.05) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
}
.ea-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.ea-showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
    padding: 8px 16px;
    background: rgba(212, 168, 83, 0.08);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 30px;
    margin-bottom: 20px;
}
.ea-showcase-features {
    list-style: none;
    margin: 24px 0;
}
.ea-showcase-features li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    padding: 8px 0;
    line-height: 1.5;
}
.ea-showcase-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 32px;
}
.ea-showcase-stat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 12px;
    text-align: center;
}
.ea-showcase-stat-value {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
}
.ea-showcase-stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* Download Box */
.download-box {
    background: var(--bg-card);
    border: 2px solid rgba(212, 168, 83, 0.3);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-top: 32px;
}
.download-box-file {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-align: center;
}
.download-box-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #00C853, #009624);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.3);
    text-decoration: none;
    text-align: center;
}
.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 200, 83, 0.4);
    color: #fff;
}
.btn-gold-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    border: 2px solid var(--gold);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}
.btn-gold-outline:hover {
    background: rgba(212, 168, 83, 0.1);
    color: var(--gold-light);
}

/* ========== 3-STEP GRID ========== */
.steps-3 { grid-template-columns: repeat(3, 1fr); }

/* ========== WHAT IS EA ========== */
.what-is-ea { background: var(--bg-secondary); }
.what-ea-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.what-ea-steps { margin: 28px 0; }
.what-ea-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(42, 42, 56, 0.5);
}
.what-ea-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.what-ea-step p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; }
.what-ea-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.6;
}
.what-ea-need {
    font-size: 0.95rem;
    color: var(--gold);
    margin-top: 12px;
    font-weight: 600;
    line-height: 1.6;
}
.what-ea-learn {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-top: 16px;
}
.what-ea-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.what-ea-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
}

/* ========== WHY FREE ========== */
.why-free-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
}
.why-free-col {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.why-free-col h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gold);
}
.why-free-list { list-style: none; }
.why-free-list li {
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.green-list li::before {
    content: '\2705 ';
}
.why-free-explain {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}
.why-free-regulated {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* ========== DOWNLOAD VERSION ========== */
.download-box-version {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-align: center;
}
.dl-from-link {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-top: 20px;
}

/* ========== TRUST BADGES ========== */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 32px 0;
}
.trust-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.trust-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}
.trust-links a {
    font-size: 0.85rem;
    color: var(--gold);
    padding: 8px 16px;
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 6px;
    transition: all 0.3s;
}
.trust-links a:hover {
    background: rgba(212, 168, 83, 0.08);
    border-color: var(--gold);
}

/* ========== FAQ ACCORDION ========== */
.faq-section { background: var(--bg-secondary); }
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    background: var(--bg-card);
    overflow: hidden;
}
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    list-style: none;
    transition: background 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary:hover { background: rgba(212, 168, 83, 0.04); }
.faq-item summary h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}
.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: 12px;
    position: relative;
}
.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.3s;
}
.faq-icon::before {
    width: 12px; height: 2px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.faq-icon::after {
    width: 2px; height: 12px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer {
    padding: 0 24px 20px;
}
.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== FINAL CTA ========== */
.final-cta {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}
.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.final-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.final-cta .cta-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}
.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}
.final-cta-buttons .btn-primary {
    font-size: 1.1rem;
    padding: 18px 44px;
}
.final-cta-buttons .btn-download {
    font-size: 1.1rem;
    padding: 18px 44px;
}
.final-cta .cta-trust {
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.cta-section .cta-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
.cta-section .cta-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}
.cta-section .btn-primary {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    padding: 16px 40px;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 280px;
    margin-top: 12px;
}
.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color 0.3s;
    text-decoration: none;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}
.footer-disclaimer {
    font-size: 0.73rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 800px;
    margin: 0 auto 16px;
}
.footer-copyright {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; animation: fadeInUp 0.8s ease forwards; }
.fade-in-d1 { animation-delay: 0.1s; }
.fade-in-d2 { animation-delay: 0.2s; }
.fade-in-d3 { animation-delay: 0.3s; }
.fade-in-d4 { animation-delay: 0.4s; }

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 4px 20px var(--glow-gold); }
    50% { box-shadow: 0 4px 35px rgba(212, 168, 83, 0.5); }
}
.btn-glow { animation: glow-pulse 3s ease-in-out infinite; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; gap: 40px; }
    .signal-card-wrapper { justify-content: flex-start; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .ea-grid { grid-template-columns: 1fr; gap: 40px; }
    .ea-showcase-grid { grid-template-columns: 1fr; gap: 40px; }
    .ea-showcase-stats { grid-template-columns: repeat(4, 1fr); }
    .what-ea-grid { grid-template-columns: 1fr; gap: 40px; }
    .why-free-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .nav-links { display: none; }
    .nav-mobile-toggle { display: flex; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border);
        padding: 20px 24px;
        gap: 12px;
    }
    .nav-badge { display: none; }
    .hero { min-height: auto; padding: 110px 0 60px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary,
    .hero-buttons .btn-download { width: 100%; justify-content: center; }
    .trust-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .steps-3 { grid-template-columns: repeat(2, 1fr); }
    .what-ea-grid { grid-template-columns: 1fr; }
    .why-free-grid { grid-template-columns: 1fr; }
    .steps-grid::before { display: none; }
    .ea-stats { grid-template-columns: repeat(2, 1fr); }
    .value-prop-grid { grid-template-columns: 1fr; }
    .ea-showcase-grid { grid-template-columns: 1fr; }
    .ea-showcase-stats { grid-template-columns: repeat(2, 1fr); }
    .final-cta-buttons { flex-direction: column; align-items: center; }
    .final-cta-buttons .btn-primary,
    .final-cta-buttons .btn-download { width: 100%; max-width: 360px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .lang-dropdown { width: 280px; right: -40px; }
}
@media (max-width: 480px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr; }
    .steps-3 { grid-template-columns: 1fr; }
    .ea-stats { grid-template-columns: 1fr; }
    .ea-showcase-stats { grid-template-columns: repeat(2, 1fr); }
    .lang-dropdown { width: 260px; right: -60px; }
}
