:root {
    --deep-navy: #0B1220;
    --steel-blue: #1F4E79;
    --premium-gold: #C8A96B;
    --light-bg: #F7F8FA;
    --white: #F5F7FA;
    --dark-slate: #1E293B;
    --muted-slate: #64748B;
    --border: #DCE1E8;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: Inter, "Segoe UI", system-ui, sans-serif;
    background: var(--light-bg);
    color: var(--dark-slate);
}

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    background: var(--deep-navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 20;
}

.env-banner {
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 0.45rem 0.75rem;
}

.env-banner-dev {
    background: #FEF3C7;
    color: #854D0E;
}

.env-banner-staging {
    background: #DBEAFE;
    color: #1E3A8A;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    position: relative;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 56px;
    width: auto;
    display: block;
    transition: opacity 0.2s ease;
}

.brand:hover .brand-logo {
    opacity: 0.9;
}

.nav-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.22rem;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    padding: 0;
}

    .nav-toggle:hover,
    .nav-toggle:focus-visible {
        background: rgba(255, 255, 255, 0.08);
        outline: none;
    }

.nav-toggle-bar {
    display: block;
    width: 1.1rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.nav-link {
    color: #CDD6E2;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    font-size: 0.95rem;
}

    .nav-link:hover,
    .nav-link:focus-visible {
        background: rgba(255, 255, 255, 0.08);
        color: var(--white);
    }

.nav-cta {
    background: var(--premium-gold);
    color: var(--deep-navy);
    font-weight: 700;
}

.main-content {
    flex: 1;
    padding: 3.5rem 0 4.5rem;
}

.hero {
    background: linear-gradient(135deg, var(--deep-navy), #101B33 65%, var(--steel-blue));
    color: var(--white);
    border-radius: 24px;
    padding: 3.2rem;
    margin-bottom: 2rem;
}

    .hero h1 {
        margin: 0;
        font-size: clamp(2rem, 4.5vw, 3.1rem);
        line-height: 1.1;
    }

    .hero p {
        margin: 1.2rem 0 0;
        font-size: 1.1rem;
        max-width: 760px;
        color: #D9E3F1;
    }

.button-row {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.8rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.7rem 1.2rem;
    font-weight: 600;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--premium-gold);
    color: var(--deep-navy);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-dark {
    background: var(--deep-navy);
    color: var(--white);
}

.btn-outline {
    border-color: var(--deep-navy);
    color: var(--deep-navy);
}

.section {
    margin-top: 0;
    margin-bottom: 4rem;
}

    .section h2 {
        margin: 0 0 0.75rem;
        font-size: 1.8rem;
        color: var(--deep-navy);
        letter-spacing: -0.015em;
    }

    .section p,
    .lead {
        color: var(--muted-slate);
        line-height: 1.75;
    }

.grid {
    display: grid;
    gap: 1rem;
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.35rem;
    box-shadow: 0 8px 26px rgba(11, 18, 32, 0.06);
}

    .card h3 {
        margin: 0 0 0.55rem;
        font-size: 1.15rem;
        color: var(--deep-navy);
    }

.list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--muted-slate);
    line-height: 1.7;
}

.pill {
    display: inline-block;
    border-radius: 999px;
    padding: 0.3rem 0.7rem;
    background: rgba(200, 169, 107, 0.16);
    color: #87622A;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Optional origin line on /BookMeeting when arriving from a deliverable (?ref=). */
.context-ref {
    margin: 0.9rem 0 0;
    color: var(--muted-slate);
    font-size: 0.95rem;
}

.context-ref strong {
    color: var(--deep-navy);
}

.form-shell {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 8px 28px rgba(11, 18, 32, 0.06);
}
    /* ============================================================
       Insights visuals — append to wwwroot/css/site.css
       Brand tokens already in :root (deep-navy, premium-gold, etc.)
       ============================================================ */

    /* Index covers (Insights.cshtml) — bleed to the card edges, round top only.
           NOTE: these negative margins assume .card padding 1.35rem / radius 16px.
           If .series-card or .card-article override the padding, match it here. */
    img.series-cover,
    img.card-article-cover {
        display: block;
        width: 100%;
        height: auto;
        margin: -1.35rem -1.35rem 1.25rem;
        border-radius: 16px 16px 0 0;
    }

    /* Article hero banner (Article.cshtml) — full-width band above the title */
    .article-hero {
        margin-bottom: 2rem;
    }

        .article-hero img {
            display: block;
            width: 100%;
            height: auto;
            border-radius: 24px; /* matches .hero */
        }

    /* In-body figures (referenced from article .md via {.insight-figure}) */
    .insight-figure {
        display: block;
        width: 100%;
        height: auto;
        margin: 2.25rem 0;
    }

/* ── Microsoft Bookings CTA card ────────────────────────────────── */
.bookings-cta-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, #0B1220 0%, #162035 100%);
    border: 1px solid rgba(200, 169, 107, 0.25);
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(11, 18, 32, 0.18);
}

.bookings-cta-inner {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.bookings-cta-text {
    flex: 1 1 380px;
}

    .bookings-cta-text h2 {
        font-size: clamp(1.3rem, 2.5vw, 1.75rem);
        color: var(--white);
        margin: 0.6rem 0 0.75rem;
        line-height: 1.2;
    }

    .bookings-cta-text p {
        color: rgba(255, 255, 255, 0.75);
        font-size: 1rem;
        line-height: 1.7;
        margin: 0 0 1rem;
    }

.bookings-checklist {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.93rem;
}

    .bookings-checklist li::before {
        background: var(--premium-gold);
        box-shadow: 0 0 0 5px rgba(200, 169, 107, 0.18);
    }

.bookings-cta-action {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
}

.bookings-btn {
    font-size: 1.05rem;
    padding: 0.9rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.bookings-btn-arrow {
    font-size: 0.9rem;
    opacity: 0.8;
}

.bookings-cta-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

@media (max-width: 960px) {
    .bookings-cta-card {
        padding: 1.75rem 1.5rem;
    }

    .bookings-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.75rem;
    }

    .bookings-cta-action {
        width: 100%;
        align-items: stretch;
    }

    .bookings-btn {
        justify-content: center;
    }
}

.form-grid {
    display: grid;
    gap: 1rem;
}

.split-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: var(--dark-slate);
}

.field input,
.field textarea,
.field select {
    width: 100%;
    border: 1px solid #CBD5E1;
    border-radius: 12px;
    padding: 0.72rem 0.85rem;
    font: inherit;
    color: var(--dark-slate);
    background: #FCFCFD;
}

    .field input:focus,
    .field textarea:focus,
    .field select:focus {
        outline: none;
        border-color: var(--steel-blue);
        box-shadow: 0 0 0 3px rgba(31, 78, 121, 0.18);
    }

.validation-summary-errors,
.field-validation-error {
    color: #B42318;
    font-size: 0.9rem;
}

.success-banner {
    margin-bottom: 1rem;
    border: 1px solid #7CCB8E;
    background: #EAF9EE;
    color: #175B2A;
    border-radius: 10px;
    padding: 0.75rem 0.85rem;
}

.cta-band {
    background: linear-gradient(180deg, #FFFFFF, #F8FAFC);
    border: 1px solid var(--border);
    border-left: 4px solid var(--premium-gold);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 14px 34px rgba(11, 18, 32, 0.07);
}

.about-hero {
    max-width: 920px;
    margin-bottom: 3.2rem;
}

    .about-hero h1 {
        margin: 0.7rem 0 1rem;
        max-width: 920px;
        font-size: clamp(2.2rem, 4.6vw, 3.5rem);
        line-height: 1.12;
        color: var(--deep-navy);
        letter-spacing: -0.02em;
    }

.section-heading {
    margin-bottom: 1.35rem;
    max-width: 820px;
}

.section-heading-editorial h2 {
    margin: 0.8rem 0 0.85rem;
    max-width: 820px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.section-heading-editorial .lead {
    max-width: 760px;
}

.section-heading-tight {
    margin-bottom: 0.9rem;
}

.about-card-grid,
.about-focus-grid {
    gap: 1.15rem;
}

.about-card {
    padding: 1.6rem;
}

.about-card-accent {
    border-color: rgba(200, 169, 107, 0.4);
    box-shadow: 0 10px 32px rgba(11, 18, 32, 0.07);
}

.premium-list {
    list-style: none;
    padding-left: 0;
}

    .premium-list li {
        position: relative;
        padding-left: 1.4rem;
    }

        .premium-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.72rem;
            width: 0.5rem;
            height: 0.5rem;
            border-radius: 999px;
            background: var(--premium-gold);
            box-shadow: 0 0 0 5px rgba(200, 169, 107, 0.16);
        }

.about-focus-card {
    min-height: 100%;
}

.about-focus-grid {
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.about-focus-card p,
.about-card p,
.about-profile-card p,
.about-trust-content p {
    margin: 0 0 0.95rem;
    line-height: 1.75;
}

    .about-focus-card p:last-child,
    .about-card p:last-child,
    .about-profile-card p:last-child,
    .about-trust-content p:last-child {
        margin-bottom: 0;
    }

.about-trust-band {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.98));
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 14px 34px rgba(11, 18, 32, 0.055);
}

.about-trust-content {
    max-width: 880px;
}

.about-profile-card {
    padding: 2rem;
    border-radius: 24px;
    background: linear-gradient(180deg, #FFFFFF, #F8FAFC);
    box-shadow: 0 18px 46px rgba(11, 18, 32, 0.08);
}

.about-profile-inner {
    display: flex;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: flex-start;
}

.about-profile-photo {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-profile-portrait {
    width: 440px;
    max-width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
    object-fit: cover;
    object-position: center top;
    border-radius: 24px;
    border: 2px solid rgba(200, 169, 107, 0.45);
    box-shadow: 0 18px 42px rgba(11, 18, 32, 0.14);
    display: block;
}

.about-profile-text {
    flex: 1;
    min-width: 0;
    padding-top: 0.25rem;
}

    .about-profile-text p {
        font-size: 1.02rem;
    }

.about-cta {
    margin-top: 4.5rem;
}

    .about-cta h2 {
        max-width: 880px;
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
        line-height: 1.15;
    }

/* ── About: career list ─────────────────────────────────────────── */
.about-career-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

    .about-career-list li {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        column-gap: 0.75rem;
        row-gap: 0.05rem;
        padding-left: 0;
        border-bottom: 1px solid var(--border);
        padding-bottom: 0.85rem;
    }

        .about-career-list li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

.about-career-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-slate);
    grid-column: 1;
    grid-row: 1;
}

.about-career-org {
    font-size: 0.88rem;
    color: var(--muted-slate);
    grid-column: 1;
    grid-row: 2;
}

.about-career-period {
    font-size: 0.82rem;
    color: var(--muted-slate);
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

/* ── About: industry grid ───────────────────────────────────────── */
.about-industry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.about-industry-block {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

    .about-industry-block p {
        margin: 0;
        font-size: 0.91rem;
        color: var(--muted-slate);
        line-height: 1.55;
    }

.about-industry-label {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--premium-gold);
}

.about-disclaimer {
    font-size: 0.86rem;
    color: var(--muted-slate);
    line-height: 1.65;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin: 0;
    font-style: italic;
}

/* ── About: company DL ──────────────────────────────────────────── */
.about-company-dl {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 1rem 0 0;
}

.about-company-row {
    display: flex;
    gap: 1rem;
    align-items: baseline;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.55rem;
}

    .about-company-row:last-child {
        border-bottom: none;
    }

    .about-company-row dt {
        font-weight: 600;
        font-size: 0.88rem;
        color: var(--muted-slate);
        min-width: 11rem;
        flex-shrink: 0;
    }

    .about-company-row dd {
        margin: 0;
        font-size: 0.95rem;
        color: var(--dark-slate);
    }

        .about-company-row dd a {
            color: var(--dark-slate);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

/* ── About: education school label ─────────────────────────────── */
.about-edu-school {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--premium-gold);
    margin: 0 0 0.75rem;
}

/* ── Positioning card heading ───────────────────────────────────── */
.positioning-card__heading {
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    line-height: 1.25;
    margin: 0 0 1.1rem;
    color: var(--dark-slate);
    font-weight: 700;
}

    .about-cta .btn {
        margin-top: 0.6rem;
    }

.legal-hero {
    margin-bottom: 1.5rem;
}

.legal-section-grid {
    display: grid;
    gap: 1rem;
}

.legal-card {
    padding: 1.6rem;
}

.legal-card-alt {
    border-color: rgba(31, 78, 121, 0.18);
}

.legal-language-block h2 {
    margin: 1.35rem 0 0.55rem;
    font-size: 1.15rem;
    color: var(--deep-navy);
}

    .legal-language-block h2:first-child {
        margin-top: 0;
    }

.legal-language-block p {
    margin: 0 0 0.95rem;
    line-height: 1.75;
    color: var(--muted-slate);
}

.legal-language-block a {
    color: var(--steel-blue);
    text-decoration: underline;
    text-underline-offset: 0.15rem;
}

.cookie-consent {
    position: sticky;
    bottom: 1rem;
    z-index: 30;
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto 1rem;
    background: rgba(11, 18, 32, 0.96);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(11, 18, 32, 0.25);
    padding: 1rem 1.1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

    .cookie-consent[hidden] {
        display: none;
    }

.cookie-consent__content {
    max-width: 760px;
}

.cookie-consent__title {
    margin: 0 0 0.3rem;
    color: var(--white);
    font-weight: 600;
}

.cookie-consent__text {
    margin: 0.2rem 0;
    color: #D5DEEA;
    line-height: 1.55;
}

    .cookie-consent__text a {
        color: #F8E7BF;
        text-decoration: underline;
        text-underline-offset: 0.15rem;
    }

.cookie-consent__actions {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-consent__button {
    white-space: nowrap;
}

.site-footer {
    background: var(--deep-navy);
    color: #D5DEEA;
    padding: 2.2rem 0;
}

.footer-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1.5fr 1fr 1fr;
}

.footer-title {
    margin: 0 0 0.4rem;
    color: var(--white);
    font-size: 1rem;
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.4rem;
}

.footer-brand-logo {
    width: auto;
    height: 140px;
    display: block;
    margin-bottom: 1.5rem;
    opacity: 0.96;
}

.muted {
    color: var(--muted-slate);
}

/* ── Series cards (Insights index) ─────────────────── */

.series-stack {
    display: grid;
    gap: 1.5rem;
}

.series-card {
    padding: 2rem;
    border-color: rgba(200, 169, 107, 0.35);
    border-left: 4px solid var(--premium-gold);
    border-radius: 0 16px 16px 0;
    box-shadow: 0 12px 32px rgba(11, 18, 32, 0.08);
}

.series-card-header {
    margin-bottom: 1.2rem;
}

.series-card-header .pill {
    margin-bottom: 0.65rem;
    display: inline-block;
}

.series-card-header h2 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    color: var(--deep-navy);
    letter-spacing: -0.02em;
}

.series-card-header p {
    margin: 0;
    color: var(--muted-slate);
    line-height: 1.65;
    max-width: 680px;
}

.series-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: 0.55rem;
    border-top: 1px solid var(--border);
    padding-top: 1.1rem;
}

.series-card-item {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.series-card-number {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    background: rgba(200, 169, 107, 0.16);
    color: #87622A;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.series-card-item-title {
    flex: 1;
    color: var(--dark-slate);
    font-weight: 500;
    font-size: 0.97rem;
}

    .series-card-item-title a:hover {
        color: var(--steel-blue);
        text-decoration: underline;
        text-underline-offset: 0.15rem;
    }

.series-card-item-meta {
    color: var(--muted-slate);
    font-size: 0.88rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.insights-subheading {
    margin: 2.5rem 0 1rem;
    font-size: 1.3rem;
    color: var(--deep-navy);
    letter-spacing: -0.01em;
}

/* ── Series indicator (article page) ────────────────── */

.series-indicator {
    margin: 0.25rem 0 0.6rem;
    font-size: 0.9rem;
    color: var(--muted-slate);
}

    .series-indicator a {
        color: var(--steel-blue);
        text-decoration: underline;
        text-underline-offset: 0.15rem;
    }

/* ── Article index cards ────────────────────────────── */

.pill-sm {
    font-size: 0.72rem;
    padding: 0.2rem 0.55rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

/* ── Draft indicators (Development only) ───────────────────────── */

.pill-draft {
    background: rgba(217, 119, 6, 0.12);
    color: #92400e;
    border: 1px solid rgba(217, 119, 6, 0.35);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-left: 0.4rem;
    margin-bottom: 0;
    vertical-align: middle;
}

.card-article--draft {
    border-style: dashed;
    border-color: rgba(217, 119, 6, 0.45);
    opacity: 0.88;
}

.series-card-item--draft {
    opacity: 0.75;
}

.draft-banner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fffbeb;
    border: 1px solid rgba(217, 119, 6, 0.5);
    border-left: 5px solid #d97706;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin: 0 auto 1rem;
    max-width: var(--content-max, 860px);
    font-size: 0.93rem;
    line-height: 1.6;
}

.draft-banner-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.draft-banner strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #92400e;
    margin-bottom: 0.25rem;
}

.draft-banner span {
    color: #78350f;
}

.draft-banner code {
    background: rgba(217, 119, 6, 0.12);
    border-radius: 4px;
    padding: 0.1rem 0.35rem;
    font-size: 0.85em;
    font-family: ui-monospace, monospace;
    color: #92400e;
}

.card-article {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.card-meta {
    margin: 0.4rem 0 0;
    color: var(--muted-slate);
    font-size: 0.88rem;
}

/* ── Article page ───────────────────────────────────── */

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0 0;
    align-items: center;
    color: var(--muted-slate);
    font-size: 0.95rem;
    margin-top: 0.85rem;
}

.article-content {
    max-width: 720px;
}

.article-content h2 {
    margin: 2.5rem 0 0.75rem;
    font-size: 1.55rem;
    color: var(--deep-navy);
    letter-spacing: -0.015em;
    scroll-margin-top: 5rem;
}

.article-content h3 {
    margin: 2rem 0 0.6rem;
    font-size: 1.2rem;
    color: var(--deep-navy);
    scroll-margin-top: 5rem;
}

.article-content p {
    margin: 0 0 1.1rem;
    line-height: 1.8;
    color: var(--dark-slate);
}

.article-content ul,
.article-content ol {
    margin: 0 0 1.1rem;
    padding-left: 1.5rem;
    color: var(--dark-slate);
    line-height: 1.8;
}

.article-content li + li {
    margin-top: 0.3rem;
}

.article-content strong {
    color: var(--deep-navy);
    font-weight: 700;
}

.article-content a {
    color: var(--steel-blue);
    text-decoration: underline;
    text-underline-offset: 0.15rem;
}

.article-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--premium-gold);
    background: rgba(200, 169, 107, 0.07);
    border-radius: 0 8px 8px 0;
    color: var(--dark-slate);
    font-style: italic;
}

.article-content code {
    background: #F1F5F9;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.1em 0.35em;
    font-size: 0.88em;
    font-family: "Cascadia Code", "Fira Mono", monospace;
}

.article-content pre {
    background: var(--deep-navy);
    border-radius: 10px;
    padding: 1.25rem;
    overflow-x: auto;
    margin: 0 0 1.5rem;
}

.article-content pre code {
    background: none;
    border: none;
    padding: 0;
    color: #E2E8F0;
    font-size: 0.92rem;
}

.article-content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2.5rem 0;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
}

.article-content th,
.article-content td {
    text-align: left;
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid var(--border);
}

.article-content th {
    font-weight: 700;
    color: var(--deep-navy);
    background: #F8FAFC;
}

/* ── Series navigation box ──────────────────────────── */

.series-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--premium-gold);
    border-radius: 0 16px 16px 0;
    padding: 1.35rem;
    max-width: 720px;
}

.series-box-label {
    margin: 0 0 0.75rem;
    font-weight: 700;
    color: var(--deep-navy);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.series-box-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.series-box-list a {
    color: var(--steel-blue);
    text-decoration: underline;
    text-underline-offset: 0.15rem;
}

.series-box-current {
    color: var(--dark-slate);
}

.admin-warning {
    margin-bottom: 1rem;
    border: 1px solid #F4D38F;
    background: #FFF7E8;
    color: #6D4C0E;
    border-radius: 10px;
    padding: 0.75rem 0.85rem;
    font-weight: 600;
}

.admin-actions {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 860px;
}

    .data-table th,
    .data-table td {
        text-align: left;
        vertical-align: top;
        padding: 0.75rem;
        border-bottom: 1px solid #E2E8F0;
        font-size: 0.93rem;
    }

    .data-table th {
        color: var(--deep-navy);
        background: #F8FAFC;
        font-weight: 700;
    }

.table-cell-muted {
    color: var(--muted-slate);
}

.empty-state {
    padding: 1rem;
    color: var(--muted-slate);
}

/* ── Homepage ───────────────────────────────────────────────────── */

.section-grid {
    margin-top: 1.5rem;
}

.section-action {
    margin-top: 1.5rem;
}

/* ── Who we help grid ───────────────────────────────────────────── */

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.who-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--premium-gold);
    border-radius: 14px;
    padding: 1.25rem 1.35rem;
    box-shadow: 0 4px 14px rgba(11, 18, 32, 0.05);
}

.who-card-title {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 0.97rem;
    color: var(--deep-navy);
}

.who-card p {
    margin: 0;
    font-size: 0.94rem;
    color: var(--muted-slate);
    line-height: 1.65;
}

/* ── SMB statement band ─────────────────────────────────────────── */

.smb-statement-section {
    margin: 0.5rem 0;
}

.smb-statement {
    background: linear-gradient(135deg, var(--deep-navy), #101B33 65%, var(--steel-blue));
    color: var(--white);
    border-radius: 20px;
    padding: 2.5rem 3rem;
}

.smb-statement .pill {
    background: rgba(200, 169, 107, 0.2);
    color: #F8E7BF;
    margin-bottom: 1.1rem;
}

.smb-statement h2 {
    margin: 0 0 1.25rem;
    color: var(--white);
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    line-height: 1.2;
    max-width: 820px;
}

.smb-statement-body,
.smb-statement p {
    margin: 0 0 0.9rem;
    color: var(--white);
    line-height: 1.75;
    font-size: 1.02rem;
    max-width: 760px;
}

.smb-statement-body:last-of-type,
.smb-statement p:last-of-type {
    margin-bottom: 1.5rem;
}

.smb-statement .btn-outline {
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--white);
}

.smb-statement .btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* ── Positioning card (light, service-card style) ───────────────── */

.positioning-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--premium-gold);
    border-radius: 16px;
    padding: 2rem 2.25rem;
    box-shadow: 0 8px 26px rgba(11, 18, 32, 0.06);
}

.positioning-card p {
    margin: 0 0 1rem;
    color: var(--dark-slate);
    line-height: 1.8;
    font-size: 1.02rem;
}

.positioning-card p:last-child {
    margin-bottom: 0;
}

/* ── Microsoft service cards ────────────────────────────────────── */

.ms-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
    align-items: start;
}

.ms-service-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.6rem;
}

.ms-service-card h3 {
    margin: 0 0 0.3rem;
    font-size: 1.1rem;
    color: var(--deep-navy);
}

.ms-service-card p {
    margin: 0;
    color: var(--muted-slate);
    line-height: 1.7;
    font-size: 0.96rem;
    flex: 1;
}

.ms-service-card--featured {
    border-color: rgba(200, 169, 107, 0.45);
    border-left: 4px solid var(--premium-gold);
    background: linear-gradient(180deg, #FFFDF8, #FFFFFF);
    box-shadow: 0 10px 32px rgba(11, 18, 32, 0.08);
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
}

.ms-service-card--featured h3 {
    font-size: 1.25rem;
}

.ms-service-card--featured > * {
    flex: 1;
}

.ms-service-card-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #87622A;
    background: rgba(200, 169, 107, 0.16);
    border-radius: 999px;
    padding: 0.22rem 0.65rem;
    margin-bottom: 0.65rem;
    align-self: flex-start;
}

.ms-service-outcomes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.4rem;
}

.ms-service-outcomes li {
    position: relative;
    padding-left: 1.35rem;
    font-size: 0.93rem;
    color: var(--dark-slate);
    line-height: 1.55;
}

.ms-service-outcomes li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: var(--premium-gold);
}

.ms-service-cta {
    align-self: flex-start;
    margin-top: auto;
    white-space: nowrap;
}

/* Hero split: text left, portrait right */
.hero.hero-split {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.hero-split-text {
    min-width: 0;
}

.hero-portrait {
    width: 260px;
    aspect-ratio: 3 / 4;
    height: auto;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    border: 2px solid rgba(200, 169, 107, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    display: block;
    flex-shrink: 0;
}

/* Credibility strip proof points */
.proof-points {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.proof-point {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--premium-gold);
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    box-shadow: 0 4px 14px rgba(11, 18, 32, 0.05);
}

.proof-point-text {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-slate);
    line-height: 1.55;
}

/* Positioning statement: narrow centred column */
.positioning-statement {
    max-width: 760px;
    margin: 0 auto;
}

.positioning-body {
    margin: 0 0 1.1rem;
    line-height: 1.8;
    color: var(--dark-slate);
    font-size: 1.05rem;
}

.positioning-body:last-child {
    margin-bottom: 0;
}

/* Service pillar cards */
.pillar-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
}

/* Engagement models */
.engagement-card {
    padding: 0;
    overflow: hidden;
}

.engagement-table {
    width: 100%;
    border-collapse: collapse;
}

.engagement-table thead th {
    text-align: left;
    padding: 0.75rem 1.1rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--muted-slate);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--border);
    background: #F8FAFC;
}

.engagement-table thead th:first-child {
    width: 22%;
}

.engagement-table thead th:last-child {
    width: 22%;
}

.engagement-table tbody tr {
    border-bottom: 1px solid var(--border);
}

.engagement-table tbody tr:last-child {
    border-bottom: none;
}

.engagement-table tbody tr:hover {
    background: rgba(31, 78, 121, 0.03);
}

.engagement-table td {
    padding: 1.1rem 1.1rem;
    vertical-align: top;
    line-height: 1.65;
    font-size: 0.96rem;
    color: var(--muted-slate);
}

.engagement-table td:first-child {
    font-weight: 700;
    color: var(--deep-navy);
}

/* Newsletter section (dark background) */
.newsletter-section {
    background: var(--deep-navy);
    border-radius: 24px;
    padding: 2.5rem 3rem;
}

section.newsletter-section h2 {
    color: var(--white);
    margin: 0 0 0.6rem;
}

section.newsletter-section p {
    color: #D5DEEA;
    margin: 0 0 1.5rem;
    line-height: 1.7;
}

.newsletter-form-row {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 220px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.72rem 0.9rem;
    font: inherit;
    font-size: 0.97rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--premium-gold);
    box-shadow: 0 0 0 3px rgba(200, 169, 107, 0.25);
}

/* Success / error feedback on dark newsletter background */
.success-banner-inv {
    margin-bottom: 1rem;
    border: 1px solid rgba(124, 203, 142, 0.5);
    background: rgba(124, 203, 142, 0.12);
    color: #A8EFB8;
    border-radius: 10px;
    padding: 0.75rem 0.85rem;
}

.validation-summary-inv,
.field-error-inv {
    color: #FCA5A5;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.4rem;
}

/* Contact info line in final CTA */
.contact-info {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: var(--muted-slate);
}

.contact-info a {
    color: var(--steel-blue);
    text-decoration: underline;
    text-underline-offset: 0.15rem;
}

/* ── Hero pill (inverted for dark hero background) ─────────────── */

.hero .pill {
    background: rgba(200, 169, 107, 0.2);
    color: #F8E7BF;
    display: inline-block;
    margin-bottom: 1.25rem;
}

/* ── Hero: text-only ────────────────────────────────────────────── */

.hero.hero-text {
    max-width: 860px;
}

/* ── Homepage: Why decisions fail statement card ────────────────── */

.home-statement-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 5px solid var(--premium-gold);
    border-radius: 20px;
    padding: 2.5rem 2.75rem;
    box-shadow: 0 10px 32px rgba(11, 18, 32, 0.07);
    max-width: 860px;
}

    .home-statement-card h2 {
        font-size: clamp(1.35rem, 2.5vw, 1.75rem);
        color: var(--deep-navy);
        margin: 0 0 1.25rem;
        line-height: 1.2;
    }

    .home-statement-card p {
        margin: 0 0 0.75rem;
        color: var(--muted-slate);
        font-size: 1.05rem;
        line-height: 1.8;
    }

    .home-statement-card p:last-child {
        margin-bottom: 0;
    }

.home-statement-kicker {
    font-weight: 600;
    color: var(--deep-navy) !important;
    font-size: 1.05rem;
    margin-top: 1.25rem !important;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

/* ── Homepage: Why MPedersen sub-text ──────────────────────────── */

.home-why-sub {
    font-size: 1.05rem;
    color: var(--muted-slate);
    max-width: 640px;
    margin: 0 0 2rem;
    line-height: 1.75;
    font-style: italic;
}

/* ── Tilnærming row ─────────────────────────────────────────────── */

.approach-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.approach-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 3px solid var(--premium-gold);
    border-radius: 0 16px 16px 0;
    padding: 1.5rem 1.5rem 1.5rem 1.35rem;
    box-shadow: 0 4px 14px rgba(11, 18, 32, 0.05);
}

.approach-title {
    margin: 0 0 0.6rem;
    font-size: 1.05rem;
    color: var(--deep-navy);
}

.approach-card p {
    margin: 0;
    color: var(--muted-slate);
    line-height: 1.7;
    font-size: 0.97rem;
}

/* ── Service pages ──────────────────────────────────────────────── */

.offering-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.offering-block {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 14px rgba(11, 18, 32, 0.05);
}

.offering-block h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    color: var(--deep-navy);
}

.offering-block p {
    margin: 0;
    color: var(--muted-slate);
    line-height: 1.7;
    font-size: 0.96rem;
}

.premium-list {
    color: var(--muted-slate);
    line-height: 1.75;
}

.premium-list li {
    margin-bottom: 0.55rem;
}

.positioning-body a {
    color: var(--steel-blue);
    text-decoration: underline;
    text-underline-offset: 0.15rem;
}

.see-also-label {
    margin: 0 0 0.85rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--muted-slate);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.see-also {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ── Focused deliverables ───────────────────────────────────────── */

.deliverable-stack {
    display: grid;
    gap: 1.25rem;
}

.deliverable-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    box-shadow: 0 4px 14px rgba(11, 18, 32, 0.05);
    /* Keep anchored deliverables clear of the header when linked from articles. */
    scroll-margin-top: 6rem;
}

.deliverable-card h3 {
    margin: 0 0 0.9rem;
    color: var(--deep-navy);
}

.deliverable-card p {
    margin: 0 0 0.7rem;
    color: var(--muted-slate);
    line-height: 1.7;
    font-size: 0.96rem;
}

.deliverable-card p:last-child {
    margin-bottom: 0;
}

.deliverable-card strong {
    color: var(--deep-navy);
}

.deliverable-related a {
    color: var(--steel-blue);
    text-decoration: underline;
    text-underline-offset: 0.15rem;
}

.deliverable-price {
    font-weight: 600;
    color: var(--deep-navy);
}

.deliverable-cta {
    margin-top: 1.1rem;
}

.deliverable-strip {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.deliverable-strip-item {
    border-top: 2px solid var(--premium-gold);
    padding-top: 1rem;
}

.deliverable-strip-link {
    display: inline-block;
    font-weight: 700;
    color: var(--deep-navy);
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.deliverable-strip-link:hover {
    text-decoration: underline;
}

.deliverable-strip-item p {
    margin: 0;
    color: var(--muted-slate);
    font-size: 0.93rem;
    line-height: 1.6;
}

@media (max-width: 760px) {
    .deliverable-strip {
        grid-template-columns: 1fr;
    }
}

/* ── Clarity Assessment section ─────────────────────────────────── */

.clarity-section {
    margin-top: 0;
}

.clarity-card {
    background: linear-gradient(135deg, var(--deep-navy), #101B33 65%, var(--steel-blue));
    color: var(--white);
    border-radius: 24px;
    padding: 2.8rem 3rem;
}

.clarity-card-header {
    margin-bottom: 2rem;
}

.clarity-pill {
    background: rgba(200, 169, 107, 0.2);
    color: #F8E7BF;
    margin-bottom: 1.1rem;
}

.clarity-card-header h2 {
    margin: 0.75rem 0 0.75rem;
    color: var(--white);
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    line-height: 1.2;
    max-width: 820px;
}

.clarity-lead {
    color: rgba(255, 255, 255, 0.8);
    max-width: 720px;
    margin: 0;
    line-height: 1.7;
}

.clarity-body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.clarity-col-title {
    margin: 0 0 0.85rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--premium-gold);
}

.clarity-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.clarity-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.97rem;
    line-height: 1.6;
}

.clarity-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: var(--premium-gold);
    box-shadow: 0 0 0 4px rgba(200, 169, 107, 0.2);
}

.clarity-tagline {
    margin-top: 1.25rem;
    margin-bottom: 0;
    font-size: 0.97rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
}

.clarity-cta {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
}

.clarity-detail-link {
    color: #F8E7BF;
    font-weight: 600;
    text-decoration: none;
}

.clarity-detail-link:hover {
    text-decoration: underline;
}

/* ── Methodology steps ──────────────────────────────────────────── */

.method-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
}

.method-step {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 14px rgba(11, 18, 32, 0.05);
}

.method-step-number {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: rgba(200, 169, 107, 0.16);
    color: #87622A;
    font-size: 0.88rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-top: 0.15rem;
}

.method-step-title {
    margin: 0 0 0.5rem;
    font-size: 1.02rem;
    color: var(--deep-navy);
}

.method-step p {
    margin: 0;
    color: var(--muted-slate);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ── Homepage responsive ────────────────────────────────────────── */

@media (max-width: 960px) {
    .grid-3,
    .grid-2,
    .footer-grid,
    .split-2 {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 2rem;
    }

    .about-trust-band,
    .about-card,
    .about-profile-card {
        padding: 1.35rem;
    }

    .about-profile-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-profile-portrait {
        width: 100%;
        max-width: 380px;
        height: auto;
        aspect-ratio: 4 / 5;
    }

    .about-profile-text {
        text-align: left;
    }

    .about-industry-grid {
        grid-template-columns: 1fr;
    }

    .about-company-row {
        flex-direction: column;
        gap: 0.1rem;
    }

        .about-company-row dt {
            min-width: unset;
        }

    .brand-logo {
        height: 42px;
    }

    .main-content {
        padding-top: 2rem;
    }

    .nav-wrap {
        flex-wrap: wrap;
        padding: 0.75rem 0;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        margin-top: 0.5rem;
        padding-top: 0.25rem;
    }

        .nav-links.is-open {
            display: flex;
        }

    .nav-link {
        width: 100%;
        padding: 0.7rem 0.85rem;
        border-radius: 12px;
    }

    .cookie-consent {
        bottom: 0.75rem;
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-consent__actions {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-consent__button {
        width: 100%;
    }
    .footer-brand-logo {
        width: auto;
        height: 60px;
        display: block;
        margin-bottom: 1.5rem;
        opacity: 0.96;
    }

    /* Homepage + service page responsive */

    .hero.hero-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-portrait {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }

    .approach-row,
    .offering-grid {
        grid-template-columns: 1fr;
    }

    .proof-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .who-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ms-service-grid {
        grid-template-columns: 1fr;
    }

    .ms-service-card--featured {
        flex-direction: column;
        gap: 1rem;
        grid-column: auto;
    }

    .smb-statement {
        padding: 1.75rem 1.5rem;
    }

    .clarity-card {
        padding: 1.75rem 1.5rem;
    }

    .clarity-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .method-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .who-grid {
        grid-template-columns: 1fr;
    }
}

    .newsletter-section {
        padding: 1.75rem 1.5rem;
    }

    /* Engagement table stacks to labelled blocks on mobile */
    .engagement-table thead {
        display: none;
    }

    .engagement-table tbody tr {
        display: block;
        border-bottom: 1px solid var(--border);
        padding: 1rem 1.1rem;
    }

    .engagement-table tbody tr:last-child {
        border-bottom: none;
    }

    .engagement-table td {
        display: block;
        padding: 0.2rem 0;
        font-size: 0.95rem;
    }

    .engagement-table td::before {
        content: attr(data-label);
        display: block;
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--muted-slate);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 0.2rem;
        margin-top: 0.65rem;
    }

    .engagement-table td:first-child::before {
        margin-top: 0;
    }

    .engagement-table td:first-child {
        font-size: 1rem;
    }

}

/* ================================================================
   Lead-generation UX enhancements (feat/ux-lead-gen)
   Reuses existing tokens: --deep-navy, --premium-gold, --muted-slate,
   --border, --white, --dark-slate. No new colour primitives.
   ================================================================ */

/* CTA microcopy (C1): no-obligation / duration reassurance under buttons */
.cta-note {
    margin: 0.75rem 0 0;
    font-size: 0.85rem;
    color: var(--muted-slate);
}

.hero .cta-note {
    color: rgba(255, 255, 255, 0.6);
}

/* Hero credibility micro-strip (A1) */
.hero-trust {
    margin: 1rem 0 0;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.9rem;
    font-weight: 500;
    color: #C7D2E2;
    letter-spacing: 0.01em;
    line-height: 1.5;
    max-width: 760px;
}

/* Research stat band (A2): 3-up variant of the reused .proof-points grid */
.proof-points.proof-points-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-point-stat {
    margin: 0 0 0.4rem;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    color: var(--deep-navy);
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.proof-point-source {
    margin: 0.6rem 0 0;
    font-size: 0.78rem;
    color: var(--muted-slate);
    font-style: italic;
}

@media (max-width: 760px) {
    .proof-points.proof-points-3 {
        grid-template-columns: 1fr;
    }
}

/* Optional-field hint on labels (B1) */
.field-optional {
    font-weight: 400;
    color: var(--muted-slate);
    font-size: 0.85em;
}

/* Form reassurance: "Slik foregår det" + response promise (B3) */
.form-reassure {
    margin-top: 1.4rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--border);
}

.form-reassure-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-slate);
    margin-bottom: 0.55rem;
}

.process-steps {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--muted-slate);
    line-height: 1.65;
    font-size: 0.93rem;
}

.process-steps li {
    margin-bottom: 0.3rem;
}

.form-privacy {
    margin: 0.8rem 0 0;
    font-size: 0.82rem;
    color: var(--muted-slate);
    line-height: 1.55;
}

/* Sticky "Book møte" bar (E1) — appears after the hero scrolls out */
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    transform: translateY(110%);
    transition: transform 0.28s ease;
    background: var(--deep-navy);
    border-top: 1px solid rgba(200, 169, 107, 0.3);
    box-shadow: 0 -8px 30px rgba(11, 18, 32, 0.22);
}

.sticky-cta.is-visible {
    transform: translateY(0);
}

.sticky-cta-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0.7rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.sticky-cta-text {
    margin: 0;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
}

.sticky-cta-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sticky-cta-dismiss {
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.2rem 0.45rem;
}

.sticky-cta-dismiss:hover {
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 620px) {
    .sticky-cta-text {
        display: none;
    }

    .sticky-cta-inner {
        justify-content: flex-end;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sticky-cta {
        transition: none;
    }
}
