/* =========================================================
   IvO Plumbing — Design Tokens
   ========================================================= */
:root {
  /* Brand */
  --c-navy:        #0B1F33;
  --c-navy-700:    #142E4A;
  --c-blue:        #0077B6;
  --c-blue-700:    #005F8F;
  --c-light-blue:  #EAF6FC;
  --c-white:       #FFFFFF;
  --c-grey-bg:     #F5F7FA;
  --c-border:      rgba(11, 31, 51, 0.08);
  --c-border-2:    rgba(11, 31, 51, 0.12);
  --c-text:        #4A5568;
  --c-dark:        #111827;

  /* Actions */
  --c-whatsapp:        #25D366;
  --c-whatsapp-700:    #1FB855;
  --c-messenger:       #0084FF;
  --c-messenger-700:   #006FE0;
  --c-orange:          #F97316;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-pill: 999px;

  --sh-card:    0 2px 8px rgba(11, 31, 51, 0.04);
  --sh-card-h:  0 10px 32px rgba(11, 31, 51, 0.10);
  --sh-btn:     0 4px 14px rgba(11, 31, 51, 0.12);

  /* MOTION SYSTEM — keep these unified across all blocks.
     Two easing curves cover everything:
       --ease-out      — primary, calm deceleration (apple-style)
       --ease-out-soft — softer landing for larger motions/reveals
     Three durations:
       --t-fast — hovers / micro feedback (200ms)
       --t      — standard transitions (280ms)
       --t-slow — large reveals, image filters (520ms)                                 */
  --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-soft: cubic-bezier(0.16, 1, 0.30, 1);
  --t-fast: 200ms var(--ease-out);
  --t:      280ms var(--ease-out);
  --t-slow: 520ms var(--ease-out-soft);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Native CSS smooth-scroll — fallback when Lenis is unavailable / reduced-motion */
html { scroll-behavior: smooth; }

/* Lenis hooks — these classes are added/removed by the Lenis library at runtime */
html.lenis,
html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--c-navy); color: var(--c-white);
  padding: 8px 14px; border-radius: var(--r-sm); z-index: 100;
}
.skip-link:focus { left: 16px; top: 16px; }

/* =========================================================
   HEADER  —  always a floating card; scroll only deepens the shadow.
   No width/position jumps. No clunky transformations.
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  padding: 12px 16px 0;
  pointer-events: none;
}
.site-header > * { pointer-events: auto; }

.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
          backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
  transition: box-shadow var(--t), background var(--t-fast);
  will-change: box-shadow;
}

.site-header.is-scrolled .site-header__inner {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--sh-card-h);
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

/* =========================================================
   BRAND
   ========================================================= */
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform var(--t-fast);
}
.brand:hover { transform: translateY(-1px); }
.brand:focus-visible { outline: 2px solid var(--c-blue); outline-offset: 4px; border-radius: var(--r-sm); }
.brand picture { display: block; line-height: 0; }
.brand__logo {
  height: 44px;
  width: auto;
  display: block;
}

/* =========================================================
   NAV LINKS
   ========================================================= */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 0 1 auto;
  justify-content: center;
}
.nav-link {
  color: var(--c-navy);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--r-md);
  white-space: nowrap;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-link:hover { color: var(--c-blue); background: var(--c-light-blue); }
.nav-link:focus-visible { outline: 2px solid var(--c-blue); outline-offset: 2px; }

/* =========================================================
   CTA
   ========================================================= */
.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid transparent;
  user-select: none;
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 2px solid var(--c-blue); outline-offset: 2px; }
.btn__icon { width: 18px; height: 18px; flex-shrink: 0; }
.btn--block { width: 100%; height: 48px; }

.btn--call      { background: var(--c-navy);      color: var(--c-white); }
.btn--call:hover{ background: var(--c-navy-700);  box-shadow: var(--sh-btn); }

.btn--whatsapp        { background: var(--c-whatsapp); color: var(--c-white); width: 42px; padding: 0; }
.btn--whatsapp:hover  { background: var(--c-whatsapp-700); box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35); }

.btn--messenger       { background: var(--c-messenger); color: var(--c-white); width: 42px; padding: 0; }
.btn--messenger:hover { background: var(--c-messenger-700); box-shadow: 0 4px 14px rgba(0, 132, 255, 0.35); }

.btn--primary       { background: var(--c-blue); color: var(--c-white); font-weight: 700; }
.btn--primary:hover { background: var(--c-blue-700); box-shadow: var(--sh-btn); }

/* WhatsApp/Messenger labels hidden in the header (icons only) */
.header-cta .btn--whatsapp .btn__label,
.header-cta .btn--messenger .btn__label { display: none; }

/* =========================================================
   RESPONSIVE  —  header
   Budget at 1100px container (1280 - 24*2 padding - 22*2 inner ≈ 1232):
     logo(120) + nav(380) + call(120) + 42 + 42 + callback(150) + gaps ≈ 900px → fits
   ========================================================= */

/* < 1100px: drop "Request a Callback" — keep nav + Call/WA/Msg */
@media (max-width: 1099px) {
  .btn--callback { display: none; }
}

/* < 900px: drop nav — keep CTAs */
@media (max-width: 899px) {
  .nav-links { display: none; }
}

/* Hamburger toggle — visible only on mobile */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--c-navy);
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
  transition: background 0.2s var(--ease-out), transform 0.15s var(--ease-out);
}
.menu-toggle:hover { background: var(--c-navy-700); }
.menu-toggle:active { transform: scale(0.96); }
.menu-toggle__line {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out-soft), opacity 0.25s var(--ease-out);
}
.menu-toggle.is-open .menu-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-open .menu-toggle__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}
.menu-toggle.is-open .menu-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile: logo + hamburger only */
@media (max-width: 720px) {
  .site-header { padding: 0; }
  .site-header__inner {
    max-width: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--c-border);
    padding: 0 14px;
  }
  .site-header__nav { height: 60px; gap: 10px; }
  .brand__logo { height: 38px; }

  /* hide the three icon CTAs on mobile — sticky bottom bar already covers Call/WA/Msg */
  .header-cta { display: none; }
  .menu-toggle { display: flex; }
}

@media (max-width: 380px) {
  .brand__logo { height: 34px; }
  .menu-toggle { width: 40px; height: 40px; border-radius: 10px; }
}

/* =========================================================
   MOBILE MENU — full-screen overlay
   ========================================================= */
.mmenu {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(11, 31, 51, 0.45);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.30s var(--ease-out);
}
.mmenu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mmenu__panel {
  position: absolute;
  inset: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateY(-16px) scale(0.985);
  opacity: 0.92;
  transition:
    transform 0.40s var(--ease-out-soft),
    opacity   0.30s var(--ease-out);
}
.mmenu.is-open .mmenu__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.mmenu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--c-border);
}
.mmenu__brand picture { display: block; line-height: 0; }
.mmenu__brand img { height: 38px; width: auto; display: block; }
.mmenu__close {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--c-grey-bg);
  color: var(--c-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s var(--ease-out), transform 0.15s var(--ease-out);
}
.mmenu__close:hover { background: var(--c-light-blue); }
.mmenu__close:active { transform: scale(0.94); }
.mmenu__close svg { width: 20px; height: 20px; }

/* Nav links */
.mmenu__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px 14px 14px;
  overflow-y: auto;
  gap: 4px;
}
.mmenu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  color: var(--c-navy);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  letter-spacing: -0.01em;
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), transform 0.15s var(--ease-out);
}
.mmenu__link span {
  color: var(--c-blue);
  font-size: 16px;
  opacity: 0.5;
  transition: transform 0.2s var(--ease-out), opacity 0.2s var(--ease-out);
}
.mmenu__link:hover,
.mmenu__link:active {
  background: var(--c-light-blue);
  border-color: rgba(0, 119, 182, 0.32);
}
.mmenu__link:active { transform: scale(0.99); }
.mmenu__link:hover span { transform: translateX(3px); opacity: 1; }
.mmenu__link--primary {
  background: var(--c-navy);
  border-color: var(--c-navy);
  color: #fff;
}
.mmenu__link--primary span { color: rgba(255, 255, 255, 0.65); }
.mmenu__link--primary:hover,
.mmenu__link--primary:active {
  background: var(--c-navy-700);
  border-color: var(--c-navy-700);
  color: #fff;
}
.mmenu__link--primary:hover span { color: #fff; }

/* Quick contact strip at bottom */
.mmenu__quick {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--c-border);
  background: var(--c-grey-bg);
  padding-bottom: max(14px, env(safe-area-inset-bottom));
}
.mmenu__qbtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 12px 6px;
  border-radius: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.15s var(--ease-out), filter 0.15s var(--ease-out);
}
.mmenu__qbtn:active { transform: scale(0.96); filter: brightness(1.05); }
.mmenu__qbtn svg { width: 22px; height: 22px; }
.mmenu__qbtn--call { background: var(--c-navy); }
.mmenu__qbtn--wa   { background: var(--c-whatsapp); }
.mmenu__qbtn--fb   { background: var(--c-messenger); }

/* Don't show menu controls on desktop */
@media (min-width: 721px) {
  .mmenu { display: none; }
}

/* =========================================================
   HERO BLOCK
   ========================================================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--c-navy);
  color: #fff;
  isolation: isolate;
  margin-top: -80px; /* pull under floating header */
}

.hero__media,
.hero__overlay,
.hero__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__media { z-index: 0; }
.hero__overlay { z-index: 1; }
.hero__noise   { z-index: 2; }

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__video--desktop { display: block; }
.hero__video--mobile  { display: none; }

@media (max-width: 720px) {
  .hero__video--desktop { display: none; }
  .hero__video--mobile  { display: block; }
}

.hero__overlay {
  background:
    /* bottom-up darkening for legibility */
    linear-gradient(180deg,
      rgba(11, 31, 51, 0.55) 0%,
      rgba(11, 31, 51, 0.30) 25%,
      rgba(11, 31, 51, 0.55) 55%,
      rgba(11, 31, 51, 0.92) 80%,
      rgba(11, 31, 51, 0.98) 100%),
    /* extra vignette on the right column (side text) */
    linear-gradient(270deg,
      rgba(11, 31, 51, 0.45) 0%,
      rgba(11, 31, 51, 0.10) 35%,
      transparent 65%);
}

.hero__noise {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: overlay;
}

.hero__content {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 110px 32px 48px;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px 32px;
  align-items: end;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
}

.hero__title-wrap { grid-column: 1 / span 12; }
.hero__side      { grid-column: 1 / span 12; }

@media (min-width: 1024px) {
  .hero__title-wrap { grid-column: 1 / span 8; }
  .hero__side      { grid-column: 9 / span 4; padding-bottom: 22px; }
}

/* Eyebrow */
.hero__eyebrow {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0 8px;
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 18px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

/* Big title */
.hero__title {
  font-size: clamp(44px, 7.6vw, 132px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0;
  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.45),
    0 1px 4px rgba(0, 0, 0, 0.25);
}
.hero__title-line { display: block; }
.hero__title-line--alt { color: var(--c-light-blue); }
.hero__title-line .pull-word { margin-right: 0.22em; }
.hero__title-line .pull-word:last-child { margin-right: 0; }

/* Side column */
.hero__side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero__desc {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.94);
  max-width: 38ch;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}
.hero__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.22);
  color: var(--c-whatsapp);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

/* Hero CTAs */
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}
.cta:active { transform: translateY(1px); }
.cta:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.cta svg { width: 16px; height: 16px; }

.cta--primary {
  background: #fff;
  color: var(--c-navy);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.18);
}
.cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 255, 255, 0.28);
}

.cta--wa {
  background: var(--c-whatsapp);
  color: #fff;
}
.cta--wa:hover {
  background: var(--c-whatsapp-700);
  transform: translateY(-2px);
}

.cta--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.cta--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Word-by-word reveal */
.pull-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity   .65s cubic-bezier(.16, 1, .3, 1),
    transform .65s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}
.pull-word.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Block reveal — fade + lift as element enters viewport */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity   .75s var(--ease-out-soft),
    transform .75s var(--ease-out-soft);
  will-change: opacity, transform;
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside grids that fully enter view together  */
.services__grid > .svc-card[data-reveal]:nth-child(2) { transition-delay: 70ms; }
.services__grid > .svc-card[data-reveal]:nth-child(3) { transition-delay: 140ms; }
.services__grid > .svc-card[data-reveal]:nth-child(4) { transition-delay: 0ms; }
.services__grid > .svc-card[data-reveal]:nth-child(5) { transition-delay: 70ms; }
.services__grid > .svc-card[data-reveal]:nth-child(6) { transition-delay: 140ms; }

/* Don't double-animate the eyebrow/title — their words handle it */
.hero__eyebrow[data-reveal],
.hero__title[data-reveal] {
  opacity: 1;
  transform: none;
}

/* Respect reduced motion — skip reveal animations entirely */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Mobile hero */
@media (max-width: 720px) {
  .hero { margin-top: -68px; }
  .hero__content { padding: 96px 16px 28px; }
  .hero__grid { gap: 18px; }
  .hero__eyebrow { font-size: 11px; margin-bottom: 12px; letter-spacing: .06em; }
  .hero__title { font-size: clamp(48px, 16vw, 96px); line-height: .9; }
  .hero__title-line .pull-word { margin-right: 0.14em; }
  .hero__desc { font-size: 14px; max-width: 100%; }
  .hero__bullets { gap: 8px; font-size: 13px; }
  .hero__check { width: 20px; height: 20px; font-size: 11px; }
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .cta { width: 100%; height: 50px; font-size: 15px; }
}

@media (max-width: 380px) {
  .hero__title { font-size: clamp(42px, 14vw, 64px); }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .pull-word,
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__video { display: none; }
  .hero { background: var(--c-navy); }
}

/* =========================================================
   EMERGENCY STRIP  —  attention-grabbing band right under hero
   ========================================================= */
.emergency {
  position: relative;
  background: var(--c-orange);
  color: #fff;
  padding: 56px 32px;
  overflow: hidden;
  isolation: isolate;
}

.emergency__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle at 12% 0%, rgba(255, 230, 200, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 95% 100%, rgba(0, 0, 0, 0.14) 0%, transparent 50%);
  pointer-events: none;
}

.emergency__inner {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px 56px;
  align-items: center;
}

.emergency__main { max-width: 740px; }

.emergency__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.emergency__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.65);
  animation: e-pulse 1.6s ease-out infinite;
  flex-shrink: 0;
}

@keyframes e-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(255, 255, 255, 0.65); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);   }
  100% { box-shadow: 0 0 0 0   rgba(255, 255, 255, 0);   }
}

.emergency__title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  color: #fff;
}

.emergency__desc {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
  max-width: 62ch;
}

.emergency__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  min-width: 290px;
}

.ebtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.ebtn:active { transform: translateY(1px); }
.ebtn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.ebtn svg { width: 18px; height: 18px; }

.ebtn--call {
  background: #fff;
  color: var(--c-navy);
  box-shadow: 0 10px 28px rgba(11, 31, 51, 0.18);
}
.ebtn--call:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(11, 31, 51, 0.28);
}

.ebtn--wa {
  background: var(--c-whatsapp);
  color: #fff;
  box-shadow: 0 10px 28px rgba(11, 31, 51, 0.18);
}
.ebtn--wa:hover {
  background: var(--c-whatsapp-700);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(11, 31, 51, 0.28);
}

/* Tablet & mobile */
@media (max-width: 900px) {
  .emergency { padding: 44px 20px; }
  .emergency__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .emergency__title { font-size: clamp(24px, 5.5vw, 34px); }
  .emergency__desc  { font-size: 15px; }
  .emergency__actions { min-width: 0; }
}

@media (max-width: 600px) {
  .emergency { padding: 36px 16px; }
  .emergency__badge { font-size: 11px; padding: 6px 12px 6px 10px; }
  .emergency__actions { gap: 10px; }
  .ebtn { width: 100%; height: 52px; font-size: 14px; padding: 0 18px; }
}

/* =========================================================
   SERVICES BLOCK
   ========================================================= */
.services {
  background: var(--c-white);
  padding: 64px 24px;
}

.services__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.services__head {
  text-align: center;
  margin-bottom: 36px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.services__eyebrow {
  display: inline-block;
  background: var(--c-light-blue);
  color: var(--c-blue);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.services__title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-navy);
  margin: 0 0 14px;
}
.services__sub {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
  color: var(--c-text);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1024px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .services__grid { grid-template-columns: 1fr; } }

/* ---- Card ---- */
.svc-card {
  position: relative;
  display: block;
  min-height: 270px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(155deg, #122E4A 0%, #0B1F33 100%);
  isolation: isolate;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  box-shadow: 0 1px 2px rgba(11, 31, 51, 0.05);
}
.svc-card:hover,
.svc-card.is-hot {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11, 31, 51, 0.18);
}

/* Photo background */
.svc-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--c-navy);
}
.svc-card__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}
.svc-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease-out), filter 0.55s var(--ease-out);
}
/* Per-card framing */
.svc-card[data-svc="kitchen"]   .svc-card__bg img { object-position: center 30%; }
.svc-card[data-svc="leak"]      .svc-card__bg img { object-position: center 20%; }
.svc-card[data-svc="emergency"] .svc-card__bg img { object-position: center 25%; }

/* Photo default: grayscale-ish, full color on hover/active (applies on all devices) */
.svc-card__bg img { filter: saturate(0.25); }
.svc-card:hover .svc-card__bg img,
.svc-card.is-hot .svc-card__bg img {
  filter: saturate(1);
  transform: scale(1.08);
}

/* Permanent bottom gradient — keeps text readable over any photo */
.svc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    transparent 0%,
    transparent 40%,
    rgba(11, 31, 51, 0.50) 72%,
    rgba(11, 31, 51, 0.92) 100%);
  pointer-events: none;
}

/* Brand-color underglow on hover/active */
.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(0deg,
    rgba(0, 119, 182, 0.88) 0%,
    rgba(0, 119, 182, 0.40) 45%,
    rgba(0, 119, 182, 0.00) 80%);
  opacity: 0;
  transition: opacity 0.55s var(--ease-out);
  pointer-events: none;
}
.svc-card:hover::before,
.svc-card.is-hot::before { opacity: 1; }


/* Content */
.svc-card__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 22px 24px;
  color: rgba(234, 246, 252, 0.85);
  transition: color 0.4s var(--ease-out);
}
.svc-card:hover .svc-card__inner,
.svc-card.is-hot .svc-card__inner { color: #fff; }

.svc-card__arrow {
  align-self: flex-end;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 999px;
  transition: transform 0.5s var(--ease-out), border-color 0.5s var(--ease-out), background 0.5s var(--ease-out);
}
.svc-card__arrow svg { width: 16px; height: 16px; }
.svc-card:hover .svc-card__arrow,
.svc-card.is-hot .svc-card__arrow {
  transform: rotate(-45deg);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
}

.svc-card__text {
  margin-top: auto;
}

.svc-card__title {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 10px;
}

.svc-card__desc {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  max-width: 38ch;
}

/* Letter-by-letter animation */
.al {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  vertical-align: top;
  line-height: 1;
}
.al > span {
  display: block;
  transition: transform 0.55s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.svc-card:hover .al > span,
.svc-card.is-hot .al > span { transform: translateY(-100%); }
.al--space { width: 0.28em; }

/* ---- Bottom CTA card ---- */
.services__bottom {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 32px;
  background: var(--c-light-blue);
  border-radius: 16px;
  flex-wrap: wrap;
}
.services__bottom-text h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 800;
  color: var(--c-navy);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.services__bottom-text p {
  font-size: 15px;
  color: var(--c-text);
  margin: 0;
}
.services__bottom .ebtn { flex-shrink: 0; }

@media (max-width: 720px) {
  .services { padding: 48px 16px; }
  .services__head { margin-bottom: 32px; }
  .services__bottom {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 24px 20px;
  }
  .services__bottom .ebtn { width: 100%; }
}

/* =========================================================
   WHY US  —  dark navy trust block
   ========================================================= */
.why-us {
  position: relative;
  background: var(--c-navy);
  color: #fff;
  padding: 72px 24px;
  overflow: hidden;
  isolation: isolate;
}

.why-us__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle at 15% 10%, rgba(0, 119, 182, 0.20) 0%, transparent 45%),
    radial-gradient(circle at 90% 95%, rgba(0, 119, 182, 0.16) 0%, transparent 50%);
  pointer-events: none;
}

.why-us__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.why-us__head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.why-us__eyebrow {
  display: inline-block;
  background: rgba(0, 119, 182, 0.22);
  color: #93D6FF;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 119, 182, 0.35);
}
.why-us__title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 16px;
}
.why-us__sub {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.6;
  color: rgba(234, 246, 252, 0.78);
}

/* Grid */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1024px) { .why-us__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .why-us__grid { grid-template-columns: 1fr; } }

/* Trust card */
.trust-card {
  position: relative;
  padding: 26px 24px 28px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.trust-card:hover {
  background: rgba(0, 119, 182, 0.10);
  border-color: rgba(0, 119, 182, 0.40);
  transform: translateY(-3px);
}

.trust-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 119, 182, 0.16);
  color: #93D6FF;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 119, 182, 0.30);
  transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out);
}
.trust-card__icon svg { width: 22px; height: 22px; }
.trust-card:hover .trust-card__icon {
  background: rgba(0, 119, 182, 0.30);
  color: #BCE4FF;
}

.trust-card__title {
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 8px;
}
.trust-card__text {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(234, 246, 252, 0.74);
  margin: 0;
}

/* Standalone strong statement */
.why-us__quote {
  position: relative;
  margin: 64px auto 0;
  max-width: 920px;
  padding: 40px 44px 44px 60px;
  background: linear-gradient(135deg,
    rgba(0, 119, 182, 0.18) 0%,
    rgba(0, 119, 182, 0.06) 100%);
  border-radius: 18px;
  border: 1px solid rgba(0, 119, 182, 0.30);
  overflow: hidden;
}
.why-us__quote::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--c-blue), #93D6FF);
}
.why-us__quote-mark {
  position: absolute;
  top: 12px;
  left: 40px;
  font-size: 96px;
  font-weight: 800;
  line-height: 1;
  color: rgba(0, 119, 182, 0.45);
  pointer-events: none;
  font-family: Georgia, "Times New Roman", serif;
}
.why-us__quote-text {
  position: relative;
  font-size: clamp(18px, 1.9vw, 26px);
  line-height: 1.45;
  font-weight: 500;
  color: rgba(234, 246, 252, 0.92);
  margin: 0;
  letter-spacing: -0.01em;
}
.why-us__quote-line { display: block; }
.why-us__quote-line--strong {
  margin-top: 8px;
  color: #fff;
  font-weight: 700;
}
.why-us__quote-line--strong em {
  font-style: normal;
  color: #93D6FF;
  font-weight: 800;
}

@media (max-width: 720px) {
  .why-us { padding: 48px 16px; }
  .why-us__head { margin-bottom: 36px; }
  .why-us__grid { gap: 12px; }
  .trust-card { padding: 22px 20px 24px; }
  .why-us__quote {
    margin-top: 40px;
    padding: 32px 24px 32px 40px;
  }
  .why-us__quote-mark { font-size: 64px; top: 8px; left: 22px; }
  .why-us__quote-text { font-size: 18px; }
}

/* =========================================================
   GALLERY — horizontal scroll with lightbox
   ========================================================= */
.gallery {
  background: var(--c-white);
  padding: 64px 0 56px;
  overflow: hidden;
}

.gallery__inner {
  max-width: 1480px;
  margin: 0 auto;
}

.gallery__head {
  text-align: center;
  margin: 0 24px 44px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.gallery__eyebrow {
  display: inline-block;
  background: var(--c-light-blue);
  color: var(--c-blue);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.gallery__title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-navy);
  margin: 0 0 14px;
}
.gallery__sub {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
  color: var(--c-text);
}

/* Scroll wrapper */
.gallery__scroll-wrap {
  position: relative;
}

.gallery__track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 8px 32px 24px;
  -webkit-overflow-scrolling: touch;
}
.gallery__track::-webkit-scrollbar { display: none; }

.gallery__item {
  flex: 0 0 320px;
  width: 320px;
  height: 400px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--c-grey-bg);
  border: none;
  padding: 0;
  cursor: pointer;
  scroll-snap-align: center;
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  box-shadow: 0 2px 6px rgba(11, 31, 51, 0.06);
}
.gallery__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(11, 31, 51, 0.16);
}
.gallery__item picture {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.gallery__item:hover img {
  transform: scale(1.04);
}

/* Hover hint — magnifier icon */
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 31, 51, 0) 60%, rgba(11, 31, 51, 0.45) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  pointer-events: none;
}
.gallery__item:hover::after { opacity: 1; }

.gallery__item::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B1F33' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><line x1='21' y1='21' x2='16.65' y2='16.65'/><line x1='11' y1='8' x2='11' y2='14'/><line x1='8' y1='11' x2='14' y2='11'/></svg>")
    no-repeat center / 18px 18px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  pointer-events: none;
  z-index: 2;
}
.gallery__item:hover::before {
  opacity: 1;
  transform: translateY(0);
}

/* Side arrows */
.gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--c-border);
  color: var(--c-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(11, 31, 51, 0.12);
  z-index: 4;
  transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.gallery__arrow:hover {
  background: var(--c-navy);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 10px 22px rgba(11, 31, 51, 0.22);
}
.gallery__arrow:active { transform: translateY(-50%) scale(0.97); }
.gallery__arrow svg { width: 20px; height: 20px; }
.gallery__arrow--prev { left: 18px; }
.gallery__arrow--next { right: 18px; }

@media (max-width: 720px) {
  .gallery__arrow { display: none; }
  .gallery__track { padding: 8px 16px 20px; gap: 10px; }
  .gallery__item { flex-basis: 250px; width: 250px; height: 320px; }
}

/* Bottom CTA */
.gallery__cta {
  margin: 24px 24px 0;
  background: var(--c-light-blue);
  border-radius: 16px;
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.gallery__cta-text h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 800;
  color: var(--c-navy);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.gallery__cta-text p {
  font-size: 15px;
  color: var(--c-text);
  margin: 0;
}
.gallery__cta-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.ebtn--ghost-dark {
  background: transparent;
  color: var(--c-navy);
  border: 1.5px solid rgba(11, 31, 51, 0.25);
}
.ebtn--ghost-dark:hover {
  background: var(--c-navy);
  color: #fff;
  border-color: var(--c-navy);
}

@media (max-width: 720px) {
  .gallery { padding: 56px 0 60px; }
  .gallery__head { margin-bottom: 28px; padding: 0 16px; }
  .gallery__cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    margin: 20px 16px 0;
    padding: 24px 20px;
  }
  .gallery__cta-actions { flex-direction: column; }
  .gallery__cta-actions .ebtn { width: 100%; }
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 16, 28, 0.92);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  max-height: 100%;
}

.lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 140px);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  display: block;
  object-fit: contain;
  transform: scale(0.96) translateY(8px);
  transition: transform 0.4s var(--ease-out-soft);
}
.lightbox.is-open .lightbox__img { transform: scale(1) translateY(0); }

.lightbox__counter {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.22);
}
.lightbox__close:active,
.lightbox__nav:active { transform: scale(0.94); }

.lightbox__close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
}
.lightbox__close svg { width: 20px; height: 20px; }

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
}
.lightbox__nav:hover { transform: translateY(-50%) scale(1.05); }
.lightbox__nav:active { transform: translateY(-50%) scale(0.96); }
.lightbox__nav svg { width: 22px; height: 22px; }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

@media (max-width: 720px) {
  .lightbox { padding: 60px 12px; }
  .lightbox__close { top: 14px; right: 14px; width: 40px; height: 40px; }
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__nav--prev { left: 10px; }
  .lightbox__nav--next { right: 10px; }
}

/* Lightbox host is just a structural wrapper — no styles needed */
.lightbox-host { display: contents; }

/* =========================================================
   INSURANCE & WARRANTY
   ========================================================= */
.insurance {
  background: linear-gradient(180deg, var(--c-light-blue) 0%, #DEEFF8 100%);
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}
.insurance::before,
.insurance::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
}
.insurance::before {
  background: rgba(0, 119, 182, 0.18);
  top: -120px;
  left: -120px;
}
.insurance::after {
  background: rgba(0, 119, 182, 0.14);
  bottom: -160px;
  right: -120px;
}

.insurance__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.insurance__card {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  padding: 56px 56px 52px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 1px 2px rgba(11, 31, 51, 0.04),
    0 18px 48px rgba(11, 31, 51, 0.08);
  overflow: hidden;
  isolation: isolate;
}

.insurance__glow {
  position: absolute;
  left: 50%;
  top: -10%;
  width: 80%;
  height: 70%;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(0, 119, 182, 0.24), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.insurance__visual {
  position: relative;
  z-index: 1;
  margin: 0 auto 30px;
  max-width: 440px;
}
.insurance__visual svg {
  width: 100%;
  height: auto;
  display: block;
}

.insurance__title {
  position: relative;
  z-index: 1;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.022em;
  color: var(--c-navy);
  margin: 0 0 20px;
}

.insurance__desc {
  position: relative;
  z-index: 1;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--c-text);
  margin: 0 auto 12px;
  max-width: 580px;
}
.insurance__desc--strong {
  color: var(--c-navy);
  font-weight: 500;
  margin-top: 8px;
}
.insurance__desc--strong strong {
  color: var(--c-blue);
  font-weight: 800;
}

.insurance__bullets {
  position: relative;
  z-index: 1;
  list-style: none;
  text-align: left;
  max-width: 480px;
  margin: 28px auto 36px;
  display: grid;
  gap: 12px;
}
.insurance__bullets li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--c-dark);
}
.insurance__check {
  width: 28px;
  height: 28px;
  padding: 5px;
  background: var(--c-light-blue);
  color: var(--c-blue);
  border-radius: 999px;
  flex-shrink: 0;
  border: 1px solid rgba(0, 119, 182, 0.18);
}

.insurance__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 30px;
  background: var(--c-navy);
  color: #fff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(11, 31, 51, 0.22);
  transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.insurance__cta svg { width: 18px; height: 18px; }
.insurance__cta:hover {
  background: var(--c-navy-700);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(11, 31, 51, 0.30);
}
.insurance__cta:active { transform: translateY(0); }
.insurance__cta:focus-visible { outline: 2px solid var(--c-blue); outline-offset: 3px; }

@media (max-width: 720px) {
  .insurance { padding: 48px 16px; }
  .insurance__card {
    padding: 40px 24px 36px;
    border-radius: 22px;
  }
  .insurance__visual { margin-bottom: 22px; max-width: 360px; }
  .insurance__bullets {
    margin: 22px auto 28px;
    gap: 10px;
  }
  .insurance__bullets li { font-size: 14px; gap: 12px; }
  .insurance__check { width: 24px; height: 24px; padding: 4px; }
  .insurance__cta { width: 100%; height: 54px; }
}

/* =========================================================
   SERVICE AREAS
   ========================================================= */
.areas {
  background: var(--c-white);
  padding: 72px 24px;
}
.areas__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.areas__head {
  text-align: center;
  margin: 0 auto 36px;
  max-width: 720px;
}
.areas__eyebrow {
  display: inline-block;
  background: var(--c-light-blue);
  color: var(--c-blue);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.areas__title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-navy);
  margin: 0 0 14px;
}
.areas__sub {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
  color: var(--c-text);
  margin: 0;
}

/* Grid: list left, map right */
.areas__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 32px;
  align-items: stretch;
}

.areas__list-col {
  display: flex;
  flex-direction: column;
}

.areas__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-content: start;
}

.areas__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--c-grey-bg);
  border: 1px solid var(--c-border);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-dark);
  transition: background 0.25s var(--ease-out), border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.areas__item:hover {
  background: var(--c-light-blue);
  border-color: rgba(0, 119, 182, 0.32);
  transform: translateX(2px);
}

.areas__pin {
  width: 18px;
  height: 18px;
  color: var(--c-blue);
  flex-shrink: 0;
}

.areas__item--base {
  background: var(--c-navy);
  border-color: var(--c-navy);
  color: #fff;
}
.areas__item--base .areas__pin { color: #fff; }
.areas__item--base:hover {
  background: var(--c-navy-700);
  border-color: var(--c-navy-700);
}

.areas__badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.areas__item--more {
  grid-column: 1 / -1;
  background: var(--c-white);
  border-style: dashed;
  color: var(--c-text);
  font-weight: 500;
}
.areas__item--more .areas__pin { color: var(--c-text); }

/* Map */
.areas__map-col {
  display: flex;
}
.areas__map {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: 0 8px 32px rgba(11, 31, 51, 0.10);
  min-height: 100%;
}
.areas__map-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
}
.areas__map iframe,
.areas__map-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.areas__map-canvas { background: #DEE7EE; cursor: grab; }
.areas__map-canvas:active { cursor: grabbing; }
/* Leaflet controls polish */
.leaflet-control-attribution {
  font-size: 10px !important;
  background: rgba(255, 255, 255, 0.85) !important;
}
.leaflet-bar a {
  background: #fff;
  color: var(--c-navy);
}
.leaflet-bar a:hover { background: var(--c-light-blue); }
.areas__map-overlay {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 500; /* sit above Leaflet zoom controls */
  pointer-events: none;
}
.areas__map-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(11, 31, 51, 0.92);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(11, 31, 51, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.areas__map-tag svg { width: 14px; height: 14px; color: #6BBDF5; }

/* Bottom CTA */
.areas__cta {
  margin-top: 36px;
  background: var(--c-light-blue);
  border-radius: 16px;
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.areas__cta-text h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 800;
  color: var(--c-navy);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.areas__cta-text p {
  font-size: 15px;
  color: var(--c-text);
  margin: 0;
}
.areas__cta-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .areas__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .areas__map-frame { min-height: 380px; }
}

@media (max-width: 720px) {
  .areas { padding: 48px 16px; }
  .areas__head { margin-bottom: 32px; }
  .areas__list { grid-template-columns: 1fr; gap: 8px; }
  .areas__item { padding: 12px 14px; font-size: 14px; }
  .areas__map-frame { min-height: 320px; }
  .areas__map-tag { font-size: 12px; padding: 6px 12px; }
  .areas__cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 24px 20px;
  }
  .areas__cta-actions { flex-direction: column; }
  .areas__cta-actions .ebtn { width: 100%; }
}

/* =========================================================
   TESTIMONIALS — auto-scrolling columns
   ========================================================= */
.testimonials {
  background: var(--c-white);
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}
.testimonials__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.testimonials__head {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 640px;
}
.testimonials__eyebrow {
  display: inline-block;
  background: var(--c-light-blue);
  color: var(--c-blue);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.testimonials__title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-navy);
  margin: 0 0 14px;
}
.testimonials__sub {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
  color: var(--c-text);
  margin: 0;
}

/* Marquee grid */
.testimonials__grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-height: 720px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.testimonials__col {
  flex: 1 1 0;
  max-width: 360px;
  min-width: 0;
}
.testimonials__col--md { display: none; }
.testimonials__col--lg { display: none; }
@media (min-width: 768px)  { .testimonials__col--md { display: block; } }
@media (min-width: 1100px) { .testimonials__col--lg { display: block; } }

.testimonials__track {
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: t-marquee var(--dur, 26s) linear infinite;
  will-change: transform;
}
@keyframes t-marquee {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
/* Pause on hover ONLY for devices with real hover — never on touch (tap-pause is annoying) */
@media (hover: hover) {
  .testimonials__col:hover .testimonials__track {
    animation-play-state: paused;
  }
}

/* Card */
.t-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 26px 26px 22px;
  box-shadow: 0 1px 2px rgba(11, 31, 51, 0.04),
              0 8px 22px rgba(11, 31, 51, 0.06);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.t-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 2px rgba(11, 31, 51, 0.06),
              0 14px 32px rgba(11, 31, 51, 0.10);
}

.t-card__stars {
  color: #F5A524;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  line-height: 1;
}

.t-card__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-dark);
  margin: 0 0 18px;
}

.t-card__user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--c-border);
}
.t-card__user img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  background: var(--c-grey-bg);
  flex-shrink: 0;
}
.t-card__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--c-navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.t-card__role {
  font-size: 12px;
  color: var(--c-text);
  letter-spacing: 0.01em;
  margin-top: 2px;
}

@media (max-width: 720px) {
  .testimonials { padding: 48px 16px; }
  .testimonials__head { margin-bottom: 36px; }
  .testimonials__grid { max-height: 600px; gap: 16px; }
  .t-card { padding: 22px 22px 18px; border-radius: 18px; }
  .t-card__text { font-size: 14px; }
}

/* Honor reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .testimonials__track { animation: none; }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  background: var(--c-grey-bg);
  padding: 72px 24px;
}
.about__inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

/* Big statement with emphasised words */
.about__statement {
  font-size: clamp(28px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.022em;
  color: var(--c-navy);
  max-width: 920px;
  margin: 0 auto 32px;
}
.about__statement em {
  font-style: normal;
  color: var(--c-blue);
  font-weight: 800;
  position: relative;
  white-space: nowrap;
}

/* Description paragraph */
.about__desc {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.65;
  color: var(--c-text);
  max-width: 760px;
  margin: 0 auto;
}

/* Stats strip */
.about__stats {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  box-shadow: 0 1px 2px rgba(11, 31, 51, 0.04),
              0 10px 32px rgba(11, 31, 51, 0.05);
  text-align: center;
}
.about__stat {
  position: relative;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.about__stat + .about__stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  border-left: 1px dashed var(--c-border);
}

.about__stat-value {
  font-size: clamp(15px, 1.15vw, 17px);
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.about__stat-label {
  font-size: 12px;
  color: var(--c-text);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
  .about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 12px;
  }
  .about__stat + .about__stat::before { display: none; }
}
@media (max-width: 640px) {
  .about { padding: 48px 16px; }
  .about__desc { margin-bottom: 36px; }
  .about__stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 16px;
  }
  .about__stat { padding: 6px; gap: 4px; }
  .about__stat-value { font-size: 14px; }
  .about__stat-label { font-size: 11px; }
}

/* =========================================================
   PRICING
   ========================================================= */
.pricing {
  background: var(--c-white);
  padding: 72px 24px;
}
.pricing__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.pricing__head {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 720px;
}
.pricing__eyebrow {
  display: inline-block;
  background: var(--c-light-blue);
  color: var(--c-blue);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.pricing__title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-navy);
  margin: 0 0 14px;
}
.pricing__sub {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
  color: var(--c-text);
  margin: 0;
}

/* Centred single card now that the steps column was removed */
.pricing__grid {
  display: flex;
  justify-content: center;
}
.pricing__grid > .pricing__card { max-width: 720px; width: 100%; }

/* Main card — message + bullets + CTA */
.pricing__card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--c-blue);
  border-radius: 22px;
  padding: 42px 38px 38px;
  box-shadow: 0 1px 2px rgba(11, 31, 51, 0.04),
              0 18px 48px rgba(0, 119, 182, 0.10);
}
.pricing__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--c-blue);
  color: #fff;
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.pricing__badge svg { width: 14px; height: 14px; }

.pricing__lead {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--c-dark);
  margin: 0 0 16px;
}
.pricing__lead em {
  font-style: normal;
  color: var(--c-blue);
  font-weight: 700;
}
.pricing__lead--strong strong {
  color: var(--c-navy);
  font-weight: 800;
}

.pricing__bullets {
  list-style: none;
  margin: 28px 0 32px;
  padding: 24px 0 0;
  border-top: 1px dashed var(--c-border);
  display: grid;
  gap: 14px;
}
.pricing__bullets li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--c-dark);
}
.pricing__check {
  width: 26px;
  height: 26px;
  padding: 5px;
  background: var(--c-light-blue);
  color: var(--c-blue);
  border-radius: 999px;
  border: 1px solid rgba(0, 119, 182, 0.18);
  flex-shrink: 0;
}

.pricing__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 56px;
  padding: 0 24px;
  background: var(--c-whatsapp);
  color: #fff;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.30);
  transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.pricing__cta svg { width: 18px; height: 18px; }
.pricing__cta:hover {
  background: var(--c-whatsapp-700);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.40);
}
.pricing__cta:active { transform: translateY(0); }
.pricing__cta:focus-visible { outline: 2px solid var(--c-blue); outline-offset: 3px; }

/* Steps card */
.pricing__steps {
  background: var(--c-grey-bg);
  border-radius: 22px;
  padding: 38px 36px;
  border: 1px solid var(--c-border);
}
.pricing__steps-title {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}

.pricing__step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.pricing__step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--c-border);
}
.pricing__step:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.pricing__step-num {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--c-white);
  color: var(--c-navy);
  font-size: 18px;
  font-weight: 800;
  border: 2px solid var(--c-blue);
  box-shadow: 0 4px 14px rgba(0, 119, 182, 0.18);
}
.pricing__step-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-navy);
  margin: 4px 0 4px;
  letter-spacing: -0.01em;
}
.pricing__step-body p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-text);
  margin: 0;
}

@media (max-width: 900px) {
  .pricing__grid { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 640px) {
  .pricing { padding: 48px 16px; }
  .pricing__head { margin-bottom: 32px; }
  .pricing__card { padding: 32px 24px 28px; }
  .pricing__lead { font-size: 16px; }
  .pricing__steps { padding: 28px 22px; }
  .pricing__step { gap: 14px; grid-template-columns: 40px 1fr; }
  .pricing__step-num { width: 38px; height: 38px; font-size: 16px; }
}

/* =========================================================
   FINAL CTA · CONTACT
   ========================================================= */
.contact {
  position: relative;
  background: var(--c-navy);
  color: #fff;
  padding: 72px 24px;
  overflow: hidden;
  isolation: isolate;
}
.contact__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle at 10% 0%, rgba(0, 119, 182, 0.30) 0%, transparent 45%),
    radial-gradient(circle at 90% 100%, rgba(0, 119, 182, 0.22) 0%, transparent 50%);
  pointer-events: none;
}
.contact__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.contact__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: start;
}

/* LEFT */
.contact__left { padding-top: 12px; }
.contact__eyebrow {
  display: inline-block;
  background: rgba(0, 119, 182, 0.20);
  color: #93D6FF;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 119, 182, 0.40);
}
.contact__title {
  font-size: clamp(30px, 3.6vw, 50px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 18px;
}
.contact__title span { color: var(--c-light-blue); }

.contact__desc {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: rgba(234, 246, 252, 0.85);
  margin: 0 0 32px;
  max-width: 460px;
}

/* Quick contact buttons (big rows) */
.contact__quick {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.qbtn {
  display: grid;
  grid-template-columns: 56px 1fr 24px;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: background 0.25s var(--ease-out), border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.qbtn:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateX(3px);
}
.qbtn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
}
.qbtn__icon svg { width: 22px; height: 22px; }
.qbtn--call .qbtn__icon  { background: var(--c-navy-700); color: #fff; }
.qbtn--wa .qbtn__icon    { background: var(--c-whatsapp); color: #fff; }
.qbtn--msg .qbtn__icon   { background: var(--c-messenger); color: #fff; }
.qbtn__body { display: flex; flex-direction: column; min-width: 0; }
.qbtn__label {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.qbtn__sub {
  font-size: 13px;
  color: rgba(234, 246, 252, 0.65);
  margin-top: 2px;
}
.qbtn__arrow {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.40);
  transition: transform 0.25s var(--ease-out), color 0.25s var(--ease-out);
}
.qbtn:hover .qbtn__arrow {
  color: rgba(255, 255, 255, 0.85);
  transform: translateX(4px);
}

/* Trust mini-row */
.contact__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  padding: 0;
  margin: 0;
}
.contact__trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(234, 246, 252, 0.78);
}
.contact__trust svg {
  width: 14px;
  height: 14px;
  color: #6BBDF5;
  flex-shrink: 0;
}

/* RIGHT — form */
.contact__right { position: relative; }
.contact-form {
  background: #fff;
  color: var(--c-dark);
  border-radius: 24px;
  padding: 36px 36px 32px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.30),
              0 1px 2px rgba(0, 0, 0, 0.10);
}
.contact-form__head {
  margin-bottom: 22px;
}
.contact-form__head h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.contact-form__head p {
  font-size: 14px;
  color: var(--c-text);
  margin: 0;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
/* Reset native fieldset chrome so the legend doesn't cut the border */
fieldset.field {
  border: 0;
  padding: 0;
  margin-inline: 0;
  min-width: 0;
}
fieldset.field legend {
  padding: 0;
  margin-bottom: 6px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.field-row .field { margin-bottom: 0; }

.field label,
.field legend {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-navy);
  letter-spacing: 0.01em;
}
.field label .req { color: #e34935; margin-left: 2px; }
.field label .muted { color: var(--c-text); font-weight: 500; font-size: 12px; }

.field input,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--c-border-2);
  border-radius: 10px;
  background: #fff;
  color: var(--c-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(74, 85, 104, 0.55); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.14);
}
.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
  border-color: #e34935;
}

/* Radio tiles for "when" */
.field--radios { padding-top: 4px; }
.field--radios legend {
  margin-bottom: 8px;
  padding: 0;
}
.radio-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.radio-tile {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1.5px solid var(--c-border-2);
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-navy);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.radio-tile input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.radio-tile__dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(11, 31, 51, 0.30);
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.radio-tile:hover {
  border-color: var(--c-blue);
  background: var(--c-light-blue);
}
.radio-tile:has(input:checked) {
  border-color: var(--c-blue);
  background: var(--c-light-blue);
  color: var(--c-navy);
}
.radio-tile:has(input:checked) .radio-tile__dot {
  border-color: var(--c-blue);
  background: var(--c-blue);
  box-shadow: inset 0 0 0 3px #fff;
}

/* Hint under fields */
.contact-form__hint {
  font-size: 13px;
  color: var(--c-text);
  margin: 18px 0 18px;
  padding: 12px 14px;
  background: var(--c-grey-bg);
  border-left: 3px solid var(--c-blue);
  border-radius: 0 8px 8px 0;
}
.contact-form__hint a {
  color: var(--c-blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}
.contact-form__hint a:hover { color: var(--c-blue-700); }

/* Submit */
.contact-form__submit {
  width: 100%;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--c-navy);
  color: #fff;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(11, 31, 51, 0.35);
  transition: transform 0.2s var(--ease-out), background 0.2s, box-shadow 0.2s;
}
.contact-form__submit svg { width: 18px; height: 18px; transition: transform 0.2s var(--ease-out); }
.contact-form__submit:hover {
  background: var(--c-navy-700);
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(11, 31, 51, 0.45);
}
.contact-form__submit:hover svg { transform: translateX(3px); }
.contact-form__submit:active { transform: translateY(0); }
.contact-form__submit:focus-visible { outline: 2px solid var(--c-blue); outline-offset: 3px; }
.contact-form__submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Success state */
.contact-success {
  background: #fff;
  border-radius: 24px;
  padding: 48px 36px 40px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.30);
  animation: contact-success-in 0.4s var(--ease-out);
}
@keyframes contact-success-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.contact-success__icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--c-whatsapp);
  color: #fff;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.contact-success__icon svg { width: 28px; height: 28px; }
.contact-success h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-navy);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.contact-success p {
  font-size: 15px;
  color: var(--c-text);
  margin: 0 0 24px;
}
.contact-success__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

@media (max-width: 900px) {
  .contact { padding: 56px 16px; }
  .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form { padding: 28px 22px 24px; }
  .field-row { grid-template-columns: 1fr; }
  .radio-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .contact-success { padding: 36px 22px 32px; }
  .contact-success__actions { flex-direction: column; }
  .contact-success__actions .ebtn { width: 100%; }
}

/* =========================================================
   FOOTER (taped-design vibe)
   ========================================================= */
.footer {
  background: var(--c-grey-bg);
  padding: 36px 24px 24px;
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer__card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 56px 48px 44px;
  border: 1px solid var(--c-border);
  box-shadow: 0 1px 2px rgba(11, 31, 51, 0.04),
              0 24px 48px rgba(11, 31, 51, 0.06);
}

/* Tape pieces in upper corners */
.footer__tape {
  position: absolute;
  top: -16px;
  width: 110px;
  height: 34px;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(11, 31, 51, 0.18));
}
.footer__tape svg { width: 100%; height: 100%; display: block; }
.footer__tape--left {
  left: -12px;
  transform: rotate(-6deg);
}
.footer__tape--right {
  right: -12px;
  transform: rotate(6deg) scaleX(-1);
}

/* Grid */
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
}

/* Brand column */
.footer__col--brand { max-width: 360px; }
.footer__brand {
  display: inline-block;
  margin-bottom: 16px;
}
.footer__logo {
  height: 38px;
  width: auto;
  display: block;
}
.footer__tag {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-text);
  margin: 0 0 18px;
}
.footer__trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.footer__trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-navy);
  background: var(--c-light-blue);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.01em;
}
.footer__trust li::before {
  content: "✓";
  color: var(--c-blue);
  font-weight: 800;
}

/* Other columns */
.footer__h {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-navy);
  margin: 0 0 16px;
}
.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--c-text);
  font-weight: 500;
  transition: color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.footer__links a:hover {
  color: var(--c-blue);
  transform: translateX(2px);
}
.footer__links--contact a svg {
  width: 14px;
  height: 14px;
  color: var(--c-blue);
  flex-shrink: 0;
}
.footer__muted { opacity: 0.7; font-style: italic; }

/* Bottom row */
.footer__bottom {
  max-width: 1280px;
  margin: 22px auto 0;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 13px;
  color: var(--c-text);
  margin: 0;
}
.footer__legal {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}
.footer__legal a {
  font-size: 13px;
  color: var(--c-text);
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--c-blue); }

/* Responsive */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .footer__col--brand { grid-column: 1 / -1; max-width: 100%; }
}
@media (max-width: 640px) {
  .footer { padding: 28px 16px 16px; }
  .footer__card { padding: 44px 24px 32px; border-radius: 22px; }
  .footer__tape { width: 90px; height: 28px; top: -12px; }
  .footer__tape--left  { left: -8px; }
  .footer__tape--right { right: -8px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer__legal { flex-wrap: wrap; gap: 14px; }
}

/* =========================================================
   STICKY MOBILE BOTTOM BAR
   ========================================================= */
.sticky-bar {
  display: none;
}
@media (max-width: 720px) {
  body { padding-bottom: 64px; }

  .sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    padding: 8px 12px max(8px, env(safe-area-inset-bottom));
    background: transparent;
    border: none;
    box-shadow: none;
    pointer-events: none;
    /* Subtle bottom fade so buttons read against any background underneath */
    -webkit-mask-image: linear-gradient(to top, #000 60%, rgba(0,0,0,0.95) 100%);
            mask-image: linear-gradient(to top, #000 60%, rgba(0,0,0,0.95) 100%);
  }
  .sticky-bar__btn {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 44px;
    padding: 0 12px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-align: center;
    box-shadow:
      0 1px 1px rgba(11, 31, 51, 0.06),
      0 8px 22px rgba(11, 31, 51, 0.18);
    transition:
      transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }
  .sticky-bar__btn:hover {
    transform: translateY(-2px);
    box-shadow:
      0 1px 1px rgba(11, 31, 51, 0.06),
      0 14px 28px rgba(11, 31, 51, 0.24);
  }
  .sticky-bar__btn:active {
    transform: translateY(0) scale(0.985);
    transition-duration: 0.14s;
  }
  .sticky-bar__btn svg { width: 16px; height: 16px; }
  .sticky-bar__btn--call { background: var(--c-navy); }
  .sticky-bar__btn--wa   { background: var(--c-whatsapp); }
  .sticky-bar__btn--msg  { background: var(--c-messenger); }
}

@media (max-width: 380px) {
  .sticky-bar { padding-left: 10px; padding-right: 10px; gap: 6px; }
  .sticky-bar__btn { height: 42px; font-size: 11px; padding: 0 8px; }
  .sticky-bar__btn svg { width: 15px; height: 15px; }
}

/* ============== COOKIE CONSENT BANNER (UK PECR) ============== */
.cc {
  position: fixed;
  left: 16px;
  right: auto;
  bottom: 16px;
  width: calc(100% - 32px);
  max-width: 430px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #374151;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 8px 26px rgba(11, 31, 51, .16);
  padding: 9px 12px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12.5px;
  line-height: 1.4;
  cursor: pointer;
  transform: translateY(200%);
  opacity: 0;
  pointer-events: none;
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1),
              opacity .3s ease;
}
.cc.cc-show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cc__text {
  flex: 1 1 auto;
  margin: 0;
  color: #4A5568;
}
.cc__link {
  color: var(--c-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.cc__link:hover { text-decoration: none; }
.cc__actions {
  display: flex;
  gap: 6px;
  flex: 0 0 auto;
}
.cc__btn {
  border: 0;
  cursor: pointer;
  padding: 7px 13px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  -webkit-tap-highlight-color: transparent;
  transition: background .2s ease, color .2s ease;
}
.cc__btn--reject {
  background: transparent;
  color: #6B7280;
  border: 1px solid #E5E7EB;
}
.cc__btn--reject:hover {
  background: #F3F4F6;
  color: #1F2937;
}
.cc__btn--accept {
  background: var(--c-blue);
  color: #fff;
}
.cc__btn--accept:hover {
  background: #0066A0;
}

/* Slim bar above the mobile sticky bottom bar */
@media (max-width: 720px) {
  .cc {
    left: 10px;
    right: 10px;
    width: auto;
    max-width: none;
    bottom: 78px;
    padding: 9px 10px;
    gap: 8px;
    font-size: 12px;
  }
  .cc__btn { padding: 7px 11px; font-size: 12px; }
  .cc__text { font-size: 11.5px; }
}
@media (max-width: 380px) {
  .cc { bottom: 72px; }
}

/* ============== FAQ ============== */
.faq {
  background: #F8FBFD;
  padding: 72px 24px;
}
.faq__inner {
  max-width: 860px;
  margin: 0 auto;
}
.faq__head {
  text-align: center;
  margin-bottom: 36px;
}
.faq__eyebrow {
  display: inline-block;
  background: var(--c-light-blue);
  color: var(--c-blue);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.faq__title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-navy);
  margin: 0 0 12px;
}
.faq__sub {
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}
.faq__sub a {
  color: var(--c-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq__sub a:hover { text-decoration: none; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: #fff;
  border: 1px solid #E5EDF3;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color var(--t) var(--ease-out),
              box-shadow var(--t) var(--ease-out);
}
.faq__item:hover {
  border-color: rgba(0, 119, 182, .35);
}
.faq__item[open] {
  border-color: rgba(0, 119, 182, .45);
  box-shadow: 0 10px 30px rgba(11, 31, 51, .07);
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--c-navy);
  letter-spacing: -0.01em;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-light-blue);
  transition: background var(--t) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--c-blue);
  transform: translate(-50%, -50%);
  transition: transform var(--t-slow) var(--ease-out),
              background var(--t) var(--ease-out);
}
.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__item[open] .faq__icon {
  background: var(--c-blue);
  transform: rotate(180deg);
}
.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after {
  background: #fff;
}
.faq__item[open] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq__a {
  padding: 0 20px 18px;
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.65;
}
.faq__a p { margin: 0; }
.faq__a a {
  color: var(--c-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq__a a:hover { text-decoration: none; }

@media (max-width: 720px) {
  .faq { padding: 48px 16px; }
  .faq__head { margin-bottom: 24px; }
  .faq__q { padding: 15px 16px; font-size: 15px; }
  .faq__a { padding: 0 16px 15px; font-size: 14px; }
}

/* ============== CRO FIXES 2026-06-16 ============== */

/* Fix 2 — service cards are now <a> links: kill link underline/colour leak */
a.svc-card { text-decoration: none; color: inherit; -webkit-tap-highlight-color: transparent; }
a.svc-card:focus-visible { outline: 3px solid var(--c-blue); outline-offset: 3px; }

/* Fix 3 — area tiles: stretched link covers the whole tile */
.areas__item { position: relative; }
.areas__link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  -webkit-tap-highlight-color: transparent;
}
.areas__link:focus-visible { outline: 3px solid var(--c-blue); outline-offset: 2px; }

/* Fix 5 — testimonial avatars: initials circle instead of stock photos */
.t-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-light-blue);
  color: var(--c-blue);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Fix 4 — hero failsafe: never let the first screen stay invisible.
   If JS is fully disabled, reveal everything instantly.
   If only the deferred script.js is slow/blocked, a timed animation
   forces the hero (incl. CTAs) visible by 2.2s. */
html:not(.js) [data-reveal],
html:not(.js) .pull-word {
  opacity: 1 !important;
  transform: none !important;
}
@keyframes ivoHeroFailsafe { to { opacity: 1; transform: none; } }
#hero [data-reveal]:not(.is-revealed),
#hero .pull-word:not(.is-in) {
  animation: ivoHeroFailsafe 0.01s linear 2.2s forwards;
}
