/* ═══════════════════════════════════════════════════════
   PHONIX INVESTMENT — Dark Luxury Gold Design System
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Lato:wght@300;400;700;900&display=swap');

:root {
    --bg-obsidian: #0A0C0E;
    --bg-onyx: #111417;
    --bg-graphite: #1C2026;
    --bg-border: #252B33;
    --gold-primary: #D4A853;
    --gold-rich: #C08B2F;
    --gold-pale: #F5E6C8;
    --green-forest: #2D6A4F;
    --green-bright: #3A8C63;
    --text-primary: #F0EBE0;
    --text-secondary: #A89880;
    --gain: #4CAF7D;
    --loss: #E05252;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: var(--text-secondary);
    background: var(--bg-obsidian);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--text-primary);
    line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── Container ─── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 60px; }

/* ─── Section Base ─── */
.section { padding: 80px 0; }
.section--obsidian { background: var(--bg-obsidian); }
.section--onyx { background: var(--bg-onyx); }

/* ─── Gold Divider ─── */
.gold-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-rich), transparent);
    border: none;
}

/* ─── Eyebrow Label ─── */
.eyebrow {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--gold-primary);
    flex-shrink: 0;
}

.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }

/* ─── Section Titles ─── */
.section-title {
    font-size: 48px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 640px;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 13px;
    border-radius: 4px;
    padding: 14px 28px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: var(--gold-primary);
    color: var(--bg-obsidian);
}
.btn-primary:hover { background: #e0b866; box-shadow: 0 8px 24px rgba(212,168,83,0.25); }

.btn-ghost {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
}
.btn-ghost:hover { background: rgba(212,168,83,0.08); box-shadow: 0 8px 24px rgba(212,168,83,0.15); }

.btn-green {
    background: var(--green-bright);
    color: var(--text-primary);
}
.btn-green:hover { background: #45a074; box-shadow: 0 8px 24px rgba(58,140,99,0.25); }

.btn-block { width: 100%; justify-content: center; }

/* ─── Cards ─── */
.card {
    background: var(--bg-graphite);
    border: 1px solid var(--bg-border);
    border-radius: 8px;
    padding: 32px;
    transition: all 0.3s ease;
}
.card:hover { border-color: var(--gold-rich); }

.card--featured {
    border: 2px solid var(--gold-primary);
    box-shadow: inset 0 0 60px rgba(212,168,83,0.06);
    background: linear-gradient(180deg, rgba(45,106,79,0.08), var(--bg-graphite));
}

/* ─── Icon Container ─── */
.icon-circle {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(58,140,99,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

/* ─── Gold Stat Value ─── */
.stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--gold-primary);
}
.stat-label {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ─── Legal Disclaimer ─── */
.disclaimer {
    font-size: 10px;
    color: var(--text-secondary);
    text-align: right;
    margin-top: 16px;
    font-style: italic;
}

/* ═════════════════════════════════════
   NAVIGATION
   ═════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--bg-obsidian);
    border-bottom: 1px solid var(--bg-border);
    height: 64px;
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo { display: flex; align-items: flex-start; gap: 10px; text-decoration: none; }
.logo-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--green-forest), var(--green-bright));
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 22px; height: 22px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--gold-primary);
    font-weight: 400;
}
.logo-sub {
    font-family: 'Lato', sans-serif;
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* Logo Image */
.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-primary); }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-signin {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}
.nav-signin:hover { color: var(--gold-primary); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    width: 24px; height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--bg-obsidian);
    z-index: 999;
    flex-direction: column;
    padding: 24px 32px;
    gap: 4px;
    overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 16px 0;
    border-bottom: 1px solid var(--bg-border);
    transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--gold-primary); }

/* ═════════════════════════════════════
   TICKER BAR
   ═════════════════════════════════════ */
.ticker-bar {
    background: var(--bg-onyx);
    height: 40px;
    overflow: hidden;
    margin-top: 64px;
    border-bottom: 1px solid var(--bg-border);
    position: relative;
}
.ticker-track {
    display: flex;
    align-items: center;
    height: 100%;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 400;
    border-right: 1px solid var(--gold-primary);
}
.ticker-item:last-child { border-right: none; }
.ticker-symbol { color: var(--text-secondary); }
.ticker-price { color: var(--gold-primary); font-weight: 700; }
.ticker-change--up { color: var(--gain); }
.ticker-change--down { color: var(--loss); }

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

/* ═════════════════════════════════════
   HERO
   ═════════════════════════════════════ */
.hero {
    position: relative;
    padding: 120px 0 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Background image layer */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 12, 14, 0.93) 0%,
        rgba(10, 12, 14, 0.72) 50%,
        rgba(10, 12, 14, 0.88) 100%
    );
}

/* Hero content grid */
.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    flex: 1;
    padding-top: 20px;
    padding-bottom: 40px;
}
.hero-left {
    max-width: 600px;
}
.hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.08;
    margin-bottom: 24px;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold-primary);
}
.hero-body {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
    max-width: 520px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Stat Cards */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
}
.hero-stat-card {
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(199, 179, 119, 0.12);
    border-left: 2px solid var(--gold-rich);
    border-radius: 8px;
    padding: 20px 28px;
    min-width: 260px;
    width: 100%;
    max-width: 340px;
    transition: transform 0.5s ease, border-color 0.3s ease;
}
.hero-stat-card:hover {
    transform: translateX(8px);
    border-color: rgba(199, 179, 119, 0.3);
}
.hero-stat-card .stat-value { font-size: 28px; }
.hero-stat-card .stat-label { margin-top: 4px; }

/* ═════════════════════════════════════
   TRUST BAR (bottom of hero)
   ═════════════════════════════════════ */
.trust-bar {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(10, 12, 14, 0.60);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px 0;
    margin-top: auto;
    flex-shrink: 0;
}
.trust-bar .container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    cursor: default;
    transition: all 0.3s ease;
}
.trust-item:hover .trust-icon {
    color: var(--gold-primary);
}
.trust-item:hover .trust-label {
    color: var(--text-primary);
}
.trust-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(212, 168, 83, 0.45);
    transition: color 0.3s ease;
}
.trust-icon svg {
    width: 20px;
    height: 20px;
}
.trust-label {
    font-family: 'Lato', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(168, 152, 128, 0.55);
    text-align: center;
    transition: color 0.3s ease;
    line-height: 1.3;
}



/* ═════════════════════════════════════
   SERVICE CARDS (What We Offer)
   ═════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}
.service-card { padding: 36px; }
.service-card .icon-circle { margin-bottom: 20px; }
.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--gold-primary);
    margin-bottom: 8px;
}
.service-card .card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-rich), transparent);
    margin: 16px 0;
}
.service-card p { font-size: 13px; }

/* ═════════════════════════════════════
   ABOUT SECTION (two-column)
   ═════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-visual {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.candlestick-chart { width: 100%; max-width: 420px; }
.about-checks { margin-top: 24px; }
.about-checks li {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: var(--text-primary);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.check-icon { color: var(--gold-primary); font-size: 14px; }

/* ═════════════════════════════════════
   HOW IT WORKS
   ═════════════════════════════════════ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-rich), transparent);
    z-index: 0;
}
.step-card { position: relative; z-index: 1; padding: 36px 28px; }
.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    color: var(--gold-primary);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 12px;
}
.step-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.step-card p { font-size: 13px; }

/* ═════════════════════════════════════
   INVESTMENT PLANS
   ═════════════════════════════════════ */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.plan-card { padding: 40px 32px; text-align: center; position: relative; }

.plan-tier {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 8px;
}
.plan-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.plan-min { font-size: 13px; color: var(--text-secondary); margin-bottom: 20px; }
.plan-return {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    color: var(--gold-primary);
    margin-bottom: 4px;
}
.plan-caption { font-size: 11px; color: var(--text-secondary); margin-bottom: 20px; }
.plan-features { text-align: left; margin-bottom: 28px; }
.plan-features li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 6px 0;
    display: flex; align-items: center; gap: 10px;
}
.plan-features li::before {
    content: '✦';
    color: var(--gold-primary);
    font-size: 10px;
    flex-shrink: 0;
}
.plan-badge {
    position: absolute;
    top: 16px; right: 16px;
    border: 1px solid var(--gold-primary);
    border-radius: 20px;
    padding: 4px 12px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-primary);
}

/* ═════════════════════════════════════
   MARKETS TABLE
   ═════════════════════════════════════ */
.markets-table-wrap {
    background: var(--bg-graphite);
    border: 1px solid var(--bg-border);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 48px;
}
.markets-table { width: 100%; border-collapse: collapse; }
.markets-table th {
    font-family: 'Lato', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-align: left;
    padding: 16px 20px;
    border-bottom: 1px solid var(--bg-border);
}
.markets-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--bg-border);
    font-size: 14px;
    vertical-align: middle;
}
.markets-table tr:last-child td { border-bottom: none; }
.markets-table tr:hover { background: rgba(37,43,51,0.5); }
.market-name { color: var(--text-primary); font-weight: 400; }
.market-pair { color: var(--text-secondary); font-size: 12px; }
.market-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--text-primary);
}
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}
.status-badge--active { background: rgba(76,175,125,0.12); color: var(--gain); }
.status-badge--monitored { background: rgba(212,168,83,0.12); color: var(--gold-primary); }

/* ═════════════════════════════════════
   WHY PHONIX
   ═════════════════════════════════════ */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 48px;
    align-items: start;
}
.perf-card {
    background: var(--bg-graphite);
    border: 1px solid var(--bg-border);
    border-radius: 8px;
    padding: 32px;
    border-bottom: 2px solid var(--gold-primary);
}
.perf-chart { margin-bottom: 24px; }
.perf-chart svg { width: 100%; height: auto; }
.perf-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--gold-primary);
}
.perf-return { font-size: 13px; color: var(--gain); margin-top: 4px; }
.perf-calc {
    background: var(--bg-obsidian);
    border-radius: 6px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    font-size: 14px;
}
.perf-calc .input-val { color: var(--text-secondary); }
.perf-calc .output-val {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-primary);
    font-size: 20px;
}
.perf-calc .gain-arrow { color: var(--gain); }

.feature-rows { display: flex; flex-direction: column; gap: 28px; }
.feature-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.feature-row-icon {
    width: 44px; height: 44px;
    border-radius: 8px;
    background: rgba(45,106,79,0.15);
    border: 1px solid var(--green-bright);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.feature-row h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.feature-row p { font-size: 13px; }

/* ═════════════════════════════════════
   TESTIMONIALS
   ═════════════════════════════════════ */
.testimonials-section { position: relative; overflow: hidden; }
.testimonials-wrapper { position: relative; max-width: 720px; margin: 48px auto 0; }
.testimonial-card {
    background: var(--bg-graphite);
    border: 1px solid var(--bg-border);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
}
.testimonial-quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 16px;
}
.testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}
.testimonial-name {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-primary);
}
.testimonial-role {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 4px;
}
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; }
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.testimonial-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--bg-border);
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}
.testimonial-dot.active { background: var(--gold-primary); }

/* Floating Avatars */
.floating-avatars {
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    pointer-events: none;
}
.floating-avatars--left { left: 5%; }
.floating-avatars--right { right: 5%; }
.floating-avatar {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    background: var(--bg-graphite);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    color: var(--gold-primary);
    animation: floatAvatar 4s ease-in-out infinite;
}
@keyframes floatAvatar {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ═════════════════════════════════════
   CONTACT
   ═════════════════════════════════════ */
.contact-form { max-width: 720px; margin: 48px auto 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--bg-graphite);
    border: 1px solid var(--bg-border);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--text-primary);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-secondary); opacity: 0.6; }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold-primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { display: flex; justify-content: flex-end; }

.contact-details {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.contact-item { display: flex; align-items: center; gap: 12px; }
.contact-item .icon-circle { width: 36px; height: 36px; font-size: 16px; }
.contact-item span { font-size: 13px; color: var(--text-secondary); }

/* ═════════════════════════════════════
   FOOTER
   ═════════════════════════════════════ */
.footer { background: var(--bg-obsidian); border-top: 1px solid var(--bg-border); }
.footer-contact-strip {
    background: var(--bg-onyx);
    border-bottom: 1px solid var(--bg-border);
    padding: 16px 0;
}
.footer-contact-strip .container {
    display: flex;
    gap: 40px;
    align-items: center;
}
.footer-contact-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px;
}
.footer-contact-item .gold { color: var(--gold-primary); }
.footer-contact-item .muted { color: var(--text-secondary); font-size: 11px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 0 40px;
}
.footer-brand p { font-size: 13px; margin-top: 16px; max-width: 260px; }
.footer-col h4 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 20px;
}
.footer-col a {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    padding: 4px 0;
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-primary); }

.footer-newsletter { margin-top: 20px; }
.footer-newsletter p { font-size: 13px; color: var(--text-secondary); margin-top: 8px; margin-bottom: 12px; }
.newsletter-form {
    display: flex;
    gap: 8px;
}
.newsletter-form input {
    flex: 1;
    background: var(--bg-graphite);
    border: 1px solid var(--bg-border);
    border-radius: 4px;
    padding: 10px 14px;
    color: var(--text-primary);
    font-size: 13px;
    outline: none;
}
.newsletter-form input:focus { border-color: var(--gold-primary); }
.newsletter-form button {
    background: var(--gold-primary);
    color: var(--bg-obsidian);
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s;
}
.newsletter-form button:hover { background: #e0b866; }

.footer-bottom {
    border-top: 1px solid var(--bg-border);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p { font-size: 12px; color: var(--text-secondary); }
.footer-legal {
    font-size: 10px;
    color: var(--text-secondary);
    max-width: 500px;
    text-align: right;
    line-height: 1.6;
}

/* ═════════════════════════════════════
   AUTH PAGES
   ═════════════════════════════════════ */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-obsidian);
    position: relative;
    padding: 80px 20px;
}
.auth-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,12,14,0.92), rgba(17,20,23,0.88));
    z-index: 1;
}
.auth-page::after {
    content: '';
    position: absolute;
    top: 20%; right: 10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212,168,83,0.08) 0%, transparent 70%);
    z-index: 1;
}
.auth-card {
    position: relative;
    z-index: 2;
    background: var(--bg-graphite);
    border: 1px solid var(--bg-border);
    border-radius: 8px;
    padding: 48px 40px;
    width: 100%;
    max-width: 480px;
}
.auth-card--wide { max-width: 640px; }
.auth-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--text-primary);
    text-align: center;
    margin: 24px 0 8px;
}
.auth-subtitle {
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}
.auth-form .form-row { margin-bottom: 0; }
.auth-form .form-group input {
    background: var(--bg-obsidian);
}
.password-field { position: relative; }
.password-field input { padding-right: 44px; }
.password-toggle {
    position: absolute;
    right: 14px; top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 16px;
    opacity: 0.6;
    user-select: none;
}
.password-toggle:hover { opacity: 1; }
.auth-extras {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 13px;
}
.forgot-link { color: var(--gold-primary); }
.auth-footer-text {
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 24px;
}
.auth-footer-text a { color: var(--gold-primary); font-weight: 700; }

/* ═════════════════════════════════════
   ABOUT PAGE
   ═════════════════════════════════════ */
.about-hero {
    background: var(--bg-obsidian);
    padding: 120px 0 80px;
    text-align: center;
}
.about-hero h1 {
    font-size: 64px;
    font-weight: 300;
}
.about-hero h1 em { font-style: italic; color: var(--gold-primary); }

.story-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.story-stat {
    text-align: center;
}
.story-stat .stat-value { font-size: 40px; }
.story-stat .stat-label { margin-top: 4px; font-size: 12px; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.value-card { padding: 36px; }
.value-card .icon-circle { margin-bottom: 16px; }
.value-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--gold-primary);
    margin-bottom: 12px;
}
.value-card p { font-size: 13px; }

/* Timeline */
.timeline {
    display: flex;
    gap: 0;
    margin-top: 48px;
    position: relative;
    justify-content: center;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-rich), transparent);
}
.timeline-item {
    flex: 1;
    text-align: center;
    padding: 0 16px;
    position: relative;
}
.timeline-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--gold-primary);
    margin: 14px auto 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 12px rgba(212,168,83,0.4);
}
.timeline-item h4 {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold-primary);
    text-transform: uppercase;
}
.timeline-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.timeline-item p { font-size: 12px; line-height: 1.6; }

.cta-strip {
    text-align: center;
    padding: 80px 0;
}
.cta-strip h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

/* ═════════════════════════════════════
   SPARKLINES
   ═════════════════════════════════════ */
.sparkline-svg {
    width: 80px;
    height: 32px;
}
.sparkline-svg polyline {
    fill: none;
    stroke: var(--gold-primary);
    stroke-width: 1.5;
}

/* ═════════════════════════════════════
   SCROLL REVEAL
   ═════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═════════════════════════════════════
   RESPONSIVE
   ═════════════════════════════════════ */

/* ─── Large Tablet / Small Desktop (≤1024px) ─── */
@media (max-width: 1024px) {
    .container { padding: 0 32px; }

    /* Hero */
    .hero { padding: 90px 0 0; min-height: auto; }
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .hero-left { max-width: 100%; }
    .hero-stats {
        align-items: stretch;
        flex-direction: row;
        gap: 12px;
    }
    .hero-stat-card {
        max-width: none;
        min-width: 0;
        flex: 1;
        padding: 16px 20px;
    }
    .hero-stat-card:hover { transform: none; }
    .hero-stat-card .stat-value { font-size: 24px; }
    .hero-bg-overlay {
        background: linear-gradient(
            to bottom,
            rgba(10, 12, 14, 0.9) 0%,
            rgba(10, 12, 14, 0.7) 40%,
            rgba(10, 12, 14, 0.85) 100%
        );
    }

    /* Trust Bar */
    .trust-bar .container { grid-template-columns: repeat(5, 1fr); }

    /* Other sections */
    .section-title { font-size: 36px; }
    .about-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid::before { display: none; }
    .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .story-stats { grid-template-columns: repeat(2, 1fr); }
    .timeline { flex-direction: column; gap: 24px; }
    .timeline::before { display: none; }
    .floating-avatars { display: none; }
}

/* ─── Tablet (≤768px) ─── */
@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .section { padding: 60px 0; }
    .nav-links, .nav-right { display: none; }
    .hamburger { display: flex; }

    /* Hero */
    .hero { padding: 80px 0 0; }
    .hero .container {
        gap: 32px;
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .hero-body { font-size: 14px; margin-bottom: 28px; }
    .hero-stats {
        flex-direction: column;
        gap: 10px;
    }
    .hero-stat-card {
        padding: 16px 20px;
        flex: none;
        width: 100%;
    }
    .hero-stat-card .stat-value { font-size: 22px; }
    .hero-stat-card .stat-label { font-size: 10px; }

    /* Trust Bar - 3 top + 2 bottom, centered */
    .trust-bar { padding: 20px 0; }
    .trust-bar .container {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px 8px;
    }
    /* Center the last 2 items underneath */
    .trust-item:nth-child(4) { grid-column: 1 / 2; }
    .trust-item:nth-child(5) { grid-column: 2 / 3; }

    /* Other sections */
    .section-title { font-size: 28px; }
    .about-hero h1 { font-size: 36px; }
    .services-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-details { flex-direction: column; align-items: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-legal { text-align: center; }
    .footer-contact-strip .container { flex-direction: column; gap: 12px; }
    .values-grid { grid-template-columns: 1fr; }
    .markets-table-wrap { overflow-x: auto; }
}

/* ─── Mobile (≤480px) ─── */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 48px 0; }

    /* Hero */
    .hero { padding: 72px 0 0; }
    .hero .container {
        gap: 28px;
        padding-top: 24px;
        padding-bottom: 20px;
    }
    .eyebrow { font-size: 9px; letter-spacing: 3px; gap: 8px; }
    .eyebrow::before { width: 20px; }
    .hero-body { font-size: 13px; line-height: 1.7; margin-bottom: 24px; }
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    .hero-stats { gap: 8px; }
    .hero-stat-card {
        padding: 14px 16px;
        border-radius: 6px;
    }
    .hero-stat-card .stat-value { font-size: 20px; }
    .hero-stat-card .stat-label { font-size: 9px; letter-spacing: 0.5px; }

    /* Trust Bar - centered 2-col + 1 orphan centered */
    .trust-bar { padding: 16px 0; }
    .trust-bar .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 8px;
        justify-items: center;
    }
    .trust-item:nth-child(4) { grid-column: auto; }
    .trust-item:nth-child(5) {
        grid-column: 1 / -1;
        justify-self: center;
    }
    .trust-label { font-size: 8px; letter-spacing: 1.5px; }

    /* Other sections */
    .section-title { font-size: 24px; }
    .section-subtitle { font-size: 13px; }
    .service-card { padding: 24px 20px; }
    .step-card { padding: 24px 20px; }
    .step-number { font-size: 40px; }
    .plan-card { padding: 28px 20px; }
    .plan-return { font-size: 32px; }
    .plan-name { font-size: 26px; }
    .testimonial-card { padding: 32px 20px; }
    .contact-form { margin-top: 32px; }
    .perf-card { padding: 24px 20px; }
    .feature-row-icon { width: 36px; height: 36px; font-size: 16px; }
}

/* ─── Small Mobile (≤360px) ─── */
@media (max-width: 360px) {
    .container { padding: 0 12px; }

    /* Hero */
    .hero { padding: 68px 0 0; }
    .hero .container {
        gap: 20px;
        padding-top: 20px;
        padding-bottom: 16px;
    }
    .hero-body { font-size: 12px; }
    .hero-stat-card { padding: 12px 14px; }
    .hero-stat-card .stat-value { font-size: 18px; }

    /* Trust bar single column on very small screens */
    .trust-bar .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 4px;
    }
    .trust-label { font-size: 7px; letter-spacing: 1px; }
    .trust-icon svg { width: 16px; height: 16px; }

    /* Other sections */
    .section-title { font-size: 22px; }
    .btn { padding: 12px 20px; font-size: 11px; }
}
