:root {
    --navy: #1a2332;
    --navy-light: #243447;
    --navy-dark: #111a26;
    --gold: #c9a84c;
    --gold-light: #e0c873;
    --gold-dark: #a8893d;
    --white: #f8f8f8;
    --gray: #8899aa;
    --gray-light: #c5cdd6;
    --bg: #f0f2f5;
    --text: #2c3e50;
    --text-light: #5a6c7d;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.9;
    background: white;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--navy);
    padding: 0.9rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

nav .brand {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
}

nav .brand span {
    color: var(--white);
    font-weight: 400;
}

nav .nav-links {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

nav .nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

nav .nav-links .cta-link {
    background: var(--gold);
    color: var(--navy);
    padding: 0.45rem 1rem;
    border-radius: 4px;
    font-weight: 600;
}

nav .nav-links .cta-link:hover {
    background: var(--gold-light);
    color: var(--navy);
}

/* ── HERO ── */
.hero {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    padding: 10rem 2rem 6rem;
    text-align: center;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: 0;
    line-height: 1.3;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

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

.hero .tagline {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-style: italic;
    opacity: 0.85;
}

.hero .subtitle {
    font-size: 1.15rem;
    color: var(--gray-light);
    max-width: 660px;
    margin: 0 auto 2.5rem;
    line-height: 1.9;
}

.hero .cta-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.hero .cta-btn:hover { background: var(--gold-light); }

/* ── SECTIONS ── */
section {
    padding: 5rem 2rem;
}

section:nth-child(even):not(.hero):not(.cta-section) {
    background: var(--bg);
}

.section-inner {
    max-width: 960px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.section-subtitle {
    color: var(--text);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

/* ── HOW IT WORKS ── */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.step .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.8;
}

/* ── CONDITIONS ── */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.condition-card {
    background: white;
    padding: 1.4rem 1.5rem;
    border-radius: 6px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--navy);
}

/* ── ABOUT ── */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.9;
}

.credential-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.credential-list li {
    padding: 0.6rem 1rem;
    background: white;
    border-radius: 5px;
    font-weight: 500;
    color: var(--navy);
    border: 1px solid var(--gray-light);
    font-size: 0.95rem;
}

/* ── PRICING ── */
.pricing-card {
    background: white;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    max-width: 700px;
    margin: 0 auto;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--bg);
}

.price-row:last-child { border-bottom: none; }

.price-row .service {
    font-weight: 500;
    color: var(--navy);
}

.price-row .desc {
    font-size: 0.95rem;
    color: var(--text);
    margin-top: 0.2rem;
}

.price-row .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-dark);
    white-space: nowrap;
}

/* ── TIER CARDS ── */
.pricing-tiers {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.tier-card {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
    border: 2px solid var(--bg);
    transition: border-color 0.2s;
    position: relative;
}

.tier-card:hover {
    border-color: var(--gold);
}

.tier-card-primary {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.tier-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.tier-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold-dark);
    margin-bottom: 0.25rem;
}

.tier-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.tier-desc {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tier-credit {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-dark);
    background: #fdf8e8;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    display: inline-block;
}

.tier-arrow {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
    padding: 0 0.75rem;
}

.credit-math {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text);
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    border: 1px dashed var(--gold);
}

.pricing-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg);
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .pricing-tiers {
        flex-direction: column;
        gap: 1rem;
    }
    .tier-arrow {
        justify-content: center;
        transform: rotate(90deg);
        padding: 0;
    }
    .tier-card { padding: 1.5rem 1.25rem; }
    .tier-price { font-size: 1.8rem; }
    .credit-math { font-size: 0.8rem; padding: 0.75rem 1rem; }
}

/* ── WHAT TO EXPECT ── */
.expect-flow {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.expect-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.expect-num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 0.15rem;
}

.expect-body h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.expect-body p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.8;
}

.records-checklist {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.records-checklist h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.records-checklist > p {
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.records-checklist ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

.records-checklist li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.records-checklist li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--gold-dark);
    font-weight: 700;
}

@media (max-width: 768px) {
    .records-checklist ul { grid-template-columns: 1fr; }
    .expect-step { flex-direction: column; text-align: center; align-items: center; }
}

/* ── CTA SECTION ── */
.cta-section {
    background: var(--navy);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
}

.cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.15rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-section .cta-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 0.85rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: background 0.2s;
}

.cta-section .cta-btn:hover { background: var(--gold-light); }

/* ── INTAKE FORM ── */
.intake-form {
    max-width: 620px;
    margin: 0 auto;
    text-align: left;
}

.form-row-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-field {
    margin-bottom: 1rem;
}

.form-field label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-light);
    margin-bottom: 0.35rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 5px;
    background: rgba(255,255,255,0.08);
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255,255,255,0.35);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.12);
}

.form-field select {
    appearance: auto;
}

.form-field select option {
    background: var(--navy);
    color: white;
}

.form-field textarea {
    resize: vertical;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .form-row-inline { grid-template-columns: 1fr; }
}

/* ── FOOTER ── */
footer {
    background: var(--navy-dark);
    color: var(--gray);
    padding: 2rem;
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.8;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .hero { padding: 8rem 1.5rem 4rem; }
    .steps { grid-template-columns: 1fr; }
    .conditions-grid { grid-template-columns: 1fr; }
    .credential-list { grid-template-columns: 1fr; }
    nav .nav-links { gap: 1rem; }
    nav .nav-links a { font-size: 0.8rem; }
    section { padding: 3rem 1.5rem; }
}
