/* ============================================================
   Cool Temp Heating and Air Conditioning — Pleasantville, NJ
   Relentless-caliber build v2 — modeled on live Relentless
   client sites (Best Virginia / Bear's Plumbing patterns)
   Brand: cool blue + flame orange extracted from logo
   ============================================================ */

:root {
  --color-primary: #1B8CD8;
  --color-primary-hover: #1372B5;
  --color-primary-soft: rgba(27, 140, 216, 0.12);
  --color-accent: #F25C05;
  --color-accent-hover: #CE4C00;
  --color-accent-soft: rgba(242, 92, 5, 0.12);
  --color-secondary: #0C2B4A;
  --color-secondary-hover: #081F37;

  --color-bg: #FFFFFF;
  --color-surface: #F2F7FB;
  --color-surface-dark: #0C2B4A;
  --color-surface-darker: #070C12;
  --color-ink: #0A1522;           /* near-black from the logo field — nav, utility, deepest bands */

  --color-text: #23303A;
  --color-text-light: #5B6B76;
  --color-text-on-dark: #FFFFFF;
  --color-text-on-dark-muted: #A5BAC6;

  --color-border: #E2EAEE;
  --color-border-dark: rgba(255, 255, 255, 0.09);

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

  --color-overlay: rgba(6, 25, 36, 0.62);
  --color-overlay-heavy: rgba(6, 25, 36, 0.78);

  --font-display: 'Barlow', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --space-2: 8px; --space-3: 12px; --space-4: 16px; --space-5: 20px;
  --space-6: 24px; --space-7: 32px; --space-8: 40px; --space-9: 48px;
  --space-11: 64px; --space-12: 80px;
  --section-pad: 76px;
  --container-width: 1200px;
  --gap: 24px;

  --shadow-sm: 0 2px 10px rgba(7, 42, 60, 0.10);
  --shadow-md: 0 10px 28px rgba(7, 42, 60, 0.14);
  --shadow-lg: 0 22px 52px rgba(7, 42, 60, 0.20);
  --shadow-card-hover: 0 16px 36px rgba(7, 42, 60, 0.20);
  --shadow-dropdown: 0 12px 36px rgba(0, 0, 0, 0.25);

  --radius: 8px; --radius-lg: 14px;

  --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;

  --z-mobile-overlay: 999; --z-nav: 1000; --z-utility-bar: 1001;
  --z-dropdown: 1002; --z-mobile-cta: 1100;

  --temp-gradient: linear-gradient(90deg, #1B8CD8 0%, #4FBCF2 46%, #FF9A3E 54%, #F25C05 100%);

  /* faint snowflake texture for dark bands */
  --flake-texture: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='white' stroke-width='1' opacity='0.05'%3E%3Cpath d='M30 10v40M30 10l-6 6M30 10l6 6M30 50l-6-6M30 50l6-6M13 20l34 20M13 20l1 8M13 20l8-1M47 40l-8 1M47 40l-1-8M47 20L13 40M47 20l-8-1M47 20l-1 8M13 40l8 1M13 40l1-8'/%3E%3Cpath d='M90 70v40M90 70l-6 6M90 70l6 6M90 110l-6-6M90 110l6-6M73 80l34 20M73 80l1 8M73 80l8-1M107 100l-8 1M107 100l-1-8M107 80l-34 20M107 80l-8-1M107 80l-1 8M73 100l8 1M73 100l1-8'/%3E%3C/g%3E%3C/svg%3E");
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.005em;
}
h1, h2 { font-weight: 700; letter-spacing: -0.012em; line-height: 1.1; }
h1 { font-size: clamp(33px, 4vw, 54px); }
h2 { font-size: clamp(26px, 2.9vw, 39px); }
h3 { font-size: clamp(19px, 2vw, 23.5px); }
p + p { margin-top: var(--space-4); }

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

.section { padding: var(--section-pad) 0; position: relative; }
.section--surface { background: var(--color-surface); }
.section__footer { text-align: center; margin-top: var(--space-8); }

.section-subtitle {
  font-family: var(--font-display);
  font-weight: 700; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}
.section-title { color: var(--color-secondary); margin-bottom: var(--space-5); }
.section-title--underline::after {
  content: ""; display: block; width: 90px; height: 5px;
  background: var(--temp-gradient); border-radius: 3px; margin: 16px auto 0;
}
.section-title--underline.left::after { margin-left: 0; }

/* === BUTTONS (skewed — Relentless style) === */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 15.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  line-height: 1;
  padding: 17px 34px;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.btn > span { display: inline-block; }
.btn--primary { background: var(--color-accent); color: #fff; }
.btn--primary:hover { background: var(--color-secondary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--dark { background: var(--color-secondary); color: #fff; }
.btn--dark:hover { background: var(--color-primary); transform: translateY(-2px); }
.btn--outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary); background: #fff;
  padding: 15px 32px; box-shadow: none;
}
.btn--outline:hover { background: var(--color-primary); color: #fff; }
.btn--outline-light {
  border: 2px solid #fff; color: #fff; background: transparent;
  padding: 15px 32px; box-shadow: none;
}
.btn--outline-light:hover { background: #fff; color: var(--color-secondary); transform: translateY(-2px); }
.btn--sm { padding: 11px 20px; font-size: 14px; }
.btn-pair { display: flex; gap: var(--space-4); flex-wrap: wrap; }

/* === MOBILE STICKY CTA === */
.mobile-cta-bar { display: none; }
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-mobile-cta); }
  .mobile-cta-bar a {
    flex: 1; padding: 14px 0; text-align: center;
    font-family: var(--font-display); font-weight: 700; font-size: 14px;
    text-transform: uppercase; letter-spacing: 0.05em;
  }
  .mobile-cta-bar__primary { background: var(--color-accent); color: #fff; }
  .mobile-cta-bar__call { background: var(--color-secondary); color: #fff; }
  body { padding-top: 46px; }
}

/* === UTILITY BAR === */
.utility-bar {
  position: relative; z-index: var(--z-utility-bar);
  background: var(--color-surface-darker); color: #fff;
  padding: 9px 0; font-size: 13.5px;
}
.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; color: var(--color-text-on-dark-muted); }
.utility-bar__item svg { width: 15px; height: 15px; color: var(--color-primary); }
.utility-bar__item--hot svg { color: var(--color-accent); }
.utility-bar__item a { color: #fff; font-weight: 600; }
.utility-bar__item a:hover { color: #7FD0F2; }
.utility-bar__actions { display: flex; align-items: center; gap: 18px; }
.utility-bar__phone { color: #fff; font-weight: 700; font-size: 14.5px; }
.utility-bar__phone:hover { color: #7FD0F2; }
@media (max-width: 768px) {
  .utility-bar__hours-wrap { display: none; }
  .utility-bar .container { justify-content: center; }
}

/* === NAV === */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: var(--color-ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow var(--speed-fast) var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 84px; }
.nav__logo img { height: 58px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__link, .nav__dropdown-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 15.5px; text-transform: uppercase; letter-spacing: 0.03em;
  color: #fff;
  padding: 10px 13px; border-radius: var(--radius);
  transition: color var(--speed-fast) var(--ease), background var(--speed-fast) var(--ease);
}
.nav__link:hover, .nav__dropdown-toggle:hover { color: #7FD0F2; background: rgba(255, 255, 255, 0.06); }
.nav__dropdown { position: relative; }
.nav__dropdown-toggle svg { transition: transform var(--speed-fast) var(--ease); }
.nav__dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute; top: 100%; left: 0;
  min-width: 250px;
  background: var(--color-surface-darker);
  border-radius: 0 0 var(--radius) var(--radius);
  border-top: 3px solid var(--color-accent);
  padding: 8px;
  box-shadow: var(--shadow-dropdown);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  z-index: var(--z-dropdown);
}
.nav__dropdown:hover .nav__dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown-item {
  display: block; padding: 10px 14px;
  color: #fff; font-size: 15px; font-weight: 500;
  border-radius: 6px;
  transition: background var(--speed-fast) var(--ease);
}
.nav__dropdown-item:hover { background: var(--color-primary); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: calc(var(--z-dropdown) + 1); }
.nav__hamburger span { width: 25px; 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(6px, -6px); }
.nav-overlay {
  position: fixed; inset: 0; background: var(--color-overlay-heavy);
  opacity: 0; visibility: hidden;
  transition: opacity var(--speed) var(--ease);
  z-index: var(--z-mobile-overlay);
}
.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: 85%; max-width: 400px; height: 100vh;
    background: var(--color-surface-darker);
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 90px 28px 32px;
    transition: right var(--speed) var(--ease-out);
    z-index: var(--z-nav); overflow-y: auto;
  }
  .nav__links.open { right: 0; }
  .nav__link, .nav__dropdown-toggle { color: #fff; width: 100%; justify-content: space-between; }
  .nav__dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    display: none; box-shadow: none; background: rgba(255,255,255,0.05);
    border-top: none; min-width: 0;
  }
  .nav__dropdown.open .nav__dropdown-menu { display: block; }
}

/* === HERO === */
.hero {
  position: relative;
  display: flex; align-items: center;
  min-height: 660px;
  padding: 70px 0 130px;
  color: #fff;
  background: var(--color-secondary);
  overflow: hidden;
}
.hero--sub { min-height: 520px; padding-bottom: 120px; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(96deg, rgba(6, 25, 36, 0.93) 0%, rgba(6, 25, 36, 0.78) 42%, rgba(6, 30, 43, 0.38) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero__content { max-width: 760px; }

.hero__badges { display: flex; flex-wrap: wrap; align-items: center; gap: 30px; margin-bottom: var(--space-6); animation: fadeInUp 0.8s var(--ease-out) 0s both; }
.hero__badge { display: flex; align-items: center; gap: 12px; }
.hero__badge-logo { width: 42px; height: 42px; flex-shrink: 0; }
.hero__badge-logo--img { object-fit: contain; background: #fff; border-radius: 6px; padding: 3px; }
.hero__badge-info { display: flex; flex-direction: column; gap: 2px; }
.hero__badge-stars { display: flex; gap: 1px; }
.hero__badge-stars svg { width: 17px; height: 17px; fill: var(--badge-star-color); }
.hero__badge-text {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1rem; color: #fff;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.hero__title { margin-bottom: var(--space-4); text-shadow: 0 3px 18px rgba(0,0,0,0.35); animation: fadeInUp 0.8s var(--ease-out) 0.12s both; }
.hero__count {
  display: inline-block;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(21px, 2.3vw, 30px);
  color: #FF9557;
  border-bottom: 4px solid var(--color-accent);
  padding-bottom: 2px;
  margin-bottom: var(--space-4);
  animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}
.hero__text { font-size: clamp(16.5px, 1.5vw, 19px); color: rgba(255,255,255,0.94); max-width: 620px; margin-bottom: var(--space-6); animation: fadeInUp 0.8s var(--ease-out) 0.3s both; }
.hero__trust {
  display: grid; grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 12px 40px; margin-bottom: var(--space-7);
  animation: fadeInUp 0.8s var(--ease-out) 0.38s both;
}
.hero__trust-item { display: inline-flex; align-items: center; gap: 10px; font-size: 15.5px; font-weight: 600; color: #fff; }
.hero__trust-item svg { width: 20px; height: 20px; color: #35B4E4; flex-shrink: 0; }
.hero__actions { display: flex; gap: var(--space-4); flex-wrap: wrap; animation: fadeInUp 0.8s var(--ease-out) 0.45s both; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* angled bottom edge on hero */
.hero__slope {
  position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1;
  line-height: 0; pointer-events: none;
}
.hero__slope svg { display: block; width: 100%; height: 70px; }

/* === SPLIT HERO (homepage — Best Virginia pattern) === */
.hero--split {
  display: block;
  min-height: 680px;
  padding: 84px 0 150px;
  background:
    radial-gradient(1100px 600px at 8% -10%, rgba(38, 150, 222, 0.18), transparent 60%),
    linear-gradient(118deg, #05090F 0%, #0C2B4A 62%, #114576 100%);
  overflow: hidden;
}
.hero--split::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--flake-texture);
  pointer-events: none;
}
.hero--split .hero__content { max-width: 620px; }
.hero__photo {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 46%;
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 38% center; }
.hero__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6, 30, 43, 0.55) 0%, rgba(6, 30, 43, 0.06) 45%, rgba(6, 30, 43, 0) 70%);
}
.hero--split .container { position: relative; z-index: 2; }
@media (max-width: 1024px) {
  .hero--split { display: flex; flex-direction: column; padding: 48px 0 110px; min-height: 0; }
  .hero--split .container { order: 1; }
  .hero__photo { order: 2; position: relative; width: 100%; height: 280px; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); margin-top: 36px; }
  .hero__photo::after { background: none; }
}

/* === BREADCRUMBS === */
.breadcrumbs { padding: 0 0 var(--space-4); font-size: 0.875rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: var(--space-2); list-style: none; }
.breadcrumbs a { color: rgba(255,255,255,0.75); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs .sep { opacity: 0.5; }
.breadcrumbs .current { color: #fff; font-weight: 600; }

/* === FLOATING TRUST STRIP (overlaps hero bottom) === */
.trust-strip { position: relative; z-index: 5; margin-top: -78px; }
.trust-strip__card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.trust-strip__item {
  display: flex; align-items: center; gap: 14px;
  padding: 26px 26px;
  border-right: 1px solid var(--color-border);
}
.trust-strip__item:last-child { border-right: none; }
.trust-strip__icon {
  width: 52px; height: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--color-primary-soft); color: var(--color-primary);
}
.trust-strip__icon svg { width: 26px; height: 26px; }
.trust-strip__label { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--color-secondary); line-height: 1.2; }
.trust-strip__sub { font-size: 13px; color: var(--color-text-light); line-height: 1.4; }

/* === PHOTO SERVICE CARDS === */
.card-grid { display: grid; gap: var(--gap); margin-top: var(--space-8); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

.photo-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.photo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.photo-card__img-wrap { position: relative; height: 240px; overflow: hidden; }
.photo-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.photo-card:hover .photo-card__img-wrap img { transform: scale(1.06); }
.photo-card__tag {
  position: absolute; left: 0; bottom: 0;
  background: var(--color-primary); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 12.5px;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 7px 16px;
  border-radius: 0 8px 0 0;
}
.photo-card__body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.photo-card__body h3 { color: var(--color-secondary); margin-bottom: 10px; }
.photo-card__body p { font-size: 15px; color: var(--color-text-light); margin-bottom: 22px; flex: 1; }
.photo-card__body .btn { align-self: flex-start; }

/* === ANGLED DARK BAND (form + pitch) === */
.band {
  position: relative;
  background: var(--color-secondary);
  color: #fff;
  padding: calc(var(--section-pad) + 40px) 0;
  margin: 50px 0;
  clip-path: polygon(0 44px, 100% 0, 100% calc(100% - 44px), 0 100%);
}
.band::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--flake-texture);
  pointer-events: none;
}
.band--blue { background: linear-gradient(115deg, #0B5E97 0%, var(--color-primary) 55%, #0C2B4A 140%); }
.band .section-title { color: #fff; }
.band__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--space-9); align-items: center; position: relative; }
.band p { color: rgba(255,255,255,0.88); }

/* form card inside band */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 34px;
  color: var(--color-text);
}
.form-card__title { font-family: var(--font-display); font-weight: 700; font-size: 24px; text-transform: uppercase; color: var(--color-secondary); margin-bottom: 4px; }
.form-card__sub { font-size: 14px; color: var(--color-text-light); margin-bottom: 18px; }

/* === BRANDS STRIP === */
.brands-strip { padding: 46px 0; background: #fff; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.brands-strip__inner { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
.brands-strip__label { font-family: var(--font-display); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--color-text-light); }
.brands-strip__logo {
  font-family: var(--font-display); font-weight: 700;
  font-size: 30px; text-transform: uppercase; letter-spacing: 0.06em;
  color: #93A5B1;
  transition: color var(--speed-fast) var(--ease);
}
.brands-strip__logo:hover { color: var(--color-secondary); }
.brands-strip img { height: 34px; width: auto; filter: grayscale(1) opacity(0.55); transition: filter var(--speed-fast) var(--ease); }
.brands-strip img:hover { filter: none; }

/* === SPLIT (photo + text) === */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-9); align-items: center; }
.split__img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.split__img::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 6px; background: var(--temp-gradient); }
.split__img img { width: 100%; height: 100%; object-fit: cover; }
.stat-row { display: flex; gap: var(--space-8); margin-top: var(--space-6); flex-wrap: wrap; }
.stat { font-family: var(--font-display); }
.stat__num { font-size: 42px; font-weight: 900; color: var(--color-primary); line-height: 1; }
.stat__label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-light); font-weight: 700; margin-top: 4px; }

/* === COUPONS (punch-hole style) === */
.coupon {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 34px 30px;
  text-align: center;
  overflow: hidden;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.coupon:hover { transform: translateY(-6px) rotate(-0.5deg); box-shadow: var(--shadow-lg); }
.coupon::before {
  content: ""; position: absolute; inset: 10px;
  border: 2px dashed rgba(11, 44, 61, 0.18);
  border-radius: 10px;
  pointer-events: none;
}
.coupon::after {
  content: ""; position: absolute; top: 50%; left: -14px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--coupon-bg, var(--color-surface));
  transform: translateY(-50%);
  box-shadow: calc(100vw - 0px) 0 0 0 transparent;
}
.coupon__punch { position: absolute; top: 50%; right: -14px; width: 28px; height: 28px; border-radius: 50%; background: var(--coupon-bg, var(--color-surface)); transform: translateY(-50%); }
.coupon__value {
  font-family: var(--font-display); font-weight: 900;
  font-size: 52px; line-height: 1;
  color: var(--color-secondary); text-transform: uppercase;
}
.coupon__title { font-size: 21px; color: var(--color-secondary); margin: 10px 0 8px; }
.coupon__text { font-size: 14px; color: var(--color-text-light); }
.coupon__img { border-radius: var(--radius); margin-top: var(--space-4); }

/* === REVIEW CARDS (navy, Google-badged) === */
.review-card {
  position: relative;
  background: var(--color-surface-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-md);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.review-card__g {
  position: absolute; top: 22px; right: 22px;
  width: 34px; height: 34px;
  background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.review-card__g svg { width: 20px; height: 20px; }
.review-card__stars { display: flex; gap: 2px; color: var(--color-google-star); margin-bottom: var(--space-3); }
.review-card__stars svg { width: 17px; height: 17px; fill: currentColor; }
.review-card__text { font-size: 14.5px; color: rgba(255,255,255,0.92); margin-bottom: var(--space-4); white-space: pre-line; }
.review-card__author { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: #7FD0F2; }
.review-card__when { font-size: 12.5px; color: var(--color-text-on-dark-muted); }
.reviews__cta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: var(--space-8); }

/* === AREA CARDS === */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); margin-top: var(--space-8); }
.area-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--speed-fast) var(--ease), box-shadow var(--speed-fast) var(--ease), border-color var(--speed-fast) var(--ease);
}
.area-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--color-primary); }
.area-card__city {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 18.5px;
  color: var(--color-secondary);
  margin-bottom: 6px;
}
.area-card__city svg { width: 19px; height: 19px; color: var(--color-accent); flex-shrink: 0; }
.area-card__links { display: flex; flex-wrap: wrap; gap: 4px 10px; font-size: 13.5px; }
.area-card__links a { color: var(--color-primary); font-weight: 500; }
.area-card__links a:hover { text-decoration: underline; }
.area-card__links span { color: var(--color-border); }

/* === CTA PHOTO BAND === */
.cta-section {
  position: relative;
  padding: 110px 0;
  text-align: center; color: #fff;
  background-size: cover; background-position: center 60%;
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  margin-top: 50px;
}
.cta-section::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(4, 24, 44, 0.92) 10%, rgba(11, 94, 151, 0.84) 60%, rgba(178, 66, 4, 0.72) 100%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: var(--space-3); }
.cta-section p { max-width: 640px; margin: 0 auto var(--space-7); color: rgba(255,255,255,0.92); }

/* === FAQ === */
.faq-list { max-width: 840px; margin: var(--space-8) auto 0; }
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius);
  margin-bottom: var(--space-3);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item__question {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  width: 100%;
  padding: 19px 24px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  color: var(--color-secondary); text-align: left;
  transition: background var(--speed-fast) var(--ease);
}
.faq-item__question:hover { background: var(--color-surface); }
.faq-item__question svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--speed-fast) var(--ease); color: var(--color-primary); }
.faq-item.active .faq-item__question svg { transform: rotate(180deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height var(--speed) var(--ease); }
.faq-item__answer-inner { padding: 0 24px 20px; font-size: 15px; color: var(--color-text-light); }
.faq-item.active .faq-item__answer { max-height: 420px; }

/* === CHECK LIST === */
.check-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3) var(--space-6); margin-top: var(--space-5); }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15.5px; }
.check-list svg { width: 19px; height: 19px; color: var(--color-primary); flex-shrink: 0; margin-top: 4px; }
.check-list a { color: var(--color-text); font-weight: 500; }
.check-list a:hover { color: var(--color-primary); }

.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); margin-top: var(--space-8); }
.step {
  background: #fff; border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--color-primary);
}
.step__num {
  font-family: var(--font-display); font-weight: 700; font-size: 46px;
  background: var(--temp-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; margin-bottom: var(--space-3);
}
.step h3 { color: var(--color-secondary); margin-bottom: var(--space-2); }
.step p { font-size: 15px; color: var(--color-text-light); }

/* === FORMS === */
.lead-form {
  max-width: 680px; margin: var(--space-8) auto 0;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-md);
  border-top: 5px solid;
  border-image: var(--temp-gradient) 1;
}
.lead-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.lead-form__full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; }
.form-label { margin-bottom: 6px; font-weight: 500; font-size: 0.85rem; color: var(--color-text); }
.form-input, .form-textarea {
  width: 100%; padding: 12px 15px;
  border: 1px solid #CBD8DF;
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.98rem;
  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(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-soft);
}
.lead-form__submit {
  grid-column: 1 / -1;
  padding: 16px 32px;
  background: var(--color-accent); color: #fff;
  border-radius: 999px;
  font-family: var(--font-display); font-size: 15.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  transition: background var(--speed-fast) var(--ease);
}
.lead-form__submit:hover { background: var(--color-secondary); }
.lead-form__consent { grid-column: 1 / -1; font-size: 11.5px; line-height: 1.5; color: var(--color-text-light); margin-top: var(--space-2); }
.form-card .lead-form__consent { font-size: 10.5px; }
.form-card .lead-form__grid { gap: 12px; }
.form-card .form-input, .form-card .form-textarea { padding: 10px 13px; }

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

/* === MEGA FOOTER === */
.footer {
  background: var(--color-surface-darker);
  padding: var(--space-12) 0 var(--space-7);
  color: var(--color-text-on-dark-muted);
  position: relative;
}
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--temp-gradient); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.25fr; gap: var(--space-8); }
.footer__logo { display: inline-block; margin-bottom: var(--space-4); }
.footer__logo img { height: 110px; width: auto; }
.footer__brand-desc { font-size: 14.5px; }
.footer__heading {
  font-size: 16.5px; color: #fff; margin-bottom: var(--space-4);
  letter-spacing: 0.08em;
  padding-bottom: 8px; border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}
.footer__links a {
  display: block; padding: 3.5px 0;
  color: var(--color-text-on-dark-muted); font-size: 14.5px;
  transition: color var(--speed-fast) var(--ease), padding-left var(--speed-fast) var(--ease);
}
.footer__links a:hover { color: #7FD0F2; padding-left: 4px; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: var(--space-3); font-size: 14.5px; }
.footer__contact-item svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 4px; color: var(--color-primary); }
.footer__contact-item a { color: var(--color-text-on-dark-muted); }
.footer__contact-item a:hover { color: #7FD0F2; }
.footer__social { display: flex; gap: var(--space-3); margin-top: var(--space-4); }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); color: #fff;
  transition: background var(--speed-fast) var(--ease);
}
.footer__social a:hover { background: var(--color-primary); }
.footer__social svg { width: 20px; height: 20px; fill: currentColor; }
.footer__badges { display: flex; align-items: center; gap: var(--space-4); margin-top: var(--space-5); flex-wrap: wrap; }
.footer__badges img { height: 54px; width: auto; background: #fff; border-radius: 6px; padding: 4px; }
.footer__bottom {
  margin-top: var(--space-8); padding-top: var(--space-6);
  border-top: 1px solid var(--color-border-dark);
  font-size: 13.5px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.legal-footer {
  background: #05070A;
  padding: var(--space-4) 0;
  text-align: center; font-size: 0.8rem;
  color: var(--color-text-on-dark-muted);
}
.legal-footer a { color: var(--color-text-on-dark-muted); }
.legal-footer a:hover { color: #7FD0F2; }

/* === ICON CARDS (benefits / why-us on inner pages) === */
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.icon-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid var(--color-primary);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.icon-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.icon-card__icon {
  width: 64px; height: 64px; margin: 0 auto var(--space-4);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--color-primary-soft); color: var(--color-primary);
}
.icon-card__icon svg { width: 32px; height: 32px; }
.icon-card h3 { color: var(--color-secondary); margin-bottom: var(--space-2); font-size: 19px; }
.icon-card p { font-size: 14.5px; color: var(--color-text-light); }
@media (max-width: 1024px) { .card-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .card-grid--4 { grid-template-columns: 1fr; } }

/* === PROSE === */
.prose { max-width: 840px; }
.prose h2 { color: var(--color-secondary); margin: var(--space-8) 0 var(--space-4); }
.prose h3 { color: var(--color-secondary); margin: var(--space-6) 0 var(--space-3); }
.prose ul, .prose ol { padding-left: 24px; margin: var(--space-4) 0; }
.prose li { margin-bottom: 8px; }

/* === REVEAL === */
.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); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__card { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__item { border-bottom: 1px solid var(--color-border); }
  .trust-strip__item:nth-child(2n) { border-right: none; }
  .split, .band__grid { grid-template-columns: 1fr; gap: var(--space-7); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .step-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  :root { --section-pad: 56px; }
  body { font-size: 15.5px; }
  .card-grid--2, .card-grid--3, .area-grid { grid-template-columns: 1fr; }
  .trust-strip { margin-top: -60px; }
  .trust-strip__card { grid-template-columns: 1fr; }
  .trust-strip__item { border-right: none; padding: 18px 22px; }
  .check-list { grid-template-columns: 1fr; }
  .lead-form__grid, .form-card .lead-form__grid { grid-template-columns: 1fr; }
  .lead-form { padding: var(--space-6); }
  .footer__grid { grid-template-columns: 1fr; }
  .hero { min-height: 560px; padding-bottom: 110px; }
  .hero__trust { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .band { clip-path: polygon(0 22px, 100% 0, 100% calc(100% - 22px), 0 100%); }
  .cta-section { clip-path: polygon(0 20px, 100% 0, 100% 100%, 0 100%); padding: 80px 0; }
  .brands-strip__inner { gap: 30px; }
  .brands-strip__logo { font-size: 24px; }
}
@media (max-width: 480px) {
  :root { --section-pad: 48px; }
  .btn { width: 100%; }
  .hero__actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
