/* ============================================================
   E&A Mechanical — Design System
   Palette extracted from logo: navy #243755, flame #F58D2C,
   snowflake teal #4E8790. Fonts: Big Shoulders + Karla.
   Brand devices: flame/snowflake split seam, van-wrap airflow
   dashes, warm/cool color coding, sticker offset shadows.
   ============================================================ */

:root {
  /* Brand */
  --navy: #243755;
  --navy-deep: #1B2A42;
  --navy-darker: #142033;
  --flame: #F58D2C;
  --flame-hover: #DD7A1D;
  --flame-soft: rgba(245, 141, 44, 0.14);
  --teal: #4E8790;
  --teal-dark: #3E6F77;
  --teal-soft: rgba(78, 135, 144, 0.14);
  --teal-light: #7FB6BF;

  /* Surfaces */
  --color-bg: #FFFFFF;
  --color-surface: #F5F7FA;
  --color-surface-dark: var(--navy);
  --color-surface-darker: var(--navy-darker);

  /* Text */
  --color-text: #232B3A;
  --color-text-light: #5C6675;
  --color-text-on-dark: #FFFFFF;
  --color-text-on-dark-muted: #A7B2C4;

  --color-border: #E3E7ED;
  --color-google-star: #FBBC04;

  --font-display: 'Big Shoulders', sans-serif;
  --font-body: 'Karla', sans-serif;

  --container-width: 1200px;
  --section-pad: 100px;
  --radius: 8px;
  --radius-lg: 14px;

  --shadow-sm: 0 2px 8px rgba(20, 32, 51, 0.08);
  --shadow-md: 0 8px 24px rgba(20, 32, 51, 0.12);
  --shadow-card-hover: 0 12px 32px rgba(20, 32, 51, 0.16);
  --sticker: 5px 5px 0 rgba(27, 42, 66, 0.9);
  --sticker-dark: 5px 5px 0 rgba(0, 0, 0, 0.35);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --speed-fast: 0.25s;
  --speed: 0.45s;
  --speed-slow: 0.8s;

  --badge-star-color: #FBBC04;
  --badge-text-color: #FFFFFF;

  /* Van-wrap airflow dashes (light blue, like the wrap art) */
  --airflow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='96' viewBox='0 0 260 96'%3E%3Cg stroke='%237FB6BF' stroke-width='5' stroke-linecap='round' fill='none'%3E%3Cpath d='M10 12h44M74 12h26M120 12h58'/%3E%3Cpath d='M40 36h30M90 36h52M162 36h24'/%3E%3Cpath d='M0 60h24M44 60h60M124 60h34M178 60h44'/%3E%3Cpath d='M24 84h48M92 84h22M134 84h52'/%3E%3C/g%3E%3C/svg%3E");
}

/* ============ Reset & base ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.12;
  color: var(--navy);
  font-weight: 800;
}
h1 { font-size: clamp(34px, 4.4vw, 58px); }
h2 { font-size: clamp(28px, 3.3vw, 44px); }
h3 { font-size: clamp(21px, 2vw, 26px); letter-spacing: 0.01em; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

.section { padding: var(--section-pad) 0; background: var(--color-bg); }
.section--surface { background: var(--color-surface); }
.section__footer { text-align: center; margin-top: 48px; }

/* Eyebrow: split-color label chip */
.section-subtitle {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}
.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--flame) 50%, var(--teal) 50%);
}

/* Section title with SPLIT underline (flame left / teal right) */
.section-title { margin-bottom: 20px; }
.section-title--underline { padding-bottom: 18px; position: relative; margin-bottom: 26px; }
.section-title--underline::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 86px; height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--flame) 50%, var(--teal) 50%);
}
.section-title--underline.left::after { left: 0; transform: none; }

/* ============ Buttons — sticker style ============ */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 15px 30px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: transform var(--speed-fast) var(--ease), box-shadow var(--speed-fast) var(--ease), background var(--speed-fast) var(--ease);
}
.btn--primary {
  background: var(--flame);
  color: #fff;
  box-shadow: var(--sticker);
}
.btn--primary:hover {
  background: var(--flame-hover);
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 rgba(27, 42, 66, 0.9);
}
.btn--teal {
  background: var(--teal);
  color: #fff;
  box-shadow: var(--sticker);
}
.btn--teal:hover {
  background: var(--teal-dark);
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 rgba(27, 42, 66, 0.9);
}
.btn--outline-light {
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  border: 2px solid var(--teal-light);
}
.btn--outline-light:hover { background: var(--teal); border-color: var(--teal); }
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--sm { padding: 11px 20px; font-size: 15px; }
.btn-pair { display: flex; gap: 16px; flex-wrap: wrap; }

/* On dark bands, sticker shadow goes black-ish */
.band .btn--primary, .cta-section .btn--primary, .hero .btn--primary { box-shadow: var(--sticker-dark); }
.band .btn--primary:hover, .cta-section .btn--primary:hover, .hero .btn--primary:hover { box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.35); }

/* ============ Mobile sticky CTA bar ============ */
.mobile-cta-bar { display: none; }
@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1100;
  }
  .mobile-cta-bar a {
    flex: 1;
    padding: 14px 0;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: #fff;
  }
  .mobile-cta-bar__primary { background: var(--flame); }
  .mobile-cta-bar__call { background: var(--navy-darker); }
  body { padding-top: 48px; }
}

/* ============ Utility bar ============ */
.utility-bar {
  background: var(--navy-darker);
  color: var(--color-text-on-dark-muted);
  font-size: 13.5px;
  padding: 8px 0;
  position: relative;
  z-index: 1001;
}
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.utility-bar__item { display: inline-flex; align-items: center; gap: 7px; }
.utility-bar__item svg { width: 15px; height: 15px; }
.utility-bar__item--hot { color: var(--flame); }
.utility-bar__item--hot a { color: var(--flame); text-decoration: none; font-weight: 700; }
.utility-bar__actions { display: flex; align-items: center; gap: 20px; }
.utility-bar__phone {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.utility-bar__phone:hover { color: var(--flame); }
@media (max-width: 768px) { .utility-bar { display: none; } }

/* ============ Nav ============ */
.nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: box-shadow var(--speed-fast) var(--ease);
}
.nav.scrolled { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35); }
.nav .container { display: flex; align-items: center; gap: 28px; height: 76px; }
.nav__logo { flex-shrink: 0; display: flex; align-items: center; }
.nav__logo img { width: 58px; height: 58px; border-radius: 8px; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav__link, .nav__dropdown-toggle {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  color: #fff;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 13px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: background var(--speed-fast) var(--ease), color var(--speed-fast) var(--ease);
}
.nav__link:hover, .nav__dropdown-toggle:hover { background: rgba(255, 255, 255, 0.08); color: var(--flame); }
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--flame) 50%, var(--teal) 50%) 1;
  border-radius: 0 0 10px 10px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  z-index: 1002;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-item {
  display: block;
  color: #E7ECF3;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 6px;
  transition: background var(--speed-fast) var(--ease), color var(--speed-fast) var(--ease), padding var(--speed-fast) var(--ease);
}
.nav__dropdown-item:hover { background: rgba(255, 255, 255, 0.07); color: var(--flame); padding-left: 20px; }
.nav__actions { margin-left: auto; display: flex; gap: 12px; align-items: center; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
  z-index: 1102;
}
.nav__hamburger span {
  width: 26px; height: 3px;
  border-radius: 2px;
  background: #fff;
  transition: transform var(--speed) var(--ease), opacity var(--speed) var(--ease);
}
.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 26, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--speed) var(--ease);
  z-index: 999;
}
.nav-overlay.active { opacity: 1; visibility: visible; }

@media (max-width: 1024px) {
  .nav__hamburger { display: flex; }
  .nav__actions { display: none; }
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    width: 86%;
    max-width: 400px;
    height: 100vh;
    height: 100dvh;
    background: var(--navy-darker);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 90px 26px 40px;
    transition: right var(--speed) var(--ease-out);
    z-index: 1101;
    overflow-y: auto;
    margin: 0;
  }
  .nav__links.open { right: 0; }
  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid;
    border-image: linear-gradient(180deg, var(--flame) 50%, var(--teal) 50%) 1;
    border-radius: 0;
    margin: 4px 0 8px 12px;
    padding: 0 0 0 6px;
    min-width: 0;
  }
  .nav__dropdown.open .nav__dropdown-menu { display: block; }
  .nav__dropdown-toggle { width: 100%; justify-content: space-between; font-size: 17px; }
  .nav__link { font-size: 17px; }
}

/* ============ Hero — homepage split with angled seam ============ */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.hero--split { min-height: 620px; display: flex; align-items: center; }
.hero--split::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--airflow);
  background-size: 260px 96px;
  opacity: 0.1;
}
.hero__photo {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 46%;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}
.hero__photo::before {
  content: '';
  position: absolute;
  inset: 0;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  background: linear-gradient(78deg, rgba(36, 55, 85, 0.85) 0%, rgba(36, 55, 85, 0.18) 42%, rgba(36, 55, 85, 0) 70%);
  z-index: 2;
}
/* the split seam — flame above, teal below, echoing the logo */
.hero__photo::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 5.4%;
  width: 7px;
  transform: skewX(-6.9deg);
  transform-origin: top;
  background: linear-gradient(180deg, var(--flame) 0%, var(--flame) 48%, var(--teal) 52%, var(--teal) 100%);
  z-index: 3;
}
.hero__content { position: relative; z-index: 4; max-width: 620px; padding: 90px 0 120px; }
.hero--split .container { position: relative; width: 100%; }
.hero__title { color: #fff; margin-bottom: 12px; }
.hero__count {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(19px, 2vw, 24px);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--flame);
  margin-bottom: 12px;
}
.hero__count b { font-weight: 700; border-bottom: 4px solid var(--teal); padding-bottom: 2px; }
.hero__text { font-size: 18px; color: rgba(255, 255, 255, 0.88); margin-bottom: 26px; max-width: 540px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* rating badges */
.hero__badges { display: flex; flex-wrap: wrap; gap: 26px; margin-bottom: 26px; }
.hero__badge { display: flex; align-items: center; gap: 12px; }
.hero__badge-logo { width: 40px; height: 40px; flex-shrink: 0; }
.hero__badge-info { display: flex; flex-direction: column; gap: 2px; }
.hero__badge-stars { display: flex; gap: 1px; }
.hero__badge-stars svg { width: 16px; height: 16px; fill: var(--badge-star-color); }
.hero__badge-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--badge-text-color);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-bottom: 30px; }
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}
.hero__trust-item svg { width: 17px; height: 17px; color: var(--color-google-star); flex-shrink: 0; }

/* Sub-page hero: full-bleed photo + navy overlay */
.hero--sub { padding: 0; }
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 32%;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(27, 42, 66, 0.94) 0%, rgba(27, 42, 66, 0.78) 45%, rgba(36, 55, 85, 0.45) 100%);
}
.hero--sub .hero__content { padding: 64px 0 110px; max-width: 760px; }
.hero--sub.hero--nophoto { background: var(--navy); }
.hero--sub.hero--nophoto::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--airflow);
  background-size: 260px 96px;
  opacity: 0.1;
}
.hero__slope { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; z-index: 5; }
.hero__slope svg { display: block; width: 100%; height: auto; }

.breadcrumbs { padding-top: 22px; font-size: 14px; color: var(--color-text-on-dark-muted); position: relative; z-index: 4; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.breadcrumbs a { color: var(--color-text-on-dark-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--flame); }
.breadcrumbs .current { color: #fff; }
.breadcrumbs .sep { opacity: 0.5; }

/* ============ Floating trust strip ============ */
.trust-strip { position: relative; z-index: 10; margin-top: -54px; }
.trust-strip__card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-top: 5px solid;
  border-image: linear-gradient(90deg, var(--flame) 50%, var(--teal) 50%) 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 26px 30px;
}
.trust-strip__item { display: flex; align-items: center; gap: 13px; }
.trust-strip__icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.trust-strip__item:nth-child(odd) .trust-strip__icon { background: var(--flame); }
.trust-strip__item:nth-child(even) .trust-strip__icon { background: var(--teal); }
.trust-strip__icon svg { width: 22px; height: 22px; }
.trust-strip__label { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 16.5px; letter-spacing: 0.03em; color: var(--navy); }
.trust-strip__sub { font-size: 13.5px; color: var(--color-text-light); line-height: 1.4; }

/* ============ Cards ============ */
.card-grid { display: grid; gap: 26px; margin-top: 44px; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Service category cards — split-color top bar + temp coding */
.svc-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 30px 26px 26px;
  position: relative;
  overflow: hidden;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
  display: flex;
  flex-direction: column;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
}
.svc-card--hot::before { background: var(--flame); }
.svc-card--cool::before { background: var(--teal); }
.svc-card--split::before { background: linear-gradient(90deg, var(--flame) 50%, var(--teal) 50%); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.svc-card__icon { width: 52px; height: 52px; margin-bottom: 16px; }
.svc-card--hot .svc-card__icon { color: var(--flame); }
.svc-card--cool .svc-card__icon { color: var(--teal); }
.svc-card--split .svc-card__icon { color: var(--navy); }
.svc-card__icon svg { width: 100%; height: 100%; }
.svc-card h3 { margin-bottom: 10px; }
.svc-card p { font-size: 15.5px; color: var(--color-text-light); margin-bottom: 16px; }
.svc-card__links { list-style: none; margin: 0 0 20px; flex: 1; }
.svc-card__links li { padding: 0; }
.svc-card__links a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  color: var(--color-text);
  font-weight: 700;
  font-size: 15.5px;
  text-decoration: none;
  border-bottom: 1px dashed var(--color-border);
  transition: color var(--speed-fast) var(--ease), padding-left var(--speed-fast) var(--ease);
}
.svc-card__links li:last-child a { border-bottom: none; }
.svc-card__links svg { width: 13px; height: 13px; flex-shrink: 0; }
.svc-card--hot .svc-card__links svg { color: var(--flame); }
.svc-card--cool .svc-card__links svg { color: var(--teal); }
.svc-card--split .svc-card__links svg { color: var(--teal); }
.svc-card__links a:hover { color: var(--flame-hover); padding-left: 6px; }

/* Icon benefit cards */
.icon-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 30px 26px;
  border-left: 5px solid var(--teal);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.icon-card:nth-child(odd) { border-left-color: var(--flame); }
.icon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.icon-card__icon { width: 44px; height: 44px; margin-bottom: 14px; color: var(--navy); }
.icon-card__icon svg { width: 100%; height: 100%; }
.icon-card:nth-child(odd) .icon-card__icon { color: var(--flame); }
.icon-card:nth-child(even) .icon-card__icon { color: var(--teal); }
.icon-card h3 { margin-bottom: 8px; }
.icon-card p { font-size: 15.5px; color: var(--color-text-light); }

/* Review cards */
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 26px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
}
.review-card__g { position: absolute; top: 22px; right: 22px; width: 26px; height: 26px; }
.review-card__g svg { width: 100%; height: 100%; }
.review-card__stars { display: flex; gap: 2px; color: var(--color-google-star); margin-bottom: 14px; }
.review-card__stars svg { width: 17px; height: 17px; }
.review-card__text { font-size: 15.5px; color: var(--color-text); flex: 1; margin-bottom: 18px; }
.review-card__meta { display: flex; align-items: center; gap: 12px; }
.review-card__avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.review-card__author { font-weight: 700; color: var(--navy); font-size: 15.5px; line-height: 1.2; }
.review-card__when { font-size: 13px; color: var(--color-text-light); }
.reviews__cta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 44px; }

/* Single wide testimonial card (service pages) */
.quote-card {
  position: relative;
  max-width: 780px;
  margin: 44px auto 0;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 6px solid;
  border-image: linear-gradient(180deg, var(--flame) 50%, var(--teal) 50%) 1;
  padding: 34px 38px 30px;
}
.quote-card .review-card__stars { margin-bottom: 16px; }
.quote-card__text { font-size: 17.5px; line-height: 1.7; color: var(--color-text); margin-bottom: 20px; }
.quote-card .review-card__g { position: absolute; top: 26px; right: 26px; width: 28px; height: 28px; }

/* On navy band, review cards pop — and keep their dark text despite .band p */
.band .review-card { box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3); }
.band .review-card p, .band .form-card p { color: var(--color-text); }
.band .review-card .review-card__text { color: var(--color-text); }
.band .form-card .form-card__sub, .band .form-card .lead-form__consent { color: var(--color-text-light); }

/* ============ Navy band (angled, airflow texture, ghost mark) ============ */
.band {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: calc(var(--section-pad) + 10px) 0;
  overflow: hidden;
}
.band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--airflow);
  background-size: 260px 96px;
  opacity: 0.09;
}
.band .section-title, .band h2, .band h3 { color: #fff; }
.band .section-subtitle { color: var(--teal-light); }
.band p { color: rgba(255, 255, 255, 0.85); }
.band > .container { position: relative; z-index: 2; }
/* ghost watermarks */
.band--flame::after, .band--snow::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 480px;
  height: 480px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.05;
  pointer-events: none;
}
.band--flame::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F58D2C'%3E%3Cpath d='M8.5 14.5A2.5 2.5 0 0 0 11 12c0-1.38-.5-2-1-3-1.072-2.143-.224-4.054 2-6 .5 2.5 2 4.9 4 6.5 2 1.6 3 3.5 3 5.5a7 7 0 1 1-14 0c0-1.153.433-2.294 1-3a2.5 2.5 0 0 0 2.5 2.5z'/%3E%3C/svg%3E");
}
.band--snow::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234E8790' stroke-width='1.4'%3E%3Cpath d='M12 2v20M12 2l-3 3M12 2l3 3M12 22l-3-3M12 22l3-3M3.3 7l17.4 10M3.3 7l.4 4M3.3 7l4-.8M20.7 17l-4 .8M20.7 17l-.4-4M20.7 7L3.3 17M20.7 7l-4-.8M20.7 7l-.4 4M3.3 17l4 .8M3.3 17l.4-4'/%3E%3C/svg%3E");
}
.band__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }

/* ============ Form card ============ */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  border-top: 6px solid;
  border-image: linear-gradient(90deg, var(--flame) 50%, var(--teal) 50%) 1;
  color: var(--color-text);
}
.form-card__title { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 25px; color: var(--navy); }
.form-card__sub { font-size: 14.5px; color: var(--color-text-light); margin: 4px 0 20px; }
.form-card p { color: var(--color-text-light); }

.lead-form { max-width: 680px; margin: 44px auto 0; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 38px 34px; border-top: 6px solid; border-image: linear-gradient(90deg, var(--flame) 50%, var(--teal) 50%) 1; }
.lead-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.lead-form__full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; }
.form-label { font-weight: 700; font-size: 14px; margin-bottom: 6px; color: var(--color-text); }
.form-input, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
  background: #fff;
  transition: border-color var(--speed-fast) var(--ease), box-shadow var(--speed-fast) var(--ease);
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-soft);
}
.form-textarea { resize: vertical; }
.lead-form__submit {
  grid-column: 1 / -1;
  padding: 16px 32px;
  background: var(--flame);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--sticker);
  transition: background var(--speed-fast) var(--ease), transform var(--speed-fast) var(--ease), box-shadow var(--speed-fast) var(--ease);
}
.lead-form__submit:hover { background: var(--flame-hover); transform: translate(2px, 2px); box-shadow: 3px 3px 0 rgba(27, 42, 66, 0.9); }
.lead-form__consent { grid-column: 1 / -1; font-size: 12px; line-height: 1.5; color: var(--color-text-light); margin-top: 6px; }

/* ============ Split layout ============ */
.split { display: grid; grid-template-columns: 1.08fr 1fr; gap: 60px; align-items: center; }
.split__img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.split__img { position: relative; }
.split__img::after {
  content: '';
  position: absolute;
  left: 18px; right: -12px; bottom: -12px;
  height: 10px;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--flame) 50%, var(--teal) 50%);
}

/* Stat row */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 30px; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: 40px; line-height: 1; }
.stat:nth-child(odd) .stat__num { color: var(--flame); }
.stat:nth-child(even) .stat__num { color: var(--teal-dark); }
.stat__label { font-size: 13.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-light); margin-top: 4px; }

/* Steps */
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 44px; }
.step {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 34px 26px 28px;
  position: relative;
  text-align: center;
}
.step__num {
  width: 54px; height: 54px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: #fff;
  background: conic-gradient(var(--flame) 0 50%, var(--teal) 50% 100%);
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 15.5px; color: var(--color-text-light); }

/* Check list (internal links) */
.check-list { list-style: none; columns: 2; gap: 40px; margin-top: 18px; }
.check-list li { break-inside: avoid; }
.check-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  color: var(--color-text);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed var(--color-border);
  transition: color var(--speed-fast) var(--ease), padding-left var(--speed-fast) var(--ease);
}
.check-list a:hover { color: var(--flame-hover); padding-left: 6px; }
.check-list svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }
.check-list li:nth-child(odd) svg { color: var(--flame); }

/* ============ Areas ============ */
.area-section {
  position: relative;
}
.area-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(36, 55, 85, 0.12) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  pointer-events: none;
}
.area-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 44px; position: relative; }
.area-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  padding: 18px 16px 14px;
  text-align: center;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.area-card__city {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy);
  text-decoration: none;
  margin-bottom: 8px;
}
.area-card__city svg { width: 16px; height: 16px; color: var(--flame); flex-shrink: 0; }
.area-card:nth-child(even) .area-card__city svg { color: var(--teal); }
.area-card__city:hover { color: var(--flame-hover); }
.area-card__links { display: flex; justify-content: center; gap: 7px; font-size: 13px; }
.area-card__links a { color: var(--color-text-light); text-decoration: none; font-weight: 600; }
.area-card__links a:hover { color: var(--teal-dark); }
.area-card__links span { color: var(--color-border); }

/* ============ CTA band ============ */
.cta-section {
  position: relative;
  background: linear-gradient(96deg, var(--flame-hover) 0%, var(--flame) 46%, var(--teal) 46.35%, var(--teal-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 90px 0;
  overflow: hidden;
}
.cta-section h2 { color: #fff; margin-bottom: 12px; }
.cta-section p { color: rgba(255, 255, 255, 0.92); max-width: 640px; margin: 0 auto 28px; }

/* ============ FAQ ============ */
.faq-list { max-width: 780px; margin: 44px auto 0; }
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 22px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16.5px;
  text-align: left;
  color: var(--navy);
  transition: background var(--speed-fast) var(--ease);
}
.faq-item__question:hover { background: var(--color-surface); }
.faq-item__question svg { flex-shrink: 0; transition: transform var(--speed-fast) var(--ease); color: var(--teal); }
.faq-item.active .faq-item__question svg { transform: rotate(180deg); color: var(--flame); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height var(--speed) var(--ease); }
.faq-item__answer-inner { padding: 2px 22px 20px; color: var(--color-text-light); font-size: 15.5px; }
.faq-item.active .faq-item__answer { max-height: 400px; }

/* ============ Map ============ */
.map-section { line-height: 0; }
.map-embed { width: 100%; height: 320px; border: 0; }

/* ============ Footer ============ */
.footer {
  background: var(--navy-deep);
  color: var(--color-text-on-dark-muted);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--airflow);
  background-size: 260px 96px;
  opacity: 0.05;
}
.footer .container { position: relative; z-index: 2; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; }
.footer__logo img { width: 96px; height: 96px; border-radius: 12px; margin-bottom: 18px; }
.footer__brand-desc { font-size: 15px; margin-bottom: 18px; }
.footer__heading {
  font-family: var(--font-display);
  color: #fff;
  font-size: 19px;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  position: relative;
}
.footer__heading::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 40px; height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--flame) 50%, var(--teal) 50%);
}
.footer__links a {
  display: block;
  padding: 4.5px 0;
  color: var(--color-text-on-dark-muted);
  text-decoration: none;
  font-size: 15px;
  transition: color var(--speed-fast) var(--ease), padding-left var(--speed-fast) var(--ease);
}
.footer__links a:hover { color: var(--flame); padding-left: 5px; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 11px; padding: 6px 0; font-size: 15px; }
.footer__contact-item svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 4px; color: var(--teal-light); }
.footer__contact-item a { color: #fff; font-weight: 700; text-decoration: none; }
.footer__contact-item a:hover { color: var(--flame); }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background var(--speed-fast) var(--ease), transform var(--speed-fast) var(--ease);
}
.footer__social a:hover { background: var(--flame); transform: translateY(-3px); }
.footer__social svg { width: 19px; height: 19px; }
.footer__bottom {
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}
.legal-footer {
  background: var(--navy-darker);
  color: var(--color-text-on-dark-muted);
  text-align: center;
  font-size: 13px;
  padding: 16px 10px;
}
.legal-footer a { color: var(--color-text-on-dark-muted); text-decoration: none; margin: 0 6px; }
.legal-footer a:hover { color: var(--flame); }

/* ============ Prose ============ */
.prose { max-width: 800px; }
.prose h2 { margin-top: 0; }
.prose ul { margin: 0 0 1em 22px; }

/* ============ Reveal animation ============ */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity var(--speed-slow) var(--ease-out), transform var(--speed-slow) var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.hero__badges { animation: fadeInUp 0.8s var(--ease-out) 0s both; }
.hero__title { animation: fadeInUp 0.8s var(--ease-out) 0.12s both; }
.hero__count, .hero__text { animation: fadeInUp 0.8s var(--ease-out) 0.24s both; }
.hero__trust, .hero__actions { animation: fadeInUp 0.8s var(--ease-out) 0.36s both; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .card-grid--3, .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-strip__card { grid-template-columns: repeat(2, 1fr); }
  .band__grid, .split { grid-template-columns: 1fr; gap: 44px; }
  .hero__photo { display: none; }
  .hero__content { max-width: 720px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .step-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  :root { --section-pad: 64px; }
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .card-grid--2, .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { margin-top: -30px; }
  .trust-strip__card { grid-template-columns: 1fr; padding: 22px; }
  .check-list { columns: 1; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .lead-form__grid { grid-template-columns: 1fr; }
  .lead-form { padding: 28px 22px; }
  .hero__content { padding: 64px 0 96px; }
  .btn-pair .btn, .hero__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  :root { --section-pad: 48px; }
  .area-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .area-card__links { display: none; }
}
