/* ============================================================
   Snabbintyg.se — stilbas
   Färg-DNA: varm svensk vårdkänsla med djup grön kontrast,
   mjuka creme-ytor och diskreta mässingsaccenter.
   ============================================================ */

:root {
    /* Primär — trygg vårdgrön */
    --c-primary: #17423b;
    --c-primary-dark: #0f302b;
    --c-primary-deep: #261610;
    --c-primary-soft: #e9f1eb;
    --c-primary-faint: #f6faf6;

    /* Accent — varm mässing/koppar */
    --c-accent: #b9824d;
    --c-accent-soft: #f8ead7;

    /* Text */
    --c-text: #2d1b16;
    --c-text-soft: #4f3a32;
    --c-text-muted: #5d4a42;

    /* Ytor — varma vita */
    --c-bg: #fffaf3;
    --c-bg-soft: #fbf1e3;
    --c-bg-warm: #f2dfc7;
    --c-bg-alt: #ead8c1;
    --c-bg-cool: #eef5f0;

    --c-border: #e5d3bf;
    --c-border-cool: #d7ddd3;
    --c-border-strong: #cbb59b;

    --c-ok-bg: #e8f3e9;
    --c-ok-border: #b9d8bb;
    --c-err-bg: #fbeaea;
    --c-err-border: #e8b9b9;

    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 18px;
    --radius-xl: 22px;

    /* Mjuk premium-djup — flera lager */
    --shadow-sm: 0 1px 2px rgba(8, 21, 42, .04);
    --shadow: 0 2px 4px rgba(8, 21, 42, .04), 0 8px 24px rgba(8, 21, 42, .06);
    --shadow-lg: 0 4px 8px rgba(8, 21, 42, .05), 0 20px 48px rgba(8, 21, 42, .10);
    --shadow-inset-line: inset 0 1px 0 rgba(255, 255, 255, .7);

    --max-w: 1180px;
    --max-w-narrow: 880px;
    --gap: 24px;

    /* Typografi */
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-display: "Iowan Old Style", "Source Serif Pro", "Apple Garamond", Baskerville, "Times New Roman", serif;
    --font-serif: "Iowan Old Style", "Source Serif Pro", "Apple Garamond", Baskerville, "Times New Roman", serif;
}

* { box-sizing: border-box; }

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

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--c-text);
    background: #10201c;
    font-size: 18px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; }
a { color: var(--c-primary); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(11, 58, 111, .35); }
a:hover { color: var(--c-primary-dark); text-decoration-color: var(--c-primary-dark); }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.18; color: var(--c-text); margin: 0 0 0.5em; font-weight: 700; letter-spacing: 0; }
h1 { font-size: 3.1rem; }
h2 { font-size: 2.05rem; }
h3 { font-size: 1.18rem; }
h4 { font-size: 1rem; }

p { margin: 0 0 1em; }
::selection { background: var(--c-primary); color: #fff; }

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}

/* Framed page: hela sajten ligger som ett rundat ark på en mörkgrön bakgrund */
.page-shell {
    max-width: 1240px;
    margin: 40px auto;
    background: var(--c-bg);
    border-radius: var(--radius-xl);
    box-shadow: 0 18px 60px -20px rgba(8, 24, 20, .55);
    overflow: hidden;
}
@media (max-width: 800px) {
    .page-shell { margin: 0; border-radius: 0; }
}
/* Tidy, consistent section titles: liten kopparstreck under rubriken */
.section-header h2::after {
    content: "";
    display: block;
    width: 44px; height: 3px;
    margin: 16px auto 0;
    background: var(--c-accent);
    border-radius: 2px;
}

/* Intyg-katalog (/alla-intyg/) — enhetliga gröna kort, ej regnbåge */
.intyg-group-title { font-size: 1.4rem; margin: 0 0 16px; color: var(--c-primary-deep); }
.intyg-group-title::after { content: none; }
.intyg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.intyg-card { display: flex; flex-direction: column; gap: 10px; background: var(--c-primary-faint); border: 1px solid var(--c-border-cool); border-radius: var(--radius); padding: 20px; }
.intyg-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.intyg-card-title { font-size: 1.05rem; margin: 0; color: var(--c-primary-deep); line-height: 1.25; }
.intyg-card-format { flex: none; font-size: .7rem; text-transform: uppercase; letter-spacing: .04em; color: var(--c-primary); background: #fff; border: 1px solid var(--c-border-cool); border-radius: 999px; padding: 3px 9px; white-space: nowrap; }
.intyg-card-desc { font-size: .9rem; color: var(--c-text-soft); margin: 0; flex: 1; }
.intyg-card-foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: 4px; }
.intyg-card-price { font-weight: 700; color: var(--c-primary-deep); font-size: .95rem; }
.intyg-card-actions { display: flex; align-items: center; gap: 12px; }
.intyg-lasmer { font-size: .85rem; font-weight: 600; color: var(--c-primary); text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 1px; white-space: nowrap; }
.intyg-lasmer:hover { color: var(--c-accent); }
.intyg-card-foot .btn { padding: 7px 15px; font-size: .85rem; }

/* Rich content pages (renderRichPage) */
.rich-platform-note { margin-top: 14px; font-size: .92rem; color: var(--c-primary-deep); background: var(--c-primary-faint); border-left: 3px solid var(--c-accent); padding: 10px 14px; border-radius: 8px; }
.quote-block { margin: 14px 0; padding: 14px 18px; background: var(--c-primary-faint); border-left: 3px solid var(--c-primary); border-radius: 8px; font-style: italic; color: var(--c-primary-deep); }
.rich-laesmer { margin-top: 12px; font-weight: 600; }
.rich-laesmer a { color: var(--c-primary); }
.rich-related { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 8px 20px; }
.rich-related li { padding-left: 16px; position: relative; }
.rich-related li::before { content: "→"; position: absolute; left: 0; color: var(--c-accent); }
.rich-related a { color: var(--c-primary); text-decoration: none; }
.rich-related a:hover { text-decoration: underline; }

.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--c-primary);
    color: #fff;
    padding: 10px 14px;
    z-index: 100;
}
.skip-link:focus { left: 8px; top: 8px; }

.muted { color: var(--c-text-muted); }
.small { font-size: 0.875rem; }

/* ---------- Icons ---------- */
.si-icon {
    width: 1.15em;
    height: 1.15em;
    vertical-align: -0.2em;
    flex-shrink: 0;
    color: currentColor;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 13px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.98rem;
    letter-spacing: 0;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background .18s, color .18s, transform .08s, box-shadow .18s, border-color .18s;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 16px 28px; font-size: 1.02rem; border-radius: 12px; }
.btn-primary {
    background: var(--c-primary);
    color: #fff;
    box-shadow: 0 1px 0 rgba(255,255,255,.15) inset, 0 4px 12px rgba(11, 58, 111, .22);
}
.btn-primary:hover { background: var(--c-primary-dark); color: #fff; text-decoration: none; box-shadow: 0 1px 0 rgba(255,255,255,.15) inset, 0 6px 18px rgba(11, 58, 111, .28); }
.btn-ghost {
    background: transparent;
    color: var(--c-primary);
    border-color: var(--c-border-cool);
}
.btn-ghost:hover { background: var(--c-primary-faint); color: var(--c-primary-dark); text-decoration: none; border-color: #c2cee0; }
.btn-ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .35);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, .08); color: #fff; text-decoration: none; border-color: rgba(255, 255, 255, .55); }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
    background: rgba(255, 250, 243, .86);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid rgba(229, 211, 191, .75);
    position: sticky;
    top: 0;
    z-index: 50;
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 74px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--c-text);
    font-weight: 700;
    font-size: 1.18rem;
    letter-spacing: 0;
}
.brand:hover { text-decoration: none; }
.brand-mark {
    width: 34px; height: 34px;
    background: linear-gradient(145deg, #0f625d 0%, #0b4f49 100%);
    color: #e2b764;
    display: inline-flex;
    align-items: center; justify-content: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(38, 22, 16, .22), 0 1px 0 rgba(255,255,255,.12) inset;
    overflow: hidden;
}
.brand-mark .si-icon { width: 18px; height: 18px; }
.brand-mark .si-icon-doctorLogo { width: 26px; height: 26px; }
.site-logo-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}
.brand-name { color: var(--c-text); }

.primary-nav {
    margin-left: auto;
    display: flex;
}
.primary-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
    margin: 0; padding: 0;
}
.nav-link {
    display: inline-block;
    padding: 8px 12px;
    color: var(--c-text-soft);
    text-decoration: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
}
.nav-link:hover { background: var(--c-bg-soft); color: var(--c-text); }
.nav-link.is-active { color: var(--c-primary-dark); background: var(--c-primary-soft); }

.header-cta {
    display: inline-block;
    background: var(--c-primary);
    color: #fff;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 22px rgba(23, 66, 59, .16);
}
.header-cta:hover { background: var(--c-primary-dark); color: #fff; }
.header-cta.header-cta-ghost,
body.is-subpage:not(.is-questions) .header-cta.header-cta-ghost {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .55);
    box-shadow: none;
}
.header-cta.header-cta-ghost:hover,
body.is-subpage:not(.is-questions) .header-cta.header-cta-ghost:hover { background: rgba(255, 255, 255, .22); color: #fff; }

.nav-toggle {
    display: none;
    margin-left: auto;
    background: transparent;
    border: 1px solid var(--c-border-strong);
    border-radius: 8px;
    width: 40px; height: 40px;
    padding: 0;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
}
.nav-toggle-bar {
    display: block; width: 18px; height: 2px;
    background: var(--c-text);
}

/* ---------- Hero ---------- */
.hero {
    background: linear-gradient(180deg, var(--c-primary-soft) 0%, #fff 70%);
    padding: 60px 0 40px;
}
.hero-inner { max-width: 760px; }
.eyebrow {
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--c-primary-dark);
    font-weight: 600;
    margin: 0 0 8px;
}
.eyebrow a { color: var(--c-primary-dark); }
.hero h1 { margin-bottom: 0.4em; }
.lead {
    font-size: 1.15rem;
    color: var(--c-text-soft);
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 20px 0;
}

/* highlight chips */
.highlight-chips {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.highlight-chips li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--c-border);
    color: var(--c-text-soft);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
}
.highlight-chips .si-icon { color: var(--c-primary); }

/* ---------- Page hero (interior) ---------- */
.page-hero {
    background: var(--c-bg-soft);
    border-bottom: 1px solid var(--c-border);
    padding: 40px 0 28px;
}
.page-hero h1 { margin: 0 0 12px; }
.page-hero .lead { max-width: 720px; }
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

/* ---------- Sections ---------- */
.section { padding: 56px 0; }
.section-alt { background: var(--c-bg-soft); }
.section-lead { color: var(--c-text-soft); max-width: 720px; margin-top: -4px; }

/* ---------- Service grid (home) ---------- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--gap);
    margin-top: 24px;
}
.service-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 22px;
    text-decoration: none;
    color: var(--c-text);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color .15s, transform .15s, box-shadow .15s;
}
.service-card:hover {
    border-color: var(--c-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.service-card-h { display: flex; align-items: center; gap: 10px; }
.service-card-h h3 { margin: 0; }
.service-card-ico {
    width: 36px; height: 36px;
    background: var(--c-primary-soft);
    color: var(--c-primary-dark);
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
}
.service-card p { color: var(--c-text-soft); margin: 0; flex: 1; }
.service-card-cta {
    color: var(--c-primary-dark);
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 4px;
}

/* ---------- Process steps ---------- */
.process {
    list-style: none;
    counter-reset: step;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--gap);
}
.process li {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 22px;
}
.process-ico {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    background: var(--c-primary-soft);
    color: var(--c-primary-dark);
    border-radius: 10px;
    margin-bottom: 12px;
}
.process h3 { margin: 0 0 4px; }
.process p { color: var(--c-text-soft); margin: 0; }
.process-lg li { padding: 28px; }

/* ---------- Content grid (service detail) ---------- */
.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
}
.content-main .content-block {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--c-border);
}
.content-main .content-block:last-child { border-bottom: 0; }
.content-main h2 { margin-bottom: 0.5em; }
.content-main p { color: var(--c-text-soft); }

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--c-text);
}
.check-list .si-icon { color: var(--c-primary); margin-top: 4px; }

/* ---------- Price card aside ---------- */
.content-aside { position: relative; }
.price-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 88px;
}
.price-card-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--c-text-muted);
    margin: 0;
}
.price-card-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--c-text);
    margin: 4px 0 8px;
}
.price-card-note {
    font-size: 0.9rem;
    color: var(--c-text-soft);
    margin: 0 0 18px;
}
.price-card-sub {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin: 10px 0 0;
    text-align: center;
}

/* ---------- FAQ ---------- */
.faq-section h2 { margin-bottom: 12px; }
.faq details {
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    background: #fff;
}
.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq .faq-q { margin: 0; font-size: inherit; font-weight: inherit; line-height: inherit; color: inherit; flex: 1; }
.faq summary .chevron { transition: transform .15s; color: var(--c-text-muted); }
.faq details[open] summary .chevron { transform: rotate(180deg); }
.faq-answer {
    padding: 0 18px 18px;
    color: var(--c-text-soft);
}
.faq-answer a { color: var(--c-primary-dark); }

/* ---------- Related ---------- */
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--gap);
    margin-top: 16px;
}
.related-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 18px;
    text-decoration: none;
    color: var(--c-text);
}
.related-card:hover { border-color: var(--c-primary); }
.related-card h3 { margin-top: 0; }
.related-card p { color: var(--c-text-soft); }
.related-card span {
    color: var(--c-primary-dark);
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 4px;
}

/* ---------- Feature grid (about / lakare) ---------- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--gap);
}
.feature-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 22px;
}
.feature-ico {
    width: 40px; height: 40px;
    background: var(--c-primary-soft);
    color: var(--c-primary-dark);
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 10px;
}
.feature-card h3 { margin: 0 0 6px; }
.feature-card p { color: var(--c-text-soft); margin: 0; }

/* ---------- Compare table (Snabbintyg vs vårdcentral) ---------- */
.compare-table-wrap { overflow-x: auto; margin-top: 20px; }
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
}
.compare-table th, .compare-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
    vertical-align: top;
}
.compare-table thead th {
    background: var(--c-bg-soft);
    font-weight: 700;
}
.compare-table thead th:nth-child(2) { color: var(--c-primary-dark); }
.compare-table tbody th[scope="row"] {
    background: var(--c-bg-soft);
    font-weight: 600;
    width: 33%;
}
.compare-table tbody tr:last-child td,
.compare-table tbody tr:last-child th { border-bottom: 0; }

/* ---------- Price table ---------- */
.price-table-wrap { overflow-x: auto; }
.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
}
.price-table th, .price-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
}
.price-table th { background: var(--c-bg-soft); font-weight: 600; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table .price-col { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; font-weight: 600; }

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 40px;
}
.contact-info { color: var(--c-text-soft); }
.contact-list { list-style: none; padding: 0; margin: 0 0 16px; display: grid; gap: 14px; }
.contact-list li { display: flex; gap: 10px; align-items: flex-start; }
.contact-list .si-icon { color: var(--c-primary); margin-top: 4px; }

.contact-form-wrap { max-width: 560px; }
.contact-form-title { font-size: 1.35rem; margin: 0 0 6px; color: var(--c-text); }
.contact-form-intro { font-size: 1rem; margin: 0 0 16px; }
.contact-form {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 22px;
}
.form-row { margin-bottom: 14px; display: flex; flex-direction: column; }
.form-row label { font-weight: 500; font-size: 0.95rem; margin-bottom: 4px; color: var(--c-text); }
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    min-height: 44px;
    padding: 12px 14px;
    border: 1px solid var(--c-border-strong);
    border-radius: var(--radius-sm);
    font: inherit;
    background: #fff;
}
.form-row textarea { min-height: 96px; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.18);
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hp-field { position: absolute; left: -9999px; }

.banner {
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 12px 16px;
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
}
.banner-ok { background: var(--c-ok-bg); border-color: var(--c-ok-border); color: #064e3b; }
.banner-err { background: var(--c-err-bg); border-color: var(--c-err-border); color: #7f1d1d; }

/* ---------- CTA band ---------- */
.cta-band {
    background: var(--c-primary);
    color: #fff;
    padding: 48px 0;
}
.cta-band-inner { text-align: center; }
.cta-band h2 { color: #fff; margin: 0 0 8px; }
.cta-band p { color: rgba(255, 255, 255, 0.85); margin: 0 0 18px; }
.cta-band .btn-primary { background: #fff; color: var(--c-primary-dark); }
.cta-band .btn-primary:hover { background: var(--c-bg-soft); color: var(--c-primary-dark); }

/* ---------- Footer ---------- */
.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 48px 0 24px;
    margin-top: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
}
.footer-brand { color: #fff; font-weight: 700; font-size: 1.1rem; margin-bottom: 4px; }
.footer-tagline { color: #94a3b8; margin: 0; }
.site-footer h4 { color: #fff; font-size: 0.95rem; margin: 0 0 12px; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-list a { color: #cbd5e1; text-decoration: none; }
.footer-list a:hover { color: #fff; }
.footer-list .si-icon { color: #94a3b8; }
.footer-meta {
    display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
    color: #94a3b8;
    font-size: 0.85rem;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid #1e293b;
}

/* ---------- Articles / guides ---------- */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--gap);
}
.article-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-decoration: none;
    color: var(--c-text);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color .15s, transform .15s, box-shadow .15s;
    box-shadow: var(--shadow-sm);
}
.article-card:hover { border-color: var(--c-primary); transform: translateY(-2px); box-shadow: var(--shadow); }
.article-card h3 { margin: 0; }
.article-card p { color: var(--c-text-soft); margin: 0; flex: 1; }
.article-card-meta {
    color: var(--c-primary-dark);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin: 0 !important;
}
.article-card-cta {
    color: var(--c-primary-dark);
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 4px;
}

.article-meta {
    color: var(--c-text-muted);
    font-size: 0.92rem;
    margin: 0 0 12px;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
}
.article-body { max-width: 720px; }
.article-section { margin-bottom: 32px; }
.article-section h2 {
    scroll-margin-top: 88px;
    margin-bottom: 0.5em;
}
.article-section p { color: var(--c-text-soft); }
.article-section p:last-child { margin-bottom: 0; }
.article-section a { color: var(--c-primary-dark); }
.article-section ul.check-list { margin: 12px 0 14px; }

.article-toc {
    background: var(--c-bg-soft);
    border: 1px solid var(--c-border);
    border-left: 3px solid var(--c-primary);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin: 0 0 28px;
}
.article-toc-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    color: var(--c-text-muted);
    margin: 0 0 8px;
    font-weight: 600;
}
.article-toc ol {
    margin: 0;
    padding-left: 20px;
    color: var(--c-text-soft);
}
.article-toc ol li { margin-bottom: 4px; }
.article-toc a { color: var(--c-primary-dark); text-decoration: none; }
.article-toc a:hover { text-decoration: underline; }

.callout {
    background: var(--c-primary-soft);
    border-left: 4px solid var(--c-primary);
    border-radius: var(--radius);
    padding: 16px 18px;
    margin: 0 0 28px;
}
.callout-title {
    font-weight: 700;
    color: var(--c-primary-dark);
    margin: 0 0 6px;
    display: flex; align-items: center; gap: 8px;
}
.callout p:last-child { margin: 0; color: var(--c-text); }

.timeline {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    border-left: 2px solid var(--c-border);
}
.timeline li {
    position: relative;
    padding: 0 0 18px 24px;
    color: var(--c-text-soft);
}
.timeline li::before {
    content: "";
    position: absolute;
    left: -7px; top: 6px;
    width: 12px; height: 12px;
    background: #fff;
    border: 3px solid var(--c-primary);
    border-radius: 50%;
}
.timeline li strong { color: var(--c-text); }

.source-list { padding-left: 18px; color: var(--c-text-soft); }
.source-list li { margin-bottom: 6px; }

.regel-list { list-style: none; padding: 0; margin: 12px 0 14px; }
.regel-list li {
    position: relative;
    padding: 4px 0 4px 28px;
    color: var(--c-text-soft);
}
.regel-list li::before {
    content: "✓";
    position: absolute;
    left: 4px; top: 4px;
    color: var(--c-primary);
    font-weight: 700;
}
.regel-list li strong { color: var(--c-text); }

.article-aside .price-card { position: sticky; top: 88px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .content-grid { grid-template-columns: 1fr; }
    .article-layout { grid-template-columns: 1fr; }
    .price-card { position: static; }
    .article-aside .price-card { position: static; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .nav-toggle { display: inline-flex; }
    .header-cta { display: none; }
    .primary-nav {
        position: absolute;
        top: 64px; left: 0; right: 0;
        background: #fff;
        border-bottom: 1px solid var(--c-border);
        box-shadow: var(--shadow-lg);
        display: none;
        padding: 8px 16px 16px;
    }
    .primary-nav.is-open { display: block; }
    .primary-nav ul { flex-direction: column; gap: 2px; }
    .primary-nav .nav-link { display: block; padding: 12px 14px; }
    .form-grid-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   HOMEPAGE (.lp-*)  —  premium nationell guide
   ============================================================ */

/* ---------- Section rhythm ---------- */
.section-warm { background: var(--c-bg-warm); }
.section-soft { background: var(--c-bg-soft); }
.section-cool { background: var(--c-bg-cool); }
.section-header { max-width: 760px; margin: 0 auto 36px; text-align: center; }
.section-header h2 { margin-bottom: 12px; }
.section-header .section-lead { margin-left: auto; margin-right: auto; }
.section-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-primary);
    margin: 0 0 14px;
    padding: 5px 12px;
    background: var(--c-primary-faint);
    border-radius: 999px;
}

/* ---------- 1. LP Hero ---------- */
.lp-hero {
    position: relative;
    background:
        radial-gradient(ellipse 1200px 600px at 80% -10%, rgba(11, 58, 111, .10), transparent 60%),
        linear-gradient(180deg, var(--c-primary-faint) 0%, #fff 100%);
    padding: 64px 0 80px;
    overflow: hidden;
}
.lp-hero::before {
    content: "";
    position: absolute; inset: auto 0 -1px 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-border-cool), transparent);
}
.lp-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}
.lp-hero-copy { max-width: 640px; }
.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--c-primary);
    margin: 0 0 18px;
    padding: 7px 14px;
    background: #fff;
    border: 1px solid var(--c-border-cool);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}
.lp-eyebrow::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--c-accent);
    display: inline-block;
}
.lp-hero-h1 {
    font-size: 3.6rem;
    line-height: 1.08;
    letter-spacing: 0;
    margin: 0 0 20px;
    color: var(--c-primary-deep);
}
.lp-hero-lead {
    font-size: 1.18rem;
    line-height: 1.55;
    color: var(--c-text-soft);
    margin: 0 0 28px;
    max-width: 580px;
}
.lp-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 0 32px;
}
.lp-indicators {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 22px;
    max-width: 560px;
}
.lp-indicators li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--c-text-soft);
    font-size: 0.94rem;
    font-weight: 500;
}
.lp-indicators .ind-ico {
    color: var(--c-primary);
    width: 18px; height: 18px;
    flex-shrink: 0;
}

.lp-hero-aside { display: flex; justify-content: flex-end; }
.lp-hero-card {
    background: #fff;
    border: 1px solid var(--c-border-cool);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 420px;
    position: relative;
}
.lp-hero-card::before {
    content: "";
    position: absolute;
    top: -1px; left: 24px; right: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
    border-radius: 3px;
}
.lp-card-kicker {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--c-text-muted);
    font-weight: 600;
    margin: 0 0 16px;
}
.lp-hero-facts { margin: 0 0 18px; }
.lp-hero-facts > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--c-border-cool);
}
.lp-hero-facts > div:last-child { border-bottom: 0; }
.lp-hero-facts dt {
    font-weight: 600;
    color: var(--c-text);
    font-size: 0.95rem;
}
.lp-hero-facts dd {
    margin: 0;
    color: var(--c-text-muted);
    font-size: 0.86rem;
    text-align: right;
    font-variant-numeric: tabular-nums;
}
.lp-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--c-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
}
.lp-card-cta:hover { color: var(--c-primary-dark); }
.lp-card-cta .si-icon { transition: transform .15s; }
.lp-card-cta:hover .si-icon { transform: translateX(2px); }

/* ---------- 2. Certificate categories ---------- */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.cert-card {
    background: #fff;
    border: 1px solid var(--c-border-cool);
    border-radius: var(--radius-lg);
    padding: 28px 26px 24px;
    text-decoration: none;
    color: var(--c-text);
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform .18s, box-shadow .18s, border-color .18s;
    position: relative;
}
.cert-card:hover {
    transform: translateY(-3px);
    border-color: var(--c-primary);
    box-shadow: var(--shadow);
    text-decoration: none;
}
.cert-card-ico {
    width: 44px; height: 44px;
    display: inline-flex;
    align-items: center; justify-content: center;
    background: var(--c-primary-faint);
    color: var(--c-primary);
    border-radius: 12px;
    margin-bottom: 4px;
}
.cert-card-ico .si-icon { width: 22px; height: 22px; }
.cert-card-kicker {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-primary);
    font-weight: 600;
    margin: 0;
}
.cert-card-h {
    font-size: 1.22rem;
    margin: 0;
    letter-spacing: 0;
}
.cert-card-p {
    color: var(--c-text-soft);
    margin: 0;
    flex: 1;
    font-size: 0.96rem;
    line-height: 1.55;
}
.cert-card-cta {
    color: var(--c-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.94rem;
    margin-top: 8px;
}
.cert-card-cta .si-icon { transition: transform .15s; }
.cert-card:hover .cert-card-cta .si-icon { transform: translateX(3px); }

/* ---------- 3. Quick answers (AI-friendly) ---------- */
.qa-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
}
.qa-item {
    padding: 22px 24px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    border-left: 3px solid var(--c-primary);
}
.qa-q {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--c-text);
    margin: 0 0 8px;
    letter-spacing: 0;
}
.qa-a p {
    color: var(--c-text-soft);
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.6;
}

/* ---------- 4. Comparison criteria ---------- */
.criterion-list {
    display: grid;
    gap: 0;
    background: #fff;
    border: 1px solid var(--c-border-cool);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.criterion-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    padding: 28px 32px;
    border-bottom: 1px solid var(--c-border-cool);
}
.criterion-row:last-child { border-bottom: 0; }
.criterion-h h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
    color: var(--c-primary-deep);
}
.criterion-what {
    color: var(--c-text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.45;
}
.criterion-why {
    color: var(--c-text-soft);
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
}

/* ---------- 5. Match process steps ---------- */
.match-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    counter-reset: step;
}
.match-step {
    position: relative;
    padding: 28px 26px;
    background: #fff;
    border: 1px solid var(--c-border-cool);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.match-step-num {
    display: block;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--c-accent);
    letter-spacing: 0.08em;
    margin: 0 0 14px;
    font-variant-numeric: tabular-nums;
}
.match-step-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background: var(--c-primary-faint);
    color: var(--c-primary);
    border-radius: 10px;
    margin: 0 0 14px;
}
.match-step h3 {
    margin: 0 0 6px;
    font-size: 1.08rem;
    color: var(--c-text);
}
.match-step p {
    color: var(--c-text-soft);
    font-size: 0.94rem;
    line-height: 1.55;
    margin: 0;
}

/* ---------- 6. Trust pillars ---------- */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.trust-card {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--c-border-cool);
    border-radius: var(--radius-lg);
    text-align: left;
}
.trust-ico {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
    color: #fff;
    border-radius: 12px;
    margin: 0 0 16px;
    box-shadow: 0 2px 6px rgba(11, 58, 111, .22);
}
.trust-ico .si-icon { width: 22px; height: 22px; }
.trust-card h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
}
.trust-card p {
    color: var(--c-text-soft);
    font-size: 0.94rem;
    line-height: 1.55;
    margin: 0;
}

/* ---------- CTA band (premium variant) ---------- */
.cta-band-premium {
    background: linear-gradient(135deg, var(--c-primary-deep), var(--c-primary));
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.cta-band-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 800px 400px at 20% 0%, rgba(176, 138, 62, .14), transparent 60%),
        radial-gradient(ellipse 800px 400px at 100% 100%, rgba(255, 255, 255, .06), transparent 60%);
    pointer-events: none;
}
.cta-band-premium .cta-band-inner { position: relative; z-index: 1; }
.cta-band-premium h2 {
    color: #fff;
    font-size: 2.2rem;
    margin: 0 0 10px;
}
.cta-band-premium p {
    color: rgba(255, 255, 255, .82);
    font-size: 1.05rem;
    margin: 0 0 26px;
}
.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-band-premium .btn-primary {
    background: #fff;
    color: var(--c-primary-deep);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .15);
}
.cta-band-premium .btn-primary:hover {
    background: var(--c-bg-soft);
    color: var(--c-primary-deep);
}

/* ---------- FAQ — premium override ---------- */
.faq details {
    border: 1px solid var(--c-border-cool);
    border-radius: var(--radius);
    margin-bottom: 10px;
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
}
.faq details[open] {
    border-color: var(--c-primary);
    box-shadow: var(--shadow-sm);
}
.faq summary {
    padding: 18px 22px;
    font-size: 1.02rem;
}
.faq-answer { padding: 0 22px 22px; font-size: 0.98rem; line-height: 1.6; }
.faq-more {
    text-align: center;
    margin-top: 22px;
    font-weight: 600;
}
.faq-more a { color: var(--c-primary); }

/* ---------- Footer (premium) ---------- */
.site-footer {
    background: var(--c-primary-deep);
    color: #d6deec;
    padding: 64px 0 28px;
    margin-top: 64px;
}
.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2.3fr);
    gap: 48px;
    margin-bottom: 40px;
}
.footer-brand-col { max-width: 340px; }
.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 14px;
}
.footer-brand-link:hover { text-decoration: none; }
.footer-brand-mark {
    width: 34px; height: 34px;
    background: linear-gradient(145deg, #0f625d 0%, #0b4f49 100%);
    color: #e2b764;
    display: inline-flex;
    align-items: center; justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    overflow: hidden;
}
.footer-brand-mark .si-icon { width: 18px; height: 18px; }
.footer-brand-mark .si-icon-doctorLogo { width: 26px; height: 26px; }
.footer-brand {
    color: #fff;
    font-weight: 700;
    font-size: 1.18rem;
    letter-spacing: 0;
}
.footer-tagline {
    color: #a4b1c8;
    margin: 0 0 22px;
    line-height: 1.55;
    font-size: 0.95rem;
}
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #a4b1c8;
    font-size: 0.95rem;
}
.footer-contact a { color: #d6deec; text-decoration: none; }
.footer-contact a:hover { color: #fff; text-decoration: underline; }
.footer-contact .si-icon { color: #8da0c0; }

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}
.footer-col h4 {
    color: #fff;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 16px;
    font-weight: 700;
}
.site-footer .footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.site-footer .footer-list a {
    color: #c0cbe1;
    text-decoration: none;
    font-size: 0.94rem;
}
.site-footer .footer-list a:hover { color: #fff; }

.footer-disclaimer {
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: #a4b1c8;
    font-size: 0.86rem;
    line-height: 1.55;
}
.footer-disclaimer p { margin: 0 0 10px; max-width: 920px; }
.footer-disclaimer p:last-child { margin-bottom: 0; }
.footer-disclaimer strong { color: #e8edf6; font-weight: 600; }

.footer-meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: #8da0c0;
    font-size: 0.85rem;
    margin-top: 22px;
}
.footer-legitimation {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-legitimation .si-icon { color: var(--c-accent); }

/* ---------- LP responsive ---------- */
@media (max-width: 1080px) {
    .cert-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .match-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .qa-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .lp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .lp-hero-aside { justify-content: stretch; }
    .lp-hero-card { max-width: none; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .criterion-row { grid-template-columns: 1fr; gap: 8px; padding: 22px 24px; }
}
@media (max-width: 640px) {
    .lp-hero { padding: 40px 0 56px; }
    .lp-hero-h1 { font-size: 2.05rem; }
    .lp-indicators { grid-template-columns: 1fr; gap: 10px; }
    .cert-grid { grid-template-columns: 1fr; }
    .match-steps { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
    .section { padding: 48px 0; }
    .section-header { margin-bottom: 28px; }
}

/* ---------- Homepage warm visual refresh ---------- */
.lp-hero {
    background:
        linear-gradient(90deg, rgba(45, 27, 22, .55) 0%, rgba(45, 27, 22, .18) 58%, rgba(255, 250, 243, .78) 100%),
        linear-gradient(135deg, #8e705d 0%, #cfb58e 44%, #f5eadb 100%);
    min-height: 620px;
    padding: 96px 0 86px;
}
.lp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(38, 22, 16, .20), transparent 28%),
        linear-gradient(90deg, rgba(38, 22, 16, .34), transparent 64%);
    pointer-events: none;
}
.lp-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 86px;
    background: linear-gradient(180deg, rgba(255, 250, 243, 0), var(--c-bg) 72%);
    pointer-events: none;
}
.lp-hero-inner {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
    align-items: end;
}
.lp-hero-copy { max-width: 680px; }
.lp-eyebrow {
    background: rgba(255, 244, 229, .20);
    border-color: rgba(255, 244, 229, .36);
    color: #fff7eb;
    box-shadow: none;
    border-radius: 999px;
    letter-spacing: .10em;
}
.lp-hero-h1 {
    color: #fff7eb;
    font-size: 4.05rem;
    line-height: 1.06;
    letter-spacing: 0;
    text-wrap: balance;
    text-shadow: 0 2px 22px rgba(38, 22, 16, .22);
}
.lp-hero-lead {
    color: rgba(255, 247, 235, .92);
    font-size: 1.2rem;
    max-width: 620px;
}
.lp-hero-actions .btn-primary,
.cta-band-premium .btn-primary {
    background: #ffe2bd;
    color: #3c2015;
    border-color: rgba(255, 226, 189, .8);
    box-shadow: 0 12px 28px rgba(38, 22, 16, .22);
}
.lp-hero-actions .btn-primary:hover,
.cta-band-premium .btn-primary:hover {
    background: #f6c98f;
    color: #2d1b16;
}
.lp-hero-actions .btn-ghost {
    background: rgba(255, 250, 243, .10);
    border-color: rgba(255, 250, 243, .42);
    color: #fff7eb;
}
.lp-hero-actions .btn-ghost:hover {
    background: rgba(255, 250, 243, .18);
    border-color: rgba(255, 250, 243, .70);
    color: #fff;
}
.lp-indicators {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 680px;
}
.lp-indicators li {
    color: rgba(255, 247, 235, .90);
    align-items: flex-start;
}
.lp-indicators .ind-ico { color: #ffe2bd; margin-top: 2px; }
.lp-hero-aside { align-items: flex-end; }
.lp-hero-card {
    background: rgba(255, 250, 243, .92);
    border-color: rgba(255, 255, 255, .52);
    border-radius: 8px;
    box-shadow: 0 26px 54px rgba(38, 22, 16, .24);
    max-width: 390px;
}
.lp-hero-card::before {
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
    border-radius: 8px 8px 0 0;
}
.lp-card-kicker {
    color: #945a34;
    letter-spacing: .12em;
}
.lp-hero-facts > div { border-bottom-color: rgba(123, 101, 91, .22); }
.lp-hero-facts dd { color: #716156; }
.lp-card-cta { color: var(--c-primary-dark); }

.platform-disclaimer {
    background: #f6ead9;
    border-top: 1px solid #e8d3b7;
    border-bottom: 1px solid #e8d3b7;
}
.platform-disclaimer-list li { color: #4f3a32; }
.platform-disclaimer-list .si-icon { color: var(--c-primary); }

.section { padding: 76px 0; }
.section-soft {
    background:
        linear-gradient(180deg, var(--c-bg) 0%, #fbf1e3 100%);
    position: relative;
}
.section-warm { background: #efe1ce; }
.section-cool { background: #eef5f0; }
.section-header { max-width: 780px; margin-bottom: 42px; }
.section-eyebrow {
    color: #945a34;
    background: rgba(255, 226, 189, .48);
    border-radius: 999px;
    letter-spacing: .12em;
}
.section-header h2 {
    font-size: 2.55rem;
    color: #3a1c13;
}
.section-lead { color: #5f4b41; }

.cert-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}
.cert-card {
    min-height: 174px;
    border-radius: 8px;
    padding: 24px 22px 20px;
    border-color: rgba(91, 66, 51, .14);
    background: linear-gradient(145deg, #a96c4d 0%, #c69266 100%);
    color: #fff7eb;
    box-shadow: 0 18px 36px rgba(84, 49, 32, .18);
}
.cert-card:nth-child(2n) { background: linear-gradient(145deg, #b9824d 0%, #d3aa68 100%); }
.cert-card:nth-child(3n) { background: linear-gradient(145deg, #876f5c 0%, #b8a692 100%); }
.cert-card:hover {
    border-color: rgba(255, 250, 243, .72);
    box-shadow: 0 22px 42px rgba(84, 49, 32, .24);
}
.cert-card-ico {
    background: rgba(255, 250, 243, .18);
    color: #fff7eb;
    border-radius: 999px;
    width: 38px;
    height: 38px;
}
.cert-card-kicker,
.cert-card-h,
.cert-card-p,
.cert-card-cta {
    color: #fff7eb;
}
.cert-card-kicker {
    letter-spacing: .10em;
    opacity: .82;
}
.cert-card-h {
    font-size: 1.35rem;
    line-height: 1.12;
    letter-spacing: 0;
}
.cert-card-p {
    font-size: .92rem;
    opacity: .88;
}
.cert-card-cta {
    align-self: flex-start;
    background: rgba(255, 244, 229, .86);
    color: #4b2719;
    border-radius: 999px;
    padding: 8px 13px;
    margin-top: auto;
}

.match-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.match-step {
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}
.match-step-image {
    display: block;
    width: 100%;
    aspect-ratio: 1.62;
    border-radius: 8px;
    background-image: url("/assets/snabbintyg-process-triptych.png");
    background-size: 300% 100%;
    background-repeat: no-repeat;
    box-shadow: 0 14px 28px rgba(58, 28, 19, .12);
    margin-bottom: 20px;
}
.match-step-image-1 { background-position: 0% 50%; }
.match-step-image-2 { background-position: 50% 50%; }
.match-step-image-3 { background-position: 100% 50%; }
.match-step h3 {
    font-size: 1.55rem;
    color: #3a1c13;
    letter-spacing: 0;
}
.match-step p {
    color: #5f4b41;
    font-size: 1rem;
}

.criterion-list {
    border-radius: 8px;
    border-color: #d8e0d6;
    box-shadow: 0 18px 34px rgba(23, 66, 59, .10);
}
.criterion-row {
    grid-template-columns: 44px 260px 1fr;
    align-items: start;
}
.criterion-ico {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: var(--c-primary-soft);
    color: var(--c-primary);
}
.criterion-h h3 {
    color: #2d1b16;
    letter-spacing: 0;
}

.qa-grid { gap: 16px; }
.qa-item {
    border-radius: 8px;
    border-left-color: var(--c-accent);
    box-shadow: 0 10px 24px rgba(58, 28, 19, .06);
    text-decoration: none;
}
.qa-q { letter-spacing: 0; }

.trust-card,
.faq details {
    border-radius: 8px;
}
.cta-band-premium {
    background: linear-gradient(135deg, #2b1711 0%, #17423b 100%);
}
.site-footer {
    background: #261610;
}

@media (max-width: 1180px) {
    .cert-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
    .lp-hero {
        min-height: 0;
        padding: 72px 0 68px;
    }
    .lp-hero-inner { grid-template-columns: 1fr; align-items: start; }
    .lp-hero-card { max-width: none; }
    .criterion-row { grid-template-columns: 36px 1fr; gap: 12px 18px; }
    .criterion-why { grid-column: 2; }
    .match-steps { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    h1 { font-size: 2.35rem; }
    h2 { font-size: 1.9rem; }
    .lp-hero { padding: 54px 0 58px; }
    .lp-hero-h1 { font-size: 2.7rem; }
    .lp-indicators { grid-template-columns: 1fr; }
    .cert-grid { grid-template-columns: 1fr; }
    .cert-card { min-height: 156px; }
    .section-header h2 { font-size: 2.1rem; }
}

/* ============================================================
   Tilläggsstilar — komponenter unika för bokningshjälpen
   (provider-kort, AI-frågesidor, stadssidor, LeadOnly, badges,
   prisintervall, hjälpklasser).
   ============================================================ */

.brand-suffix { color: var(--c-text-muted); font-weight: 600; }

.content-narrow {
    max-width: var(--max-w-narrow);
    margin-left: auto;
    margin-right: auto;
}
.content-narrow .content-block {
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--c-border-cool);
}
.content-narrow .content-block:last-child { border-bottom: 0; }
.content-narrow h2 { margin-bottom: 14px; color: var(--c-primary-deep); }
.content-narrow p { color: var(--c-text-soft); line-height: 1.65; }

.bullet-list {
    list-style: none;
    padding: 0;
    margin: 14px 0;
    display: grid;
    gap: 12px;
}
.bullet-list li {
    position: relative;
    padding: 4px 0 4px 24px;
    color: var(--c-text-soft);
    line-height: 1.55;
}
.bullet-list li::before {
    content: "";
    position: absolute;
    left: 6px; top: 13px;
    width: 6px; height: 6px;
    background: var(--c-primary);
    border-radius: 50%;
}
.bullet-list li strong { color: var(--c-text); }
.bullet-list li a { color: var(--c-primary); }

/* ---------- Page hero — interior breadcrumb upgrade ---------- */
.page-hero {
    background: var(--c-bg-cool);
    border-bottom: 1px solid var(--c-border-cool);
    padding: 56px 0 40px;
}
.page-hero h1 {
    color: var(--c-primary-deep);
    margin: 8px 0 14px;
    letter-spacing: 0;
}
.page-hero .lead {
    color: var(--c-text-soft);
    max-width: 740px;
}
.page-hero-b2b {
    background: linear-gradient(180deg, var(--c-primary-faint) 0%, #fff 100%);
}

/* ---------- Provider cards ---------- */
.provider-section { padding: 64px 0; }
.provider-section .section-lead { max-width: 760px; }
.provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
    margin-top: 28px;
}
.provider-card {
    background: #fff;
    border: 1px solid var(--c-border-cool);
    border-radius: var(--radius-lg);
    padding: 26px 26px 22px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color .18s, box-shadow .18s, transform .18s;
}
.provider-card:hover {
    border-color: var(--c-primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.provider-card-h {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
}
.provider-card-h h3 {
    margin: 0;
    color: var(--c-primary-deep);
    font-size: 1.22rem;
    letter-spacing: 0;
}
.provider-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.provider-summary {
    color: var(--c-text-soft);
    margin: 0;
    line-height: 1.55;
    font-size: 0.96rem;
}
.provider-line {
    margin: 0;
    color: var(--c-text);
    font-size: 0.93rem;
    line-height: 1.5;
}
.provider-line strong { color: var(--c-primary-deep); }
.provider-meta {
    margin: 6px 0 0;
    padding: 14px 0 0;
    border-top: 1px solid var(--c-border-cool);
    display: grid;
    gap: 10px;
}
.provider-meta > div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 10px;
    align-items: baseline;
}
.provider-meta dt {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text-muted);
    font-weight: 600;
    margin: 0;
}
.provider-meta dd {
    margin: 0;
    color: var(--c-text-soft);
    font-size: 0.92rem;
    line-height: 1.45;
}
.provider-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    background: var(--c-primary);
    padding: 11px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    justify-content: center;
    transition: background .18s;
}
.provider-cta:hover { background: var(--c-primary-dark); color: #fff; text-decoration: none; }
.provider-cta .si-icon { transition: transform .15s; }
.provider-cta:hover .si-icon { transform: translateX(3px); }
.provider-source {
    margin: 0;
    color: var(--c-text-muted);
    font-size: 0.78rem;
    word-break: break-word;
}
.provider-source a { color: var(--c-text-muted); text-decoration-color: rgba(107, 117, 137, .4); }
.provider-source a:hover { color: var(--c-primary); }
.provider-disclaimer {
    margin: 28px auto 0;
    max-width: 760px;
    text-align: center;
    color: var(--c-text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* ---------- Mode badges ---------- */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    line-height: 1.5;
    border: 1px solid transparent;
}
.badge-digital   { background: var(--c-primary-faint); color: var(--c-primary); border-color: var(--c-border-cool); }
.badge-physical  { background: var(--c-accent-soft);  color: #6f5320;          border-color: #e2cf9c; }
.badge-lab       { background: #f0f5ea;               color: #4d6b2d;          border-color: #d4dec4; }

/* ---------- Fast-answer block (AI question detail) ---------- */
.fast-answer {
    background: #fff;
    border: 1px solid var(--c-border-cool);
    border-left: 4px solid var(--c-primary);
    border-radius: var(--radius);
    padding: 22px 24px;
    margin: 0 0 32px;
}
.fast-answer-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-primary);
    font-weight: 700;
    margin: 0 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.fast-answer-body {
    margin: 0;
    color: var(--c-text);
    font-size: 1.04rem;
    line-height: 1.6;
}
.fast-answer-strong {
    background: var(--c-primary-faint);
    border-left-width: 5px;
}

.article-hero-image {
    margin: 0 0 28px;
    overflow: hidden;
    border: 1px solid var(--home-line, var(--c-border-cool));
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 32px rgba(19, 45, 39, .10);
}
.article-hero-image picture,
.article-hero-image img {
    display: block;
    width: 100%;
}
.article-hero-image img {
    height: auto;
    aspect-ratio: 1693 / 929;
    object-fit: cover;
}
.article-hero-image figcaption {
    margin: 0;
    padding: 12px 16px;
    color: var(--home-muted, var(--c-text-muted));
    font-size: .9rem;
    line-height: 1.45;
    border-top: 1px solid var(--home-line, var(--c-border-cool));
}
.article-section-image {
    margin: 4px 0 22px;
    box-shadow: 0 12px 26px rgba(19, 45, 39, .08);
}
.rich-hero-image {
    margin-top: -4px;
}

/* ---------- AI question cards (index page) ---------- */
.ai-q-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
    margin-top: 28px;
}
.ai-q-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--c-border-cool);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-decoration: none;
    color: var(--c-text);
    box-shadow: var(--shadow-sm);
    transition: border-color .18s, transform .18s, box-shadow .18s;
}
.ai-q-card:hover {
    border-color: var(--c-primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    text-decoration: none;
}
.ai-q-ico {
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--c-primary-faint);
    color: var(--c-primary);
    border-radius: 10px;
}
.ai-q-card h3 {
    margin: 0;
    font-size: 1.08rem;
    color: var(--c-primary-deep);
}
.ai-q-card p {
    margin: 0;
    color: var(--c-text-soft);
    font-size: 0.95rem;
    line-height: 1.55;
    flex: 1;
}
.ai-q-cta {
    color: var(--c-primary);
    font-weight: 600;
    font-size: 0.94rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ---------- City cards (cities index) ---------- */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 28px;
}
.city-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--c-border-cool);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-decoration: none;
    color: var(--c-text);
    box-shadow: var(--shadow-sm);
    transition: border-color .18s, transform .18s, box-shadow .18s;
}
.city-card:hover {
    border-color: var(--c-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    text-decoration: none;
}
.city-card-ico {
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--c-primary-faint);
    color: var(--c-primary);
    border-radius: 10px;
    margin-bottom: 6px;
}
.city-card h3 { margin: 0; color: var(--c-primary-deep); font-size: 1.15rem; }
.city-card p { margin: 0; color: var(--c-text-muted); font-size: 0.9rem; }
.city-card-tag {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    background: var(--c-accent-soft);
    color: #6f5320;
}
.city-card-tag-soft {
    background: var(--c-primary-faint);
    color: var(--c-primary);
}

/* ---------- LeadOnly card ---------- */
.leadonly-wrap { max-width: 760px; margin-left: auto; margin-right: auto; }
.leadonly-card {
    background: #fff;
    border: 1px solid var(--c-border-cool);
    border-radius: var(--radius-lg);
    padding: 32px 30px;
    box-shadow: var(--shadow-sm);
}
.pilot-card { border-left: 4px solid var(--c-accent); }
.leadonly-eyebrow {
    margin: 0 0 12px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--c-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.leadonly-card h2,
.leadonly-card h3 {
    margin: 0 0 14px;
    color: var(--c-primary-deep);
}
.leadonly-card p {
    color: var(--c-text-soft);
    line-height: 1.6;
    margin: 0 0 18px;
}
.leadonly-card .btn { margin-bottom: 12px; }
.leadonly-note {
    color: var(--c-text-muted);
    font-size: 0.88rem;
    font-style: italic;
}

/* ---------- Price-compare table ---------- */
.price-compare-wrap {
    overflow-x: auto;
    margin: 12px 0 8px;
    border: 1px solid var(--c-border-cool);
    border-radius: var(--radius);
    background: #fff;
}
.price-compare {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.96rem;
}
.price-compare thead th {
    background: var(--c-primary-faint);
    color: var(--c-primary-deep);
    text-align: left;
    padding: 14px 18px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--c-border-cool);
}
.price-compare tbody th {
    text-align: left;
    padding: 14px 18px;
    font-weight: 600;
    color: var(--c-text);
    border-bottom: 1px solid var(--c-border-cool);
    background: #fff;
    vertical-align: top;
}
.price-compare tbody td {
    padding: 14px 18px;
    color: var(--c-text-soft);
    border-bottom: 1px solid var(--c-border-cool);
    vertical-align: top;
}
.price-compare tbody tr:last-child th,
.price-compare tbody tr:last-child td { border-bottom: 0; }
.price-compare .price-col {
    text-align: right;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    font-weight: 700;
    color: var(--c-primary-deep);
}
.price-compare .price-note {
    font-size: 0.88rem;
    color: var(--c-text-muted);
}

/* ---------- Trust strip (hero indicator) ---------- */
.trust-strip {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.92rem;
    color: var(--c-text-soft);
}
.trust-strip li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.trust-strip .si-icon { color: var(--c-primary); }

/* ---------- Form consent ---------- */
.form-consent { margin: 12px 0 0; }
.h3 { font-size: 1.18rem; margin: 0 0 16px; }

/* ---------- CTA-band standard variant (kept for non-premium pages) ---------- */
.cta-band-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Platform disclaimer (sub-hero) ---------- */
.platform-disclaimer {
    background: var(--c-primary-faint);
    border-bottom: 1px solid var(--c-border-cool);
    padding: 18px 0;
}
.platform-disclaimer-list {
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 28px;
}
.platform-disclaimer-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--c-text-soft);
    font-size: 0.9rem;
    line-height: 1.5;
}
.platform-disclaimer-list strong { color: var(--c-primary-deep); font-weight: 700; }
.platform-disclaimer-list .si-icon { color: var(--c-primary); flex-shrink: 0; margin-top: 3px; }
@media (max-width: 860px) {
    .platform-disclaimer-list { grid-template-columns: 1fr; gap: 10px; }
}

/* ---------- Form disclaimer (above form) ---------- */
.form-disclaimer {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: var(--c-primary-faint);
    border: 1px solid var(--c-border-cool);
    border-left: 4px solid var(--c-primary);
    border-radius: var(--radius);
    padding: 14px 18px;
    margin: 0 0 18px;
    color: var(--c-text);
    font-size: 0.92rem;
    line-height: 1.5;
}
.form-disclaimer .si-icon { color: var(--c-primary); flex-shrink: 0; margin-top: 3px; }

/* ---------- Global disclaimer aside (unused-default block) ---------- */
.global-disclaimer {
    background: var(--c-primary-deep);
    color: #d6deec;
    padding: 16px 0;
    font-size: 0.92rem;
}
.global-disclaimer p {
    margin: 0;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.5;
}
.global-disclaimer .si-icon { color: var(--c-accent); flex-shrink: 0; margin-top: 3px; }

/* ---------- Internal links block (cert pages) ---------- */
.internal-links { padding: 56px 0; background: var(--c-bg-warm); }
.internal-links-h {
    text-align: center;
    margin: 0 0 32px;
    color: var(--c-primary-deep);
}
.internal-links-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}
.internal-links-col h3 {
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-primary);
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--c-border);
}
.internal-links-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.internal-links-col a {
    color: var(--c-text);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid transparent;
    transition: color .15s, border-color .15s;
}
.internal-links-col a:hover { color: var(--c-primary); border-bottom-color: var(--c-primary); }
@media (max-width: 860px) {
    .internal-links-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Concierge routing card (cert + city pages) ---------- */
.routing-section {
    padding: 64px 0;
    background: var(--c-bg-warm);
}
.routing-card {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--c-border-cool);
    border-left: 4px solid var(--c-primary);
    border-radius: var(--radius-lg);
    padding: 36px 36px 32px;
    box-shadow: var(--shadow);
}
.routing-eyebrow {
    margin: 0 0 12px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--c-primary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.routing-card h2 {
    margin: 0 0 14px;
    color: var(--c-primary-deep);
    font-size: 1.85rem;
}
.routing-card > p {
    color: var(--c-text-soft);
    line-height: 1.6;
    margin: 0 0 22px;
}
.routing-points {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 12px;
}
.routing-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--c-text);
    font-size: 0.97rem;
    line-height: 1.5;
}
.routing-points .si-icon {
    color: var(--c-primary);
    flex-shrink: 0;
    margin-top: 4px;
}
.routing-disclaimer {
    margin: 18px 0 0;
    color: var(--c-text-muted);
    font-size: 0.86rem;
    font-style: italic;
}
@media (max-width: 720px) {
    .routing-card { padding: 28px 22px 24px; }
}

/* ---------- /kontakt/ reassurance + form micro-copy ---------- */
.kontakt-reassurance {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: grid;
    gap: 10px;
}
.kontakt-reassurance li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--c-text);
}
.kontakt-reassurance .si-icon {
    color: var(--c-primary);
    flex-shrink: 0;
    margin-top: 2px;
}
.form-reassurance {
    margin: 14px 0 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}
.form-reassurance .si-icon {
    color: var(--c-primary);
    vertical-align: middle;
    margin-right: 4px;
}

/* ---------- Responsive — new components ---------- */
@media (max-width: 720px) {
    .provider-grid { grid-template-columns: 1fr; }
    .provider-meta > div { grid-template-columns: 1fr; gap: 2px; }
    .price-compare { font-size: 0.9rem; }
    .price-compare thead th,
    .price-compare tbody th,
    .price-compare tbody td { padding: 12px 14px; }
    .leadonly-card { padding: 24px 20px; }
}

/* ============================================================
   Interior warm alignment
   Brings subpages into the same visual system as the homepage.
   ============================================================ */

.page-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(45, 27, 22, .62) 0%, rgba(45, 27, 22, .28) 58%, rgba(255, 250, 243, .72) 100%),
        linear-gradient(135deg, #8e705d 0%, #cfb58e 46%, #f5eadb 100%);
    border-bottom: 0;
    padding: 74px 0 70px;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(38, 22, 16, .20), transparent 32%),
        linear-gradient(90deg, rgba(38, 22, 16, .34), transparent 66%);
    pointer-events: none;
}
.page-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 54px;
    background: linear-gradient(180deg, rgba(255, 250, 243, 0), var(--c-bg) 78%);
    pointer-events: none;
}
.page-hero .container {
    position: relative;
    z-index: 1;
}
.page-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    width: fit-content;
    margin: 0 0 18px;
    padding: 7px 14px;
    background: rgba(255, 244, 229, .20);
    border: 1px solid rgba(255, 244, 229, .36);
    border-radius: 999px;
    color: #fff7eb;
    letter-spacing: .08em;
    line-height: 1.4;
}
.page-hero .eyebrow a {
    color: #fff7eb;
    text-decoration-color: rgba(255, 247, 235, .48);
}
.page-hero .eyebrow a:hover {
    color: #fff;
    text-decoration-color: #fff;
}
.page-hero h1 {
    max-width: 900px;
    color: #fff7eb;
    font-size: 3.05rem;
    line-height: 1.08;
    margin: 0 0 18px;
    text-shadow: 0 2px 22px rgba(38, 22, 16, .22);
}
.page-hero .lead {
    max-width: 760px;
    color: rgba(255, 247, 235, .92);
    font-size: 1.17rem;
}
.page-hero-actions {
    margin-top: 26px;
}
.page-hero .btn-primary {
    background: #ffe2bd;
    color: #3c2015;
    border-color: rgba(255, 226, 189, .82);
    box-shadow: 0 12px 28px rgba(38, 22, 16, .22);
}
.page-hero .btn-primary:hover {
    background: #f6c98f;
    color: #2d1b16;
}
.page-hero .btn-ghost {
    background: rgba(255, 250, 243, .10);
    border-color: rgba(255, 250, 243, .42);
    color: #fff7eb;
}
.page-hero .btn-ghost:hover {
    background: rgba(255, 250, 243, .18);
    border-color: rgba(255, 250, 243, .70);
    color: #fff;
}

.platform-disclaimer {
    background: #f6ead9;
    border-top: 1px solid #e8d3b7;
    border-bottom: 1px solid #e8d3b7;
}
.platform-disclaimer-list li {
    color: #4f3a32;
}
.platform-disclaimer-list .si-icon {
    color: var(--c-primary);
}

.section {
    background: var(--c-bg);
}
.section-alt,
.routing-section,
.internal-links {
    background: #efe1ce;
}
.section-soft {
    background: linear-gradient(180deg, var(--c-bg) 0%, #fbf1e3 100%);
}
.section-cool {
    background: #eef5f0;
}
.section-warm {
    background: #efe1ce;
}

.content-narrow {
    max-width: 920px;
}
.content-narrow .content-block {
    background: rgba(255, 250, 243, .86);
    border: 1px solid rgba(91, 66, 51, .16);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 22px;
    box-shadow: 0 12px 28px rgba(58, 28, 19, .06);
}
.content-narrow .content-block:last-child {
    border: 1px solid rgba(91, 66, 51, .16);
}
.content-narrow h2,
.article-section h2,
.leadonly-card h2,
.leadonly-card h3,
.routing-card h2,
.ai-q-card h3,
.city-card h3,
.related-card h3 {
    color: #3a1c13;
}
.content-narrow p,
.article-section p,
.leadonly-card p,
.routing-card > p,
.related-card p,
.ai-q-card p,
.city-card p {
    color: #5f4b41;
}

.faq details,
.fast-answer,
.callout,
.price-compare-wrap,
.price-table,
.compare-table,
.contact-form,
.form-disclaimer,
.leadonly-card,
.routing-card,
.related-card,
.ai-q-card,
.city-card,
.trust-card {
    border-color: rgba(91, 66, 51, .16);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(58, 28, 19, .06);
}
.faq details,
.fast-answer,
.callout,
.contact-form,
.leadonly-card,
.routing-card,
.related-card,
.ai-q-card,
.city-card,
.trust-card {
    background: rgba(255, 250, 243, .92);
}
.faq details[open],
.related-card:hover,
.ai-q-card:hover,
.city-card:hover {
    border-color: rgba(185, 130, 77, .58);
    box-shadow: 0 18px 36px rgba(84, 49, 32, .14);
}

.fast-answer,
.callout,
.form-disclaimer {
    border-left-color: var(--c-accent);
}
.fast-answer-strong,
.callout {
    background: #fff3df;
}
.fast-answer-label,
.callout-title,
.leadonly-eyebrow,
.routing-eyebrow,
.ai-q-cta,
.related-card span,
.city-card-tag {
    color: #945a34;
}
.bullet-list li::before {
    background: var(--c-accent);
}

.price-compare-wrap,
.price-table,
.compare-table {
    background: #fffaf3;
}
.price-compare thead th,
.price-table th,
.compare-table thead th,
.compare-table tbody th[scope="row"] {
    background: #f6ead9;
    color: #3a1c13;
}
.price-compare .price-col,
.price-table .price-col {
    color: var(--c-primary-dark);
}

.routing-card {
    position: relative;
    overflow: hidden;
    border-left: 1px solid rgba(91, 66, 51, .16);
}
.routing-card::before,
.leadonly-card::before,
.contact-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
}
.leadonly-card,
.contact-form {
    position: relative;
    overflow: hidden;
}
.pilot-card {
    border-left: 1px solid rgba(91, 66, 51, .16);
}
.routing-points li,
.check-list li,
.kontakt-reassurance li {
    color: #3f2a22;
}
.routing-points .si-icon,
.check-list .si-icon,
.kontakt-reassurance .si-icon,
.form-reassurance .si-icon {
    color: var(--c-primary);
}

/* ---------- Boka: slot grid ---------- */
.booking-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: var(--c-accent-soft);
    border: 1px solid var(--c-border-strong);
    border-left: 4px solid var(--c-accent);
    border-radius: var(--radius);
    padding: 14px 16px;
    color: var(--c-text-soft);
    font-size: .95rem;
    margin-bottom: 24px;
}
.booking-note .si-icon { color: var(--c-accent); flex: 0 0 auto; margin-top: 2px; }

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}
.slots-grid .empty-state {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--c-text-muted);
    padding: 32px 0;
}

.slot-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 22px 18px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
}
.slot-card:hover {
    border-color: var(--c-border-strong);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.slot-card.is-empty {
    opacity: .55;
    background: var(--c-bg-soft);
}
.slot-time {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--c-text);
    letter-spacing: .5px;
}
.slot-district-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--c-text-soft);
    font-size: .95rem;
}
.slot-district-list strong { color: var(--c-primary); font-weight: 700; }
.slot-count-empty { color: var(--c-text-muted); font-size: .9rem; }
.slot-book-btn {
    margin-top: auto;
    width: 100%;
    background: linear-gradient(90deg, var(--c-primary), var(--c-primary-dark));
}
.slot-book-btn:disabled { opacity: .5; cursor: not-allowed; }

.slot-request-panel {
    margin-top: 28px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    max-width: 520px;
}
.slot-request-panel h2 { margin-top: 0; }
.form-hint { margin: 6px 0 0; font-size: 0.95rem; color: var(--c-text-soft); }

.contact-grid {
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    align-items: start;
}
.contact-info {
    background: #f6ead9;
    border: 1px solid #e8d3b7;
    border-radius: 8px;
    padding: 26px 24px;
    color: #5f4b41;
}
.contact-form-wrap {
    max-width: 640px;
}
.form-row input,
.form-row select,
.form-row textarea {
    background: #fffaf3;
    border-color: #d9c1a6;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(185, 130, 77, .18);
}

.ai-q-card,
.city-card,
.related-card {
    transition: border-color .18s, box-shadow .18s, transform .18s;
}
.ai-q-ico,
.city-card-ico {
    background: #f6ead9;
    color: var(--c-primary);
    border-radius: 999px;
}
.city-card-tag {
    background: rgba(255, 226, 189, .58);
}
.city-card-tag-soft {
    background: var(--c-primary-soft);
    color: var(--c-primary);
}

.internal-links-grid {
    gap: 18px;
}
.internal-links-col {
    background: rgba(255, 250, 243, .88);
    border: 1px solid rgba(91, 66, 51, .16);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 12px 28px rgba(58, 28, 19, .06);
}
.internal-links-col h3 {
    color: #945a34;
    border-bottom-color: #e5d3bf;
}
.internal-links-col a {
    color: #3f2a22;
}

.match-step {
    background: rgba(255, 250, 243, .92);
    border: 1px solid rgba(91, 66, 51, .16);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(58, 28, 19, .06);
    padding: 28px 26px;
}
.match-step:has(.match-step-image) {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.match-step-ico {
    background: #f6ead9;
    color: var(--c-primary);
    border-radius: 999px;
}

.cta-band:not(.cta-band-premium) {
    background: linear-gradient(135deg, #2b1711 0%, #17423b 100%);
    position: relative;
    overflow: hidden;
}
.cta-band:not(.cta-band-premium)::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 800px 400px at 20% 0%, rgba(185, 130, 77, .16), transparent 60%),
        radial-gradient(ellipse 800px 400px at 100% 100%, rgba(255, 255, 255, .06), transparent 60%);
    pointer-events: none;
}
.cta-band:not(.cta-band-premium) .cta-band-inner {
    position: relative;
    z-index: 1;
}
.cta-band:not(.cta-band-premium) .btn-primary {
    background: #ffe2bd;
    color: #3c2015;
    border-color: rgba(255, 226, 189, .82);
}
.cta-band:not(.cta-band-premium) .btn-primary:hover {
    background: #f6c98f;
    color: #2d1b16;
}
.cta-band:not(.cta-band-premium) .btn-ghost {
    color: #fff7eb;
    border-color: rgba(255, 250, 243, .42);
}
.cta-band:not(.cta-band-premium) .btn-ghost:hover {
    background: rgba(255, 250, 243, .12);
    border-color: rgba(255, 250, 243, .68);
    color: #fff;
}

@media (max-width: 900px) {
    .page-hero {
        padding: 64px 0 58px;
    }
    .page-hero h1 {
        font-size: 2.55rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 50px 0 52px;
    }
    .page-hero .eyebrow {
        font-size: .72rem;
        border-radius: 8px;
    }
    .page-hero h1 {
        font-size: 2.2rem;
    }
    .page-hero .lead {
        font-size: 1.03rem;
    }
    .page-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .content-narrow .content-block,
    .routing-card,
    .leadonly-card,
    .contact-info,
    .contact-form,
    .internal-links-col {
        padding: 24px 20px;
    }
}

/* ============================================================
   Senior UX action-green pass
   Green is reserved for primary decisions, trust anchors and
   active states; brass stays as a warm supporting accent.
   ============================================================ */

:root {
    --c-action: #123f37;
    --c-action-dark: #0b302a;
    --c-action-mid: #1b554b;
    --c-action-soft: #e7f0ed;
    --c-action-ring: rgba(18, 63, 55, .18);
    --shadow-action: 0 12px 26px rgba(18, 63, 55, .24);
}

.btn-primary,
.provider-cta,
.page-hero .btn-primary,
.lp-hero-actions .btn-primary,
.contact-form .btn-primary,
.routing-card .btn-primary,
.leadonly-card .btn-primary {
    background: linear-gradient(180deg, var(--c-action-mid), var(--c-action));
    color: #fff7eb;
    border-color: rgba(255, 250, 243, .10);
    box-shadow: var(--shadow-action), inset 0 1px 0 rgba(255, 255, 255, .12);
}
.btn-primary:hover,
.provider-cta:hover,
.page-hero .btn-primary:hover,
.lp-hero-actions .btn-primary:hover,
.contact-form .btn-primary:hover,
.routing-card .btn-primary:hover,
.leadonly-card .btn-primary:hover {
    background: linear-gradient(180deg, var(--c-action), var(--c-action-dark));
    color: #fff;
    border-color: rgba(255, 250, 243, .18);
    box-shadow: 0 16px 32px rgba(18, 63, 55, .30), inset 0 1px 0 rgba(255, 255, 255, .12);
}

.header-cta,
.brand-mark,
.footer-brand-mark {
    background: linear-gradient(180deg, var(--c-action-mid), var(--c-action));
}
.header-cta {
    box-shadow: 0 12px 24px rgba(18, 63, 55, .20);
}

.lp-hero-actions .btn-ghost,
.page-hero .btn-ghost {
    border-color: rgba(255, 250, 243, .46);
}
.lp-card-cta,
.related-card span,
.ai-q-cta,
.cert-card-cta .si-icon,
.city-card:hover h3,
.ai-q-card:hover h3,
.related-card:hover h3,
.internal-links-col a:hover {
    color: var(--c-action);
}

.platform-disclaimer-list .si-icon,
.trust-strip .si-icon,
.check-list .si-icon,
.routing-points .si-icon,
.kontakt-reassurance .si-icon,
.form-reassurance .si-icon,
.bullet-list li a,
.footer-legitimation .si-icon {
    color: var(--c-action);
}

.fast-answer,
.callout,
.form-disclaimer {
    border-left-color: var(--c-action);
}
.fast-answer-label,
.callout-title,
.routing-eyebrow {
    color: var(--c-action);
}
.faq details[open],
.related-card:hover,
.ai-q-card:hover,
.city-card:hover,
.provider-card:hover {
    border-color: rgba(18, 63, 55, .46);
    box-shadow: 0 18px 36px rgba(18, 63, 55, .12);
}
.faq details[open] summary {
    color: var(--c-action);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--c-action-mid);
    box-shadow: 0 0 0 3px var(--c-action-ring);
}

.routing-card::before,
.leadonly-card::before,
.contact-form::before,
.lp-hero-card::before {
    background: linear-gradient(90deg, var(--c-action), var(--c-accent));
}

.ai-q-ico,
.city-card-ico,
.match-step-ico,
.criterion-ico,
.cert-card-ico,
.feature-ico,
.service-card-ico {
    background: var(--c-action-soft);
    color: var(--c-action);
}

.price-compare .price-col,
.price-table .price-col,
.provider-line strong,
.provider-card-h h3 {
    color: var(--c-action);
}

.cta-band:not(.cta-band-premium),
.cta-band-premium {
    background: linear-gradient(135deg, #2b1711 0%, var(--c-action) 72%, #0b302a 100%);
}
.cta-band:not(.cta-band-premium) .btn-primary,
.cta-band-premium .btn-primary {
    background: #fff7eb;
    color: var(--c-action);
    border-color: rgba(255, 250, 243, .86);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
}
.cta-band:not(.cta-band-premium) .btn-primary:hover,
.cta-band-premium .btn-primary:hover {
    background: #ffe2bd;
    color: var(--c-action-dark);
}

.nav-link.is-active {
    background: var(--c-action-soft);
    color: var(--c-action);
}
.nav-link:hover {
    background: #f1e5d4;
}

/* ============================================================
   Homepage clarity refresh
   Original asset, fast decisions, lighter medical palette.
   ============================================================ */

:root {
    --home-ink: #10201c;
    --home-text: #263a35;
    --home-muted: #5d706b;
    --home-bg: #f7faf8;
    --home-surface: #ffffff;
    --home-line: #dbe8e3;
    --home-mint: #e4f4ed;
    --home-sky: #eaf6f7;
    --home-coral: #f2a984;
    --home-action: #17624f;
    --home-action-dark: #0f4538;
    --home-shadow: 0 14px 32px rgba(15, 69, 56, .12);
}

.site-header {
    background: rgba(255, 255, 255, .88);
    border-bottom-color: rgba(219, 232, 227, .9);
}

.brand-name,
.nav-link {
    color: var(--home-ink);
}

.nav-link:hover,
.nav-link.is-active {
    background: var(--home-mint);
    color: var(--home-action-dark);
}

.home-page {
    background: var(--home-bg);
    color: var(--home-text);
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page h4 {
    font-family: var(--font-sans);
    color: var(--home-ink);
}

.home-page .section {
    background: var(--home-bg);
    padding: 64px 0;
}

.home-page .section-soft {
    background: linear-gradient(180deg, #ffffff 0%, var(--home-bg) 100%);
}

.home-page .section-cool {
    background: var(--home-sky);
}

.home-page .section-warm {
    background: #f2f7f4;
}

.home-page .section-header {
    max-width: 720px;
    margin-bottom: 32px;
}

.home-page .section-header h2 {
    color: var(--home-ink);
    font-size: 2.15rem;
    line-height: 1.15;
}

.home-page .section-lead {
    color: var(--home-muted);
}

.home-page .section-eyebrow {
    background: var(--home-mint);
    color: var(--home-action-dark);
    border-radius: 8px;
    letter-spacing: .08em;
}

.home-page .lp-hero {
    min-height: 650px;
    padding: 84px 0 72px;
    background: var(--home-sky);
    isolation: isolate;
}

.home-page .lp-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
}

.home-page .lp-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
/* Dark scrim so the white hero text stays legible over the (bright) team photo.
   Heavier on the left where the copy sits, fading right to keep faces visible. */
.home-page .lp-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18,28,46,.82) 0%, rgba(18,28,46,.60) 42%, rgba(18,28,46,.28) 72%, rgba(18,28,46,.12) 100%);
}

/* Language picker tabs on /boka/ */
.lang-pick { margin: 0 0 22px; background: var(--c-primary-faint); border: 1px solid var(--c-border-cool); border-radius: var(--radius); padding: 18px 20px; }
.lang-pick-title { display:flex; align-items:center; gap:8px; font-weight:600; font-size:1.05rem; margin:0 0 12px; color: var(--c-primary-deep); }
.lang-tabs { display:flex; flex-wrap:wrap; gap:8px; }
.lang-tab { font:inherit; font-size:.95rem; padding:9px 16px; border:1px solid var(--c-border-cool); border-radius:999px; background:#fff; color: var(--c-primary-deep); cursor:pointer; transition: background .15s, border-color .15s, color .15s; }
.lang-tab:hover { border-color: var(--c-primary); }
.lang-tab.is-active { background: var(--c-primary); border-color: var(--c-primary); color:#fff; }

/* Single language line in the home hero (replaces the indicator boxes) */
.home-page .lp-hero-lang { display:flex; align-items:flex-start; gap:8px; color:#fff7eb; font-size:1.05rem; line-height:1.5; margin:6px 0 0; max-width:560px; text-shadow:0 1px 8px rgba(20,15,10,.35); }
.home-page .lp-hero-lang .ind-ico { flex:none; margin-top:3px; }

/* Home city cards (with photo) — separate from /stader/ .city-card */
.home-city-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:28px; }
.home-city-card { display:block; border-radius:14px; overflow:hidden; background:#fff; box-shadow:0 1px 3px rgba(0,0,0,.08); text-decoration:none; color:inherit; transition:transform .15s ease, box-shadow .15s ease; }
.home-city-card:hover { transform:translateY(-3px); box-shadow:0 12px 30px rgba(17,32,58,.14); }
.home-city-img { display:block; width:100%; height:190px; object-fit:cover; }
.home-city-body { display:block; padding:16px 18px; }
.home-city-name { display:block; font-size:1.3rem; font-weight:700; color:var(--c-primary-deep); }
.home-city-tag { display:block; margin-top:5px; font-size:.92rem; color:var(--c-text-soft); }
.home-city-credit { margin-top:18px; text-align:center; }
@media (max-width:760px){ .home-city-grid { grid-template-columns:1fr; } }

.home-page .lp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(247, 250, 248, .98) 0%, rgba(247, 250, 248, .94) 36%, rgba(247, 250, 248, .62) 64%, rgba(247, 250, 248, .16) 100%);
    pointer-events: none;
}

.home-page .lp-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 1;
    height: 72px;
    background: linear-gradient(180deg, rgba(247, 250, 248, 0), #ffffff 80%);
    pointer-events: none;
}

.home-page .lp-hero-inner {
    position: relative;
    z-index: 2;
    grid-template-columns: minmax(0, .98fr) minmax(320px, .58fr);
    align-items: center;
    gap: 48px;
}

.home-page .lp-hero-copy {
    max-width: 650px;
}

.home-page .lp-eyebrow {
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--home-line);
    color: var(--home-action-dark);
    border-radius: 8px;
    box-shadow: none;
    letter-spacing: .08em;
}

.home-page .lp-eyebrow::before {
    background: var(--home-coral);
}

.home-page .lp-hero-h1 {
    color: var(--home-ink);
    font-size: 3.45rem;
    line-height: 1.05;
    text-shadow: none;
    max-width: 620px;
}

.home-page .lp-hero-lead {
    color: var(--home-text);
    font-size: 1.12rem;
    max-width: 610px;
}

.home-page .lp-hero-actions {
    margin-bottom: 26px;
}

.home-page .lp-hero-actions .btn,
.home-page .cta-actions .btn {
    white-space: normal;
    justify-content: center;
}

.home-page .lp-hero-actions .btn-primary,
.home-page .cta-band-premium .btn-primary {
    background: var(--home-action);
    color: #fff;
    border-color: var(--home-action);
    box-shadow: 0 12px 24px rgba(23, 98, 79, .22);
}

.home-page .lp-hero-actions .btn-primary:hover,
.home-page .cta-band-premium .btn-primary:hover {
    background: var(--home-action-dark);
    color: #fff;
}

.home-page .lp-hero-actions .btn-ghost {
    background: rgba(255, 255, 255, .62);
    border-color: var(--home-line);
    color: var(--home-action-dark);
}

.home-page .lp-hero-actions .btn-ghost:hover {
    background: var(--home-mint);
    border-color: #bdd8cf;
    color: var(--home-action-dark);
}

.home-page .lp-indicators {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 650px;
}

.home-page .lp-indicators li {
    color: var(--home-muted);
    background: rgba(255, 255, 255, .68);
    border: 1px solid rgba(219, 232, 227, .8);
    border-radius: 8px;
    padding: 10px 12px;
    align-items: flex-start;
}

.home-page .lp-indicators .ind-ico {
    color: var(--home-action);
    margin-top: 2px;
}

.home-page .lp-hero-aside {
    align-items: center;
}

.home-page .lp-hero-card {
    max-width: 410px;
    border-radius: 8px;
    border: 1px solid rgba(219, 232, 227, .92);
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--home-shadow);
    padding: 22px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.home-page .lp-hero-card::before {
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--home-action), var(--home-coral));
    border-radius: 8px 8px 0 0;
}

.home-page .lp-card-kicker {
    color: var(--home-action-dark);
    margin-bottom: 10px;
}

.home-page .lp-card-title {
    font-size: 1.25rem;
    line-height: 1.2;
    margin: 0 0 14px;
}

.hero-choice-list {
    display: grid;
    gap: 8px;
}

.hero-choice {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 10px;
    min-height: 64px;
    padding: 10px 12px;
    border: 1px solid var(--home-line);
    border-radius: 8px;
    background: #fff;
    color: var(--home-ink);
    text-decoration: none;
    transition: border-color .16s, box-shadow .16s, transform .16s;
}

.hero-choice:hover {
    border-color: #b8d9cf;
    box-shadow: 0 10px 20px rgba(23, 98, 79, .10);
    transform: translateY(-1px);
    text-decoration: none;
}

.hero-choice-ico {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--home-action);
    background: var(--home-mint);
    border-radius: 8px;
}

.hero-choice strong,
.hero-choice small {
    display: block;
}

.hero-choice strong {
    font-size: .96rem;
    line-height: 1.25;
}

.hero-choice small {
    color: var(--home-muted);
    font-size: .8rem;
    line-height: 1.3;
    margin-top: 2px;
}

.hero-choice-arrow {
    color: var(--home-action);
}

.home-page .lp-card-cta {
    color: var(--home-action-dark);
    margin-top: 14px;
}

.home-page .platform-disclaimer {
    background: #ffffff;
    border-top: 1px solid var(--home-line);
    border-bottom: 1px solid var(--home-line);
}

.home-page .platform-disclaimer-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-page .platform-disclaimer-list li {
    color: var(--home-muted);
}

.home-page .platform-disclaimer-list .si-icon {
    color: var(--home-action);
}

.decision-note {
    max-width: 920px;
    margin: 0 auto 22px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    background: var(--home-sky);
    border: 1px solid var(--home-line);
    border-radius: 8px;
    padding: 16px 18px;
}

.decision-note-ico {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff;
    color: var(--home-action);
}

.decision-note h3,
.decision-note p {
    margin: 0;
}

.decision-note h3 {
    font-size: 1rem;
}

.decision-note p {
    color: var(--home-muted);
    font-size: .94rem;
    line-height: 1.45;
    margin-top: 2px;
}

.decision-note a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--home-action-dark);
    font-size: .92rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.home-page .cert-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.home-page .cert-card,
.home-page .cert-card:nth-child(2n),
.home-page .cert-card:nth-child(3n) {
    --card-accent: var(--home-action);
    --card-accent-dark: var(--home-action-dark);
    --card-icon-soft: #e6f3ee;
    min-height: 240px;
    border-radius: 8px;
    border: 1px solid var(--home-line);
    background: var(--home-surface);
    color: var(--home-ink);
    box-shadow: 0 8px 20px rgba(16, 32, 28, .06);
    padding: 22px;
}

.home-page .cert-card.cert-card-2 {
    --card-accent: #346b87;
    --card-accent-dark: #244d61;
    --card-icon-soft: #e6f2f7;
}

.home-page .cert-card.cert-card-3 {
    --card-accent: #18746f;
    --card-accent-dark: #0f514d;
    --card-icon-soft: #e4f4f1;
}

.home-page .cert-card.cert-card-4 {
    --card-accent: #aa6843;
    --card-accent-dark: #76482e;
    --card-icon-soft: #fff0e6;
}

.home-page .cert-card.cert-card-5 {
    --card-accent: #687535;
    --card-accent-dark: #495324;
    --card-icon-soft: #eef4df;
}

.home-page .cert-card.cert-card-6 {
    --card-accent: #a45d52;
    --card-accent-dark: #744038;
    --card-icon-soft: #fff0ed;
}

.home-page .cert-card:hover {
    border-color: color-mix(in srgb, var(--card-accent) 42%, white);
    box-shadow: var(--home-shadow);
}

.cert-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.home-page .cert-card-ico {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 8px;
    background: linear-gradient(145deg, var(--card-icon-soft) 0%, #ffffff 100%);
    border: 1px solid color-mix(in srgb, var(--card-accent) 18%, white);
    color: var(--card-accent);
    box-shadow: 0 10px 24px rgba(16, 32, 28, .08);
    margin: 0;
    transition: transform .18s ease, box-shadow .18s ease;
}

.home-page .cert-card-main-icon {
    width: 25px;
    height: 25px;
    stroke-width: 2.15;
}

.home-page .cert-card-ico-mini {
    position: absolute;
    right: -8px;
    bottom: -7px;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff;
    color: var(--card-accent);
    border: 1px solid color-mix(in srgb, var(--card-accent) 22%, white);
    box-shadow: 0 8px 16px rgba(16, 32, 28, .12);
}

.home-page .cert-card-ico-mini .si-icon {
    width: 14px;
    height: 14px;
    stroke-width: 2.4;
}

.home-page .cert-card-kicker,
.home-page .cert-card-h,
.home-page .cert-card-p,
.home-page .cert-card-cta {
    color: inherit;
}

.home-page .cert-card-kicker {
    margin: 0;
    color: var(--card-accent-dark);
    background: color-mix(in srgb, var(--card-icon-soft) 72%, white);
    border: 1px solid color-mix(in srgb, var(--card-accent) 14%, white);
    border-radius: 999px;
    padding: 4px 9px;
    font-size: .72rem;
    letter-spacing: .06em;
}

.home-page .cert-card-h {
    font-size: 1.22rem;
    line-height: 1.2;
}

.home-page .cert-card-p {
    color: var(--home-muted);
    opacity: 1;
    font-size: .95rem;
}

.cert-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}

.cert-card-badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 3px 9px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--card-icon-soft) 70%, white);
    color: var(--card-accent-dark);
    font-size: .78rem;
    font-weight: 650;
}

.home-page .cert-card-cta {
    align-self: flex-start;
    background: transparent;
    color: var(--card-accent-dark);
    border-radius: 0;
    padding: 0;
    margin-top: auto;
}

.home-page .cert-card:hover .cert-card-ico {
    transform: translateY(-1px);
}

.home-page .cert-card:hover .cert-card-cta .si-icon {
    transform: translateX(3px);
}

.home-page .match-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-page .match-step-image {
    border-radius: 8px;
}

.home-page .match-step h3 {
    font-size: 1.25rem;
}

.home-page .criterion-list,
.home-page .qa-item,
.home-page .trust-card,
.home-page .faq details {
    border-radius: 8px;
    border-color: var(--home-line);
    background: var(--home-surface);
    box-shadow: 0 8px 20px rgba(16, 32, 28, .05);
}

.home-page .criterion-row {
    grid-template-columns: 42px 240px minmax(0, 1fr);
    gap: 18px;
}

.home-page .criterion-ico,
.home-page .trust-ico {
    border-radius: 8px;
    background: var(--home-mint);
    color: var(--home-action);
    box-shadow: none;
}

.home-page .criterion-h h3,
.home-page .qa-q,
.home-page .trust-card h3 {
    color: var(--home-ink);
}

.home-page .criterion-what,
.home-page .criterion-why,
.home-page .qa-a p,
.home-page .trust-card p {
    color: var(--home-muted);
}

.home-page .qa-item {
    border-left: 3px solid var(--home-action);
    text-decoration: none;
}

.home-page .trust-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.home-page .trust-card {
    padding: 22px 18px;
}

.home-page .cta-band-premium {
    background: linear-gradient(135deg, var(--home-action-dark) 0%, var(--home-action) 100%);
}

.home-page .cta-band-premium::before {
    background: none;
}

.home-page .cta-band-premium h2,
.home-page .cta-band-premium p {
    color: #fff;
}

.site-footer {
    background: #10201c;
}

@media (max-width: 1180px) {
    .home-page .trust-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .home-page .lp-hero {
        min-height: 0;
        padding: 62px 0 58px;
    }

    .home-page .lp-hero::before {
        background: rgba(247, 250, 248, .90);
    }

    .home-page .lp-hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .home-page .lp-hero-card {
        max-width: none;
    }

    .home-page .cert-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-page .criterion-row {
        grid-template-columns: 40px minmax(0, 1fr);
    }

    .home-page .criterion-why {
        grid-column: 2;
    }

    .home-page .match-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .home-page .section {
        padding: 48px 0;
    }

    .home-page .lp-hero {
        padding: 46px 0 46px;
    }

    .home-page .lp-hero-bg img {
        object-position: 66% top;
    }

    .home-page .lp-hero-h1 {
        font-size: 2.45rem;
    }

    .home-page .lp-hero-lead {
        font-size: 1.02rem;
    }

    .home-page .lp-hero-actions .btn {
        width: 100%;
    }

    .home-page .lp-indicators,
    .home-page .platform-disclaimer-list,
    .home-page .cert-grid,
    .home-page .trust-grid {
        grid-template-columns: 1fr;
    }

    .decision-note {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .decision-note a {
        white-space: normal;
    }

    .home-page .section-header h2 {
        font-size: 1.85rem;
    }

    .home-page .cert-card,
    .home-page .cert-card:nth-child(2n),
    .home-page .cert-card:nth-child(3n) {
        min-height: 0;
    }
}

/* ============================================================
   Booking page aligned with homepage visual system
   ============================================================ */

.booking-page {
    background: var(--home-bg);
    color: var(--home-text);
}

.booking-page h1,
.booking-page h2,
.booking-page h3 {
    font-family: var(--font-sans);
    color: var(--home-ink);
}

.booking-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(247, 250, 248, .98) 0%, rgba(247, 250, 248, .88) 48%, rgba(234, 246, 247, .92) 100%),
        linear-gradient(135deg, #ffffff 0%, var(--home-sky) 100%);
    border-bottom: 1px solid var(--home-line);
    padding: 72px 0 64px;
}

.booking-hero::before {
    content: "";
    position: absolute;
    inset: auto 0 -1px 0;
    height: 70px;
    background: linear-gradient(180deg, rgba(247, 250, 248, 0), #ffffff 82%);
    pointer-events: none;
}

.booking-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 48px;
    align-items: center;
}

.booking-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin: 0 0 18px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--home-line);
    border-radius: 8px;
    color: var(--home-action-dark);
    letter-spacing: .08em;
}

.booking-hero .eyebrow a {
    color: var(--home-action-dark);
}

.booking-eyebrow,
.booking-card-kicker,
.booking-page .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    padding: 5px 10px;
    border-radius: 8px;
    background: var(--home-mint);
    color: var(--home-action-dark);
    font-size: .78rem;
    font-weight: 750;
    letter-spacing: .08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.booking-hero h1 {
    max-width: 740px;
    margin: 0 0 16px;
    color: var(--home-ink);
    font-size: 3.15rem;
    line-height: 1.06;
    letter-spacing: 0;
    text-shadow: none;
}

.booking-hero .lead {
    max-width: 660px;
    margin: 0 0 26px;
    color: var(--home-text);
    font-size: 1.11rem;
    line-height: 1.55;
}

.booking-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 24px;
}

.booking-page .btn-primary {
    background: var(--home-action);
    color: #fff;
    border-color: var(--home-action);
    box-shadow: 0 12px 24px rgba(23, 98, 79, .22);
}

.booking-page .btn-primary:hover {
    background: var(--home-action-dark);
    color: #fff;
}

.booking-page .btn-ghost {
    background: rgba(255, 255, 255, .72);
    border-color: var(--home-line);
    color: var(--home-action-dark);
}

.booking-page .btn-ghost:hover {
    background: var(--home-mint);
    border-color: #bdd8cf;
    color: var(--home-action-dark);
}

.booking-hero-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 760px;
}

.booking-hero-points li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid rgba(219, 232, 227, .86);
    border-radius: 8px;
    background: rgba(255, 255, 255, .72);
    color: var(--home-muted);
    font-size: .9rem;
    line-height: 1.35;
}

.booking-hero-points .si-icon {
    color: var(--home-action);
    margin-top: 1px;
}

.booking-summary-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(219, 232, 227, .92);
    border-radius: 8px;
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--home-shadow);
    padding: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.booking-summary-card::before,
.booking-page .slot-request-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--home-action), var(--home-coral));
}

.booking-card-kicker {
    background: transparent;
    padding: 0;
    margin-bottom: 16px;
}

.booking-summary-list {
    margin: 0;
    display: grid;
    gap: 0;
}

.booking-summary-list > div {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid var(--home-line);
}

.booking-summary-list > div:first-child {
    padding-top: 0;
}

.booking-summary-list dt {
    color: var(--home-muted);
    font-size: .82rem;
    font-weight: 750;
    letter-spacing: .06em;
    margin: 0;
    text-transform: uppercase;
}

.booking-summary-list dd {
    margin: 0;
    color: var(--home-ink);
    font-weight: 700;
}

.booking-summary-note {
    margin: 16px 0 0;
    color: var(--home-muted);
    font-size: .9rem;
    line-height: 1.45;
}

.booking-page .platform-disclaimer {
    background: #ffffff;
    border-top: 0;
    border-bottom: 1px solid var(--home-line);
}

.booking-page .platform-disclaimer-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-page .platform-disclaimer-list li {
    color: var(--home-muted);
}

.booking-page .platform-disclaimer-list .si-icon {
    color: var(--home-action);
}

.booking-slots-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--home-bg) 100%);
}

.booking-section-head {
    max-width: 720px;
    margin: 0 auto 28px;
    text-align: center;
}

.booking-section-head h2 {
    margin: 0 0 8px;
    font-size: 2.05rem;
}

.booking-section-head p {
    margin: 0;
    color: var(--home-muted);
}

.booking-page .lang-pick {
    max-width: 920px;
    margin: 0 auto 30px;
    padding: 18px;
    border: 1px solid var(--home-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 8px 20px rgba(16, 32, 28, .04);
}

.booking-page .lang-pick-title {
    color: var(--home-ink);
}

.booking-page .lang-pick-title .si-icon {
    color: var(--home-action);
}

.booking-page .lang-tab {
    min-height: 42px;
    border-color: var(--home-line);
    background: #fff;
    color: var(--home-ink);
    border-radius: 999px;
}

.booking-page .lang-tab:hover {
    border-color: #a9d5c8;
    background: var(--home-mint);
}

.booking-page .lang-tab.is-active {
    background: var(--home-action);
    border-color: var(--home-action);
    color: #fff;
}

.booking-page .lang-pick .small {
    margin-bottom: 0;
    color: var(--home-muted);
}

.booking-page .booking-note {
    max-width: 920px;
    margin: 0 auto 24px;
    background: var(--home-sky);
    border: 1px solid var(--home-line);
    border-left: 0;
    border-radius: 8px;
    color: var(--home-text);
    box-shadow: 0 8px 20px rgba(16, 32, 28, .04);
}

.booking-page .booking-note .si-icon {
    color: var(--home-action);
}

.booking-page .slots-grid {
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 14px;
}

.booking-page .slots-grid .empty-state {
    border: 1px solid var(--home-line);
    border-radius: 8px;
    background: #fff;
    color: var(--home-muted);
}

.booking-page .slot-card {
    align-items: stretch;
    text-align: left;
    gap: 9px;
    min-height: 190px;
    padding: 18px;
    border: 1px solid var(--home-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(16, 32, 28, .06);
}

.booking-page .slot-card:hover {
    border-color: #a9d5c8;
    box-shadow: var(--home-shadow);
}

.booking-page .slot-card.is-empty {
    background: #f4f8f6;
    opacity: 1;
}

.slot-card-label,
.slot-count {
    color: var(--home-muted);
    font-size: .78rem;
    font-weight: 750;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.booking-page .slot-time {
    font-family: var(--font-sans);
    color: var(--home-ink);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0;
}

.booking-page .slot-district-list {
    gap: 3px;
    color: var(--home-muted);
    font-size: .88rem;
}

.booking-page .slot-district-list strong {
    color: var(--home-action-dark);
}

.booking-page .slot-count-empty {
    color: var(--home-muted);
}

.booking-page .slot-langs {
    display: block;
    margin: 4px 0 2px;
    color: var(--home-action-dark);
    font-size: .82rem;
    font-weight: 600;
    line-height: 1.3;
}

.booking-page .slot-book-btn {
    margin-top: auto;
    width: 100%;
    border-radius: 8px;
    background: var(--home-action);
}

.booking-page .slot-book-btn:focus-visible {
    outline: 3px solid var(--home-action-dark);
    outline-offset: 2px;
}

.booking-page .slot-book-btn:disabled {
    background: #cad8d3;
    border-color: #cad8d3;
    color: #62746f;
    box-shadow: none;
}

.booking-page .slot-request-panel {
    position: relative;
    overflow: hidden;
    max-width: 640px;
    margin: 30px auto 0;
    padding: 26px;
    border: 1px solid var(--home-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--home-shadow);
}

.booking-page .slot-request-panel h2 {
    margin: 0 0 16px;
    font-size: 1.45rem;
}

.booking-page .contact-form {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.booking-page .contact-form::before {
    content: none;
}

.booking-page .form-row input,
.booking-page .form-row select,
.booking-page .form-row textarea {
    background: #fff;
    border-color: var(--home-line);
    border-radius: 8px;
}

.booking-page .form-row input:focus,
.booking-page .form-row select:focus,
.booking-page .form-row textarea:focus {
    border-color: var(--home-action);
    box-shadow: 0 0 0 3px rgba(23, 98, 79, .14);
}

.booking-page .form-hint,
.booking-page .form-reassurance,
.booking-page .form-consent {
    color: var(--home-muted);
}

.booking-page .banner-ok {
    border-color: #b8d9cf;
    background: var(--home-mint);
    color: var(--home-action-dark);
}

@media (max-width: 980px) {
    .booking-hero {
        padding: 58px 0 52px;
    }

    .booking-hero-inner {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .booking-hero-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .booking-hero {
        padding: 42px 0 42px;
    }

    .booking-hero h1 {
        font-size: 2.35rem;
    }

    .booking-hero .lead {
        font-size: 1.02rem;
    }

    .booking-hero-actions .btn {
        width: 100%;
    }

    .booking-summary-list > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .booking-page .platform-disclaimer-list,
    .booking-page .slots-grid {
        grid-template-columns: 1fr;
    }

    .booking-section-head {
        text-align: left;
    }

    .booking-section-head h2 {
        font-size: 1.75rem;
    }

    .booking-page .slot-request-panel {
        padding: 22px 18px;
    }
}

/* Desktop hero image framing: keep the team photo visible without sitting
   underneath the headline. Mobile keeps the previous full-bleed treatment. */
@media (min-width: 981px) {
    .home-page .lp-hero {
        min-height: 620px;
        background:
            linear-gradient(90deg, #f7faf8 0%, #f7faf8 46%, rgba(234, 246, 247, .92) 100%),
            var(--home-bg);
    }

    .home-page .lp-hero-bg {
        inset: 0 0 0 47%;
        border-left: 1px solid rgba(219, 232, 227, .72);
    }

    .home-page .lp-hero-bg img {
        object-position: 74% 48%;
    }

    .home-page .lp-hero-bg::after {
        background:
            linear-gradient(90deg, #f7faf8 0%, rgba(247, 250, 248, .72) 16%, rgba(247, 250, 248, .16) 42%, rgba(247, 250, 248, 0) 100%),
            linear-gradient(180deg, rgba(247, 250, 248, 0) 72%, #f7faf8 100%);
    }

    .home-page .lp-hero::before {
        background: linear-gradient(90deg, #f7faf8 0%, rgba(247, 250, 248, .96) 45%, rgba(247, 250, 248, .28) 68%, rgba(247, 250, 248, .04) 100%);
    }

    .home-page .lp-hero-lang {
        width: fit-content;
        max-width: 620px;
        margin-top: 6px;
        padding: 12px 14px;
        border: 1px solid rgba(219, 232, 227, .86);
        border-radius: 8px;
        background: rgba(255, 255, 255, .74);
        color: var(--home-muted);
        text-shadow: none;
    }

    .home-page .lp-hero-lang strong {
        color: var(--home-ink);
    }

    .home-page .lp-hero-lang .ind-ico {
        color: var(--home-action);
    }

    .home-page .lp-hero-card {
        background: rgba(255, 255, 255, .94);
    }
}

@media (max-width: 980px) {
    .home-page .lp-hero::before {
        background: rgba(247, 250, 248, .88);
    }

    .home-page .lp-hero-bg::after {
        background:
            linear-gradient(180deg, rgba(247, 250, 248, .76) 0%, rgba(247, 250, 248, .88) 62%, #f7faf8 100%);
    }

    .home-page .lp-hero-lang {
        padding: 12px 14px;
        border: 1px solid rgba(219, 232, 227, .86);
        border-radius: 8px;
        background: rgba(255, 255, 255, .76);
        color: var(--home-muted);
        text-shadow: none;
    }

    .home-page .lp-hero-lang strong {
        color: var(--home-ink);
    }

    .home-page .lp-hero-lang .ind-ico {
        color: var(--home-action);
    }
}

/* ---------- Boka: intyg picker chips ---------- */
.intyg-picker { margin-bottom: 22px; }
.intyg-picker-title { font-weight: 600; color: var(--c-text); margin: 0 0 10px; }
.intyg-picker-group {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--c-primary);
    margin: 18px 0 8px;
}
.intyg-picker-group:first-of-type { margin-top: 8px; }
.intyg-chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 4px; }
.intyg-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid var(--c-border);
    border-radius: 999px;
    background: #fff;
    color: var(--c-text-soft);
    font-size: .92rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.intyg-chip:hover { border-color: var(--c-primary); color: var(--c-primary); }
.intyg-chip.is-active { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }
.intyg-picker-sub { margin-top: 16px; }
.intyg-chip-special { border-style: dashed; color: var(--c-text-muted); }
.intyg-chip-special:hover { border-color: var(--c-accent); color: var(--c-accent); }
.intyg-chip-special.is-active { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }

/* ============================================================
   Interior pages aligned with the homepage system
   Applies to question, certificate, static and city content pages.
   ============================================================ */

body {
    background: var(--home-bg);
}

.page-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(247, 250, 248, .98) 0%, rgba(247, 250, 248, .94) 48%, rgba(234, 246, 247, .92) 100%),
        linear-gradient(135deg, #ffffff 0%, var(--home-sky) 100%);
    border-bottom: 1px solid var(--home-line);
    padding: 66px 0 58px;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .62), rgba(255, 255, 255, 0) 72%),
        radial-gradient(ellipse 760px 420px at 88% 5%, rgba(228, 244, 237, .72), transparent 62%);
    pointer-events: none;
}

.page-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 58px;
    background: linear-gradient(180deg, rgba(247, 250, 248, 0), var(--home-bg) 82%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    width: fit-content;
    margin: 0 0 18px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--home-line);
    border-radius: 8px;
    color: var(--home-action-dark);
    letter-spacing: .08em;
    line-height: 1.4;
}

.page-hero .eyebrow a {
    color: var(--home-action-dark);
    text-decoration-color: rgba(23, 98, 79, .32);
}

.page-hero .eyebrow a:hover {
    color: var(--home-action);
    text-decoration-color: var(--home-action);
}

.page-hero h1 {
    max-width: 920px;
    margin: 0 0 16px;
    color: var(--home-ink);
    font-family: var(--font-sans);
    font-size: 3rem;
    line-height: 1.08;
    letter-spacing: 0;
    text-shadow: none;
}

.page-hero .lead {
    max-width: 760px;
    color: var(--home-text);
    font-size: 1.13rem;
    line-height: 1.58;
}

.page-hero-actions {
    margin-top: 24px;
}

.page-hero .btn-primary {
    background: var(--home-action);
    color: #fff;
    border-color: var(--home-action);
    box-shadow: 0 12px 24px rgba(23, 98, 79, .22);
}

.page-hero .btn-primary:hover {
    background: var(--home-action-dark);
    color: #fff;
}

.page-hero .btn-ghost {
    background: rgba(255, 255, 255, .72);
    border-color: var(--home-line);
    color: var(--home-action-dark);
}

.page-hero .btn-ghost:hover {
    background: var(--home-mint);
    border-color: #bdd8cf;
    color: var(--home-action-dark);
}

.platform-disclaimer {
    background: #ffffff;
    border-top: 0;
    border-bottom: 1px solid var(--home-line);
}

.platform-disclaimer-list li {
    color: var(--home-muted);
}

.platform-disclaimer-list .si-icon {
    color: var(--home-action);
}

.section,
.section-soft {
    background: var(--home-bg);
}

.section-alt,
.section-warm,
.routing-section,
.internal-links {
    background: #f2f7f4;
}

.section-cool {
    background: var(--home-sky);
}

.content-narrow {
    max-width: 920px;
}

.content-narrow .content-block,
.fast-answer,
.callout,
.faq details,
.related-card,
.ai-q-card,
.city-card,
.leadonly-card,
.routing-card,
.contact-form {
    border: 1px solid var(--home-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(16, 32, 28, .05);
}

.content-narrow .content-block {
    padding: 28px;
    margin-bottom: 18px;
}

.content-narrow .content-block:last-child {
    border: 1px solid var(--home-line);
}

.content-narrow h2,
.article-section h2,
.leadonly-card h2,
.leadonly-card h3,
.routing-card h2,
.ai-q-card h3,
.city-card h3,
.related-card h3 {
    color: var(--home-ink);
    font-family: var(--font-sans);
    letter-spacing: 0;
}

.content-narrow p,
.article-section p,
.leadonly-card p,
.routing-card > p,
.related-card p,
.ai-q-card p,
.city-card p {
    color: var(--home-muted);
}

.fast-answer {
    position: relative;
    overflow: hidden;
    border-left: 1px solid var(--home-line);
    padding: 24px 26px;
}

.fast-answer::before,
.routing-card::before,
.leadonly-card::before,
.contact-form::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--home-action), var(--home-coral));
}

.fast-answer-strong {
    background: #fff;
}

.fast-answer-label,
.callout-title,
.leadonly-eyebrow,
.routing-eyebrow,
.ai-q-cta,
.related-card span,
.city-card-tag {
    color: var(--home-action-dark);
}

.fast-answer-body {
    color: var(--home-ink);
    font-size: 1.05rem;
    line-height: 1.62;
}

.bullet-list li {
    color: var(--home-muted);
}

.bullet-list li::before {
    background: var(--home-action);
}

.bullet-list li strong {
    color: var(--home-ink);
}

.bullet-list li a,
.faq-answer a {
    color: var(--home-action-dark);
}

.faq details[open],
.related-card:hover,
.ai-q-card:hover,
.city-card:hover,
.provider-card:hover {
    border-color: #a9d5c8;
    box-shadow: var(--home-shadow);
}

.faq details[open] summary {
    color: var(--home-action-dark);
}

.ai-q-ico,
.city-card-ico,
.feature-ico,
.service-card-ico {
    background: var(--home-mint);
    color: var(--home-action);
    border-radius: 8px;
}

.cta-band:not(.cta-band-premium),
.cta-band-premium {
    background: linear-gradient(135deg, var(--home-action-dark) 0%, var(--home-action) 100%);
}

.cta-band:not(.cta-band-premium)::before,
.cta-band-premium::before {
    background: none;
}

.cta-band:not(.cta-band-premium) .btn-primary,
.cta-band-premium .btn-primary {
    background: #fff;
    color: var(--home-action-dark);
    border-color: rgba(255, 255, 255, .82);
}

.cta-band:not(.cta-band-premium) .btn-primary:hover,
.cta-band-premium .btn-primary:hover {
    background: var(--home-mint);
    color: var(--home-action-dark);
}

.cta-band:not(.cta-band-premium) .btn-ghost,
.cta-band-premium .btn-ghost-light {
    color: #fff;
    border-color: rgba(255, 255, 255, .38);
}

.cta-band:not(.cta-band-premium) .btn-ghost:hover,
.cta-band-premium .btn-ghost-light:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .62);
    color: #fff;
}

@media (max-width: 720px) {
    .page-hero {
        padding: 46px 0 44px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .page-hero .lead {
        font-size: 1.02rem;
    }

    .page-hero .eyebrow {
        border-radius: 8px;
        font-size: .72rem;
    }

    .page-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .content-narrow .content-block,
    .fast-answer,
    .routing-card,
    .leadonly-card,
    .contact-form {
        padding: 22px 18px;
    }
}

/* ============================================================
   Homepage screenshot structure
   ============================================================ */

body.is-home {
    background: #08231d;
}

.is-home .page-shell {
    position: relative;
    isolation: isolate;
    max-width: none;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.is-home .page-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 8%, rgba(216, 167, 88, .42) 0, rgba(216, 167, 88, .20) 24%, transparent 46%),
        radial-gradient(circle at 86% 20%, rgba(34, 143, 140, .34) 0, rgba(34, 143, 140, .18) 28%, transparent 52%),
        radial-gradient(circle at 32% 86%, rgba(12, 76, 59, .30) 0, transparent 44%),
        linear-gradient(135deg, #06251f 0%, #0e4538 32%, #f1d99b 70%, #dceee5 100%);
}

.is-home .site-header,
.is-home main,
.is-home .site-footer {
    position: relative;
    z-index: 1;
}

.is-home .site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 30;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.is-home .header-inner {
    min-height: 104px;
}

.is-home .brand,
.is-home .brand:hover,
.is-home .brand-name,
.is-home .brand-suffix,
.is-home .nav-link {
    color: #fff9e8;
    text-shadow: 0 1px 12px rgba(9, 24, 21, .32);
}

.is-home .brand-mark {
    background: linear-gradient(145deg, rgba(20, 111, 104, .96) 0%, rgba(9, 78, 72, .96) 100%);
    border: 1px solid rgba(255, 255, 255, .22);
    box-shadow: 0 10px 26px rgba(6, 25, 22, .24);
}

.is-home .nav-link {
    font-weight: 650;
}

.is-home .primary-nav li:nth-child(5) {
    display: none;
}

.is-home .nav-link:hover,
.is-home .nav-link.is-active {
    background: rgba(255, 255, 255, .14);
    color: #fff;
    text-decoration: none;
}

.is-home .header-cta {
    background: linear-gradient(135deg, #209b9c 0%, #d8a758 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 14px 28px rgba(4, 25, 24, .24);
}

.is-home .home-page {
    --home-cream: #fffaf0;
    --home-paper: #fffdf8;
    --home-ink: #08231d;
    --home-text: #213a34;
    --home-muted: #53675f;
    --home-line: #d8e2dc;
    --home-mint: #dff2eb;
    --home-teal: #228f8c;
    --home-brass: #c99655;
    background: rgba(255, 253, 248, .78);
    color: var(--home-text);
}

.is-home .home-page h1,
.is-home .home-page h2,
.is-home .home-page h3 {
    font-family: var(--font-sans);
    letter-spacing: 0;
}

.is-home .home-page .lp-hero {
    position: relative;
    min-height: 625px;
    padding: 174px 0 94px;
    overflow: hidden;
    background: #0b302b;
}

.is-home .home-page .lp-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    border: 0;
}

.is-home .home-page .lp-hero-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.is-home .home-page .lp-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 41, 35, .94) 0%, rgba(7, 41, 35, .82) 28%, rgba(7, 41, 35, .50) 50%, rgba(7, 41, 35, .10) 78%),
        linear-gradient(180deg, rgba(6, 22, 19, .18) 0%, rgba(6, 22, 19, .08) 56%, rgba(6, 22, 19, .20) 100%);
}

.is-home .home-page .lp-hero::before,
.is-home .home-page .lp-hero::after {
    content: none;
}

.is-home .home-page .lp-hero-inner {
    position: relative;
    z-index: 2;
    display: block;
}

.is-home .home-page .lp-hero-copy {
    max-width: 630px;
}

.is-home .home-page .lp-eyebrow,
.is-home .home-page .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: .76rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.is-home .home-page .lp-eyebrow {
    margin: 0 0 18px;
    color: #fff6df;
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: none;
}

.is-home .home-page .lp-eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--home-brass);
}

.is-home .home-page .lp-hero-h1 {
    max-width: 580px;
    margin: 0 0 18px;
    color: #fff8e6;
    font-size: clamp(3rem, 5vw, 4.45rem);
    line-height: 1.06;
    font-weight: 820;
    text-shadow: 0 2px 20px rgba(5, 25, 21, .32);
}

.is-home .home-page .lp-hero-lead {
    max-width: 590px;
    margin: 0 0 28px;
    color: rgba(255, 250, 232, .92);
    font-size: 1.13rem;
    line-height: 1.6;
    text-shadow: 0 1px 10px rgba(5, 25, 21, .28);
}

.is-home .home-page .lp-hero-actions {
    margin: 0;
}

.is-home .home-page .lp-hero-actions .btn-primary {
    min-height: 58px;
    padding-inline: 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2aa3a3 0%, #d4a354 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 20px 42px rgba(6, 27, 24, .30);
}

.is-home .home-page .section {
    padding: 72px 0;
}

.is-home .home-page .section-header {
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
}

.is-home .home-page .section-header h2 {
    margin: 0 0 12px;
    color: var(--home-ink);
    font-size: clamp(2rem, 3vw, 2.65rem);
    line-height: 1.12;
    font-weight: 820;
}

.is-home .home-page .section-header h2::after {
    display: none;
}

.is-home .home-page .section-lead {
    max-width: 720px;
    margin: 0 auto;
    color: var(--home-text);
    font-size: 1rem;
    line-height: 1.55;
}

.is-home .home-page .section-eyebrow {
    margin: 0 0 14px;
    color: #174e42;
    background: #dff3eb;
}

.is-home .home-cert-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 250, 240, .92) 0%, rgba(255, 253, 248, .88) 100%);
    border-top: 8px solid #d9aa5f;
}

.is-home .home-cert-section::before {
    content: "";
    position: absolute;
    right: -5%;
    top: -8px;
    width: 44%;
    height: 148px;
    background: #d9aa5f;
    border-bottom-left-radius: 150px;
    opacity: .88;
}

.is-home .home-cert-section .container {
    position: relative;
    z-index: 1;
}

.home-intyg-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    max-width: 1040px;
    margin: 28px auto 0;
}
.home-intyg-more {
    text-align: center;
    margin: 22px 0 0;
}
.home-intyg-more a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    text-decoration: none;
}
.home-intyg-more a:hover {
    text-decoration: underline;
}

.home-intyg-card {
    position: relative;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 26px 22px 28px;
    border: 1px solid var(--home-line);
    border-radius: 8px;
    background: #fff;
    color: var(--home-ink);
    text-align: center;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(19, 45, 39, .12);
    overflow: hidden;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.home-intyg-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 9px;
    background: linear-gradient(90deg, var(--home-teal), var(--home-brass));
}

.home-intyg-card:hover {
    color: var(--home-ink);
    text-decoration: none;
    transform: translateY(-3px);
    border-color: #b4ccc3;
    box-shadow: 0 22px 42px rgba(19, 45, 39, .18);
}

.home-intyg-ico {
    display: inline-flex;
    width: 72px;
    height: 72px;
    align-items: center;
    justify-content: center;
    color: #7e8b6d;
}

.home-intyg-ico .si-icon {
    width: 64px;
    height: 64px;
    stroke-width: 1.55;
}

.home-intyg-label {
    display: block;
    color: var(--home-ink);
    font-size: 1.28rem;
    font-weight: 800;
    line-height: 1.2;
}

.is-home .home-city-section {
    background:
        linear-gradient(180deg, rgba(247, 234, 217, .90) 0%, rgba(255, 248, 237, .88) 100%);
}

.is-home .home-city-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    max-width: 1040px;
    margin: 28px auto 0;
}

.is-home .home-city-card {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(48, 38, 29, .14);
    transition: transform .16s ease, box-shadow .16s ease;
}

.is-home .home-city-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 42px rgba(48, 38, 29, .18);
    text-decoration: none;
}

.is-home .home-city-img {
    display: block;
    width: 100%;
    height: 178px;
    object-fit: cover;
}

.is-home .home-city-body {
    display: block;
    padding: 18px 20px 20px;
}

.is-home .home-city-name {
    display: block;
    color: var(--home-ink);
    font-size: 1.28rem;
    font-weight: 820;
    line-height: 1.2;
}

.is-home .home-city-tag {
    display: block;
    margin-top: 6px;
    color: #33463f;
    font-size: .92rem;
    line-height: 1.35;
}

.is-home .home-city-credit {
    max-width: 900px;
    margin: 20px auto 0;
    color: #5b5148;
    text-align: center;
    font-size: .78rem;
}

.is-home .home-care-section {
    background: rgba(255, 255, 255, .88);
}

.home-care-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    max-width: 1040px;
    margin: 28px auto 0;
}

.home-care-card {
    min-height: 190px;
    padding: 24px 20px 22px;
    border: 1px solid var(--home-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(18, 44, 39, .10);
}

.home-care-ico {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 8px;
    background: var(--home-mint);
    color: var(--home-teal);
}

.home-care-ico .si-icon {
    width: 24px;
    height: 24px;
}

.home-care-card h3 {
    margin: 0 0 8px;
    color: var(--home-ink);
    font-size: 1.08rem;
    line-height: 1.25;
}

.home-care-card p {
    margin: 0;
    color: #30443d;
    font-size: .93rem;
    line-height: 1.45;
}

.is-home .home-faq-section {
    background: rgba(237, 246, 244, .88);
}

.is-home .faq-section {
    max-width: 1040px;
}

.is-home .home-faq-section .section-header {
    margin-bottom: 28px;
}

.is-home .home-faq-section .faq {
    max-width: 1040px;
    margin: 0 auto;
}

.is-home .home-faq-section .faq details {
    border: 1px solid var(--home-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(18, 44, 39, .10);
}

.is-home .home-faq-section .faq details + details {
    margin-top: 12px;
}

.is-home .home-faq-section .faq summary {
    min-height: 56px;
    padding: 16px 20px;
    color: var(--home-ink);
    font-weight: 760;
}

.is-home .home-faq-section .faq-answer {
    color: #314940;
}

.is-home .site-footer {
    margin-top: 0;
    padding: 44px 0 26px;
    background:
        radial-gradient(ellipse at 70% 20%, rgba(37, 117, 99, .28), transparent 46%),
        #08231d;
}

.home-footer-main {
    display: grid;
    grid-template-columns: minmax(180px, 1.1fr) minmax(160px, .75fr) minmax(190px, .8fr) minmax(160px, .8fr);
    gap: 38px;
    align-items: start;
}

.home-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: #fff8e8;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 800;
}

.home-footer-brand:hover {
    color: #fff;
    text-decoration: none;
}

.home-footer-brand-mark {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: linear-gradient(145deg, #0f625d 0%, #0b4f49 100%);
    color: #e2b764;
    overflow: hidden;
}

.home-footer-brand-mark .si-icon {
    width: 16px;
    height: 16px;
}

.home-footer-brand-mark .si-icon-doctorLogo {
    width: 22px;
    height: 22px;
}

.brand-mark,
.footer-brand-mark {
    background: linear-gradient(145deg, #0f625d 0%, #0b4f49 100%);
    color: #e2b764;
}

.home-footer-links {
    display: grid;
    gap: 6px;
}

.home-footer-links a {
    color: rgba(255, 250, 232, .82);
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.35;
}

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

.home-footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    color: #d0a25a;
}

.home-footer-social span,
.home-footer-social a {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
}

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

.home-footer-social .si-icon {
    width: 21px;
    height: 21px;
    stroke-width: 2.35;
}

.home-footer-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(214, 166, 86, .55);
    color: rgba(255, 250, 232, .76);
    font-size: .82rem;
}

@media (max-width: 980px) {
    .is-home .home-page .lp-hero {
        min-height: 560px;
        padding: 142px 0 72px;
    }

    .is-home .home-page .lp-hero-bg img {
        object-position: 62% top;
    }

    .home-care-grid,
    .is-home .home-city-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-intyg-grid {
        grid-template-columns: 1fr;
    }

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

    .home-footer-social {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .is-home .site-header {
        position: absolute;
    }

    .is-home .header-inner {
        min-height: 78px;
    }

    .is-home .nav-toggle {
        border-color: rgba(255, 255, 255, .45);
        background: rgba(4, 24, 21, .22);
    }

    .is-home .nav-toggle-bar {
        background: #fff;
    }

    .is-home .primary-nav {
        top: 72px;
        background: rgba(8, 35, 29, .98);
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .is-home .primary-nav li:nth-child(5) {
        display: list-item;
    }

    .is-home .home-page .lp-hero {
        min-height: 0;
        padding: 118px 0 54px;
    }

    .is-home .home-page .lp-hero-bg img {
        object-position: 70% top;
    }

    .is-home .home-page .lp-hero-bg::after {
        background:
            linear-gradient(90deg, rgba(7, 41, 35, .94) 0%, rgba(7, 41, 35, .82) 54%, rgba(7, 41, 35, .46) 100%),
            linear-gradient(180deg, rgba(6, 22, 19, .12), rgba(6, 22, 19, .28));
    }

    .is-home .home-page .lp-hero-h1 {
        font-size: 2.55rem;
    }

    .is-home .home-page .lp-hero-lead {
        font-size: 1rem;
    }

    .is-home .home-page .lp-hero-actions .btn-primary {
        width: 100%;
    }

    .is-home .home-page .section {
        padding: 52px 0;
    }

    .is-home .home-cert-section::before {
        width: 62%;
        height: 92px;
        border-bottom-left-radius: 90px;
    }

    .home-care-grid,
    .is-home .home-city-grid {
        grid-template-columns: 1fr;
    }

    .home-intyg-card,
    .home-care-card {
        min-height: 0;
    }

    .home-footer-main {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .home-footer-meta {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
}

/* ----------------------------------------------------------------------
   /alla-intyg/ — synkad med home-designen (vita kort, mjuk skugga,
   accent-rubriker). Scopat till .intyg-* som bara används på den sidan.
---------------------------------------------------------------------- */
.intyg-group-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--home-ink, var(--c-primary-deep));
}
.intyg-group-title::before {
    content: "";
    width: 24px;
    height: 4px;
    border-radius: 999px;
    background: #d9aa5f;
}
.intyg-grid {
    gap: 22px;
}
.intyg-card {
    background: #fff;
    border: 1px solid var(--home-line, var(--c-border-cool));
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 16px 32px rgba(19, 45, 39, .10);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.intyg-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 40px rgba(19, 45, 39, .15);
    border-color: #d9aa5f;
}
.intyg-card-format {
    background: var(--home-sky, #eaf6f7);
    border-color: var(--home-line, var(--c-border-cool));
}

/* ----------------------------------------------------------------------
   Home — intygskort grupperade i kategorier
---------------------------------------------------------------------- */
.home-intyg-groups {
    max-width: 1040px;
    margin: 28px auto 0;
    display: flex;
    flex-direction: column;
    gap: 44px;
}
.home-intyg-group-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--home-ink, var(--c-primary-deep));
}
.home-intyg-group-title::before {
    content: "";
    width: 24px;
    height: 4px;
    border-radius: 999px;
    background: #d9aa5f;
}
.home-intyg-group .home-intyg-grid {
    margin: 0;
    max-width: none;
}
.home-intyg-sub {
    display: block;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--c-text-soft);
}

/* /boka/ — "byt intyg" hopfällbar (collapsed by default; håller pickern ur funneln) */
.intyg-switch {
    margin-top: 40px;
    border-top: 1px solid var(--c-border-cool);
    padding-top: 22px;
}
.intyg-switch > summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--c-primary);
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.intyg-switch > summary::-webkit-details-marker { display: none; }
.intyg-switch > summary::before { content: "↺"; }
.intyg-switch[open] > summary { margin-bottom: 18px; }

/* ----------------------------------------------------------------------
   /fragor/ — visuellt synkad med startsidan
---------------------------------------------------------------------- */
body.is-questions {
    background: #08231d;
}

.is-questions .page-shell {
    position: relative;
    isolation: isolate;
    max-width: none;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.is-questions .page-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 8%, rgba(216, 167, 88, .42) 0, rgba(216, 167, 88, .20) 24%, transparent 46%),
        radial-gradient(circle at 86% 20%, rgba(34, 143, 140, .34) 0, rgba(34, 143, 140, .18) 28%, transparent 52%),
        radial-gradient(circle at 32% 86%, rgba(12, 76, 59, .30) 0, transparent 44%),
        linear-gradient(135deg, #06251f 0%, #0e4538 32%, #f1d99b 70%, #dceee5 100%);
}

.is-questions .site-header,
.is-questions main,
.is-questions .site-footer {
    position: relative;
    z-index: 1;
}

.is-questions .site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 30;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.is-questions .header-inner {
    min-height: 104px;
}

.is-questions .brand,
.is-questions .brand:hover,
.is-questions .brand-name,
.is-questions .brand-suffix,
.is-questions .nav-link {
    color: #fff9e8;
    text-shadow: 0 1px 12px rgba(9, 24, 21, .32);
}

.is-questions .brand-mark {
    background: linear-gradient(145deg, rgba(20, 111, 104, .96) 0%, rgba(9, 78, 72, .96) 100%);
    border: 1px solid rgba(255, 255, 255, .22);
    box-shadow: 0 10px 26px rgba(6, 25, 22, .24);
}

.is-questions .nav-link {
    font-weight: 650;
}

.is-questions .primary-nav li:nth-child(5) {
    display: none;
}

.is-questions .nav-link:hover,
.is-questions .nav-link.is-active {
    background: rgba(255, 255, 255, .14);
    color: #fff;
    text-decoration: none;
}

.is-questions .header-cta {
    background: linear-gradient(135deg, #209b9c 0%, #d8a758 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 14px 28px rgba(4, 25, 24, .24);
}

.questions-page {
    --home-cream: #fffaf0;
    --home-paper: #fffdf8;
    --home-ink: #08231d;
    --home-text: #213a34;
    --home-muted: #53675f;
    --home-line: #d8e2dc;
    --home-mint: #dff2eb;
    --home-teal: #228f8c;
    --home-brass: #c99655;
    --home-shadow: 0 16px 32px rgba(19, 45, 39, .12);
    background: rgba(255, 253, 248, .78);
    color: var(--home-text);
}

.questions-page h1,
.questions-page h2,
.questions-page h3,
.questions-page h4 {
    font-family: var(--font-sans);
    letter-spacing: 0;
}

.questions-hero {
    position: relative;
    min-height: 560px;
    padding: 174px 0 94px;
    overflow: hidden;
    background: #0b302b;
    border-bottom: 0;
}

.questions-hero::before,
.questions-hero::after {
    content: none;
}

.questions-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
}

.questions-hero-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.questions-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 41, 35, .94) 0%, rgba(7, 41, 35, .82) 30%, rgba(7, 41, 35, .50) 52%, rgba(7, 41, 35, .12) 80%),
        linear-gradient(180deg, rgba(6, 22, 19, .16) 0%, rgba(6, 22, 19, .10) 56%, rgba(6, 22, 19, .22) 100%);
}

.questions-hero .container {
    position: relative;
    z-index: 2;
}

.questions-hero-copy {
    max-width: 720px;
}

.questions-hero .eyebrow,
.questions-hero .lp-eyebrow,
.questions-page .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: .76rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.questions-hero .eyebrow {
    margin: 0 0 16px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 250, 232, .86);
}

.questions-hero .eyebrow a {
    color: #fff9e8;
    text-decoration-color: rgba(255, 249, 232, .36);
}

.questions-hero .lp-eyebrow {
    margin: 0 0 18px;
    color: #fff6df;
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: none;
}

.questions-hero .lp-eyebrow::before,
.questions-page .section-eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--home-brass);
}

.questions-hero h1 {
    max-width: 680px;
    margin: 0 0 18px;
    color: #fff8e6;
    font-size: clamp(3rem, 5vw, 4.35rem);
    line-height: 1.06;
    font-weight: 820;
    text-shadow: 0 2px 20px rgba(5, 25, 21, .32);
}

.questions-hero .lead {
    max-width: 650px;
    margin: 0 0 28px;
    color: rgba(255, 250, 232, .92);
    font-size: 1.13rem;
    line-height: 1.6;
    text-shadow: 0 1px 10px rgba(5, 25, 21, .28);
}

.questions-hero .page-hero-actions {
    margin: 0;
}

.questions-hero .btn-primary {
    min-height: 58px;
    padding-inline: 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2aa3a3 0%, #d4a354 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 20px 42px rgba(6, 27, 24, .30);
}

.questions-hero .btn-primary:hover {
    background: linear-gradient(135deg, #18898b 0%, #c19043 100%);
    color: #fff;
}

.questions-hero .btn-ghost {
    min-height: 48px;
    border-color: rgba(255, 255, 255, .38);
    color: #fff9e8;
    background: rgba(255, 255, 255, .08);
}

.questions-hero .btn-ghost:hover {
    border-color: rgba(255, 255, 255, .62);
    background: rgba(255, 255, 255, .14);
    color: #fff;
}

.questions-index-section {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background:
        linear-gradient(180deg, rgba(255, 250, 240, .92) 0%, rgba(255, 253, 248, .88) 100%);
    border-top: 8px solid #d9aa5f;
}

.questions-index-section::before {
    content: "";
    position: absolute;
    right: -5%;
    top: -8px;
    width: 44%;
    height: 148px;
    background: #d9aa5f;
    border-bottom-left-radius: 150px;
    opacity: .88;
}

.questions-index-section .container {
    position: relative;
    z-index: 1;
}

.questions-page .section-header {
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
}

.questions-page .section-header h2,
.questions-page .content-narrow > h2 {
    color: var(--home-ink);
    font-weight: 820;
}

.questions-page .section-header h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 3vw, 2.65rem);
    line-height: 1.12;
}

.questions-page .section-header h2::after {
    display: none;
}

.questions-page .section-eyebrow {
    margin: 0 0 14px;
    color: #174e42;
    background: #dff3eb;
}

.questions-page .section-lead {
    max-width: 720px;
    margin: 0 auto;
    color: var(--home-text);
    font-size: 1rem;
    line-height: 1.55;
}

.questions-page .content-narrow {
    max-width: 980px;
}

.questions-page .content-narrow > p:first-child {
    max-width: 860px;
    margin: 0 auto 24px;
    color: var(--home-text);
    font-size: 1.05rem;
    line-height: 1.65;
    text-align: center;
}

.questions-page .content-narrow > h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 48px 0 16px;
    font-size: 1.5rem;
}

.questions-page .content-narrow > h2::before {
    content: "";
    flex: none;
    width: 24px;
    height: 4px;
    border-radius: 999px;
    background: #d9aa5f;
}

.questions-page .content-narrow > h2 + p {
    color: #33463f;
}

.questions-page .content-narrow .content-block,
.questions-page .fast-answer,
.questions-page .price-compare-wrap {
    border: 1px solid var(--home-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--home-shadow);
}

.questions-page .content-narrow .content-block {
    position: relative;
    overflow: hidden;
    padding: 26px 26px 28px;
}

.questions-page .content-narrow .content-block::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 7px;
    background: linear-gradient(90deg, var(--home-teal), var(--home-brass));
}

.questions-page .question-block {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 4px 18px;
}

.questions-page .question-block .ai-q-ico {
    grid-row: 1 / span 3;
}

.questions-page .question-block > :not(.ai-q-ico) {
    grid-column: 2;
}

.questions-page .ai-q-ico {
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #dff2eb;
    color: #228f8c;
}

.questions-page .ai-q-ico .si-icon {
    width: 30px;
    height: 30px;
    stroke-width: 1.8;
}

.questions-page .ai-q-kicker {
    color: #174e42;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.questions-page .content-block h3 {
    margin: 0 0 8px;
    color: var(--home-ink);
    font-size: 1.22rem;
    line-height: 1.22;
    font-weight: 820;
}

.questions-page .content-block p {
    color: #33463f;
}

.questions-page .content-block p:last-child {
    margin-bottom: 0;
}

.questions-page .content-block a,
.questions-page .bullet-list a {
    color: #174e42;
    font-weight: 700;
    text-decoration-color: rgba(23, 78, 66, .34);
}

.questions-page .fast-answer {
    position: relative;
    overflow: hidden;
    padding: 24px 26px;
    border-left: 1px solid var(--home-line);
    background: #fff;
}

.questions-page .fast-answer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--home-teal), var(--home-brass));
}

.questions-page .fast-answer-label {
    color: #174e42;
}

.questions-page .fast-answer-body {
    color: var(--home-ink);
}

.questions-page .content-narrow > .btn,
.questions-page .content-narrow > p .btn {
    border-radius: 999px;
    background: #17624f;
    border-color: #17624f;
    color: #fff;
    box-shadow: 0 12px 24px rgba(23, 98, 79, .20);
}

.questions-page .content-narrow > .btn:hover,
.questions-page .content-narrow > p .btn:hover {
    background: #0f4538;
    color: #fff;
}

.questions-page .price-compare-wrap {
    overflow: hidden;
}

.questions-page .price-compare th {
    background: #dff2eb;
    color: #174e42;
}

.questions-page .price-compare td,
.questions-page .price-compare th {
    border-color: var(--home-line);
}

.questions-page .content-narrow > ul:not(.bullet-list),
.questions-page .content-narrow > ol {
    margin: 14px 0 24px;
    padding: 22px 26px 22px 46px;
    border: 1px solid var(--home-line);
    border-radius: 8px;
    background: #fff;
    color: #33463f;
    box-shadow: 0 12px 26px rgba(18, 44, 39, .08);
}

.questions-page .content-narrow > ul:not(.bullet-list) li,
.questions-page .content-narrow > ol li {
    margin-bottom: 6px;
}

.questions-page .content-narrow > ul:not(.bullet-list) li:last-child,
.questions-page .content-narrow > ol li:last-child {
    margin-bottom: 0;
}

.questions-page .bullet-list {
    display: grid;
    gap: 10px;
    padding: 22px 26px;
    border: 1px solid var(--home-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(18, 44, 39, .08);
}

.questions-page .bullet-list li {
    color: #33463f;
}

.questions-page .bullet-list li::before {
    background: #228f8c;
}

.questions-page .cta-band {
    margin-top: 0;
    padding: 64px 0;
    background:
        radial-gradient(ellipse at 72% 20%, rgba(37, 117, 99, .34), transparent 46%),
        linear-gradient(135deg, #08231d 0%, #17624f 100%);
}

.questions-page .cta-band::before {
    background: none;
}

.questions-page .cta-band h2,
.questions-page .cta-band p {
    color: #fff8e6;
}

.questions-page .cta-band .btn-primary {
    background: #fff8e6;
    color: #174e42;
    border-color: rgba(255, 248, 230, .86);
}

.questions-page .cta-band .btn-primary:hover {
    background: #dff2eb;
    color: #174e42;
}

.is-questions .site-footer {
    margin-top: 0;
    background:
        radial-gradient(ellipse at 70% 20%, rgba(37, 117, 99, .28), transparent 46%),
        #08231d;
}

@media (max-width: 980px) {
    .questions-hero {
        min-height: 520px;
        padding: 142px 0 72px;
    }

    .questions-hero-bg img {
        object-position: 62% top;
    }
}

@media (max-width: 720px) {
    .is-questions .site-header {
        position: absolute;
    }

    .is-questions .header-inner {
        min-height: 78px;
    }

    .is-questions .nav-toggle {
        border-color: rgba(255, 255, 255, .45);
        background: rgba(4, 24, 21, .22);
    }

    .is-questions .nav-toggle-bar {
        background: #fff;
    }

    .is-questions .primary-nav {
        top: 72px;
        background: rgba(8, 35, 29, .98);
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .is-questions .primary-nav li:nth-child(5) {
        display: list-item;
    }

    .questions-hero {
        min-height: 0;
        padding: 118px 0 54px;
    }

    .questions-hero-bg img {
        object-position: 70% top;
    }

    .questions-hero-bg::after {
        background:
            linear-gradient(90deg, rgba(7, 41, 35, .94) 0%, rgba(7, 41, 35, .82) 54%, rgba(7, 41, 35, .46) 100%),
            linear-gradient(180deg, rgba(6, 22, 19, .12), rgba(6, 22, 19, .28));
    }

    .questions-hero h1 {
        font-size: 2.55rem;
    }

    .questions-hero .lead {
        font-size: 1rem;
    }

    .questions-hero .btn-primary,
    .questions-hero .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .questions-index-section {
        padding: 52px 0;
    }

    .questions-index-section::before {
        width: 62%;
        height: 92px;
        border-bottom-left-radius: 90px;
    }

    .questions-page .question-block {
        grid-template-columns: 1fr;
    }

    .questions-page .question-block .ai-q-ico {
        grid-row: auto;
    }

    .questions-page .question-block > :not(.ai-q-ico) {
        grid-column: auto;
    }

    .questions-page .content-narrow .content-block,
    .questions-page .fast-answer,
    .questions-page .content-narrow > ul:not(.bullet-list),
    .questions-page .content-narrow > ol,
    .questions-page .bullet-list {
        padding: 22px 18px;
    }
}

/* ----------------------------------------------------------------------
   Alla undersidor — samma visuella ram som startsidan
   /fragor/ har en egen, mer specifik variant ovan.
---------------------------------------------------------------------- */
body.is-subpage:not(.is-questions) {
    background: #08231d;
}

body.is-subpage:not(.is-questions) .page-shell {
    position: relative;
    isolation: isolate;
    max-width: none;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

body.is-subpage:not(.is-questions) .page-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 8%, rgba(216, 167, 88, .42) 0, rgba(216, 167, 88, .20) 24%, transparent 46%),
        radial-gradient(circle at 86% 20%, rgba(34, 143, 140, .34) 0, rgba(34, 143, 140, .18) 28%, transparent 52%),
        radial-gradient(circle at 32% 86%, rgba(12, 76, 59, .30) 0, transparent 44%),
        linear-gradient(135deg, #06251f 0%, #0e4538 32%, #f1d99b 70%, #dceee5 100%);
}

body.is-subpage:not(.is-questions) .site-header,
body.is-subpage:not(.is-questions) main,
body.is-subpage:not(.is-questions) .site-footer {
    position: relative;
    z-index: 1;
}

body.is-subpage:not(.is-questions) .site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 30;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body.is-subpage:not(.is-questions) .header-inner {
    min-height: 104px;
}

body.is-subpage:not(.is-questions) .brand,
body.is-subpage:not(.is-questions) .brand:hover,
body.is-subpage:not(.is-questions) .brand-name,
body.is-subpage:not(.is-questions) .brand-suffix,
body.is-subpage:not(.is-questions) .nav-link {
    color: #fff9e8;
    text-shadow: 0 1px 12px rgba(9, 24, 21, .32);
}

body.is-subpage:not(.is-questions) .brand-mark {
    background: linear-gradient(145deg, rgba(20, 111, 104, .96) 0%, rgba(9, 78, 72, .96) 100%);
    border: 1px solid rgba(255, 255, 255, .22);
    box-shadow: 0 10px 26px rgba(6, 25, 22, .24);
}

body.is-subpage:not(.is-questions) .nav-link {
    font-weight: 650;
}

body.is-subpage:not(.is-questions) .primary-nav li:nth-child(5) {
    display: none;
}

body.is-subpage:not(.is-questions) .nav-link:hover,
body.is-subpage:not(.is-questions) .nav-link.is-active {
    background: rgba(255, 255, 255, .14);
    color: #fff;
    text-decoration: none;
}

body.is-subpage:not(.is-questions) .header-cta {
    background: linear-gradient(135deg, #209b9c 0%, #d8a758 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 14px 28px rgba(4, 25, 24, .24);
}

body.is-subpage:not(.is-questions) .page-hero,
body.is-subpage:not(.is-questions) .booking-hero {
    position: relative;
    overflow: hidden;
    min-height: 450px;
    padding: 166px 0 82px;
    background:
        radial-gradient(ellipse 820px 420px at 83% 18%, rgba(34, 143, 140, .34), transparent 62%),
        radial-gradient(ellipse 720px 360px at 16% 0%, rgba(216, 167, 88, .30), transparent 58%),
        linear-gradient(90deg, rgba(7, 41, 35, .98) 0%, rgba(7, 41, 35, .90) 46%, rgba(12, 76, 59, .72) 100%);
    border-bottom: 0;
}

body.is-subpage:not(.is-questions) .page-hero::before,
body.is-subpage:not(.is-questions) .booking-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 25, 21, .36) 0%, rgba(5, 25, 21, .14) 52%, rgba(5, 25, 21, .04) 100%),
        linear-gradient(180deg, rgba(6, 22, 19, .12), rgba(6, 22, 19, .26));
    pointer-events: none;
}

body.is-subpage:not(.is-questions) .page-hero::after,
body.is-subpage:not(.is-questions) .booking-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 72px;
    background: linear-gradient(180deg, rgba(247, 250, 248, 0), rgba(255, 253, 248, .90) 88%);
    pointer-events: none;
}

body.is-subpage:not(.is-questions) .page-hero .container,
body.is-subpage:not(.is-questions) .booking-hero-inner {
    position: relative;
    z-index: 1;
}

body.is-subpage:not(.is-questions) .page-hero .eyebrow,
body.is-subpage:not(.is-questions) .booking-hero .eyebrow,
body.is-subpage:not(.is-questions) .page-hero .section-eyebrow,
body.is-subpage:not(.is-questions) .booking-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin: 0 0 18px;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff6df;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
    box-shadow: none;
}

body.is-subpage:not(.is-questions) .page-hero .eyebrow::before,
body.is-subpage:not(.is-questions) .booking-hero .eyebrow::before,
body.is-subpage:not(.is-questions) .page-hero .section-eyebrow::before,
body.is-subpage:not(.is-questions) .booking-eyebrow::before {
    content: "";
    flex: none;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #c99655;
}

body.is-subpage:not(.is-questions) .page-hero .eyebrow a,
body.is-subpage:not(.is-questions) .booking-hero .eyebrow a {
    color: #fff9e8;
    text-decoration-color: rgba(255, 249, 232, .36);
}

body.is-subpage:not(.is-questions) .page-hero .eyebrow a:hover,
body.is-subpage:not(.is-questions) .booking-hero .eyebrow a:hover {
    color: #fff;
    text-decoration-color: #fff;
}

body.is-subpage:not(.is-questions) .page-hero h1,
body.is-subpage:not(.is-questions) .booking-hero h1 {
    max-width: 880px;
    margin: 0 0 18px;
    color: #fff8e6;
    font-family: var(--font-sans);
    font-size: clamp(2.8rem, 5vw, 4.15rem);
    line-height: 1.06;
    font-weight: 820;
    letter-spacing: 0;
    text-shadow: 0 2px 20px rgba(5, 25, 21, .32);
}

body.is-subpage:not(.is-questions) .page-hero .lead,
body.is-subpage:not(.is-questions) .booking-hero .lead,
body.is-subpage:not(.is-questions) .page-hero .rich-platform-note,
body.is-subpage:not(.is-questions) .page-hero .lp-hero-lang,
body.is-subpage:not(.is-questions) .page-hero .container > p:not(.eyebrow):not(.section-eyebrow) {
    max-width: 760px;
    color: rgba(255, 250, 232, .92);
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 0 1px 10px rgba(5, 25, 21, .24);
}

body.is-subpage:not(.is-questions) .page-hero .rich-platform-note,
body.is-subpage:not(.is-questions) .page-hero .lp-hero-lang {
    width: fit-content;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-left: 3px solid #c99655;
    background: rgba(255, 255, 255, .10);
    border-radius: 8px;
}

body.is-subpage:not(.is-questions) .page-hero .lp-hero-lang .si-icon {
    color: #d8a758;
}

body.is-subpage:not(.is-questions) .page-hero-actions,
body.is-subpage:not(.is-questions) .booking-hero-actions {
    margin-top: 26px;
}

body.is-subpage:not(.is-questions) .page-hero .btn-primary,
body.is-subpage:not(.is-questions) .booking-hero .btn-primary {
    min-height: 52px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2aa3a3 0%, #d4a354 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 20px 42px rgba(6, 27, 24, .30);
}

body.is-subpage:not(.is-questions) .page-hero .btn-primary:hover,
body.is-subpage:not(.is-questions) .booking-hero .btn-primary:hover {
    background: linear-gradient(135deg, #18898b 0%, #c19043 100%);
    color: #fff;
}

body.is-subpage:not(.is-questions) .page-hero .btn-ghost,
body.is-subpage:not(.is-questions) .booking-hero .btn-ghost {
    border-color: rgba(255, 255, 255, .38);
    color: #fff9e8;
    background: rgba(255, 255, 255, .08);
}

body.is-subpage:not(.is-questions) .page-hero .btn-ghost:hover,
body.is-subpage:not(.is-questions) .booking-hero .btn-ghost:hover {
    border-color: rgba(255, 255, 255, .62);
    background: rgba(255, 255, 255, .14);
    color: #fff;
}

body.is-subpage:not(.is-questions) .section,
body.is-subpage:not(.is-questions) .booking-page,
body.is-subpage:not(.is-questions) .questions-page {
    background: rgba(255, 253, 248, .88);
}

body.is-subpage:not(.is-questions) .section-alt,
body.is-subpage:not(.is-questions) .section-warm,
body.is-subpage:not(.is-questions) .routing-section,
body.is-subpage:not(.is-questions) .internal-links,
body.is-subpage:not(.is-questions) .booking-slots-section {
    background: rgba(247, 234, 217, .90);
}

body.is-subpage:not(.is-questions) .section-soft {
    background: rgba(237, 246, 244, .88);
}

body.is-subpage:not(.is-questions) .section-cool {
    background: rgba(234, 246, 247, .90);
}

body.is-subpage:not(.is-questions) .content-narrow .content-block,
body.is-subpage:not(.is-questions) .leadonly-card,
body.is-subpage:not(.is-questions) .routing-card,
body.is-subpage:not(.is-questions) .contact-form,
body.is-subpage:not(.is-questions) .related-card,
body.is-subpage:not(.is-questions) .city-card,
body.is-subpage:not(.is-questions) .intyg-card,
body.is-subpage:not(.is-questions) .booking-summary-card,
body.is-subpage:not(.is-questions) .slot-card,
body.is-subpage:not(.is-questions) .slot-request-panel {
    border-radius: 8px;
    border-color: var(--home-line, #d8e2dc);
    background: #fff;
    box-shadow: 0 16px 32px rgba(19, 45, 39, .10);
}

body.is-subpage:not(.is-questions) .section-header h2::after {
    display: none;
}

body.is-subpage:not(.is-questions) main .section .section-eyebrow,
body.is-subpage:not(.is-questions) main .section-alt .section-eyebrow,
body.is-subpage:not(.is-questions) main .section-soft .section-eyebrow,
body.is-subpage:not(.is-questions) main .section-cool .section-eyebrow {
    border-radius: 8px;
    color: #174e42;
    background: #dff3eb;
}

body.is-subpage:not(.is-questions) .cta-band {
    margin-top: 0;
    padding: 64px 0;
    background:
        radial-gradient(ellipse at 72% 20%, rgba(37, 117, 99, .34), transparent 46%),
        linear-gradient(135deg, #08231d 0%, #17624f 100%);
}

body.is-subpage:not(.is-questions) .cta-band::before {
    background: none;
}

body.is-subpage:not(.is-questions) .cta-band h2,
body.is-subpage:not(.is-questions) .cta-band p {
    color: #fff8e6;
}

body.is-subpage:not(.is-questions) .cta-band .btn-primary {
    background: #fff8e6;
    color: #174e42;
    border-color: rgba(255, 248, 230, .86);
}

body.is-subpage:not(.is-questions) .cta-band .btn-primary:hover {
    background: #dff2eb;
    color: #174e42;
}

body.is-subpage:not(.is-questions) .site-footer {
    margin-top: 0;
    background:
        radial-gradient(ellipse at 70% 20%, rgba(37, 117, 99, .28), transparent 46%),
        #08231d;
}

body.is-subpage:not(.is-questions) .booking-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
}

body.is-subpage:not(.is-questions) .booking-hero-points li {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .10);
    color: rgba(255, 250, 232, .86);
}

body.is-subpage:not(.is-questions) .booking-hero-points .si-icon {
    color: #d8a758;
}

body.is-subpage:not(.is-questions) .booking-summary-card {
    background: rgba(255, 255, 255, .92);
}

@media (max-width: 980px) {
    body.is-subpage:not(.is-questions) .page-hero,
    body.is-subpage:not(.is-questions) .booking-hero {
        min-height: 0;
        padding: 142px 0 64px;
    }

    body.is-subpage:not(.is-questions) .booking-hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 720px) {
    body.is-subpage:not(.is-questions) .site-header {
        position: absolute;
    }

    body.is-subpage:not(.is-questions) .header-inner {
        min-height: 78px;
    }

    body.is-subpage:not(.is-questions) .nav-toggle {
        border-color: rgba(255, 255, 255, .45);
        background: rgba(4, 24, 21, .22);
    }

    body.is-subpage:not(.is-questions) .nav-toggle-bar {
        background: #fff;
    }

    body.is-subpage:not(.is-questions) .primary-nav {
        top: 72px;
        background: rgba(8, 35, 29, .98);
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    body.is-subpage:not(.is-questions) .primary-nav li:nth-child(5) {
        display: list-item;
    }

    body.is-subpage:not(.is-questions) .page-hero,
    body.is-subpage:not(.is-questions) .booking-hero {
        padding: 118px 0 52px;
    }

    body.is-subpage:not(.is-questions) .page-hero h1,
    body.is-subpage:not(.is-questions) .booking-hero h1 {
        font-size: 2.45rem;
    }

    body.is-subpage:not(.is-questions) .page-hero .lead,
    body.is-subpage:not(.is-questions) .booking-hero .lead {
        font-size: 1rem;
    }

    body.is-subpage:not(.is-questions) .page-hero-actions .btn,
    body.is-subpage:not(.is-questions) .booking-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
