:root {
    --ink: #17221f;
    --muted: #64736e;
    --line: #dce5df;
    --soft: #fbf7ef;
    --brand: #0a7a5b;
    --brand-dark: #07523f;
    --accent: #e6a93f;
    --sun: #ffd87a;
    --blue: #2f7495;
    --rose: #b25a50;
    --white: #fff;
    --panel: #fffdf8;
    --shadow: 0 18px 55px rgba(31, 41, 36, .10);
    --warm-shadow: 0 20px 60px rgba(123, 91, 40, .14);
}

* { box-sizing: border-box; }
body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(180deg, #f5fbf8 0, #fff 420px);
    line-height: 1.55;
    overflow-x: hidden;
}
a { color: inherit; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 4vw, 56px);
    background: rgba(255,255,255,.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}
.logo {
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
}
.logo span { color: var(--brand); }
nav {
    display: flex;
    gap: 6px;
    color: var(--muted);
    font-weight: 700;
}
nav a {
    padding: 9px 11px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
}
nav a:hover { background: var(--soft); color: var(--ink); }
.hero {
    position: relative;
    min-height: 650px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 560px);
    gap: clamp(26px, 4vw, 62px);
    align-items: center;
    padding: clamp(34px, 6vw, 72px) clamp(18px, 5vw, 72px) clamp(54px, 7vw, 92px);
    background:
        linear-gradient(135deg, rgba(255,255,255,.96) 0 44%, rgba(239,248,244,.92) 44% 100%),
        radial-gradient(circle at 86% 10%, rgba(47,116,149,.18), transparent 27%),
        radial-gradient(circle at 8% 88%, rgba(230,169,63,.15), transparent 26%);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 160px;
    background: linear-gradient(180deg, transparent, #fff);
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    right: clamp(20px, 7vw, 110px);
    top: 112px;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(10,122,91,.16);
    border-radius: 50%;
    animation: slowPulse 6s ease-in-out infinite;
    pointer-events: none;
}
.hero-copy,
.hero-visual {
    position: relative;
    z-index: 1;
    min-width: 0;
}
.hero-visual {
    display: grid;
    align-items: center;
    min-height: 520px;
}
.hero-funnel {
    align-items: start;
    min-height: 0;
}
.hero-funnel::before {
    display: none;
}
.hero-funnel .lead-form {
    width: min(100%, 620px);
    margin-left: auto;
    background: rgba(255,255,255,.98);
    border-color: rgba(10,122,91,.18);
    box-shadow: 0 26px 70px rgba(23,34,31,.16);
    backdrop-filter: blur(18px);
}
.hero-funnel .calc-head {
    margin-bottom: 14px;
}
.hero-funnel .calc-head span {
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
}
.hero-funnel .calc-head strong {
    display: block;
    margin-top: 3px;
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.1;
}
.hero-funnel .calc-head small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-weight: 750;
}
.hero-visual img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--warm-shadow);
    transform: rotate(.6deg);
    animation: imageLift 7s ease-in-out infinite;
}
.hero-visual::before {
    content: "";
    position: absolute;
    inset: 12% -8% auto auto;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,216,122,.50), rgba(255,216,122,0) 68%);
    filter: blur(5px);
    pointer-events: none;
}
.eyebrow {
    margin: 0 0 12px;
    color: var(--brand-dark);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
    max-width: 780px;
    margin-bottom: 18px;
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1;
    letter-spacing: 0;
}
.animated-words {
    position: relative;
    display: inline-grid;
    min-width: min(100%, 9.8em);
    height: 1.08em;
    color: #0b6b54;
    vertical-align: -.08em;
    overflow: hidden;
}
.animated-words span {
    grid-area: 1 / 1;
    display: block;
    opacity: 0;
    transform: translateY(82%) rotateX(-35deg);
    animation: wordSwap 12s cubic-bezier(.2,.72,.18,1) infinite;
    white-space: nowrap;
}
.animated-words span:nth-child(2) { animation-delay: 3s; }
.animated-words span:nth-child(3) { animation-delay: 6s; }
.animated-words span:nth-child(4) { animation-delay: 9s; }
.intent-ticker {
    max-width: min(100%, 740px);
    margin: 24px 0 0;
    overflow: hidden;
    border: 1px solid rgba(10,122,91,.12);
    border-radius: 8px;
    background: rgba(255,253,248,.82);
    box-shadow: 0 12px 28px rgba(75,61,36,.07);
}
.ticker-track {
    display: flex;
    width: max-content;
    gap: 8px;
    padding: 10px;
    animation: tickerMove 34s linear infinite;
}
.ticker-track span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #1f493d;
    background: #edf8f3;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}
.ticker-track span:nth-child(3n) {
    color: #6d4b0f;
    background: #fff1c9;
}
.ticker-track span:nth-child(4n) {
    color: #233e4f;
    background: #e8f1f6;
}
h2 {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.08;
}
h3 {
    font-size: 22px;
}
.hero-copy p:not(.eyebrow), .page-hero p, .split p {
    max-width: 650px;
    color: var(--muted);
    font-size: 19px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}
.trust-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(10,122,91,.16);
    border-radius: 999px;
    color: #23483f;
    background: rgba(255,255,255,.76);
    box-shadow: 0 8px 18px rgba(31,41,36,.06);
    font-size: 13px;
    font-weight: 900;
}
.trust-badges span::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--accent);
}
.service-dock {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 10px;
    max-width: min(100%, 760px);
    margin-top: 18px;
}
.service-dock a {
    position: relative;
    display: grid;
    gap: 3px;
    min-height: 88px;
    padding: 13px;
    border: 1px solid rgba(10,122,91,.13);
    border-radius: 8px;
    background: rgba(255,255,255,.72);
    box-shadow: 0 12px 28px rgba(31,41,36,.07);
    text-decoration: none;
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    backdrop-filter: blur(16px);
}
.service-dock a::after {
    content: "";
    position: absolute;
    inset: auto 12px 10px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(.32);
    transform-origin: left;
    transition: transform .22s ease;
}
.service-dock a:hover {
    transform: translateY(-3px);
    border-color: rgba(10,122,91,.30);
    box-shadow: 0 18px 36px rgba(31,41,36,.11);
}
.service-dock a:hover::after { transform: scaleX(1); }
.service-dock span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 950;
}
.service-dock strong {
    color: var(--ink);
    font-size: 17px;
    line-height: 1.1;
}
.service-dock small {
    color: var(--muted);
    font-weight: 800;
    line-height: 1.25;
}
.match-console {
    position: absolute;
    right: clamp(-18px, -1.8vw, -8px);
    bottom: 28px;
    z-index: 3;
    width: min(320px, 86%);
    padding: 16px;
    border: 1px solid rgba(255,255,255,.58);
    border-radius: 8px;
    color: #eaf8f4;
    background: rgba(17,27,25,.82);
    box-shadow: 0 22px 52px rgba(17,27,25,.28);
    backdrop-filter: blur(18px);
    animation: consoleRise 7s ease-in-out infinite;
}
.console-top,
.console-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.console-top {
    margin-bottom: 12px;
}
.console-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #43c69c;
    box-shadow: 0 0 0 5px rgba(67,198,156,.14);
}
.console-top strong {
    flex: 1;
    font-size: 16px;
}
.console-top small {
    color: var(--sun);
    font-weight: 950;
    text-transform: uppercase;
}
.console-row {
    min-height: 38px;
    padding: 8px 0;
    border-top: 1px solid rgba(255,255,255,.10);
    font-size: 13px;
}
.console-row b {
    color: #a8c7bd;
}
.console-row span {
    color: #fff;
    font-weight: 850;
    text-align: right;
}
.console-row.active span { color: var(--sun); }
.console-meter {
    height: 8px;
    margin-top: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    overflow: hidden;
}
.console-meter i {
    display: block;
    width: 78%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #43c69c, var(--sun));
    animation: meterPulse 4s ease-in-out infinite;
}
.floating-proof {
    position: absolute;
    z-index: 3;
    display: grid;
    gap: 2px;
    min-width: 170px;
    padding: 13px 14px;
    border: 1px solid rgba(255,255,255,.66);
    border-radius: 8px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 16px 38px rgba(31,41,36,.14);
    backdrop-filter: blur(14px);
    animation: floatProof 5.6s ease-in-out infinite;
}
.floating-proof strong {
    color: var(--brand-dark);
    font-size: 15px;
}
.floating-proof span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
}
.proof-a {
    left: -18px;
    top: 98px;
}
.proof-b {
    right: 40px;
    top: 46px;
    animation-delay: .8s;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border: 1px solid transparent;
    border-radius: 7px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.button.primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--brand), #0b674f);
    box-shadow: 0 12px 26px rgba(10, 122, 91, .20);
}
.button.primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(10, 122, 91, .24); }
.button.secondary {
    background: rgba(255,255,255,.86);
    border-color: var(--line);
}
.button.secondary:hover { transform: translateY(-2px); border-color: rgba(10,122,91,.34); }
.split {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, 520px);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
    padding: clamp(44px, 7vw, 86px) clamp(18px, 5vw, 72px);
}
.checks {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 26px 0 0;
    list-style: none;
}
.checks li {
    position: relative;
    padding-left: 28px;
    font-weight: 700;
}
.checks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}
.lead-form {
    padding: clamp(18px, 3vw, 28px);
    background: linear-gradient(180deg, var(--panel), #fff);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.lead-form::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--accent), var(--blue));
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.address-start {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(110px, .55fr);
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(10,122,91,.18);
    border-radius: 8px;
    background: linear-gradient(180deg, #f6fbf8, #fff);
}
.address-start input {
    min-height: 56px;
    font-size: 20px;
    font-weight: 850;
}
.address-start .button {
    grid-column: 1 / -1;
    min-height: 52px;
    justify-content: center;
}
.form-followup {
    margin-top: 16px;
}
.simple-funnel.is-step-start .form-followup {
    display: none;
}
.simple-funnel.is-step-open .funnel-meter span:first-child {
    color: #fff;
    border-color: var(--brand);
    background: var(--brand);
}
.simple-funnel.is-step-open .funnel-meter span:nth-child(2),
.simple-funnel.is-step-open .funnel-meter span:nth-child(3) {
    color: var(--brand-dark);
    border-color: rgba(10,122,91,.22);
    background: #edf8f3;
}
.form-note {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 750;
}
.funnel-meter {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin: 0 0 16px;
}
.funnel-meter span {
    min-height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(10,122,91,.14);
    border-radius: 6px;
    color: var(--muted);
    background: #f6fbf8;
    font-size: 12px;
    font-weight: 950;
}
.funnel-meter .active {
    color: #fff;
    border-color: var(--brand);
    background: var(--brand);
}
label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
}
input, select, textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    border: 1px solid #cbd8d4;
    border-radius: 6px;
    color: var(--ink);
    background: var(--white);
    font: inherit;
}
input:focus, select:focus, textarea:focus {
    outline: 2px solid rgba(10, 122, 91, .18);
    border-color: var(--brand);
}
textarea { resize: vertical; }
.full { margin-top: 14px; }
.consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 16px 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}
.consent input {
    width: 18px;
    min-height: 18px;
    margin-top: 2px;
}
.hp {
    position: absolute;
    left: -9999px;
}
.cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 0 clamp(18px, 5vw, 72px) clamp(56px, 8vw, 96px);
}
.match-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin: -34px clamp(18px, 5vw, 72px) 0;
    border: 1px solid rgba(10,122,91,.12);
    border-radius: 8px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 18px 48px rgba(31,41,36,.09);
    overflow: hidden;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(18px);
}
.match-strip div {
    min-height: 94px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,253,248,.92));
}
.match-strip span {
    display: block;
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}
.match-strip strong {
    display: block;
    margin-top: 8px;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.15;
}
.warm-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: clamp(28px, 5vw, 56px) clamp(18px, 5vw, 72px) 0;
    background: linear-gradient(180deg, #fff, #fffaf0);
}
.warm-proof article {
    min-height: 156px;
    padding: 22px;
    border: 1px solid rgba(220,229,223,.92);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,253,248,.98));
    box-shadow: 0 12px 34px rgba(70,55,34,.07);
}
.warm-proof span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 950;
}
.warm-proof strong {
    display: block;
    margin: 8px 0 7px;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.15;
}
.warm-proof p {
    margin-bottom: 0;
    color: var(--muted);
    font-weight: 650;
}
.cards article {
    min-height: 210px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #fff, #fffdf8);
    box-shadow: 0 10px 30px rgba(70, 55, 34, .06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.cards article:hover,
.proof-list article:hover,
.trust-strip article:hover,
.flow-steps article:hover {
    transform: translateY(-4px);
    border-color: rgba(10,122,91,.22);
    box-shadow: 0 18px 42px rgba(22,34,31,.10);
}
.cards p { color: var(--muted); }
.cards a, .city-links a {
    color: var(--brand-dark);
    font-weight: 800;
}
.content-page .page-hero {
    position: relative;
    padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 72px) clamp(30px, 4vw, 54px);
    background:
        linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.70)),
        radial-gradient(circle at 82% 24%, rgba(255,216,122,.34), transparent 28%),
        radial-gradient(circle at 14% 84%, rgba(47,116,149,.12), transparent 30%),
        linear-gradient(120deg, rgba(255,250,239,.99), rgba(255,255,255,.91)),
        url("/assets/hero.jpg") center/cover no-repeat;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}
.content-page .page-hero::after {
    content: "";
    position: absolute;
    right: clamp(18px, 6vw, 96px);
    bottom: -46px;
    width: 240px;
    height: 240px;
    border: 1px dashed rgba(10,122,91,.18);
    border-radius: 50%;
    animation: orbitSpin 24s linear infinite;
    pointer-events: none;
}
.content-page .page-hero > * {
    position: relative;
    z-index: 1;
    min-width: 0;
}
.content-page h1 {
    font-size: clamp(38px, 5vw, 66px);
}
.price-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: clamp(24px, 4vw, 44px) clamp(18px, 5vw, 72px) 0;
}
.price-strip article {
    display: grid;
    gap: 8px;
    min-height: 150px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(22, 34, 31, .06);
}
.price-strip strong {
    font-size: 18px;
}
.price-strip span {
    color: var(--brand-dark);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.05;
}
.price-strip small {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}
.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: clamp(24px, 4vw, 42px) clamp(18px, 5vw, 72px) 0;
}
.trust-strip article {
    min-height: 104px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #fff, #fffdf7);
    box-shadow: 0 10px 30px rgba(70, 55, 34, .06);
}
.trust-strip strong {
    display: block;
    color: var(--brand-dark);
    font-size: 28px;
    line-height: 1.05;
}
.trust-strip span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 800;
}
.compare-proof {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
    gap: clamp(24px, 5vw, 64px);
    align-items: start;
    padding: clamp(36px, 6vw, 72px) clamp(18px, 5vw, 72px) 0;
}
.compare-proof h2 {
    max-width: 760px;
}
.compare-proof p:not(.eyebrow) {
    max-width: 720px;
    color: var(--muted);
    font-size: 18px;
}
.proof-list {
    display: grid;
    gap: 12px;
}
.proof-list article {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(22, 34, 31, .06);
}
.proof-list strong {
    display: block;
    color: var(--brand-dark);
    font-size: 20px;
}
.proof-list span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-weight: 700;
}
.decision-panel {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(340px, 1fr);
    gap: clamp(22px, 4vw, 52px);
    align-items: stretch;
    padding: clamp(30px, 5vw, 64px) clamp(18px, 5vw, 72px) 0;
}
.decision-panel > div:first-child {
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid rgba(47,116,149,.15);
    border-radius: 8px;
    background:
        linear-gradient(140deg, rgba(255,255,255,.94), rgba(239,248,244,.88)),
        radial-gradient(circle at 90% 10%, rgba(47,116,149,.16), transparent 34%);
    box-shadow: 0 18px 44px rgba(31,41,36,.08);
}
.decision-panel h2 {
    max-width: 820px;
    font-size: clamp(28px, 3.4vw, 42px);
}
.decision-panel p:not(.eyebrow) {
    max-width: 780px;
    color: var(--muted);
    font-size: 18px;
}
.decision-cards {
    display: grid;
    gap: 12px;
}
.decision-cards article {
    position: relative;
    min-height: 112px;
    padding: 18px 18px 18px 74px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.90);
    box-shadow: 0 12px 30px rgba(31,41,36,.06);
    overflow: hidden;
}
.decision-cards article::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--brand), var(--accent));
}
.decision-cards span {
    position: absolute;
    left: 18px;
    top: 18px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    color: #fff;
    background: var(--brand-dark);
    font-size: 12px;
    font-weight: 950;
}
.decision-cards strong {
    display: block;
    color: var(--ink);
    font-size: 19px;
    line-height: 1.15;
}
.decision-cards p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 720;
}
.compare-table {
    padding: 0 clamp(18px, 5vw, 72px) clamp(44px, 6vw, 72px);
}
.comparison {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.comparison article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(22, 34, 31, .06);
}
.comparison ul {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    font-weight: 700;
}
.local-answer {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
    gap: clamp(22px, 4vw, 56px);
    align-items: stretch;
    padding: clamp(30px, 5vw, 62px) clamp(18px, 5vw, 72px) 0;
}
.local-answer > div:first-child {
    min-height: 280px;
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid rgba(10,122,91,.14);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,250,239,.92)),
        radial-gradient(circle at 92% 12%, rgba(255,216,122,.22), transparent 32%);
    box-shadow: 0 18px 44px rgba(70,55,34,.08);
}
.local-answer h2 {
    max-width: 860px;
    font-size: clamp(28px, 3.4vw, 42px);
}
.local-answer p:not(.eyebrow) {
    max-width: 780px;
    color: var(--muted);
    font-size: 18px;
}
.intent-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.intent-grid article {
    min-height: 132px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.88);
    box-shadow: 0 12px 30px rgba(31,41,36,.06);
}
.intent-grid span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 950;
}
.intent-grid strong {
    display: block;
    margin: 7px 0 5px;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.15;
}
.intent-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 720;
}
.local-faq {
    padding-top: clamp(26px, 5vw, 58px);
}
.partner-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(340px, .72fr);
    gap: clamp(28px, 6vw, 84px);
    align-items: center;
    min-height: 640px;
    padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 72px);
    background:
        radial-gradient(circle at 82% 20%, rgba(217, 155, 43, .20), transparent 34%),
        radial-gradient(circle at 18% 86%, rgba(47,111,145,.12), transparent 30%),
        linear-gradient(135deg, #f6f8f7, #ffffff);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}
.partner-hero h1 {
    max-width: 820px;
}
.partner-hero p:not(.eyebrow) {
    max-width: 670px;
    color: var(--muted);
    font-size: 19px;
}
.lead-orbit {
    position: relative;
    min-height: 430px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(246,248,247,.96)),
        repeating-linear-gradient(90deg, rgba(10,122,91,.08) 0 1px, transparent 1px 42px);
    box-shadow: var(--shadow);
    overflow: hidden;
    isolation: isolate;
}
.lead-orbit .orbit-core {
    animation: coreGlow 5s ease-in-out infinite;
}
.lead-orbit::before,
.lead-orbit::after {
    content: "";
    position: absolute;
    inset: 58px;
    border: 1px dashed rgba(10,122,91,.28);
    border-radius: 50%;
    animation: orbitSpin 18s linear infinite;
}
.lead-orbit::after {
    inset: 105px;
    border-color: rgba(217,155,43,.34);
    animation-direction: reverse;
    animation-duration: 22s;
}
.orbit-core {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 170px;
    height: 170px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    color: #fff;
    background: #111b19;
    box-shadow: 0 22px 55px rgba(17,27,25,.22);
    text-align: center;
}
.orbit-core span {
    color: #43c69c;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.orbit-core strong {
    font-size: 24px;
    line-height: 1.05;
}
.orbit-card {
    position: absolute;
    z-index: 3;
    width: min(220px, 48%);
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(22, 34, 31, .10);
    animation: cardFloat 4.5s ease-in-out infinite;
}
.orbit-card strong {
    display: block;
    color: var(--brand-dark);
    font-size: 17px;
}
.orbit-card span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
}
.orbit-card-a { left: 24px; top: 34px; }
.orbit-card-b { right: 24px; top: 138px; animation-delay: .45s; }
.orbit-card-c { left: 54px; bottom: 42px; animation-delay: .9s; }
.partner-flow {
    display: grid;
    grid-template-columns: minmax(0, .75fr) minmax(360px, 1fr);
    gap: clamp(24px, 5vw, 66px);
    align-items: start;
    padding: clamp(38px, 6vw, 74px) clamp(18px, 5vw, 72px);
}
.partner-flow p:not(.eyebrow) {
    color: var(--muted);
    font-size: 18px;
}
.flow-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.flow-steps article {
    min-height: 178px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(22,34,31,.06);
}
.flow-steps span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 950;
}
.flow-steps strong {
    display: block;
    margin: 8px 0;
    color: var(--ink);
    font-size: 19px;
}
.flow-steps p {
    margin-bottom: 0;
    color: var(--muted);
    font-weight: 650;
}
@keyframes orbitSpin {
    to { transform: rotate(360deg); }
}
@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes wordSwap {
    0% { opacity: 0; transform: translateY(82%) rotateX(-35deg); }
    7% { opacity: 1; transform: translateY(0) rotateX(0); }
    23% { opacity: 1; transform: translateY(0) rotateX(0); }
    30% { opacity: 0; transform: translateY(-72%) rotateX(24deg); }
    100% { opacity: 0; transform: translateY(-72%) rotateX(24deg); }
}
@keyframes tickerMove {
    to { transform: translateX(-50%); }
}
@keyframes imageLift {
    0%, 100% { transform: rotate(.6deg) translateY(0); }
    50% { transform: rotate(.6deg) translateY(-8px); }
}
@keyframes slowPulse {
    0%, 100% { transform: scale(1); opacity: .62; }
    50% { transform: scale(1.08); opacity: .28; }
}
@keyframes coreGlow {
    0%, 100% { box-shadow: 0 22px 55px rgba(17,27,25,.22); }
    50% { box-shadow: 0 24px 70px rgba(10,122,91,.30); }
}
@keyframes consoleRise {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}
@keyframes meterPulse {
    0%, 100% { width: 72%; }
    50% { width: 88%; }
}
@keyframes floatProof {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}
.calc-head {
    display: grid;
    gap: 5px;
    margin-bottom: 16px;
    padding: 18px;
    border: 1px solid #cfded9;
    border-radius: 8px;
    background: #fff;
}
.calc-head span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.calc-head strong {
    color: var(--brand-dark);
    font-size: 24px;
    line-height: 1.1;
}
.calc-head small {
    color: var(--muted);
    font-weight: 700;
}
.city-links {
    padding: 0 clamp(18px, 5vw, 72px) clamp(56px, 8vw, 96px);
}
.city-links div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.city-links a {
    padding: 11px 13px;
    border: 1px solid var(--line);
    border-radius: 6px;
    text-decoration: none;
}
.seo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 0 clamp(18px, 5vw, 72px) clamp(44px, 6vw, 72px);
}
.seo-grid article {
    min-height: 220px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(22, 34, 31, .06);
}
.seo-grid h2 {
    font-size: 24px;
    line-height: 1.15;
}
.seo-grid p {
    color: var(--muted);
}
.faq-block {
    padding: 0 clamp(18px, 5vw, 72px) clamp(56px, 8vw, 96px);
}
.faq-block h2 {
    max-width: 780px;
}
.faq-block details {
    max-width: 980px;
    margin-bottom: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(22, 34, 31, .05);
}
.faq-block summary {
    cursor: pointer;
    padding: 16px 18px;
    color: var(--ink);
    font-weight: 900;
}
.faq-block details p {
    margin: 0;
    padding: 0 18px 18px;
    color: var(--muted);
}
.legal {
    max-width: 980px;
    margin: 0 auto;
    padding-bottom: 80px;
}
.legal p {
    padding: 0 clamp(18px, 4vw, 40px);
    color: var(--muted);
    font-size: 18px;
}
.toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 50;
    max-width: 420px;
    padding: 14px 16px;
    border-radius: 8px;
    color: var(--white);
    box-shadow: 0 16px 50px rgba(20,32,29,.2);
}
.toast.success { background: var(--brand-dark); }
.toast.error { background: #a33232; }
.site-footer {
    padding: clamp(32px, 6vw, 70px) clamp(18px, 5vw, 72px) 28px;
    color: #dce8e4;
    background: #111b19;
    border-top: 1px solid rgba(255,255,255,.08);
}
.site-footer a {
    color: inherit;
    text-decoration: none;
}
.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-logo {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
}
.footer-logo span {
    color: #43c69c;
}
.footer-top p {
    max-width: 760px;
    margin: 0;
    color: #aec2bc;
    font-size: 17px;
}
.footer-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #aec2bc;
    font-weight: 900;
    white-space: nowrap;
}
.footer-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-keywords a {
    padding: 9px 11px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 6px;
    background: rgba(255,255,255,.04);
    color: #f4fbf8;
    font-size: 13px;
    font-weight: 850;
}
.footer-keywords a:hover,
.footer-link-list a:hover,
.footer-bottom a:hover {
    color: #43c69c;
}
.footer-mega {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 4vw, 42px);
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-mega h2 {
    margin-bottom: 14px;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
}
.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.footer-link-list {
    display: grid;
    align-content: start;
    gap: 8px;
}
.footer-link-list a {
    color: #b7c9c4;
    font-size: 13px;
    font-weight: 760;
    line-height: 1.25;
}
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    padding-top: 22px;
    color: #91a59f;
    font-size: 13px;
    font-weight: 750;
}

.dash-body {
    min-height: 100vh;
    background: #eef3f1;
}
.dash-login {
    width: min(460px, calc(100vw - 32px));
    margin: 9vh auto;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}
.dash-login h1 {
    font-size: 36px;
}
.dash-nav {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 40;
    display: grid;
    align-content: start;
    gap: 6px;
    width: 238px;
    padding: 20px 14px;
    background: #111b19;
    color: #dce8e4;
    border-right: 1px solid rgba(255,255,255,.08);
}
.dash-logo {
    margin: 0 6px 18px;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    text-decoration: none;
}
.dash-logo span { color: #43c69c; }
.dash-nav a:not(.dash-logo) {
    padding: 12px 12px;
    border-radius: 6px;
    color: inherit;
    font-weight: 800;
    text-decoration: none;
}
.dash-nav a.active,
.dash-nav a:not(.dash-logo):hover {
    background: #20342f;
    color: #fff;
}
.dash-main {
    width: calc(100% - 238px);
    margin-left: 238px;
    padding: 28px;
}
.dash-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(22, 34, 31, .06);
}
.dash-top h1 {
    margin-bottom: 8px;
    font-size: 34px;
    line-height: 1.05;
}
.dash-top p {
    margin-bottom: 0;
    color: var(--muted);
}
.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}
.metric-grid article {
    min-height: 126px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(22, 34, 31, .05);
}
.metric-grid span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.metric-grid strong {
    display: block;
    margin-top: 16px;
    font-size: 44px;
    line-height: 1;
}
.dash-panel {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(22, 34, 31, .05);
}
.dash-panel h2 {
    margin-bottom: 16px;
    font-size: 24px;
}
.dash-panel p {
    color: var(--muted);
}
.dash-table {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}
.dash-table table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
    font-size: 14px;
}
.dash-table th,
.dash-table td {
    padding: 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}
.dash-table th {
    background: #f3f6f5;
    color: #41504c;
    font-size: 12px;
    letter-spacing: 0;
    text-transform: uppercase;
}
.dash-table tbody tr:hover td {
    background: #fbfcfb;
}
.dash-table tr:last-child td {
    border-bottom: 0;
}
.dash-table small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
}
.mini-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-width: 220px;
}
.mini-actions button {
    min-height: 30px;
    padding: 6px 8px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}
.mini-actions button:hover {
    border-color: var(--brand);
    color: var(--brand-dark);
}
.status-badge,
.branch-badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}
.status-badge {
    color: #31524a;
    background: #e8f2ef;
}
.status-sold {
    color: #07533f;
    background: #dff3ec;
}
.status-rejection_pending,
.status-pending {
    color: #715015;
    background: #fff1d1;
}
.status-rejected_approved {
    color: #07533f;
    background: #dff3ec;
}
.status-rejected_denied {
    color: #8b3535;
    background: #f8dddd;
}
.status-invoiced,
.billing-invoiced {
    color: #173f78;
    background: #e8f0ff;
}
.billing-due {
    color: #07533f;
    background: #dff3ec;
}
.billing-waiting {
    color: #715015;
    background: #fff1d1;
}
.billing-returned {
    color: #8b3535;
    background: #f8dddd;
}
.partner-status-active {
    color: #07533f;
    background: #dff3ec;
}
.partner-status-paused {
    color: #715015;
    background: #fff1d1;
}
.partner-status-unsubscribed {
    color: #8b3535;
    background: #f8dddd;
}
.branch-badge {
    color: #233e4f;
    background: #e5f0f5;
}
.branch-kozijnen {
    color: #6d4b0f;
    background: #fff0c6;
}
.branch-verkoopmakelaar {
    color: #07533f;
    background: #dff3ec;
}
.branch-hypotheekadvies {
    color: #233e4f;
    background: #e5f0f5;
}
.dash-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding-top: 4px;
}
.dash-form .button,
.dash-form .consent {
    align-self: end;
}
.region-cockpit {
    display: grid;
    grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}
.region-map {
    position: sticky;
    top: 18px;
    min-height: 560px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        radial-gradient(circle at 46% 16%, rgba(10,122,91,.18), transparent 18%),
        radial-gradient(circle at 64% 48%, rgba(47,116,149,.16), transparent 20%),
        linear-gradient(150deg, #f6fbf8, #fffdf8 58%, #eef7f3);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.7);
}
.region-map::before {
    content: "";
    position: absolute;
    inset: 46px 112px 42px 92px;
    border-radius: 48% 42% 50% 44%;
    background: linear-gradient(180deg, rgba(10,122,91,.12), rgba(10,122,91,.04));
    border: 1px solid rgba(10,122,91,.18);
}
.region-dot {
    position: absolute;
    display: grid;
    gap: 2px;
    min-width: 118px;
    min-height: 52px;
    padding: 8px 10px;
    border: 1px solid rgba(10,122,91,.18);
    border-radius: 8px;
    background: rgba(255,255,255,.94);
    color: var(--ink);
    text-align: left;
    font: inherit;
    box-shadow: 0 12px 26px rgba(22,34,31,.08);
    cursor: pointer;
}
.region-dot:hover,
.region-dot.active {
    border-color: var(--brand);
    background: #e9f7f1;
    color: var(--brand-dark);
}
.region-dot strong {
    font-size: 13px;
    line-height: 1.1;
}
.region-dot span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 850;
}
.region-dot-sittard { left: 38%; top: 39%; }
.region-dot-geleen { left: 27%; top: 47%; }
.region-dot-beek { left: 45%; top: 55%; }
.region-dot-meerssen { left: 49%; top: 64%; }
.region-dot-stein { left: 17%; top: 55%; }
.region-dot-born { left: 35%; top: 28%; }
.region-dot-elsloo { left: 58%; top: 64%; }
.region-dot-urmond { left: 10%; top: 43%; }
.region-dot-munstergeleen { left: 55%; top: 36%; }
.region-dot-brunssum { left: 61%; top: 19%; }
.region-dot-heerlen { left: 64%; top: 29%; }
.region-dot-maastricht { left: 52%; top: 75%; }
.region-dot-roermond { left: 38%; top: 8%; }
.region-editor-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.region-partner-card {
    position: relative;
    display: grid;
    gap: 18px;
    padding: 22px;
    border: 1px solid #c8d7ef;
    border-top: 4px solid #d7e7ff;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 14px 34px rgba(31, 67, 117, .08);
}
.region-partner-card + .region-partner-card {
    margin-top: 4px;
}
.region-partner-card.is-dimmed {
    opacity: .36;
}
.region-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e1e9f5;
}
.region-card-head strong {
    display: block;
}
.region-company-name {
    color: #0f4bb8;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: 0;
}
.region-company-branch {
    display: inline-flex;
    margin-top: 7px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #eaf2ff;
    color: #174078;
    font-size: 13px;
    font-weight: 950;
}
.region-card-status {
    flex: 0 0 auto;
}
.region-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.region-fields label {
    min-width: 0;
}
.region-fields label:nth-child(1),
.region-fields label:nth-child(2) {
    align-self: stretch;
}
.region-partner-card label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 950;
}
.region-partner-card textarea,
.region-partner-card input,
.dash-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-weight: 760;
}
.region-partner-card textarea,
.dash-form textarea {
    min-height: 118px;
    padding: 12px;
    resize: vertical;
}
.region-partner-card input {
    min-height: 48px;
    padding: 0 12px;
}
.region-save-button {
    justify-self: start;
    min-width: 230px;
    margin-top: 4px;
}
.area-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-width: 190px;
}
.area-chips span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #edf8f3;
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 900;
}
.postcode-chips span {
    background: #eef4f8;
    color: #23485b;
}
.inline-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: end;
    margin-bottom: 14px;
}
.inline-form label {
    width: 220px;
}
.invoice-rule-card {
    display: grid;
    gap: 6px;
    margin: 0 0 16px;
    padding: 16px;
    border: 1px solid #c8d7ef;
    border-radius: 8px;
    background: #f8fbff;
}
.invoice-rule-card strong {
    color: #0f4bb8;
    font-size: 18px;
    font-weight: 950;
}
.invoice-rule-card span,
.empty-note {
    color: var(--muted);
    font-weight: 760;
}
.dash-subtitle {
    margin: 18px 0 12px;
    color: #102f5f;
    font-size: 18px;
}
.invoice-due-table {
    margin-bottom: 18px;
}

@media (max-width: 820px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    .site-header {
        position: static;
        align-items: flex-start;
        flex-direction: column;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }
    nav {
        width: 100%;
        max-width: 100vw;
        min-width: 0;
        overflow-x: auto;
        padding-bottom: 4px;
    }
    .content-page,
    .content-page > section,
    .hero,
    .match-strip,
    .warm-proof,
    .cards {
        width: 100vw;
        max-width: 100vw;
    }
    .hero, .split, .compare-proof, .decision-panel, .local-answer, .partner-hero, .partner-flow {
        grid-template-columns: 1fr;
    }
    .hero {
        min-height: 0;
        padding-top: 34px;
    }
    .hero-copy,
    .content-page .page-hero {
        max-width: 100%;
        overflow: hidden;
    }
    .content-page .page-hero,
    .content-page .page-hero > *,
    .content-page .page-hero h1,
    .content-page .page-hero p,
    .content-page .page-hero .intent-ticker,
    .decision-panel > *,
    .local-answer > *,
    .trust-strip > * {
        width: 100% !important;
        max-width: calc(100vw - 48px) !important;
        min-width: 0 !important;
    }
    .content-page .page-hero h1,
    .decision-panel h2,
    .local-answer h2 {
        white-space: normal !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
    }
    h1, h2 {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .hero-visual {
        min-height: 390px;
        align-items: start;
    }
    .hero-funnel {
        min-height: 0;
    }
    .hero-funnel .lead-form {
        width: 100%;
        margin-left: 0;
    }
    .hero-visual img {
        min-height: 280px;
        transform: none;
    }
    .hero-copy p:not(.eyebrow), .page-hero p, .split p {
        font-size: 17px;
    }
    .animated-words {
        display: block;
        min-width: 100%;
        margin-top: 4px;
    }
    .intent-ticker {
        max-width: 100%;
    }
    .ticker-track {
        animation-duration: 26s;
    }
    .service-dock {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .service-dock a {
        min-height: 82px;
    }
    .match-console {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: -64px;
    }
    .floating-proof {
        display: none;
    }
    .match-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 0;
    }
    .match-strip div {
        min-height: 82px;
        padding: 14px;
    }
    .match-strip strong {
        font-size: 16px;
    }
    .form-grid, .cards, .warm-proof, .price-strip, .trust-strip, .seo-grid, .comparison, .intent-grid, .flow-steps {
        grid-template-columns: 1fr;
    }
    .address-start {
        grid-template-columns: 1fr;
    }
    .decision-cards article {
        min-height: 0;
    }
    .local-answer > div:first-child {
        min-height: 0;
    }
    .lead-orbit {
        min-height: 480px;
    }
    .orbit-card {
        width: calc(100% - 36px);
    }
    .orbit-card-a,
    .orbit-card-b,
    .orbit-card-c {
        left: 18px;
        right: auto;
    }
    .orbit-card-a { top: 22px; }
    .orbit-card-b { top: 154px; }
    .orbit-card-c { bottom: 24px; }
    .dash-nav {
        position: static;
        width: 100%;
    }
    .dash-main {
        width: 100%;
        margin-left: 0;
        padding: 14px;
    }
    .metric-grid,
    .dash-form {
        grid-template-columns: 1fr;
    }
    .region-cockpit,
    .region-fields,
    .region-editor-grid {
        grid-template-columns: 1fr;
    }
    .region-card-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .region-save-button {
        width: 100%;
    }
    .region-map {
        position: relative;
        top: auto;
        min-height: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 12px;
    }
    .region-map::before {
        display: none;
    }
    .region-dot {
        position: static;
        min-width: 0;
        width: 100%;
    }
    .footer-top,
    .footer-mega,
    .footer-columns {
        grid-template-columns: 1fr;
    }
    .footer-cta {
        align-items: flex-start;
        flex-direction: column;
        white-space: normal;
    }
    h1 {
        max-width: 100%;
        font-size: 34px;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .content-page h1 { font-size: 32px; }
}

@media (max-width: 520px) {
    .content-page .page-hero h1,
    .content-page .page-hero p,
    .decision-panel h2,
    .decision-panel p,
    .local-answer h2,
    .local-answer p {
        max-width: 320px !important;
    }
    .content-page h1 {
        font-size: 30px;
        line-height: 1.08;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
    .animated-words span {
        position: static;
        opacity: 1;
        transform: none;
    }
    .animated-words span:not(:first-child) {
        display: none;
    }
    .ticker-track {
        transform: none;
    }
}

/* Vergelijk.me 2026 rebuild theme: keep PHP routes/forms, align visuals with the new Next landing. */
:root {
    --ink: #071126;
    --muted: #4d5868;
    --line: #e3e7ec;
    --soft: #f7f8f2;
    --brand: #8fb92e;
    --brand-dark: #5f8618;
    --leaf: #b8df45;
    --navy: #000a15;
    --navy-2: #06111f;
    --white: #fff;
    --panel: #fff;
    --shadow: 0 18px 42px rgba(7, 17, 38, .10);
    --soft-shadow: 0 8px 22px rgba(7, 17, 38, .045);
}

body {
    color: var(--ink);
    background: #fbfbfa;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 92px;
    padding: 0 clamp(24px, 3.5vw, 54px);
    border: 0;
    color: #fff;
    background: transparent;
    backdrop-filter: none;
}

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 28px;
    font-weight: 950;
    letter-spacing: 0;
    text-decoration: none;
}

.logo span:not(.logo-mark),
.footer-logo span:not(.logo-mark) {
    color: #fff;
}

.logo::first-letter,
.footer-logo::first-letter {
    text-transform: lowercase;
}

.logo-mark {
    display: inline-grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 5px solid var(--leaf);
    border-radius: 50%;
    color: var(--leaf) !important;
    font-size: 22px;
    line-height: 1;
}

.site-header nav {
    flex: 1;
    justify-content: center;
    gap: 26px;
    color: #fff;
    font-size: 15px;
    font-weight: 650;
}

.site-header nav a {
    padding: 10px 0;
    border-radius: 0;
    color: rgba(255,255,255,.88);
    text-decoration: none;
}

.site-header nav a:hover {
    color: #fff;
    background: transparent;
}

.header-cta {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 9px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.button,
button.button,
.lead-form button {
    border: 0;
    border-radius: 8px;
    font-weight: 900;
    letter-spacing: 0;
    text-decoration: none;
    cursor: pointer;
}

.button.primary,
.lead-form button,
.inline-form button {
    color: #fff;
    background: linear-gradient(90deg, var(--brand-dark), var(--leaf));
    box-shadow: 0 10px 22px rgba(154,191,40,.26);
}

.button.secondary {
    color: #fff;
    border: 1px solid rgba(255,255,255,.38);
    background: rgba(255,255,255,.08);
}

.hero,
.content-page .page-hero,
.partner-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(90deg, #000a15 0%, rgba(0,10,21,.98) 36%, rgba(0,13,30,.72) 66%, rgba(0,10,21,.22) 100%),
        url("/images/hero-house.png") right center / cover no-repeat;
}

.hero {
    min-height: 680px;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 560px);
    align-items: center;
    padding: 128px clamp(24px, 3.5vw, 54px) 64px;
}

.hero::before,
.hero::after,
.hero-visual::before {
    display: none;
}

.hero-copy,
.hero-visual,
.content-page .page-hero > *,
.partner-hero > * {
    position: relative;
    z-index: 2;
}

.content-page .page-hero {
    display: block;
    min-height: 420px;
    padding: 140px clamp(24px, 4vw, 54px) 52px;
}

.content-page .page-hero h1,
.hero h1,
.partner-hero h1 {
    max-width: 860px;
    margin: 0 0 22px;
    color: #fff;
    font-size: 60px;
    line-height: 1.05;
    letter-spacing: 0;
}

.hero h1 {
    font-size: 64px;
}

.content-page .page-hero p,
.hero-copy p:not(.eyebrow),
.partner-hero p {
    max-width: 650px;
    color: rgba(255,255,255,.88);
    font-size: 17px;
    line-height: 1.55;
}

.eyebrow {
    color: var(--leaf);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
}

.animated-words {
    color: var(--leaf);
}

.trust-badges span,
.ticker-track span {
    border: 1px solid rgba(255,255,255,.22);
    color: #fff;
    background: rgba(255,255,255,.10);
    box-shadow: none;
}

.intent-ticker {
    border-color: rgba(255,255,255,.18);
    background: rgba(0,10,21,.36);
    box-shadow: none;
}

.hero-funnel .lead-form,
.lead-form {
    border: 1px solid rgba(227,231,236,.96);
    border-radius: 14px;
    background: rgba(255,255,255,.98);
    color: var(--ink);
    box-shadow: 0 22px 55px rgba(7,17,38,.14);
}

.lead-form {
    padding: 24px;
}

.calc-head span {
    color: var(--brand-dark);
    letter-spacing: 0;
}

.calc-head strong {
    color: var(--ink);
}

.lead-form label {
    color: #263241;
    font-size: 12px;
    font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    min-height: 44px;
    border: 1px solid #d7dce3;
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(184,223,69,.22);
    outline: none;
}

.spam-check {
    display: block;
    margin-top: 14px;
    padding: 14px;
    border: 1px solid #dfe9d3;
    border-radius: 8px;
    background: #f7fbf0;
}

.spam-check input {
    margin-top: 8px;
}

.funnel-meter span.active,
.funnel-meter span {
    border-radius: 999px;
}

.funnel-meter span.active {
    color: #fff;
    background: var(--brand-dark);
}

.match-strip,
.trust-strip,
.warm-proof,
.price-strip {
    max-width: 1222px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 54px);
}

.match-strip {
    transform: translateY(-30px);
}

.match-strip div,
.trust-strip article,
.warm-proof article,
.price-strip article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--soft-shadow);
}

.content-page > section:not(.page-hero),
.split,
.compare-proof,
.decision-panel,
.local-answer,
.partner-flow,
.cards,
.seo-grid,
.city-links,
.faq-block {
    max-width: 1222px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(24px, 4vw, 54px);
    padding-right: clamp(24px, 4vw, 54px);
}

.split,
.compare-proof,
.decision-panel,
.local-answer,
.partner-flow {
    gap: 34px;
    padding-top: 52px;
    padding-bottom: 52px;
}

.split,
.compare-proof,
.decision-panel,
.local-answer {
    align-items: center;
}

.decision-panel,
.local-answer {
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.decision-cards article,
.intent-grid article,
.proof-list article,
.seo-grid article,
.cards article,
.flow-steps article,
.faq-block details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--soft-shadow);
}

.decision-cards article span,
.intent-grid article span,
.flow-steps article span,
.match-strip span {
    color: var(--brand-dark);
}

h1,
h2,
h3 {
    color: var(--ink);
    letter-spacing: 0;
}

h2 {
    font-size: 34px;
    line-height: 1.12;
}

.content-page .page-hero h1,
.content-page .page-hero h2,
.content-page .page-hero h3,
.partner-hero h1 {
    color: #fff;
}

.checks li::marker {
    color: var(--brand-dark);
}

.city-links div a,
.footer-keywords a,
.footer-link-list a {
    border-radius: 8px;
    text-decoration: none;
}

.city-links div a {
    border: 1px solid var(--line);
    color: #263241;
    background: #fff;
}

.toast {
    border-radius: 8px;
    box-shadow: 0 20px 44px rgba(7,17,38,.18);
}

.new-footer {
    margin-top: 0;
    color: #fff;
    background: var(--navy-2);
}

.new-footer .footer-top,
.new-footer .footer-keywords,
.new-footer .footer-mega,
.new-footer .footer-bottom {
    max-width: 1536px;
    margin: 0 auto;
    padding-left: clamp(24px, 3.5vw, 54px);
    padding-right: clamp(24px, 3.5vw, 54px);
}

.new-footer .footer-top {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.new-footer p,
.new-footer a,
.new-footer span {
    color: rgba(255,255,255,.72);
}

.new-footer h2,
.new-footer strong {
    color: #fff;
}

.new-footer .footer-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 26px;
    padding-bottom: 10px;
}

.new-footer .footer-keywords a {
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
}

.new-footer .footer-mega {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 38px;
    padding-top: 24px;
    padding-bottom: 36px;
}

.new-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.10);
}

.footer-link-list a {
    color: rgba(255,255,255,.70);
}

.footer-link-list a:hover,
.new-footer .footer-keywords a:hover {
    color: #fff;
}

@media (max-width: 1180px) {
    .site-header {
        position: relative;
        min-height: 0;
        flex-wrap: wrap;
        padding-top: 20px;
        padding-bottom: 20px;
        background: var(--navy);
    }

    .site-header nav {
        order: 3;
        justify-content: flex-start;
        width: 100%;
        overflow-x: auto;
    }

    .hero,
    .content-page .page-hero,
    .partner-hero {
        padding-top: 52px;
    }
}

@media (max-width: 820px) {
    .site-header {
        align-items: stretch;
        width: 100%;
        max-width: 100%;
        padding: 18px 24px;
    }

    .logo {
        font-size: 24px;
    }

    .logo-mark {
        width: 36px;
        height: 36px;
        border-width: 4px;
    }

    .header-cta {
        display: none;
    }

    .hero,
    .content-page .page-hero,
    .partner-hero {
        width: 100%;
        max-width: 100%;
        min-height: 0;
        grid-template-columns: 1fr;
        padding: 42px 24px 42px;
        background-position: 63% center;
    }

    .hero h1,
    .content-page .page-hero h1,
    .partner-hero h1 {
        max-width: 100%;
        font-size: 40px;
        line-height: 1.08;
    }

    .content-page .page-hero p,
    .hero-copy p:not(.eyebrow),
    .partner-hero p {
        max-width: 100%;
        font-size: 16px;
    }

    .content-page > section:not(.page-hero),
    .split,
    .compare-proof,
    .decision-panel,
    .local-answer,
    .partner-flow,
    .cards,
    .seo-grid,
    .city-links,
    .faq-block {
        width: 100%;
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    .match-strip,
    .trust-strip,
    .warm-proof,
    .price-strip {
        width: 100%;
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    .split,
    .compare-proof,
    .decision-panel,
    .local-answer,
    .partner-flow {
        grid-template-columns: 1fr;
        padding-top: 36px;
        padding-bottom: 36px;
    }

    #aanvraag > .lead-form,
    #aanvraag > .calculator-form {
        order: -1;
    }

    h2 {
        font-size: 28px;
    }

    .lead-form {
        padding: 18px;
    }

    .new-footer .footer-top,
    .new-footer .footer-mega {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .hero h1,
    .content-page .page-hero h1,
    .partner-hero h1 {
        font-size: 34px;
    }

    .content-page .page-hero h1,
    .content-page .page-hero p,
    .decision-panel h2,
    .decision-panel p,
    .local-answer h2,
    .local-answer p {
        max-width: 100% !important;
    }
}
