/* Atlas Gold Desk — Design System */

:root {
    --bg: #0b0b0b;
    --bg-card: #131313;
    --bg-card-hover: #1a1a1a;
    --text: #f0ece4;
    --text-mid: #9e9890;
    --text-dim: #5e5c56;
    --gold: #c8a55a;
    --gold-light: #e4c87a;
    --gold-dark: #a08040;
    --gold-glow: rgba(200,165,90,0.12);
    --border: rgba(200,165,90,0.10);
    --border-hover: rgba(200,165,90,0.22);
    --red: #e04040;
    --green: #40c070;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

/* ── NAV ── */
nav {
    position: fixed; top:0; left:0; right:0; z-index:100;
    background: rgba(11,11,11,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    height: 68px;
    display: flex; align-items:center; justify-content:space-between;
}

.nav-logo {
    font-size: 1.15rem; font-weight: 700; color: var(--gold);
    text-decoration: none; letter-spacing: -0.01em;
    display: flex; align-items: center; gap: 10px;
}

.nav-logo-icon {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 800; color: #0b0b0b;
}

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

.nav-links a {
    color: var(--text-mid); text-decoration: none;
    font-size: 0.86rem; font-weight: 500;
    padding: 8px 16px; border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--text); background: var(--border); }
.nav-links a.active { color: var(--gold); }

.btn-nav {
    background: var(--gold); color: #0b0b0b;
    padding: 10px 24px; border-radius: 8px;
    font-weight: 700; font-size: 0.86rem;
    text-decoration: none; border: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
}

.btn-nav:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── PAGE HEADER ── */
.page-header {
    padding: 140px 48px 64px;
    max-width: 900px;
    margin: 0 auto;
}

.page-header .section-label {
    font-size: 0.72rem; font-weight: 700;
    color: var(--gold); letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 14px;
}

.page-header h1 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 700; line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text); margin-bottom: 20px;
}

.page-header h1 em { font-style: normal; color: var(--gold); }

.page-header .lead {
    font-size: 1.08rem; color: var(--text-mid);
    max-width: 620px; line-height: 1.75;
}

.page-header .lead strong { color: var(--text); }

/* ── CONTENT SECTIONS ── */
.content-section {
    padding: 72px 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.content-section.narrow { max-width: 720px; }
.content-section.wide { max-width: 1100px; }

.section-label {
    font-size: 0.72rem; font-weight: 700;
    color: var(--gold); letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 14px;
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700; line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text); margin-bottom: 16px;
}

h2 em { font-style: normal; color: var(--gold); }

h3 {
    font-size: 1.15rem; font-weight: 600;
    color: var(--text); margin-bottom: 8px;
}

h4 {
    font-size: 0.92rem; font-weight: 700;
    color: var(--gold); margin-bottom: 6px;
    text-transform: uppercase; letter-spacing: 0.04em;
}

p {
    font-size: 0.95rem; color: var(--text-mid);
    margin-bottom: 16px; line-height: 1.7;
}

p:last-child { margin-bottom: 0; }
strong { color: var(--text); font-weight: 600; }

/* ── DIVIDER ── */
.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 56px 0;
}

/* ── GRID ── */
.grid-2 {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px; margin: 24px 0;
}

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

.grid-4 {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px; margin: 24px 0;
}

/* ── CARDS ── */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

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

.card-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.8; }

/* ── STAT ROW ── */
.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
    border-radius: 14px;
    overflow: hidden;
    margin: 40px 0;
}

.stat-cell {
    background: var(--bg-card);
    padding: 28px 20px;
    text-align: center;
}

.stat-num {
    font-size: 2rem; font-weight: 800;
    color: var(--gold);
    letter-spacing: -0.03em;
    line-height: 1; margin-bottom: 6px;
}

.stat-label {
    font-size: 0.75rem; color: var(--text-dim);
    font-weight: 500;
}

/* ── STEP SYSTEM ── */
.step-row {
    display: flex; gap: 2px; margin: 24px 0;
}

.step-card {
    flex: 1; background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px; padding: 24px 20px;
    text-align: center;
    position: relative;
}

.step-num {
    font-size: 0.72rem; font-weight: 800;
    color: #0b0b0b;
    background: var(--gold);
    width: 28px; height: 28px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 12px;
}

.step-card h3 { font-size: 0.95rem; margin-bottom: 6px; }
.step-card p { font-size: 0.82rem; margin-bottom: 0; }

/* ── FEATURE LIST ── */
.feature-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.feature-item:last-child { border-bottom: none; }

.feature-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: var(--gold-glow);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}

.feature-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.8; }

.feature-text h3 { font-size: 0.95rem; margin-bottom: 4px; }
.feature-text p { font-size: 0.85rem; margin-bottom: 0; }

/* ── DISCLAIMER BOX ── */
.disclaimer-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin: 24px 0;
}

.disclaimer-box h4 { margin-bottom: 8px; }
.disclaimer-box p { font-size: 0.82rem; margin-bottom: 0; color: var(--text-mid); }

/* ── PRICING ── */
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 28px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.pricing-card.featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(200,165,90,0.06) 0%, var(--bg-card) 100%);
}

.pricing-badge {
    display: inline-block;
    background: var(--gold);
    color: #0b0b0b;
    font-size: 0.68rem; font-weight: 800;
    padding: 4px 12px; border-radius: 100px;
    margin-bottom: 16px;
    text-transform: uppercase; letter-spacing: 0.06em;
}

.pricing-name {
    font-size: 0.82rem; font-weight: 600;
    color: var(--text-mid);
    text-transform: uppercase; letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 2.2rem; font-weight: 800;
    color: var(--gold); margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.pricing-desc {
    font-size: 0.82rem; color: var(--text-dim);
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none; text-align: left;
    margin-bottom: 24px;
}

.pricing-features li {
    font-size: 0.82rem; color: var(--text-mid);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 8px;
}

.pricing-features li:last-child { border-bottom: none; }

.check-icon { color: var(--gold); font-size: 0.8rem; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 8px;
    font-size: 0.9rem; font-weight: 700;
    text-decoration: none; transition: all 0.2s;
    cursor: pointer; border: none;
    font-family: 'DM Sans', sans-serif;
}

.btn-gold {
    background: var(--gold);
    color: #0b0b0b;
}

.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border-hover);
}

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

/* ── CTA ── */
.cta-section {
    padding: 80px 48px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 12px;
}

.cta-section p { margin-bottom: 28px; }

/* ── FOOTER ── */
footer {
    border-top: 1px solid var(--border);
    padding: 32px 48px;
    max-width: 1000px;
    margin: 0 auto;
    display: flex; justify-content:space-between; align-items:center;
    font-size: 0.8rem; color: var(--text-dim);
}

footer a { color: var(--gold); text-decoration: none; }

/* ── FORM ── */
label {
    display: block; font-size: 0.82rem;
    font-weight: 600; color: var(--text-mid);
    margin-bottom: 8px;
    text-transform: uppercase; letter-spacing: 0.04em;
}

input, select, textarea {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text);
    font-size: 0.92rem;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color 0.2s;
    margin-bottom: 20px;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--gold);
}

textarea { resize: vertical; min-height: 140px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .stat-row { grid-template-columns: 1fr 1fr; }
    .step-row { flex-direction: column; }
}

@media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .page-header { padding: 100px 20px 40px; }
    .content-section { padding: 0 20px; }
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .stat-row { grid-template-columns: 1fr 1fr; }
    .step-row { flex-direction: column; }
    .cta-section { padding: 60px 20px; }
    footer { padding: 24px 20px; flex-direction: column; gap: 8px; text-align: center; }
}
