:root {
    --ink: #000000;
    --muted: #4b5563;
    --line: #e5e7eb;
    --brand: #FFD600;
    --brand-dark: #e6c200;
    --brand-ink: #000000;
    --brand-soft: #fffbeb;
    --bg-soft: #fafafa;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 120px; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
    line-height: 1.55;
    background: #fff;
    touch-action: manipulation;
    -webkit-text-size-adjust: 100%;
}
a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
a:hover { text-decoration: underline; opacity: .7; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.container.narrow { max-width: 760px; }
.lead {
    font-size: 1.15rem;
    line-height: 1.55;
    color: var(--muted);
    margin: 0 0 18px;
}

/* Header */
.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
}
.site-header a { text-decoration: none; }

/* Top utility bar */
.utility-bar {
    display: none; /* hidden for now */
    background: var(--ink);
    color: #fff;
    font-size: .82rem;
}
.utility-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 34px;
    padding-top: 6px;
    padding-bottom: 6px;
    gap: 16px;
}
.utility-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.85);
}
.utility-trust .stars {
    color: #04e99f;
    font-size: .9rem;
    letter-spacing: 1px;
}
.utility-right {
    display: inline-flex;
    align-items: center;
    gap: 18px;
}
.utility-link {
    color: rgba(255,255,255,.9) !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}
.utility-link:hover { color: var(--brand) !important; opacity: 1; }
.utility-link svg { opacity: .8; }

/* Main bar */
.main-bar .container {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 14px;
    padding-bottom: 14px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    line-height: 1.1;
    color: var(--ink) !important;
    flex-shrink: 0;
}
.brand-mark {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    line-height: 1;
}
.brand-logo {
    display: block;
    height: 40px;
    width: auto;
}
.brand-tagline {
    font-size: 9px;
    font-weight: 500;
    color: #9a9a9a;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding-left: 2px;
}
.brand-tagline strong {
    font-weight: 700;
    letter-spacing: 0.06em;
}
@media (max-width: 700px) {
    .brand-logo { height: 32px; }
    .brand-tagline { font-size: 8px; }
}
.primary-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}
.primary-nav a {
    color: var(--ink) !important;
    font-weight: 500;
    font-size: .95rem;
    padding: 6px 2px;
    border-bottom: 2px solid transparent;
}
.primary-nav a:hover {
    color: var(--ink) !important;
    border-bottom-color: var(--brand);
    opacity: 1;
}
.header-cta {
    display: inline-flex;
    align-items: center;
}
.header-cta .btn { padding: 10px 18px; font-size: .95rem; }

/* Hamburger (mobile only) */
.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    margin-left: auto;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    margin: 5px 0;
    transition: transform .15s, opacity .15s;
}
.site-header.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
    .utility-bar .container { justify-content: center; min-height: 30px; }
    .utility-left { display: none; }
    .utility-right { gap: 14px; }
    .utility-link[href^="mailto:"] { display: none; }
    .primary-nav,
    .header-cta { display: none; }
    .nav-toggle { display: block; }
    .site-header.is-open .primary-nav {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: #fff;
        border-top: 1px solid var(--line);
        border-bottom: 3px solid var(--brand);
        padding: 8px 0;
        box-shadow: 0 10px 18px rgba(0,0,0,.06);
    }
    .site-header.is-open .primary-nav a {
        padding: 14px 20px;
        border-bottom: 1px solid var(--line);
    }
    .site-header.is-open .primary-nav a:last-child { border-bottom: 0; }
}
@media (max-width: 480px) {
    .utility-link { font-size: .82rem; }
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #fffdf0 0%, #ffffff 100%);
    padding: 48px 0 40px;
    border-bottom: 1px solid var(--line);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
.hero h1 {
    margin: 0 0 14px;
    font-size: 2.6rem;
    line-height: 1.1;
    letter-spacing: -.02em;
}
.hero .lede {
    font-size: 1.2rem;
    color: var(--muted);
    margin: 0 0 32px;
    max-width: 640px;
}
.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.trust-strip.hero-trust { margin-top: 20px; }
.hero-visual {
    display: none; /* hidden for now */
    justify-content: center;
    align-items: center;
}
.report {
    width: 100%;
    max-width: 360px;
    height: auto;
    transform: rotate(-3deg);
    transition: transform .3s ease;
}
.report:hover { transform: rotate(0deg); }
@media (max-width: 800px) {
    .hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-visual { max-width: 280px; margin: 0 auto; }
    .report { max-width: 280px; }
}

/* Trust strip */
.trust-strip {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 22px 28px;
    font-size: .92rem;
    color: var(--muted);
}
.trust-strip li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.trust-strip li::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5L20 7'/></svg>") center / contain no-repeat;
}
.trust-strip li .stars {
    color: #04e99f;
    letter-spacing: 1px;
    font-size: 1rem;
}
.trust-strip li:has(.stars)::before { display: none; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s, border-color .15s, transform .1s;
    font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn-large { padding: 14px 28px; font-size: 1.05rem; }
.btn-primary {
    background: var(--brand);
    color: var(--brand-ink);
}
.btn-primary:hover { background: var(--brand-dark); text-decoration: none; }
.btn-outline {
    background: #fff;
    color: var(--ink);
    border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; text-decoration: none; }

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.feature h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}
.feature p {
    margin: 0;
    color: var(--muted);
}

/* Homepage sections — shared scaffolding */
.eyebrow {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--brand-soft);
    border: 1px solid var(--brand);
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.section-head {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}
.section-head h2 {
    margin: 0 0 12px;
    font-size: 1.9rem;
    letter-spacing: -.015em;
    line-height: 1.2;
}
.section-head .lead { margin: 0 auto; }
.section-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 44px;
}

/* How it works */
.section-how {
    padding: 72px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.how-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    counter-reset: how;
}
.how-steps li {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px 24px;
    position: relative;
}
.how-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--brand-soft);
    color: var(--ink);
    border: 1px solid var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.how-step-num {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}
.how-steps h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}
.how-steps p {
    margin: 0;
    color: var(--muted);
}

/* Survey types */
.section-types { padding: 80px 0; }
.type-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.type-card-info {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    background: #fff;
    transition: border-color .15s, transform .15s;
}
.type-card-info.is-popular {
    border-color: var(--ink);
    box-shadow: 0 6px 20px rgba(0,0,0,.06);
}
.popular-tag {
    position: absolute;
    top: -12px;
    left: 24px;
    background: #04e99f;
    color: var(--ink);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
}
.type-card-info:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
}
.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--brand-soft);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 1px solid var(--line);
}
.type-card-info h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}
.type-card-info > p {
    margin: 0 0 16px;
    color: var(--muted);
}
.type-card-info .ticks {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: .95rem;
}
.type-card-info .ticks li {
    position: relative;
    padding-left: 26px;
    color: var(--ink);
}
.type-card-info .ticks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5L20 7'/></svg>") center / contain no-repeat;
}
.type-card-info .btn { margin-top: auto; align-self: center; }

/* Credentials / trust */
.section-trust {
    padding: 80px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}
.cred {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px;
    background: #fff;
}
.cred-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--brand-soft);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border: 1px solid var(--line);
}
.cred h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    color: var(--ink);
}
.cred p {
    margin: 0;
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.55;
}

/* Use cases */
.section-uses { padding: 80px 0; }
.use-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}
.use-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px;
}
.use-card h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
}
.use-card p {
    margin: 0;
    color: var(--muted);
}

/* FAQ */
.section-faq {
    padding: 80px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq details {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 4px 18px;
    transition: border-color .15s;
}
.faq details[open] { border-color: var(--ink); }
.faq summary {
    cursor: pointer;
    font-weight: 600;
    padding: 14px 0;
    list-style: none;
    position: relative;
    padding-right: 32px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '+';
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--muted);
    transition: transform .15s;
}
.faq details[open] summary::after {
    content: '\2013';
    transform: translateY(-50%);
}
.faq details p {
    margin: 0 0 16px;
    color: var(--muted);
}

/* Final CTA */
.section-final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #fffdf0 0%, #ffffff 100%);
    border-top: 1px solid var(--line);
    text-align: center;
}
.section-final-cta h2 {
    margin: 0 0 12px;
    font-size: 2rem;
    letter-spacing: -.015em;
}
.section-final-cta .lead { margin: 0 auto 28px; max-width: 560px; }
.section-final-cta .hero-cta { justify-content: center; margin-bottom: 24px; }
.section-final-cta .trust-strip { justify-content: center; }

@media (max-width: 640px) {
    .section-head h2 { font-size: 1.5rem; }
    .section-final-cta h2 { font-size: 1.6rem; }
    .section-how,
    .section-types,
    .section-trust,
    .section-uses,
    .section-faq,
    .section-final-cta { padding: 56px 0; }
}

/* Inner pages */
main h1 {
    margin: 28px 0 8px;
}
.muted { color: var(--muted); }
.placeholder-card {
    margin: 24px 0 60px;
    padding: 28px;
    border: 1px dashed var(--line);
    border-radius: 12px;
    background: var(--bg-soft);
    color: var(--muted);
}
.placeholder-card strong { color: var(--ink); }

/* Alerts */
.alert.error {
    background: #fdecea;
    color: #b3261e;
    border: 1px solid #f5c2c0;
    padding: 12px 14px;
    border-radius: 8px;
    margin: 18px 0;
}
.alert.error div + div { margin-top: 4px; }

/* Quote wizard */
.quote-page { padding-top: 48px; padding-bottom: 80px; }
.quote-page h1 { margin: 0 0 8px; font-size: 2.1rem; letter-spacing: -.01em; }
.quote-intro { margin-bottom: 30px; }
.quote-intro .trust-strip { margin-top: 18px; }
@media (max-width: 600px) {
    .quote-intro { text-align: center; }
    .quote-intro .trust-strip { justify-content: center; }
}

.wizard {
    margin-top: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 8px 0 0;
    box-shadow: 0 2px 10px rgba(15,23,42,.05);
}

/* Progress */
.wizard-progress {
    padding: 22px 32px 6px;
}
.wizard-bar {
    background: #e2e8f0;
    height: 6px;
    border-radius: 999px;
    overflow: hidden;
}
.wizard-bar span {
    display: block;
    height: 100%;
    background: var(--ink);
    width: 33%;
    border-radius: 999px;
    transition: width .25s ease;
}
.wizard-steps {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: flex;
    counter-reset: step;
    font-size: .85rem;
    color: var(--muted);
}
.wizard-steps li {
    flex: 1;
    text-align: center;
    padding: 0 6px;
    counter-increment: step;
    line-height: 1.3;
}
.wizard-steps li::before {
    content: counter(step);
    display: block;
    margin: 0 auto 6px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    border-radius: 50%;
    background: #e2e8f0;
    color: var(--muted);
    text-align: center;
    font-size: .78rem;
    font-weight: 600;
}
.wizard-steps li.is-active { color: var(--ink); font-weight: 600; }
.wizard-steps li.is-active::before { background: var(--ink); color: var(--brand); }

/* Steps */
.wizard-step {
    display: none;
    padding: 30px 32px 16px;
}
.wizard-step.is-active { display: block; }
.wizard-step h2 {
    margin: 0 0 6px;
    font-size: 1.4rem;
    letter-spacing: -.01em;
}
.wizard-step > .muted { margin: 0 0 22px; font-size: 1rem; }

/* When JS is disabled, show all steps */
.no-js .wizard-step { display: block; border-top: 1px solid var(--line); }

/* Type grid */
.type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 8px 0 8px;
}
.type-card {
    position: relative;
    border: 2px solid var(--line);
    border-radius: 14px;
    padding: 30px 14px 22px;
    text-align: center;
    cursor: pointer;
    transition: border-color .15s, background .15s, transform .15s, box-shadow .15s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    background: #fff;
}
.type-card input { position: absolute; opacity: 0; pointer-events: none; }
.type-card .type-icon { line-height: 0; }
.type-card .type-icon img,
.type-card .type-icon svg { display: block; width: 96px; height: 96px; }
.type-card .type-label {
    font-weight: 600;
    font-size: 1.05rem;
}
.type-card:hover {
    border-color: var(--ink);
    background: var(--bg-soft);
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
}
.type-card:has(input:checked) {
    border-color: var(--ink);
    background: var(--brand-soft);
}
.type-card:has(input:checked) .type-icon { color: var(--ink); }
.type-card.is-disabled {
    opacity: .45;
    cursor: not-allowed;
    pointer-events: none;
    background: var(--bg-soft);
    position: relative;
}
.type-card.is-disabled:hover { border-color: var(--line); background: var(--bg-soft); box-shadow: none; }
.type-grid.shake { animation: shake .35s; }
@keyframes shake {
    0%,100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}
@media (max-width: 600px) {
    .type-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .type-card {
        padding: 14px 6px 12px;
        gap: 8px;
        border-radius: 12px;
    }
    .type-card .type-icon img,
    .type-card .type-icon svg { width: 56px; height: 56px; }
    .type-card .type-label { font-size: .85rem; }
}

/* Quick-pick number buttons */
.pick-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin: 8px 0 8px;
}
.pick-grid-wide {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
}
.pick-grid-wide .pick-btn {
    padding: 14px 10px;
    font-size: 1rem;
    font-weight: 600;
}
.pick-extra {
    grid-template-columns: repeat(5, 1fr);
    max-height: 0;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .25s ease, margin .25s ease, opacity .2s ease;
}
.pick-extra.is-open {
    max-height: 160px;
    margin: 10px 0 0;
    opacity: 1;
}
.pick-btn {
    border: 2px solid var(--line);
    background: #fff;
    border-radius: 12px;
    padding: 22px 12px;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: inherit;
    color: var(--ink);
    cursor: pointer;
    transition: border-color .15s, background .15s, transform .12s, box-shadow .15s;
}
.pick-btn:hover {
    border-color: var(--ink);
    background: var(--bg-soft);
}
.pick-btn.is-selected {
    background: var(--brand);
    color: var(--brand-ink);
    border-color: var(--ink);
}

/* Combined rooms step */
.room-pick {
    margin: 18px 0;
}
.room-pick + .room-pick {
    border-top: 1px solid var(--line);
    padding-top: 18px;
}
.room-pick-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}
.room-pick-icon {
    width: 44px;
    height: 44px;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.room-pick-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.room-pick-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.room-pick-label {
    font-weight: 600;
    font-size: 1.05rem;
}
.room-pick-sub {
    font-size: .85rem;
}
.room-pick .pick-btn {
    padding: 14px 10px;
    font-size: 1.15rem;
    border-radius: 10px;
}
@media (max-width: 600px) {
    .room-pick .pick-grid { gap: 6px; }
    .room-pick .pick-btn {
        padding: 10px 4px;
        font-size: .95rem;
    }
}

/* Steppers */
.stepper-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 18px 0 8px;
}
.stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}
.stepper label {
    font-weight: 500;
    flex: 1;
}
.stepper-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}
.step-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.step-btn:hover { background: var(--bg-soft); }
.stepper-controls input[type=number] {
    width: 56px;
    text-align: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 7px 4px;
    font-size: 1rem;
    -moz-appearance: textfield;
}
.stepper-controls input[type=number]::-webkit-outer-spin-button,
.stepper-controls input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Form fields */
.wizard .field,
.contact-form .field { margin: 18px 0 8px; }
.wizard .field label,
.contact-form .field label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
}
.wizard .field input[type=text],
.wizard .field input[type=email],
.wizard .field input[type=tel],
.wizard .field input[type=number],
.contact-form .field input[type=text],
.contact-form .field input[type=email],
.contact-form .field input[type=tel],
.contact-form .field input[type=number],
.contact-form .field textarea {
    display: block;
    box-sizing: border-box;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 16px;
    font-family: inherit;
    line-height: 1.4;
    background: #fff;
    color: var(--ink);
}
.wizard .field input[type=number] {
    -moz-appearance: textfield;
}
.wizard .field input[type=number]::-webkit-outer-spin-button,
.wizard .field input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.input-suffix {
    position: relative;
}
.input-suffix input {
    padding-right: 60px !important;
}
.input-suffix-label {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 14px;
    pointer-events: none;
}
.contact-form .field textarea { resize: vertical; min-height: 140px; }
.wizard .field input[name=postcode] {
    text-transform: uppercase;
    letter-spacing: .04em;
}
.field input:focus, .field textarea:focus {
    outline: none;
    border-color: var(--ink);
    box-shadow: 0 0 0 3px rgba(255, 214, 0, .35);
}
.wizard .field-row,
.contact-form .field-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 14px;
}
@media (max-width: 600px) {
    .contact-form .field-row { grid-template-columns: 1fr; }
}

/* Contact page */
.contact-page { padding: 48px 0 80px; }
.contact-page h1 { margin: 0 0 8px; font-size: 2rem; letter-spacing: -.015em; }
.contact-form { margin-top: 18px; }
.contact-submit { margin-top: 22px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.contact-submit .footnote { margin: 0; font-size: .85rem; }
.contact-success { padding: 24px 0; text-align: center; }
.contact-success h1 { font-size: 2rem; margin-bottom: 8px; }
.contact-success .hero-cta { justify-content: center; margin-top: 26px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
/* Google Places autocomplete dropdown */
.pac-container {
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(15,23,42,.08);
    margin-top: 2px;
    font-family: inherit;
}
.pac-item { padding: 8px 12px; cursor: pointer; }
.pac-item:hover, .pac-item-selected { background: var(--brand-soft); }
.wizard .field-row .field { margin-top: 18px; }
@media (max-width: 600px) {
    .wizard .field-row { grid-template-columns: 1fr; gap: 0; }
}

/* Postcode lookup */
.wizard .pc-lookup-row { grid-template-columns: 1fr auto; align-items: end; }
.pc-lookup-action .btn { padding: 11px 18px; }
.pc-lookup-results select {
    display: block;
    box-sizing: border-box;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 16px;
    font-family: inherit;
    background: #fff;
    color: var(--ink);
}
.pc-lookup-msg { margin: 6px 0 0; }
@media (max-width: 600px) {
    .wizard .pc-lookup-row { grid-template-columns: 1fr; }
    .pc-lookup-action label { display: none; }
    .pc-lookup-action .btn { width: 100%; }
}

/* Wizard nav */
.wizard-nav {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.btn-ghost {
    background: transparent;
    color: var(--muted);
    border: 0;
    padding: 10px 14px;
    font-size: 1rem;
    cursor: pointer;
}
.btn-ghost:hover { color: var(--ink); }

/* Quote result */
.quote-result {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 32px;
    text-align: center;
    margin-top: 24px;
    box-shadow: 0 2px 6px rgba(15,23,42,.04);
}
.quote-restart {
    position: absolute;
    top: 16px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.quote-restart:hover {
    color: var(--ink);
    border-bottom-color: var(--ink);
    opacity: 1;
}
.quote-result h1 { margin: 4px 0 8px; }
.quote-result .small { font-size: .85rem; }
.quote-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--ink);
    margin: 14px 0 6px;
    letter-spacing: -.02em;
}
.quote-price::before {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: var(--brand);
    border-radius: 2px;
    margin: 0 auto 16px;
}
.quote-price-range {
    font-size: 2.4rem;
    letter-spacing: -.01em;
    white-space: nowrap;
}
.quote-price-range .quote-price-sep {
    color: var(--muted);
    font-weight: 500;
    margin: 0 6px;
}
.quote-price-note {
    margin: -2px 0 18px;
    font-size: .95rem;
    max-width: 36ch;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 480px) {
    .quote-price-range { font-size: 2rem; }
}
.quote-breakdown {
    list-style: none;
    padding: 0;
    margin: 26px auto 28px;
    max-width: 380px;
    text-align: left;
    border-top: 1px solid var(--line);
}
.quote-breakdown li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: .95rem;
}
.quote-breakdown li.total {
    font-weight: 700;
    font-size: 1.05rem;
    border-bottom: 0;
    padding-top: 14px;
}
.quote-included {
    margin: 24px auto 8px;
    max-width: 480px;
    text-align: left;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px 22px;
}
.quote-included h2 {
    font-size: 1rem;
    margin: 0 0 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 600;
    text-align: center;
}
.included-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.included-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .95rem;
    color: var(--ink);
}
.included-icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--ink);
    border: 1px solid var(--brand);
}
.quote-slots {
    margin: 28px auto 22px;
    max-width: 480px;
    text-align: left;
}
.quote-slots h2 {
    font-size: 1rem;
    margin: 0 0 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 600;
    text-align: center;
}
.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
}
.slot-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    transition: border-color .15s, background .15s, transform .15s, box-shadow .15s;
}
.slot-card:hover {
    border-color: var(--ink);
    background: var(--brand-soft);
    text-decoration: none;
    transform: translateY(-1px);
}
.slot-card.is-selected {
    border-color: var(--ink);
    background: var(--brand);
    color: var(--ink);
    box-shadow: 0 0 0 3px rgba(255, 214, 0, .35);
}
.slot-card.is-selected .slot-date,
.slot-card.is-selected .slot-time { color: var(--ink); }
.see-all-times {
    display: block;
    margin-top: 12px;
    padding: 14px 16px;
    width: 100%;
    text-align: center;
    border: 1px dashed var(--line);
    border-radius: 10px;
    background: var(--bg-soft);
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
    transition: background .15s, border-color .15s;
}
.see-all-times:hover {
    background: var(--brand-soft);
    border-color: var(--ink);
    border-style: solid;
    text-decoration: none;
}
.slot-date {
    font-size: .85rem;
    color: var(--muted);
    margin-bottom: 2px;
}
.slot-time {
    font-size: 1.1rem;
    font-weight: 600;
}
@media (max-width: 600px) {
    .slot-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    .slot-card { padding: 10px 4px; }
    .slot-date { font-size: .75rem; }
    .slot-time { font-size: .95rem; }
}

.quote-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.quote-book-cta,
.quote-advisor-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 12px 6px 18px;
    vertical-align: middle;
}
.quote-book-cta:hover { transform: none; }
.cta-or {
    display: inline-block;
    color: var(--muted);
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin: 0 6px;
    vertical-align: middle;
}
@media (max-width: 600px) {
    .cta-or { display: block; margin: 6px 0; text-align: center; }
}
@media (max-width: 600px) {
    .quote-actions { flex-direction: column; align-items: stretch; }
    .quote-actions .btn,
    .quote-book-cta,
    .quote-advisor-cta {
        display: flex;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Booking summary banner */
.booking-page { padding-top: 48px; padding-bottom: 80px; }
.booking-page h1 { margin: 0 0 8px; font-size: 2.1rem; letter-spacing: -.01em; }
.booking-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    background: var(--ink);
    color: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    margin: 0 0 18px;
    flex-wrap: wrap;
}
.booking-summary .muted { color: #cbd5e1; }
.booking-summary .small { font-size: .85rem; }
.booking-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
}
.booking-live {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 22px;
    padding: 8px 14px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 500;
    color: #065f46;
}
.booking-live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34,197,94,.6);
    animation: booking-live-pulse 1.6s ease-out infinite;
    flex: 0 0 9px;
}
@media (max-width: 600px) {
    .booking-page h1 {
        text-align: center;
        margin: 6px 0 4px;
    }
    .booking-live {
        display: flex;
        width: 100%;
        box-sizing: border-box;
        border-radius: 10px;
        justify-content: center;
        margin: 8px 0 18px;
    }
    .booking-page .wizard { margin-top: 6px; }
}
@keyframes booking-live-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.55); }
    70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Invalid field highlight */
.wizard input.invalid {
    border-color: #b3261e;
    box-shadow: 0 0 0 3px rgba(179,38,30,.12);
}

/* Calendar */
.calendar {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    background: #fff;
    margin: 14px 0;
}
.cal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.cal-title {
    font-weight: 600;
    font-size: 1.05rem;
}
.cal-nav {
    border: 1px solid var(--line);
    background: #fff;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.cal-nav:hover:not(:disabled) { background: var(--bg-soft); }
.cal-nav:disabled { opacity: .35; cursor: not-allowed; }

.cal-weekdays, .cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.cal-weekdays {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-align: center;
}
.cal-day {
    aspect-ratio: 1 / 1;
    border: 1px solid transparent;
    background: transparent;
    border-radius: 8px;
    font-size: .95rem;
    font-family: inherit;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background .12s, border-color .12s;
    position: relative;
}
.cal-day.empty { visibility: hidden; cursor: default; }
.cal-day.past, .cal-day.future { color: #cbd5e1; cursor: not-allowed; }
.cal-day:not(.has-slots):not(.empty):not(.past):not(.future) {
    color: #94a3b8;
    cursor: not-allowed;
}
.cal-day.has-slots {
    background: var(--bg-soft);
    border-color: var(--line);
    font-weight: 500;
}
.cal-day.has-slots::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 4px;
    height: 4px;
    margin-left: -2px;
    border-radius: 50%;
    background: var(--brand);
}
.cal-day.has-slots:hover { background: var(--brand-soft); border-color: var(--ink); }
.cal-day.is-selected {
    background: var(--ink);
    color: var(--brand);
    border-color: var(--ink);
}
.cal-day.is-selected::after { background: var(--brand); }

.cal-slots { margin: 14px 0 4px; min-height: 24px; }
.cal-slots .small { margin: 0 0 8px; }
.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
    gap: 8px;
}
.time-btn {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 8px;
    padding: 10px 6px;
    font-size: .95rem;
    font-family: inherit;
    cursor: pointer;
    color: var(--ink);
    transition: background .12s, border-color .12s;
}
.time-btn:hover { border-color: var(--ink); background: var(--brand-soft); }
.time-btn.is-selected {
    background: var(--brand);
    color: var(--ink);
    border-color: var(--ink);
    font-weight: 600;
}

.cal-chosen {
    margin: 14px 0 4px;
    padding: 12px 16px;
    border: 1px solid var(--ink);
    background: var(--brand-soft);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cal-chosen strong { color: var(--ink); }
.btn-link {
    background: none;
    border: 0;
    color: var(--ink);
    font: inherit;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    text-decoration: underline;
}
.btn-link:hover { opacity: .7; }

/* Reassurance line on result/success states */
.reassure {
    margin-top: 14px;
    font-size: .92rem;
}
.reassure-large {
    color: var(--ink);
    font-size: 1.05rem;
    margin: 4px 0 18px;
}
.success-badge {
    margin: 0 auto 12px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Review step — booking summary card */
.review-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    margin: 14px 0 24px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,.03);
}
.review-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 20px;
    background: var(--ink);
    color: #fff;
}
.review-card-eyebrow {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #cbd5e1;
}
.review-price-tag {
    background: var(--brand);
    color: var(--ink);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 6px 12px;
    border-radius: 999px;
    line-height: 1;
}
.review-grid {
    margin: 0;
    padding: 4px 20px;
}
.review-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 18px;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.review-row:last-child { border-bottom: 0; }
.review-row dt {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 0;
}
.review-row dd {
    margin: 0;
    color: var(--ink);
    font-weight: 500;
    font-size: 1rem;
    word-break: break-word;
}
@media (max-width: 560px) {
    .review-card-head { padding: 12px 16px; }
    .review-grid { padding: 0 16px; }
    .review-row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 12px 0;
    }
}

/* Review step — express report upgrade card */
.upgrade-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    margin: 0 0 22px;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 14px;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.upgrade-card:hover { border-color: #cbd5e1; }
.upgrade-card.is-selected {
    border-color: var(--ink);
    background: var(--brand-soft);
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.upgrade-card input[type=checkbox] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}
.upgrade-tick {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    border: 1.5px solid var(--line);
    background: #fff;
    flex: 0 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, border-color .15s ease;
}
.upgrade-card input:checked + .upgrade-tick {
    background: var(--ink);
    border-color: var(--ink);
}
.upgrade-card input:checked + .upgrade-tick::after {
    content: '';
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23FFD600' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='3 8.5 6.5 12 13 4.5'/></svg>") center/contain no-repeat;
}
.upgrade-card input:focus-visible + .upgrade-tick {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}
.upgrade-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.upgrade-eyebrow {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}
.upgrade-title {
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--ink);
}
.upgrade-desc {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.45;
    margin-top: 2px;
}
.upgrade-price {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
    background: var(--brand);
    padding: 8px 14px;
    border-radius: 999px;
    line-height: 1;
    flex: 0 0 auto;
}
@media (max-width: 560px) {
    .upgrade-card {
        grid-template-columns: auto 1fr;
        gap: 12px 14px;
        padding: 14px 16px;
    }
    .upgrade-price {
        grid-column: 1 / -1;
        justify-self: start;
        font-size: 1rem;
    }
}

/* Review step — terms & conditions block */
.terms-block {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    padding: 22px 22px 18px;
    margin: 0 0 8px;
}
.terms-block h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
    letter-spacing: -.005em;
}
.terms-lead {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.55;
}
.terms-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
}
@media (max-width: 640px) {
    .terms-cols { grid-template-columns: 1fr; }
}
.terms-col {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
    background: var(--bg-soft);
}
.terms-col h4 {
    margin: 0 0 10px;
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    display: flex;
    align-items: center;
    gap: 8px;
}
.terms-col h4::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex: 0 0 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px 12px;
}
.terms-col-yes h4::before {
    background-color: #16a34a;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='3 8.5 6.5 12 13 4.5'/></svg>");
}
.terms-col-no h4::before {
    background-color: #b91c1c;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round'><line x1='4' y1='4' x2='12' y2='12'/><line x1='12' y1='4' x2='4' y2='12'/></svg>");
}
.terms-col ul,
.terms-list {
    margin: 0;
    padding-left: 20px;
    color: var(--ink);
    font-size: .92rem;
    line-height: 1.6;
}
.terms-col ul li,
.terms-list li { margin-bottom: 8px; }
.terms-col ul li:last-child,
.terms-list li:last-child { margin-bottom: 0; }

.terms-subhead {
    margin: 4px 0 10px;
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--ink);
}

.terms-agree {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
    padding: 14px 16px;
    background: var(--brand-soft);
    border: 1.5px solid var(--brand);
    border-radius: 10px;
    cursor: pointer;
    font-size: .98rem;
    font-weight: 500;
    color: var(--ink);
    transition: background .15s ease;
}
.terms-agree:hover { background: #fff7d6; }
.terms-agree input[type=checkbox] {
    margin: 2px 0 0;
    width: 20px;
    height: 20px;
    accent-color: var(--ink);
    flex: 0 0 20px;
    cursor: pointer;
}
.terms-agree:has(input:checked) {
    background: #f0fdf4;
    border-color: #16a34a;
}

/* Footnote under wizard */
.footnote.muted {
    margin: 18px 0 8px;
    text-align: center;
    font-size: .9rem;
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--line);
    padding: 48px 0 24px;
    color: var(--muted);
    margin-top: 60px;
    background: #fafbfc;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}
.footer-brand {
    font-weight: 700;
    color: var(--ink);
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.footer-col h4 {
    margin: 0 0 10px;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--ink);
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: .95rem;
}
.footer-col ul li { padding: 3px 0; }
.footer-col p { margin: 0; }
.footer-bottom {
    padding-top: 20px;
    text-align: center;
}
@media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr; gap: 22px; }
}
