﻿/* ════════════════════════════════════════════════════════════════════════════
   Algo Torma — Vogue Editorial Design System
   ════════════════════════════════════════════════════════════════════════════ */

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

/* ── Design Tokens ────────────────────────────────────────────────────────── */
:root {
    --bg:            #0a0a0a;
    --surface:       #111111;
    --surface-2:     #181818;
    --border:        rgba(255,255,255,0.07);
    --border-strong: rgba(255,255,255,0.13);
    --gold:          #c9a84c;
    --gold-light:    #dfc870;
    --gold-dim:      rgba(201,168,76,0.08);
    --text:          #e8e3d8;
    --text-dim:      #786f61;
    --text-muted:    #3e3a34;
    --white:         #f0ece3;
}

/* ── Base ─────────────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    line-height: 1.1;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

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

/* ── Announcement Bar ─────────────────────────────────────────────────────── */
.announcement-bar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1100;
    background: var(--gold);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.71rem;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #1a1610;
}

.announcement-dot {
    width: 4px;
    height: 4px;
    background: #1a1610;
    border-radius: 50%;
    opacity: 0.45;
    flex-shrink: 0;
}

.announcement-bar strong { font-weight: 700; }

.announcement-link {
    color: #1a1610;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(26,22,16,0.35);
    transition: opacity 0.2s;
}

.announcement-link:hover { opacity: 0.65; }

/* ── Navigation ───────────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 30px;
    width: 100%;
    z-index: 1000;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10,10,10,0.98);
    border-bottom-color: var(--border-strong);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.125rem 0;
}

.logo h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.01em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.71rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-menu a:hover { color: var(--text); }

.nav-cta { display: flex; gap: 0.75rem; }

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

.mobile-menu-toggle span {
    width: 22px;
    height: 1px;
    background: var(--text);
    display: block;
    transition: all 0.3s ease;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 0.8rem 1.875rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.71rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 0;
    transition: all 0.2s ease;
    white-space: nowrap;
    line-height: 1;
}

.btn-primary,
.btn-gold {
    background: var(--gold);
    color: #0a0a0a;
    border-color: var(--gold);
}

.btn-primary:hover,
.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}

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

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}

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

.btn-large {
    padding: 1.05rem 2.5rem;
    font-size: 0.74rem;
}

.btn-block { display: block; width: 100%; }

/* TradingView Pill Button */
.btn-pill-tradingview {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-strong);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-pill-tradingview:hover {
    background: rgba(201,168,76,0.08);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-pill-tradingview svg {
    flex-shrink: 0;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 18rem 0 12rem;
    border-bottom: 1px solid var(--border);
}

.hero-glow { display: none; }

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero-content { max-width: 540px; }

.badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 0.125rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 6.5rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    line-height: 1.0;
}

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

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 400;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.trust-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.69rem;
    color: var(--text-muted);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.trust-sep {
    width: 1px;
    height: 10px;
    background: var(--border-strong);
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual { position: relative; }

.hero-card {
    background: var(--surface);
    border: 1px solid var(--border-strong);
    padding: 1.5rem;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hero-card-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-card-dot.green { background: #4ade80; }

.hero-card-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.69rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    flex: 1;
}

.hero-card-badge {
    font-family: 'Inter', sans-serif;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--gold);
    text-transform: uppercase;
}

.hero-chart-svg { width: 100%; height: auto; }

.hero-card-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    margin-top: 1rem;
    padding-top: 1rem;
}

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

.hcs-val {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

.hcs-lbl {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.61rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.2rem;
}

.hero-stats-row { display: none; }

/* ── Trusted Strip ─────────────────────────────────────────────────────────── */
.trusted-strip { display: none; }

/* ── Section Base ─────────────────────────────────────────────────────────── */
section { padding: 9rem 0; }

.section-header { margin-bottom: 5rem; }

.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.975rem;
    color: var(--text-dim);
    line-height: 1.75;
    max-width: 520px;
}

/* ── Strategies ───────────────────────────────────────────────────────────── */
.strategies {
    background: var(--bg);
    padding: 5rem 0;
}

/* Strategy Filters */
.strategy-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.filter-pill {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.65rem 1.25rem;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.filter-pill:hover {
    background: var(--surface);
    color: var(--white);
    border-color: var(--text-muted);
}

.filter-pill.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

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

.strategy-card {
    border: 1px solid var(--border);
    background: var(--surface);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.strategy-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.strategy-card[style*="display: none"] {
    display: none !important;
}

.strategy-chart-preview {
    overflow: hidden;
    background: rgba(0,0,0,0.4);
    border-bottom: 1px solid var(--border);
    height: 200px;
    position: relative;
}

.chart-svg { 
    width: 100%; 
    height: 100%; 
    display: block; 
}

.strategy-cover-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.strategy-info {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.strategy-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.strategy-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.strategy-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-dim);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex: 1;
}

.strategy-details-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
}

.strategy-details-link:hover {
    color: var(--white);
}

/* Remove old strategy card styles */
.card-badge,
.strategy-header,
.strategy-tag,
.strategy-stats,
.stat-item,
.stat-label,
.stat-value,
.strategy-features,
.strategy-price,
.price-period,
.strategy-card-actions,
.btn-see-more {
    /* These classes are no longer used */
}

/* ── Features ─────────────────────────────────────────────────────────────── */
.features { background: var(--surface); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
}

.feature-card {
    border-right: 1px solid var(--border);
    padding: 2.5rem;
    transition: background 0.25s;
}

.feature-card:nth-child(3n)   { border-right: none; }
.feature-card:nth-child(n+4)  { border-top: 1px solid var(--border); }
.feature-card:hover            { background: var(--surface-2); }

.feature-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1;
    margin-bottom: 1.25rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-dim);
    line-height: 1.75;
}

/* ── How It Works ─────────────────────────────────────────────────────────── */
.how-it-works { background: var(--bg); }

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
}

.step {
    padding: 3rem 2.5rem;
    border-right: 1px solid var(--border);
}

.step:last-child { border-right: none; }

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.step p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-dim);
    line-height: 1.75;
}

/* ── Testimonials ─────────────────────────────────────────────────────────── */
.testimonials { background: var(--surface); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
}

.testimonial-card {
    padding: 2.5rem;
    border-right: 1px solid var(--border);
}

.testimonial-card:last-child { border-right: none; }

.stars {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.18em;
    margin-bottom: 1.25rem;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.175rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 2rem;
}

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

.author-avatar {
    width: 36px;
    height: 36px;
    background: var(--surface-2);
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    flex-shrink: 0;
}

.author-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
}

.author-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 0.15rem;
}

/* ── Pricing ──────────────────────────────────────────────────────────────── */
.pricing { background: var(--bg); }

.pricing-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.toggle-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: var(--text-dim);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}

.toggle-label.active { color: var(--text); font-weight: 600; }

.toggle-switch {
    position: relative;
    width: 44px;
    height: 22px;
    cursor: pointer;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.slider {
    position: absolute;
    inset: 0;
    background: var(--surface-2);
    border: 1px solid var(--border-strong);
    transition: all 0.2s;
    cursor: pointer;
    border-radius: 0;
}

.slider::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--text-dim);
    transition: all 0.2s ease;
}

.toggle-switch input:checked + .slider {
    background: var(--gold-dim);
    border-color: var(--gold);
}

.toggle-switch input:checked + .slider::before {
    transform: translate(22px, -50%);
    background: var(--gold);
}

.save-badge {
    font-family: 'Inter', sans-serif;
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--gold);
    margin-left: 0.375rem;
}

/* Single pricing card */
.pricing-hero-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    border: 1px solid var(--border);
}

.pricing-hero-left {
    padding: 3rem;
    border-right: 1px solid var(--border);
    background: var(--surface);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-hero-right {
    padding: 3rem;
}

.plan-name {
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.plan-price .price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}

.price-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.plan-price .period {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.2;
}

.price-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.plan-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.plan-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
}

.plan-features li {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    padding: 0.875rem 1.25rem;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    line-height: 1.5;
}

.plan-features li:nth-child(2n) { border-right: none; }
.plan-features li:nth-last-child(-n+2) { border-bottom: none; }

.pricing-guarantee {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    margin-top: -0.75rem;
}

.pricing-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.pricing-footer p {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq { background: var(--surface); }

.faq-container {
    max-width: 720px;
    border-top: 1px solid var(--border);
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    color: var(--text);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.175rem;
    font-weight: 600;
    transition: color 0.2s;
}

.faq-question:hover { color: var(--white); }

.faq-icon {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.2s;
    line-height: 1;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.8;
    padding-bottom: 1.5rem;
}

/* ── CTA Section ──────────────────────────────────────────────────────────── */
.cta {
    background: var(--white);
    padding: 8rem 0;
}

.cta-content { 
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #786f61;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-content .btn-primary {
    background: #0a0a0a;
    color: var(--white);
    border-color: #0a0a0a;
}

.cta-content .btn-primary:hover {
    background: #1e1e1e;
    border-color: #1e1e1e;
}

.cta-guarantee {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #968c7e;
    margin-top: 1.5rem;
    letter-spacing: 0.02em;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.footer-col h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.footer-col p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-dim);
    line-height: 1.75;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.625rem; }

.footer-col ul a {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--text); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p,
.footer-bottom a {
    font-family: 'Inter', sans-serif;
    font-size: 0.77rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--text-dim); }

/* ── Strategy Modal ───────────────────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.87);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: 0;
    width: 100%;
    max-width: 1280px;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(18px);
    transition: transform 0.24s ease;
}

.modal-overlay.open .modal { transform: translateY(0); }

.modal-close {
    position: sticky;
    top: 1.25rem;
    float: right;
    margin: 1.25rem 1.25rem 0 0;
    background: var(--surface-2);
    border: 1px solid var(--border-strong);
    color: var(--text-dim);
    width: 32px;
    height: 32px;
    border-radius: 0;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
    font-family: 'Inter', sans-serif;
}

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

.modal-content {
    padding: 0 2.25rem 2.25rem;
    clear: both;
}

.modal-chart {
    overflow: hidden;
    background: rgba(0,0,0,0.5);
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
    height: 200px;
}

.modal-title-row {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.625rem;
    flex-wrap: wrap;
}

.modal-title-row h2 {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
}

.modal-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.2rem 0.65rem;
    border: 1px solid var(--border-strong);
    color: var(--text-muted);
    border-radius: 0;
    background: none;
}

.modal-desc {
    font-family: 'Inter', sans-serif;
    color: var(--text-dim);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 0.9rem;
}

.modal-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    margin-bottom: 2rem;
}

.modal-stat {
    text-align: center;
    padding: 1.25rem 0.5rem;
    border-right: 1px solid var(--border);
}

.modal-stat:last-child { border-right: none; }

.modal-stat .label {
    font-family: 'Inter', sans-serif;
    font-size: 0.61rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
}

.modal-stat .value {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 0.25rem;
    line-height: 1.1;
}

.modal-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border);
    margin-bottom: 2rem;
}

.modal-section {
    padding: 1.5rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.modal-section:nth-child(2n)  { border-right: none; }
.modal-section:nth-last-child(-n+2) { border-bottom: none; }

.modal-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.61rem;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.modal-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-section ul li {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-dim);
    padding-left: 1.125rem;
    position: relative;
    line-height: 1.55;
}

.modal-section ul li::before {
    content: '\2014';
    position: absolute;
    left: 0;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.modal-cta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.modal-cta-left {
    flex: 0 0 auto;
}

.modal-cta-right {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: auto;
}

.modal-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    line-height: 1;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-title { font-size: 4.25rem; }
    .section-title { font-size: 2.75rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        z-index: 999;
    }

    .nav-menu.active { display: flex; }
    .nav-menu a { font-size: 1rem; color: var(--text); }
    .nav-cta { display: none; }
    .mobile-menu-toggle { display: flex; }

    .hero { padding: 9rem 0 5rem; }
    .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .hero-title { font-size: 3.25rem; }
    .hero-visual { display: none; }

    .section-title { font-size: 2.25rem; }
    section { padding: 6rem 0; }

    .strategies-grid,
    .features-grid,
    .steps-container,
    .testimonials-grid { grid-template-columns: 1fr; }

    .strategy-card,
    .feature-card,
    .step,
    .testimonial-card {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .strategy-card:last-child,
    .feature-card:last-child,
    .step:last-child,
    .testimonial-card:last-child { border-bottom: none; }

    .feature-card:nth-child(3n)  { border-right: none; }
    .feature-card:nth-child(n+4) { border-top: none; }

    .pricing-hero-card { grid-template-columns: 1fr; }
    .pricing-hero-left { border-right: none; border-bottom: 1px solid var(--border); }
    .plan-features { grid-template-columns: 1fr; }
    .plan-features li:nth-child(2n) { border-right: none; }
    .plan-features li:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
    .plan-features li:last-child { border-bottom: none; }

    .cta { padding: 5rem 0; }
    .cta-content h2 { font-size: 2.5rem; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

    .modal-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .modal-sections { grid-template-columns: 1fr; }
    .modal-section { border-right: none; border-bottom: 1px solid var(--border); }
    .modal-section:last-child { border-bottom: none; }
    
    .modal-cta-row { 
        flex-direction: column; 
        gap: 1.5rem;
    }
    .modal-cta-left {
        width: 100%;
        text-align: center;
    }
    .modal-cta-right { 
        width: 100%;
        flex-direction: column;
        margin-left: 0;
    }
    .modal-cta-right .btn { 
        width: 100%; 
        text-align: center; 
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.625rem; }
    .section-title { font-size: 1.875rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .container { padding: 0 1.25rem; }
}
