/* ========================================
   Golden Wolf FX — Premium Forex Landing
   ======================================== */

:root {
    --black: #0a0a0a;
    --black-light: #111111;
    --black-card: #141414;
    --black-border: #1e1e1e;
    --gold: #d4a843;
    --gold-light: #e8c76a;
    --gold-dark: #b08930;
    --gold-glow: rgba(212, 168, 67, 0.15);
    --white: #f5f5f5;
    --white-dim: #a0a0a0;
    --white-muted: #666666;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gold { color: var(--gold); }

.skip-link {
    position: absolute;
    left: 24px;
    top: -48px;
    z-index: 1200;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.skip-link:focus {
    top: 16px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    box-shadow: 0 4px 24px rgba(212, 168, 67, 0.25);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 8px 32px rgba(212, 168, 67, 0.35);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--black-border);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-glow);
}

/* ---- Navbar ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--black-border);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.logo-img-footer {
    height: 32px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--white-dim);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
    display: flex;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: url('assets/hero-bg-new.jpg') center/cover no-repeat;
    background-position: center;
    opacity: 0.62;
    filter: saturate(0.75) brightness(0.72);
    pointer-events: none;
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.18;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 40%, rgba(212, 168, 67, 0.06) 0%, transparent 70%),
        linear-gradient(90deg, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.48) 25%, rgba(10, 10, 10, 0.4) 50%, rgba(10, 10, 10, 0.48) 75%, rgba(10, 10, 10, 0.78) 100%),
        linear-gradient(to bottom, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.18) 24%, rgba(10, 10, 10, 0.28) 72%, var(--black) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--black-border);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--white-dim);
    margin-bottom: 32px;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--white-dim);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-metric-value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
}

.hero-metric-label {
    font-size: 0.8rem;
    color: var(--white-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-metric-divider {
    width: 1px;
    height: 40px;
    background: var(--black-border);
}

/* ---- Ticker ---- */
.ticker-section {
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
    background: var(--black-light);
    overflow: hidden;
    padding: 14px 0;
}

.ticker-track {
    display: flex;
    gap: 48px;
    animation: ticker 40s linear infinite;
    width: max-content;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    font-size: 0.9rem;
}

.ticker-pair {
    font-weight: 600;
    color: var(--white);
}

.ticker-price {
    color: var(--white-dim);
    font-variant-numeric: tabular-nums;
}

.ticker-change {
    font-weight: 600;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 4px;
}

.ticker-change.up {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.ticker-change.down {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

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

/* ---- Section Headers ---- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--white-dim);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- Features ---- */
.features {
    padding: 120px 0;
}

.features-showcase {
    margin-bottom: 64px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--black-border);
    position: relative;
}

.features-showcase img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.85) brightness(0.58) contrast(1.02);
}

.features-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.3) 50%, rgba(10, 10, 10, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-showcase-text {
    text-align: center;
    padding: 24px;
}

.features-showcase-text h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.features-showcase-text p {
    color: var(--white-dim);
    font-size: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(212, 168, 67, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--gold-glow);
    color: var(--gold);
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--white-dim);
    line-height: 1.65;
}

/* ---- Markets Table ---- */
.markets {
    padding: 120px 0;
    background: var(--black-light);
}

.markets-table-wrapper {
    border: 1px solid var(--black-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.markets-table {
    width: 100%;
    border-collapse: collapse;
    font-variant-numeric: tabular-nums;
}

.markets-table th {
    text-align: left;
    padding: 16px 24px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white-muted);
    background: var(--black-card);
    border-bottom: 1px solid var(--black-border);
    font-weight: 600;
}

.markets-table td {
    padding: 18px 24px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--black-border);
}

.markets-table tr:last-child td {
    border-bottom: none;
}

.markets-table tr {
    transition: var(--transition);
}

.markets-table tbody tr:hover {
    background: rgba(212, 168, 67, 0.03);
}

.pair-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.pair-flag {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--black-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
}

.change-up { color: #22c55e; }
.change-down { color: #ef4444; }

/* ---- Stats ---- */
.stats {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.stats-bg-image {
    position: absolute;
    inset: 0;
    background: url('assets/stats-bg.jpg') center/cover no-repeat;
    opacity: 0.2;
}

.stats-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, var(--black) 0%, transparent 20%, transparent 80%, var(--black) 100%),
        radial-gradient(ellipse 50% 60% at 30% 50%, rgba(212, 168, 67, 0.05) 0%, transparent 70%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.stat-card {
    text-align: center;
    padding: 48px 24px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: rgba(212, 168, 67, 0.3);
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--white-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ---- Pricing ---- */
.pricing {
    padding: 120px 0;
    background: var(--black-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.pricing-card-featured {
    border-color: var(--gold);
    box-shadow: 0 0 60px rgba(212, 168, 67, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pricing-tier {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.pricing-spread {
    margin-bottom: 8px;
}

.pricing-from {
    display: block;
    font-size: 0.8rem;
    color: var(--white-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.pricing-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.pricing-value small {
    font-size: 1rem;
    color: var(--white-dim);
    font-weight: 400;
}

.pricing-deposit {
    font-size: 0.9rem;
    color: var(--white-dim);
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--black-border);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--white-dim);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* ---- CTA ---- */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-image {
    position: absolute;
    inset: 0;
    background: url('assets/cta-bg.jpg') center/cover no-repeat;
    opacity: 0.25;
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: var(--white-dim);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto 16px;
}

.cta-input {
    flex: 1;
    padding: 16px 20px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.cta-input::placeholder { color: var(--white-muted); }

.cta-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

.cta-disclaimer {
    font-size: 0.8rem;
    color: var(--white-muted);
}

.form-status {
    min-height: 1.5rem;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--white-dim);
}

.form-status.is-error {
    color: #fca5a5;
}

.form-status.is-success {
    color: #86efac;
}

.cta-textarea {
    min-height: 160px;
    resize: vertical;
}

.form-label {
    font-size: 0.85rem;
    color: var(--white-dim);
}

/* ---- Inner Pages ---- */
.inner-page .page-main {
    padding-top: 86px;
    background:
        radial-gradient(circle at top, rgba(212, 168, 67, 0.08), transparent 35%),
        linear-gradient(to bottom, #0c0c0c 0%, #0a0a0a 45%, #101010 100%);
    min-height: 100vh;
}

.page-hero {
    padding: 112px 0 72px;
    border-bottom: 1px solid var(--black-border);
    background:
        linear-gradient(180deg, rgba(212, 168, 67, 0.05) 0%, rgba(10, 10, 10, 0) 65%),
        linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(10, 10, 10, 0.92));
}

.page-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: 1.06;
    margin-bottom: 20px;
    max-width: 900px;
}

.page-intro {
    font-size: 1.05rem;
    color: var(--white-dim);
    max-width: 760px;
    line-height: 1.8;
}

.page-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.page-section {
    padding: 96px 0;
}

.page-section-alt {
    background: rgba(255, 255, 255, 0.015);
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
}

.page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.page-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.info-card,
.detail-panel,
.timeline-card,
.contact-card,
.contact-form-panel {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid var(--black-border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.info-card h2,
.detail-panel h2,
.contact-card h2,
.contact-form-panel h2,
.timeline-card h3,
.page-band-title {
    font-family: var(--font-display);
    line-height: 1.2;
}

.info-card h2,
.detail-panel h2,
.contact-card h2,
.contact-form-panel h2 {
    font-size: 1.7rem;
    margin-bottom: 14px;
}

.info-card p,
.detail-panel p,
.contact-card p,
.timeline-card p {
    color: var(--white-dim);
    line-height: 1.75;
}

.info-card-kicker {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.detail-copy {
    margin-bottom: 24px;
}

.detail-list {
    list-style: none;
    display: grid;
    gap: 14px;
}

.detail-list li {
    position: relative;
    padding-left: 20px;
    color: var(--white-dim);
    line-height: 1.7;
}

.detail-list li::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(212, 168, 67, 0.12);
}

.detail-list-numbered {
    counter-reset: detail-steps;
}

.detail-list-numbered li {
    padding-left: 34px;
}

.detail-list-numbered li::before {
    counter-increment: detail-steps;
    content: counter(detail-steps);
    top: 2px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--black);
}

.detail-list a,
.contact-card a {
    color: var(--gold-light);
    text-decoration: none;
}

.detail-list a:hover,
.contact-card a:hover {
    color: var(--gold);
}

.timeline-card {
    position: relative;
    overflow: hidden;
}

.timeline-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--gold-glow);
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.timeline-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.page-band {
    padding: 0 0 96px;
}

.page-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid rgba(212, 168, 67, 0.2);
    background:
        linear-gradient(135deg, rgba(212, 168, 67, 0.12), rgba(10, 10, 10, 0.4) 55%),
        rgba(20, 20, 20, 0.92);
}

.page-band-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 24px;
}

.contact-stack {
    display: grid;
    gap: 24px;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.contact-chip {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(212, 168, 67, 0.18);
    background: rgba(212, 168, 67, 0.08);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ---- Footer ---- */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--black-border);
    background: var(--black-light);
    position: relative;
    overflow: hidden;
}

.footer-bg-image {
    position: absolute;
    inset: 0;
    background: url('assets/footer-wolf.jpg') center right/cover no-repeat;
    opacity: 0.35;
    pointer-events: none;
}

.footer-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, var(--black-light) 0%, rgba(17, 17, 17, 0.3) 40%, rgba(17, 17, 17, 0.1) 70%, rgba(17, 17, 17, 0.4) 100%),
        linear-gradient(to bottom, var(--black-light) 0%, transparent 40%, transparent 60%, var(--black-light) 100%);
    pointer-events: none;
}

.footer > .container {
    position: relative;
    z-index: 1;
}

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

.footer-desc {
    font-size: 0.9rem;
    color: var(--white-dim);
    margin-top: 16px;
    line-height: 1.65;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.footer-socials a {
    color: var(--white-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--black-border);
}

.footer-socials a:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: var(--gold-glow);
}

.footer-links-group h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links-group ul { list-style: none; }

.footer-links-group li { margin-bottom: 10px; }

.footer-links-group a {
    color: var(--white-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links-group a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid var(--black-border);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--white-muted);
}

.footer-risk {
    margin-top: 12px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ---- Reveal Animation ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(1, 1fr); max-width: 440px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .page-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-layout,
    .page-columns,
    .page-grid { grid-template-columns: 1fr; }
    .page-band-inner { flex-direction: column; align-items: flex-start; }
}

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

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--black-border);
    }

    .nav-actions.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 180px);
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        padding: 0 24px 24px;
        gap: 12px;
        border-bottom: 1px solid var(--black-border);
    }

    .nav-actions.open .btn { width: 100%; }

    .hero { min-height: auto; padding: 140px 0 80px; }
    .hero-metrics { gap: 24px; }
    .hero-metric-divider { display: none; }

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

    .markets-table-wrapper { overflow-x: auto; }
    .markets-table { min-width: 600px; }

    .cta-form { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .page-hero { padding: 92px 0 56px; }
    .page-title { font-size: 2.4rem; }
    .page-section { padding: 72px 0; }
    .page-cta-row { flex-direction: column; align-items: stretch; }
    .page-cta-row .btn { width: 100%; }
    .info-card,
    .detail-panel,
    .timeline-card,
    .contact-card,
    .contact-form-panel { padding: 24px; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2rem; }
    .page-title { font-size: 2rem; }
    .page-band-inner { padding: 24px; }
    .page-grid-3 { grid-template-columns: 1fr; }
}
