/* =============================================================
   Vaktechnieker Services — design system
   Navy authority · Red urgency · Yellow action
   ============================================================= */

/* ---- Tokens ------------------------------------------------- */
:root {
  --navy:       #041c31;
  --navy-900:   #031425;
  --navy-800:   #0a2a44;
  --navy-700:   #123a58;
  --red:        #c11417;
  --red-dark:   #9e1012;
  --yellow:     #ffffff;   /* (brand yellow removed — now white) */
  --yellow-dark:#eef1f5;
  --white:      #ffffff;
  --offwhite:   #f5f7fa;
  --offwhite-2: #eef2f7;
  --ink:        #111a24;
  --ink-soft:   #4a5a6a;
  --ink-mute:   #6b7a8a;
  --border:     #e5e9f0;
  --success:    #16a34a;

  --font-display: 'Saira', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius-btn: 4px;
  --radius-card: 14px;
  --radius-pill: 999px;
  --radius-input: 10px;

  --shadow-sm: 0 1px 3px rgba(4,28,49,.06), 0 1px 2px rgba(4,28,49,.04);
  --shadow-md: 0 10px 30px -12px rgba(4,28,49,.18), 0 4px 10px -6px rgba(4,28,49,.10);
  --shadow-lg: 0 30px 60px -20px rgba(4,28,49,.28), 0 10px 24px -12px rgba(4,28,49,.14);
  --shadow-yellow: 0 12px 26px -12px rgba(4,28,49,.28);
  --shadow-red: 0 12px 26px -10px rgba(193,20,23,.45);

  --container: 1180px;
  --ease-out: cubic-bezier(.16,1,.3,1);

  --z-util: 10;
  --z-nav: 40;
  --z-dropdown: 50;
  --z-mobilebar: 60;
  --z-modal: 80;
  --z-toast: 90;
}

/* ---- Reset -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
/* Default inline-icon size; specific `.x svg{}` rules (higher specificity) override. */
svg { width: 1.15em; height: 1.15em; flex: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; color: inherit; background: none; border: none; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.08; letter-spacing: -.02em; }
ul { list-style: none; padding: 0; }

:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; border-radius: 3px; }

/* ---- Layout helpers ---------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: clamp(3.2rem, 8vw, 5.6rem); }
.section--tight { padding-block: clamp(2.4rem, 5vw, 3.4rem); }
.section--navy { background: var(--navy); color: var(--white); }
.section--offwhite { background: var(--offwhite); }
.center { text-align: center; }
.prose { max-width: 68ch; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--red);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--red); border-radius: 2px; }
.section--navy .eyebrow { color: var(--yellow); }
.section--navy .eyebrow::before { background: var(--yellow); }

.lead { font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--ink-soft); }
.section--navy .lead { color: rgba(255,255,255,.82); }

.h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); text-wrap: balance; }
.text-red { color: var(--red); }
.section--navy .text-red { color: var(--yellow); }

/* ---- Badges ------------------------------------------------- */
.spoed-badge {
  display: inline-flex; align-items: center; gap: .45em; background: var(--red); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .1em;
  padding: .4em .75em; border-radius: 3px; line-height: 1; white-space: nowrap;
}
.spoed-badge svg { width: 1.15em; height: 1.15em; flex: none; }
.spoed-badge--ghost { background: rgba(193,20,23,.12); color: var(--red); }
.spoed-badge--yellow { background: var(--yellow); color: var(--navy); }

/* ---- Buttons ------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  text-transform: uppercase; letter-spacing: .045em;
  padding: .95rem 1.6rem; border-radius: var(--radius-btn);
  transition: transform .25s var(--ease-out), background .2s, box-shadow .25s, border-color .2s;
  will-change: transform; text-align: center; line-height: 1.1;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn--primary { background: #fff; color: var(--navy); border: 2px solid var(--navy); box-shadow: var(--shadow-yellow); }
.btn--primary:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn--spoed { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn--spoed:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn--secondary { background: var(--navy); color: #fff; border: 2px solid var(--yellow); }
.btn--secondary:hover { border-color: #fff; transform: translateY(-2px); }
.btn--outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.55); }
.btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn--outline-navy { background: transparent; color: var(--navy); border: 2px solid var(--border); }
.btn--outline-navy:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn--whatsapp { background: #25d366; color: #05331a; }
.btn--whatsapp:hover { background: #1eb457; transform: translateY(-2px); }
.btn--pill { border-radius: var(--radius-pill); padding: 1.05rem 1.9rem; }
.btn--lg { font-size: 1.05rem; padding: 1.1rem 2rem; }
.btn--block { display: flex; width: 100%; }
.btn--phone { font-family: var(--font-display); font-weight: 800; }
.btn--phone .num { font-size: 1.08em; letter-spacing: 0; }

/* ---- Utility top bar --------------------------------------- */
.utilbar {
  background: var(--navy-900); color: rgba(255,255,255,.9);
  font-size: .82rem; position: relative; z-index: var(--z-util);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.utilbar__row { display: flex; align-items: center; justify-content: center; gap: clamp(1rem, 3vw, 2rem); padding: .5rem 0; flex-wrap: wrap; }
.utilbar__item { display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap; }
.utilbar__item svg { width: 15px; height: 15px; color: var(--yellow); flex: none; }
.utilbar__item strong { font-family: var(--font-display); font-weight: 700; color: #fff; }
.utilbar .sep { color: rgba(255,255,255,.25); }

/* ---- Nav ---------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.nav.is-stuck { box-shadow: var(--shadow-md); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }
.nav__logo img { height: 42px; width: auto; }
.nav__links { display: flex; align-items: center; gap: clamp(.35rem, 1vw, 1.1rem); }
.nav__links > a, .nav__droptrigger {
  font-family: var(--font-display); font-weight: 700; font-size: .86rem;
  text-transform: uppercase; letter-spacing: .04em; color: var(--navy);
  padding: .5rem .3rem; position: relative; white-space: nowrap;
}
.nav__links > a::after, .nav__droptrigger::after {
  content: ""; position: absolute; left: .3rem; right: .3rem; bottom: .1rem; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease-out);
}
.nav__links > a:hover::after, .nav__links > a[aria-current="page"]::after,
.nav__droptrigger:hover::after, .nav__droptrigger.is-active::after { transform: scaleX(1); }
.nav__links > a[aria-current="page"], .nav__droptrigger.is-active { color: var(--red); }

/* ---- Diensten dropdown (bridged slow fade) ---- */
.nav__dropdown { position: relative; }
.nav__droptrigger {
  display: inline-flex; align-items: center; gap: .3rem; background: none; cursor: pointer;
}
.nav__droptrigger svg { width: 13px; height: 13px; transition: transform .3s var(--ease-out); }
.nav__dropmenu {
  position: absolute; top: calc(100% + 4px); left: 50%;
  min-width: 230px; background: #fff; border: 1px solid var(--border);
  border-radius: 14px; box-shadow: var(--shadow-lg); padding: .5rem;
  z-index: var(--z-dropdown);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  /* slow fade; delay hiding so the menu lingers and stays clickable */
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out), visibility 0s .3s;
}
/* invisible bridge across the gap so moving the cursor down never closes it */
.nav__dropmenu::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.nav__dropdown:hover .nav__dropmenu,
.nav__dropdown:focus-within .nav__dropmenu,
.nav__dropdown.is-open .nav__dropmenu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out), visibility 0s 0s;
}
.nav__dropdown:hover .nav__droptrigger svg,
.nav__dropdown:focus-within .nav__droptrigger svg,
.nav__dropdown.is-open .nav__droptrigger svg { transform: rotate(180deg); }
.nav__dropmenu a {
  display: flex; align-items: center; gap: .6rem; padding: .7rem .85rem; border-radius: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .03em; color: var(--navy); white-space: nowrap;
  transition: background .2s, color .2s;
}
.nav__dropmenu a svg { width: 18px; height: 18px; color: var(--red); flex: none; }
.nav__dropmenu a:hover, .nav__dropmenu a[aria-current="page"] { background: var(--offwhite); color: var(--red); }

.nav__cta { display: flex; align-items: center; gap: .6rem; }
.nav__phone {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--navy); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  padding: .6rem 1.05rem; border-radius: var(--radius-pill);
  transition: transform .25s var(--ease-out), background .2s;
}
.nav__phone:hover { background: var(--red); transform: translateY(-1px); }
.nav__phone svg { width: 17px; height: 17px; color: #fff; flex: none; }
.nav__phone span { white-space: nowrap; }
@media (max-width: 600px) {
  .nav__phone { padding: .6rem; border-radius: 50%; }
  .nav__phone span { display: none; }
}
.nav__burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--navy); }
.nav__burger svg { width: 26px; height: 26px; }

/* Mobile drawer */
.nav__drawer { display: none; }
@media (max-width: 900px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__drawer {
    display: block; position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
    background: var(--navy); color: #fff; z-index: var(--z-modal);
    transform: translateX(100%); transition: transform .4s var(--ease-out);
    padding: 1.4rem; overflow-y: auto; box-shadow: var(--shadow-lg);
  }
  .nav__drawer.is-open { transform: translateX(0); }
  .nav__drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.6rem; }
  .nav__drawer-head img { height: 34px; }
  .nav__drawer a.drawer-link {
    display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
    text-transform: uppercase; letter-spacing: .03em; padding: .85rem 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .nav__drawer a.drawer-link:hover { color: var(--yellow); }
  .nav__drawer .drawer-cta { margin-top: 1.4rem; display: grid; gap: .7rem; }
  .nav-scrim {
    position: fixed; inset: 0; background: rgba(4,28,49,.55); z-index: var(--z-dropdown);
    opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
  }
  .nav-scrim.is-open { opacity: 1; visibility: visible; }
}

/* ---- Hero --------------------------------------------------- */
.hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, var(--navy) 0%, var(--navy) 34%, rgba(4,28,49,.94) 46%, rgba(4,28,49,.55) 66%, rgba(4,28,49,.35) 100%);
}
@media (max-width: 760px) {
  .hero__media::after { background: linear-gradient(180deg, rgba(4,28,49,.72) 0%, rgba(4,28,49,.82) 55%, var(--navy) 100%); }
}
.hero__inner { padding-block: clamp(2.6rem, 7vw, 5rem); max-width: 640px; }
.hero h1 {
  font-size: clamp(2.15rem, 6vw, 4rem); color: #fff; margin-top: 1rem; text-wrap: balance;
}
.hero h1 .q { display: block; }
.hero h1 .q--accent { color: var(--yellow); }
.hero__sub { margin-top: 1.15rem; font-size: clamp(1.02rem, 2vw, 1.2rem); color: rgba(255,255,255,.85); max-width: 34em; }
.hero__list { margin-top: 1.5rem; display: grid; gap: .6rem; }
.hero__list li { display: flex; align-items: center; gap: .7rem; font-weight: 500; color: rgba(255,255,255,.92); }
.hero__list svg { width: 20px; height: 20px; color: var(--yellow); flex: none; }
.hero__actions { margin-top: 1.9rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__trust {
  margin-top: 1.7rem; display: flex; flex-wrap: wrap; gap: .5rem 1.3rem;
  font-size: .88rem; color: rgba(255,255,255,.75);
}
.hero__trust span { display: inline-flex; align-items: center; gap: .4rem; }
.hero__trust svg { width: 16px; height: 16px; color: var(--success); flex: none; }
.hero__badge { display: inline-flex; }

/* ---- Service strip (navy, 3 disciplines) -------------------- */
.svc-strip { background: var(--navy-900); color: #fff; }
.svc-strip__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1px; background: rgba(255,255,255,.08); border-radius: var(--radius-card); overflow: hidden; }
.svc-strip__item { background: var(--navy-900); padding: 1.6rem 1.5rem; transition: background .3s; position: relative; }
.svc-strip__item:hover { background: var(--navy-800); }
.svc-strip__item::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-out); }
.svc-strip__item:hover::after { transform: scaleX(1); }
.svc-strip__icon { width: 46px; height: 46px; color: var(--yellow); margin-bottom: .9rem; }
.svc-strip__icon svg { width: 100%; height: 100%; }
.svc-strip__item h3 { font-size: 1.25rem; color: #fff; }
.svc-strip__item p { margin-top: .4rem; font-size: .92rem; color: rgba(255,255,255,.72); }
.svc-strip__item .more { margin-top: .9rem; display: inline-flex; align-items: center; gap: .4rem; color: var(--yellow); font-family: var(--font-display); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; }
.svc-strip__item .more svg { width: 15px; height: 15px; transition: transform .25s var(--ease-out); }
.svc-strip__item:hover .more svg { transform: translateX(4px); }

/* ---- Trust strip ------------------------------------------- */
.trust { background: var(--offwhite); border-block: 1px solid var(--border); }
.trust__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.6rem; }
.trust__item { display: flex; gap: .85rem; align-items: flex-start; }
.trust__item .ic { width: 40px; height: 40px; flex: none; border-radius: 10px; display: grid; place-items: center; background: rgba(193,20,23,.09); color: var(--red); }
.trust__item .ic svg { width: 21px; height: 21px; }
.trust__item h4 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--navy); }
.trust__item p { font-size: .88rem; color: var(--ink-soft); margin-top: .15rem; }

/* ---- Section heading block --------------------------------- */
.sechead { max-width: 46rem; }
.sechead.center { margin-inline: auto; }
.sechead h2 { margin-top: .7rem; }
.sechead p { margin-top: .9rem; }

/* ---- Problem cards (grid of common issues) ----------------- */
.probgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.1rem; }
.probcard {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 1.4rem; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
  display: flex; gap: 1rem; align-items: flex-start;
}
.probcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.probcard__ic { width: 48px; height: 48px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--navy); color: var(--yellow); }
.probcard__ic svg { width: 25px; height: 25px; }
.probcard h3 { font-size: 1.12rem; color: var(--navy); font-family: var(--font-display); font-weight: 700; }
.probcard p { font-size: .9rem; color: var(--ink-soft); margin-top: .25rem; }

/* ---- Service cards (3 disciplines, white) ------------------ */
.svcgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.6rem; }
.svccard {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.svccard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svccard__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.svccard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.svccard:hover .svccard__media img { transform: scale(1.05); }
.svccard__badge { position: absolute; top: .9rem; left: .9rem; }
.svccard__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; border-top: 4px solid var(--red); }
.svccard__body h3 { font-size: 1.35rem; color: var(--navy); }
.svccard__body p { margin-top: .5rem; font-size: .94rem; color: var(--ink-soft); flex: 1; }
.svccard__list { margin: .9rem 0 1.1rem; display: grid; gap: .4rem; }
.svccard__list li { font-size: .88rem; color: var(--ink); display: flex; gap: .5rem; align-items: center; }
.svccard__list svg { width: 16px; height: 16px; color: var(--red); flex: none; }
.svccard__link { display: inline-flex; align-items: center; gap: .45rem; color: var(--red); font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: .85rem; }
.svccard__link svg { width: 15px; height: 15px; transition: transform .25s var(--ease-out); }
.svccard:hover .svccard__link svg { transform: translateX(4px); }

/* ---- Split feature (navy band w/ photo) -------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 5vw, 3.4rem); align-items: center; }
.split--rev .split__media { order: -1; }
.split__media { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split__list { margin-top: 1.3rem; display: grid; gap: .7rem; }
.split__list li { display: flex; gap: .7rem; align-items: flex-start; }
.split__list svg { width: 20px; height: 20px; color: var(--yellow); flex: none; margin-top: .15rem; }
.split .stars { color: var(--yellow); margin-top: 1.2rem; display: flex; gap: .2rem; font-size: 1.1rem; letter-spacing: .1em; align-items: center; }
.split .stars small { color: rgba(255,255,255,.7); font-family: var(--font-body); margin-left: .5rem; letter-spacing: 0; }
@media (max-width: 780px) { .split { grid-template-columns: 1fr; } .split--rev .split__media { order: 0; } }

/* ---- FAQ accordion (website 1 pattern) --------------------- */
.faq { display: grid; gap: .8rem; max-width: 800px; margin-inline: auto; }
.faq__item { background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq__item[open], .faq__item.is-open { border-color: rgba(193,20,23,.35); box-shadow: var(--shadow-md); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.3rem; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--navy);
  text-align: left;
}
.faq__q .plus { width: 26px; height: 26px; flex: none; position: relative; color: var(--red); }
.faq__q .plus::before, .faq__q .plus::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; inset: 0; margin: auto; }
.faq__q .plus::before { width: 15px; height: 2.5px; }
.faq__q .plus::after { width: 2.5px; height: 15px; transition: transform .3s var(--ease-out); }
.faq__item.is-open .plus::after { transform: rotate(90deg); opacity: 0; }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease-out); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; }
.faq__a p { padding: 0 1.3rem 1.25rem; color: var(--ink-soft); font-size: .96rem; }

/* ---- CTA band (pre-footer) --------------------------------- */
.ctaband { background: var(--red); color: #fff; text-align: center; }
.ctaband h2 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.5rem); }
.ctaband p { margin-top: .8rem; color: rgba(255,255,255,.9); font-size: 1.1rem; }
.ctaband__actions { margin-top: 1.7rem; display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.ctaband__trust { margin-top: 1.7rem; display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; font-size: .9rem; }
.ctaband__trust span { display: inline-flex; gap: .4rem; align-items: center; }
.ctaband__trust svg { width: 18px; height: 18px; }

/* ---- Footer ------------------------------------------------ */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2rem; }
.footer__brand img { height: 40px; width: auto; margin-bottom: 1rem; }
.footer .btn { display: inline-flex; width: auto; padding: .85rem 1.4rem; }
.footer__brand p { font-size: .92rem; max-width: 30ch; }
.footer h4 { font-family: var(--font-display); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.45); margin-bottom: 1rem; }
.footer__col a, .footer__col li { display: block; font-size: .93rem; padding: .28rem 0; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__contact .phone { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--yellow); display: inline-flex; align-items: center; gap: .5rem; margin-bottom: .3rem; }
.footer__contact .phone svg { width: 22px; height: 22px; }
.footer__contact a.line { display: inline-flex; align-items: center; gap: .5rem; }
.footer__contact .wa { margin-top: .9rem; }
.footer__legal { font-size: .82rem; color: rgba(255,255,255,.5); margin-top: 1rem; line-height: 1.7; }
.footer__bar { margin-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid rgba(255,255,255,.1); padding: 1.3rem 0; }
.footer__bar-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer__bar-inner a:hover { color: #fff; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---- Floating call button (mobile) ------------------------- */
.call-float {
  position: fixed; right: 18px; bottom: 18px; z-index: var(--z-mobilebar);
  width: 62px; height: 62px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  background: #fff; color: var(--navy); border: 2px solid var(--navy);
  box-shadow: 0 12px 26px -8px rgba(4,28,49,.5), 0 2px 6px rgba(4,28,49,.25);
  transition: transform .25s var(--ease-out), background .2s, color .2s;
}
.call-float svg { width: 28px; height: 28px; position: relative; z-index: 1; }
.call-float:hover, .call-float:focus-visible { background: var(--navy); color: #fff; transform: scale(1.06); }
.call-float:active { transform: scale(.96); }
.call-float__pulse {
  position: absolute; inset: -2px; border-radius: 50%; background: var(--navy); z-index: 0;
  animation: callpulse 2s var(--ease-out) infinite;
}
@keyframes callpulse {
  0%   { transform: scale(1);   opacity: .6; }
  70%  { transform: scale(2);   opacity: 0; }
  100% { transform: scale(2);   opacity: 0; }
}
@media (max-width: 900px) { .call-float { display: inline-flex; } }
@media (prefers-reduced-motion: reduce) { .call-float__pulse { animation: none; opacity: 0; } }

/* =============================================================
   Multi-step quote form  (the centerpiece)
   ============================================================= */
.qwrap { background: var(--offwhite); }
.qcard {
  background: #fff; border-radius: 26px; box-shadow: var(--shadow-lg);
  max-width: 720px; margin-inline: auto; padding: clamp(1.5rem, 4vw, 2.6rem);
  position: relative;
}
.qform__eyebrow { color: var(--red); font-family: var(--font-display); font-weight: 700; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; display: inline-flex; align-items: center; gap: .6rem; }
.qform__eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); }
.qform h2, .qform__title { font-size: clamp(1.5rem, 4vw, 2.25rem); color: var(--navy); margin-top: .7rem; line-height: 1.1; text-wrap: balance; }
.qform__title .hl { color: var(--red); }

/* progress */
.qprogress { margin: 1.4rem 0 .4rem; height: 7px; background: var(--offwhite-2); border-radius: 999px; overflow: hidden; }
.qprogress__fill { height: 100%; background: var(--red); border-radius: 999px; width: 25%; transition: width .45s var(--ease-out); }
.qsteps { display: flex; justify-content: space-between; margin-bottom: 1.6rem; gap: .4rem; }
.qsteps span { font-family: var(--font-display); font-weight: 700; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); transition: color .3s; flex: 1; text-align: center; }
.qsteps span:first-child { text-align: left; }
.qsteps span:last-child { text-align: right; }
.qsteps span.is-active { color: var(--navy); }
.qsteps span.is-done { color: var(--red); }

/* steps */
.qstep { display: none; animation: qfade .4s var(--ease-out); }
.qstep.is-active { display: block; }
@keyframes qfade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* option cards */
.qopts { display: grid; gap: .8rem; }
.qopt {
  display: flex; align-items: center; gap: 1rem; width: 100%; text-align: left;
  background: #fff; border: 1.5px solid var(--border); border-radius: 16px;
  padding: 1.05rem 1.15rem; transition: border-color .2s, background .2s, box-shadow .2s, transform .2s var(--ease-out);
  position: relative;
}
.qopt:hover { border-color: rgba(193,20,23,.4); box-shadow: var(--shadow-sm); }
.qopt.is-selected { border-color: var(--red); background: rgba(193,20,23,.045); box-shadow: 0 0 0 3px rgba(193,20,23,.12); }
.qopt__ic { width: 52px; height: 52px; flex: none; border-radius: 13px; display: grid; place-items: center; background: var(--offwhite-2); color: var(--navy); transition: background .2s, color .2s; }
.qopt__ic svg { width: 26px; height: 26px; }
.qopt.is-selected .qopt__ic { background: var(--red); color: #fff; }
.qopt__body { flex: 1; }
.qopt__title { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--navy); display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; }
.qopt__sub { font-size: .9rem; color: var(--ink-soft); margin-top: .12rem; }
.qopt__check { width: 26px; height: 26px; flex: none; border-radius: 50%; border: 2px solid var(--border); display: grid; place-items: center; color: transparent; transition: all .2s; }
.qopt.is-selected .qopt__check { border-color: var(--red); color: var(--red); }
.qopt__check svg { width: 15px; height: 15px; }

/* fields */
.qfields { display: grid; gap: 1.2rem; }
.qrow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .qrow { grid-template-columns: 1fr; } }
.qfield label { display: block; font-family: var(--font-display); font-weight: 700; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: .5rem; }
.qfield input, .qfield textarea {
  width: 100%; background: var(--offwhite); border: 1.5px solid var(--border);
  border-radius: var(--radius-input); padding: .95rem 1.05rem; font-size: 1.02rem; color: var(--ink);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.qfield input::placeholder, .qfield textarea::placeholder { color: var(--ink-mute); opacity: .8; }
.qfield input:focus, .qfield textarea:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 3px rgba(193,20,23,.1); }
.qfield textarea { resize: vertical; min-height: 120px; }
.qfield.has-error input, .qfield.has-error textarea { border-color: var(--red); background: rgba(193,20,23,.04); }
.qfield__err { color: var(--red); font-size: .82rem; margin-top: .4rem; display: none; font-weight: 500; }
.qfield.has-error .qfield__err { display: block; }

.qchips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .3rem; }
.qchip { display: inline-flex; align-items: center; gap: .45rem; font-size: .86rem; font-weight: 500; color: var(--navy); background: var(--offwhite); border: 1px solid var(--border); border-radius: 10px; padding: .55rem .85rem; }
.qchip svg { width: 16px; height: 16px; color: var(--red); flex: none; }

.qnote { display: flex; gap: .7rem; align-items: flex-start; background: var(--offwhite); border-radius: 12px; padding: .9rem 1.05rem; font-size: .88rem; color: var(--ink-soft); }
.qnote svg { width: 19px; height: 19px; color: var(--red); flex: none; margin-top: .1rem; }

/* footer of card */
.qnext { margin-top: 1.6rem; }
.qnext .btn--primary:disabled, .qnext .btn--primary.is-disabled { background: var(--offwhite-2); color: var(--ink-mute); border-color: var(--border); box-shadow: none; cursor: not-allowed; transform: none; }
.qfoot { display: flex; align-items: center; justify-content: space-between; margin-top: 1.1rem; gap: 1rem; flex-wrap: wrap; }
.qback { display: inline-flex; align-items: center; gap: .45rem; color: var(--ink-soft); font-weight: 600; font-size: .95rem; }
.qback:hover { color: var(--navy); }
.qback svg { width: 17px; height: 17px; }
.qback[hidden] { visibility: hidden; }
.qfoot__phone { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: 1.05rem; }
.qfoot__phone svg { width: 18px; height: 18px; color: var(--red); }
.qfoot__reassure { display: inline-flex; align-items: center; gap: .5rem; color: var(--ink-soft); font-size: .9rem; }
.qfoot__reassure svg { width: 17px; height: 17px; color: var(--red); }

/* compact hero-embedded quote card */
.qcard--embed { box-shadow: var(--shadow-lg); }

/* ---- Thank-you page ---------------------------------------- */
.thanks { text-align: center; max-width: 860px; margin-inline: auto; }
.thanks__check { width: 88px; height: 88px; margin: 0 auto 1.6rem; border-radius: 50%; background: rgba(193,20,23,.1); display: grid; place-items: center; color: var(--red); }
.thanks__check svg { width: 44px; height: 44px; }
.thanks h1 { font-size: clamp(2rem, 6vw, 3.2rem); color: var(--navy); }
.thanks > .lead { margin: 1rem auto 0; max-width: 40ch; }
.thanks__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2.4rem 0; text-align: left; }
@media (max-width: 720px) { .thanks__steps { grid-template-columns: 1fr; } }
.tstep { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card); padding: 1.4rem; box-shadow: var(--shadow-sm); }
.tstep__ic { width: 44px; height: 44px; border-radius: 11px; background: rgba(193,20,23,.1); color: var(--red); display: grid; place-items: center; margin-bottom: .9rem; }
.tstep__ic svg { width: 22px; height: 22px; }
.tstep__n { font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); }
.tstep h3 { font-size: 1.12rem; color: var(--navy); margin-top: .3rem; }
.tstep p { font-size: .9rem; color: var(--ink-soft); margin-top: .4rem; }
.thanks__call { background: var(--offwhite); border-radius: var(--radius-card); padding: 2rem; }
.thanks__call h3 { color: var(--navy); font-size: 1.4rem; }
.thanks__call p { color: var(--ink-soft); margin-top: .5rem; }
.thanks__call .btn { margin-top: 1.3rem; }
.thanks__home { display: inline-flex; align-items: center; gap: .5rem; margin-top: 2rem; color: var(--red); font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: .9rem; }

/* ---- Split hero (light panel + diagonal photo) ------------- */
.hero-split { position: relative; background: var(--offwhite); overflow: hidden; }
.hero-split__grid { display: grid; grid-template-columns: 1.02fr 1fr; align-items: stretch; min-height: 480px; }
.hero-split__text {
  align-self: center;
  padding: clamp(2.2rem, 5vw, 3.8rem) clamp(1.8rem, 4vw, 3.2rem) clamp(2.2rem, 5vw, 3.8rem)
           max(1.25rem, calc((100vw - var(--container)) / 2 + 1.25rem));
  max-width: 680px;
}
.hero-split__crumb { display: flex; align-items: center; gap: .5rem; font-size: .84rem; color: var(--ink-mute); font-weight: 600; margin-bottom: 1.1rem; }
.hero-split__crumb a:hover { color: var(--red); }
.hero-split__crumb .sep { color: var(--border); }
.hero-split h1 { font-size: clamp(2rem, 4.6vw, 3.5rem); color: var(--navy); line-height: 1.04; text-wrap: balance; }
.hero-split h1 .accent { color: var(--red); }
.hero-split--home .spoed-badge { margin-bottom: 1.1rem; }
.hero-split__stack { font-size: clamp(2.3rem, 5.2vw, 4rem) !important; line-height: .98; text-wrap: initial; }
.hero-split__rule { width: 64px; height: 4px; background: var(--red); border-radius: 2px; margin: 1.25rem 0 1.3rem; }
.hero-split__sub { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--ink-soft); max-width: 40ch; }
.hero-split__actions { margin-top: 1.6rem; display: flex; gap: .8rem; flex-wrap: wrap; }
.hero-split__divider { height: 1px; background: var(--border); margin: 1.8rem 0 1.35rem; }
.hero-split__chips { display: flex; flex-wrap: wrap; gap: .65rem; }
.hero-split__chip { display: inline-flex; align-items: center; gap: .5rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-pill); padding: .55rem 1rem; font-size: .9rem; font-weight: 600; color: var(--navy); box-shadow: var(--shadow-sm); }
.hero-split__chip svg { width: 17px; height: 17px; color: var(--red); }
.hero-split__media { position: relative; min-height: 480px; background: var(--navy); clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%); }
.hero-split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-split__badge {
  position: absolute; left: clamp(1.2rem, 4vw, 3rem); bottom: clamp(1.2rem, 3vw, 2rem);
  background: #fff; border-radius: var(--radius-pill); padding: .7rem 1.25rem;
  box-shadow: var(--shadow-lg); display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: .98rem; white-space: nowrap;
}
.hero-split__badge svg { width: 20px; height: 20px; color: var(--red); }
@media (max-width: 860px) {
  .hero-split__grid { grid-template-columns: 1fr; }
  .hero-split__text { order: 1; padding: clamp(1.8rem,6vw,2.4rem) 1.25rem; max-width: none; }
  .hero-split__media { order: 2; min-height: 300px; clip-path: none; }
  .hero-split__sub { max-width: 46ch; }
}

/* ---- Page hero (interior pages) ---------------------------- */
.phero { background: var(--navy); color: #fff; position: relative; overflow: hidden; isolation: isolate; }
.phero .hero__media img { object-position: 75% center; }
.phero__inner { padding-block: clamp(2.4rem, 6vw, 4rem); position: relative; }
.phero h1 { font-size: clamp(2rem, 5vw, 3.4rem); color: #fff; margin-top: .8rem; text-wrap: balance; max-width: 18ch; }
.phero p { margin-top: 1rem; max-width: 46ch; color: rgba(255,255,255,.82); font-size: 1.1rem; }
.phero__actions { margin-top: 1.6rem; display: flex; gap: .8rem; flex-wrap: wrap; }
.breadcrumb { font-size: .82rem; color: rgba(255,255,255,.55); display: flex; gap: .5rem; align-items: center; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb .sep { color: rgba(255,255,255,.35); }

/* ---- Content prose (service/about pages) ------------------- */
.rich > * + * { margin-top: 1.1rem; }
.rich h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--navy); margin-top: 2.4rem; }
.rich h3 { font-size: 1.3rem; color: var(--navy); margin-top: 1.6rem; }
.rich p { color: var(--ink-soft); max-width: 68ch; }
.rich ul.checks { display: grid; gap: .6rem; }
.rich ul.checks li { display: flex; gap: .6rem; align-items: flex-start; color: var(--ink); }
.rich ul.checks svg { width: 20px; height: 20px; color: var(--red); flex: none; margin-top: .2rem; }
.pricecard { background: var(--offwhite); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 1.5rem; }

/* sidebar quote box on service pages */
.svc-layout { display: grid; grid-template-columns: 1fr 360px; gap: clamp(1.8rem, 5vw, 3.4rem); align-items: start; }
@media (max-width: 900px) { .svc-layout { grid-template-columns: 1fr; } }
.sidebox { position: sticky; top: 94px; background: var(--navy); color: #fff; border-radius: var(--radius-card); padding: 1.7rem; box-shadow: var(--shadow-md); }
.sidebox h3 { color: #fff; font-size: 1.35rem; }
.sidebox p { color: rgba(255,255,255,.78); font-size: .92rem; margin-top: .5rem; }
.sidebox .phone-lg { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--yellow); display: flex; align-items: center; gap: .5rem; margin: 1.1rem 0; }
.sidebox .phone-lg svg { width: 24px; height: 24px; }
.sidebox .btn { margin-top: .3rem; }
.sidebox ul { margin-top: 1.2rem; display: grid; gap: .55rem; }
.sidebox ul li { display: flex; gap: .5rem; font-size: .88rem; color: rgba(255,255,255,.85); }
.sidebox ul svg { width: 17px; height: 17px; color: var(--yellow); flex: none; margin-top: .15rem; }

/* ---- Contact grid ------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-methods { display: grid; gap: 1rem; }
.cmethod { display: flex; gap: 1rem; align-items: center; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card); padding: 1.2rem 1.3rem; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease-out), box-shadow .3s; }
.cmethod:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cmethod__ic { width: 50px; height: 50px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--navy); color: var(--yellow); }
.cmethod__ic svg { width: 24px; height: 24px; }
.cmethod h4 { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: .95rem; text-transform: uppercase; letter-spacing: .04em; }
.cmethod .big { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--navy); }
.cmethod .sub { font-size: .86rem; color: var(--ink-soft); }

/* ---- Stats / reassure row ---------------------------------- */
.statrow { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.4rem; text-align: center; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 5vw, 2.8rem); color: var(--yellow); line-height: 1; }
.stat .lab { font-size: .9rem; color: rgba(255,255,255,.75); margin-top: .5rem; }

/* ---- Motion / reveal ----------------------------------------
   Content is visible by DEFAULT. JS adds `.is-armed` only when it can
   guarantee the reveal (IntersectionObserver + timeout failsafe), so a
   no-JS / hidden-tab / headless render never ships a blank section. */
.reveal.is-armed { opacity: 0; transform: translateY(22px); }
.reveal.is-armed.is-in { opacity: 1; transform: none; transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
[data-stagger].is-armed > * { transition-delay: calc(var(--i, 0) * 80ms); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal.is-armed { opacity: 1 !important; transform: none !important; }
}

/* ---- Utilities --------------------------------------------- */
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.hide-mobile { }
@media (max-width: 600px) { .hide-mobile { display: none !important; } }
.stack-sm { display: grid; gap: .8rem; }
.flex-wrap { display: flex; flex-wrap: wrap; gap: .8rem; }
