/* ============================================================
   E & R Heating and Cooling — Premium Design System
   Palette: navy #071525 / #0c1f33 / #143a5a
            orange #ef5a24 / #d3491a · gold #f5b301
            sky #5cc0f2 · blue #1f88cc · ice #e8f4fc
   ============================================================ */

:root {
  --navy-950: #06101c;
  --navy-900: #0c1f33;
  --navy-800: #12283e;
  --navy-700: #143a5a;
  --navy-600: #1e4a70;
  --ink: #0f1f2e;
  --ink-soft: #2a3f52;
  --muted: #5c6b78;
  --muted-2: #8a9aab;
  --line: #e4ebf2;
  --line-strong: #d0dae6;
  --surface: #ffffff;
  --surface-2: #f5f8fb;
  --surface-3: #eef3f8;
  --orange: #ef5a24;
  --orange-deep: #d3491a;
  --orange-soft: #fdeee7;
  --gold: #f5b301;
  --gold-soft: #fff8e6;
  --sky: #5cc0f2;
  --blue: #1f88cc;
  --blue-soft: #eaf4fb;
  --success: #22a565;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px -2px rgba(12, 31, 51, 0.08);
  --shadow: 0 12px 32px -16px rgba(12, 31, 51, 0.18);
  --shadow-lg: 0 28px 60px -24px rgba(12, 31, 51, 0.35);
  --shadow-orange: 0 16px 36px -12px rgba(239, 90, 36, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 0px;
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;
  --font-cond: "Barlow Semi Condensed", system-ui, sans-serif;
  --focus: 0 0 0 3px rgba(239, 90, 36, 0.35);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-nav-open { overflow: hidden; }

::selection {
  background: rgba(239, 90, 36, 0.18);
  color: var(--ink);
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--orange); }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); letter-spacing: -0.02em; }
p { margin: 0; }
button { font-family: inherit; }
:focus-visible { outline: none; box-shadow: var(--focus); }

/* ---------- Motion ---------- */
@keyframes erpulse {
  0%   { box-shadow: 0 0 0 0 rgba(239, 90, 36, 0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(239, 90, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 90, 36, 0); }
}
@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -18px) scale(1.05); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}
@keyframes border-glow {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.9; }
}

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

/* ---------- Utilities ---------- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.condensed { font-family: var(--font-cond); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.25s var(--ease);
  letter-spacing: -0.01em;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.btn:hover::after {
  opacity: 1;
  animation: shimmer 0.85s var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.985); }
.btn-orange {
  background: linear-gradient(180deg, #f36a38 0%, var(--orange) 55%, var(--orange-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow-orange), inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn-orange:hover {
  background: linear-gradient(180deg, #f57a4c 0%, #e85420 55%, #c94216 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -12px rgba(239, 90, 36, 0.65), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.28);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy-900);
  color: #fff;
  box-shadow: 0 12px 28px -12px rgba(12, 31, 51, 0.55);
}
.btn-navy:hover {
  background: var(--navy-700);
  color: #fff;
  transform: translateY(-2px);
}
.btn-lg { font-size: 17px; padding: 16px 28px; border-radius: 13px; }
.btn-md { font-size: 15px; padding: 13px 20px; }

/* ---------- Card hover lift ---------- */
.lift {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
}
.lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 10px 40px -18px rgba(6, 16, 28, 0.45);
}
.emergency-bar {
  background: linear-gradient(105deg, #c23d12 0%, var(--orange) 42%, #f0a000 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.emergency-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
  pointer-events: none;
}
.emergency-bar .inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 9px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
}
.emergency-bar .msg {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 13.5px;
  text-transform: uppercase;
}
.emergency-bar .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  animation: erpulse 1.8s infinite;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.5);
}
.emergency-bar .call {
  color: #fff;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(0,0,0,0.12);
  transition: background 0.2s;
}
.emergency-bar .call:hover {
  background: rgba(0,0,0,0.22);
  color: #fff;
}

.nav-shell {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(1.4) blur(16px);
  -webkit-backdrop-filter: saturate(1.4) blur(16px);
  border-bottom: 1px solid rgba(228, 235, 242, 0.85);
  transition: background 0.3s, padding 0.3s;
}
.site-header.is-scrolled .nav-shell {
  background: rgba(255,255,255,0.97);
}
.site-nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: padding 0.3s var(--ease);
}
.site-header.is-scrolled .site-nav { padding-top: 6px; padding-bottom: 6px; }
.site-nav .logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.site-nav .logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s var(--ease);
}
.site-header.is-scrolled .site-nav .logo img { height: 50px; }

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 4px;
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
}
.nav-links a {
  color: var(--ink-soft);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--orange);
  background: var(--orange-soft);
}
.nav-cta {
  flex: 0 0 auto;
  background: linear-gradient(180deg, #f36a38, var(--orange));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 10px;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 22px -10px rgba(239, 90, 36, 0.75);
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
}
.nav-cta:hover {
  background: linear-gradient(180deg, #f57a4c, var(--orange-deep));
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -10px rgba(239, 90, 36, 0.85);
}
.nav-toggle {
  display: none;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 11px;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.2s, border-color 0.2s;
}
.nav-toggle:hover {
  background: var(--orange-soft);
  border-color: #f5c9b5;
  color: var(--orange);
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    z-index: 60;
  }
  .nav-links a {
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 15px;
  }
  .nav-links.open { display: flex; animation: fade-up 0.3s var(--ease-out); }
  .site-nav { position: relative; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .nav-cta { display: none; }
}

/* ---------- Sections ---------- */
.section-pad { padding: clamp(64px, 8vw, 110px) 0; }
.kicker {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  font-weight: 700;
  font-size: 13.5px;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 2px;
}
.h2 {
  font-weight: 900;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.lead {
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18.5px);
  line-height: 1.6;
  max-width: 560px;
}
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}
.section-head .lead { margin: 14px auto 0; }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 10% -10%, #1a4d78 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(239, 90, 36, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 70% 100%, rgba(92, 192, 242, 0.12) 0%, transparent 50%),
    linear-gradient(165deg, #0a1a2c 0%, var(--navy-900) 45%, #081522 100%);
}
.hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(92, 192, 242, 0.08) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(245, 179, 1, 0.06) 0%, transparent 30%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: float-orb 12s ease-in-out infinite;
}
.hero__orb--1 {
  width: 380px; height: 380px;
  top: -80px; left: -60px;
  background: rgba(31, 136, 204, 0.22);
}
.hero__orb--2 {
  width: 280px; height: 280px;
  bottom: 10%; right: 5%;
  background: rgba(239, 90, 36, 0.16);
  animation-delay: -4s;
}
.hero__orb--3 {
  width: 200px; height: 200px;
  top: 40%; left: 40%;
  background: rgba(245, 179, 1, 0.1);
  animation-delay: -7s;
}
.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) 24px clamp(56px, 7vw, 88px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
}
.hero__copy {
  animation: fade-up 0.8s var(--ease-out) both;
}
@media (prefers-reduced-motion: reduce) {
  .hero__copy { animation: none; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 179, 1, 0.1);
  border: 1px solid rgba(245, 179, 1, 0.35);
  color: var(--gold);
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12.5px;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 0 1px rgba(245, 179, 1, 0.05), inset 0 1px 0 rgba(255,255,255,0.08);
}
.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: erpulse 2s infinite;
}

.hero h1 {
  font-weight: 900;
  font-size: clamp(36px, 5.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  text-wrap: balance;
}
.hero h1 .grad-heat {
  background: linear-gradient(105deg, #f5b301 0%, #ef5a24 55%, #ff7a45 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .grad-cool {
  background: linear-gradient(105deg, #5cc0f2 0%, #7dd3f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: clamp(16.5px, 1.7vw, 19.5px);
  line-height: 1.55;
  color: #b8c9d8;
  max-width: 520px;
  margin-bottom: 32px;
  font-weight: 400;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 14px;
  border-radius: 100px;
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12.5px;
  color: #d0dde8;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.2s, background 0.2s;
}
.hero__pill:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
}
.hero__pill i {
  font-style: normal;
  font-size: 13px;
  line-height: 1;
}
.hero__pill .c-sky { color: var(--sky); }
.hero__pill .c-gold { color: var(--gold); }
.hero__pill .c-orange { color: var(--orange); }

/* Quote card */
.quote-card {
  background: rgba(255,255,255,0.97);
  color: var(--ink);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 32px);
  box-shadow:
    0 40px 80px -28px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255,255,255,0.12),
    inset 0 1px 0 rgba(255,255,255,1);
  position: relative;
  overflow: hidden;
  animation: fade-up 0.9s var(--ease-out) 0.12s both;
}
@media (prefers-reduced-motion: reduce) {
  .quote-card { animation: none; }
}
.quote-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--gold) 50%, var(--sky));
}
.quote-card h2 {
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 26px);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.quote-card > p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 22px;
}
.quote-card form {
  display: grid;
  gap: 12px;
}
.quote-card .row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 480px) {
  .quote-card .row-2 { grid-template-columns: 1fr; }
}
.quote-card .form-note {
  text-align: center;
  color: var(--muted-2);
  font-size: 13px;
  margin-top: 2px;
}
.quote-card .form-note a {
  color: var(--orange);
  font-weight: 700;
}
.quote-success {
  text-align: center;
  padding: 28px 8px;
}
.quote-success__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(145deg, #e8f8ef, #d4f0e0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 12px 28px -12px rgba(34, 165, 101, 0.4);
}
.quote-success h2 {
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 10px;
}
.quote-success p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.quote-success a {
  color: var(--orange);
  font-weight: 700;
}

/* ---------- Stats band ---------- */
.stats-band {
  background: var(--navy-950);
  color: #fff;
  border-top: 1px solid rgba(239, 90, 36, 0.5);
  position: relative;
}
.stats-band::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--gold), transparent);
}
.stats-band__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
@media (max-width: 700px) {
  .stats-band__inner { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
}
.stat-item {
  position: relative;
  padding: 8px 12px;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.12), transparent);
}
@media (max-width: 700px) {
  .stat-item:nth-child(2n)::after { display: none; }
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #ffd666 0%, var(--gold) 50%, #e09a00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12.5px;
  color: #8fa3b5;
  margin-top: 8px;
  font-weight: 700;
}

/* ---------- Trust marquee ---------- */
.trust-bar {
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 16px 0;
}
.trust-bar__track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
  gap: 0;
}
.trust-bar__track:hover { animation-play-state: paused; }
.trust-bar__group {
  display: flex;
  align-items: center;
  gap: 0;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  color: var(--ink-soft);
  white-space: nowrap;
}
.trust-item span {
  color: var(--orange);
  font-size: 14px;
}
.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

.svc-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: block;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.svc-card:hover {
  border-color: #d6e0eb;
  color: var(--ink);
}
.svc-card:hover::before { opacity: 1; }
.svc-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.35s var(--ease);
}
.svc-card:hover .svc-card__icon { transform: scale(1.06) rotate(-2deg); }
.svc-card__icon--heat { background: linear-gradient(145deg, #fff0e8, #fde0d2); color: var(--orange); }
.svc-card__icon--cool { background: linear-gradient(145deg, #eef7fd, #d9edf9); color: var(--blue); }
.svc-card__icon--neutral { background: linear-gradient(145deg, #f0f3f7, #e2e8ef); color: var(--navy-900); }
.svc-card h3 {
  font-weight: 800;
  font-size: 19px;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.svc-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 16px;
}
.svc-card__link {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 13.5px;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s var(--ease);
}
.svc-card:hover .svc-card__link { gap: 10px; }
.svc-card--cta {
  background: linear-gradient(155deg, #163a58 0%, var(--navy-900) 50%, #0a1828 100%);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow);
}
.svc-card--cta::before {
  opacity: 1;
  background: linear-gradient(90deg, var(--orange), var(--sky));
}
.svc-card--cta h3 {
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.15;
  color: #fff;
}
.svc-card--cta p {
  color: #a8bdd0;
  margin-bottom: 20px;
}
.svc-card--cta:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.12);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
}
.about-visual {
  position: relative;
}
.about-visual__frame {
  width: 100%;
  aspect-ratio: 5 / 4;
  background:
    linear-gradient(145deg, #f8fafc, #eef3f8);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative;
}
.about-visual__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(12,31,51,0.06));
  pointer-events: none;
}
.about-visual__frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.6s var(--ease);
}
.about-visual:hover .about-visual__frame img {
  transform: scale(1.03);
}
.about-badge {
  position: absolute;
  bottom: -18px;
  left: -12px;
  background: linear-gradient(145deg, #f36a38, var(--orange-deep));
  color: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-orange);
  border: 1px solid rgba(255,255,255,0.15);
}
.about-badge__year {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.about-badge__label {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  opacity: 0.92;
  margin-top: 2px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
@media (max-width: 520px) {
  .about-features { grid-template-columns: 1fr; }
}
.feat {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s;
}
.feat:hover {
  background: var(--surface-2);
  border-color: var(--line);
}
.feat__icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat__icon--heat { background: var(--orange-soft); color: var(--orange); }
.feat__icon--cool { background: var(--blue-soft); color: var(--blue); }
.feat h3 {
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.feat p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

/* ---------- Process ---------- */
.process {
  background: var(--surface-2);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .process-grid { grid-template-columns: 1fr; }
}
.process-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.process-step__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.process-step__num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(239,90,36,0.35), transparent);
}
.process-step h3 {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 8px;
}
.process-step p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(239, 90, 36, 0.2), transparent 55%),
    linear-gradient(110deg, var(--navy-950) 0%, var(--navy-900) 40%, var(--navy-700) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band .glow {
  position: absolute;
  right: -80px;
  top: -60px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(239, 90, 36, 0.35), transparent 70%);
  pointer-events: none;
  animation: float-orb 10s ease-in-out infinite;
}
.cta-band .inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
}
.cta-band__left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cta-band__icon {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f36a38, var(--orange-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  animation: erpulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(239, 90, 36, 0.5);
}
.cta-band h2 {
  font-weight: 900;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.cta-band p {
  color: #a8bdd0;
  font-size: 16.5px;
  margin-top: 6px;
}

/* ---------- Service area ---------- */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 56px);
  align-items: center;
}
@media (max-width: 860px) {
  .area-grid { grid-template-columns: 1fr; }
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
  gap: 10px;
  margin-top: 28px;
}
.city-chip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  display: block;
  text-align: center;
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-sm);
}
.city-chip:hover {
  color: var(--orange);
  border-color: #f5c9b5;
  background: var(--orange-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.map-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: var(--surface-3);
}
.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
.map-frame__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 8px 14px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  z-index: 2;
}

/* ---------- Offers ---------- */
.offers-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
}
.offer-card {
  border: 1.5px dashed rgba(245, 179, 1, 0.7);
  background:
    linear-gradient(160deg, #fffef8 0%, #fff9e8 100%);
  border-radius: 16px;
  padding: 22px 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.offer-card::before {
  content: "";
  position: absolute;
  top: -30px; right: -30px;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(245,179,1,0.2), transparent 70%);
  pointer-events: none;
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -18px rgba(245, 179, 1, 0.45);
  border-color: var(--gold);
}
.offer-card__value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.offer-card__label {
  color: var(--muted);
  font-weight: 600;
  font-size: 14.5px;
  margin-top: 4px;
}
.offer-card--blue {
  border-color: rgba(31, 136, 204, 0.45);
  background: linear-gradient(160deg, #f7fbfe 0%, #eaf4fb 100%);
}
.offer-card--blue::before {
  background: radial-gradient(circle, rgba(31,136,204,0.18), transparent 70%);
}
.offer-card--blue .offer-card__value {
  color: var(--blue);
  font-size: 22px;
}
.offer-card--blue:hover {
  border-color: var(--blue);
  box-shadow: 0 18px 36px -18px rgba(31, 136, 204, 0.35);
}

/* ---------- Reviews ---------- */
.reviews-section {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(31, 136, 204, 0.12), transparent 55%),
    var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.reviews-section .kicker { color: var(--gold); }
.reviews-section .h2 { color: #fff; }
.rev-score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 28px;
  margin: 28px auto 8px;
  max-width: 640px;
}
.rev-score-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 7vw, 76px);
  line-height: 1;
  color: #fff;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #fff 30%, #b8c9d8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rev-score-meta { text-align: left; }
.rev-stars {
  display: inline-flex;
  gap: 3px;
  color: var(--gold);
  line-height: 1;
  filter: drop-shadow(0 2px 10px rgba(245, 179, 1, 0.4));
}
.rev-stars--lg {
  font-size: clamp(26px, 4vw, 34px);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.rev-stars--card {
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.rev-score-label {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13.5px;
  color: #8fa6b8;
}
.rev-google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 14px;
  color: #dbe6ef;
  font-weight: 600;
}
.rev-google svg { flex: 0 0 auto; }
.rev-carousel { position: relative; padding: 0 28px; }
.rev-carousel__viewport { overflow: hidden; border-radius: 4px; }
.rev-track {
  display: flex;
  transition: transform 0.55s var(--ease-out);
}
.rev-page {
  flex: 0 0 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 700px) {
  .rev-page { grid-template-columns: 1fr; }
  .rev-carousel { padding: 0 8px; }
}
.rev-card {
  background: linear-gradient(160deg, #163248 0%, #12283e 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
  box-shadow: 0 16px 40px -24px rgba(0,0,0,0.5);
  transition: border-color 0.3s, transform 0.3s;
}
.rev-card:hover {
  border-color: rgba(92, 192, 242, 0.25);
  transform: translateY(-2px);
}
.rev-card blockquote { margin: 0; }
.rev-card blockquote p {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #d4e0eb;
  font-size: 15.5px;
  line-height: 1.55;
  margin-bottom: 18px;
}
.rev-card figcaption { margin-top: auto; padding-top: 8px; }
.rev-name {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13.5px;
  color: #fff;
}
.rev-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 12.5px;
  color: #8fa6b8;
  font-weight: 500;
}
.rev-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(12, 31, 51, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 24px;
  line-height: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.rev-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-50%) scale(1.06);
}
.rev-prev { left: -4px; }
.rev-next { right: -4px; }
.rev-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}
.rev-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: #33506c;
  transition: all 0.35s var(--ease);
}
.rev-dot.active {
  width: 26px;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}
.rev-cta {
  text-align: center;
  margin-top: 36px;
}
.btn-ghost-dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 12px;
}
.btn-ghost-dark:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}

/* ---------- Blog cards ---------- */
.blog-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}
.blog-all {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s;
}
.blog-all:hover { gap: 10px; color: var(--orange-deep); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 800px) {
  .blog-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
.blog-card {
  display: block;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.blog-card:hover { color: var(--ink); }
.blog-card__img {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: var(--surface-3);
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.blog-card:hover .blog-card__img img { transform: scale(1.06); }
.blog-card__body { padding: 22px; }
.blog-card__meta {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  color: var(--muted-2);
  margin-bottom: 10px;
  font-weight: 700;
}
.blog-card h3 {
  font-weight: 800;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.blog-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: var(--shadow-sm);
}
.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-row__icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-row__icon--heat { background: var(--orange-soft); color: var(--orange); }
.contact-row__icon--cool { background: var(--blue-soft); color: var(--blue); }
.contact-row__label {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  color: var(--muted-2);
  font-weight: 700;
  margin-bottom: 2px;
}
.contact-row__value {
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.4;
}
.contact-row__value a {
  color: inherit;
  word-break: break-all;
}
.contact-phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.contact-phone:hover { color: var(--orange); }
.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  min-height: 360px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

/* ---------- Forms ---------- */
.field {
  width: 100%;
  padding: 14px 15px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--surface-2);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.field:hover { border-color: var(--line-strong); }
.field:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(239, 90, 36, 0.15);
}
select.field {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235c6b78' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
textarea.field { resize: vertical; min-height: 88px; }
.field::placeholder { color: #9aabba; }

/* ---------- Footer ---------- */
.site-footer {
  background:
    radial-gradient(ellipse 50% 40% at 20% 0%, rgba(31, 136, 204, 0.08), transparent 50%),
    var(--navy-950);
  color: #c3d0dc;
  padding: 64px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.site-footer .cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.9fr 1.1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media (max-width: 900px) {
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .site-footer .cols { grid-template-columns: 1fr; gap: 32px; }
}
.footer-brand img {
  height: 88px;
  width: auto;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  object-fit: contain;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.4);
}
.footer-brand p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #8ea3b5;
  max-width: 280px;
}
.site-footer h4 {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13.5px;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 700;
}
.site-footer .links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
}
.site-footer .links a { color: #a9bccb; transition: color 0.2s, padding-left 0.2s; }
.site-footer .links a:hover { color: var(--sky); padding-left: 4px; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
  color: #a9bccb;
}
.footer-phone {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.footer-phone:hover { color: var(--gold); }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sky);
  font-weight: 600;
  transition: gap 0.2s;
}
.footer-social:hover { gap: 12px; color: #7dd3f7; }
.site-footer .legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  font-size: 13px;
  color: #6e8395;
}
.site-footer .footer-credit {
  color: #8fa6b8;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer .footer-credit:hover {
  color: var(--sky);
}

/* ---------- Mobile sticky call bar ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(6, 16, 28, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08);
  gap: 10px;
  box-shadow: 0 -12px 40px -16px rgba(0,0,0,0.5);
}
.mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14.5px;
}
.mobile-cta__call {
  background: linear-gradient(180deg, #f36a38, var(--orange));
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.mobile-cta__call:hover { color: #fff; }
.mobile-cta__quote {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}
.mobile-cta__quote:hover { color: #fff; background: rgba(255,255,255,0.14); }
@media (max-width: 720px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 76px; }
}

/* ---------- Subpage hero + article ---------- */
.page-hero {
  background:
    radial-gradient(ellipse 90% 70% at 15% 0%, #1a4d78 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(239, 90, 36, 0.12), transparent 50%),
    linear-gradient(165deg, #0a1a2c 0%, var(--navy-900) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero .texture {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,31,51,0), rgba(12,31,51,0.45)),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 80% at 40% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 40% 30%, #000 30%, transparent 80%);
}
.page-hero .inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 72px) 24px clamp(56px, 7vw, 80px);
}
.breadcrumbs {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12.5px;
  color: #8fa6b8;
  margin-bottom: 18px;
}
.breadcrumbs a { color: var(--sky); }
.breadcrumbs a:hover { color: #7dd3f7; }
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 17px;
  line-height: 1.7;
  color: #33475a;
}
.article h2 {
  font-weight: 900;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--ink);
  margin: 42px 0 14px;
  letter-spacing: -0.025em;
}
.article h3 {
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 24px);
  color: var(--ink);
  margin: 34px 0 12px;
}
.article h4 {
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
  margin: 24px 0 8px;
}
.article p { margin: 0 0 16px; }
.article ul, .article ol { margin: 0 0 18px; padding-left: 24px; }
.article li { margin-bottom: 8px; }
.article img {
  border-radius: var(--radius-lg);
  margin: 8px 0 24px;
  box-shadow: var(--shadow);
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin: 26px 0;
}
.check-grid .item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.check-grid .item:hover {
  border-color: #d6e0eb;
  box-shadow: var(--shadow-sm);
}
.check-grid .item .tick {
  color: var(--orange);
  font-weight: 900;
  flex: 0 0 auto;
}

/* Surface helpers for sections that used inline bg */
.bg-soft { background: var(--surface-2); }
.bg-white { background: var(--surface); }
.bg-navy { background: var(--navy-900); color: #fff; }

/* Page hero title helpers used by subpages with inline styles */
.page-hero h1 {
  font-weight: 900;
  letter-spacing: -0.03em;
}
