        /* Brand tokens — keep in sync with the brand guide. */
        :root {
            --teal: #54BDA8;
            --teal-dark: #3e9d8a;
            --teal-soft: #e4f5f0;
            --brown: #9D6B39;
            --blue: #417FBF;
            --yellow: #EFDA7F;
            --ink: #244F6F;
            --ink-soft: #5a7890;
            --white: #ffffff;
            --cream: #fbf7ef;
            --shadow-sm: 0 1px 2px rgba(36, 79, 111, 0.08), 0 2px 6px rgba(36, 79, 111, 0.04);
            --shadow-md: 0 4px 8px rgba(36, 79, 111, 0.08), 0 12px 30px rgba(36, 79, 111, 0.10);
            --shadow-lg: 0 10px 20px rgba(36, 79, 111, 0.08), 0 30px 60px rgba(36, 79, 111, 0.12);
            --radius-sm: 12px;
            --radius-md: 20px;
            --radius-lg: 28px;
        }

        * { box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        html, body { margin: 0; padding: 0; }

        body {
            font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
            background: var(--cream);
            color: var(--ink);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a { color: var(--blue); text-decoration: none; }
        a:hover { text-decoration: underline; }
        img, svg { display: block; max-width: 100%; }

        h1, h2, h3, h4 {
            font-family: "Poppins", sans-serif;
            font-weight: 700;
            letter-spacing: -0.01em;
            line-height: 1.15;
            margin: 0 0 0.75rem;
            color: var(--ink);
        }

        h1 { font-weight: 800; letter-spacing: -0.02em; }

        p { margin: 0 0 1rem; }

        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* ===== Navbar ===== */

        .nav {
            position: sticky;
            top: 0;
            z-index: 20;
            background: rgba(251, 247, 239, 0.85);
            backdrop-filter: saturate(180%) blur(12px);
            -webkit-backdrop-filter: saturate(180%) blur(12px);
            border-bottom: 1px solid rgba(36, 79, 111, 0.08);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.85rem 0;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-weight: 700;
            color: var(--ink);
            text-decoration: none;
        }

        .brand img { width: 36px; height: 36px; border-radius: 999px; }
        .brand-name { font-size: 1.1rem; }

        .nav-links {
            display: none;
            gap: 1.5rem;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .nav-links a {
            color: var(--ink-soft);
            text-decoration: none;
        }
        .nav-links a:hover { color: var(--ink); }

        @media (min-width: 720px) {
            .nav-links { display: inline-flex; }
        }

        /* ===== Language picker ===== */

        .lang-picker {
            display: inline-flex;
            align-items: center;
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.04em;
        }

        .lang-picker a {
            color: var(--ink-soft);
            text-decoration: none;
            padding: 0.3rem 0.45rem;
            border-radius: 6px;
            transition: color 120ms;
        }
        .lang-picker a:hover { color: var(--ink); text-decoration: none; }
        .lang-picker a.active { color: var(--teal); font-weight: 700; }

        .lang-picker .sep {
            color: var(--ink-soft);
            opacity: 0.35;
            font-weight: 400;
            pointer-events: none;
            padding: 0 0.1rem;
        }

        /* ===== Buttons ===== */

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 1.5rem;
            border-radius: 999px;
            font-family: inherit;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none !important;
            border: 2px solid transparent;
            cursor: pointer;
            transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--teal);
            color: var(--white);
            box-shadow: var(--shadow-sm);
        }
        .btn-primary:hover {
            background: var(--teal-dark);
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }

        .btn-outline {
            background: transparent;
            color: var(--ink);
            border-color: rgba(36, 79, 111, 0.2);
        }
        .btn-outline:hover {
            border-color: var(--ink);
            background: rgba(36, 79, 111, 0.04);
        }

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

        /* ===== Hero ===== */

        .hero {
            position: relative;
            padding: 4rem 0 5rem;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 960px) {
            .hero { padding: 6rem 0 7rem; }
            .hero-grid {
                grid-template-columns: 1.1fr 1fr;
                gap: 4rem;
            }
            /* Firmafest variant: logo left, text right */
            .hero-grid-reversed {
                grid-template-columns: 1fr 1.1fr;
            }
            /* Guide/article variant: wide text column, narrow mascot */
            .hero-grid-article {
                grid-template-columns: 1.6fr 1fr;
            }
        }

        .hero h1 {
            font-size: clamp(2.2rem, 5.5vw, 3.75rem);
            margin-bottom: 1.25rem;
        }

        .hero h1 .accent {
            color: var(--teal);
            position: relative;
        }
        .hero h1 .accent::after {
            content: "";
            position: absolute;
            left: 0; right: 0; bottom: 0.08em;
            height: 0.28em;
            background: var(--yellow);
            border-radius: 999px;
            z-index: -1;
            opacity: 0.7;
        }

        .hero .lede {
            font-size: clamp(1.05rem, 1.6vw, 1.25rem);
            color: var(--ink-soft);
            max-width: 52ch;
            margin: 0 0 2rem;
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.85rem;
            margin-bottom: 2.25rem;
        }

        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.25rem;
            font-size: 0.9rem;
            color: var(--ink-soft);
        }
        .hero-meta span {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .hero-meta svg {
            width: 16px;
            height: 16px;
            color: var(--teal);
        }

        /* Monkey hero mark */
        .hero-mark {
            position: relative;
            max-width: 300px;
            margin: 0 auto;
            padding: 1.5rem;
        }

        @media (min-width: 960px) {
            .hero-mark { max-width: 360px; padding: 2rem; }
        }

        .hero-mark::before,
        .hero-mark::after {
            content: "";
            position: absolute;
            border-radius: 999px;
            z-index: 0;
        }
        .hero-mark::before {
            inset: 12% 8% -10% 14%;
            background: var(--yellow);
            opacity: 0.55;
            filter: blur(20px);
        }
        .hero-mark::after {
            inset: -8% -6% 18% 4%;
            background: var(--blue);
            opacity: 0.25;
            filter: blur(24px);
        }

        .hero-mark img {
            position: relative;
            z-index: 1;
            width: 100%;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(36,79,111,0.18));
        }

        /* Confetti dots */
        .confetti {
            position: absolute;
            pointer-events: none;
            inset: 0;
            z-index: 0;
            overflow: hidden;
        }
        .confetti i {
            position: absolute;
            display: block;
            width: 10px; height: 10px;
            border-radius: 2px;
            transform: rotate(15deg);
            opacity: 0.85;
        }

        /* ===== Section headings ===== */

        section.band {
            padding: 5rem 0;
        }

        .section-head {
            text-align: center;
            max-width: 620px;
            margin: 0 auto 3rem;
        }
        .section-head .tag {
            display: inline-block;
            color: var(--teal-dark);
            background: var(--teal-soft);
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            padding: 0.35rem 0.85rem;
            border-radius: 999px;
            margin-bottom: 1rem;
        }
        .section-head h2 {
            font-size: clamp(1.75rem, 3.5vw, 2.5rem);
            margin: 0 0 0.75rem;
        }
        .section-head p {
            font-size: 1.05rem;
            color: var(--ink-soft);
            margin: 0;
        }

        /* ===== Features ===== */

        .features {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }

        @media (min-width: 640px) {
            .features { grid-template-columns: repeat(2, 1fr); }
        }
        @media (min-width: 960px) {
            .features { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
        }

        .feature {
            background: var(--white);
            border: 1px solid rgba(36, 79, 111, 0.06);
            border-radius: var(--radius-md);
            padding: 1.75rem 1.5rem;
            box-shadow: var(--shadow-sm);
            transition: transform 180ms ease, box-shadow 180ms ease;
        }
        .feature:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .feature-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }
        .feature-icon svg { width: 26px; height: 26px; color: var(--white); }

        .feature:nth-child(1) .feature-icon { background: var(--teal); }
        .feature:nth-child(2) .feature-icon { background: var(--blue); }
        .feature:nth-child(3) .feature-icon { background: var(--brown); }
        .feature:nth-child(4) .feature-icon { background: var(--ink); }
        .feature:nth-child(5) .feature-icon { background: var(--teal-dark); }
        .feature:nth-child(6) .feature-icon { background: #7B5EA7; }

        .feature h3 {
            font-size: 1.1rem;
            margin: 0 0 0.35rem;
        }

        .feature p {
            margin: 0;
            color: var(--ink-soft);
            font-size: 0.95rem;
        }

        /* ===== How it works ===== */

        .how {
            background: linear-gradient(180deg, var(--teal-soft) 0%, rgba(228, 245, 240, 0) 100%);
        }

        .steps {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        @media (min-width: 860px) {
            .steps { grid-template-columns: repeat(3, 1fr); }
        }

        .step {
            position: relative;
            padding: 2rem 1.5rem 1.75rem;
            background: var(--white);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
        }
        .step-num {
            position: absolute;
            top: -20px;
            left: 1.5rem;
            width: 40px;
            height: 40px;
            border-radius: 999px;
            background: var(--teal);
            color: var(--white);
            font-weight: 700;
            display: grid;
            place-items: center;
            box-shadow: var(--shadow-md);
        }
        .step h3 {
            margin: 0.5rem 0 0.5rem;
            font-size: 1.15rem;
        }
        .step p {
            margin: 0;
            color: var(--ink-soft);
        }

        /* ===== FAQ ===== */

        .faq-list {
            max-width: 720px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .faq-item {
            background: #fff;
            border: 1px solid rgba(36,79,111,0.1);
            border-radius: 12px;
            overflow: hidden;
        }

        .faq-item summary {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            padding: 1.1rem 1.4rem;
            font-weight: 600;
            font-size: 1rem;
            color: var(--ink);
            cursor: pointer;
            list-style: none;
            user-select: none;
        }

        .faq-item summary::-webkit-details-marker { display: none; }

        .faq-item summary::after {
            content: "+";
            font-size: 1.4rem;
            font-weight: 400;
            color: var(--teal);
            flex-shrink: 0;
            line-height: 1;
            transition: transform 0.2s ease;
        }

        .faq-item[open] summary::after {
            transform: rotate(45deg);
        }

        .faq-item p {
            margin: 0;
            padding: 0 1.4rem 1.2rem;
            color: var(--ink-soft);
            line-height: 1.65;
        }

        .faq-item a { color: var(--teal); }

        /* ===== Use cases (pills) ===== */

        .cases {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 0.75rem;
            justify-content: center;
            margin-top: 2rem;
        }
        .case {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.55rem 1rem;
            background: var(--white);
            color: var(--ink);
            border-radius: 999px;
            font-weight: 500;
            font-size: 0.95rem;
            box-shadow: var(--shadow-sm);
        }
        .case em {
            font-style: normal;
            width: 8px; height: 8px;
            border-radius: 999px;
            background: var(--yellow);
        }
        .case:nth-child(2n) em { background: var(--teal); }
        .case:nth-child(3n) em { background: var(--blue); }
        .case:nth-child(5n) em { background: var(--brown); }

        /* ===== Contact CTA ===== */

        .cta-band {
            background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 140%);
            color: var(--white);
            border-radius: var(--radius-lg);
            padding: 3.5rem 2rem;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .cta-band::before {
            content: "";
            position: absolute;
            width: 340px; height: 340px;
            border-radius: 999px;
            background: rgba(239, 218, 127, 0.18);
            top: -160px; right: -120px;
        }
        .cta-band::after {
            content: "";
            position: absolute;
            width: 240px; height: 240px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
            bottom: -120px; left: -80px;
        }
        .cta-band h2, .cta-band > .cta-inner > p { color: var(--white); }
        .cta-band h2 { font-size: clamp(1.75rem, 3.5vw, 2.4rem); margin: 0 0 0.75rem; }
        .cta-band > .cta-inner > p { max-width: 56ch; margin: 0 auto 1.75rem; opacity: 0.92; }
        .cta-inner { position: relative; z-index: 1; text-align: center; }

        /* Contact form */
        .contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: .85rem;
            max-width: 560px;
            margin: 0 auto;
            text-align: left;
        }
        .contact-form .full { grid-column: 1 / -1; }
        .contact-form label {
            display: flex;
            flex-direction: column;
            gap: .35rem;
            font-size: .88rem;
            font-weight: 600;
            color: rgba(255,255,255,.9);
        }
        .contact-form input,
        .contact-form textarea {
            font-family: inherit;
            font-size: .95rem;
            padding: .7rem 1rem;
            border-radius: var(--radius-sm);
            border: 2px solid rgba(255,255,255,.25);
            background: rgba(255,255,255,.15);
            color: var(--white);
            outline: none;
            transition: border-color 150ms;
            resize: vertical;
        }
        .contact-form input::placeholder,
        .contact-form textarea::placeholder { color: rgba(255,255,255,.5); }
        .contact-form input:focus,
        .contact-form textarea:focus { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.2); }
        .contact-form textarea { min-height: 110px; }
        .contact-form .submit-row { grid-column: 1 / -1; display: flex; justify-content: center; margin-top: .25rem; }
        .contact-form .btn-send {
            background: var(--white);
            color: var(--ink);
            padding: .9rem 2.5rem;
            border-radius: 999px;
            font-family: inherit;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: background 120ms, transform 120ms;
        }
        .contact-form .btn-send:hover { background: var(--yellow); transform: translateY(-1px); }
        .form-error {
            grid-column: 1 / -1;
            background: rgba(255,255,255,.15);
            border: 1px solid rgba(255,255,255,.4);
            border-radius: 8px;
            padding: .65rem 1rem;
            font-size: .9rem;
            color: var(--white);
        }
        .form-success {
            text-align: center;
            padding: 1.5rem;
            font-size: 1.1rem;
            color: var(--white);
        }
        .form-success .check {
            font-size: 2.5rem;
            display: block;
            margin-bottom: .5rem;
        }
        @media (max-width: 540px) {
            .contact-form { grid-template-columns: 1fr; }
            .contact-form .full { grid-column: 1; }
        }

        /* ===== Footer ===== */

        .site-footer {
            background: var(--ink);
            color: rgba(255,255,255,0.65);
            padding: 3.5rem 0 0;
            font-size: 0.88rem;
        }

        /* 2-column grid on mobile, 4-column on ≥720px */
        .foot-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem 1.25rem;
        }
        @media (min-width: 720px) {
            .foot-grid {
                grid-template-columns: 1.8fr 1fr 1fr 1fr;
                gap: 1.5rem 2.5rem;
                align-items: start;
            }
        }

        /* Brand column */
        .foot-brand-link {
            color: #fff;
            margin-bottom: 0.75rem;
        }
        .foot-brand-name { color: #fff !important; }
        .foot-tagline {
            margin: 0.6rem 0 0.2rem;
            font-size: 0.82rem;
            line-height: 1.55;
            color: rgba(255,255,255,0.55);
        }
        .foot-cvr {
            margin: 0;
            font-size: 0.76rem;
            color: rgba(255,255,255,0.35);
        }
        .foot-email {
            display: inline-block;
            margin-top: 0.85rem;
            color: var(--teal);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
        }
        .foot-email:hover { color: #fff; }

        .foot-social {
            display: flex;
            flex-wrap: wrap;
            gap: 0.65rem 1rem;
            margin-top: 1rem;
            align-items: center;
        }
        .foot-social a {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            color: rgba(255,255,255,0.65);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            line-height: 1;
            transition: color 0.15s;
        }
        .foot-social a:hover { color: #fff; }
        .foot-social svg { flex-shrink: 0; opacity: 0.92; }

        /* Link columns */
        .foot-col {
            display: flex;
            flex-direction: column;
            gap: 0.45rem;
        }
        .foot-col-label {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.09em;
            color: rgba(255,255,255,0.35);
            margin: 0 0 0.35rem;
        }
        .foot-col a {
            color: rgba(255,255,255,0.65);
            text-decoration: none;
            font-size: 0.88rem;
            line-height: 1.4;
            transition: color 0.15s;
        }
        .foot-col a:hover { color: #fff; }

        /* Bottom bar */
        .foot-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            margin-top: 2.75rem;
            padding: 1.1rem 0;
            font-size: 0.76rem;
            color: rgba(255,255,255,0.3);
        }
        .foot-bottom p { margin: 0; }

        /* ===== CMP Modal ===== */

        /* Backdrop — covers the full viewport, blurs content behind */
        .cmp-banner {
            position: fixed;
            inset: 0;
            z-index: 200;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            background: rgba(10, 20, 30, 0.72);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            opacity: 1;
            transition: opacity 0.25s ease;
        }

        .cmp-banner.cmp-hidden {
            opacity: 0;
            pointer-events: none;
        }

        /* Modal box */
        .cmp-inner {
            background: var(--ink);
            color: var(--white);
            border-radius: var(--radius-md);
            padding: 2rem 2rem 1.75rem;
            max-width: 500px;
            width: 100%;
            max-height: calc(100dvh - 2rem);
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            transform: scale(1);
            transition: transform 0.25s ease;
            overflow: hidden;
        }

        .cmp-banner.cmp-hidden .cmp-inner {
            transform: scale(0.97);
        }

        .cmp-text { flex: 1; overflow-y: auto; min-height: 0; }

        .cmp-text strong {
            display: block;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 0.4rem;
        }
        .cmp-text p {
            margin: 0;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.6;
        }

        .cmp-actions {
            display: flex;
            gap: 0.65rem;
            flex-wrap: wrap;
        }

        .cmp-btn {
            flex: 1;
            min-width: 140px;
            padding: 0.7rem 1.2rem;
            border-radius: 999px;
            font-family: inherit;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            border: 2px solid transparent;
            text-align: center;
            transition: border-color 120ms, color 120ms;
            white-space: nowrap;
        }

        /* Both buttons are visually identical — GDPR requires no nudging. */
        .cmp-btn-accept,
        .cmp-btn-deny {
            background: transparent;
            color: rgba(255, 255, 255, 0.85);
            border-color: rgba(255, 255, 255, 0.35);
        }
        .cmp-btn-accept:hover,
        .cmp-btn-deny:hover {
            border-color: rgba(255, 255, 255, 0.75);
            color: var(--white);
        }

        .cmp-lang {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            padding-top: 0.85rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.06em;
        }
        .cmp-lang a {
            color: rgba(255, 255, 255, 0.35);
            text-decoration: none;
            transition: color 120ms;
        }
        .cmp-lang a.active { color: rgba(255, 255, 255, 0.9); }
        .cmp-lang a:hover  { color: var(--white); }
        .cmp-lang span     { color: rgba(255, 255, 255, 0.2); }

        .cmp-policy-link {
            display: inline-block;
            margin-left: 0.25rem;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            white-space: nowrap;
        }
        .cmp-policy-link:hover { color: var(--white); text-decoration: underline; }

        /* CMP — expandable cookie detail panel */
        .cmp-details {
            margin-top: 0.5rem;
        }

        .cmp-details-summary {
            display: inline-block;
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.55);
            cursor: pointer;
            list-style: none;
            user-select: none;
            padding: 0.1rem 0;
            text-decoration: underline;
            text-underline-offset: 2px;
            transition: color 120ms;
        }

        .cmp-details-summary::-webkit-details-marker { display: none; }
        .cmp-details-summary::marker { display: none; }

        .cmp-details-summary::after {
            content: ' ▾';
            font-size: 0.7em;
            vertical-align: middle;
        }

        .cmp-details[open] .cmp-details-summary::after {
            content: ' ▴';
        }

        .cmp-details-summary:hover { color: var(--white); }

        .cmp-cookie-groups {
            margin-top: 0.65rem;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            overflow-x: auto;
        }

        .cmp-group-label {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            color: rgba(255, 255, 255, 0.4);
            margin: 0 0 0.3rem;
        }

        .cmp-cookie-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .cmp-cookie-table th {
            text-align: left;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.4);
            padding: 0.15rem 0.75rem 0.15rem 0;
            white-space: nowrap;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cmp-cookie-table td {
            padding: 0.25rem 0.75rem 0.25rem 0;
            vertical-align: top;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            line-height: 1.45;
        }

        .cmp-cookie-table tr:last-child td { border-bottom: none; }

        .cmp-cookie-table code {
            font-family: ui-monospace, 'Courier New', monospace;
            font-size: 0.85em;
            color: #7ee8d7;
            background: rgba(255, 255, 255, 0.08);
            padding: 0.1em 0.35em;
            border-radius: 3px;
            white-space: nowrap;
        }

        /* ===== Price calculator ===== */

        .calc-card {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 2rem 2rem 1.75rem;
            box-shadow: var(--shadow-md);
            max-width: 640px;
            margin: 0 auto;
        }
        .calc-controls {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-bottom: 1.75rem;
        }
        @media (min-width: 580px) {
            .calc-controls { grid-template-columns: 1fr 1fr; }
        }
        .calc-group-label {
            display: block;
            font-weight: 600;
            font-size: 0.875rem;
            color: var(--ink);
            margin-bottom: 0.6rem;
        }
        .seg-group {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }
        .seg-btn {
            border: 1.5px solid rgba(36,79,111,0.18);
            background: var(--white);
            color: var(--ink-soft);
            border-radius: 999px;
            padding: 0.4rem 0.9rem;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
            font-family: inherit;
            line-height: 1.4;
        }
        .seg-btn:hover {
            border-color: var(--teal);
            color: var(--teal-dark);
        }
        .seg-btn.seg-active {
            background: var(--teal);
            border-color: var(--teal);
            color: var(--white);
            box-shadow: 0 2px 8px rgba(84,189,168,0.25);
        }
        .calc-result {
            background: var(--teal-soft);
            border-radius: var(--radius-sm);
            padding: 1.75rem 1.5rem 1.5rem;
            text-align: center;
            margin-bottom: 1rem;
            min-height: 9rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.25rem;
        }
        .calc-price-val {
            font-size: 3rem;
            font-weight: 800;
            color: var(--ink);
            line-height: 1;
            letter-spacing: -0.02em;
        }
        .calc-breakdown {
            font-size: 0.875rem;
            color: var(--ink-soft);
            margin-top: 0.35rem;
        }
        .calc-cta { margin-top: 0.85rem; }
        .calc-contact-text {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--ink);
            margin: 0 0 0.85rem;
        }
        .calc-includes {
            font-size: 0.82rem;
            color: var(--ink-soft);
            text-align: center;
            line-height: 1.55;
            margin: 0;
        }

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

        /* ===== Mobile section padding ===== */
        @media (max-width: 639px) {
            section.band       { padding: 3rem 0; }
            .cta-band          { padding: 2rem 1.25rem; }
            .hero              { padding: 2.5rem 0 3rem; }
        }

        /* ===== CMP: stack buttons vertically on narrow screens ===== */
        @media (max-width: 479px) {
            .cmp-actions {
                flex-direction: column;
            }
            .cmp-btn {
                flex: none;
                width: 100%;
                min-width: 0;
            }
        }

        /* ===== Mobile: hide desktop nav CTA, show hamburger ===== */
        @media (max-width: 719px) {
            .nav-cta-desktop { display: none !important; }
        }

        /* ===== Hamburger button ===== */
        .nav-hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            background: none;
            border: 1.5px solid rgba(36,79,111,0.18);
            border-radius: 8px;
            cursor: pointer;
            padding: 0;
            flex-shrink: 0;
            transition: background 120ms;
            -webkit-tap-highlight-color: transparent;
        }
        .nav-hamburger:hover { background: rgba(36,79,111,0.05); }
        .nav-hamburger .bar {
            display: block;
            width: 17px;
            height: 1.75px;
            background: var(--ink);
            border-radius: 2px;
            transition: transform 220ms cubic-bezier(.4,0,.2,1), opacity 220ms;
            pointer-events: none;
        }
        .nav-hamburger[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(6.75px) rotate(45deg); }
        .nav-hamburger[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .nav-hamburger[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-6.75px) rotate(-45deg); }
        @media (max-width: 719px) {
            .nav-hamburger { display: inline-flex; }
        }

        /* ===== Mobile menu panel ===== */
        .nav-mobile {
            display: none;
            border-top: 1px solid rgba(36,79,111,0.08);
            background: rgba(251,247,239,0.98);
            overflow-y: auto;
            max-height: calc(100svh - 66px);
        }
        .nav-mobile.is-open { display: block; }
        @media (min-width: 720px) {
            .nav-mobile { display: none !important; }
        }

        .nav-mobile-section-label {
            display: block;
            padding: 0.9rem 1.5rem 0.35rem;
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--ink-soft);
            opacity: 0.6;
        }

        .nav-mobile a.nav-mobile-link,
        .nav-mobile a.nav-mobile-sublink {
            display: flex;
            align-items: center;
            padding: 0.85rem 1.5rem;
            font-weight: 500;
            font-size: 1rem;
            color: var(--ink);
            border-bottom: 1px solid rgba(36,79,111,0.07);
            text-decoration: none;
            transition: background 120ms, color 120ms;
        }
        .nav-mobile a.nav-mobile-sublink {
            padding-left: 2.25rem;
            font-size: 0.93rem;
            color: var(--ink-soft);
        }
        .nav-mobile a.nav-mobile-link:hover,
        .nav-mobile a.nav-mobile-sublink:hover {
            background: var(--teal-soft);
            color: var(--teal-dark);
        }

        .nav-mobile-cta-row {
            padding: 1.25rem 1.5rem 1.75rem;
        }
        .nav-mobile-cta-row .btn {
            width: 100%;
            justify-content: center;
        }

        /* ===== CMP: fix overflow so cookie table can scroll ===== */
        /* overflow: clip clips decorative overflow without creating a scroll
           container, so nested overflow-x: auto still works correctly. */
        .cmp-inner { overflow: clip; }

        /* Give the table an explicit minimum so it can be wider than its container,
           enabling the parent overflow-x: auto to kick in on small screens. */
        .cmp-cookie-table { min-width: 420px; }

        /* Ensure the cookie groups area scrolls horizontally on mobile */
        .cmp-cookie-groups { overflow-x: auto; -webkit-overflow-scrolling: touch; }

        /* ===== Nav dropdown ===== */

        .has-dropdown {
            position: relative;
        }

        .dropdown-trigger {
            background: none;
            border: none;
            cursor: pointer;
            font-family: inherit;
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--ink-soft);
            padding: 0;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            line-height: 1;
        }
        .dropdown-trigger:hover { color: var(--ink); }

        .dropdown-trigger .chevron {
            width: 14px;
            height: 14px;
            transition: transform 200ms;
            flex-shrink: 0;
        }
        .has-dropdown:hover .chevron,
        .has-dropdown.open   .chevron { transform: rotate(180deg); }

        .nav-dropdown {
            display: none;
            position: absolute;
            /* top: 100% is flush with the trigger — no dead zone.
               padding-top provides visual breathing room while remaining
               inside the hover area, so the dropdown never closes mid-travel. */
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--white);
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(36,79,111,0.08);
            padding: 0.75rem 0.4rem 0.4rem;
            min-width: 230px;
            z-index: 100;
            flex-direction: column;
            gap: 0.1rem;
        }
        .has-dropdown:hover .nav-dropdown,
        .has-dropdown.open   .nav-dropdown { display: flex; }

        .nav-dropdown a {
            display: block;
            padding: 0.65rem 1rem;
            border-radius: 8px;
            color: var(--ink);
            font-size: 0.92rem;
            font-weight: 500;
            text-decoration: none;
        }
        .nav-dropdown a:hover {
            background: var(--teal-soft);
            color: var(--teal-dark);
            text-decoration: none;
        }
        .nav-dropdown-divider {
            height: 1px;
            background: rgba(36,79,111,0.08);
            margin: 0.25rem 0.5rem;
        }

        /* ===== Demo page ===== */

        .demo-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: var(--teal-soft);
            color: var(--teal-dark);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            padding: 0.3rem 0.85rem;
            border-radius: 999px;
            margin-bottom: 1rem;
        }
        .demo-badge-dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--teal);
            animation: demo-pulse 2s ease-in-out infinite;
        }
        @keyframes demo-pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50%       { opacity: 0.4; transform: scale(0.7); }
        }

        /* ── Stage: two panels side by side ── */
        .demo-stage {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            align-items: start;
        }
        @media (min-width: 900px) {
            .demo-stage { grid-template-columns: 1fr 1fr; gap: 2rem; }
        }

        /* ── Panel outer shell ── */
        .demo-panel {
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }
        .demo-panel-bar {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1rem;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        .demo-panel-bar-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: currentColor;
            opacity: 0.55;
        }
        .demo-tv-live {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            color: #4DFFB8;
            margin-left: auto;
        }
        .demo-tv-live-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #4DFFB8;
            animation: demo-pulse 1.5s ease-in-out infinite;
        }

        /* ── Reset button ── */
        .demo-reset-row {
            display: flex;
            justify-content: center;
            padding-top: 1.5rem;
        }
        .demo-reset-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.55rem 1.25rem;
            border: 1.5px solid rgba(36,79,111,0.2);
            border-radius: 999px;
            background: transparent;
            color: var(--ink-soft);
            font-family: inherit;
            font-size: 0.82rem;
            font-weight: 600;
            cursor: pointer;
            transition: border-color 150ms, color 150ms;
        }
        .demo-reset-btn:hover { border-color: var(--ink); color: var(--ink); }
        .demo-reset-btn svg { width: 13px; height: 13px; }

        /* ── Picker modal ── */
        .demo-modal-backdrop {
            position: fixed;
            inset: 0;
            z-index: 300;
            background: rgba(10, 20, 30, 0.72);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            opacity: 1;
            transition: opacity 0.2s ease;
        }
        .demo-modal-backdrop.is-hidden { opacity: 0; pointer-events: none; }
        .demo-modal {
            background: #fff;
            border-radius: var(--radius-md);
            width: 100%;
            max-width: 480px;
            max-height: calc(100dvh - 2rem);
            overflow-y: auto;
            box-shadow: var(--shadow-lg);
            transform: scale(1);
            transition: transform 0.2s ease;
        }
        .demo-modal-backdrop.is-hidden .demo-modal { transform: scale(0.97); }
        .demo-modal-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.1rem 1.1rem 0.7rem;
            border-bottom: 1px solid rgba(36,79,111,0.07);
            position: sticky;
            top: 0;
            background: #fff;
            z-index: 1;
        }
        .demo-modal-head h3 { font-size: 0.95rem; margin: 0; }
        .demo-modal-close {
            width: 30px; height: 30px;
            border: none;
            background: rgba(36,79,111,0.06);
            border-radius: 50%;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            color: var(--ink-soft);
            flex-shrink: 0;
            transition: background 120ms;
        }
        .demo-modal-close:hover { background: rgba(36,79,111,0.12); }
        .demo-modal-close svg { width: 13px; height: 13px; }
        .demo-modal-hint {
            font-size: 0.8rem;
            color: var(--ink-soft);
            padding: 0.6rem 1.1rem 0;
        }
        .demo-modal-empty {
            padding: 2rem 1.1rem;
            text-align: center;
            color: var(--ink-soft);
            font-size: 0.9rem;
        }
        /* Photo picker grid */
        .demo-picker-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.4rem;
            padding: 0.65rem 1.1rem 1.1rem;
        }
        .demo-picker-photo {
            aspect-ratio: 3 / 4;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            position: relative;
            transition: transform 150ms, box-shadow 150ms;
        }
        .demo-picker-photo:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
        .demo-picker-photo img {
            width: 100%; height: 100%;
            object-fit: cover; display: block;
        }
        .demo-picker-photo-label {
            position: absolute;
            bottom: 0.3rem; left: 0.3rem; right: 0.3rem;
            font-size: 0.62rem; font-weight: 600;
            color: rgba(255,255,255,0.85);
            text-align: center; line-height: 1.3;
            text-shadow: 0 1px 3px rgba(0,0,0,0.5);
        }
        /* Message picker list */
        .demo-picker-entries {
            padding: 0.4rem 1.1rem 1.1rem;
            display: flex; flex-direction: column; gap: 0.4rem;
        }
        .demo-picker-entry {
            border: 1.5px solid rgba(36,79,111,0.12);
            border-radius: 10px;
            padding: 0.7rem 0.9rem;
            cursor: pointer;
            transition: border-color 150ms, background 150ms;
        }
        .demo-picker-entry:hover { border-color: var(--teal); background: var(--teal-soft); }
        .demo-picker-entry-name { font-size: 0.75rem; font-weight: 700; color: var(--ink); margin-bottom: 0.15rem; }
        .demo-picker-entry-msg { font-size: 0.8rem; color: var(--ink-soft); line-height: 1.5; margin: 0; }
