/* =====================================================================
   DESIGN SYSTEM & LAYOUT
   ===================================================================== */
:root {
  --c-navy: #0a2540;
  --c-navy-2: #0f3056;
  --c-navy-3: #17457a;
  --c-navy-deep: #061a30;
  --c-blue: #1d6fb8;
  --c-blue-2: #2b8fd9;
  --c-blue-light: #e8f1fb;
  --c-accent: #f7a423;
  --c-accent-2: #b34d0e;
  --c-accent-light: #fff4e0;
  --c-ink: #16202e;
  --c-muted: #56657a;
  --c-line: #e6ebf2;
  --c-bg: #ffffff;
  --c-bg-alt: #f4f7fc;
  --c-bg-dark: #0a2540;
  --c-white: #ffffff;
  --c-success: #16a34a;
  --c-danger: #dc2626;

  --grad-navy: linear-gradient(150deg, #0b294a 0%, #0f3056 45%, #17457a 100%);
  --grad-accent: linear-gradient(120deg, var(--c-accent) 0%, var(--c-accent-2) 100%);

  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.06), 0 2px 6px rgba(10, 37, 64, 0.05);
  --shadow: 0 2px 6px rgba(10, 37, 64, 0.05), 0 14px 34px -12px rgba(10, 37, 64, 0.16);
  --shadow-lg: 0 4px 12px rgba(10, 37, 64, 0.06), 0 30px 64px -20px rgba(10, 37, 64, 0.30);
  --shadow-accent: 0 10px 26px -6px rgba(234, 115, 23, 0.45);

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --container: 1200px;
  --gap: 24px;
  --section-pad: clamp(64px, 9vw, 104px);

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-head: "Plus Jakarta Sans", var(--font);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; }
/* clip (not hidden) contains horizontal overflow WITHOUT turning body into a
   scroll container — which would break `position: sticky` on the header. */
html, body { overflow-x: clip; }
html.nav-open { overflow: hidden; }
body {
  font-family: var(--font);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--c-accent); color: var(--c-navy); }
:focus-visible { outline: 3px solid var(--c-blue-2); outline-offset: 2px; border-radius: 4px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
section { position: relative; }

/* ---- LAYOUT HELPERS ---- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--c-bg-alt); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px var(--gap); margin-bottom: 16px; }
.grid-2 > .field { margin-bottom: 0; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--c-navy); font-weight: 800; letter-spacing: -0.025em; text-wrap: balance; }
.section__title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.section__title--light, .section__lead--light, .eyebrow--light { color: var(--c-white); }
.section__lead { color: var(--c-muted); font-size: clamp(1rem, 1.4vw, 1.1rem); max-width: 640px; margin: 14px auto 0; text-wrap: pretty; }
.section__lead--light { color: rgba(255, 255, 255, 0.82); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--c-accent-2); margin-bottom: 12px;
}
.eyebrow::before { content: ""; width: 18px; height: 2px; border-radius: 2px; background: currentColor; opacity: 0.7; }
.eyebrow--light { color: var(--c-accent); }
.section__head { text-align: center; max-width: 760px; margin: 0 auto clamp(38px, 5vw, 56px); }
.section__head .eyebrow::after { content: ""; width: 18px; height: 2px; border-radius: 2px; background: currentColor; opacity: 0.7; }
.section__head h2 { margin-bottom: 8px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 0.95rem; padding: 13px 26px; border-radius: var(--radius-pill);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap; cursor: pointer; border: 2px solid transparent; min-height: 46px;
  letter-spacing: 0.01em;
}
.btn:active { transform: translateY(0) scale(0.98); }
.btn--primary { background: var(--grad-accent); color: var(--c-navy); box-shadow: var(--shadow-accent); }
.btn--primary:hover { color: var(--c-navy); transform: translateY(-2px); box-shadow: 0 16px 34px -8px rgba(234, 115, 23, 0.55); }
.btn--ghost { background: transparent; color: var(--c-navy); border-color: var(--c-line); }
.btn--ghost:hover { border-color: var(--c-navy); background: var(--c-navy); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--light { background: #fff; color: var(--c-navy); box-shadow: var(--shadow); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--lg { padding: 16px 34px; font-size: 1.05rem; min-height: 54px; }
.btn--block { width: 100%; }

/* =====================================================================
   TOP BAR
   ===================================================================== */
.topbar { background: var(--c-navy); color: rgba(255, 255, 255, 0.85); font-size: 0.82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 14px; }
.topbar__dot { opacity: 0.4; }
.topbar__link { display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
.topbar__link:hover { color: var(--c-accent); }
.topbar__socials { display: inline-flex; gap: 8px; }
.topbar__socials a {
  width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255, 255, 255, 0.12); transition: background 0.2s, transform 0.2s;
}
.topbar__socials a:hover { background: var(--c-accent); color: var(--c-navy); transform: translateY(-2px); }

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.header {
  position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(16px); -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}
.header.scrolled {
  box-shadow: 0 10px 30px -16px rgba(10, 37, 64, 0.30);
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--c-line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 18px; transition: height 0.35s var(--ease); }
.header.scrolled .header__inner { height: 64px; }

.logo { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: var(--c-navy); flex-shrink: 0; letter-spacing: -0.02em; transition: transform 0.35s var(--ease); }
.logo img { height: 42px; width: auto; }
.logo img.logo__mark {
  height: 34px; width: auto; flex-shrink: 0;
  /* the mark art is navy+orange on white — multiply drops the white cleanly
     against the light header without needing a keyed-out PNG */
  mix-blend-mode: multiply;
  transition: height 0.35s var(--ease);
}
.header.scrolled .logo img.logo__mark { height: 30px; }
.logo__text { line-height: 1; }
.logo:hover { transform: translateY(-1px); }
.logo--light { color: #fff; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav__link {
  position: relative; padding: 9px 13px; font-weight: 600; font-size: 0.9rem; color: var(--c-muted);
  border-radius: var(--radius-pill);
  transition: color 0.22s var(--ease), background-color 0.22s var(--ease); white-space: nowrap;
}
.nav__link::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 5px; height: 2px;
  background: var(--c-accent); border-radius: 2px; transform: scaleX(0); transform-origin: center;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover { color: var(--c-navy); background-color: rgba(10, 37, 64, 0.055); }
.nav__link:focus-visible { outline: none; color: var(--c-navy); box-shadow: 0 0 0 3px var(--c-blue-2); }
.nav__link:hover::after { transform: scaleX(0.55); }
.nav__link.active { color: var(--c-navy); font-weight: 700; }
.nav__link.active::after { transform: scaleX(1); }
/* secondary links: only shown inside the mobile drawer */
.nav__link--more { display: none; }

.header__actions { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; border-radius: var(--radius-pill); transition: background-color 0.2s var(--ease); }
.nav__toggle:hover { background-color: rgba(10, 37, 64, 0.06); }
.nav__toggle:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--c-blue-2); }
.nav__toggle span { width: 24px; height: 2.5px; background: var(--c-navy); border-radius: 2px; transition: transform 0.32s var(--ease), opacity 0.2s var(--ease); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; padding: clamp(56px, 8vw, 92px) 0 clamp(96px, 12vw, 128px); color: #fff; overflow: hidden;
  background:
    linear-gradient(114deg, rgba(10, 37, 64, 0.95) 0%, rgba(15, 48, 86, 0.88) 46%, rgba(23, 69, 122, 0.74) 100%),
    url("../assets/scenematic.jpg") center 32% / cover no-repeat,
    #0a2540;
}
.hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(38rem 38rem at 78% -10%, rgba(247, 164, 35, 0.20) 0, transparent 60%),
    radial-gradient(34rem 34rem at 8% 108%, rgba(43, 143, 217, 0.28) 0, transparent 60%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px; -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000 0%, transparent 100%); mask-image: radial-gradient(70% 60% at 50% 40%, #000 0%, transparent 100%);
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 56px); align-items: center; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #ffd38a; padding: 8px 16px; background: rgba(247, 164, 35, 0.1); border: 1px solid rgba(247, 164, 35, 0.35); border-radius: var(--radius-pill); margin-bottom: 22px;
}
.hero__eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--c-accent); box-shadow: 0 0 0 4px rgba(247, 164, 35, 0.25); }
.hero__title { color: #fff; font-size: clamp(2.15rem, 5.2vw, 3.6rem); margin-bottom: 18px; letter-spacing: -0.03em; }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: rgba(255, 255, 255, 0.82); margin-bottom: 30px; max-width: 540px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__cta .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.hero__cta .btn--ghost:hover { background: #fff; color: var(--c-navy); border-color: #fff; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  font-size: 0.78rem; font-weight: 600; padding: 7px 14px; border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.18); color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
}

/* hero rating (Google) */
.hero__rating {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius-pill);
  padding: 8px 16px; font-size: 0.9rem; color: #fff; backdrop-filter: blur(6px);
}
.hero__rating-stars { color: var(--c-accent); letter-spacing: 2px; }
.hero__rating strong { color: var(--c-accent); }
.badge:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-1px); }

.hero__card {
  background: #fff; color: var(--c-ink); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow-lg); max-width: 420px; margin-left: auto; width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.hero__card h3 { font-size: 1.4rem; margin-bottom: 6px; letter-spacing: -0.02em; }
.hero__card-sub { color: var(--c-muted); font-size: 0.9rem; margin-bottom: 20px; }

.hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; }
.hero__wave svg { width: 100%; height: 64px; display: block; }
.hero__wave path { fill: var(--c-bg); }

/* =====================================================================
   STATS
   ===================================================================== */
.stats { background: var(--c-bg); margin-top: -56px; position: relative; z-index: 2; padding: 0 0 30px; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--c-line); }
.stat { padding: clamp(24px, 3.4vw, 36px) 20px; text-align: center; border-right: 1px solid var(--c-line); transition: background 0.25s; }
.stat:last-child { border-right: none; }
.stat:hover { background: var(--c-bg-alt); }
.stat__num { font-family: var(--font-head); font-size: clamp(1.9rem, 3.4vw, 2.5rem); font-weight: 800; color: var(--c-accent-2); line-height: 1; letter-spacing: -0.02em; }
.stat__label { font-size: 0.86rem; color: var(--c-muted); margin-top: 10px; font-weight: 600; }

/* =====================================================================
   ABOUT
   ===================================================================== */
.about__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.about__media { position: relative; }
.about__img {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  background:
    radial-gradient(1.5px 1.5px at 20px 20px, rgba(10,37,64,0.10) 50%, transparent 50%) 0 0 / 26px 26px,
    linear-gradient(135deg, var(--c-blue-light), #fdf6ea);
  display: flex; align-items: center; justify-content: center; border: 1px solid var(--c-line); box-shadow: var(--shadow);
}
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about__img-placeholder { color: var(--c-muted); font-weight: 600; text-align: center; padding: 20px; }
.about__badge-float {
  position: absolute; bottom: 24px; left: -24px; background: #fff; border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow-lg); border: 1px solid var(--c-line);
}
.about__badge-num { display: block; font-family: var(--font-head); font-weight: 800; color: var(--c-accent-2); font-size: 1.1rem; }
.about__badge-label { font-size: 0.78rem; color: var(--c-muted); }
.about__content .eyebrow { margin-bottom: 8px; }
.about__content .section__title { margin-bottom: 16px; text-align: left; }
.about__content .section__lead { margin: 0 0 24px; max-width: none; }
.tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.tab {
  padding: 9px 20px; border-radius: var(--radius-pill); font-weight: 700; font-size: 0.9rem;
  background: var(--c-bg-alt); color: var(--c-muted); transition: all 0.25s;
}
.tab--active { background: var(--c-navy); color: #fff; }
.tab-panel { display: none; color: var(--c-muted); margin-bottom: 26px; }
.tab-panel--active { display: block; }
.about__content .btn { margin-top: 4px; }

/* =====================================================================
   SERVICES
   ===================================================================== */
.services { background: var(--c-bg-alt); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: #fff; border-radius: var(--radius-lg); padding: 30px 26px; border: 1px solid var(--c-line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--c-accent), var(--c-accent-2));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:focus-visible { outline: 3px solid var(--c-blue-2); outline-offset: 3px; }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  background: var(--c-blue-light); color: var(--c-blue); margin-bottom: 20px; transition: background 0.4s, color 0.4s, transform 0.4s;
}
.service-card:hover .service-card__icon { background: var(--c-accent); color: var(--c-navy); transform: rotate(-6deg) scale(1.06); }
.service-card__icon svg { width: 32px; height: 32px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card p { color: var(--c-muted); font-size: 0.96rem; }
.service-card__link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 700;
  color: var(--c-accent-2); transition: gap 0.25s;
}
.service-card:hover .service-card__link { gap: 12px; }
.service-card__num {
  position: absolute; top: 22px; right: 26px; font-family: var(--font-head); font-weight: 800; font-size: 2.6rem;
  color: var(--c-bg-alt); transition: color 0.4s;
}
.service-card:hover .service-card__num { color: var(--c-accent-light); }

/* =====================================================================
   PROCESS (Why Choose Us) — dark section
   ===================================================================== */
.process { background: var(--grad-navy); color: #fff; position: relative; overflow: hidden; }
.process::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(30rem 30rem at 85% 0%, rgba(247, 164, 35, 0.16) 0, transparent 60%);
}
.process > .container { position: relative; }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-card {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-lg);
  padding: 28px 20px; text-align: center; transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s;
}
.process-card:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.09); border-color: rgba(247, 164, 35, 0.45); }
.process-card__letter {
  width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--c-accent); color: var(--c-navy); font-family: var(--font-head); font-weight: 800; font-size: 1.6rem;
  box-shadow: var(--shadow-accent);
}
.process-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 10px; }
.process-card p { color: rgba(255, 255, 255, 0.72); font-size: 0.9rem; }

/* =====================================================================
   WHAT WE INSPECT
   ===================================================================== */
.inspect { background: var(--c-bg-alt); }
.inspect__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.inspect__diagram { position: relative; background: #fff; border-radius: var(--radius-lg); padding: 30px; border: 1px solid var(--c-line); box-shadow: var(--shadow); }
.house { width: 100%; height: auto; color: var(--c-blue); }
.hotspot {
  position: absolute; width: 34px; height: 34px; border-radius: 50%; background: var(--c-accent);
  color: var(--c-navy); font-weight: 800; font-size: 0.8rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-accent); transition: transform 0.3s var(--ease), background 0.3s; z-index: 2;
}
.hotspot::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--c-accent);
  opacity: 0.5; animation: pulse 2s infinite;
}
.hotspot:hover, .hotspot.active { transform: scale(1.18); background: var(--c-navy); color: #fff; }
.hotspot.active::after { border-color: var(--c-navy); }
.inspect__hint { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); font-size: 0.78rem; color: var(--c-muted); }
.inspect__info { background: #fff; border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--c-line); box-shadow: var(--shadow); min-height: 240px; }
.inspect__info-empty { color: var(--c-muted); }
.inspect__info-title { font-size: 1.5rem; margin-bottom: 12px; color: var(--c-navy); display: flex; align-items: center; gap: 10px; }
.inspect__info-title::before { content: ""; width: 6px; height: 26px; background: var(--c-accent); border-radius: 4px; }
.inspect__info-text { color: var(--c-muted); font-size: 1.05rem; }
.inspect__info-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.inspect__tag { font-size: 0.8rem; padding: 6px 14px; border-radius: var(--radius-pill); background: var(--c-blue-light); color: var(--c-blue); font-weight: 600; }

/* =====================================================================
   TESTIMONIALS / SLIDER
   ===================================================================== */
.reviews { background: var(--c-bg-alt); }
.slider { position: relative; max-width: 820px; margin: 0 auto; overflow: hidden; }
.slider__track { display: flex; transition: transform 0.6s var(--ease-out); }
.testimonial {
  flex: 0 0 100%; padding: 16px 28px; text-align: center;
}
.testimonial__stars { color: var(--c-accent); font-size: 1.2rem; letter-spacing: 3px; margin-bottom: 18px; }
.testimonial__text { font-size: 1.18rem; color: var(--c-ink); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial__name { font-family: var(--font-head); font-weight: 700; color: var(--c-navy); font-size: 1.05rem; }
.testimonial__avatar {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 12px; background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
  display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem;
}
.slider__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%;
  background: #fff; color: var(--c-navy); font-size: 1.6rem; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, color 0.25s, transform 0.25s; z-index: 3;
}
.slider__arrow:hover { background: var(--c-accent); color: var(--c-navy); }
.slider__arrow--prev { left: -10px; }
.slider__arrow--next { right: -10px; }
.slider__dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.slider__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--c-line); transition: background 0.25s, transform 0.25s; }
.slider__dot.active { background: var(--c-accent); transform: scale(1.3); }

/* =====================================================================
   AREAS
   ===================================================================== */
/* Homepage teaser: one readable line of linked place names, not a box grid */
.areas__grid {
  max-width: 780px; margin: 0 auto; text-align: center;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem); line-height: 2; color: var(--c-muted);
}
.areas__grid a {
  color: var(--c-navy); font-weight: 600; text-decoration: underline;
  text-decoration-color: transparent; text-underline-offset: 4px;
  transition: color 0.2s var(--ease), text-decoration-color 0.2s var(--ease);
}
.areas__grid a:hover { color: var(--c-accent-2); text-decoration-color: currentColor; }
.areas__sep { margin: 0 10px; color: var(--c-line); font-weight: 700; }

/* Service Areas page: compact jump-links to the detail sections below */
.area-jumps { display: flex; flex-wrap: wrap; gap: 10px; }
.area-jump {
  padding: 9px 18px; border-radius: var(--radius-pill); background: #fff; border: 1px solid var(--c-line);
  font-weight: 600; font-size: 0.92rem; color: var(--c-navy);
  transition: background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease), transform 0.22s var(--ease);
}
.area-jump:hover { background: var(--c-navy); color: #fff; border-color: var(--c-navy); transform: translateY(-2px); }
.area-jump:focus-visible { outline: 3px solid var(--c-blue-2); outline-offset: 2px; }

/* =====================================================================
   CERTIFIED & QUALIFIED  (licence + affiliations trust strip)
   ===================================================================== */
.credentials__inner { text-align: center; }
.credentials__head { max-width: 640px; margin: 0 auto; }
.credentials__head .section__title { margin-bottom: 6px; }
.credentials__head .section__lead { margin-left: auto; margin-right: auto; }

.credentials__license {
  margin: 22px auto 0; display: inline-flex; align-items: center; gap: 12px; text-align: left;
  padding: 13px 20px; border: 1px solid var(--c-line); border-left: 4px solid var(--c-accent);
  border-radius: var(--radius-sm); background: #fff; box-shadow: var(--shadow-sm);
  color: var(--c-ink); line-height: 1.45;
}
.credentials__license a { display: inline-flex; align-items: center; gap: 12px; color: inherit; }
.credentials__license strong { color: var(--c-navy); font-size: 0.95rem; }
.credentials__license-icon {
  flex-shrink: 0; width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--c-blue-light); color: var(--c-blue);
}
.credentials__license-icon svg { width: 20px; height: 20px; }
.credentials__license-num { color: var(--c-muted); font-size: 0.82rem; }

.credentials__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 38px; }
.cred-badge {
  flex: 0 1 262px; display: flex; align-items: center; gap: 14px; text-align: left;
  padding: 16px 18px; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); color: var(--c-ink);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
a.cred-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--c-blue-light); }
a.cred-badge:focus-visible { outline: 3px solid var(--c-blue-2); outline-offset: 2px; }
.cred-badge__icon {
  flex-shrink: 0; width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px; background: linear-gradient(150deg, var(--c-navy), var(--c-navy-3)); color: #fff;
}
.cred-badge__icon svg { width: 24px; height: 24px; }
.cred-badge__logo { flex-shrink: 0; width: auto; max-width: 96px; max-height: 48px; object-fit: contain; }
.cred-badge__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cred-badge__text strong { color: var(--c-navy); font-size: 0.95rem; line-height: 1.25; }
.cred-badge__text span { color: var(--c-muted); font-size: 0.82rem; line-height: 1.3; }

@media (max-width: 620px) {
  .cred-badge { flex-basis: 100%; max-width: 360px; }
  .credentials__license { width: 100%; max-width: 360px; }
}

/* =====================================================================
   BLOG
   ===================================================================== */
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--c-line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-card__media { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--c-blue-light), var(--c-accent-light)); display: flex; align-items: center; justify-content: center; position: relative; }
.blog-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 60%, rgba(10, 37, 64, 0.35)); }
.blog-card__date { position: absolute; bottom: 14px; left: 14px; z-index: 2; background: var(--c-accent); color: var(--c-navy); font-weight: 700; font-size: 0.76rem; padding: 4px 12px; border-radius: var(--radius-pill); }
.blog-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card h3 { font-size: 1.12rem; margin-bottom: 12px; line-height: 1.3; }
.blog-card p { color: var(--c-muted); font-size: 0.92rem; flex: 1; }
.blog-card__link { margin-top: 16px; font-weight: 700; color: var(--c-accent-2); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.25s; }
.blog-card:hover .blog-card__link { gap: 12px; }

/* =====================================================================
   QUOTE (multi-step)
   ===================================================================== */
.quote { background: var(--grad-navy); color: #fff; }
.quote__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 48px); align-items: start; }
.quote__benefits { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.quote__benefits li { display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, 0.88); font-weight: 500; }
.quote__benefits .check { width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%; background: var(--c-accent); position: relative; }
.quote__benefits .check::after { content: ""; position: absolute; left: 8px; top: 5px; width: 6px; height: 11px; border: solid var(--c-navy); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }
.quote__formwrap { background: #fff; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-lg); }

.multistep__progress { margin-bottom: 28px; }
.multistep__bar { height: 6px; background: var(--c-line); border-radius: var(--radius-pill); overflow: hidden; margin-bottom: 16px; }
.multistep__bar span { display: block; height: 100%; width: 25%; background: linear-gradient(90deg, var(--c-accent), var(--c-accent-2)); border-radius: inherit; transition: width 0.5s var(--ease-out); }
.multistep__steps { display: flex; justify-content: space-between; }
.step-dot {
  width: 34px; height: 34px; border-radius: 50%; background: var(--c-bg-alt); color: var(--c-muted);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; transition: all 0.3s; border: 2px solid var(--c-line);
}
.step-dot.active { background: var(--c-accent); color: var(--c-navy); border-color: var(--c-accent); }
.step-dot.done { background: var(--c-success); color: #fff; border-color: var(--c-success); }

.step { display: none; }
.step.active { display: block; }
.step legend { font-family: var(--font-head); font-weight: 800; color: var(--c-navy); font-size: 1.2rem; margin-bottom: 18px; }
.multistep__actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 24px; }
.multistep__summary { background: var(--c-bg-alt); border-radius: var(--radius); padding: 18px; margin-top: 20px; font-size: 0.9rem; color: var(--c-ink); }
.multistep__summary h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-muted); margin-bottom: 10px; }
.multistep__summary div { display: flex; justify-content: space-between; padding: 4px 0; border-bottom: 1px dashed var(--c-line); }
.multistep__summary div:last-child { border-bottom: none; }
.multistep__summary span:last-child { font-weight: 600; color: var(--c-navy); }

/* =====================================================================
   FORM FIELDS
   ===================================================================== */
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 0.86rem; color: var(--c-navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--c-line); border-radius: var(--radius-sm); background: #fff;
  color: var(--c-ink); transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; min-height: 48px;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: #c9d4e2; }
.field input::placeholder, .field textarea::placeholder { color: #9aa7b8; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--c-blue); box-shadow: 0 0 0 4px rgba(29, 111, 184, 0.14); background: #fff;
}
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: var(--c-danger); box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12); }
.field textarea { resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235b6b80' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.field__error { color: var(--c-danger); font-size: 0.8rem; font-weight: 600; margin-top: 6px; min-height: 1em; }
.field__error:empty { display: none; }
.form__success { background: #e8f7ee; color: #0f7a3d; padding: 16px 18px; border-radius: var(--radius-sm); margin-top: 16px; font-weight: 600; border: 1px solid #c6e7d3; display: flex; gap: 10px; align-items: flex-start; }
.form__success::before { content: "✓"; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--c-success); color: #fff; font-size: 0.8rem; }
.form__error { color: var(--c-danger); font-size: 0.88rem; font-weight: 600; margin-top: 14px; padding: 12px 14px; background: #fdecec; border: 1px solid #f5c2c2; border-radius: var(--radius-sm); }
button[type="submit"]:disabled { opacity: 0.75; cursor: progress; }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact__layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.contact__info { display: flex; flex-direction: column; gap: 20px; }
.contact__row { display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s; color: var(--c-ink); }
a.contact__row:hover { transform: translateX(6px); box-shadow: var(--shadow); border-color: var(--c-blue-light); }
a.contact__row:focus-visible { outline: 3px solid var(--c-blue-2); outline-offset: 2px; }
.contact__icon { width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px; background: var(--c-blue-light); color: var(--c-blue); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.contact__row strong { color: var(--c-navy); font-size: 0.98rem; }
.contact__row span:last-child { line-height: 1.5; }
.contact__socials { display: flex; gap: 10px; margin-top: 4px; }
.contact__socials a {
  width: 44px; height: 44px; border-radius: 12px; background: var(--c-navy); color: #fff; display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, transform 0.25s;
}
.contact__socials a:hover { background: var(--c-accent); color: var(--c-navy); transform: translateY(-3px); }
.contact__formwrap { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.contact__map { margin-top: 40px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--c-line); }
.contact__map iframe { width: 100%; height: 360px; border: 0; display: block; }

/* =====================================================================
   CTA BANNER
   ===================================================================== */
.cta-banner { background: var(--grad-accent); padding: clamp(40px, 6vw, 60px) 0; position: relative; overflow: hidden; }
.cta-banner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(24rem 24rem at 100% 0%, rgba(255,255,255,0.22) 0, transparent 60%); pointer-events: none; }
.cta-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; position: relative; }
.cta-banner h2 { color: var(--c-navy); font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
.cta-banner p { color: rgba(10, 37, 64, 0.8); font-weight: 500; margin-top: 6px; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: linear-gradient(180deg, var(--c-navy) 0%, var(--c-navy-deep) 100%); color: rgba(255, 255, 255, 0.72); padding-top: 64px; border-top: 3px solid var(--c-accent); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; }
.footer__col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
/* heading-as-button: plain text on desktop, tap target on mobile */
.footer__col-toggle {
  all: unset; box-sizing: border-box; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; width: 100%; color: inherit; font: inherit; cursor: default;
}
.footer__col-toggle:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 4px; border-radius: 4px; }
.footer__col-chev {
  display: none; width: 10px; height: 10px; flex-shrink: 0;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg); transition: transform 0.3s var(--ease); opacity: 0.7;
}
.footer__about { font-size: 0.92rem; margin: 16px 0; max-width: 320px; line-height: 1.7; }
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col ul a { font-size: 0.92rem; transition: color 0.2s, padding-left 0.2s; }
.footer__col ul a:hover { color: var(--c-accent); padding-left: 6px; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; }
.footer__contact .icon-pin, .footer__contact .icon-phone, .footer__contact .icon-mail { color: var(--c-accent); flex-shrink: 0; margin-top: 3px; }
.footer__cta-link { display: inline-block; margin-top: 16px; font-weight: 700; color: var(--c-accent); transition: gap 0.2s, color 0.2s; }
.footer__cta-link:hover { color: #fff; }
.footer__socials { display: flex; gap: 10px; margin-top: 16px; }
.footer__socials a {
  width: 40px; height: 40px; border-radius: 12px; background: rgba(255, 255, 255, 0.1); color: #fff; display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, transform 0.25s;
}
.footer__socials a:hover { background: var(--c-accent); color: var(--c-navy); transform: translateY(-3px); }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 22px 0; font-size: 0.84rem; }
.footer__bottom-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__bottom strong { color: var(--c-accent); }
.footer__legal { display: inline-flex; gap: 10px; align-items: center; }
.footer__legal a { color: rgba(255,255,255,0.72); text-decoration: underline; text-underline-offset: 3px; transition: color 0.25s var(--ease); }
.footer__legal a:hover { color: #fff; }
.footer__legal-sep { color: rgba(255,255,255,0.35); }

/* =====================================================================
   FAB + BACK TO TOP
   ===================================================================== */
.fab {
  position: fixed; bottom: 24px; left: 24px; width: 56px; height: 56px; border-radius: 50%; z-index: 90;
  background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease);
}
.fab:hover { transform: scale(1.1); }
.to-top {
  position: fixed; bottom: 24px; right: 24px; width: 48px; height: 48px; border-radius: 50%; z-index: 90;
  background: var(--c-navy); color: #fff; font-size: 1.3rem; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity 0.3s, transform 0.3s, background 0.3s;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--c-accent); color: var(--c-navy); }

/* =====================================================================
   ICONS (inline SVG via background/mask)
   ===================================================================== */
[class^="icon-"] { display: inline-block; width: 1em; height: 1em; background-color: currentColor; -webkit-mask-size: contain; mask-size: contain; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; }
.icon-mail { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M2 5h20a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1zm10 7L3.5 7h17L12 12zm0 2.3L3 8.7V18h18V8.7l-9 5.6z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M2 5h20a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1zm10 7L3.5 7h17L12 12zm0 2.3L3 8.7V18h18V8.7l-9 5.6z'/%3E%3C/svg%3E"); }
.icon-phone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C12.9 21 5 13.1 5 4c0-.6.4-1 1-1h3.4c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.4 0 .8-.2 1l-2.2 2.2z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C12.9 21 5 13.1 5 4c0-.6.4-1 1-1h3.4c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.4 0 .8-.2 1l-2.2 2.2z'/%3E%3C/svg%3E"); }
.icon-pin { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5 7 13 7 13s7-8 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5 7 13 7 13s7-8 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E"); }
.icon-chat { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 0 0-8.5 15.3L2 22l4.8-1.4A10 10 0 1 0 12 2zm0 18c-1.6 0-3.1-.4-4.4-1.2l-.3-.2-2.9.8.8-2.8-.2-.3A8 8 0 1 1 12 20zm4.3-5.8c-.2-.1-1.4-.7-1.6-.8-.2-.1-.4-.1-.5.1l-.5.7c-.1.2-.3.2-.5.1-.7-.3-1.4-.7-2-1.5-.2-.2 0-.4.1-.5l.4-.5c.1-.1.1-.3 0-.4l-.7-1.7c-.2-.4-.4-.4-.5-.4h-.5c-.2 0-.4.1-.6.3-.7.7-.7 1.8-.5 2.7.3.8 1 1.9 2 2.7 1.5 1.2 2.6 1.4 3.4 1.5.3 0 .6 0 .8-.1.5-.1 1.1-.5 1.3-1 .1-.4.1-.7 0-.8 0-.1-.2-.2-.4-.3z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 0 0-8.5 15.3L2 22l4.8-1.4A10 10 0 1 0 12 2zm0 18c-1.6 0-3.1-.4-4.4-1.2l-.3-.2-2.9.8.8-2.8-.2-.3A8 8 0 1 1 12 20zm4.3-5.8c-.2-.1-1.4-.7-1.6-.8-.2-.1-.4-.1-.5.1l-.5.7c-.1.2-.3.2-.5.1-.7-.3-1.4-.7-2-1.5-.2-.2 0-.4.1-.5l.4-.5c.1-.1.1-.3 0-.4l-.7-1.7c-.2-.4-.4-.4-.5-.4h-.5c-.2 0-.4.1-.6.3-.7.7-.7 1.8-.5 2.7.3.8 1 1.9 2 2.7 1.5 1.2 2.6 1.4 3.4 1.5.3 0 .6 0 .8-.1.5-.1 1.1-.5 1.3-1 .1-.4.1-.7 0-.8 0-.1-.2-.2-.4-.3z'/%3E%3C/svg%3E"); }

/* Social brand icons */
.icon-facebook { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M22 12a10 10 0 1 0-11.6 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7A10 10 0 0 0 22 12z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M22 12a10 10 0 1 0-11.6 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7A10 10 0 0 0 22 12z'/%3E%3C/svg%3E"); }
.icon-instagram { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2.2c3.2 0 3.6 0 4.9.1 1.2.1 1.8.3 2.2.4.6.2 1 .5 1.4.9.4.4.7.8.9 1.4.2.4.3 1 .4 2.2.1 1.3.1 1.7.1 4.9s0 3.6-.1 4.9c-.1 1.2-.3 1.8-.4 2.2-.2.6-.5 1-.9 1.4-.4.4-.8.7-1.4.9-.4.2-1 .3-2.2.4-1.3.1-1.7.1-4.9.1s-3.6 0-4.9-.1c-1.2-.1-1.8-.3-2.2-.4-.6-.2-1-.5-1.4-.9-.4-.4-.7-.8-.9-1.4-.2-.4-.3-1-.4-2.2C2.2 15.6 2.2 15.2 2.2 12s0-3.6.1-4.9c.1-1.2.3-1.8.4-2.2.2-.6.5-1 .9-1.4.4-.4.8-.7 1.4-.9.4-.2 1-.3 2.2-.4C8.4 2.2 8.8 2.2 12 2.2zm0 1.8c-3.1 0-3.5 0-4.7.1-.9 0-1.4.2-1.7.3-.4.2-.7.4-1 .7-.3.3-.5.6-.7 1-.1.3-.3.8-.3 1.7-.1 1.2-.1 1.6-.1 4.7s0 3.5.1 4.7c0 .9.2 1.4.3 1.7.2.4.4.7.7 1 .3.3.6.5 1 .7.3.1.8.3 1.7.3 1.2.1 1.6.1 4.7.1s3.5 0 4.7-.1c.9 0 1.4-.2 1.7-.3.4-.2.7-.4 1-.7.3-.3.5-.6.7-1 .1-.3.3-.8.3-1.7.1-1.2.1-1.6.1-4.7s0-3.5-.1-4.7c0-.9-.2-1.4-.3-1.7-.2-.4-.4-.7-.7-1-.3-.3-.6-.5-1-.7-.3-.1-.8-.3-1.7-.3-1.2-.1-1.6-.1-4.7-.1zm0 3.1a5 5 0 1 1 0 10 5 5 0 0 1 0-10zm0 1.8a3.2 3.2 0 1 0 0 6.4 3.2 3.2 0 0 0 0-6.4zm5.2-.9a1.2 1.2 0 1 1-2.4 0 1.2 1.2 0 0 1 2.4 0z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2.2c3.2 0 3.6 0 4.9.1 1.2.1 1.8.3 2.2.4.6.2 1 .5 1.4.9.4.4.7.8.9 1.4.2.4.3 1 .4 2.2.1 1.3.1 1.7.1 4.9s0 3.6-.1 4.9c-.1 1.2-.3 1.8-.4 2.2-.2.6-.5 1-.9 1.4-.4.4-.8.7-1.4.9-.4.2-1 .3-2.2.4-1.3.1-1.7.1-4.9.1s-3.6 0-4.9-.1c-1.2-.1-1.8-.3-2.2-.4-.6-.2-1-.5-1.4-.9-.4-.4-.7-.8-.9-1.4-.2-.4-.3-1-.4-2.2C2.2 15.6 2.2 15.2 2.2 12s0-3.6.1-4.9c.1-1.2.3-1.8.4-2.2.2-.6.5-1 .9-1.4.4-.4.8-.7 1.4-.9.4-.2 1-.3 2.2-.4C8.4 2.2 8.8 2.2 12 2.2zm0 1.8c-3.1 0-3.5 0-4.7.1-.9 0-1.4.2-1.7.3-.4.2-.7.4-1 .7-.3.3-.5.6-.7 1-.1.3-.3.8-.3 1.7-.1 1.2-.1 1.6-.1 4.7s0 3.5.1 4.7c0 .9.2 1.4.3 1.7.2.4.4.7.7 1 .3.3.6.5 1 .7.3.1.8.3 1.7.3 1.2.1 1.6.1 4.7.1s3.5 0 4.7-.1c.9 0 1.4-.2 1.7-.3.4-.2.7-.4 1-.7.3-.3.5-.6.7-1 .1-.3.3-.8.3-1.7.1-1.2.1-1.6.1-4.7s0-3.5-.1-4.7c0-.9-.2-1.4-.3-1.7-.2-.4-.4-.7-.7-1-.3-.3-.6-.5-1-.7-.3-.1-.8-.3-1.7-.3-1.2-.1-1.6-.1-4.7-.1zm0 3.1a5 5 0 1 1 0 10 5 5 0 0 1 0-10zm0 1.8a3.2 3.2 0 1 0 0 6.4 3.2 3.2 0 0 0 0-6.4zm5.2-.9a1.2 1.2 0 1 1-2.4 0 1.2 1.2 0 0 1 2.4 0z'/%3E%3C/svg%3E"); }
.icon-youtube { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M23 7.5s-.2-1.6-.9-2.3c-.8-.9-1.8-.9-2.2-.9C16.7 4 12 4 12 4s-4.7 0-7.9.3c-.4 0-1.4 0-2.2.9C1.2 5.9 1 7.5 1 7.5S.8 9.4.8 11.3v1.4c0 1.9.2 3.8.2 3.8s.2 1.6.9 2.3c.8.9 1.9.9 2.4 1 1.7.1 7.7.3 7.7.3s4.7 0 7.9-.3c.4 0 1.4 0 2.2-.9.7-.7.9-2.3.9-2.3s.2-1.9.2-3.8v-1.4c0-1.9-.2-3.8-.2-3.8zM9.8 15.3V8.7l5.7 3.3-5.7 3.3z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M23 7.5s-.2-1.6-.9-2.3c-.8-.9-1.8-.9-2.2-.9C16.7 4 12 4 12 4s-4.7 0-7.9.3c-.4 0-1.4 0-2.2.9C1.2 5.9 1 7.5 1 7.5S.8 9.4.8 11.3v1.4c0 1.9.2 3.8.2 3.8s.2 1.6.9 2.3c.8.9 1.9.9 2.4 1 1.7.1 7.7.3 7.7.3s4.7 0 7.9-.3c.4 0 1.4 0 2.2-.9.7-.7.9-2.3.9-2.3s.2-1.9.2-3.8v-1.4c0-1.9-.2-3.8-.2-3.8zM9.8 15.3V8.7l5.7 3.3-5.7 3.3z'/%3E%3C/svg%3E"); }
.icon-tiktok { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M16.6 5.8c-1.1-.7-1.9-1.9-2.1-3.3h-3v12.4c0 1.3-1 2.3-2.3 2.3S6.9 16.2 6.9 14.9s1-2.3 2.3-2.3c.2 0 .5 0 .7.1V9.6c-.2 0-.5-.1-.7-.1-3 0-5.4 2.4-5.4 5.4s2.4 5.4 5.4 5.4 5.4-2.4 5.4-5.4V9.5c1.2.9 2.7 1.4 4.3 1.4V7.9c-.9 0-1.7-.3-2.3-.8z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M16.6 5.8c-1.1-.7-1.9-1.9-2.1-3.3h-3v12.4c0 1.3-1 2.3-2.3 2.3S6.9 16.2 6.9 14.9s1-2.3 2.3-2.3c.2 0 .5 0 .7.1V9.6c-.2 0-.5-.1-.7-.1-3 0-5.4 2.4-5.4 5.4s2.4 5.4 5.4 5.4 5.4-2.4 5.4-5.4V9.5c1.2.9 2.7 1.4 4.3 1.4V7.9c-.9 0-1.7-.3-2.3-.8z'/%3E%3C/svg%3E"); }
.icon-linkedin { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zM8.3 18.3H5.7V9.7h2.6v8.6zM7 8.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm11.3 9.8h-2.6v-4.2c0-1 0-2.3-1.4-2.3s-1.6 1.1-1.6 2.2v4.3h-2.6V9.7h2.5v1.2h.1c.4-.7 1.2-1.4 2.5-1.4 2.7 0 3.2 1.8 3.2 4.1v4.7z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zM8.3 18.3H5.7V9.7h2.6v8.6zM7 8.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm11.3 9.8h-2.6v-4.2c0-1 0-2.3-1.4-2.3s-1.6 1.1-1.6 2.2v4.3h-2.6V9.7h2.5v1.2h.1c.4-.7 1.2-1.4 2.5-1.4 2.7 0 3.2 1.8 3.2 4.1v4.7z'/%3E%3C/svg%3E"); }

/* Service icons */
.icon-home, .icon-building, .icon-townhouse, .icon-key, .icon-thermal, .icon-drone { -webkit-mask-size: contain; mask-size: contain; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; }

/* =====================================================================
   HOW IT WORKS — 3 steps
   ===================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1020px; margin: 0 auto; }
.step-card { position: relative; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 36px 26px 30px; text-align: center; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-card__num { position: absolute; top: 14px; left: 18px; font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; color: var(--c-bg-alt); line-height: 1; }
.step-card__icon { width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 16px; background: var(--c-blue-light); color: var(--c-blue); display: flex; align-items: center; justify-content: center; }
.step-card__icon .icon-calendar, .step-card__icon .icon-search, .step-card__icon .icon-doc { width: 28px; height: 28px; }
.step-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.step-card p { color: var(--c-muted); font-size: 0.95rem; }

.icon-calendar { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h2v2h6V2h2v2h3v16H4V4h3V2zm-1 6v4h12V8H6zm0 6v4h12v-4H6z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h2v2h6V2h2v2h3v16H4V4h3V2zm-1 6v4h12V8H6zm0 6v4h12v-4H6z'/%3E%3C/svg%3E"); }
.icon-search { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M10 4a6 6 0 1 0 3.6 10.8l5 5 1.4-1.4-5-5A6 6 0 0 0 10 4zm0 2a4 4 0 1 1 0 8 4 4 0 0 1 0-8z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M10 4a6 6 0 1 0 3.6 10.8l5 5 1.4-1.4-5-5A6 6 0 0 0 10 4zm0 2a4 4 0 1 1 0 8 4 4 0 0 1 0-8z'/%3E%3C/svg%3E"); }
.icon-doc { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 2h9l4 4v16H6V2zm8 2.5V7h2.5L14 4.5zM8 9v2h8V9H8zm0 4v2h8v-2H8zm0 4v2h5v-2H8z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 2h9l4 4v16H6V2zm8 2.5V7h2.5L14 4.5zM8 9v2h8V9H8zm0 4v2h8v-2H8zm0 4v2h5v-2H8z'/%3E%3C/svg%3E"); }

/* =====================================================================
   LEAD MAGNET — email capture
   ===================================================================== */
.leadmagnet { background: linear-gradient(135deg, var(--c-navy), var(--c-navy-3)); }
.leadmagnet__inner { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 40px; align-items: center; }
.leadmagnet__text .section__title, .leadmagnet__text .section__lead { color: #fff; }
.leadmagnet__text .eyebrow { color: var(--c-accent); }
.leadmagnet__form { background: #fff; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-lg); }
.leadmagnet__form .field { margin-bottom: 12px; }
.leadmagnet__form input { width: 100%; }
@media (max-width: 820px) { .leadmagnet__inner { grid-template-columns: 1fr; } }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1080px) {
  .process__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; max-width: 620px; }
  .hero__card { margin: 0 auto; max-width: 100%; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__media { max-width: 440px; }
  .quote__inner { grid-template-columns: 1fr; }
  .services__grid, .blog__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__col:first-child { grid-column: 1 / -1; }

  /* backdrop-filter would make .header a containing block for the fixed
     drawer — drop it here so the drawer anchors to the viewport. */
  .header, .header.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; }

  /* collapse nav into a drawer earlier so it never crowds */
  .nav {
    position: fixed; top: 0; right: 0; width: min(360px, 88vw); height: 100dvh; background: #fff;
    flex-direction: column; align-items: stretch; gap: 0; padding: 84px 20px 28px;
    box-shadow: -30px 0 80px -24px rgba(6, 26, 48, 0.4);
    transform: translateX(100%); transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99; overflow-y: auto; overscroll-behavior: contain;
  }
  .nav.open { transform: translateX(0); }
  /* dim the page behind the open drawer */
  .header:has(.nav.open)::after,
  .nav-open .header::after {
    content: ""; position: fixed; inset: 0; background: rgba(6, 26, 48, 0.5);
    backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); z-index: 98;
    animation: fadeIn 0.32s var(--ease-out);
  }
  .nav__link {
    padding: 15px 14px; font-size: 1.06rem; color: var(--c-ink); border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--c-line);
  }
  .nav__link:last-child { border-bottom: none; }
  .nav__link:hover, .nav__link:active { background-color: var(--c-accent-light); color: var(--c-navy); }
  .nav__link::after { display: none; }
  .nav__link--more { display: block; }
  .nav__link.active { color: var(--c-accent-2); font-weight: 700; }
  /* links fade + slide in, staggered, once the drawer is open */
  .nav.open .nav__link { animation: navItemIn 0.4s var(--ease-out) both; }
  .nav.open .nav__link:nth-child(1) { animation-delay: 0.08s; }
  .nav.open .nav__link:nth-child(2) { animation-delay: 0.12s; }
  .nav.open .nav__link:nth-child(3) { animation-delay: 0.16s; }
  .nav.open .nav__link:nth-child(4) { animation-delay: 0.20s; }
  .nav.open .nav__link:nth-child(5) { animation-delay: 0.24s; }
  .nav.open .nav__link:nth-child(6) { animation-delay: 0.28s; }
  .nav.open .nav__link:nth-child(7) { animation-delay: 0.32s; }
  .nav.open .nav__link:nth-child(8) { animation-delay: 0.36s; }
  .nav.open .nav__link:nth-child(9) { animation-delay: 0.40s; }
  .nav.open .nav__link:nth-child(n+10) { animation-delay: 0.44s; }
  .nav__toggle { display: flex; z-index: 101; }
  .topbar__left { display: none; }
}

@keyframes navItemIn {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: translateX(0); }
}

@media (max-width: 900px) {
  .slider { padding: 0 44px; }
  .slider__arrow--prev { left: 0; }
  .slider__arrow--next { right: 0; }
}

@media (max-width: 820px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--c-line); }
  .inspect__layout { grid-template-columns: 1fr; }
  .contact__layout { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__col:first-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .header__actions .btn--primary { display: none; }
  /* phone lives in the top bar and the sticky bottom bar on mobile — the
     in-header phone link is redundant and crowds the menu button.
     (higher-specificity selectors so these win over the base rules below) */
  .header__actions .header__call { display: none; }
  .header__inner { height: 64px; gap: 10px; }
  .header .logo { font-size: 1.08rem; gap: 8px; }
  .header .logo img.logo__mark, .header.scrolled .logo img.logo__mark { height: 30px; }
  .page-hero__btns { flex-direction: column; align-items: stretch; }
  .page-hero__btns .btn { width: 100%; }
  .cta-banner__btns { width: 100%; }
  .cta-banner__btns .btn { flex: 1 1 100%; }
  .review-cta { padding: 28px 20px; }
  .review-cta .btn { display: flex; width: 100%; margin: 6px 0 0; }
  .svc-aside__card, .contact__formwrap { padding: 24px 20px; }
  body { padding-bottom: 58px; }
  .to-top, .fab { bottom: 72px; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .grid-2 { grid-template-columns: 1fr; }
  .services__grid, .blog__grid, .process__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__col:first-child { grid-column: auto; }
  .footer__bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
  .hero { padding: 44px 0 84px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .hero__card, .quote__formwrap, .contact__formwrap { padding: 24px 20px; }
  .stat__num { font-size: 1.9rem; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .slider__arrow--prev { left: 4px; }
  .slider__arrow--next { right: 4px; }
  .testimonial__text { font-size: 1rem; }
  .nav__toggle { width: 42px; height: 42px; }
}

/* =====================================================================
   HEADER CALL + CTA BANNER extras
   ===================================================================== */
.header__call {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--c-navy);
  padding: 8px 12px; border-radius: var(--radius-pill); transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.header__call:hover { color: var(--c-accent-2); background: var(--c-accent-light); }
.header__call[hidden] { display: none !important; }
/* below this width the header gets tight — keep the phone icon, drop the label */
@media (max-width: 1160px) {
  .header__call-text { display: none; }
  .header__call { padding: 10px; font-size: 1.05rem; }
}
.cta-banner__btns { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-banner__call { color: #fff; border-color: rgba(255,255,255,0.6); }
.cta-banner__call:hover { background: #fff; color: var(--c-navy); border-color: #fff; }

/* =====================================================================
   PAGE HERO (inner pages)
   ===================================================================== */
.page-hero {
  color: #fff; padding: clamp(52px, 7vw, 76px) 0 clamp(48px, 6vw, 66px); position: relative; overflow: hidden;
  background:
    linear-gradient(120deg, rgba(10, 37, 64, 0.96) 0%, rgba(15, 48, 86, 0.93) 50%, rgba(23, 69, 122, 0.86) 100%),
    url("../assets/scenematic.jpg") center 38% / cover no-repeat,
    #0a2540;
}
.page-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(28rem 28rem at 88% -20%, rgba(247, 164, 35, 0.18) 0, transparent 60%); }
.page-hero__inner { position: relative; max-width: 760px; }
.page-hero__eyebrow { display: inline-block; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 14px; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4.5vw, 2.9rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.12rem; max-width: 600px; }
.page-hero__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.page-hero__btns .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.35); }
.page-hero__btns .btn--ghost:hover { background: #fff; color: var(--c-navy); border-color: #fff; }

/* breadcrumb */
.breadcrumb { background: var(--c-bg-alt); border-bottom: 1px solid var(--c-line); font-size: 0.86rem; }
.breadcrumb__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 14px 0; color: var(--c-muted); }
.breadcrumb a { color: var(--c-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--c-accent-2); }
.breadcrumb__sep { opacity: 0.5; }
.breadcrumb__current { color: var(--c-navy); font-weight: 600; }

/* =====================================================================
   SERVICE DETAIL PAGE
   ===================================================================== */
.svc-detail { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.svc-detail__content > p { color: var(--c-muted); font-size: 1.08rem; margin-bottom: 18px; }
.svc-block { margin-top: 36px; }
.svc-block h2 { font-size: 1.5rem; margin-bottom: 16px; }
.list-check { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.list-check li { display: flex; align-items: flex-start; gap: 10px; color: var(--c-ink); }
.list-check li::before { content: ""; flex-shrink: 0; width: 20px; height: 20px; margin-top: 3px; border-radius: 50%; background: var(--c-accent); box-shadow: inset 0 0 0 3px #fff, 0 0 0 2px var(--c-accent); }
.svc-aside { position: sticky; top: 96px; }
.svc-aside__card { background: var(--c-navy); color: #fff; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-lg); margin-bottom: 18px; }
.svc-aside__card h3 { color: #fff; margin-bottom: 8px; }
.svc-aside__card p { color: rgba(255,255,255,0.8); font-size: 0.94rem; margin-bottom: 18px; }
.svc-aside__card .btn { width: 100%; margin-bottom: 10px; }
.svc-aside__card .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.3); }
.svc-aside__card .btn--ghost:hover { background: #fff; color: var(--c-navy); border-color: #fff; }
.svc-aside__related { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 24px; }
.svc-aside__related h4 { margin-bottom: 14px; }
.svc-aside__related ul { display: flex; flex-direction: column; gap: 10px; }
.svc-aside__related a { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--c-ink); transition: color 0.2s, gap 0.2s; }
.svc-aside__related a:hover { color: var(--c-accent-2); gap: 12px; }

/* =====================================================================
   FAQ ACCORDION
   ===================================================================== */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.3s, border-color 0.3s; }
.faq__item.open { box-shadow: var(--shadow); border-color: transparent; }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; padding: 20px 24px; font-weight: 700; font-size: 1.05rem; color: var(--c-navy); }
.faq__q-icon { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--c-accent-light); color: var(--c-accent-2); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; transition: transform 0.3s var(--ease), background 0.3s, color 0.3s; }
.faq__item.open .faq__q-icon { transform: rotate(45deg); background: var(--c-accent); color: var(--c-navy); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__a-inner { padding: 0 24px 22px; color: var(--c-muted); }
.faq__item.open .faq__a { max-height: 900px; }
.faq__q:focus-visible { outline: 3px solid var(--c-blue-2); outline-offset: -3px; border-radius: var(--radius); }

/* =====================================================================
   WHAT WE INSPECT — cards grid (dedicated page)
   ===================================================================== */
.wwi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wwi-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 28px; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.wwi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.wwi-card__icon { width: 60px; height: 60px; border-radius: 14px; background: var(--c-blue-light); color: var(--c-blue); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.wwi-card__icon svg { width: 30px; height: 30px; }
.wwi-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.wwi-card p { color: var(--c-muted); font-size: 0.96rem; }

/* =====================================================================
   REVIEWS PAGE
   ===================================================================== */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; }
.review-card__stars { color: var(--c-accent); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-card__text { color: var(--c-ink); font-style: italic; flex: 1; margin-bottom: 18px; }
.review-card__name { font-weight: 700; color: var(--c-navy); }
.review-cta { background: linear-gradient(135deg, var(--c-navy), var(--c-navy-3)); color: #fff; border-radius: var(--radius-lg); padding: 40px; text-align: center; }
.review-cta h2 { color: #fff; margin-bottom: 10px; }
.review-cta p { color: rgba(255,255,255,0.82); margin-bottom: 24px; }
.review-cta .btn { margin: 0 6px 8px; }
.review-empty { text-align: center; padding: 50px 20px; color: var(--c-muted); }
.review-empty h3 { color: var(--c-navy); margin-bottom: 8px; }

/* =====================================================================
   SERVICE AREAS PAGE — per-community detail sections
   ===================================================================== */
.area-section { max-width: 760px; margin: 0 auto 40px; padding: 28px 0; border-bottom: 1px solid var(--c-line); scroll-margin-top: 120px; }
.area-section:last-of-type { border-bottom: none; }
.area-section h2 { font-size: 1.5rem; margin-bottom: 12px; }
.area-section p { color: var(--c-muted); margin-bottom: 18px; }

/* =====================================================================
   SAMPLE REPORT
   ===================================================================== */
.sample { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.sample__preview { aspect-ratio: 4/3; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--c-blue-light), #fff); border: 1px solid var(--c-line); box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.sample__preview::before { content: ""; position: absolute; left: 8%; right: 8%; top: 12%; height: 10px; border-radius: 4px; background: var(--c-line); box-shadow: 0 22px 0 var(--c-line), 0 44px 0 var(--c-line), 0 66px 0 var(--c-line), 0 88px 0 var(--c-line); }
.sample__preview:has(img)::before { display: none; }
.sample__preview img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.sample__badge { z-index: 2; }
.sample__badge { position: absolute; top: 18px; right: 18px; background: var(--c-accent); color: var(--c-navy); font-weight: 800; font-size: 0.78rem; padding: 6px 14px; border-radius: var(--radius-pill); }
.sample__content h2 { margin-bottom: 14px; }
.sample__content > p { color: var(--c-muted); margin-bottom: 22px; }
.sample__includes { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.sample__includes li { display: flex; align-items: center; gap: 10px; color: var(--c-ink); }
.sample__includes li::before { content: ""; flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--c-accent); box-shadow: inset 0 0 0 3px #fff, 0 0 0 2px var(--c-accent); }
.sample__gate { background: var(--c-bg-alt); border: 1px dashed var(--c-blue); border-radius: var(--radius); padding: 20px; margin-top: 20px; }

/* =====================================================================
   ABOUT PAGE
   ===================================================================== */
.about-page { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.about-page__photo { aspect-ratio: 4/5; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--c-blue-light), var(--c-accent-light)); border: 1px solid var(--c-line); box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; position: sticky; top: 96px; overflow: hidden; }
.about-page__photo img { width: 100%; height: 100%; object-fit: cover; }
.about-page__photo-ph { color: var(--c-muted); font-weight: 600; text-align: center; padding: 20px; }
.about-page__name { font-size: 2rem; margin-bottom: 4px; }
.about-page__role { color: var(--c-accent-2); font-weight: 700; margin-bottom: 18px; }
.about-page__body p { color: var(--c-muted); margin-bottom: 18px; }
.about-page__body h2 { font-size: 1.4rem; margin: 32px 0 14px; }
.qual-list { display: flex; flex-direction: column; gap: 12px; }
.qual-list li { display: flex; align-items: flex-start; gap: 12px; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 14px 18px; }
.qual-list li::before { content: ""; flex-shrink: 0; width: 22px; height: 22px; margin-top: 3px; border-radius: 50%; background: var(--c-accent); box-shadow: inset 0 0 0 3px #fff, 0 0 0 2px var(--c-accent); }
.qual-placeholder { background: var(--c-accent-light); border: 1px dashed var(--c-accent); border-radius: var(--radius); padding: 18px; color: var(--c-ink); font-size: 0.92rem; }
.qual-placeholder strong { color: var(--c-accent-2); }

/* =====================================================================
   MOBILE STICKY CTA BAR — shown at <=600px (see media query below)
   ===================================================================== */
.mobile-cta { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; gap: 1px; background: var(--c-line); box-shadow: 0 -6px 20px -8px rgba(6, 26, 48, 0.28); }
.mobile-cta__btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 14px; font-weight: 700; font-size: 0.98rem; min-height: 52px; }
.mobile-cta__call { background: #fff; color: var(--c-navy); }
.mobile-cta__book { background: var(--grad-accent); color: var(--c-navy); }
.mobile-cta__wa { background: #25d366; color: #fff; }
.mobile-cta__btn:active { filter: brightness(0.95); }
@media (max-width: 600px) { .mobile-cta { display: flex; } }

/* WhatsApp icon + button variants */
.icon-whatsapp { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E"); }
.cta-banner__wa { border-color: rgba(255,255,255,0.7); color: #fff; }
.cta-banner__wa:hover { background: #fff; color: #075e54; border-color: #fff; }
.fab--whatsapp { background: #25d366; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5); }
.fab--whatsapp:hover { background: #1ebe5b; }

/* =====================================================================
   RESPONSIVE — inner pages
   ===================================================================== */
@media (max-width: 1024px) {
  .svc-detail { grid-template-columns: 1fr; }
  .svc-aside { position: static; }
  .wwi-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .sample, .about-page { grid-template-columns: 1fr; }
  .about-page__photo { position: static; max-width: 420px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .areas-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .list-check { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .wwi-grid, .review-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 50px 0 48px; }
  .steps, .areas-cards { grid-template-columns: 1fr; }
}
/* =====================================================================
   MOBILE POLISH — touch, anchors, spacing at the smallest sizes
   ===================================================================== */
/* anchored sections clear the sticky header */
:where(section[id], [id].area-section, #download) { scroll-margin-top: 88px; }

@media (hover: none) {
  * { -webkit-tap-highlight-color: transparent; }
  /* remove hover-only lifts that get "stuck" after a tap on touch devices */
  .service-card:hover, .wwi-card:hover, .area-jump:hover,
  .blog-card:hover, .process-card:hover, .stat:hover, a.contact__row:hover { transform: none; }
}

@media (max-width: 680px) {
  .topbar__link--email { display: none; }
  .topbar__inner { justify-content: flex-end; }
}

@media (max-width: 560px) {
  .hero__badges { gap: 8px; }
  .badge { font-size: 0.74rem; padding: 6px 12px; }
  .hero__eyebrow { font-size: 0.72rem; letter-spacing: 0.12em; padding: 7px 13px; }
  .hero__card h3 { font-size: 1.25rem; }
  .section__head { margin-bottom: 32px; }
  .hotspot { width: 40px; height: 40px; font-size: 0.9rem; }
  .inspect__diagram { padding: 20px; }
  .inspect__info { padding: 24px 20px; min-height: 0; }
  .faq__q { padding: 16px 18px; font-size: 1rem; }
  .faq__a-inner { padding: 0 18px 20px; }
  .contact__row { padding: 16px; }
  .quote__formwrap { padding: 24px 18px; }
  .cta-banner h2 { font-size: 1.4rem; }
  .testimonial { padding: 12px 8px; }
  .review-cta h2 { font-size: 1.3rem; }
  h1, h2 { hyphens: auto; }
}

/* Footer link columns become tap-to-expand accordions on small screens.
   (Kept last so it wins the cascade over the earlier .footer__grid rules.) */
@media (max-width: 640px) {
  .footer { padding-top: 44px; }
  .footer__grid { grid-template-columns: 1fr; gap: 0; padding-bottom: 22px; }
  .footer__col:first-child, .footer__col--brand { grid-column: auto; }
  .footer__col--brand { margin-bottom: 10px; }
  .footer__col--collapsible { border-top: 1px solid rgba(255, 255, 255, 0.12); }
  .footer__col--collapsible h4 { margin: 0; }
  .footer__col-toggle { cursor: pointer; padding: 16px 2px; }
  .footer__col-chev { display: block; }
  .footer__col--collapsible.open .footer__col-chev { transform: rotate(225deg); }
  .footer__col--collapsible ul {
    max-height: 0; overflow: hidden; opacity: 0; margin: 0; padding-left: 2px; visibility: hidden;
    transition: max-height 0.38s var(--ease), opacity 0.25s var(--ease), padding-bottom 0.38s var(--ease), visibility 0s 0.4s;
  }
  .footer__col--collapsible.open ul {
    max-height: 760px; opacity: 1; padding-bottom: 18px; visibility: visible;
    transition: max-height 0.42s var(--ease), opacity 0.3s var(--ease) 0.06s, visibility 0s;
  }
}

/* =====================================================================
   ACCESSIBILITY — skip link (WCAG 2.4.1)
   ===================================================================== */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 1500; background: var(--c-navy); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0; font-weight: 700; text-decoration: none; }
.skip-link:focus { left: 0; }
.skip-target, .skip-target:focus { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; outline: 0; }

/* =====================================================================
   COOKIE BANNER (consent)
   ===================================================================== */
#cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200; padding: 0 16px 16px; pointer-events: none; }
.cookie-banner { pointer-events: auto; max-width: 760px; margin: 0 auto; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 20px 22px; display: flex; flex-wrap: wrap; gap: 16px 22px; align-items: center; justify-content: space-between; }
.cookie-banner__inner { display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; justify-content: space-between; width: 100%; }
.cookie-banner__inner > div:first-child { flex: 1 1 340px; }
.cookie-banner h2 { font-size: 1.05rem; margin-bottom: 4px; }
.cookie-banner p { color: var(--c-muted); font-size: 0.88rem; max-width: 52ch; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.cookie-banner__actions .btn { padding: 9px 16px; font-size: 0.9rem; }
.cookie-banner__link { font-size: 0.86rem; color: var(--c-accent-2); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 560px) { .cookie-banner__inner > div:first-child { flex: 1 1 100%; } .cookie-banner { padding: 18px; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
