/* =========================================================
   THERMO MASTER — Heating & Cooling
   Brand: fire-orange + ice-blue on deep navy
   ========================================================= */

:root {
  /* Brand colors (from logo) */
  --fire-1: #f5871f;
  --fire-2: #e8611c;
  --fire-3: #cc3c15;
  --ice-1: #8fd0ff;
  --ice-2: #3f9bf0;
  --ice-3: #1666c4;
  --navy-1: #0a1626;
  --navy-2: #0e2038;
  --navy-3: #12294a;
  --ink: #0a1220;

  --text: #1f2a3a;
  --text-soft: #5a6b80;
  --white: #ffffff;
  --line: #e6ecf3;
  --bg-soft: #f5f8fc;

  --fire-grad: linear-gradient(135deg, var(--fire-1), var(--fire-3));
  --ice-grad: linear-gradient(135deg, var(--ice-1), var(--ice-3));
  --brand-grad: linear-gradient(135deg, var(--fire-2) 0%, var(--fire-3) 45%, var(--ice-3) 55%, var(--ice-2) 100%);

  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 2px 10px rgba(10, 22, 38, 0.08);
  --shadow: 0 10px 30px rgba(10, 22, 38, 0.12);
  --shadow-lg: 0 24px 60px rgba(10, 22, 38, 0.22);
  --container: 1320px;
  --header-h: 90px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.18; color: var(--navy-1); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { color: var(--text-soft); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy-1); color: #cdd9e8; }
.section--navy h2, .section--navy h3 { color: #fff; }

.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fire-2);
  margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--ice-1); }
.lead { font-size: 1.12rem; max-width: 720px; margin: 16px auto 0; }
.mt-0 { margin-top: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--fire { background: var(--fire-grad); color: #fff; box-shadow: 0 8px 22px rgba(230, 50, 0, .35); }
.btn--fire:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(230, 50, 0, .45); }
.btn--ice { background: var(--ice-grad); color: #fff; box-shadow: 0 8px 22px rgba(22, 102, 196, .35); }
.btn--ice:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(22, 102, 196, .45); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn--lg { padding: 17px 34px; font-size: 1.08rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 22, 38, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar {
  background: var(--brand-grad);
  color: #fff; font-size: .95rem; font-weight: 600;
}
.topbar .container { display: flex; align-items: center; gap: 12px; min-height: 46px; }
.topbar a { color: #fff; }
.topbar__left { flex: 1 1 0; display: flex; gap: 18px; align-items: center; justify-content: flex-start; min-width: 0; }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; }
.topbar__center { flex: 0 0 auto; }
.topbar__right { flex: 1 1 0; display: flex; justify-content: flex-end; align-items: center; gap: 6px; font-weight: 800; font-size: 1.02rem; white-space: nowrap; }

/* Flashing offers ticker (centered) */
.ticker { position: relative; height: 24px; min-width: 300px; overflow: hidden; }
.ticker__item {
  position: absolute; inset: 0; white-space: nowrap; opacity: 0;
  font-weight: 800; letter-spacing: .01em; display: flex; justify-content: center; align-items: center; gap: 7px;
  animation: tickerCycle 16s infinite;
}
.ticker__item--deal { text-shadow: 0 0 10px rgba(255,255,255,.55); }
.ticker__item:nth-child(1) { animation-delay: 0s; }
.ticker__item:nth-child(2) { animation-delay: 4s; }
.ticker__item:nth-child(3) { animation-delay: 8s; }
.ticker__item:nth-child(4) { animation-delay: 12s; }
@keyframes tickerCycle {
  0%   { opacity: 0; transform: translateY(8px); }
  3%   { opacity: 1; transform: translateY(0); }
  9%   { opacity: 1; }
  11%  { opacity: .35; }   /* subtle flash */
  13%  { opacity: 1; }
  22%  { opacity: 1; transform: translateY(0); }
  25%, 100% { opacity: 0; transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) { .ticker__item { animation: none; } .ticker__item:nth-child(1){ opacity:1; } }
/* On smaller screens there isn't room for the static badge — show offers + phone only */
@media (max-width: 1040px) {
  .topbar__left { display: none; }
  .topbar__center { flex: 1 1 auto; min-width: 0; }
  .ticker { min-width: 0; }
  .topbar__right { flex: 0 0 auto; }
}

.nav { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { width: 70px; height: auto; filter: drop-shadow(0 4px 10px rgba(0,0,0,.35)); }
.brand__text { display: flex; flex-direction: column; align-items: center; line-height: 1.08; }
.brand__name { font-weight: 900; font-size: 1.18rem; color: #fff; letter-spacing: -.01em; text-align: center; }
.brand__name b { background: var(--ice-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand__name .fire { background: var(--fire-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand__tag { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: #9fb6d2; font-weight: 700; text-align: center; text-indent: .2em; }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__menu a {
  color: #d7e2f0; font-weight: 600; font-size: 1.02rem;
  padding: 11px 15px; border-radius: 8px; transition: color .15s, background .15s;
  position: relative;
}
.nav__menu a:hover, .nav__menu a.active { color: #fff; background: rgba(255,255,255,.07); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 800; font-size: 1.05rem; white-space: nowrap; }

/* Mid-size laptops: tighten nav so all items fit on one line */
@media (min-width: 981px) and (max-width: 1240px) {
  .nav__menu a { font-size: .9rem; padding: 9px 10px; }
  .brand img { width: 58px; }
  .brand__name { font-size: 1.02rem; }
  .brand__tag { font-size: .6rem; }
  .nav__phone { font-size: .95rem; }
  .nav__phone .ico { width: 30px; height: 30px; }
}
.nav__phone .ico { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--fire-grad); }

/* dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff; min-width: 250px; border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: .18s ease;
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: block; color: var(--text) !important; padding: 11px 14px; border-radius: 8px; font-size: .92rem; }
.drop a:hover { background: var(--bg-soft); color: var(--fire-3) !important; }

/* burger */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 3px; background: #fff; border-radius: 3px; transition: .25s; }
.nav-open .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; }
.nav-open .burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--navy-1); color: #fff; overflow: hidden;
  padding: clamp(32px, 4.5vw, 52px) 0 clamp(56px, 7vw, 92px);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 90% at 0% 60%, rgba(230,50,0,.55), transparent 60%),
    radial-gradient(60% 90% at 100% 40%, rgba(22,102,196,.6), transparent 60%),
    linear-gradient(180deg, #0a1626, #0c1d33);
  z-index: 0;
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .5; z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 22px 22px;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.02fr; gap: 48px; align-items: start; }
.hero__content { padding-top: 6px; }
.hero__content p { color: #c4d3e6; }
.hero__content .crumbs { color: #9fb6d2; }

/* Truck driving across the hero (right → left) */
.hero__drive { position: absolute; left: 0; right: 0; bottom: 6px; height: 160px; z-index: 1; pointer-events: none; overflow: hidden; }
.hero__drive img { position: absolute; bottom: 0; left: 100%; width: 300px; filter: drop-shadow(0 14px 18px rgba(0,0,0,.55)); animation: heroDrive 16s linear infinite; will-change: transform; }
@keyframes heroDrive {
  0%   { transform: translateX(60px); }
  55%  { transform: translateX(calc(-100vw - 360px)); }
  100% { transform: translateX(calc(-100vw - 360px)); }
}
@media (prefers-reduced-motion: reduce) { .hero__drive { display: none; } }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .85rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  padding: 8px 15px; border-radius: 999px; margin-bottom: 20px; color: #fff;
}
.hero__badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #2ec27e; box-shadow: 0 0 0 4px rgba(46,194,126,.25); }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
.hero h1 .fire { background: var(--fire-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero h1 .ice { background: linear-gradient(135deg, var(--ice-1), var(--ice-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { color: #c4d3e6; font-size: 1.15rem; margin: 18px 0 28px; max-width: 560px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 30px; }
.hero__trust div { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: #d3e0f0; font-weight: 600; }
.hero__trust .ck { color: var(--ice-1); font-weight: 900; }

.hero__media { position: relative; overflow: visible; }
.hero__truck {
  width: 122%; max-width: none; margin-left: -11%;
  filter: drop-shadow(0 26px 34px rgba(0,0,0,.6));
}
.hero__float {
  position: absolute; background: #fff; color: var(--navy-1);
  border-radius: 14px; padding: 13px 17px; box-shadow: var(--shadow-lg); font-weight: 800;
  display: flex; align-items: center; gap: 11px;
}
.hero__float small { display: block; color: var(--text-soft); font-weight: 600; font-size: .72rem; }
.hero__float .ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; color: #fff; font-size: 1.1rem; }
.hero__float--1 { left: -10px; bottom: 6px; }
.hero__float--1 .ic { background: var(--fire-grad); }
.hero__float--2 { right: -6px; top: -10px; }
.hero__float--2 .ic { background: var(--ice-grad); }

/* When no truck image present, fallback gradient panel */
.hero__placeholder {
  width: 100%; aspect-ratio: 16/10; border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,138,0,.25), rgba(22,102,196,.35)), var(--navy-2);
  border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
}

/* Hero inquiry form card */
.hero__formcard {
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.5);
}
.hero__formcard-head { background: var(--brand-grad); color: #fff; padding: 24px 30px 22px; }
.hero__formcard-head h2 { color: #fff; font-size: 1.9rem; }
.hero__formcard-head p { color: rgba(255,255,255,.95); font-size: .95rem; margin-top: 7px; }
.hero__formbody { padding: 26px 30px 30px; }
.hero__formbody .field { margin-bottom: 15px; }
.hero__formbody input, .hero__formbody select, .hero__formbody textarea { padding: 14px 16px; font-size: 1.02rem; }
.hero__formbody .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero__formbody .btn { margin-top: 4px; }
.hero__formnote { text-align: center; font-size: .78rem; color: var(--text-soft); margin-top: 12px; line-height: 1.5; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--navy-2); border-top: 1px solid rgba(255,255,255,.06); }
.trustbar .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 34px; padding: 20px; }
.trustbar div { display: flex; align-items: center; gap: 10px; color: #cdd9e8; font-weight: 700; font-size: .94rem; }
.trustbar .ic { color: var(--ice-1); font-size: 1.2rem; }

/* ---------- Section heading ---------- */
.shead { max-width: 740px; margin: 0 auto 46px; text-align: center; }
.shead p { margin-top: 14px; font-size: 1.08rem; }

/* ---------- Services grid ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.scard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: .2s ease; position: relative; overflow: hidden;
}
.scard::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--brand-grad); transform: scaleX(0); transform-origin: left; transition: .25s; }
.scard:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.scard:hover::before { transform: scaleX(1); }
.scard__ic {
  width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.6rem; color: #fff; margin-bottom: 18px;
}
.ic-fire { background: var(--fire-grad); }
.ic-ice { background: var(--ice-grad); }
.ic-mix { background: var(--brand-grad); }
.scard h3 { margin-bottom: 10px; }
.scard p { font-size: .96rem; margin-bottom: 16px; }
.scard__link { color: var(--fire-3); font-weight: 800; font-size: .92rem; display: inline-flex; align-items: center; gap: 6px; }
.scard__link:hover { gap: 10px; }

/* ---------- Feature / why ---------- */
.feat { display: flex; gap: 16px; align-items: flex-start; }
.feat__ic { flex: none; width: 50px; height: 50px; border-radius: 12px; background: var(--brand-grad); color: #fff; display: grid; place-items: center; font-size: 1.3rem; box-shadow: var(--shadow-sm); }
.feat h3 { font-size: 1.1rem; margin-bottom: 6px; }
.feat p { font-size: .95rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split__media { text-align: center; }
.split__media img { filter: drop-shadow(0 20px 30px rgba(10,22,38,.45)); }
.split__media .hero__placeholder { border-radius: var(--radius); box-shadow: var(--shadow); }
.checklist li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: var(--text); font-weight: 600; }
.checklist .ck { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--ice-grad); color: #fff; display: grid; place-items: center; font-size: .85rem; font-weight: 900; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: s; }
.step { text-align: center; padding: 0 10px; position: relative; }
.step__num { margin: 0 auto 10px; font-size: 3.4rem; font-weight: 900; line-height: 1; background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { font-size: .92rem; }

/* ---------- Areas ---------- */
.area-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px 18px; }
.area-list a { display: flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 9px; background: #fff; border: 1px solid var(--line); font-weight: 600; font-size: .93rem; color: var(--text); transition: .15s; }
.area-list a:hover { border-color: var(--ice-2); color: var(--ice-3); transform: translateX(3px); }
.area-list .pin { color: var(--fire-2); }

/* ---------- Testimonials ---------- */
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.tcard__stars { color: #ffb400; font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 12px; }
.tcard p { color: var(--text); font-size: 1rem; font-style: italic; }
.tcard__by { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.tcard__av { width: 44px; height: 44px; border-radius: 50%; background: var(--brand-grad); color: #fff; display: grid; place-items: center; font-weight: 800; }
.tcard__by b { display: block; color: var(--navy-1); }
.tcard__by span { font-size: .85rem; color: var(--text-soft); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 14px; background: #fff; overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: 0; padding: 20px 22px; font-size: 1.05rem; font-weight: 700; color: var(--navy-1); cursor: pointer; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq__q .sign { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--bg-soft); display: grid; place-items: center; font-size: 1.3rem; color: var(--fire-2); transition: .25s; }
.faq__item.open .faq__q .sign { transform: rotate(45deg); background: var(--fire-grad); color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 22px 20px; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(130deg, #bb4b1e 0%, #9d3614 36%, #16294a 50%, #14457f 66%, #1c5aa6 100%); color: #fff; text-align: center; border-radius: 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); font-size: 1.12rem; margin: 14px auto 26px; max-width: 620px; }
.cta-band .btn--fire { background: #fff; color: var(--fire-3); box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.cta-band .btn--ghost { border-color: rgba(255,255,255,.7); }

/* ---------- Contact / Form ---------- */
.form { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; border: 1px solid var(--line); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 6px; color: var(--navy-1); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 1rem; color: var(--text); background: var(--bg-soft); transition: .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ice-2); background: #fff; box-shadow: 0 0 0 4px rgba(63,155,240,.15); }
.field textarea { min-height: 120px; resize: vertical; }
.form__note { font-size: .82rem; color: var(--text-soft); margin-top: 10px; text-align: center; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.cinfo { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 22px; }
.cinfo__ic { flex: none; width: 50px; height: 50px; border-radius: 12px; background: var(--brand-grad); color: #fff; display: grid; place-items: center; font-size: 1.2rem; }
.cinfo b { display: block; color: var(--navy-1); font-size: 1.05rem; }
.cinfo a, .cinfo span { color: var(--text-soft); }

/* ---------- Page hero (interior) ---------- */
.phero { background: var(--navy-1); color: #fff; position: relative; overflow: hidden; padding: clamp(48px, 7vw, 80px) 0; }
.phero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 120% at 0% 50%, rgba(230,50,0,.4), transparent), radial-gradient(50% 120% at 100% 50%, rgba(22,102,196,.45), transparent); }
.phero .container { position: relative; z-index: 2; }
.phero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); max-width: 800px; }
.phero p { color: #c4d3e6; font-size: 1.12rem; max-width: 640px; margin-top: 14px; }
.crumbs { font-size: .88rem; color: #8fa6c2; margin-bottom: 16px; }
.crumbs a { color: var(--ice-1); }

/* offers / coupons */
.coupon { position: relative; background: #fff; border: 2px dashed var(--fire-2); border-radius: 16px; padding: 30px 26px; text-align: center; box-shadow: var(--shadow-sm); transition: .2s ease; }
.coupon:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.coupon__amt { font-size: 2.6rem; font-weight: 900; line-height: 1; background: var(--fire-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.coupon h3 { margin: 12px 0 8px; }
.coupon p { font-size: .95rem; }
.coupon__terms { font-size: .74rem; color: var(--text-soft); margin-top: 12px; }
.coupon .btn { margin-top: 16px; }

/* membership plan */
.plan { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 34px 30px; box-shadow: var(--shadow); }
.plan--featured { border: 2px solid var(--ice-2); position: relative; }
.plan__tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--ice-grad); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; white-space: nowrap; }
.plan h3 { font-size: 1.4rem; }
.plan__price { font-size: 2.8rem; font-weight: 900; color: var(--navy-1); margin: 8px 0 4px; }
.plan__price span { font-size: 1rem; color: var(--text-soft); font-weight: 600; }
.plan ul { margin: 18px 0 22px; }

/* our promise / guarantee */
.promise { background: var(--navy-1); color: #cdd9e8; border-radius: 18px; padding: 40px; display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; }
.promise__seal { width: 130px; height: 130px; border-radius: 50%; background: var(--brand-grad); display: grid; place-items: center; text-align: center; color: #fff; font-weight: 900; line-height: 1.1; box-shadow: var(--shadow-lg); padding: 12px; }
.promise__seal span { font-size: .7rem; display: block; font-weight: 700; letter-spacing: .05em; }
.promise h2 { color: #fff; margin-bottom: 10px; }
.promise p { color: #c4d3e6; }
@media (max-width: 620px){ .promise { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 30px 24px; } }

/* blog */
.post-cat { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--fire-grad); padding: 5px 12px; border-radius: 999px; }
.post-cta-top { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.inline-cta { display: flex; flex-wrap: wrap; gap: 18px 22px; align-items: center; justify-content: space-between; background: linear-gradient(135deg, rgba(245,135,31,.10), rgba(22,102,196,.12)); border: 1px solid var(--line); border-left: 5px solid var(--fire-2); border-radius: 14px; padding: 22px 26px; margin: 34px 0; }
.inline-cta strong { display: block; color: var(--navy-1); font-size: 1.12rem; }
.inline-cta span { color: var(--text-soft); font-size: .95rem; }
.inline-cta__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.inline-cta__btns .btn { font-size: .95rem; padding: 12px 20px; }
.phero .post-cat { margin-bottom: 14px; }
.post-meta { font-size: .88rem; color: var(--text-soft); font-weight: 600; }
.phero .post-meta { color: #9fb6d2; margin-top: 10px; }
a.scard .post-meta { color: var(--text-soft); }

/* prose */
.prose { max-width: 820px; }
.prose h2 { margin: 36px 0 14px; }
.prose h3 { margin: 26px 0 10px; }
.prose p { margin-bottom: 16px; color: var(--text); }
.prose ul { margin: 0 0 18px; }
.prose ul li { position: relative; padding-left: 28px; margin-bottom: 10px; color: var(--text); }
.prose ul li::before { content: "✓"; position: absolute; left: 0; color: var(--fire-2); font-weight: 900; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #9fb1c8; padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .08em; }
.footer a { color: #9fb1c8; transition: color .15s; }
.footer a:hover { color: var(--ice-1); }
.footer li { margin-bottom: 10px; font-size: .94rem; }
.footer__brand { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.footer__brand img { width: 50px; height: 50px; border-radius: 10px; }
.footer__brand b { color: #fff; font-size: 1.15rem; display: block; }
.footer__brand span { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ice-1); }
.footer__desc { font-size: .94rem; margin-bottom: 18px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #fff; }
.footer__social a:hover { background: var(--brand-grad); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 50px; padding: 22px 0; font-size: .86rem; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }

/* ---------- Floating mobile call bar ---------- */
.callbar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--navy-1); border-top: 1px solid rgba(255,255,255,.1); padding: 9px 12px; gap: 10px; }
.callbar a { flex: 1; justify-content: center; padding: 13px; }

/* ---------- Helpers ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero__media { max-width: 520px; margin: 8px auto 0; width: 100%; }
  .hero__drive { display: none; }
  .ticker { min-width: 0; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .area-list { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .topbar__left .topbar__item--hours { display: none; }
  .nav__menu {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--navy-1); padding: 14px; gap: 4px; transform: translateY(-120%);
    transition: transform .3s ease, visibility .3s ease; visibility: hidden;
    box-shadow: var(--shadow-lg); max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav-open .nav__menu { transform: translateY(0); visibility: visible; }
  .nav__menu a { padding: 14px 16px; font-size: 1.05rem; }
  .has-drop .drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,.04); margin: 4px 0 4px 12px; max-height: 0; overflow: hidden; padding: 0 8px; border-radius: 8px; transition: max-height .28s ease, padding .28s ease; }
  .has-drop.open .drop { max-height: 460px; padding: 8px; }
  .has-drop > a::after { content: ""; }
  .has-drop .drop a { color: #cdd9e8 !important; }
  body.nav-open { overflow: hidden; }
  .burger { display: flex; }
  .nav__phone span { display: none; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .form .row { grid-template-columns: 1fr; }
  .callbar { display: flex; }
  body { padding-bottom: 66px; }
  .grid--3, .grid--4, .area-list { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr 1fr; }
}
