/* =========================================================
   Rijschool Delsing — site stylesheet
   Brand: precise, modern, trustworthy. The L-plate blue is the
   anchor; everything else stays calm so the model (geen pakketten,
   maatwerk, vaste prijs, gratis herexamen) can breathe.
   ========================================================= */

:root {
    /* Ink */
    --ink: #0B1320;
    --ink-2: #1B2533;
    --ink-soft: #475569;
    --ink-mute: #6B7280;

    /* Surfaces */
    --bg: #FFFFFF;
    --surface: #F7F8FA;
    --surface-2: #EEF2F7;
    --surface-3: #E4EAF2;
    --line: #E5E9F0;
    --line-strong: #CFD6E0;

    /* Brand — L-plate blue, premium tuned */
    --brand: #1E56C6;
    --brand-deep: #0E2F6E;
    --brand-soft: #EDF2FE;
    --brand-tint: #DCE6FB;

    /* Accents */
    --gold: #C29754;
    --green: #16A34A;
    --red: #DC2626;

    /* Type */
    --display: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

    /* Geometry */
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 18px;
    --radius-xl: 28px;

    /* Shadows */
    --shadow-1: 0 1px 2px rgba(11, 19, 32, .04), 0 1px 1px rgba(11, 19, 32, .03);
    --shadow-2: 0 8px 24px -12px rgba(11, 19, 32, .12), 0 2px 6px rgba(11, 19, 32, .04);
    --shadow-3: 0 24px 60px -24px rgba(14, 47, 110, .25);

    /* Layout */
    --container: 1200px;
    --container-narrow: 880px;

    /* Motion */
    --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
    font-size: 16.5px;
    font-feature-settings: "ss01", "cv11";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--brand); color: #fff; }

/* ---------- Type scale ---------- */

h1, h2, h3, h4, h5 {
    font-family: var(--display);
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin: 0;
    font-weight: 700;
}
h1 { font-size: clamp(2.5rem, 5.6vw, 4.5rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); letter-spacing: -0.028em; }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); letter-spacing: -0.018em; }
h4 { font-size: 1.1rem; letter-spacing: -0.01em; }
p { margin: 0 0 1em 0; }
.lede {
    font-size: clamp(1.1rem, 1.4vw, 1.25rem);
    color: var(--ink-soft);
    line-height: 1.55;
    max-width: 56ch;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--display);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand);
}
.eyebrow::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background: var(--brand);
    transform: rotate(8deg);
    border-radius: 2px;
    box-shadow: inset 0 0 0 2px #fff, 0 0 0 1px var(--brand);
}
.eyebrow.on-dark { color: #BCD0FB; }
.eyebrow.on-dark::before { box-shadow: inset 0 0 0 2px var(--ink), 0 0 0 1px var(--brand); }

/* ---------- Layout primitives ---------- */

.container {
    width: min(100% - 2.5rem, var(--container));
    margin-inline: auto;
}
.container-narrow {
    width: min(100% - 2rem, var(--container-narrow));
    margin-inline: auto;
}
.section { padding: clamp(64px, 9vw, 128px) 0; }
.section-tight { padding: clamp(40px, 6vw, 80px) 0; }
.surface { background: var(--surface); }
.ink { background: var(--ink); color: #E7ECF3; }
.ink h1, .ink h2, .ink h3 { color: #fff; }
.ink p, .ink .lede { color: #BFC9D6; }

.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-7-5 { grid-template-columns: 7fr 5fr; }
.grid-6-6 { grid-template-columns: 1fr 1fr; }
@media (max-width: 880px) {
    .grid-2, .grid-3, .grid-4, .grid-7-5, .grid-6-6 { grid-template-columns: 1fr; }
}

.section-header { max-width: 720px; margin-bottom: 3rem; }
.section-header.center { margin-inline: auto; text-align: center; }
.section-header.center .lede { margin-inline: auto; }

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.96rem;
    letter-spacing: -0.005em;
    border: 1px solid transparent;
    transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
    line-height: 1;
    white-space: nowrap;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--brand-deep); transform: translateY(-1px); box-shadow: var(--shadow-3); }

.btn-brand { background: var(--brand); color: #fff; }
.btn-brand:hover { background: var(--brand-deep); transform: translateY(-1px); box-shadow: var(--shadow-3); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.25); }
.btn-ghost.on-dark:hover { border-color: #fff; }

.btn-arrow::after {
    content: "→";
    font-weight: 500;
    transition: transform .25s var(--ease);
    display: inline-block;
}
.btn-arrow:hover::after { transform: translateX(3px); }

.btn-tel {
    font-variant-numeric: tabular-nums;
    letter-spacing: 0;
}

/* ---------- Header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.86);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .25s var(--ease), background .25s var(--ease);
}
.site-header.is-scrolled { border-color: var(--line); }
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 14px 0;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.brand img { height: 38px; width: auto; }

.nav {
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav a {
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 0.95rem;
    color: var(--ink-2);
    transition: background .2s var(--ease), color .2s var(--ease);
    font-weight: 500;
}
.nav a:hover { background: var(--surface-2); color: var(--ink); }
.nav a.is-active { color: var(--brand); }

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}
.lang-switch {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    overflow: hidden;
    font-size: 0.84rem;
    font-weight: 600;
    background: #fff;
}
.lang-switch a {
    padding: 7px 12px;
    color: var(--ink-soft);
}
.lang-switch a.is-active {
    background: var(--ink);
    color: #fff;
}

.nav-toggle {
    display: none;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 600;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .nav { display: none; }
    .nav-toggle { display: inline-flex; align-items: center; gap: 8px; }
    .nav.is-open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 12px 1.25rem 16px;
        gap: 0;
    }
    .nav.is-open a {
        padding: 12px 12px;
        border-radius: 8px;
        border-bottom: 1px solid var(--line);
        text-align: left;
    }
    .nav.is-open a:last-child { border-bottom: 0; }
    .header-cta .btn-tel-text { display: none; }
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: var(--ink);
    color: #fff;
    padding: clamp(80px, 10vw, 140px) 0 clamp(96px, 12vw, 160px);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/hero-sunset.jpg");
    background-size: cover;
    background-position: center 70%;
    opacity: 0.55;
    z-index: -2;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(80% 60% at 30% 30%, rgba(11,19,32,.4), transparent 60%),
        linear-gradient(180deg, rgba(11,19,32,.4) 0%, rgba(11,19,32,.78) 60%, rgba(11,19,32,.92) 100%);
    z-index: -1;
}
.hero h1 { color: #fff; }
.hero h1 em {
    font-style: normal;
    background: linear-gradient(120deg, #BCD0FB, #fff 50%, #BCD0FB);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero p.lede { color: #C8D2E0; max-width: 50ch; }
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.hero-stack { max-width: 720px; }
.hero-meta {
    display: flex;
    gap: 28px;
    margin-top: 48px;
    flex-wrap: wrap;
    color: #BFC9D6;
    font-size: 0.92rem;
}
.hero-meta strong { color: #fff; font-weight: 600; }
.hero-meta > * { display: flex; align-items: center; gap: 8px; }

/* L-plate motif card — reusable accent */
.lplate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--brand);
    color: #fff;
    border-radius: 8px;
    font-family: var(--display);
    font-weight: 800;
    font-size: 32px;
    line-height: 1;
    transform: rotate(-8deg);
    box-shadow: 0 6px 16px -8px rgba(30, 86, 198, .6);
    flex-shrink: 0;
}
.lplate.sm { width: 32px; height: 32px; font-size: 18px; }
.lplate.lg { width: 88px; height: 88px; font-size: 52px; }

/* ---------- Pillar cards (the model in features) ---------- */

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
@media (max-width: 880px) { .pillar-grid { grid-template-columns: 1fr; } }
.pillar {
    background: #fff;
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background .25s var(--ease);
}
.pillar:hover { background: var(--surface); }
.pillar-num {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-mute);
    letter-spacing: 0.06em;
}
.pillar h3 { font-size: 1.25rem; }
.pillar p { color: var(--ink-soft); margin: 0; font-size: 0.97rem; }

/* ---------- Number band ---------- */

.numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border-block: 1px solid var(--line);
}
@media (max-width: 880px) { .numbers { grid-template-columns: 1fr 1fr; } }
.number {
    background: #fff;
    padding: 36px 24px;
    text-align: left;
}
.number .n {
    font-family: var(--display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.04em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.number .n .unit { color: var(--brand); }
.number p { margin: 10px 0 0; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Feature split — image + content ---------- */

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}
.split > * { min-width: 0; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface-2);
    min-width: 0;
}
.split-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .9s var(--ease);
}
.split-image:hover img { transform: scale(1.03); }
.split-image::after {
    content: "";
    position: absolute; inset: 0;
    box-shadow: inset 0 0 0 1px rgba(11,19,32,.05);
    pointer-events: none;
    border-radius: inherit;
}

/* ---------- Checklist ---------- */

.checklist {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
}
.checklist li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 14px;
    align-items: start;
    color: var(--ink-2);
}
.checklist li::before {
    content: "";
    width: 22px;
    height: 22px;
    margin-top: 3px;
    border-radius: 50%;
    background: var(--brand-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E56C6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12 10 17 19 8'/></svg>");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

/* ---------- Pricing card ---------- */

.price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 720px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.price-card:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-2); }
.price-card .label {
    font-family: var(--display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-mute);
}
.price-card .price {
    font-family: var(--display);
    font-size: clamp(2.6rem, 4vw, 3.4rem);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.price-card .price .currency { color: var(--brand); margin-right: 4px; }
.price-card .price .per { font-size: 0.9rem; font-weight: 600; color: var(--ink-soft); margin-left: 8px; letter-spacing: 0; }
.price-card .desc { color: var(--ink-soft); margin: 0; font-size: 0.95rem; }
.price-card.featured {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
.price-card.featured .price { color: #fff; }
.price-card.featured .label { color: #BCD0FB; }
.price-card.featured .desc { color: #C8D2E0; }
.price-card.featured .price .currency { color: #BCD0FB; }

/* ---------- Calc card (cost example) ---------- */

.calc {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 32px;
    align-items: center;
}
@media (max-width: 760px) { .calc { grid-template-columns: 1fr; } }
.calc h3 { font-size: 1.4rem; }
.calc dl { margin: 0; display: grid; gap: 10px; }
.calc dt { font-size: 0.82rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.calc dd { margin: 0; font-family: var(--display); font-weight: 700; font-size: 1.05rem; }
.calc-total {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    padding-top: 20px;
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.calc-total .total {
    font-family: var(--display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--brand);
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

/* ---------- TOP RIDE card (cross-sell from NL) ---------- */

.topride-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #0E2F6E, #1B2533);
    color: #fff;
    padding: 48px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: center;
    isolation: isolate;
}
.topride-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/fleet-topride.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: -1;
}
.topride-card h2 { color: #fff; }
.topride-card p { color: #C8D2E0; }
.topride-card .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    padding: 6px 12px;
    border-radius: 999px;
    color: #BCD0FB;
}
.topride-card-image {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-3);
}
.topride-card-image img { width:100%; height:100%; object-fit: cover; }
@media (max-width: 880px) {
    .topride-card { grid-template-columns: 1fr; padding: 32px; }
}

/* ---------- App showcase ---------- */

.app-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
@media (max-width: 880px) { .app-showcase { grid-template-columns: 1fr; } }
.phone-frame {
    width: 280px;
    margin-inline: auto;
    aspect-ratio: 9 / 19.5;
    background: #0B1320;
    border-radius: 38px;
    padding: 8px;
    box-shadow: var(--shadow-3), 0 0 0 1px var(--line-strong);
    position: relative;
}
.phone-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 30px;
}

/* ---------- FAQ ---------- */

.faq {
    border-top: 1px solid var(--line);
}
.faq-item {
    border-bottom: 1px solid var(--line);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 8px;
    display: grid;
    grid-template-columns: 1fr 24px;
    gap: 16px;
    align-items: center;
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.08rem;
    color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "";
    width: 18px; height: 18px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E56C6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>") center/contain no-repeat;
    transition: transform .25s var(--ease);
}
.faq-item[open] summary::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E56C6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><line x1='5' y1='12' x2='19' y2='12'/></svg>");
}
.faq-item .faq-body {
    padding: 0 8px 24px;
    color: var(--ink-soft);
    max-width: 70ch;
    font-size: 1rem;
}

/* ---------- Form ---------- */

.form {
    display: grid;
    gap: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 4vw, 36px);
}
.form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
@media (max-width: 600px) { .form .row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 6px; }
.field label {
    font-family: var(--display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-2);
}
.field .hint { font-size: 0.8rem; color: var(--ink-mute); }
.field input, .field select, .field textarea {
    font-family: inherit;
    font-size: 1rem;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    padding: 12px 14px;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px var(--brand-soft);
}
.form-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
}
.form-footer small { color: var(--ink-mute); }

/* ---------- Footer ---------- */

.site-footer {
    background: var(--ink);
    color: #BFC9D6;
    padding: 80px 0 32px;
    margin-top: 0;
}
.site-footer h4 {
    font-size: 0.78rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    margin-bottom: 16px;
}
.site-footer a { color: #C8D2E0; transition: color .2s var(--ease); }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 0.95rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { filter: brightness(0) invert(1); height: 36px; opacity: 0.9; }
.footer-brand p { margin-top: 14px; max-width: 32ch; font-size: 0.95rem; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 32px;
    font-size: 0.85rem;
    color: #8A95A6;
}

/* ---------- Tags / chips ---------- */

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 0.82rem;
    color: var(--ink-2);
    font-weight: 500;
}
.chip.brand {
    background: var(--brand-soft);
    border-color: var(--brand-tint);
    color: var(--brand-deep);
}
.chip.success {
    background: #E8F7EE;
    border-color: #C7E9D4;
    color: #11703A;
}
.chip.dark {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.18);
    color: #C8D2E0;
}

/* ---------- Service area ---------- */

.area-list {
    column-count: 4;
    column-gap: 24px;
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    font-size: 0.95rem;
    color: var(--ink-2);
}
.area-list li {
    padding: 6px 0;
    break-inside: avoid;
}
@media (max-width: 880px) { .area-list { column-count: 2; } }

/* ---------- Banner with WhatsApp / call ---------- */

.contact-strip {
    background: var(--brand);
    color: #fff;
    padding: 24px 0;
    text-align: center;
}
.contact-strip a { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.contact-strip strong { font-weight: 700; }

/* ---------- Trust rail ---------- */

.trust-rail {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
    align-items: center;
    color: var(--ink-soft);
    font-size: 0.92rem;
}
.trust-rail strong { color: var(--ink); }
.trust-rail > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ---------- Decorative diagonal accent (sub-hero strip) ---------- */

.accent-bar {
    height: 6px;
    background:
        repeating-linear-gradient(135deg, var(--brand) 0 12px, var(--brand-deep) 12px 24px);
}

/* ---------- Reveal on scroll ---------- */

[data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* ---------- Utilities ---------- */

.center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.no-shrink { flex-shrink: 0; }
.muted { color: var(--ink-soft); }
