/* ============================================================
   Copper State Comfort — tech-forward HVAC / engineered comfort
   Palette: deep navy · cool cyan · warm orange · off-white
============================================================ */

:root {
  --navy:       #0a1628;
  --navy-2:     #0f2137;
  --navy-3:     #183149;
  --navy-4:     #22405e;
  --steel:      #3a5373;
  --muted:      #64748b;
  --text:       #1f2a3a;

  --cyan:       #06b6d4;
  --cyan-2:     #0891b2;
  --cyan-soft:  #cffafe;
  --cyan-glow:  rgba(6,182,212,.22);

  --orange:     #f97316;
  --orange-2:   #ea580c;
  --orange-soft:#ffedd5;

  --paper:      #f5f7fa;
  --paper-2:    #eef2f7;
  --white:      #ffffff;
  --line:       #dde4ed;
  --line-2:     #c8d3e1;

  --green:      #16a34a;

  --font-body:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-disp:  "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --radius-sm:  8px;
  --radius:     12px;
  --radius-lg:  18px;
  --radius-xl:  24px;

  --shadow-1:   0 1px 2px rgba(10,22,40,.06), 0 2px 6px rgba(10,22,40,.05);
  --shadow-2:   0 4px 14px rgba(10,22,40,.08), 0 24px 48px -26px rgba(10,22,40,.25);
  --shadow-3:   0 30px 70px -22px rgba(10,22,40,.45);
  --shadow-cyan:0 8px 24px -10px rgba(6,182,212,.55);
  --shadow-orange:0 8px 24px -10px rgba(249,115,22,.55);

  --ease:       cubic-bezier(.2,.7,.2,1);
}

/* ========== Skip link ========== */
.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  z-index: 999;
  background: var(--orange);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: top .15s var(--ease);
}
.skip-link:focus { top: 0; outline: 3px solid var(--cyan); outline-offset: -3px; }

/* ========== Reset ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--cyan); color: var(--navy); }

h1, h2, h3, h4 {
  color: var(--navy);
  margin: 0;
  font-family: var(--font-disp);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
h1 { font-size: clamp(40px, 5.8vw, 74px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
h2 { font-size: clamp(30px, 4vw, 48px); font-weight: 700; }
h3 { font-size: 20px; letter-spacing: -.005em; font-weight: 700; color: var(--navy); }
p  { margin: 0; }

/* ========== Layout ========== */
.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan-2);
  font-family: var(--font-body);
}
.eyebrow--cyan   { color: var(--cyan-2); }
.eyebrow--orange { color: var(--orange-2); }

.sec-head { max-width: 820px; margin-bottom: 48px; }
.sec-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.sec-head h2 { margin: 14px 0 14px; }
.sec-head p  { color: var(--muted); font-size: 17px; max-width: 72ch; }
.sec-head--center p { margin-left: auto; margin-right: auto; }

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  transition: transform .15s var(--ease), background .15s, color .15s, box-shadow .2s, border-color .15s;
  min-height: 44px;
  white-space: nowrap;
  border: 2px solid transparent;
  font-family: var(--font-body);
}
.btn--xl  { padding: 17px 28px; font-size: 15.5px; min-height: 56px; }
.btn--xxl { padding: 21px 34px; font-size: 16px; min-height: 66px; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--cyan);
  color: var(--navy);
  box-shadow: var(--shadow-cyan);
}
.btn--primary:hover { background: var(--cyan-2); color: #fff; transform: translateY(-1px); box-shadow: 0 14px 32px -10px rgba(6,182,212,.7); }

.btn--emergency {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn--emergency:hover { background: var(--orange-2); transform: translateY(-1px); box-shadow: 0 14px 32px -10px rgba(249,115,22,.7); }

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line-2);
}
.btn--ghost:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ========== Alert bar ========== */
.alert {
  display: block;
  background: var(--navy);
  color: #fff;
  border-bottom: 1px solid var(--navy-3);
}
.alert:hover { background: var(--navy-2); }
.alert__row {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 500;
}
.alert__pulse {
  position: relative;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.alert__pulse::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: rgba(249,115,22,.5);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { transform: scale(.5); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}
.alert__text strong { color: #fff; font-weight: 700; }
.alert__text { opacity: .92; }
.alert__phone {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--cyan);
}
@media (max-width: 720px) {
  .alert__text { font-size: 13px; }
  .alert__text > :not(strong) { display: none; }
}

/* ========== Nav ========== */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(245,247,250,.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s, background .2s;
}
.nav.is-scrolled {
  box-shadow: 0 8px 24px -12px rgba(10,22,40,.15);
  background: rgba(245,247,250,.96);
}
.nav__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy); }
.brand__mark { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-disp);
  font-size: 18px; font-weight: 700;
  letter-spacing: -.01em;
  color: var(--navy);
}
.brand__sub  {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-top: 2px;
}

.nav__links {
  display: flex; gap: 26px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-3);
}
.nav__links a { padding: 8px 0; transition: color .15s; position: relative; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px;
  background: var(--cyan); transform: scaleX(0); transform-origin: left; transition: transform .18s var(--ease);
}
.nav__links a:hover { color: var(--cyan-2); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { font-size: 13px; padding: 10px 16px; min-height: 40px; }

.burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  background: var(--white);
}
.burger span { display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .2s, opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  display: none;
  padding: 8px 24px 20px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.drawer a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}
.drawer a:last-child { border: 0; margin-top: 12px; }
.nav.is-open .drawer { display: block; }

@media (max-width: 1040px) {
  .nav__links, .nav__cta { display: none; }
  .burger { display: flex; }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(6,182,212,.22), transparent 60%),
    radial-gradient(900px 500px at 10% 100%, rgba(249,115,22,.18), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 90px 0 110px;
  min-height: 700px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 45%;
  opacity: .28;
  filter: saturate(.85) contrast(1.05);
  mix-blend-mode: luminosity;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(10,22,40,.88) 0%, rgba(10,22,40,.45) 55%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(10,22,40,.6) 100%);
}
.hero__grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(6,182,212,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,182,212,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 40%, transparent 85%);
}

.hero__grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__copy h1 {
  color: #fff;
  margin: 20px 0 22px;
  background: linear-gradient(180deg, #fff 0%, #c7d7ea 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__lede {
  font-size: 19px;
  color: rgba(245,247,250,.82);
  max-width: 58ch;
  margin-bottom: 36px;
  line-height: 1.55;
}
.hero__lede strong { color: var(--cyan); font-weight: 700; }

.hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero__trust {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid rgba(255,255,255,.14);
  max-width: 640px;
}
.hero__trust li {
  display: flex; flex-direction: column;
  padding: 18px 18px 0 0;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hero__trust li:last-child { border-right: 0; padding-right: 0; }
.hero__trust strong {
  font-family: var(--font-disp);
  font-size: 30px; font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline-flex; align-items: baseline;
}
.hero__trust em {
  font-style: normal;
  color: var(--cyan);
  font-size: 14px;
  margin-left: 4px;
  font-weight: 600;
  letter-spacing: .04em;
}
.hero__trust span {
  font-size: 11.5px;
  color: rgba(255,255,255,.6);
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ===== Thermostat widget ===== */
.thermo {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
  justify-self: end;
}
.thermo__frame {
  background: linear-gradient(180deg, rgba(15,33,55,.9), rgba(10,22,40,.95));
  border: 1px solid rgba(6,182,212,.3);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow:
    0 0 0 1px rgba(6,182,212,.08),
    0 30px 70px -20px rgba(0,0,0,.7),
    inset 0 1px 0 rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
}
.thermo__bar {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
}
.thermo__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,.22);
  flex-shrink: 0;
}
.thermo__wifi { margin-left: auto; color: var(--cyan); display: inline-flex; }
.thermo__outside {
  display: flex; align-items: baseline; gap: 10px;
  padding: 14px 0 6px;
  color: rgba(255,255,255,.75);
  font-size: 13px;
}
.thermo__outside strong {
  font-family: var(--font-disp);
  font-size: 22px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: -.02em;
}
.thermo__outside small {
  color: rgba(255,255,255,.55);
  font-size: 12px;
  margin-left: auto;
}

.thermo__inside {
  text-align: center;
  padding: 14px 0 10px;
}
.thermo__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.thermo__temp {
  display: inline-flex; align-items: flex-start;
  color: #fff;
  font-family: var(--font-disp);
  line-height: 1;
  letter-spacing: -0.04em;
}
.thermo__num {
  font-size: 112px;
  font-weight: 300;
  background: linear-gradient(180deg, #fff 0%, var(--cyan) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.thermo__deg {
  font-size: 44px;
  font-weight: 300;
  color: var(--cyan);
  margin-top: 14px;
}
.thermo__arc {
  margin: -20px auto 0;
  max-width: 220px;
  opacity: .85;
}

.thermo__mode {
  display: flex; gap: 6px;
  padding: 6px;
  background: rgba(255,255,255,.05);
  border-radius: 999px;
  margin: 12px auto 14px;
  max-width: 260px;
}
.thermo__mode-item {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  padding: 7px 10px;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  border-radius: 999px;
  letter-spacing: .03em;
}
.thermo__mode-item.is-active {
  background: var(--cyan);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(6,182,212,.35);
}
.thermo__mode-item svg { opacity: .9; }

.thermo__runtime {
  display: flex; justify-content: space-between; gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 11.5px;
  color: rgba(255,255,255,.55);
}
.thermo__runtime strong { color: #fff; font-weight: 600; }
.thermo__eff { color: var(--cyan) !important; }

.thermo__chip {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  background: rgba(22,163,74,.12);
  border: 1px solid rgba(22,163,74,.3);
  border-radius: 999px;
  color: #86efac;
  font-size: 12px;
  font-weight: 600;
}
.thermo__chip-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,.25);
}

@media (max-width: 980px) {
  .hero { padding: 64px 0 80px; min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__lede { font-size: 17px; margin-bottom: 28px; }
  .hero__cta { flex-direction: column; gap: 10px; }
  .hero__cta .btn { width: 100%; }
  .hero__trust { grid-template-columns: repeat(2,1fr); gap: 0; }
  .hero__trust li:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 14px; }
  .hero__trust li:nth-child(2) { border-right: 0; }
  .thermo { justify-self: center; max-width: 320px; }
  .thermo__num { font-size: 96px; }
}
@media (max-width: 400px) {
  .thermo__num { font-size: 80px; }
  .thermo__deg { font-size: 36px; }
}

/* ========== Badges ========== */
.badges {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.badges__row {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 18px;
  padding: 28px 24px;
}
.badge { display: flex; align-items: center; gap: 12px; }
.badge__mark {
  display: grid; place-items: center;
  width: 54px; height: 54px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  border: 1px solid var(--navy-3);
}
.badge__mark--cyan { background: var(--cyan); color: var(--navy); border-color: var(--cyan-2); }
.badge strong { display: block; font-size: 14px; color: var(--navy); font-weight: 700; line-height: 1.15; }
.badge span { display: block; font-size: 12px; color: var(--muted); margin-top: 3px; }

@media (max-width: 1100px) { .badges__row { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 640px)  { .badges__row { grid-template-columns: repeat(2,1fr); gap: 16px; padding: 20px; } }

/* ========== Emergency ========== */
.emergency {
  padding: 96px 0;
  background: var(--paper);
  position: relative;
}
.emergency__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.emergency__copy h2 { margin: 14px 0 18px; }
.emergency__copy > p {
  color: var(--steel);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 60ch;
}
.emergency__copy > p strong { color: var(--orange-2); font-weight: 700; }

.emergency__list {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: grid; gap: 10px;
}
.emergency__list li {
  position: relative;
  padding: 12px 16px 12px 44px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
}
.emergency__list li b { color: var(--navy); font-weight: 700; }
.emergency__list li::before {
  content: "";
  position: absolute;
  left: 14px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(249,115,22,.18);
}

.emergency__img {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0;
  background: var(--navy);
  box-shadow: var(--shadow-3);
}
.emergency__img img { width: 100%; height: 100%; object-fit: cover; }
.emergency__cap {
  position: absolute;
  left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-2);
}
.emergency__cap-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.22);
}

.img-fallback {
  display: grid; place-items: center;
  gap: 14px;
  width: 100%; height: 100%;
  background:
    radial-gradient(400px 300px at 30% 20%, rgba(6,182,212,.2), transparent 60%),
    linear-gradient(135deg, var(--navy-2), var(--navy));
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 24px;
  text-align: center;
}
.img-fallback svg { opacity: .9; }

@media (max-width: 960px) {
  .emergency { padding: 64px 0; }
  .emergency__grid { grid-template-columns: 1fr; gap: 32px; }
  .emergency__img { order: -1; aspect-ratio: 16/10; }
}

/* ========== Services ========== */
.services { padding: 96px 0; background: var(--white); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}
.svc {
  grid-column: span 2;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
  position: relative;
}
.svc:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: var(--cyan);
}

.svc--feat {
  background:
    radial-gradient(400px 280px at 100% 0%, rgba(6,182,212,.2), transparent 60%),
    linear-gradient(150deg, var(--navy) 0%, var(--navy-2) 100%);
  color: rgba(255,255,255,.82);
  border-color: var(--navy-3);
}
.svc--feat:hover { border-color: var(--cyan); }
.svc--feat h3 { color: #fff; }
.svc--feat > p { color: rgba(255,255,255,.72); }
.svc--feat .svc__icon { background: var(--orange); color: #fff; }
.svc--feat .svc__list { border-top-color: rgba(255,255,255,.12); }
.svc--feat .svc__list li { border-bottom-color: rgba(255,255,255,.08); color: rgba(255,255,255,.78); }
.svc--feat .svc__list li span { color: var(--cyan); }

.svc__icon {
  display: grid; place-items: center;
  width: 54px; height: 54px;
  border-radius: 12px;
  background: var(--cyan-soft);
  color: var(--cyan-2);
  margin-bottom: 18px;
}
.svc h3 { margin-bottom: 10px; }
.svc > p { color: var(--muted); font-size: 15px; margin-bottom: 18px; line-height: 1.55; }

.svc__list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.svc__list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--text);
}
.svc__list li:last-child { border-bottom: 0; }
.svc__list li span {
  font-weight: 700;
  color: var(--cyan-2);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  font-size: 13.5px;
}

.services__cta {
  margin-top: 36px;
  text-align: center;
  font-size: 16px;
  color: var(--muted);
}
.services__cta strong { color: var(--orange-2); font-weight: 700; }

@media (max-width: 1040px) { .services__grid { grid-template-columns: repeat(2,1fr); } .svc { grid-column: span 1; } }
@media (max-width: 640px)  { .services { padding: 64px 0; } .services__grid { grid-template-columns: 1fr; } .svc { grid-column: span 1; padding: 24px; } }

/* ========== Plans ========== */
.plans {
  padding: 96px 0;
  background: var(--paper);
  position: relative;
}
.plans__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  align-items: stretch;
}
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
  position: relative;
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--cyan); }

.plan--feat {
  background:
    radial-gradient(400px 300px at 100% 0%, rgba(6,182,212,.18), transparent 60%),
    linear-gradient(160deg, var(--navy), var(--navy-2));
  border-color: var(--cyan);
  color: rgba(255,255,255,.86);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(6,182,212,.3), 0 30px 70px -22px rgba(10,22,40,.5);
}
.plan--feat:hover { transform: translateY(-9px); }
.plan--feat h3 { color: #fff; }
.plan--feat .plan__amt { color: var(--cyan); }
.plan--feat .plan__per, .plan--feat .plan__tag { color: rgba(255,255,255,.65); }
.plan--feat .plan__list { border-top-color: rgba(255,255,255,.12); }
.plan--feat .plan__list li { color: rgba(255,255,255,.82); }
.plan--feat .plan__list li::before { background: var(--cyan); }
.plan--feat .plan__list li b { color: #fff; }

.plan__flag {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: var(--shadow-orange);
}
.plan h3 {
  font-family: var(--font-disp);
  font-size: 22px;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.plan__price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 6px;
}
.plan__amt {
  font-family: var(--font-disp);
  font-size: 56px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.03em;
  line-height: 1;
}
.plan__per { color: var(--muted); font-size: 16px; font-weight: 600; }
.plan__tag {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}

.plan__list { list-style: none; padding: 0; margin: 0 0 24px; border-top: 1px solid var(--line); flex: 1; }
.plan__list li {
  position: relative;
  padding: 11px 0 11px 26px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--text);
}
.plan--feat .plan__list li { border-bottom-color: rgba(255,255,255,.08); }
.plan__list li:last-child { border-bottom: 0; }
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 16px; height: 2px;
  background: var(--cyan-2);
}
.plan__list li b { color: var(--navy); font-weight: 700; }

.plans__fine {
  margin-top: 28px;
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  max-width: 80ch;
  margin-left: auto; margin-right: auto;
  line-height: 1.5;
}

@media (max-width: 960px) {
  .plans { padding: 64px 0; }
  .plans__grid { grid-template-columns: 1fr; gap: 24px; }
  .plan--feat { transform: none; }
  .plan--feat:hover { transform: translateY(-3px); }
}

/* ========== Process ========== */
.process {
  padding: 96px 0;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(6,182,212,.15), transparent 60%),
    radial-gradient(600px 400px at 0% 100%, rgba(249,115,22,.14), transparent 60%);
  pointer-events: none;
}
.process .sec-head h2 { color: #fff; }
.process .sec-head p { color: rgba(255,255,255,.7); }

.process__steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(5,1fr); gap: 18px;
  position: relative; z-index: 1;
}
.pstep {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  position: relative;
  transition: background .2s, border-color .2s, transform .2s var(--ease);
}
.pstep:hover {
  background: rgba(6,182,212,.06);
  border-color: rgba(6,182,212,.4);
  transform: translateY(-2px);
}
.pstep__num {
  font-family: var(--font-disp);
  font-size: 34px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -.03em;
}
.pstep h3 {
  color: #fff;
  font-size: 16px;
  letter-spacing: -.005em;
  margin-bottom: 10px;
  font-weight: 700;
}
.pstep p { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.55; }

@media (max-width: 1040px) {
  .process { padding: 64px 0; }
  .process__steps { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 520px) { .process__steps { grid-template-columns: 1fr; } }

/* ========== Brands ========== */
.brands {
  padding: 56px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.brands__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: -.005em;
  margin-bottom: 24px;
}
.brands__row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 14px;
  max-width: 960px;
  margin: 0 auto 16px;
}
.brands__row span {
  display: inline-flex; align-items: center;
  padding: 9px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--font-disp);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -.005em;
  background: var(--paper);
  transition: border-color .15s, color .15s, background .15s;
}
.brands__row span:hover { border-color: var(--cyan); color: var(--cyan-2); background: var(--cyan-soft); }

.brands__note {
  font-size: 13px;
  color: var(--muted);
}
.brands__note strong { color: var(--navy); font-weight: 700; }

/* ========== Reviews ========== */
.reviews { padding: 96px 0; background: var(--paper); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0;
  transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
  position: relative;
}
.review::before {
  content: "\201C";
  position: absolute;
  top: 14px; right: 24px;
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 1;
  color: var(--cyan-soft);
  pointer-events: none;
}
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--cyan); }
.review__stars {
  color: var(--orange);
  font-size: 17px; letter-spacing: 2px;
  margin-bottom: 14px;
}
.review blockquote {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px;
  flex: 1;
  position: relative; z-index: 1;
}
.review figcaption {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: grid; gap: 3px;
}
.review figcaption strong { font-size: 14.5px; color: var(--navy); font-weight: 700; }
.review figcaption span { font-size: 12.5px; color: var(--muted); }
.review__src {
  display: inline-block !important;
  margin-top: 5px !important;
  font-weight: 700 !important;
  color: var(--cyan-2) !important;
  font-size: 10.5px !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}

@media (max-width: 1040px) { .reviews__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px)  { .reviews__grid { grid-template-columns: 1fr; } }

/* ========== Area ========== */
.area { padding: 96px 0; background: var(--white); }
.area__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.area__copy h2 { margin: 14px 0 16px; }
.area__copy > p { color: var(--muted); font-size: 17px; margin-bottom: 28px; max-width: 58ch; line-height: 1.6; }

.area__cities {
  display: grid; gap: 0;
  border-top: 1px solid var(--line);
}
.area__city {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.area__city strong {
  font-family: var(--font-disp);
  font-size: 15px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -.005em;
}
.area__city span { font-size: 14.5px; color: var(--muted); }

.area__map {
  position: relative;
  margin: 0;
  aspect-ratio: 1/1;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  background: var(--navy-3);
}
.area__map iframe { width: 100%; height: 100%; display: block; filter: grayscale(.1); }
.area__map-cap {
  position: absolute;
  left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-2);
  z-index: 2;
}
.area__map-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 3px rgba(6,182,212,.25);
}

@media (max-width: 960px) {
  .area { padding: 64px 0; }
  .area__grid { grid-template-columns: 1fr; gap: 32px; }
  .area__city { grid-template-columns: 1fr; gap: 4px; }
  .area__map { min-height: 320px; }
}

/* ========== FAQ ========== */
.faq { padding: 96px 0; background: var(--paper); }
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 56px;
  align-items: start;
}
.faq__head { position: sticky; top: 100px; }
.faq__head h2 { margin: 14px 0 16px; }
.faq__head p { color: var(--muted); font-size: 16px; }
.faq__head a { color: var(--cyan-2); text-decoration: underline; text-underline-offset: 3px; }

.faq__list { display: grid; gap: 12px; }
.qa {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.qa[open] { border-color: var(--cyan); box-shadow: var(--shadow-1); }
.qa summary {
  list-style: none;
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  transition: background .15s;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { background: var(--paper); }
.qa summary i {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--cyan-soft);
  color: var(--cyan-2);
  position: relative;
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.qa summary i::before,
.qa summary i::after {
  content: ""; position: absolute;
  background: currentColor;
  border-radius: 2px;
}
.qa summary i::before { top: 50%; left: 7px; right: 7px; height: 2px; transform: translateY(-50%); }
.qa summary i::after  { left: 50%; top: 7px; bottom: 7px; width: 2px; transform: translateX(-50%); transition: transform .25s; }
.qa[open] summary i { background: var(--cyan); color: #fff; }
.qa[open] summary i::after { transform: translateX(-50%) scaleY(0); }

.qa__body {
  padding: 0 24px 22px;
  color: var(--text);
  font-size: 15px;
  max-width: 70ch;
  line-height: 1.65;
}
.qa__body p { margin: 0; }
.qa__body strong { color: var(--navy); font-weight: 700; }

@media (max-width: 960px) {
  .faq { padding: 64px 0; }
  .faq__grid { grid-template-columns: 1fr; gap: 32px; }
  .faq__head { position: static; }
  .qa summary { font-size: 15.5px; padding: 18px 20px; }
}

/* ========== CTA / Contact ========== */
.cta {
  padding: 96px 0;
  background:
    radial-gradient(1000px 500px at 100% 0%, rgba(6,182,212,.2), transparent 55%),
    radial-gradient(700px 400px at 0% 100%, rgba(249,115,22,.16), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  position: relative;
}
.cta__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.cta__copy h2 { color: #fff; margin: 14px 0 18px; max-width: 22ch; }
.cta__lede {
  color: rgba(255,255,255,.8);
  font-size: 17px;
  max-width: 58ch;
  margin-bottom: 28px;
  line-height: 1.6;
}
.cta__lede strong { color: var(--cyan); font-weight: 700; }

.cta__perks {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: grid; gap: 10px;
}
.cta__perks li {
  position: relative;
  padding-left: 32px;
  color: rgba(255,255,255,.85);
  font-size: 15px;
}
.cta__perks li::before {
  content: "";
  position: absolute; left: 0; top: 4px;
  width: 20px; height: 20px;
  background: var(--cyan);
  border-radius: 6px;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19l12-12-1.4-1.4z'/></svg>") center/70% no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19l12-12-1.4-1.4z'/></svg>") center/70% no-repeat;
  mask-size: 70%;
  -webkit-mask-size: 70%;
  background-image: linear-gradient(var(--cyan), var(--cyan));
}

.cta__contact {
  display: grid; gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.cta__contact-item { display: grid; grid-template-columns: 88px 1fr; gap: 16px; align-items: baseline; }
.cta__contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
}
.cta__contact-value { color: #fff; font-size: 15px; font-weight: 500; }

/* Quote form */
.quote {
  background: #fff;
  color: var(--text);
  padding: 32px;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow-3);
  position: relative;
}
.quote::before {
  content: "";
  position: absolute; top: -1px; left: 32px; right: 32px; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  border-radius: 0 0 3px 3px;
}
.quote__head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  gap: 14px;
  flex-wrap: wrap;
}
.quote__head h3 {
  font-family: var(--font-disp);
  font-size: 22px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -.01em;
}
.quote__badge {
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--green);
  background: #dcfce7;
  padding: 6px 11px;
  border-radius: 999px;
  white-space: nowrap;
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .02em;
}
.field__opt { color: var(--muted); font-weight: 500; letter-spacing: 0; }

.field input, .field select, .field textarea {
  padding: 13px 14px;
  border: 1.5px solid var(--line-2);
  border-radius: 10px;
  background: var(--paper);
  font-size: 15.5px;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(6,182,212,.18);
}
.field textarea { resize: vertical; min-height: 92px; font-family: var(--font-body); }
.field__row { display: grid; grid-template-columns: 1.5fr 1fr; gap: 12px; }
@media (max-width: 480px) { .field__row { grid-template-columns: 1fr; } }

.quote__fine {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 0;
}
.quote.is-sent { text-align: center; }

@media (max-width: 960px) {
  .cta { padding: 64px 0; }
  .cta__grid { grid-template-columns: 1fr; gap: 32px; }
  .quote { padding: 24px; }
}

/* ========== Footer ========== */
.foot {
  background: var(--navy);
  color: rgba(255,255,255,.68);
  padding: 72px 0 28px;
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand--light .brand__name { color: #fff; }
.brand--light .brand__sub  { color: rgba(255,255,255,.55); }

.foot__brand p { margin: 20px 0 18px; font-size: 14.5px; max-width: 42ch; line-height: 1.6; }
.foot__brand address { font-style: normal; font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.7; }
.foot__brand address strong { color: #fff; }

.foot__col h4 {
  font-family: var(--font-disp);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.foot__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot__col a {
  display: inline-flex; align-items: center;
  min-height: 30px;
  color: rgba(255,255,255,.68);
  font-size: 14.5px;
  transition: color .15s;
}
.foot__col a:hover { color: var(--cyan); }
.foot__col li { font-size: 14.5px; min-height: 30px; display: flex; align-items: center; }

.foot__badges {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 20px;
}
.foot__badges span {
  font-size: 10.5px; font-weight: 700;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.75);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.foot__base {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px 0;
  gap: 16px;
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
}
.foot__base a { color: rgba(255,255,255,.6); }
.foot__base a:hover { color: var(--cyan); }

@media (max-width: 900px) {
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot__brand { grid-column: 1 / -1; }
  .foot__base { flex-direction: column; text-align: center; }
}

/* ========== Sticky mobile call ========== */
.sticky-call {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 80;
  align-items: center; gap: 12px;
  padding: 12px 14px 12px 12px;
  background: var(--orange);
  color: #fff;
  border-radius: 16px;
  box-shadow:
    0 12px 32px -8px rgba(249,115,22,.55),
    0 2px 8px rgba(10,22,40,.18);
  font-weight: 700;
}
.sticky-call:hover { background: var(--orange-2); }
.sticky-call:active { transform: scale(.985); }

.sticky-call__icon {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: rgba(255,255,255,.22);
  border-radius: 11px;
}
.sticky-call__text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.sticky-call__text strong {
  font-size: 13px; font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.sticky-call__text span { font-size: 14px; opacity: .95; font-weight: 700; margin-top: 3px; }

.sticky-call__status {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px 5px 8px;
  background: rgba(255,255,255,.22);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.sticky-call__pulse {
  position: relative;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}
.sticky-call__pulse::after {
  content: "";
  position: absolute; inset: -3px;
  border-radius: 50%;
  background: rgba(74,222,128,.45);
  animation: pulse 1.8s infinite;
}

@media (max-width: 1040px) {
  .sticky-call { display: inline-flex; }
  main { padding-bottom: 100px; }
}
@media (max-width: 360px) { .sticky-call__status { display: none; } }

/* ========== Reveal ========== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .alert__pulse::after, .sticky-call__pulse::after { animation: none; }
  html { scroll-behavior: auto; }
}
