/* ============================================================
   All Florida Air and Heat — Premium single-page site
   Design: light & airy, trust-navy + cool cyan/teal accent
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --ink:        #0A1A2F;   /* deep navy — text & dark surfaces */
  --navy:       #0E2A47;
  --navy-2:     #12365C;
  --primary:    #0E62D6;   /* trust blue */
  --primary-600:#0B54BC;
  --cyan:       #17C0E6;   /* cool accent */
  --teal:       #14B8A6;
  --sky:        #E8F4FB;

  /* Neutrals */
  --bg:         #F5F9FC;
  --surface:    #FFFFFF;
  --surface-2:  #F0F6FB;
  --text:       #0A1A2F;
  --muted:      #55697C;
  --muted-2:    #7C8C9B;
  --border:     #E2ECF4;
  --border-2:   #D3E1EC;

  /* Effects */
  --shadow-sm:  0 1px 2px rgba(10,26,47,.06), 0 1px 3px rgba(10,26,47,.05);
  --shadow-md:  0 6px 20px -6px rgba(10,26,47,.14), 0 2px 6px rgba(10,26,47,.06);
  --shadow-lg:  0 24px 50px -18px rgba(10,26,47,.28), 0 8px 20px -10px rgba(10,26,47,.12);
  --shadow-cyan:0 20px 45px -18px rgba(14,98,214,.55);

  /* Warm gold/orange accent — ties back to the real logo (sunset + gold "HEAT").
     Used sparingly against the navy/blue/white base. */
  --gold:       #E8A33D;
  --gold-2:     #F6B24A;
  --gold-deep:  #C2410C;

  --grad-cool:  linear-gradient(135deg, var(--primary) 0%, var(--cyan) 100%);
  --grad-text:  linear-gradient(120deg, var(--primary) 0%, var(--teal) 60%, var(--cyan) 100%);
  --grad-gold:  linear-gradient(120deg, var(--gold-deep) 0%, var(--gold) 45%, var(--gold-2) 100%);

  --radius:     18px;
  --radius-sm:  12px;
  --radius-lg:  26px;

  --font-head:  'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:  'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --container:  1180px;
  --ease:       cubic-bezier(.22,.61,.36,1);
  --ease-out:   cubic-bezier(.16,1,.3,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.1; letter-spacing: -.02em; color: var(--ink); font-weight: 700; }

::selection { background: rgba(23,192,230,.28); }

:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 999;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }

.section { padding: clamp(64px, 9vw, 120px) 0; }

.section-head { max-width: 640px; margin: 0 auto clamp(38px, 5vw, 60px); text-align: center; }
.kicker {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
}
.kicker-light { color: var(--cyan); }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.section-lede { margin-top: 16px; color: var(--muted); font-size: 1.075rem; }

h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }

/* ---------- Buttons ---------- */
.btn {
  --btn-py: 12px; --btn-px: 20px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: .96rem;
  padding: var(--btn-py) var(--btn-px); border-radius: 100px; border: 1px solid transparent;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .2s, color .2s, border-color .2s;
  will-change: transform; white-space: nowrap; text-align: center;
}
.btn svg { flex: none; }
.btn-lg { --btn-py: 16px; --btn-px: 28px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--grad-cool); color: #fff; box-shadow: var(--shadow-cyan); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 26px 55px -18px rgba(14,98,214,.7); }
.btn-primary:active { transform: translateY(-1px); }

.btn-ghost { background: rgba(255,255,255,.7); color: var(--ink); border-color: var(--border-2); backdrop-filter: blur(6px); }
/* Warm gold hover — subtle nod to the logo's sunset/gold */
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--gold); color: var(--gold-deep); box-shadow: var(--shadow-md); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--border-2); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-outline svg { color: #F5B301; }
/* Call button icon should follow the text color, not the gold star tint */
.btn-outline[data-cta="hero-call"] svg { color: currentColor; }
/* Hero "Call Now" sits over the video: give it a light solid fill + medium navy
   border + darker text so it clearly reads as a button, while the gradient
   primary stays dominant. */
.btn-outline[data-cta="hero-call"] {
  background: rgba(255,255,255,.9); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: var(--navy); border-color: var(--navy); border-width: 2px;
  /* compensate the extra 1px border so height matches the primary CTA */
  padding: calc(var(--btn-py) - 1px) calc(var(--btn-px) - 1px);
}
.btn-outline[data-cta="hero-call"]:hover {
  background: #fff; border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow-md);
}

.btn-call {
  background: var(--ink); color: #fff; font-size: .92rem; padding: 10px 18px;
}
.btn-call:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--navy); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,249,252,.72);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled { background: rgba(255,255,255,.9); border-bottom-color: var(--border); box-shadow: 0 4px 20px -12px rgba(10,26,47,.25); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 74px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  overflow: hidden; background: #fff; box-shadow: var(--shadow-cyan); flex-shrink: 0;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.06rem; color: var(--ink); letter-spacing: -.02em; }
.brand-name em { font-style: normal; color: var(--primary); }
.brand-sub { font-size: .72rem; color: var(--muted-2); font-weight: 500; letter-spacing: .02em; margin-top: 2px; }

.main-nav { display: flex; gap: 30px; }
.main-nav a { font-weight: 500; font-size: .96rem; color: var(--muted); position: relative; padding: 4px 0; transition: color .2s; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--grad-cool); border-radius: 2px; transition: width .28s var(--ease-out); }
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { width: 100%; }

.header-call span { font-variant-numeric: tabular-nums; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(70px, 10vw, 120px) 0 clamp(70px, 8vw, 100px); background: var(--bg); }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

/* Background video */
.hero-video {
  position: absolute; left: 0; top: -9%; width: 100%; height: 118%;
  object-fit: cover; object-position: center; z-index: 0;
  will-change: transform;
}
/* Overall subtle veil: brightens + fades the hero into the page below so the
   footage stays quiet behind the foreground and blends into the white sections. */
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    /* soft scrim behind the floating review card (top-right) so it lifts off the raw video */
    radial-gradient(ellipse 44% 62% at 84% 40%, rgba(10,26,47,.20), rgba(10,26,47,0) 68%),
    linear-gradient(to bottom, rgba(245,249,252,.35) 0%, rgba(245,249,252,0) 22%, rgba(245,249,252,0) 60%, rgba(245,249,252,.75) 90%, var(--bg) 100%);
}
/* Left readability overlay: strong white on the left ~55% (behind the text block),
   then a long, gentle tail so it never ends abruptly against the right-side video. */
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(100deg,
      rgba(255,255,255,.97) 0%,
      rgba(255,255,255,.92) 26%,
      rgba(255,255,255,.7) 44%,
      rgba(255,255,255,.42) 58%,
      rgba(255,255,255,.18) 72%,
      rgba(255,255,255,.07) 86%,
      rgba(255,255,255,0) 100%);
}
.hero-bg .grid-overlay {
  position: absolute; inset: 0; z-index: 3;
  background-image: linear-gradient(rgba(14,98,214,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(14,98,214,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 70% 55% at 78% 30%, #000 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 78% 30%, #000 10%, transparent 72%);
  opacity: .6;
}
@media (max-width: 940px) {
  /* Edge-to-edge vertical scrim behind the stacked text — NOT a boxed card.
     It mirrors the desktop left-to-right scrim, rotated for the portrait layout:
     opaque behind the badge/headline/CTAs/trust near the top, then fading smoothly
     to fully clear lower down so it melts into the video with no hard boundary.
     Pixel-anchored stops keep the opaque zone tied to the text height (which is
     fairly constant across phone widths) rather than to the tall section. */
  .hero-overlay {
    background: linear-gradient(to bottom,
      rgba(255,255,255,.5) 0,
      rgba(255,255,255,.9) 90px,
      rgba(255,255,255,.88) 430px,
      rgba(255,255,255,.74) 560px,
      rgba(255,255,255,.3) 660px,
      rgba(255,255,255,0) 770px);
  }
  .hero-veil { background: linear-gradient(to bottom, rgba(245,249,252,.04), rgba(245,249,252,.3) 92%, var(--bg) 100%); }

  /* Text sits directly on the scrim above — strip the frosted-card wrapper so it
     no longer looks pasted on. */
  .hero-copy {
    background: none; border: 0; border-radius: 0; padding: 0; box-shadow: none;
    -webkit-backdrop-filter: none; backdrop-filter: none;
  }

  /* The review card stays a distinct rounded element, but a soft light halo plus a
     diffuse shadow feather its edges into the video instead of cutting a hard line
     as it scrolls past the footage. */
  .hero-card {
    border-color: rgba(255,255,255,.55);
    box-shadow:
      0 18px 48px -12px rgba(10,26,47,.22),
      0 6px 16px -8px rgba(10,26,47,.10),
      0 0 46px 12px rgba(255,255,255,.32);
  }
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 5vw, 70px); align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.75); border: 1px solid var(--border-2); backdrop-filter: blur(6px);
  padding: 8px 16px; border-radius: 100px; font-size: .84rem; font-weight: 600; color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); position: relative; }
.pulse-dot::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid var(--teal); animation: pulsering 2s ease-out infinite; }
@keyframes pulsering { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(1.6); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .pulse-dot::after { animation: none; opacity: 0; } }

.hero-copy h1 { font-size: clamp(2.5rem, 5.6vw, 4.2rem); font-weight: 800; margin: 22px 0 0; letter-spacing: -.035em; line-height: 1.04; }
/* Benefit line uses the warm gold gradient — savings + on-brand "HEAT" gold.
   Solid-gold fallback first; only go transparent where background-clip:text is
   supported, so the headline is never invisible on a browser that lacks it. */
.grad-text { color: var(--gold-deep); }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .grad-text { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* Normal inline text flow (not flex) so the label, inline Synchrony logo and the
   trailing clause wrap together as one sentence instead of fragmenting into
   separate columns on narrow screens. */
/* Financing highlight — a gold-tinted badge (echoing the .eyebrow pill) so the
   offer reads as a promoted callout instead of getting lost as body text under
   the CTA buttons. */
.hero-finance {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 22px; max-width: 100%;
  background: rgba(232,163,61,.14); border: 1px solid rgba(232,163,61,.42);
  padding: 10px 18px; border-radius: 16px;
  font-size: .92rem; font-weight: 600; color: var(--navy); line-height: 1.45;
  box-shadow: var(--shadow-sm);
}
/* override the global `img, svg { display:block }` reset so the logo flows inline
   within the sentence; the leading card icon stays fixed beside the text */
.hero-finance svg { flex: none; color: var(--gold-deep); }
.hero-finance strong { color: var(--ink); font-weight: 800; }
.synchrony-logo { display: inline-block; height: 1.25em; width: auto; vertical-align: -0.28em; margin: 0 1px; }
/* Synchrony logo is a link to their financing application — subtle lift on hover,
   consistent with the site's other interactive elements. */
.synchrony-link { display: inline-block; line-height: 0; border-radius: 4px; transition: opacity .2s var(--ease-out), transform .2s var(--ease-out); }
.synchrony-link:hover, .synchrony-link:focus-visible { opacity: .78; transform: translateY(-1px); }
/* Keep "through [Synchrony logo]:" together as one unbreakable unit so the logo
   never wraps to its own line with an orphaned colon on narrow screens. */
.finance-brand { white-space: nowrap; }

/* ---------- Financing section ---------- */
/* A single raised card on a tinted band — a short, focused financing callout
   between Why Us and Service Areas. */
.financing { background: var(--surface-2); }
.fin-card {
  max-width: 660px; margin: 0 auto; text-align: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 56px);
  box-shadow: var(--shadow-lg);
}
.fin-card .kicker { display: block; }
.fin-card h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.fin-logo-link {
  display: inline-block; line-height: 0; margin: 20px 0 22px; border-radius: 6px;
  transition: opacity .2s var(--ease-out), transform .2s var(--ease-out);
}
.fin-logo-link:hover, .fin-logo-link:focus-visible { opacity: .8; transform: translateY(-2px); }
.fin-logo { height: 34px; width: auto; display: block; }
.fin-copy { color: var(--muted); font-size: 1.05rem; line-height: 1.6; max-width: 52ch; margin: 0 auto 28px; }
.fin-copy strong { color: var(--ink); font-weight: 700; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 34px; }
.hero-trust li { display: inline-flex; align-items: center; gap: 9px; font-size: .92rem; color: var(--muted); font-weight: 500; }
.hero-trust svg { color: var(--teal); flex: none; }
.hero-trust strong { color: var(--ink); font-weight: 700; }
/* 4 trust items: wrap to a tidy 2x2 grid on smaller screens instead of shrinking text */
@media (max-width: 620px) {
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; }
  .hero-trust li { font-size: .9rem; }
}

/* Hero card */
.hero-card {
  position: relative; background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px) saturate(115%); -webkit-backdrop-filter: blur(14px) saturate(115%);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-card-glow { position: absolute; top: -40%; right: -20%; width: 260px; height: 260px; background: radial-gradient(circle, rgba(23,192,230,.35), transparent 70%); filter: blur(20px); pointer-events: none; }
.hero-card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; position: relative; }
.hc-badge { font-size: .74rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.stars { display: inline-flex; gap: 2px; color: #F5B301; }
.stars svg { fill: currentColor; }
.hero-card-quote { position: relative; margin-top: 18px; font-size: 1.08rem; font-weight: 500; color: var(--ink); font-family: var(--font-head); line-height: 1.4; letter-spacing: -.01em; }
.hero-card-cite { position: relative; margin-top: 10px; font-size: .85rem; font-weight: 600; color: var(--muted); }
.hero-card-rows { margin-top: 22px; border-top: 1px solid var(--border); padding-top: 8px; }
.hc-row { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--border); }
.hc-row:last-child { border-bottom: none; }
.hc-k { color: var(--muted); font-size: .92rem; }
.hc-v { font-weight: 600; color: var(--ink); font-size: .95rem; }
.hero-card-cta { display: inline-block; margin-top: 16px; font-family: var(--font-head); font-weight: 600; color: var(--primary); font-size: .96rem; transition: gap .2s, color .2s; }
.hero-card-cta:hover { color: var(--primary-600); }

.scroll-hint { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid var(--border-2); border-radius: 100px; z-index: 1; }
.scroll-hint span { position: absolute; left: 50%; top: 9px; width: 4px; height: 8px; margin-left: -2px; border-radius: 4px; background: var(--primary); animation: scrolldot 1.8s ease-in-out infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(14px); } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .scroll-hint span { animation: none; } }
@media (max-width: 900px) { .scroll-hint { display: none; } }

/* ---------- Stats ---------- */
.stats { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.stats::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(23,192,230,.16), transparent 70%); }
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: clamp(40px, 5vw, 58px) 22px; text-align: center; }
.stat { padding: 8px; }
.stat-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(2.1rem, 4vw, 3.1rem); letter-spacing: -.03em; background: linear-gradient(120deg,#fff,#bfe6f5); -webkit-background-clip: text; background-clip: text; color: transparent; font-variant-numeric: tabular-nums; }
.stat-label { display: block; margin-top: 6px; color: rgba(255,255,255,.7); font-size: .92rem; font-weight: 500; }
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; } }

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

.card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s;
  overflow: hidden;
}
.card::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: var(--grad-cool); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease-out); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 15px;
  background: var(--sky); color: var(--primary); margin-bottom: 18px;
  transition: transform .3s var(--ease-out), background .3s, color .3s;
}
.card:hover .card-icon { background: var(--grad-cool); color: #fff; transform: scale(1.06) rotate(-4deg); }
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; }

/* --- Services bento grid --- */
.services-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.services-grid .card-feature { grid-column: span 6; }
.services-grid .card-sm { grid-column: span 3; }
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .card-feature { grid-column: span 2; }
  .services-grid .card-sm { grid-column: span 1; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .card-feature, .services-grid .card-sm { grid-column: span 1; }
}

/* Featured cards — larger, tinted, with a tag + call link */
.card-feature {
  display: flex; flex-direction: column; padding: 34px 32px;
  background: linear-gradient(158deg, #EEF6FE 0%, #FFFFFF 62%);
  border-color: #D9EAFA;
}
.card-feature .card-icon { width: 60px; height: 60px; background: var(--grad-cool); color: #fff; box-shadow: var(--shadow-cyan); }
.card-feature h3 { font-size: clamp(1.35rem, 2.2vw, 1.6rem); }
.card-feature p { font-size: 1.04rem; flex: 1 0 auto; }
.card-feature .card-icon { margin-bottom: 20px; }

.card-tag {
  display: inline-flex; align-items: center; gap: 6px; width: fit-content;
  font-family: var(--font-head); font-weight: 600; font-size: .72rem;
  letter-spacing: .07em; text-transform: uppercase; color: var(--primary);
  background: rgba(14,98,214,.09); padding: 5px 12px; border-radius: 100px; margin-bottom: 18px;
}
.card-tag-warm { color: #C2410C; background: rgba(234,88,12,.1); }

.card-link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 20px;
  font-family: var(--font-head); font-weight: 600; font-size: .96rem; color: var(--primary);
  transition: gap .2s var(--ease-out), color .2s;
}
.card-link:hover { gap: 11px; color: var(--primary-600); }

/* Light blue-tinted supporting cards for visual variation */
.card-tint { background: linear-gradient(160deg, #F2F8FE 0%, #FFFFFF 72%); border-color: #E1EDF8; }
.card-sm { padding: 26px 24px; }
.card-sm .card-icon { width: 48px; height: 48px; margin-bottom: 15px; }
.card-sm h3 { font-size: 1.1rem; }
.card-sm p { font-size: .95rem; }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.why-copy .section-lede { margin-bottom: 30px; }
.why-list { display: grid; gap: 20px; }
.why-list li { display: flex; gap: 15px; }
.tick { display: grid; place-items: center; flex: none; width: 30px; height: 30px; border-radius: 9px; background: rgba(20,184,166,.12); color: var(--teal); margin-top: 2px; }
.why-list h4 { font-size: 1.06rem; margin-bottom: 3px; }
.why-list p { color: var(--muted); font-size: .96rem; }

/* Single visual: crane b-roll sits beside the copy as the second grid column,
   vertically centered by .why-grid's align-items:center. Stacks under the copy
   on mobile (grid row-gap provides the spacing). */
.why-media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border); background: var(--ink);
  aspect-ratio: 16 / 9;
}
.why-video { display: block; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- Service areas ---------- */
.service-areas { background: var(--surface-2); }
.sa-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.sa-copy .section-lede { max-width: 42ch; }
.sa-media {
  position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.sa-map { background: #fff; }
.sa-map-img { display: block; width: 100%; height: auto; }
/* Map labels drawn in the DOM (not baked into the PNG), matching the site's
   pill/tag typography. Positioned just left of each pin marker. */
.sa-pin-label {
  position: absolute; transform: translate(-100%, -50%);
  font-family: var(--font-head); font-weight: 600; font-size: .72rem;
  letter-spacing: .07em; text-transform: uppercase; color: var(--ink);
  background: rgba(255,255,255,.94); padding: 5px 11px; border-radius: 100px;
  box-shadow: var(--shadow-sm); white-space: nowrap; pointer-events: none;
}
.sa-pin-north { top: 61%; left: 78%; }
.sa-pin-south { top: 78.5%; left: 75.5%; }
@media (max-width: 860px) { .sa-grid { grid-template-columns: 1fr; } .sa-media { order: -1; } }
/* On phones the map is a supporting visual, not the hero of the section:
   cap its width well below the content width and center it so it doesn't
   dominate the copy below. */
@media (max-width: 600px) { .sa-media { max-width: 270px; margin-inline: auto; } }
@media (max-width: 480px) { .sa-pin-label { font-size: .58rem; padding: 3px 8px; letter-spacing: .03em; } }
@media (max-width: 380px) { .sa-media { max-width: 240px; } }

/* ---------- Process ---------- */
.process { background: var(--surface-2); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 28px 30px; box-shadow: var(--shadow-sm); }
.step-num { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--grad-cool); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; box-shadow: var(--shadow-cyan); margin-bottom: 18px; }
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .98rem; }
.steps .step:not(:last-child)::after {
  content: ""; position: absolute; top: 55px; right: -14px; width: 28px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--border-2) 0 6px, transparent 6px 11px);
}
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } .steps .step::after { display: none; } }

/* ---------- Before / After ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 760px) { .ba-grid { grid-template-columns: 1fr; gap: 20px; } }
.ba-item { margin: 0; }

.ba-compare {
  position: relative; aspect-ratio: 4 / 3; width: 100%;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
  user-select: none; -webkit-user-select: none; touch-action: pan-y;
  background: var(--surface-2);
}
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
/* Before is the clipped top layer; --pos (0–100) sets how far it's revealed from the left */
.ba-before-wrap { position: absolute; inset: 0; z-index: 2; clip-path: inset(0 calc((100 - var(--pos, 50)) * 1%) 0 0); will-change: clip-path; }

.ba-label {
  position: absolute; bottom: 12px; z-index: 3;
  font-family: var(--font-head); font-weight: 600; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: rgba(10,26,47,.6); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  padding: 5px 11px; border-radius: 100px; pointer-events: none;
}
.ba-label-before { left: 12px; }
.ba-label-after { right: 12px; }

.ba-handle {
  position: absolute; top: 0; bottom: 0; left: calc(var(--pos, 50) * 1%); transform: translateX(-50%);
  z-index: 4; width: 46px; padding: 0; border: none; background: none; cursor: ew-resize;
  display: flex; align-items: center; justify-content: center;
  touch-action: none;   /* handle owns the gesture so touch-drag isn't hijacked by scroll */
}
.ba-line { position: absolute; top: 0; bottom: 0; width: 3px; background: rgba(255,255,255,.92); box-shadow: 0 0 0 1px rgba(10,26,47,.14), 0 0 12px rgba(10,26,47,.18); }
.ba-knob {
  position: relative; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-gold); color: #fff; box-shadow: 0 6px 18px rgba(10,26,47,.34);
  transition: transform .2s var(--ease-out);
}
.ba-handle:hover .ba-knob, .ba-handle:focus-visible .ba-knob, .ba-compare.dragging .ba-knob { transform: scale(1.1); }
.ba-handle:focus-visible { outline: none; }
.ba-handle:focus-visible .ba-knob { box-shadow: 0 0 0 4px rgba(232,163,61,.4), 0 6px 18px rgba(10,26,47,.34); }

/* ---------- See Us In Action (job-site clips) ---------- */
.in-action { background: var(--surface-2); }

/* 3 columns desktop → 2 tablet → 1 mobile */
.ia-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
@media (max-width: 900px) { .ia-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 640px; } }
@media (max-width: 560px) { .ia-grid { grid-template-columns: 1fr; gap: 22px; max-width: 340px; } }
.ia-item { margin: 0; }

/* Fixed 9:16 card — same rounding/shadow/border language as the before/after
   cards. aspect-ratio reserves the box so the lazy video causes no layout shift. */
.ia-card {
  position: relative; aspect-ratio: 9 / 16; width: 100%;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
  background: var(--ink);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.ia-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ia-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
  background: var(--ink);
}

/* Instagram handle inline in the lede */
.ia-handle {
  font-weight: 700; color: var(--primary);
  text-decoration: none; white-space: nowrap;
  transition: color .2s var(--ease-out);
}
.ia-handle:hover, .ia-handle:focus-visible { color: var(--navy); text-decoration: underline; }

/* Follow CTA below the grid */
.ia-cta { text-align: center; margin-top: clamp(30px, 4vw, 44px); }
/* Instagram brand-gradient button — recognizably Instagram, same size/shape
   language as the site's other buttons. */
.btn-instagram {
  color: #fff; border: none;
  background: linear-gradient(70deg, #f9ce34 0%, #ee2a7b 45%, #6228d7 100%);
  box-shadow: 0 16px 34px -14px rgba(214,39,111,.6);
}
.btn-instagram:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -14px rgba(214,39,111,.72); color: #fff; }
.btn-instagram:active { transform: translateY(-1px); }
.ia-cta-note { margin-top: 14px; color: var(--muted); font-size: .9rem; }

/* ---------- Reviews ---------- */
/* Rating summary bar */
.reviews-summary {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px 16px;
  width: fit-content; max-width: 100%; margin: 0 auto clamp(34px, 4vw, 48px);
  background: var(--surface); border: 1px solid var(--border); border-radius: 100px;
  padding: 12px 26px; box-shadow: var(--shadow-sm);
}
.rs-google { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 1rem; }
.rs-divider { width: 1px; height: 22px; background: var(--border-2); }
.rs-score { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--ink); letter-spacing: -.02em; }
.rs-score[data-placeholder] { font-style: normal; color: var(--ink); } /* keep the score looking like a score */
.reviews-summary .stars-sm { margin-bottom: 0; }
.rs-count { color: var(--muted); font-size: .9rem; }

/* Cards — natural (uneven) heights so real reviews of different lengths sit gracefully */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

/* 5-review layout: flex-wrap so the final row centers instead of leaving an orphan cell */
.reviews-grid.reviews-grid-5 { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; align-items: flex-start; }
.reviews-grid-5 .review-card { flex: 1 1 300px; max-width: 362px; }
@media (max-width: 760px) { .reviews-grid-5 .review-card { flex-basis: 100%; max-width: 520px; } }

.review-card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out); }
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.review-source { position: absolute; top: 24px; right: 24px; line-height: 0; opacity: .95; }
.stars-sm { color: #F5B301; margin-bottom: 14px; }
.review-text { color: var(--text); font-size: 1.02rem; line-height: 1.62; padding-right: 22px; }
.review-author { display: flex; align-items: center; gap: 10px; margin-top: 20px; }
.ra-avatar { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--grad-cool); color: #fff; font-family: var(--font-head); font-weight: 700; }
.ra-verified { display: grid; place-items: center; flex: none; width: 24px; height: 24px; border-radius: 50%; background: rgba(20,184,166,.15); color: var(--teal); }
.ra-name { font-weight: 600; color: var(--ink); font-size: .95rem; }
.reviews-cta { text-align: center; margin-top: 40px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy) 0%, var(--ink) 55%, #0a2036 100%); color: #fff; }
.cta-band::before { content: ""; position: absolute; top: -60%; left: 60%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(23,192,230,.28), transparent 65%); filter: blur(30px); }
.cta-band::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse 60% 100% at 20% 50%, #000, transparent 70%); -webkit-mask-image: radial-gradient(ellipse 60% 100% at 20% 50%, #000, transparent 70%); }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: clamp(48px, 6vw, 76px) 22px; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.cta-lede { margin-top: 12px; color: rgba(255,255,255,.72); max-width: 34em; font-size: 1.05rem; }
.btn-cta { flex: none; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.contact-list { display: grid; gap: 18px; margin: 30px 0; }
.contact-list li { display: flex; gap: 14px; align-items: center; }
.ci-icon { display: grid; place-items: center; flex: none; width: 46px; height: 46px; border-radius: 13px; background: var(--sky); color: var(--primary); }
.ci-label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-2); font-weight: 600; }
.ci-value { font-weight: 600; color: var(--ink); font-size: 1.04rem; }
a.ci-value { transition: color .2s; }
a.ci-value:hover { color: var(--primary); }
/* Inline financing link within a contact-info line */
.ci-link { color: var(--primary); font-weight: 600; transition: color .2s; }
.ci-link:hover, .ci-link:focus-visible { text-decoration: underline; }

.hours { margin-top: 8px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.hours-title { display: flex; align-items: center; gap: 9px; font-size: 1rem; margin-bottom: 14px; color: var(--ink); }
.hours-title svg { color: var(--primary); }
.hours-list { display: grid; gap: 10px; }
.hours-list > div { display: flex; justify-content: space-between; align-items: center; font-size: .98rem; }
.hours-list dt { color: var(--muted); }
.hours-list dd { font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }

/* Form */
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-md); }
/* Honeypot: pushed off-screen rather than display:none (which bots skip) so it
   stays in the DOM/form for bots to fill but is invisible and unfocusable for
   real users. */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.hp-field input { width: 1px; height: 1px; }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 7px; font-family: var(--font-head); }
.field .opt { color: var(--muted-2); font-weight: 400; font-family: var(--font-body); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--text); background: #fff;
  border: 1px solid var(--border-2); border-radius: var(--radius-sm); padding: 13px 15px;
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field textarea { resize: vertical; min-height: 84px; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #C0D3E3; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14,98,214,.1);
}
.field input:user-invalid, .field.invalid input, .field.invalid select { border-color: #DC2626; }
.field-error { display: block; min-height: 0; color: #DC2626; font-size: .82rem; margin-top: 5px; }
.field.invalid .field-error { min-height: 1em; }

.btn-spinner { display: none; width: 18px; height: 18px; border: 2.5px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
.btn.loading .btn-label { opacity: .7; }
.btn.loading .btn-spinner { display: inline-block; }

.form-note { margin-top: 14px; font-weight: 600; font-size: .96rem; text-align: center; min-height: 0; transition: min-height .2s; }
.form-note.success { color: var(--teal); }
.form-note.error { color: #DC2626; }
.form-fineprint { margin-top: 14px; text-align: center; font-size: .9rem; color: var(--muted); }
.form-fineprint a { color: var(--primary); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding-top: clamp(48px, 6vw, 74px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 36px; padding-bottom: 44px; }
.footer-logo {
  display: inline-block; background: #fff; border-radius: 16px;
  padding: 16px 20px; box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: transform .2s;
}
.footer-logo:hover { transform: translateY(-2px); }
.footer-logo img { display: block; width: 260px; max-width: 100%; height: auto; }
.footer-desc { margin-top: 18px; font-size: .95rem; max-width: 30ch; }
.footer-license { margin-top: 14px; font-size: .88rem; }
.footer-license strong { color: #fff; }
.footer-col h4 { color: #fff; font-size: .96rem; margin-bottom: 16px; letter-spacing: 0; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: .94rem; transition: color .2s; }
.footer-col a:hover { color: var(--cyan); }
/* Financing line in the footer Contact column — match the other lines' size and
   underline the inline link so it's discoverable within the sentence. */
.footer-finance { font-size: .94rem; }
.footer-finance a { text-decoration: underline; text-underline-offset: 2px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); color: #fff; transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--grad-cool); transform: translateY(-2px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; padding: 22px 22px 30px; border-top: 1px solid rgba(255,255,255,.1); font-size: .88rem; }
.footer-tag { font-family: var(--font-head); font-style: italic; color: var(--cyan); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Mobile sticky call bar ---------- */
.mobile-call-bar {
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 90;
  display: none; align-items: center; justify-content: center; gap: 10px;
  background: var(--grad-cool); color: #fff; font-family: var(--font-head); font-weight: 700;
  padding: 15px; border-radius: 100px; box-shadow: var(--shadow-lg);
  transform: translateY(140%); transition: transform .4s var(--ease-out);
}
.mobile-call-bar.show { transform: translateY(0); }
@media (max-width: 760px) {
  .mobile-call-bar { display: flex; }
  .main-nav, .header-call { display: none; }
  /* Clear the fixed call bar (bar height + its 14px bottom offset + breathing
     room) so it never covers the footer's last line. */
  body { padding-bottom: 84px; }
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
[data-reveal-delay="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Placeholder styling — highlights text to swap before launch */
[data-placeholder] { color: var(--muted-2); font-style: italic; }

/* ---------- Responsive hero ---------- */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 440px; }
}
@media (max-width: 600px) {
  /* Slightly smaller, tighter headline that wraps evenly: the name reads as one
     line and the benefit balances across two, instead of three mismatched lines. */
  .hero-copy h1 { font-size: clamp(1.5rem, 6vw, 2.4rem); line-height: 1.16; letter-spacing: -.03em; text-wrap: balance; }
  .hero-cta { margin-top: 26px; gap: 12px; }
  .hero-cta .btn-lg { width: 100%; }         /* full-width, evenly-spaced CTAs when stacked */
  .hero-finance { margin-top: 20px; }
  .hero-trust { margin-top: 26px; }
  /* Clear breathing room between the frosted text panel and the stacked review card. */
  .hero-inner { gap: 26px; }
}
/* On the narrowest phones give each trust signal its own full-width row so the
   license number and labels stop wrapping mid-phrase. */
@media (max-width: 460px) {
  .hero-trust { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}
