/* how-it-works.css — extracted verbatim from pages/how-it-works.php */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
        --dark:#0A0A0A; --dark-2:#0D0D0D; --dark-3:#111111;
        --amber:#D97706; --amber-hover:#B45309;
        --muted:#666; --border:rgba(255,255,255,0.08);
        --max-w:1200px; --gutter:2.5rem;
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; background: var(--dark); color: #fff; line-height: 1.75; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
    h1,h2,h3,h4 { font-family: 'Sora', sans-serif; font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; }
    a { color: inherit; }
    .wrap { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
    .fade-up { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* Nav */
    #nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 1.4rem var(--gutter); background: rgba(10,10,10,0.65); backdrop-filter: blur(20px) saturate(180%); border-bottom: 1px solid var(--border); }
    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #F9FAFB; }
    .logo-wordmark { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.1rem; color: #fff; }
    .nav-links { display: flex; align-items: center; gap: .25rem; list-style: none; }
    .nav-links a { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.65); text-decoration: none; padding: 0.4rem 0.9rem; transition: color .2s; }
    .nav-links a:hover { color: #fff; }
    .nav-pill { display: inline-flex; align-items: center; padding: 0.5rem 1.25rem; border: none; border-radius: 100px; font-size: 0.82rem; font-weight: 600; color: #0A0A0A; cursor: pointer; background: #fff; transition: all .2s; }
    .nav-pill:hover { transform: translateY(-1px); background: #f0f0f0; }
    @media (max-width: 900px) { .nav-links { display: none; } }

    /* Hero */
    .hiw-hero {
        padding: 9rem var(--gutter) 5rem;
        text-align: center;
        background: radial-gradient(ellipse at 50% 50%, rgba(217,119,6,0.08) 0%, transparent 60%), var(--dark);
    }
    .hiw-eyebrow {
        display: inline-block;
        font-family: 'DM Sans', sans-serif;
        font-size: 0.72rem; font-weight: 600;
        letter-spacing: 0.18em; text-transform: uppercase;
        color: var(--amber);
        margin-bottom: 1.5rem;
    }
    .hiw-title {
        font-size: clamp(2.6rem, 6vw, 5rem);
        font-weight: 700;
        color: #fff;
        margin-bottom: 1.2rem;
        max-width: 920px;
        margin-left: auto; margin-right: auto;
    }
    .hiw-subtitle {
        font-size: clamp(1rem, 1.5vw, 1.15rem);
        color: #888;
        max-width: 620px;
        margin: 0 auto 2.5rem;
        line-height: 1.65;
    }
    .hiw-stat-strip {
        display: flex;
        justify-content: center;
        gap: 3rem;
        margin-top: 3rem;
        flex-wrap: wrap;
    }
    .hiw-stat {
        text-align: center;
    }
    .hiw-stat-num {
        font-family: 'Sora', sans-serif;
        font-size: clamp(2rem, 3.5vw, 3rem);
        font-weight: 800;
        color: var(--amber);
        line-height: 1;
        letter-spacing: -0.03em;
    }
    .hiw-stat-lbl {
        font-family: 'DM Sans', sans-serif;
        font-size: 0.75rem;
        color: #888;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-top: 0.5rem;
    }

    /* Steps */
    .hiw-steps {
        padding: 6rem var(--gutter);
        background: #0A0A0A;
    }
    .hiw-steps-inner {
        max-width: var(--max-w);
        margin: 0 auto;
    }
    .hiw-steps-header {
        text-align: center;
        margin-bottom: 5rem;
    }
    .hiw-steps-header h2 {
        font-size: clamp(2rem, 4vw, 3.2rem);
        margin-bottom: 1rem;
    }
    .hiw-steps-header p {
        color: #888;
        max-width: 580px;
        margin: 0 auto;
    }
    .hiw-step {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 3rem;
        align-items: start;
        padding: 3rem 0;
        border-top: 1px solid var(--border);
    }
    .hiw-step:first-child { border-top: none; padding-top: 0; }
    .hiw-step-num {
        font-family: 'Sora', sans-serif;
        font-size: clamp(3rem, 5vw, 4.5rem);
        font-weight: 800;
        color: var(--amber);
        line-height: 0.9;
        letter-spacing: -0.04em;
        min-width: 100px;
    }
    .hiw-step-body { flex: 1; }
    .hiw-step-when {
        font-family: 'DM Sans', sans-serif;
        font-size: 0.72rem;
        font-weight: 700;
        color: var(--amber);
        text-transform: uppercase;
        letter-spacing: 0.14em;
        margin-bottom: 0.6rem;
    }
    .hiw-step-title {
        font-size: clamp(1.5rem, 2.5vw, 2.2rem);
        margin-bottom: 1.2rem;
    }
    .hiw-step-desc {
        color: #888;
        font-size: 1rem;
        line-height: 1.75;
        margin-bottom: 1.5rem;
    }
    .hiw-step-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }
    .hiw-step-list li {
        font-size: 0.92rem;
        color: #aaa;
        padding-left: 1.4rem;
        position: relative;
        line-height: 1.6;
    }
    .hiw-step-list li::before {
        content: '→';
        position: absolute;
        left: 0;
        color: var(--amber);
        font-weight: 600;
    }
    @media (max-width: 700px) {
        .hiw-step { grid-template-columns: 1fr; gap: 0.8rem; }
        .hiw-step-num { font-size: 2.5rem; }
    }

    /* FAQ */
    .hiw-faq {
        padding: 6rem var(--gutter);
        background: var(--dark-2);
    }
    .hiw-faq-inner {
        max-width: 820px;
        margin: 0 auto;
    }
    .hiw-faq-header {
        text-align: center;
        margin-bottom: 4rem;
    }
    .hiw-faq-header h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 1rem;
    }
    .hiw-faq-item {
        border-bottom: 1px solid var(--border);
        padding: 1.8rem 0;
    }
    .hiw-faq-q {
        font-family: 'Sora', sans-serif;
        font-size: 1.1rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 0.7rem;
        letter-spacing: -0.015em;
    }
    .hiw-faq-a {
        font-size: 0.95rem;
        color: #999;
        line-height: 1.75;
    }

    /* CTA */
    .hiw-cta {
        padding: 7rem var(--gutter) 8rem;
        text-align: center;
        background: radial-gradient(ellipse at 50% 50%, rgba(217,119,6,0.08) 0%, transparent 60%), var(--dark);
    }
    .hiw-cta h2 {
        font-size: clamp(2rem, 4vw, 3.2rem);
        margin-bottom: 1.4rem;
        max-width: 900px;
        margin-left: auto; margin-right: auto;
    }
    .hiw-cta p {
        color: #888;
        max-width: 580px;
        margin: 0 auto 2.4rem;
    }
    .hiw-cta-btn {
        display: inline-flex; align-items: center; gap: 8px;
        padding: 16px 36px;
        background: var(--amber); color: #fff;
        border-radius: 100px;
        font-family: 'DM Sans', sans-serif;
        font-size: 0.95rem; font-weight: 600;
        cursor: pointer; border: none;
        transition: background .2s, transform .2s;
    }
    .hiw-cta-btn:hover { background: var(--amber-hover); transform: translateY(-2px); }

    /* Footer */
    .hiw-foot {
        padding: 2.5rem var(--gutter);
        text-align: center;
        border-top: 1px solid var(--border);
        color: #555;
        font-size: 0.8rem;
    }
