/* ============================================================
   OwnALawFirm.com — Core design system
   Clean, sleek, ultra-professional. Mobile-first.
   ============================================================ */

:root {
    /* Palette — deep ink navy + restrained warm gold accent */
    --ink: #0B2239; /* primary dark */
    --ink-2: #12324f; /* raised dark */
    --accent: #C2913A; /* refined gold, used sparingly */
    --accent-2: #A87A28; /* gold hover */
    --paper: #FBFAF8; /* warm off-white page */
    --surface: #FFFFFF; /* cards / raised surfaces */
    --line: #E7E3DC; /* hairline borders */
    --line-2: #D8D3CA;
    --text: #16202B; /* body text */
    --muted: #5B6470; /* secondary text */
    --muted-2: #8A93A0;
    --success: #1E7A54;
    /* Type */
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    /* Rhythm */
    --radius: 14px;
    --radius-sm: 10px;
    --shadow-sm: 0 1px 2px rgba(11,34,57,.06), 0 1px 3px rgba(11,34,57,.05);
    --shadow-md: 0 8px 24px rgba(11,34,57,.08), 0 2px 6px rgba(11,34,57,.05);
    --shadow-lg: 0 24px 60px rgba(11,34,57,.14);
    --container: 1160px;
    --ease: cubic-bezier(.2,.7,.2,1);
}

* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--paper);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Footer legal row: keep the Privacy · Terms · Do Not Sell links on one line
   instead of letting the long disclaimer squeeze them into a wrap. */
@media (min-width: 1024px) {
    .footer-legal .disclaimer {
        flex: 1 1 auto;
    }

    .footer-legal > :last-child {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--ink);
    text-decoration: none;
    transition: color .15s var(--ease);
}

    a:hover {
        color: var(--accent-2);
    }

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 .5em;
}

h1 {
    font-size: clamp(2.1rem, 5.5vw, 3.6rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
}

h3 {
    font-size: 1.2rem;
    letter-spacing: -0.01em;
}

p {
    margin: 0 0 1rem;
    color: var(--muted);
}

    p.lead {
        font-size: clamp(1.05rem, 2vw, 1.28rem);
        color: #3a4653;
        line-height: 1.6;
    }

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 20px;
}

.eyebrow {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 1rem;
}

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55em;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    padding: .95em 1.6em;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
    white-space: nowrap;
}

    .btn:hover {
        transform: translateY(-1px);
    }

    .btn:active {
        transform: translateY(0);
    }

.btn-primary {
    background: var(--ink);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

    .btn-primary:hover {
        background: var(--ink-2);
        color: #fff;
        box-shadow: var(--shadow-md);
    }

.btn-accent {
    background: var(--accent);
    color: #201502;
    box-shadow: var(--shadow-sm);
}

    .btn-accent:hover {
        background: var(--accent-2);
        color: #fff;
    }

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line-2);
}

    .btn-ghost:hover {
        border-color: var(--ink);
        color: var(--ink);
        background: #fff;
    }

.btn-lg {
    font-size: 1.06rem;
    padding: 1.05em 1.9em;
}

.btn-block {
    width: 100%;
}

/* ---------- Header / nav ---------- */
.topbar {
    background: var(--ink);
    color: #cdd8e4;
    font-size: .84rem;
    letter-spacing: .01em;
}

    .topbar .container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .6em;
        padding-block: 9px;
        text-align: center;
    }

    .topbar strong {
        color: #fff;
        font-weight: 600;
    }

    .topbar .dot {
        color: var(--accent);
    }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--ink);
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 1px 0 rgba(0,0,0,.25);
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

    .brand-logo img {
        height: 48px;
        width: auto;
        display: block;
    }

@media (max-width: 520px) {
    .brand-logo img {
        height: 44px;
    }
}

.nav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    height: 80px;
    gap: 1.25rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-weight: 800;
    font-size: 1.24rem;
    letter-spacing: -.02em;
    color: var(--ink);
}

    .brand .mark {
        width: 34px;
        height: 34px;
        border-radius: 9px;
        background: linear-gradient(145deg, var(--ink), var(--ink-2));
        color: var(--accent);
        display: grid;
        place-items: center;
        font-size: 1rem;
        box-shadow: var(--shadow-sm);
    }

    .brand em {
        font-style: normal;
        color: var(--accent-2);
    }

.nav-links {
    display: none;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0 0 0 auto;
    padding: 0;
    white-space: nowrap;
}

    .nav-links a {
        color: #cdd8e4;
        font-weight: 500;
        font-size: .95rem;
    }

        .nav-links a:hover {
            color: #fff;
        }

.nav-cta {
    display: none;
    align-items: center;
    gap: .6rem;
    flex: 0 0 auto;
}

    .nav-cta .btn {
        white-space: nowrap;
    }

.site-header .btn-ghost {
    color: #fff;
    border-color: rgba(255,255,255,.28);
    background: transparent;
}

    .site-header .btn-ghost:hover {
        color: #fff;
        border-color: #fff;
        background: rgba(255,255,255,.08);
    }

.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto; /* push to the far right on mobile (nav-links is hidden here) */
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.28);
    background: transparent;
    color: #fff;
    font-size: 1.15rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    border-top: 1px solid rgba(255,255,255,.08);
    background: var(--ink);
    padding: 12px 0 20px;
}

    .mobile-menu.open {
        display: block;
    }

    .mobile-menu ul {
        list-style: none;
        margin: 0 0 14px;
        padding: 0;
    }

    .mobile-menu a {
        display: block;
        padding: 12px 4px;
        font-weight: 600;
        color: #eaf0f6;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .mobile-menu .btn {
        margin-top: 6px;
    }

/* ---------- Sections ---------- */
section {
    padding-block: clamp(48px, 6.5vw, 80px);
}

.section-tight {
    padding-block: clamp(32px, 4.5vw, 56px);
}

.section-head {
    max-width: 720px;
    margin: 0 auto clamp(28px, 4vw, 44px);
    text-align: center;
}

    .section-head p {
        font-size: 1.1rem;
    }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding-block: 0;
    background: radial-gradient(1100px 520px at 82% 8%, rgba(194,145,58,.12), transparent 60%), linear-gradient(180deg, #fff 0%, var(--paper) 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
    padding-block: clamp(36px, 5vw, 68px);
}

.hero-copy {
    max-width: 620px;
}

.hero h1 {
    margin-bottom: .35em;
}

.hero .lead {
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-bottom: 1.6rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: var(--muted);
    font-size: .92rem;
}

    .hero-trust i {
        color: var(--accent-2);
    }

.hero-visual {
    display: none;
    position: relative;
}

.hero-seal {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hero-seal::before {
        content: "";
        position: absolute;
        width: 78%;
        aspect-ratio: 1;
        background: radial-gradient(circle, rgba(194,145,58,.26), transparent 62%);
        filter: blur(8px);
        z-index: 0;
    }

    .hero-seal img {
        position: relative;
        z-index: 1;
        width: min(360px, 80%);
        filter: drop-shadow(0 22px 55px rgba(11,34,57,.30));
    }

@media (min-width: 960px) {
    .hero-grid {
        grid-template-columns: 1.1fr .9fr;
        gap: 56px;
    }

    .hero-visual {
        display: block;
    }
}
/* Get Started / Contact: this hero visual holds the actual contact form (not a
   decorative image), so it must stay visible on mobile, where .hero-visual is
   hidden by default. It stacks full-width under the copy below 960px. */
.hero-visual.hero-visual--form {
    display: block;
}

/* Contact / Get Started: top-align the two columns so the headline and the form's
   top edge share a line, instead of the copy floating vertically centered. */
.hero-grid--top {
    align-items: start;
}
/* Single-column checkout (Roadmap hero + Playbook buy band): a focused, centered
   column — value copy on top, payment card below. */
.checkout {
    max-width: 640px;
    margin-inline: auto;
}

.checkout-intro {
    margin-bottom: 2.75rem;
}
/* more gap: text -> card */
.hero.hero--checkout {
    padding-block: clamp(40px, 5vw, 72px);
}
/* Roadmap: restore top space (fixes clipped eyebrow) */
#buy {
    padding-block: clamp(44px, 5vw, 64px);
}
/* Playbook: trim the top-heavy padding */

/* Firm Founder pricing ladder: cards already stretch to equal height, but each
   button floats right under its own copy. Make each card a column and push the
   CTA to the bottom so all three buttons share one baseline. */
#pricing .card {
    display: flex;
    flex-direction: column;
}

    #pricing .card .btn {
        margin-top: auto !important;
        align-self: flex-start;
    }

/* Stats band */
.stats-band {
    background: #fff;
    border-block: 1px solid var(--line);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 20px;
    text-align: center;
}

.stat .num {
    font-size: clamp(1.7rem, 3.2vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--ink);
    line-height: 1.05;
}

    .stat .num em {
        font-style: normal;
        color: var(--accent-2);
    }

.stat .lbl {
    color: var(--muted);
    font-size: .92rem;
    margin-top: .35rem;
    line-height: 1.4;
}

@media (min-width: 820px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }
}

/* ---------- Cards / grids ---------- */
.grid {
    display: grid;
    gap: 22px;
}

.grid-3 {
    grid-template-columns: 1fr;
}

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

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 28px;
    box-shadow: var(--shadow-sm);
    transition: transform .2s var(--ease), box-shadow .25s var(--ease), border-color .2s var(--ease);
}

    .card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
        border-color: var(--line-2);
    }

    .card .icon {
        width: 52px;
        height: 52px;
        border-radius: 13px;
        display: grid;
        place-items: center;
        margin-bottom: 18px;
        background: linear-gradient(145deg, #12324f, #0B2239);
        color: var(--accent);
        font-size: 1.28rem;
        box-shadow: var(--shadow-sm);
    }

    .card h3 {
        margin-bottom: .4rem;
    }

    .card p {
        margin-bottom: 0;
        font-size: .98rem;
    }

/* Steps */
.steps {
    counter-reset: step;
}

.step {
    position: relative;
    padding-left: 0;
}

    .step .num {
        display: inline-grid;
        place-items: center;
        width: 40px;
        height: 40px;
        border-radius: 999px;
        background: #fff;
        border: 1px solid var(--line-2);
        color: var(--ink);
        font-weight: 800;
        margin-bottom: 16px;
    }

    .step h3 {
        margin-bottom: .35rem;
    }

    .step p {
        font-size: .98rem;
        margin-bottom: 0;
    }

/* Vertical pills */
.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.pill {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: .7em 1.15em;
    font-weight: 600;
    font-size: .95rem;
    color: #2b3742;
    display: inline-flex;
    align-items: center;
    gap: .5em;
    box-shadow: var(--shadow-sm);
}

    .pill i {
        color: var(--accent-2);
    }

/* ---------- CTA band ---------- */
.cta-band {
    background: radial-gradient(900px 400px at 12% 0%, rgba(194,145,58,.16), transparent 60%), linear-gradient(160deg, var(--ink), var(--ink-2));
    color: #eaf0f6;
    border-radius: 0;
}

    .cta-band h2 {
        color: #fff;
    }

    .cta-band p {
        color: #b9c6d4;
    }

.cta-card {
    text-align: center;
    max-width: 720px;
    margin-inline: auto;
}

    .cta-card .hero-actions {
        justify-content: center;
    }

.cta-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

    .cta-badge img {
        height: 104px;
        width: auto;
        filter: drop-shadow(0 10px 24px rgba(0,0,0,.4));
    }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--ink);
    color: #9fb0c2;
    padding-block: 44px 30px;
    font-size: .93rem;
}

    .site-footer a {
        color: #c7d3df;
    }

        .site-footer a:hover {
            color: #fff;
        }

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    margin-bottom: 34px;
}

.footer-brand .brand {
    color: #fff;
    margin-bottom: .8rem;
}

.footer-brand p {
    color: #8fa1b4;
    max-width: 340px;
}

.footer-col h4 {
    color: #fff;
    font-size: .82rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col li {
    margin-bottom: .6rem;
}

.footer-legal {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #7e91a5;
    font-size: .84rem;
}

    .footer-legal .disclaimer {
        line-height: 1.6;
    }

/* ---------- Responsive ---------- */
@media (min-width: 720px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }

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

@media (min-width: 1024px) {
    .nav-links, .nav-cta {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .footer-legal {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* Accessibility */
:focus-visible {
    outline: 3px solid rgba(194,145,58,.55);
    outline-offset: 2px;
    border-radius: 4px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--ink);
    color: #fff;
    padding: 10px 16px;
    border-radius: 0 0 8px 0;
    z-index: 100;
}

    .skip-link:focus {
        left: 0;
        color: #fff;
    }

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================================
   Playbook — purchase & success (Stripe checkout)
   ============================================================ */
.buy-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: grid;
    gap: .6rem;
}

    .buy-list li {
        display: flex;
        align-items: flex-start;
        gap: .6rem;
        color: var(--text);
    }

        .buy-list li i {
            color: var(--success);
            margin-top: .2rem;
        }

.buy-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 28px;
}

.buy-price {
    display: flex;
    align-items: baseline;
    gap: .6rem;
    margin-bottom: 1.1rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid var(--line);
}

    .buy-price .amt {
        font-size: 2.6rem;
        font-weight: 800;
        color: var(--ink);
        letter-spacing: -.02em;
    }

    .buy-price .per {
        color: var(--muted);
        font-size: .95rem;
    }

.buy-card .field {
    margin-bottom: 1rem;
}

    .buy-card .field label {
        display: block;
        font-weight: 600;
        font-size: .9rem;
        color: var(--ink);
        margin-bottom: .35rem;
    }

        .buy-card .field label .opt {
            font-weight: 400;
            color: var(--muted);
        }

.buy-input {
    width: 100%;
    padding: .7rem .85rem;
    font: inherit;
    color: var(--text);
    background: #fff;
    border: 1px solid var(--line-2);
    border-radius: var(--radius-sm);
    transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}

    .buy-input:focus {
        outline: none;
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(194,145,58,.15);
    }

.buy-err {
    display: block;
    color: #B4232A;
    font-size: .85rem;
    margin-top: .3rem;
}

.buy-fine {
    color: var(--muted);
    font-size: .82rem;
    margin: .9rem 0 0;
    line-height: 1.5;
}

    .buy-fine i {
        color: var(--success);
    }

.buy-note {
    border-radius: var(--radius-sm);
    padding: .75rem .9rem;
    margin-bottom: 1rem;
    font-size: .92rem;
    line-height: 1.45;
}

.buy-note-info {
    background: #F4F7FB;
    border: 1px solid #D8E2EE;
    color: #274156;
}

.buy-note-error {
    background: #FCF1F1;
    border: 1px solid #F0D2D2;
    color: #8F2A2A;
}

/* Embedded Stripe Payment Element */
.pay-box .field {
    margin-bottom: 1rem;
}

.pay-box #link-authentication-element,
.pay-box #payment-element {
    min-height: 2.6rem;
}

.pay-box #payBtn {
    margin-top: .35rem;
}

    .pay-box #payBtn:disabled {
        opacity: .6;
        cursor: not-allowed;
    }

.pay-msg {
    border-radius: var(--radius-sm);
    padding: .7rem .85rem;
    margin: .4rem 0 .9rem;
    font-size: .9rem;
    line-height: 1.45;
}

    .pay-msg.error {
        background: #FCF1F1;
        border: 1px solid #F0D2D2;
        color: #8F2A2A;
    }

    .pay-msg.info {
        background: #F4F7FB;
        border: 1px solid #D8E2EE;
        color: #274156;
    }

.pay-spin {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -.15em;
    border: 2px solid rgba(255,255,255,.55);
    border-top-color: #fff;
    border-radius: 50%;
    animation: oalfspin .7s linear infinite;
    margin-right: .4rem;
}

.stripe-badge {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-top: .95rem;
    padding-top: .85rem;
    border-top: 1px solid var(--line);
}

    .stripe-badge .stripe-wordmark {
        flex: 0 0 auto;
    }

    .stripe-badge span {
        color: var(--muted);
        font-size: .8rem;
        line-height: 1.45;
    }

        .stripe-badge span i {
            color: var(--success);
            margin-right: .15rem;
        }

    .stripe-badge strong {
        color: var(--ink);
        font-weight: 700;
    }

/* Success / status */
.success-card {
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 44px 32px;
}

.success-icon {
    font-size: 3.2rem;
    color: var(--success);
    margin-bottom: .6rem;
    line-height: 1;
}

    .success-icon.pending {
        color: var(--accent);
    }

    .success-icon.error {
        color: #B4232A;
    }

.success-card .eyebrow {
    justify-content: center;
}

.success-fine {
    color: var(--muted);
    font-size: .88rem;
    margin: 1rem 0 0;
}

/* Get Started — thank-you panel */
.lead-thanks {
    text-align: center;
    padding: 12px 4px;
}

.lead-thanks-icon {
    font-size: 2.8rem;
    color: var(--success);
    line-height: 1;
    margin-bottom: .5rem;
}

.lead-thanks h3 {
    font-family: "Poppins",sans-serif;
    color: var(--ink);
    margin: 0 0 .5rem;
}

.lead-thanks p {
    color: var(--muted);
    margin: 0 0 1.1rem;
}

/* Processing overlay + spinner (slow submits / redirects) */
.oalf-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(11,34,57,.55);
    backdrop-filter: blur(2px);
    display: none;
    align-items: center;
    justify-content: center;
}

    .oalf-overlay.show {
        display: flex;
    }

.oalf-overlay-box {
    background: #fff;
    border-radius: 14px;
    padding: 26px 30px;
    box-shadow: 0 24px 60px rgba(11,34,57,.28);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: 80%;
}

.oalf-spinner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 4px solid #E7E3DC;
    border-top-color: #C2913A;
    animation: oalfspin .8s linear infinite;
}

.oalf-overlay-msg {
    font-family: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
    font-weight: 600;
    color: #0B2239;
    font-size: .98rem;
    text-align: center;
}

@keyframes oalfspin {
    to {
        transform: rotate(360deg);
    }
}

/* Article / CMS content pages */
.container-narrow {
    max-width: 760px;
}

.article {
    padding-block: 0;
}

.article-head {
    margin: 0 0 1.6rem;
}

    .article-head .eyebrow {
        display: block;
    }

    .article-head h1 {
        font-size: clamp(1.9rem, 4vw, 2.7rem);
        line-height: 1.12;
        margin: .4rem 0 0;
        letter-spacing: -.01em;
    }

.rule-gold {
    width: 46px;
    height: 3px;
    background: var(--accent);
    margin: 1rem 0 0;
    border-radius: 2px;
}

.article-body {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--text);
}

    .article-body h2 {
        font-family: "Poppins",sans-serif;
        font-size: 1.5rem;
        color: var(--ink);
        margin: 2rem 0 .6rem;
    }

    .article-body h3 {
        font-family: "Poppins",sans-serif;
        font-size: 1.18rem;
        color: var(--ink-2);
        margin: 1.4rem 0 .4rem;
    }

    .article-body p {
        margin: 0 0 1.05rem;
    }

    .article-body ul, .article-body ol {
        margin: 0 0 1.1rem;
        padding-left: 1.3rem;
    }

    .article-body li {
        margin: 0 0 .5rem;
    }

    .article-body a {
        color: var(--accent-2);
        text-decoration: underline;
    }

    .article-body blockquote {
        margin: 1.2rem 0;
        padding: .6rem 1.1rem;
        border-left: 3px solid var(--accent);
        background: var(--paper);
        color: var(--ink-2);
    }

.faq {
    margin: 2.4rem 0 .5rem;
    border-top: 1px solid var(--line);
    padding-top: 1.6rem;
}

    .faq > h2 {
        font-family: "Poppins",sans-serif;
        font-size: 1.5rem;
        color: var(--ink);
        margin: 0 0 1rem;
    }

.faq-item {
    margin: 0 0 1.2rem;
}

    .faq-item h3 {
        font-family: "Poppins",sans-serif;
        font-size: 1.05rem;
        color: var(--ink);
        margin: 0 0 .3rem;
    }

    .faq-item p {
        margin: 0;
        color: var(--text);
    }

/* Get Started — audience split (business owners / attorneys) */
.aud-split {
    display: grid;
    gap: 14px;
    margin: 1.4rem 0 0;
}

@media (min-width: 620px) {
    .aud-split {
        grid-template-columns: 1fr 1fr;
    }
}

.aud {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 16px 16px 14px;
}

.aud-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    background: var(--ink);
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: .6rem;
}

.aud h3 {
    font-family: "Poppins",sans-serif;
    font-size: 1rem;
    color: var(--ink);
    margin: 0 0 .5rem;
}

.aud ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aud li {
    position: relative;
    padding-left: 1.1rem;
    margin: 0 0 .4rem;
    font-size: .9rem;
    color: var(--text);
    line-height: 1.4;
}

    .aud li::before {
        content: "\2713";
        position: absolute;
        left: 0;
        color: var(--success);
        font-weight: 700;
    }
