/* ═══════════════════════════════════════════════════════════════
   365Payments — Premium White + Gold Design System
   Version 2.0.0 | 2026-04-27
   ═══════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
    --white: #FFFFFF;
    --bg: #FDFCFA;
    --bg-warm: #FAF8F5;
    --surface: #FFFFFF;
    --surface-hover: #FBF9F6;

    --gold: #B8943E;
    --gold-light: #D4B864;
    --gold-dark: #96782E;
    --gold-muted: #E8D5A3;
    --gold-bg: rgba(184, 148, 62, 0.06);
    --gold-border: rgba(184, 148, 62, 0.18);
    --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #B8943E 50%, #A07830 100%);

    --text: #1A1A2E;
    --text-secondary: #4A4A5A;
    --text-muted: #8A8A9A;
    --text-light: #B0B0BA;

    --border: #EAEAEA;
    --border-light: #F2F2F2;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.03);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-gold: 0 4px 20px rgba(184, 148, 62, 0.15);

    --radius: 10px;
    --radius-lg: 16px;
    --nav-h: 72px;
    --max-w: 1140px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3 { font-family: 'Cormorant Garamond', 'Georgia', serif; font-weight: 600; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); letter-spacing: -0.01em; }
h3 { font-size: 1.15rem; font-weight: 600; }
p { color: var(--text-secondary); line-height: 1.7; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); font-size: 0.88rem; }
.mono { font-family: 'JetBrains Mono', 'Fira Code', monospace; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--nav-h);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center;
}
.nav-inner {
    max-width: var(--max-w); width: 100%; margin: 0 auto;
    padding: 0 2rem;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.nav-brand {
    text-decoration: none; display: flex; align-items: center; gap: 0.35rem;
    flex-shrink: 0;
    position: absolute; left: 2rem;
}
.brand-mark {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: 1.5rem;
    background: var(--gold-gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.brand-name {
    font-family: 'Inter', sans-serif; font-weight: 600;
    font-size: 0.82rem; letter-spacing: 0.18em;
    color: var(--text); text-transform: uppercase;
}

/* ── Tab Navigation ─────────────────────────────────────────── */
.nav-tabs {
    display: flex; gap: 0;
}
.nav-tab {
    background: none; border: none; cursor: pointer;
    font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 500;
    color: var(--text-muted); letter-spacing: 0.04em;
    padding: 0.6rem 1.2rem;
    position: relative; transition: color var(--transition);
    text-transform: uppercase;
}
.nav-tab::after {
    content: ''; position: absolute; bottom: -1px; left: 50%; width: 0;
    height: 2px; background: var(--gold-gradient);
    transition: all var(--transition); transform: translateX(-50%);
}
.nav-tab:hover { color: var(--text); }
.nav-tab.active { color: var(--gold); font-weight: 600; }
.nav-tab.active::after { width: 100%; }

/* ── Ticker ─────────────────────────────────────────────────── */
.nav-ticker {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.35rem 0.9rem; border-radius: 100px;
    background: var(--gold-bg); border: 1px solid var(--gold-border);
    flex-shrink: 0;
}
.ticker-label { font-size: 0.7rem; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; }
.ticker-value { font-size: 0.82rem; font-weight: 600; color: var(--gold-dark); font-family: 'JetBrains Mono', monospace; }

/* ── SPA Container ──────────────────────────────────────────── */
.spa-container {
    padding-top: var(--nav-h);
}
.tab-panel {
    display: none; opacity: 0;
    padding: 3rem 2rem 2rem;
    max-width: var(--max-w); margin: 0 auto; width: 100%;
    transition: opacity 0.35s ease;
    min-height: calc(100vh - var(--nav-h) - 80px);
}
.tab-panel.active { display: block; opacity: 1; }
.tab-panel.fade-out { opacity: 0; }
.tab-panel.fade-in { opacity: 1; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero { text-align: center; padding: 4rem 0 3rem; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--gold);
    background: var(--gold-bg); border: 1px solid var(--gold-border);
    padding: 0.4rem 1.2rem; border-radius: 100px;
    margin-bottom: 1.5rem;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: 1.08rem; max-width: 560px; margin: 0 auto 2.5rem; color: var(--text-secondary); }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.5rem; padding: 0.7rem 1.8rem;
    border-radius: 8px; font-family: 'Inter', sans-serif;
    font-size: 0.88rem; font-weight: 600; text-decoration: none;
    cursor: pointer; border: none;
    transition: all var(--transition); letter-spacing: 0.02em;
}
.btn-gold {
    background: var(--gold-gradient); color: #FFF;
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(184,148,62,0.25); }
.btn-outline {
    background: transparent; color: var(--gold);
    border: 1.5px solid var(--gold-border);
}
.btn-outline:hover { background: var(--gold-bg); border-color: var(--gold); }
.btn-lg { padding: 0.85rem 2.4rem; font-size: 0.95rem; border-radius: 10px; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.8rem; }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.8rem;
    box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-gold { border-left: 3px solid var(--gold); }
.card-featured {
    border: 1.5px solid var(--gold);
    box-shadow: var(--shadow-gold);
    position: relative;
}
.card-featured::before {
    content: 'RECOMMENDED'; position: absolute; top: -10px; left: 50%;
    transform: translateX(-50%); background: var(--gold-gradient);
    color: #FFF; font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.1em; padding: 0.2rem 1rem;
    border-radius: 100px;
}

/* ── Grids ──────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }

/* ── Stat Cards ─────────────────────────────────────────────── */
.stat-row { display: flex; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.stat-card {
    flex: 1; min-width: 180px; text-align: center;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.5rem 1rem;
    box-shadow: var(--shadow-sm);
}
.stat-value { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.3rem; }

/* ── Gateway Grid ───────────────────────────────────────────── */
.gateway-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.5rem;
    text-align: center; transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.gateway-card:hover { border-color: var(--gold-border); box-shadow: var(--shadow-gold); transform: translateY(-3px); }
.gateway-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem; font-size: 1.3rem; font-weight: 800;
    font-family: 'Cormorant Garamond', serif;
}
.gateway-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.3rem; }
.gateway-desc { font-size: 0.78rem; color: var(--text-muted); }
.gw-xmr .gateway-icon { background: rgba(255,102,0,0.08); color: #FF6600; }
.gw-usdc .gateway-icon { background: rgba(39,117,202,0.08); color: #2775CA; }
.gw-usdt .gateway-icon { background: rgba(38,161,123,0.08); color: #26A17B; }
.gw-btc .gateway-icon { background: rgba(247,147,26,0.08); color: #F7931A; }
.gw-eth .gateway-icon { background: rgba(98,126,234,0.08); color: #627EEA; }
.gw-stripe .gateway-icon { background: rgba(99,91,255,0.08); color: #635BFF; }
.gw-paypal .gateway-icon { background: rgba(0,48,135,0.08); color: #003087; }
.gw-coinbase .gateway-icon { background: rgba(0,82,255,0.08); color: #0052FF; }
.gw-xrp .gateway-icon { background: rgba(0,0,0,0.06); color: #23292F; }

/* ── Pricing ────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.pricing-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 2.5rem 2rem;
    text-align: center; box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-md); }
.pricing-name { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.75rem; }
.pricing-price { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 2rem; }
.pricing-features li {
    font-size: 0.88rem; padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
}
.pricing-features li::before { content: '✓ '; color: var(--gold); font-weight: 700; }

/* ── Code Block ─────────────────────────────────────────────── */
.code-block {
    background: #1A1A2E; color: #E2E8F0; border-radius: var(--radius);
    padding: 1.5rem; font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem; line-height: 1.8; overflow-x: auto;
    box-shadow: var(--shadow-md);
}
.code-block .comment { color: #666; }
.code-block .keyword { color: #C792EA; }
.code-block .string { color: #C3E88D; }
.code-block .method { color: #82AAFF; }

/* ── Form ───────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; letter-spacing: 0.02em; }
.form-input, .form-textarea {
    width: 100%; padding: 0.75rem 1rem;
    border: 1.5px solid var(--border); border-radius: 8px;
    font-family: 'Inter', sans-serif; font-size: 0.9rem;
    color: var(--text); background: var(--surface);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-input:focus, .form-textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 148, 62, 0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ── Divider ────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 2rem 0; }
.divider-gold { height: 1px; background: var(--gold-border); margin: 2rem 0; }

/* ── Section Header ─────────────────────────────────────────── */
.section-header { margin-bottom: 2.5rem; }
.section-header h2 { margin-bottom: 0.6rem; }
.section-eyebrow {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem;
}

/* ── Feature Row ────────────────────────────────────────────── */
.feature-row { display: flex; gap: 2rem; align-items: flex-start; margin-bottom: 1.5rem; }
.feature-icon-box {
    width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--gold-bg); border: 1px solid var(--gold-border);
    color: var(--gold); font-size: 1.1rem;
}
.feature-content h3 { margin-bottom: 0.3rem; font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; }
.feature-content p { font-size: 0.88rem; color: var(--text-muted); }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
    border-top: 1px solid var(--border); padding: 2rem;
    background: var(--surface); flex-shrink: 0;
}
.footer-inner {
    max-width: var(--max-w); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.8rem; color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.72rem; color: var(--text-light); }

/* ── Buttons v3 ────────────────────────────────────────────── */
.btn--primary { background: var(--gold-gradient); color: #FFF; box-shadow: var(--shadow-gold); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(184,148,62,0.25); }
.btn--outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold-border); }
.btn--outline:hover { background: var(--gold-bg); border-color: var(--gold); }
.btn--ghost { background: none; color: var(--gold); border: none; padding: 0.4rem 0; font-weight: 600; }
.btn--ghost:hover { color: var(--gold-dark); }
.btn--lg { padding: 0.85rem 2.4rem; font-size: 0.95rem; border-radius: 10px; }
.btn--full { width: 100%; }

/* ── Nav Auth ──────────────────────────────────────────────── */
.nav-auth { flex-shrink: 0; position: absolute; right: 2rem; }
.nav-auth .btn { padding: 0.5rem 1.4rem; font-size: 0.82rem; }

/* ── Footer v3 ─────────────────────────────────────────────── */
.footer-powered { font-size: 0.82rem; color: var(--text-muted); }
.footer-powered strong { color: var(--text); }

/* ── Page Headers ──────────────────────────────────────────── */
.page-header { margin-bottom: 2.5rem; }
.page-header h1 { margin-bottom: 0.6rem; }
.page-header p { font-size: 1.05rem; color: var(--text-secondary); max-width: 600px; }
.page-header.centered { text-align: center; }
.page-header.centered p { margin: 0 auto; }
.direct-tagline { font-family: 'Playfair Display', 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--gold); font-style: italic; }

/* ── Hero v3 ───────────────────────────────────────────────── */
.page-home .hero { text-align: center; padding: 5rem 0 3rem; }
.page-home .hero h1 em { font-style: italic; color: var(--gold); font-family: 'Playfair Display', 'Cormorant Garamond', serif; }
.page-home .hero-sub { font-size: 1.05rem; max-width: 580px; margin: 0 auto 2.5rem; }

/* ── Value Strip ───────────────────────────────────────────── */
.value-strip {
    display: flex; gap: 0; justify-content: center; margin: 2rem 0 3rem;
    border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
    background: var(--surface); box-shadow: var(--shadow-sm);
}
.value-item {
    flex: 1; text-align: center; padding: 1.5rem 1rem;
    border-right: 1px solid var(--border);
}
.value-item:last-child { border-right: none; }
.value-number { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); }
.value-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.2rem; }

/* ── Services Grid ─────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.service-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 2rem; box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--gold-border); }
.service-icon { margin-bottom: 1.2rem; color: var(--gold); }
.service-card h3 { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 600; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.2rem; }

/* ── Trust Section ─────────────────────────────────────────── */
.trust-section { text-align: center; margin: 3rem 0 2rem; padding: 3rem 0; border-top: 1px solid var(--border); }
.trust-section h2 { margin-bottom: 0.6rem; }
.trust-sub { max-width: 640px; margin: 0 auto 2rem; font-size: 0.95rem; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.trust-item {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.5rem; box-shadow: var(--shadow-sm);
}
.trust-label { font-size: 0.88rem; font-weight: 700; color: var(--gold); margin-bottom: 0.4rem; }
.trust-detail { font-size: 0.82rem; color: var(--text-muted); }

/* ── Buy Crypto Layout ─────────────────────────────────────── */
.buy-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2rem; }
.buy-form-card, .buy-info-card, .prepaid-form-card, .prepaid-info-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 2rem; box-shadow: var(--shadow-sm);
}
.form-section { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; letter-spacing: 0.02em; }
.form-hint { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.4rem; }

/* ── Crypto Grid ───────────────────────────────────────────── */
.crypto-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.crypto-btn {
    background: var(--bg); border: 1.5px solid var(--border); border-radius: 8px;
    padding: 0.7rem 0.5rem; cursor: pointer; text-align: center;
    transition: all var(--transition); display: flex; flex-direction: column; align-items: center; gap: 0.15rem;
}
.crypto-btn:hover { border-color: var(--gold-border); background: var(--gold-bg); }
.crypto-btn.active { border-color: var(--gold); background: var(--gold-bg); box-shadow: 0 0 0 2px rgba(184,148,62,0.15); }
.coin-symbol { font-weight: 700; font-size: 0.88rem; color: var(--text); }
.coin-name { font-size: 0.68rem; color: var(--text-muted); }

/* ── Input Group ───────────────────────────────────────────── */
.input-group { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden; background: var(--surface); transition: border-color var(--transition); }
.input-group:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,148,62,0.1); }
.input-prefix, .input-suffix { padding: 0 0.8rem; font-size: 0.88rem; font-weight: 600; color: var(--text-muted); background: var(--bg-warm); border: none; flex-shrink: 0; height: 44px; display: flex; align-items: center; }
.input-group .form-input { border: none; border-radius: 0; padding: 0.7rem 0.8rem; flex: 1; outline: none; }
.input-group .form-input:focus { box-shadow: none; }

/* ── Estimate Box ──────────────────────────────────────────── */
.estimate-box {
    background: var(--gold-bg); border: 1px solid var(--gold-border); border-radius: 8px;
    padding: 1rem 1.2rem; display: flex; align-items: baseline; gap: 0.5rem;
}
.estimate-amount { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold-dark); }
.estimate-coin { font-size: 0.88rem; font-weight: 600; color: var(--gold); }

/* ── Delivery Options ──────────────────────────────────────── */
.delivery-options { display: flex; flex-direction: column; gap: 0.5rem; }
.radio-card {
    display: flex; align-items: center; gap: 0.8rem; padding: 0.8rem 1rem;
    border: 1.5px solid var(--border); border-radius: 8px; cursor: pointer;
    transition: all var(--transition);
}
.radio-card:hover { border-color: var(--gold-border); }
.radio-card input[type="radio"] { accent-color: var(--gold); width: 16px; height: 16px; }
.radio-card input[type="radio"]:checked ~ .radio-content strong { color: var(--gold-dark); }
.radio-content { display: flex; flex-direction: column; }
.radio-content strong { font-size: 0.88rem; }
.radio-content span { font-size: 0.75rem; color: var(--text-muted); }

/* ── Steps ─────────────────────────────────────────────────── */
.steps { margin-bottom: 1.5rem; }
.step { display: flex; gap: 1rem; margin-bottom: 1.2rem; align-items: flex-start; }
.step-num {
    width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--gold-gradient); color: #FFF; font-weight: 700; font-size: 0.82rem;
}
.step-text strong { font-size: 0.88rem; display: block; margin-bottom: 0.2rem; }
.step-text p { font-size: 0.82rem; color: var(--text-muted); }

/* ── Info Box ──────────────────────────────────────────────── */
.info-box {
    background: var(--bg-warm); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.2rem; margin-top: 1.2rem;
}
.info-box h4 { font-family: 'Inter', sans-serif; font-size: 0.88rem; font-weight: 600; margin-bottom: 0.5rem; }
.info-box p { font-size: 0.82rem; color: var(--text-secondary); }
.info-box ul { list-style: none; padding: 0; margin: 0.5rem 0; }
.info-box li { font-size: 0.82rem; color: var(--text-secondary); padding: 0.2rem 0; }
.info-box li::before { content: '→ '; color: var(--gold); font-weight: 700; }
.info-box.warning { background: rgba(184,148,62,0.06); border-color: var(--gold-border); }

/* ── Prepaid Layout ────────────────────────────────────────── */
.prepaid-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; }
.fee-banner {
    display: flex; gap: 1.2rem; align-items: center; margin-bottom: 1.5rem;
    background: var(--gold-bg); border: 1px solid var(--gold-border); border-radius: var(--radius);
    padding: 1.2rem;
}
.fee-rate { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.fee-detail strong { display: block; font-size: 0.88rem; margin-bottom: 0.2rem; }
.fee-detail span { font-size: 0.78rem; color: var(--text-muted); }

/* ── Pricing v3 ────────────────────────────────────────────── */
.page-pricing .pricing-grid { margin-bottom: 3rem; }
.page-pricing .pricing-card { position: relative; }
.pricing-tier { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.75rem; }
.pricing-price { font-family: 'Cormorant Garamond', serif; margin-bottom: 0.5rem; }
.price-currency { font-size: 1.5rem; color: var(--text-muted); vertical-align: super; }
.price-amount { font-size: 3rem; font-weight: 700; color: var(--text); }
.price-period { font-size: 0.88rem; color: var(--text-muted); }
.pricing-fee { font-size: 0.82rem; font-weight: 600; color: var(--gold); margin-bottom: 1.5rem; }
.pricing-card.featured {
    border: 1.5px solid var(--gold); box-shadow: var(--shadow-gold);
}
.pricing-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--gold-gradient); color: #FFF; font-size: 0.65rem;
    font-weight: 700; letter-spacing: 0.1em; padding: 0.25rem 1rem;
    border-radius: 100px; text-transform: uppercase;
}

/* ── Pricing Details ───────────────────────────────────────── */
.pricing-details { margin: 2rem 0; padding-top: 2rem; border-top: 1px solid var(--border); }
.pricing-details h2 { margin-bottom: 1.5rem; }
.details-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.detail-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.5rem; box-shadow: var(--shadow-sm);
}
.detail-card h3 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; }
.detail-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ── Manifesto ─────────────────────────────────────────────── */
.direct-content { max-width: 720px; margin: 0 auto; }
.manifesto-block { margin-bottom: 2.5rem; }
.manifesto-block h2 { font-size: 1.6rem; margin-bottom: 0.8rem; }
.manifesto-block p { font-size: 0.95rem; line-height: 1.75; margin-bottom: 0.8rem; }
.manifesto-block strong { color: var(--gold-dark); }
.manifesto-block.final { border-top: 1px solid var(--border); padding-top: 2rem; }
.manifesto-sign { font-size: 0.95rem; color: var(--text-muted); margin-top: 1.5rem; }
.manifesto-sign strong { color: var(--gold); }
.offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1rem; }
.offer-item {
    background: var(--bg-warm); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.2rem;
}
.offer-item strong { font-size: 0.88rem; display: block; margin-bottom: 0.3rem; color: var(--gold-dark); }
.offer-item p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ── Responsive ─────────────────────────────────────────────── */
/* ── Fees Section ──────────────────────────────────────────── */
.fees-section { margin: 2rem 0 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered p { max-width: 560px; margin: 0 auto; }
.fee-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.fee-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 2rem; text-align: center; box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.fee-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.fee-card.accent { border: 1.5px solid var(--gold); box-shadow: var(--shadow-gold); }
.fee-rate-big {
    font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700;
    color: var(--gold); margin-bottom: 0.3rem;
}
.fee-card-title { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 0.6rem; }
.fee-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ── Pitch Section ─────────────────────────────────────────── */
.pitch-section {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
    margin: 3rem 0; padding: 2.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.pitch-block h2 { font-size: 1.4rem; margin-bottom: 0.8rem; }
.pitch-block p { font-size: 0.92rem; line-height: 1.75; margin-bottom: 0.6rem; color: var(--text-secondary); }

/* ── Closing Section ───────────────────────────────────────── */
.closing-section { margin: 3rem 0 2rem; text-align: center; padding: 3rem 0; border-top: 1px solid var(--border); }
.closing-content { max-width: 640px; margin: 0 auto; }
.closing-content h2 { margin-bottom: 1rem; }
.closing-content p { font-size: 0.95rem; line-height: 1.75; margin-bottom: 0.6rem; }
.closing-sign { font-size: 0.95rem; color: var(--text-muted); margin-top: 1.5rem; }
.closing-sign strong { color: var(--gold); }

/* ── Partnerships Page ─────────────────────────────────────── */
.partner-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-bottom: 3rem; }
.partner-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 2.5rem 2rem; box-shadow: var(--shadow-sm); transition: all var(--transition); position: relative;
}
.partner-card:hover { box-shadow: var(--shadow-md); }
.partner-card.featured { border: 1.5px solid var(--gold); box-shadow: var(--shadow-gold); }
.partner-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--gold-gradient); color: #FFF; font-size: 0.65rem;
    font-weight: 700; letter-spacing: 0.1em; padding: 0.25rem 1rem;
    border-radius: 100px; text-transform: uppercase;
}
.partner-icon { margin-bottom: 1.2rem; color: var(--gold); }
.partner-card h2 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.partner-card p { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 1.2rem; }
.partner-perks { list-style: none; padding: 0; margin-bottom: 1.5rem; }
.partner-perks li {
    font-size: 0.85rem; padding: 0.45rem 0; color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}
.partner-perks li::before { content: '✓ '; color: var(--gold); font-weight: 700; }

/* ── Partner Details ───────────────────────────────────────── */
.partner-details { margin: 2rem 0 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }

/* ── Ideas for Tomorrow ────────────────────────────────────── */
.ideas-section { margin: 3rem 0 2rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.ideas-form-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 2rem; box-shadow: var(--shadow-sm); max-width: 600px; margin: 2rem auto;
}
.form-textarea { resize: vertical; min-height: 120px; font-family: 'Inter', sans-serif; }
select.form-input { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%238A8A9A'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.optional { font-weight: 400; color: var(--text-muted); font-size: 0.78rem; }
.ideas-examples { text-align: center; margin-top: 2.5rem; }
.ideas-examples h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 1rem; }
.ideas-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.idea-tag {
    background: var(--gold-bg); border: 1px solid var(--gold-border); border-radius: 100px;
    padding: 0.4rem 1rem; font-size: 0.8rem; font-weight: 500; color: var(--gold-dark);
    transition: all var(--transition);
}
.idea-tag:hover { background: var(--gold-muted); color: var(--gold-dark); transform: translateY(-1px); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
    .grid-3, .grid-4, .services-grid, .fee-cards { grid-template-columns: repeat(2, 1fr); }
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
    .nav-tabs { display: none; }
    .stat-row { flex-direction: column; }
    .buy-layout, .prepaid-layout { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .value-strip { flex-wrap: wrap; }
    .value-item { min-width: 50%; }
    .details-grid { grid-template-columns: 1fr; }
    .pitch-section { grid-template-columns: 1fr; }
    .partner-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .grid-2, .grid-3, .grid-4, .grid-5, .services-grid, .fee-cards { grid-template-columns: 1fr; }
    .tab-panel { padding: 2rem 1rem 1.5rem; }
    .hero { padding: 2rem 0 1.5rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; text-align: center; }
    .trust-grid { grid-template-columns: 1fr; }
    .crypto-grid { grid-template-columns: repeat(3, 1fr); }
    .offer-grid { grid-template-columns: 1fr; }
    .value-strip { flex-direction: column; }
    .value-item { border-right: none; border-bottom: 1px solid var(--border); }
}
