/*
Theme Name: Fresh Tech AC
Theme URI: https://freshtechac.com
Author: Fresh Tech AC
Description: Custom WordPress theme for the Fresh Tech AC homepage, legal pages, Podium integration, referral form, and approved Vercel design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Text Domain: fresh-tech-ac
*/

/* Fresh Tech AC — Homepage prototype */
/* footer social icons */
.footer .social {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; transition: all 0.2s;
}
.footer .social:hover {
  background: var(--green);
  border-color: var(--green);
  color: #0A1F5E;
  transform: translateY(-2px);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

.freshtech-html-fallback {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 22px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0A1F5E;
  background: #fff;
}
.fallback-hero {
  display: grid;
  gap: 18px;
  padding: 42px;
  border: 1px solid #DCE3F2;
  border-radius: 18px;
  background: linear-gradient(135deg, #EEF2FE 0%, #fff 72%);
}
.fallback-eyebrow {
  margin: 0;
  color: #4ba822;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.fallback-hero h1,
.fallback-section h2,
.fallback-section h3 {
  margin: 0;
  font-family: Manrope, Inter, system-ui, sans-serif;
}
.fallback-hero h1 {
  max-width: 820px;
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.02;
}
.fallback-hero p,
.fallback-section p,
.fallback-section li {
  color: #1e3268;
  font-size: 17px;
  line-height: 1.6;
}
.fallback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.fallback-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  color: #fff;
  background: #5BC72A;
  font-weight: 800;
  text-decoration: none;
}
.fallback-actions a:first-child { background: #1F4FE0; }
.fallback-proof {
  margin: 0;
  font-weight: 700;
}
.fallback-section {
  padding: 44px 0 0;
}
.fallback-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.fallback-grid article,
.fallback-section article {
  border: 1px solid #DCE3F2;
  border-radius: 14px;
  padding: 18px;
  background: #F7F9FC;
}
.fallback-list {
  columns: 2;
  margin: 18px 0;
  padding-left: 20px;
}
@media (max-width: 780px) {
  .freshtech-html-fallback { padding: 36px 16px; }
  .fallback-hero { padding: 28px 22px; }
  .fallback-grid { grid-template-columns: 1fr; }
  .fallback-list { columns: 1; }
}

/* a11y: stronger focus rings for keyboard users */
*:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
  border-radius: 6px;
}

/* mobile bar safe-area: keep last section content visible */
@media (max-width: 760px) {
  body { padding-bottom: 84px; }
  .field input, .field select, .field textarea { font-size: 16px !important; } /* prevent iOS zoom-in */
}

/* bump small text everywhere for older readers */
.faq summary { font-size: 17px; }
.faq .body { font-size: 16px; }
.review-card .quote { font-size: 16.5px; }
.review-card .who .name { font-size: 15px; }
.financing-card .row { font-size: 15px; }
.footer a { font-size: 15px; }
.footer .brand p { font-size: 15px; }
.trust-bar-item { font-size: 15px; }
.step p { font-size: 15px; }
.field label { font-size: 14px; }

/* live tech availability indicator */
.live-status {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 14px; margin: 14px 0 4px;
  background: rgba(91, 199, 42, 0.10);
  border: 1px solid rgba(91, 199, 42, 0.30);
  border-radius: 999px;
  font-size: 13px; font-weight: 600; color: #1a3d0a;
  letter-spacing: -0.005em;
}
.live-status b { color: var(--green-700); font-weight: 800; }
.live-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green); position: relative;
  box-shadow: 0 0 0 0 rgba(91, 199, 42, 0.7);
  animation: liveDot 2s infinite;
}
@keyframes liveDot {
  0% { box-shadow: 0 0 0 0 rgba(91, 199, 42, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(91, 199, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(91, 199, 42, 0); }
}

/* scroll-to-top — solid blue, simple, visible on every breakpoint */
.to-top {
  position: fixed; right: 22px; bottom: 320px;
  width: 48px; height: 48px; border-radius: 999px;
  background: #1E4FD9; color: #fff;
  border: none; cursor: pointer;
  box-shadow: 0 10px 24px rgba(31,79,224,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(8px) scale(0.9);
  transition: opacity 0.25s, transform 0.25s, background 0.15s;
  z-index: 60;
  pointer-events: none;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: #1740b8; transform: translateY(-2px) scale(1.04); }
@media (max-width: 760px) {
  /* sit above the Podium prompt and bubble */
  .to-top { bottom: 220px; right: 14px; width: 46px; height: 46px; }
}

:root {
  /* Fresh Tech brand: electric blue + lime green */
  --blue: #1F4FE0;
  --blue-600: #1a44c4;
  --blue-700: #143599;
  --blue-800: #0d2778;
  --blue-900: #0a1f5e;
  --blue-50: #eef2fe;
  --blue-100: #dbe3fc;
  --blue-200: #b8c5f5;
  --green: #5BC72A;
  --green-600: #4ba822;
  --green-700: #3d8a1a;
  --green-50: #eef9e6;
  --green-100: #dcf2cb;
  --green-200: #c5ecae;
  /* CTA = bold green, no orange */
  --cta: #5BC72A;
  --cta-600: #4ba822;
  --orange: #5BC72A;
  --bg: #F7F9FC;
  --bg-2: #EEF2FE;
  --ink: #0A1F5E;
  --ink-2: #1e3268;
  --ink-3: #5a6a8a;
  --line: #DCE3F2;
  --card: #ffffff;
  --grad-brand: linear-gradient(135deg, #1F4FE0 0%, #143599 60%, #0d2778 100%);
  --grad-vivid: linear-gradient(135deg, #1F4FE0 0%, #3d6ee8 50%, #5BC72A 130%);
  --grad-green: linear-gradient(135deg, #5BC72A 0%, #4ba822 100%);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow: 0 4px 12px rgba(15, 23, 42, 0.06), 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 24px 48px -12px rgba(31,79,224, 0.18), 0 8px 16px rgba(15, 23, 42, 0.06);
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 20px;
  --r-xl: 28px;
  --maxw: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg); background-image: radial-gradient(at 0% 0%, rgba(31,79,224,0.04) 0%, transparent 50%), radial-gradient(at 100% 100%, rgba(91,199,42,0.04) 0%, transparent 50%); font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-wrap: pretty;
}
h1, h2, h3, h4 { font-family: 'Manrope', 'Inter', sans-serif; font-weight: 800; color: var(--ink); margin: 0; letter-spacing: -0.02em; line-height: 1.08; }
h1 { font-size: clamp(36px, 5.2vw, 60px); letter-spacing: -0.03em; }
h2 { font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -0.025em; }
h3 { font-size: clamp(18px, 1.4vw, 22px); }
p { margin: 0; color: var(--ink-2); }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px){ .container { padding: 0 18px; } }

/* ---------- ANNOUNCEMENT BAR ---------- */
.announce {
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
.announce .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; height: 38px; }
.announce .left { display: flex; gap: 10px; align-items: center; opacity: 0.95; min-width: 0; }
.announce .left span { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.announce .left .dot { width: 4px; height: 4px; border-radius: 50%; background: #ffffff66; }
.announce .right a { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: #fff; white-space: nowrap; }
.announce .right a:hover { color: #ffd9b8; }
@media (max-width: 760px){ .announce .left .hide-mob { display: none; } }
@media (max-width: 480px){ .announce .left .dot { display:none } .announce .left { gap: 8px; font-size: 12.5px;} }

/* ---------- HEADER ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.header.scrolled { box-shadow: 0 1px 0 rgba(15,23,42,0.04), 0 4px 16px rgba(15,23,42,0.04);}
.header .container { display: flex; align-items: center; gap: 24px; height: 92px; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { display: inline-flex; align-items: center; gap: 8px; }
.brand-logo img.logo-img { height: 72px; width: auto; display: block; }
@media (max-width: 540px){ .brand-logo img.logo-img { height: 56px; } .header .container { height: 76px; } }

.nav { display: flex; gap: 6px; align-items: center; }
.nav a { font-size: 14.5px; font-weight: 600; color: var(--ink); padding: 8px 12px; border-radius: 8px; white-space: nowrap; }
.nav a:hover { background: var(--blue-50); color: var(--blue); }
@media (max-width: 980px){ .nav { display: none; } }

.header-cta { display: flex; align-items: center; justify-content: flex-end; gap: 8px; flex-wrap: nowrap; }
.header-cta .btn { min-height: 40px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; border-radius: 12px; padding: 11px 16px; font-size: 14.5px; transition: all 0.15s ease; white-space: nowrap; line-height: 1; }
.btn-orange { background: linear-gradient(135deg, #5BC72A 0%, #4ba822 100%); color: #fff; box-shadow: 0 8px 20px rgba(91,199,42,0.38), 0 2px 4px rgba(91,199,42,0.2), inset 0 -2px 0 rgba(0,0,0,0.12); }
.btn-orange:hover { filter: brightness(1.05); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(91,199,42,0.5), inset 0 -2px 0 rgba(0,0,0,0.12); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 6px 14px rgba(31,79,224,0.25), inset 0 -2px 0 rgba(0,0,0,0.1); }
.btn-blue:hover { background: var(--blue-700); transform: translateY(-1px); }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 6px 14px rgba(91,199,42,0.25), inset 0 -2px 0 rgba(0,0,0,0.08); }
.btn-green:hover { filter: brightness(0.95); transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-lg { padding: 15px 22px; font-size: 16px; border-radius: 14px; }
.btn-block { width: 100%; }

.menu-toggle { display: none; }
@media (max-width: 980px){
  .menu-toggle { display: inline-flex; padding: 10px; border-radius: 10px; background: var(--blue-50); color: var(--blue); border: 1px solid #cdd9ff; }
  .header-cta .btn-text { display: none; }
}
@media (max-width: 540px){
  .header-cta .btn-book { display: none; }
}
.mobile-menu { display: none; }
.mobile-menu.open { display: block; padding: 16px 24px 22px; border-top: 1px solid var(--line); background: #fff; }
.mobile-menu a { display: block; padding: 12px 6px; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border-bottom: 0; }

/* ---------- HERO ---------- */
.hero { padding: 56px 0 70px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 980px){ .hero-grid { grid-template-columns: 1fr; gap: 32px; } .hero { padding: 36px 0 16px; } }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-50); color: var(--blue);
  padding: 7px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: -0.01em;
  border: 1px solid #dbe3fc;
}
.hero-badge .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(91,199,42,0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(91,199,42,0.6);} 70%{ box-shadow: 0 0 0 8px rgba(91,199,42,0);} 100%{ box-shadow: 0 0 0 0 rgba(91,199,42,0);} }

.hero h1 { margin-top: 18px; }
.hero h1 .accent { background: linear-gradient(135deg, #1F4FE0 0%, #3d6ee8 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero h1 .accent2 { color: var(--green-600); white-space: nowrap; }
.hero-sub { margin-top: 18px; font-size: 17px; line-height: 1.6; max-width: 560px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; align-items: stretch; }
.hero-ctas .btn { padding: 14px 20px; font-size: 15.5px; }
.hero-ctas .btn-orange { padding: 16px 22px; font-size: 16px; }
.hero-micro { margin-top: 14px; font-size: 13px; color: var(--ink-3); display: flex; align-items: center; gap: 8px; }
.hero-micro .req { color: var(--blue); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }

.trust-strip { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px 10px; }
.trust-chip { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 12px; font-size: 12.5px; font-weight: 600; color: var(--ink-2); box-shadow: var(--shadow-sm); }
.trust-chip svg { color: var(--blue); }
.trust-chip.star svg { color: #f5a623; }
.trust-chip.green svg { color: var(--green); }

/* hero photo */
.hero-photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, #dbe3fc 0%, #b8c5f5 100%);
  box-shadow: var(--shadow-lg);
  border: 1px solid #c0cef7;
}
.hero-photo .placeholder {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(31,79,224,0.07) 0 12px, rgba(31,79,224,0) 12px 24px);
}
.hero-photo .ph-label {
  position: absolute; left: 22px; bottom: 22px; right: 22px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11.5px; color: var(--blue-700);
  background: rgba(255,255,255,0.85); border: 1px solid #c0cef7;
  padding: 8px 12px; border-radius: 10px; backdrop-filter: blur(4px);
}
.hero-photo .ph-label b { color: var(--ink); font-weight: 700; }
.hero-photo .ph-corner {
  position: absolute; top: 18px; right: 18px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px; color: var(--blue-700);
  background: rgba(255,255,255,0.85); border: 1px solid #c0cef7;
  padding: 5px 9px; border-radius: 8px;
}
.hero-photo .truck-stripes {
  position: absolute; left: -20%; right: -20%; top: 38%; height: 22%;
  background: linear-gradient(180deg, transparent 0%, rgba(31,79,224,0.18) 30%, rgba(91,199,42,0.22) 100%);
  transform: skewY(-6deg);
}
.hero-mascot {
  position: absolute;
  inset: 9% 7% auto 7%;
  width: 86%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(10,31,94,0.28));
  z-index: 2;
}
.hero-photo .ph-corner,
.hero-photo .ph-label,
.hero-overlay-card {
  z-index: 3;
}

.hero-overlay-card {
  position: absolute; left: -22px; bottom: -28px;
  background: #fff; border-radius: 16px; padding: 14px 16px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px; max-width: 280px;
}
.hero-overlay-card .stars { color: #f5a623; font-size: 14px; letter-spacing: 1px; }
.hero-overlay-card .num { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 22px; color: var(--ink); line-height: 1; }
.hero-overlay-card .lbl { font-size: 12px; color: var(--ink-3); margin-top: 4px; }
.hero-overlay-card .g { width: 36px; height: 36px; border-radius: 10px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; font-family: 'Manrope', sans-serif; font-weight: 800; color: #4285F4; font-size: 18px; }
@media (max-width: 980px){ .hero-overlay-card { position: static; margin-top: 16px; left: auto; bottom: auto; max-width: none; } }

/* ---------- EMERGENCY BAND ---------- */
.emergency {
  background: linear-gradient(120deg, #1F4FE0 0%, #143599 60%, #0a1f5e 100%);
  color: #fff; border-radius: 24px; padding: 28px 32px; margin: 32px auto;
  max-width: calc(var(--maxw) - 0px);
  position: relative; overflow: hidden;
}
.emergency-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px;}
.emergency::before {
  content: ''; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px;
  background: radial-gradient(closest-side, rgba(91,199,42,0.5), transparent 70%);
}
.emergency-grid { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; position: relative; }
@media (max-width: 820px){ .emergency-grid { grid-template-columns: 1fr; } }
.emergency h2 { color: #fff; font-size: clamp(26px, 3vw, 36px); display: flex; align-items: center; gap: 14px; }
.emergency h2 .siren { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #5BC72A, #4ba822); display: grid; place-items: center; box-shadow: 0 0 0 8px rgba(91,199,42,0.25), 0 6px 14px rgba(91,199,42,0.4); animation: pulse-orange 2s infinite; color: #fff; }
@keyframes pulse-orange { 0%{ box-shadow: 0 0 0 0 rgba(91,199,42,0.6), 0 6px 14px rgba(91,199,42,0.4);} 70%{ box-shadow: 0 0 0 18px rgba(91,199,42,0), 0 6px 14px rgba(91,199,42,0.4);} 100%{ box-shadow: 0 0 0 0 rgba(91,199,42,0), 0 6px 14px rgba(91,199,42,0.4);} }
.emergency p { color: #dbe3fc; margin-top: 8px; max-width: 600px; font-size: 15.5px; }
.emergency-buttons { display: flex; gap: 10px; flex-wrap: wrap; align-items: stretch; }
.emergency-buttons .btn { min-width: 176px; }
@media (max-width: 820px){ .emergency-buttons { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); } .emergency-buttons .btn { min-width: 0; } }
@media (max-width: 380px){ .emergency-buttons { grid-template-columns: 1fr; } }

/* ---------- SPECIALS STRIP (coupons near top) ---------- */
.specials-strip {
  max-width: var(--maxw);
  margin: 28px auto 0;
  padding: 0 24px;
}
.specials-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.specials-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-600);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.specials-head .sub {
  font-size: 13.5px;
  color: var(--ink-3);
  font-weight: 500;
}
.specials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 920px) { .specials-grid { grid-template-columns: 1fr; } }

.special-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.18s ease;
  overflow: hidden;
}
.special-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(15,23,42,0.08);
  border-color: rgba(31,79,224,0.25);
}
.special-card::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 4px;
  background: var(--blue);
}
.special-card.accent-blue::before  { background: linear-gradient(90deg, #1E4FD9, #143599); }
.special-card.accent-green::before { background: linear-gradient(90deg, #5BC72A, #4CA822); }
.special-card.accent-orange::before{ background: linear-gradient(90deg, #f97316, #ea580c); }

.special-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.special-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.special-ic {
  width: 32px; height: 32px;
  border-radius: 10px;
  display: grid; place-items: center;
  color: #fff;
}
.accent-blue   .special-ic { background: linear-gradient(135deg, #1E4FD9, #143599); }
.accent-green  .special-ic { background: linear-gradient(135deg, #5BC72A, #4CA822); }
.accent-orange .special-ic { background: linear-gradient(135deg, #f97316, #ea580c); }

.special-value {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 2px 0 8px;
}
.accent-blue   .special-value { color: var(--blue); }
.accent-green  .special-value { color: var(--green-600); }
.accent-orange .special-value { color: #ea580c; }

.special-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.special-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 14px;
}

.special-code-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.special-code-label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--ink-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.special-code {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  background: #f1f5f9;
  border: 1px dashed #cbd5e1;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: all 0.15s;
}
.special-code:hover {
  background: #e8eefc;
  border-color: var(--blue);
  color: var(--blue);
}
.special-copied {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--green-600);
  opacity: 0;
  transition: opacity 0.25s;
}
.special-fine {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--ink-3);
  margin: 4px 0 14px;
}
.special-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  margin-top: auto;
  text-decoration: none;
  color: var(--green-600);
}
.special-cta svg { transition: transform 0.18s; }
.special-card:hover .special-cta svg { transform: translateX(3px); }
.special-card:hover .special-cta { color: var(--blue); }

/* ---------- SECTIONS ---------- */
section.block { padding: 64px 0; }
@media (max-width: 768px){ section.block { padding: 44px 0; } }
.section-head { max-width: 760px; margin: 0 auto 36px; text-align: center; }
.section-head .eyebrow { font-size: 12px; font-weight: 700; color: var(--green-600); letter-spacing: 0.18em; text-transform: uppercase; }
.section-head h2 { margin-top: 8px; }
.section-head p { margin-top: 14px; font-size: 17px; color: var(--ink-2); }

/* ---------- STATS ROW ---------- */
.stats-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
@media (max-width: 980px){ .stats-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px){ .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 18px 16px; text-align: center; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; align-items: center; gap: 8px; transition: transform 0.15s, box-shadow 0.15s; }
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.stat-card .icon-wrap { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, #1F4FE0, #143599); display: grid; place-items: center; color: #fff; box-shadow: 0 4px 10px rgba(31,79,224,0.28); }
.stat-card .v { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 18px; line-height: 1.1; color: var(--ink); }
.stat-card .l { font-size: 12px; color: var(--ink-3); line-height: 1.3; }
.stat-card.star .icon-wrap { background: linear-gradient(135deg, #5BC72A, #4ba822); color: #fff; box-shadow: 0 4px 10px rgba(91,199,42,0.3); }
.stat-card.green .icon-wrap { background: linear-gradient(135deg, #143599, #1F4FE0); color: #fff; box-shadow: 0 4px 10px rgba(31,79,224,0.3); }

/* ---------- SERVICES ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 980px){ .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px; transition: all 0.18s ease; position: relative; overflow: hidden;
}
.service-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-3px); }
.service-card .ic {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, #1F4FE0 0%, #3d6ee8 60%, #143599 100%);
  display: grid; place-items: center; color: #fff; margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(31,79,224,0.32), inset 0 -2px 0 rgba(0,0,0,0.15);
  position: relative;
}
.service-card .ic::after { content:''; position:absolute; inset:0; border-radius:14px; background: linear-gradient(135deg, transparent 50%, rgba(91,199,42,0.25)); pointer-events:none; }
.service-card h3 { font-size: 19px; }
.service-card p { margin-top: 8px; font-size: 14.5px; line-height: 1.55; }
.service-card .more {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 700; color: var(--blue);
}
.service-card:hover .more { color: var(--green-600); }
.service-card .more svg { transition: transform 0.18s; }
.service-card:hover .more svg { transform: translateX(3px); }

/* ---------- HOW IT WORKS ---------- */
.how-bg { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; }
@media (max-width: 900px){ .how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .how-grid { grid-template-columns: 1fr; } }
.step {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r);
  padding: 22px; position: relative;
}
.step .num { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, #1F4FE0 0%, #143599 100%); color: #fff; display: grid; place-items: center; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 16px; box-shadow: 0 6px 14px rgba(31,79,224,0.35); }
.step h3 { font-size: 17px; margin-top: 14px; }
.step p { margin-top: 6px; font-size: 14px; }

/* ---------- BOOKING FORM ---------- */
.booking-wrap { background: linear-gradient(180deg, #fff 0%, #f4f8fc 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.booking-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
@media (max-width: 900px){ .booking-grid { grid-template-columns: 1fr; gap: 28px; } }
.booking-left h2 { font-size: clamp(28px, 3.4vw, 42px); }
.booking-left .lead { margin-top: 14px; font-size: 16.5px; color: var(--ink-2); }
.booking-perks { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.booking-perks li { list-style: none; display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink); font-weight: 500; }
.booking-perks .check { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; background: var(--green-50); color: var(--green); display: grid; place-items: center; margin-top: 2px; }

.booking-card {
  background: #fff; border-radius: var(--r-lg); border: 1px solid var(--line);
  box-shadow: var(--shadow-lg); padding: 28px;
}
@media (max-width: 760px) {
  .booking-card { padding-bottom: 118px; }
}
.steps-bar { display: flex; gap: 8px; margin-bottom: 22px; }
.steps-bar .pill { flex: 1; height: 6px; border-radius: 3px; background: var(--line); transition: background 0.2s; }
.steps-bar .pill.done { background: var(--green); }
.steps-bar .pill.active { background: var(--blue); }
.step-label { font-size: 12px; color: var(--ink-3); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.step-q { margin-top: 6px; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 22px; color: var(--ink); letter-spacing: -0.02em; }

.field { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: 11px; background: #fff;
  color: var(--ink); transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(31,79,224,0.12);}
.field textarea { resize: vertical; min-height: 80px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px){ .field-row { grid-template-columns: 1fr; } }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 10px;}
@media (max-width: 380px){ .choice-grid { grid-template-columns: 1fr; } }
.choice {
  border: 1.5px solid var(--line); padding: 14px; border-radius: 12px; cursor: pointer; background: #fff;
  display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14.5px; color: var(--ink);
  transition: all 0.15s;
}
.choice:hover { border-color: #c4d6e7; background: #fafcff; }
.choice.selected { border-color: var(--blue); background: var(--blue-50); color: var(--blue); }
.choice .dot { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--line); display: grid; place-items: center; flex: 0 0 16px;}
.choice.selected .dot { border-color: var(--blue); }
.choice.selected .dot::after { content:''; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.form-actions { display: flex; gap: 10px; margin-top: 24px; align-items: center; }
.form-actions .back { color: var(--ink-3); font-size: 14px; font-weight: 600; padding: 10px 14px; border-radius: 10px; }
.form-actions .back:hover { color: var(--blue); background: var(--blue-50); }
.form-success { text-align: center; padding: 20px 8px; }
.form-success .check-big { width: 64px; height: 64px; border-radius: 50%; background: var(--green-50); color: var(--green); display: grid; place-items: center; margin: 0 auto 16px; }
.form-success h3 { font-size: 24px; }
.form-success p { margin-top: 8px; font-size: 15px; }
.form-micro { margin-top: 14px; font-size: 12.5px; color: var(--ink-3); display: flex; align-items: center; gap: 6px;}

/* ---------- FINANCING ---------- */
.financing {
  background: linear-gradient(135deg, #143599 0%, #1F4FE0 50%, #3d8a1a 130%);
  border-radius: 28px; padding: 48px; color: #fff; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.financing::before {
  content: ''; position: absolute; right: -40px; bottom: -40px; width: 280px; height: 280px;
  background: radial-gradient(closest-side, rgba(91,199,42,0.4), transparent 70%);
}
.financing-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; position: relative; }
@media (max-width: 860px){ .financing-grid { grid-template-columns: 1fr; gap: 28px; } .financing { padding: 32px; } }
.financing .pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: rgba(91,199,42,0.18); border: 1px solid rgba(91,199,42,0.5); border-radius: 999px; font-size: 12.5px; font-weight: 700; color: #a8e88a; letter-spacing: 0.04em;}
.financing h2 { color: #fff; margin-top: 14px; max-width: 480px; }
.financing p { color: #cdd9ff; margin-top: 14px; font-size: 16px; max-width: 520px; }
.financing-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.financing-chips .c { padding: 7px 12px; border-radius: 999px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); font-size: 13px; font-weight: 600; color: #e6ecff;}
.financing .disclaimer { font-size: 12px; color: #9aacf0; margin-top: 18px; max-width: 520px;}

.financing-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18); border-radius: 20px; padding: 24px; backdrop-filter: blur(6px); }
.financing-card .small { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #a8e88a; font-weight: 700;}
.financing-card .big { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 38px; margin-top: 8px; line-height: 1; }
.financing-card .big .mo { font-size: 18px; color: #cdd9ff; font-weight: 600; }
.financing-card .ex { font-size: 13px; color: #9aacf0; margin-top: 6px; }
.financing-card .row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed rgba(255,255,255,0.18); font-size: 14px; }
.financing-card .row:last-child { border-bottom: 0; }
.financing-card .row .k { color: #9aacf0; }
.financing-card .row .v { font-weight: 700; color: #fff; }
.financing-card .rows { margin-top: 16px; }

/* ---------- SMART CLUB ---------- */
.club-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
@media (max-width: 860px){ .club-grid { grid-template-columns: 1fr; } }
.club-left .price { display: inline-flex; align-items: baseline; gap: 6px; margin-top: 18px; padding: 14px 18px; background: var(--green-50); border: 1px solid #c5ecae; border-radius: 14px; }
.club-left .price .num { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 32px; color: var(--green); line-height: 1; }
.club-left .price .mo { font-size: 14px; color: #3d8a1a; font-weight: 600; }
.club-left .price .from { font-size: 13px; color: var(--ink-3); margin-right: 4px; }
.club-price-note { margin-top: 10px; max-width: 410px; font-size: 13.5px; line-height: 1.45; color: var(--ink-3); font-weight: 600; }
.club-left .ctas { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.club-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px){ .club-benefits { grid-template-columns: 1fr; } }
.benefit-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px; transition: all 0.15s; }
.benefit-card:hover { border-color: var(--green); transform: translateY(-2px); box-shadow: var(--shadow);}
.benefit-card .ic { width: 40px; height: 40px; border-radius: 11px; background: linear-gradient(135deg, #5BC72A 0%, #4ba822 100%); color: #fff; display: grid; place-items: center; margin-bottom: 12px; box-shadow: 0 6px 14px rgba(91,199,42,0.32); }
.benefit-card h4 { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 15px; color: var(--ink); margin: 0; letter-spacing: -0.01em;}
.benefit-card p { font-size: 13px; color: var(--ink-3); margin-top: 4px; line-height: 1.45; }

/* ---------- REVIEWS ---------- */
.reviews-bg { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.reviews-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
.reviews-head .l h2 { max-width: 520px; }
.reviews-head .l p { margin-top: 10px; max-width: 580px; font-size: 15px;}
.review-badge { display: flex; align-items: center; gap: 14px; background: var(--bg); border: 1px solid var(--line); border-radius: 18px; padding: 16px 20px;}
.review-badge .g-mark { width: 44px; height: 44px; border-radius: 12px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; font-family: 'Manrope', sans-serif; font-weight: 800; color: #4285F4; font-size: 22px; }
.review-badge .stars { color: #f5a623; letter-spacing: 1px; font-size: 16px; }
.review-badge .num { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 22px; line-height: 1; }
.review-badge .lbl { font-size: 12px; color: var(--ink-3); margin-top: 4px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px){ .reviews-grid { grid-template-columns: 1fr; } }

/* ---------- REVIEWS MARQUEE (auto-scrolling carousel) ---------- */
.reviews-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}
.reviews-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: reviews-scroll 50s linear infinite;
  will-change: transform;
}
.reviews-marquee:hover .reviews-track,
.reviews-marquee:focus-within .reviews-track { animation-play-state: paused; }
.reviews-marquee .review-card {
  flex: 0 0 360px;
  width: 360px;
}
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 9px)); } /* -50% minus half-gap so seam is invisible */
}
@media (max-width: 760px) {
  .reviews-marquee .review-card { flex: 0 0 280px; width: 280px; }
  .reviews-track { animation-duration: 38s; gap: 14px; }
  @keyframes reviews-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-50% - 7px)); }
  }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; }
  .reviews-marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity; -webkit-mask-image: none; mask-image: none; }
  .reviews-marquee .review-card { scroll-snap-align: start; }
}
.review-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.review-card .stars { color: #f5a623; letter-spacing: 1px;}
.review-card .quote { font-size: 15.5px; line-height: 1.55; color: var(--ink); }
.review-card .who { display: flex; align-items: center; gap: 10px; margin-top: 6px;}
.review-card .who .av { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #dbe3fc, #b8c5f5); display: grid; place-items: center; font-family: 'Manrope', sans-serif; font-weight: 800; color: var(--blue); font-size: 14px; }
.review-card .who .name { font-weight: 700; font-size: 14px; }
.review-card .who .meta { font-size: 12px; color: var(--ink-3); }
.review-widget-stub { margin-top: 22px; border: 2px dashed #cfd8e3; border-radius: 16px; padding: 22px; text-align: center; font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--blue-700); background: #f4f8fc; }

/* ---------- GALLERY ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; max-width: 920px; margin: 0 auto; }
@media (max-width: 900px){ .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px){ .gallery-grid { grid-template-columns: 1fr; } }
.job-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: all 0.18s; }
.job-card:hover { transform: translateY(-3px); box-shadow: var(--shadow);}
.job-photo { aspect-ratio: 4/3; position: relative; background: linear-gradient(135deg, #dbe3fc, #cdd9ff); border-bottom: 1px solid var(--line); overflow: hidden; }
.job-photo .ph {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(31,79,224,0.06) 0 10px, rgba(31,79,224,0) 10px 20px);
}
.job-badge { position: absolute; left: 14px; bottom: 14px; font-size: 12px; padding: 7px 10px; background: rgba(10,31,94,0.9); border-radius: 999px; color: #fff; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; box-shadow: 0 10px 22px rgba(10,31,94,.24);}
.job-card .body { padding: 16px 18px; }
.job-card .area { font-size: 12px; font-weight: 700; color: var(--green-600); letter-spacing: 0.12em; text-transform: uppercase;}
.job-card h4 { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 16px; color: var(--ink); margin-top: 4px; letter-spacing: -0.01em;}
.job-card p { font-size: 13.5px; color: var(--ink-2); margin-top: 6px; line-height: 1.5;}
.job-card .date { font-size: 12px; color: var(--ink-3); }
.job-card .job-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line-soft, #f1f5f9); }
.job-card .job-foot .more {
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 700; color: var(--green-600);
  text-decoration: none;
}
.job-card:hover .more { color: var(--blue); }
.job-card .more svg { transition: transform 0.18s; }
.job-card:hover .more svg { transform: translateX(3px); }

/* ---------- SERVICE AREAS ---------- */
.areas-bg { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.areas-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center;}
@media (max-width: 900px){ .areas-grid { grid-template-columns: 1fr; } }
.area-cities { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.city-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px; background: var(--bg); border: 1.5px solid var(--line); border-radius: 999px;
  font-weight: 700; color: var(--ink); font-size: 14px; transition: all 0.15s;
}
.city-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-50); transform: translateY(-2px);}
.city-btn .pin { color: var(--green-600); }
.map-stub {
  position: relative; aspect-ratio: 4/3; border-radius: 24px; overflow: hidden;
  background: #0a1f5e;
  border: 1px solid #c0cef7;
  box-shadow: 0 18px 40px rgba(15,23,42,0.18);
}
.map-overlay-top {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  pointer-events: none;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(8px);
  padding: 9px 14px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 700; color: var(--ink);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.map-overlay-top b { color: var(--blue); }
.map-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(91,199,42,0.7); animation: liveDot 2s infinite; }
.map-overlay-bottom {
  position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2;
  pointer-events: none;
  background: rgba(10,31,94,0.92); backdrop-filter: blur(8px);
  padding: 10px 14px; border-radius: 12px;
  font-size: 12px; font-weight: 600; color: #fff; line-height: 1.4;
  display: flex; align-items: center; gap: 8px;
}
.map-overlay-bottom svg { color: var(--green); flex-shrink: 0; }
.map-nav-btn {
  position: absolute;
  right: 14px;
  bottom: 62px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(10,31,94,0.24);
}
.business-map-card .map-nav-btn { bottom: 76px; }
.map-nav-btn:hover {
  background: var(--green-700);
  color: #fff;
  transform: translateY(-1px);
}

/* hi-fi placeholders — gradient scenes that hint at real photo content */
.placeholder, .hero-photo .placeholder {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(91,199,42,0.25) 0%, transparent 60%),
    linear-gradient(135deg, #1F4FE0 0%, #143599 45%, #0a1f5e 100%);
}
.hero-photo .placeholder::after {
  content: '';
  position: absolute; left: 18%; right: 12%; bottom: 0; top: 35%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.05) 60%, transparent 100%);
  clip-path: polygon(0 100%, 0 35%, 22% 0, 78% 0, 100% 35%, 100% 100%);
}
.family-photo .ph {
  background:
    radial-gradient(circle at 30% 30%, rgba(91,199,42,0.35), transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(31,79,224,0.4), transparent 55%),
    linear-gradient(135deg, #5BC72A 0%, #1F4FE0 100%);
}

/* ---------- FAMILY / ABOUT ---------- */
.family-bg { background: linear-gradient(180deg, var(--bg) 0%, #f0f5fa 100%);}
.family-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 40px; align-items: center;}
@media (max-width: 860px){ .family-grid { grid-template-columns: 1fr; } }
.family-photo {
  aspect-ratio: 1/1; border-radius: 28px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, #dbe3fc, #b8c5f5);
  box-shadow: var(--shadow-lg); border: 1px solid #c0cef7;
}
.family-photo .ph {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(31,79,224,0.07) 0 12px, rgba(31,79,224,0) 12px 24px);
}
.family-photo .ph-label { position: absolute; left: 22px; bottom: 22px; right: 22px; font-family: 'JetBrains Mono', monospace; font-size: 11.5px; padding: 8px 12px; background: rgba(255,255,255,0.85); border-radius: 10px; color: var(--blue-700); }
.family-photo .ph-label b { color: var(--ink);}
.family-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.family-meta .m { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px 18px; }
.family-meta .m .v { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 22px; color: var(--blue); line-height: 1;}
.family-meta .m .l { font-size: 12px; color: var(--ink-3); margin-top: 4px;}

/* ---------- WHY ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px){ .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px){ .why-grid { grid-template-columns: 1fr; } }
.why-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; transition: all 0.15s; display: flex; flex-direction: column; }
.why-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow);}
.why-card .more {
  margin-top: auto; padding-top: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 700; color: var(--green-600);
  text-decoration: none;
}
.why-card:hover .more { color: var(--blue); }
.why-card .more svg { transition: transform 0.18s; }
.why-card:hover .more svg { transform: translateX(3px); }
.why-card .ic { width: 48px; height: 48px; border-radius: 13px; background: linear-gradient(135deg, #1F4FE0, #143599); color: #fff; display: grid; place-items: center; margin-bottom: 16px; box-shadow: 0 6px 14px rgba(31,79,224,0.28); }
.why-card.orange .ic { background: linear-gradient(135deg, #5BC72A, #4ba822); color: #fff; box-shadow: 0 6px 14px rgba(91,199,42,0.32); }
.why-card.green .ic { background: linear-gradient(135deg, #143599, #0d2778); color: #fff; box-shadow: 0 6px 14px rgba(20,53,153,0.32); }
.why-card h3 { font-size: 17px; }
.why-card p { margin-top: 6px; font-size: 14px;}

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq { background: #fff; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 10px; overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 16px; gap: 12px; color: var(--ink);}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { width: 28px; height: 28px; border-radius: 8px; background: var(--blue-50); color: var(--blue); display: grid; place-items: center; flex: 0 0 28px; transition: transform 0.2s;}
.faq[open] summary .plus { transform: rotate(45deg); background: linear-gradient(135deg, #5BC72A, #4ba822); color: #fff; }
.faq .body { padding: 0 22px 18px; color: var(--ink-2); font-size: 15px; line-height: 1.6;}

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, #1F4FE0 0%, #3d6ee8 45%, #143599 100%);
  border-radius: 28px; padding: 56px 40px; color: #fff; text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.final-cta::before { content:''; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; background: radial-gradient(closest-side, rgba(91,199,42,0.45), transparent 70%); pointer-events: none; }
.final-cta::after { content:''; position: absolute; left: -100px; bottom: -100px; width: 380px; height: 380px; background: radial-gradient(closest-side, rgba(31,79,224,0.55), transparent 70%); pointer-events: none; }
.final-cta h2 { color: #fff; position: relative; z-index: 1; max-width: 720px; margin: 0 auto;}
.final-cta p { color: #dbe3fc; margin: 16px auto 0; max-width: 580px; position: relative; z-index: 1; font-size: 16.5px;}
.final-cta-buttons { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 28px; position: relative; z-index: 2;}
.final-cta-buttons .btn { min-width: 184px; position: relative; z-index: 3; pointer-events: auto; -webkit-tap-highlight-color: rgba(91,199,42,0.25); }
.final-cta-buttons .btn,
.final-cta-buttons .btn:visited {
  color: #fff !important;
  opacity: 1 !important;
  filter: none;
}
.final-cta-buttons .btn svg {
  color: currentColor;
  opacity: 1;
  flex: 0 0 auto;
}
.final-cta-buttons .btn-orange,
.final-cta-buttons .btn-green {
  background: var(--grad-green) !important;
  box-shadow: 0 10px 24px rgba(91,199,42,0.34), inset 0 -2px 0 rgba(0,0,0,0.12);
}
@media (max-width: 540px){
  .final-cta { padding: 36px 22px; }
  .final-cta-buttons { display: grid; grid-template-columns: 1fr; }
  .final-cta-buttons .btn { width: 100%; min-width: 0; min-height: 56px; }
}

/* ---------- FOOTER ---------- */
.footer { background: #0a1928; color: #c8d4e0; padding: 56px 0 100px; }
@media (min-width: 768px){ .footer { padding-bottom: 32px; } }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px;}
@media (max-width: 860px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { color: #fff; font-family: 'Manrope', sans-serif; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px;}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px;}
.footer a { font-size: 14px; color: #c8d4e0; transition: color 0.15s;}
.footer a:hover { color: var(--green-600); }
.footer .brand .name { color: #fff; font-size: 22px; font-family: 'Manrope', sans-serif; font-weight: 800;}
.footer .brand .name b { color: var(--green);}
.footer .brand p { color: #93a4b6; font-size: 14px; margin-top: 10px; max-width: 320px; line-height: 1.55;}
.footer .contact-row { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.footer .contact-row a { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.footer .badges { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.footer .badges .b { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 8px 12px; font-size: 12.5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: #7a8a9c;}
.footer-bottom .placeholder-note { color: #f5a623; }
.footer-trust-panel {
  margin-top: 14px;
  padding: 13px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.footer-trust-title {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}
.footer-payment-row span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 8px;
  border-radius: 7px;
  background: rgba(255,255,255,0.94);
  color: #0a1f5e;
  font-size: 11px;
  font-weight: 900;
}
.footer-trane-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: #dbe7ff;
  font-size: 12px;
}
.footer-trane-row strong {
  color: #ff5b2e;
  font-size: 16px;
  letter-spacing: 0.02em;
}

/* ---------- MOBILE STICKY BAR ---------- */
.mobile-bar {
  display: none;
  position: fixed; bottom: 84px; left: 0; right: 0; z-index: 60;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(15,23,42,0.08);
  padding: 10px 12px;
  gap: 10px;
}
@media (max-width: 768px){ .mobile-bar { display: flex; } body { padding-bottom: 150px; } }
.mobile-bar .btn { flex: 1 1 0; min-width: 0; min-height: 56px; border-radius: 14px; font-size: 14.5px; flex-direction: column; gap: 2px; padding: 8px;}
.mobile-bar .btn .lbl { font-size: 12px; font-weight: 700; opacity: 0.95;}
.mobile-bar .btn .val { font-size: 13.5px; font-weight: 800;}

/* utility */
.icon-circle { width: 18px; height: 18px; display: inline-block;}
.muted { color: var(--ink-3); }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
::selection { background: rgba(91,199,42,0.28); color: #0a1f5e; }


/* ============ ENHANCED BRAND PRESENCE ============ */

/* Hero background pattern */
.hero { 
  background:
    radial-gradient(ellipse 800px 400px at 80% -10%, rgba(31,79,224,0.10), transparent),
    radial-gradient(ellipse 600px 400px at 0% 100%, rgba(91,199,42,0.08), transparent),
    var(--bg);
  position: relative;
}
.hero::before {
  content:''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(31,79,224,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,79,224,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 60%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; }

/* Header brand-tinted shadow on scroll */
.header.scrolled { box-shadow: 0 1px 0 rgba(31,79,224,0.08), 0 8px 24px rgba(31,79,224,0.06); }

/* Section eyebrow gets brand stripe */
.section-head .eyebrow { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }
.section-head .eyebrow::before, .section-head .eyebrow::after {
  content:''; width: 28px; height: 2px; background: linear-gradient(90deg, transparent, var(--green) 50%, transparent);
}

/* Trust bar — logos / certifications */
.trust-bar { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px 0; }
.trust-bar-grid { display: flex; justify-content: space-around; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-bar-item { display: flex; align-items: center; gap: 10px; color: var(--ink-2); font-weight: 700; font-size: 14px; }
.trust-bar-item .ic { width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center; background: linear-gradient(135deg, var(--blue-50), #fff); border: 1px solid var(--blue-100); color: var(--blue); }
.trust-bar-item.green .ic { background: linear-gradient(135deg, var(--green-50), #fff); border-color: var(--green-100); color: var(--green-600); }
.trust-bar-divider { width: 1px; height: 28px; background: var(--line); }
@media (max-width: 768px){ .trust-bar-divider { display: none; } }

/* Comparison strip */
.compare-bg { background: linear-gradient(180deg, var(--bg) 0%, #fff 100%); border-top: 1px solid var(--line); }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 920px; margin: 0 auto; }
@media (max-width: 720px){ .compare-grid { grid-template-columns: 1fr; } }
.compare-card { background: #fff; border-radius: 20px; padding: 28px; border: 2px solid; }
.compare-card.them { border-color: var(--line); opacity: 0.92; }
.compare-card.us { 
  border-color: var(--green); 
  box-shadow: 0 20px 40px -12px rgba(91,199,42,0.25), 0 8px 16px rgba(31,79,224,0.08);
  position: relative;
}
.compare-card.us::before {
  content: 'FRESH TECH'; position: absolute; top: -12px; left: 28px;
  background: var(--grad-green); color: #fff; padding: 6px 14px; border-radius: 999px;
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 11px; letter-spacing: 0.12em;
  box-shadow: 0 4px 10px rgba(91,199,42,0.35);
}
.compare-card.them::before {
  content: 'TYPICAL CONTRACTOR'; position: absolute; top: -12px; left: 28px;
  background: #fff; color: var(--ink-3); padding: 6px 14px; border-radius: 999px;
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 11px; letter-spacing: 0.12em;
  border: 1px solid var(--line);
}
.compare-card { position: relative; }
.compare-card h3 { font-size: 20px; margin-bottom: 16px; }
.compare-card.us h3 { color: var(--blue); }
.compare-card.them h3 { color: var(--ink-3); }
.compare-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.compare-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; line-height: 1.5; }
.compare-list .ic { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; margin-top: 1px; }
.compare-card.us .ic { background: var(--green-50); color: var(--green-600); }
.compare-card.them .ic { background: #fee2e2; color: #b91c1c; }
.compare-card.us li { color: var(--ink); font-weight: 500; }
.compare-card.them li { color: var(--ink-3); }

/* Quick-quote slider */
.quote-bg { 
  background: var(--grad-brand);
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.quote-bg::before, .quote-bg::after {
  content:''; position: absolute; border-radius: 50%; pointer-events: none;
}
.quote-bg::before { width: 500px; height: 500px; background: radial-gradient(closest-side, rgba(91,199,42,0.3), transparent 70%); right: -100px; top: -150px; }
.quote-bg::after { width: 400px; height: 400px; background: radial-gradient(closest-side, rgba(255,255,255,0.08), transparent 70%); left: -80px; bottom: -100px; }
.quote-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; position: relative; }
@media (max-width: 900px){ .quote-grid { grid-template-columns: 1fr; gap: 28px; } }
.quote-bg .eyebrow { color: #a8e88a !important; font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.quote-bg h2 { color: #fff; margin-top: 8px; }
.quote-bg .lead { color: #cdd9ff; margin-top: 14px; font-size: 16px; max-width: 480px; }
.quote-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); border-radius: 22px; padding: 28px; backdrop-filter: blur(12px); box-shadow: 0 24px 48px rgba(0,0,0,0.2); }
.quote-card .lbl { font-size: 12px; font-weight: 700; color: #a8e88a; text-transform: uppercase; letter-spacing: 0.14em; }
.quote-card .stat { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: clamp(34px, 5.6vw, 56px); line-height: 1.05; color: #fff; margin-top: 8px; letter-spacing: -0.03em; word-spacing: 0; overflow-wrap: normal; }
.quote-card .stat .unit { font-size: clamp(16px, 2.2vw, 22px); color: #c5ecae; white-space: nowrap; }
.quote-card .sub { font-size: 13px; color: #cdd9ff; margin-top: 4px; }
.quote-toggles { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.quote-tog { flex: 1; min-width: 90px; padding: 10px 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18); border-radius: 11px; color: #fff; font-weight: 600; font-size: 13.5px; cursor: pointer; transition: all 0.15s; text-align: center; }
.quote-tog.active { background: var(--green); border-color: var(--green); color: #fff; box-shadow: 0 6px 14px rgba(91,199,42,0.4); }
.quote-tog:hover:not(.active) { background: rgba(255,255,255,0.12); }
.quote-card .breakdown { margin-top: 18px; padding-top: 18px; border-top: 1px dashed rgba(255,255,255,0.18); }
.quote-card .row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.quote-card .row .k { color: #cdd9ff; }
.quote-card .row .v { font-weight: 700; color: #fff; }
.quote-card .cta-row { margin-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; }

/* Logo glow on header */
.brand-logo { transition: transform 0.18s; }
.brand-logo:hover { transform: scale(1.02); }

/* Stats v2 - bigger, branded */
.stat-card { transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s; border-radius: 18px; padding: 22px 16px; }
.stat-card:hover { border-color: var(--blue-200); }

/* Service card hover - brand glow */
.service-card { position: relative; }
.service-card::after {
  content:''; position: absolute; left: 0; bottom: 0; height: 3px; width: 0;
  background: var(--grad-vivid);
  transition: width 0.3s ease;
}
.service-card:hover::after { width: 100%; }
.service-card:hover { border-color: var(--blue); }

/* Service card .more arrow */
.service-card .more { color: var(--green-600); }
.service-card:hover .more { color: var(--blue); }

/* Sticky bar - brand-saturated */
.mobile-bar .btn-orange { background: var(--grad-green); }

/* Trust strip chips - more brand */
.trust-chip { background: linear-gradient(135deg, #fff, #f7faff); border-color: var(--blue-100); }
.trust-chip svg { color: var(--blue); }

/* Final CTA new gradient */
.final-cta { background: linear-gradient(135deg, #1F4FE0 0%, #143599 50%, #0d2778 100%); }
.final-cta::before { background: radial-gradient(closest-side, rgba(91,199,42,0.45), transparent 70%); }

/* Reviews quote mark */
.review-card { position: relative; overflow: hidden; }
.review-card::before {
  content: '"'; position: absolute; right: 12px; top: -10px;
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 100px;
  color: rgba(31,79,224,0.06); line-height: 1; pointer-events: none;
}

/* Job card hover */
.job-card:hover { border-color: var(--green); }
.job-photo .ph-tag.outcome { background: var(--grad-green); color: #fff; font-weight: 700; }

/* Family meta cards */
.family-meta .m { background: linear-gradient(135deg, #fff, #f7faff); border-color: var(--blue-100); transition: transform 0.15s; }
.family-meta .m:hover { transform: translateY(-2px); border-color: var(--blue); }
.family-meta .m .v { background: linear-gradient(135deg, #1F4FE0, #5BC72A); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* SmartClub price */
.club-left .price { background: linear-gradient(135deg, var(--green-50), #fff); border-color: var(--green-200); }
.club-left .price .num { background: linear-gradient(135deg, #5BC72A, #3d8a1a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* FAQ summary plus button */
.faq summary .plus { background: linear-gradient(135deg, var(--blue-50), #fff); color: var(--blue); border: 1px solid var(--blue-100); }

/* City buttons */
.city-btn:hover { background: var(--grad-vivid); color: #fff; border-color: var(--blue); }
.city-btn:hover .pin { color: #fff; }

/* Booking card — brand-saturated header */
.booking-card { position: relative; overflow: hidden; }
.booking-card::before {
  content:''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-vivid);
}

/* Footer — brand stripe top */
.footer { 
  background: linear-gradient(180deg, #0a1f5e 0%, #060f3d 100%);
  position: relative;
}
.footer::before {
  content:''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #1F4FE0 0%, #5BC72A 50%, #1F4FE0 100%);
}

/* Floating brand orb decoration class */
.brand-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(60px); opacity: 0.4; }
.brand-orb.blue { background: #1F4FE0; }
.brand-orb.green { background: #5BC72A; }

/* Process / step - connecting line */
.how-grid { position: relative; }
@media (min-width: 901px){
  .how-grid::before {
    content:''; position: absolute; left: 8%; right: 8%; top: 50px; height: 2px;
    background-image: linear-gradient(90deg, var(--green) 50%, transparent 50%);
    background-size: 12px 2px; z-index: 0;
  }
}
.step { position: relative; z-index: 1; transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s; }
.step:hover { transform: translateY(-3px); border-color: var(--green); box-shadow: 0 12px 24px rgba(91,199,42,0.12); }

/* Header shadow refined */
.header { background: rgba(255,255,255,0.96); }

/* Service card icon — slight tilt on hover */
.service-card:hover .ic { transform: rotate(-4deg) scale(1.05); }
.service-card .ic { transition: transform 0.2s; }

/* Reviews — verified badge */
.review-card .verified { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; color: var(--green-600); background: var(--green-50); padding: 3px 8px; border-radius: 6px; margin-left: auto; }

/* Animated badge "live" indicator */
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); position: relative; display: inline-block; }
.live-dot::after { content:''; position: absolute; inset:-3px; border-radius:50%; border: 2px solid var(--green); animation: pulse-ring 1.6s infinite; }

/* Section dividers - brand stripe */
.brand-divider { height: 6px; background: linear-gradient(90deg, #1F4FE0 0%, #5BC72A 50%, #1F4FE0 100%); border: 0; margin: 0; }

/* Hero overlay card brand polish */
.hero-overlay-card { border-color: var(--blue-100); box-shadow: 0 24px 48px -12px rgba(31,79,224,0.25), 0 8px 16px rgba(15,23,42,0.06); }

/* Hero photo */
.hero-photo { background: linear-gradient(180deg, #dbe3fc 0%, #b8c5f5 100%); border-color: var(--blue-200); }

/* Hero badge stronger */
.hero-badge { font-size: 13.5px; padding: 9px 16px 9px 14px; }

/* Stats bigger */
.stat-card .v { font-size: 19px; }
.stat-card { padding: 22px 14px; }

/* h1 max-width control */
.hero h1 { max-width: 560px; }

/* better heading line-height */
h1, h2 { line-height: 1.04; }

/* nav: active style */
.nav a { transition: all 0.15s; position: relative; }
.nav a::after {
  content:''; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px;
  background: var(--green); transform: scaleX(0); transition: transform 0.18s;
}
.nav a:hover::after { transform: scaleX(1); }

/* ============ REFERENCE HOMESCREEN REFRESH ============ */
.announce {
  background: linear-gradient(90deg, #06185c 0%, #0a1f72 55%, #06185c 100%);
}
.announce .right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.announce-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.announce .right .announce-social a {
  width: 27px;
  height: 27px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.announce .right .announce-social a:hover {
  transform: translateY(-2px);
  background: var(--green);
  border-color: var(--green);
  color: #06185c;
}
.announce .hours {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 1180px) {
  .announce { font-size: 12px; }
  .announce .container { gap: 10px; }
  .announce .left { gap: 8px; }
  .announce .right { gap: 9px; }
}
@media (max-width: 1020px) {
  .announce .left .hide-mob,
  .announce .left .dot { display: none; }
}
@media (max-width: 760px) {
  .announce .hours { display: none; }
  .announce-social { display: none; }
}
.header {
  position: sticky;
  background: rgba(255,255,255,0.98);
}
.header .container { height: 102px; }
.brand-logo img.logo-img {
  height: 80px;
  filter: drop-shadow(0 8px 16px rgba(10,31,94,0.08));
}
.nav { gap: 18px; }
.nav a {
  font-family: 'Manrope', 'Inter', sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .02em;
  padding: 10px 2px;
}
.nav a:first-child { color: var(--green-700); }
.nav a:first-child::after,
.nav a:hover::after {
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleX(1);
}
.header-cta .btn-book {
  background: var(--grad-green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(91,199,42,0.28), inset 0 -2px 0 rgba(0,0,0,.12);
}
.header-cta .btn-book:hover { filter: brightness(1.03); }

.hero {
  min-height: 520px;
  padding: 54px 0 30px;
  background:
    radial-gradient(ellipse 520px 280px at 74% 12%, rgba(31,79,224,.10), transparent 70%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.hero::before {
  mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
}
.hero .container { z-index: 2; }
.hero-grid {
  grid-template-columns: minmax(440px, .9fr) minmax(520px, 1.1fr);
  gap: 28px;
}
.hero h1 {
  margin-top: 0;
  max-width: 720px;
  text-transform: uppercase;
  font-size: clamp(42px, 5.35vw, 74px);
  line-height: .98;
  letter-spacing: .01em;
  color: #06185c;
}
.hero h1 .accent {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: #06185c;
}
.hero h1 .accent2 {
  color: var(--green-700);
  white-space: normal;
}
.hero-sub {
  max-width: 520px;
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.55;
  color: #162653;
}
.hero-status {
  margin-top: 20px;
  background: #effbe9;
  border-color: #bde8aa;
}
.hero-ctas { margin-top: 22px; gap: 18px; }
.hero-ctas .btn {
  border-radius: 10px;
  min-height: 52px;
  padding: 16px 24px;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.btn-hero-outline {
  background: #fff;
  color: #06185c;
  border: 2px solid #06185c;
  box-shadow: none;
}
.btn-hero-outline:hover {
  background: #06185c;
  color: #fff;
  transform: translateY(-1px);
}
.hero-micro { font-size: 14px; color: #526486; }
.hero-right { position: relative; min-height: 382px; }
.hero-photo {
  aspect-ratio: 16/10;
  border-radius: 24px;
  border: 0;
  box-shadow: 0 24px 56px rgba(10,31,94,.22);
  background: #06185c;
  transform: translateY(4px);
}
.hero-main-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.02) 42%, rgba(6,24,92,.18) 100%),
    linear-gradient(180deg, transparent 54%, rgba(6,24,92,.58) 100%);
}
.hero-bot {
  position: absolute;
  right: 24px;
  top: 22px;
  width: 154px;
  height: auto;
  z-index: 3;
  background: rgba(255,255,255,.9);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 14px 28px rgba(10,31,94,.18);
}
.hero-ac-medallion {
  position: absolute;
  left: 32px;
  bottom: 34px;
  width: 106px;
  height: 106px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  z-index: 3;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: 40px;
  letter-spacing: -.04em;
  background: radial-gradient(circle at 38% 30%, #3d6ee8, #06185c 62%, #020a2f);
  border: 6px solid rgba(255,255,255,.8);
  box-shadow: 0 14px 36px rgba(0,0,0,.28);
}
.hero-photo .ph-corner {
  top: auto;
  bottom: 22px;
  right: 22px;
  z-index: 4;
  color: #06185c;
  background: rgba(255,255,255,.92);
}
.hero-photo .ph-label,
.hero-overlay-card,
.hero-photo .placeholder,
.hero-photo .truck-stripes,
.hero-mascot {
  display: none;
}
.hero-waves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.hero-waves .wave {
  position: absolute;
  right: -7vw;
  bottom: -64px;
  width: 60vw;
  height: 210px;
  border-radius: 70% 0 0 0;
  transform: skewY(-8deg);
}
.hero-waves .wave-green {
  background: linear-gradient(90deg, rgba(91,199,42,.95), #42a91d);
  bottom: 0;
}
.hero-waves .wave-blue {
  background: linear-gradient(90deg, #0d3fae, #06185c);
  bottom: -70px;
  right: -11vw;
  width: 72vw;
  height: 230px;
}

.trust-bar {
  background: linear-gradient(90deg, #06185c 0%, #0b3291 54%, #06185c 100%);
  border: 0;
  padding: 30px 0;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(7, auto);
  justify-content: stretch;
  align-items: center;
  gap: 0;
}
.trust-bar-item {
  color: #fff;
  gap: 18px;
  min-width: 0;
  padding: 0 24px;
}
.trust-bar-item .ic {
  width: 56px;
  height: 56px;
  border: 0;
  background: transparent;
  color: var(--green);
}
.trust-bar-item .ic svg { width: 42px; height: 42px; }
.trust-bar-item strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.trust-bar-item span {
  display: block;
  margin-top: 5px;
  color: #dfe9ff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}
.trust-bar-divider {
  width: 1px;
  height: 72px;
  background: rgba(255,255,255,.28);
}

.job-photo img,
.family-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.job-photo img { object-position: center; }
.family-photo img { object-position: center 38%; }
.family-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,24,92,.62) 100%);
}
.family-photo .ph-label { z-index: 2; }

.team-section {
  background:
    radial-gradient(ellipse 640px 340px at 0% 10%, rgba(91,199,42,.10), transparent 70%),
    linear-gradient(180deg, #fff 0%, #f3f7ff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.team-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 40px;
  align-items: center;
}
.team-intro .eyebrow {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.team-intro h2 { margin-top: 10px; max-width: 680px; }
.team-intro p {
  margin-top: 16px;
  font-size: 16.5px;
  line-height: 1.68;
  max-width: 760px;
}
.team-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 300px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--blue-100);
  background: var(--blue-900);
}
.team-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center 58%;
  display: block;
}
.team-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,24,92,.72) 100%);
}
.team-photo-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-weight: 700;
  line-height: 1.35;
}
.team-groups {
  margin-top: 42px;
  display: grid;
  gap: 26px;
}
.team-group h3 {
  font-size: 22px;
  color: var(--blue-900);
  padding-bottom: 10px;
  border-bottom: 3px solid var(--green);
  display: inline-block;
}
.team-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--blue-100);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  min-height: 330px;
}
.team-card .avatar {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255,255,255,0.42), transparent 18%),
    linear-gradient(135deg, rgba(31,79,224,0.98), rgba(91,199,42,0.9));
  color: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: 22px;
  position: relative;
  overflow: hidden;
}
.team-card .avatar::after {
  content: 'Portrait coming soon';
  position: absolute;
  left: 12px;
  bottom: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(6,24,92,0.72);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.team-card .avatar span {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
  font-size: 15px;
}
.team-card .avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}
.team-card .avatar img[src*="freshtech-alex-headshot"],
.team-card .avatar img[src*="freshtech-peter-portrait"] {
  object-position: center 24%;
}
.team-card .avatar:has(img)::after {
  content: '';
  display: none;
}
.team-card .avatar:has(img) span {
  background: rgba(6,24,92,0.78);
  color: #fff;
}
.team-card h4 {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  color: var(--blue-900);
}
.team-card .role {
  margin-top: 3px;
  color: var(--green-700);
  font-weight: 800;
  font-size: 13px;
}
.team-promise {
  margin-top: 34px;
  background: linear-gradient(135deg, #06185c 0%, #1242bd 60%, #2f8f17 130%);
  color: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.team-promise h3 { color: #fff; }
.team-promise p {
  color: #eaf1ff;
  margin-top: 12px;
  max-width: 980px;
}

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { min-height: 0; }
  .hero-photo { max-width: 760px; margin: 0 auto; }
  .trust-bar-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 0; }
  .trust-bar-divider { display: none; }
}
@media (max-width: 980px) {
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .header .container { height: 78px; }
  .brand-logo img.logo-img { height: 54px; }
  .hero {
    padding: 34px 0 20px;
    min-height: 0;
  }
  .hero h1 { font-size: clamp(34px, 11vw, 48px); }
  .hero-sub { font-size: 17px; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { flex: 1 1 100%; }
  .hero-photo { aspect-ratio: 4/3; }
  .hero-bot { width: 104px; right: 14px; top: 14px; }
  .hero-ac-medallion { width: 78px; height: 78px; font-size: 30px; left: 18px; bottom: 20px; border-width: 4px; }
  .hero-waves .wave { width: 100vw; height: 120px; }
  .trust-bar-grid { grid-template-columns: 1fr; gap: 22px; }
  .trust-bar-item { padding: 0; }
  .team-intro { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { min-height: 0; }
  .team-card .avatar { height: 260px; border-radius: 14px; }
}

/* ============ SERVICES IMAGE GRID + BUSINESS INFO ============ */
.services-showcase {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,248,252,0.96)),
    radial-gradient(circle at 10% 0%, rgba(91,199,42,0.12), transparent 30%);
}
.service-card-image {
  padding: 0;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--shadow-sm);
}
.service-card-image::after { display: none; }
.service-card-image:hover {
  border-color: var(--blue);
  box-shadow: 0 18px 34px rgba(10,31,94,0.16);
}
.service-card-image .service-media {
  position: relative;
  aspect-ratio: 5/6;
  overflow: hidden;
  background: #dbe3fc;
  border-bottom: 1px solid var(--line);
}
.service-card-image .service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.28s ease, filter 0.28s ease;
}
/* For wide promo banners that should display whole — letterboxed instead of cropped */
.service-card-image .service-media.fit-contain {
  background: linear-gradient(135deg, #0a1f5e 0%, #1740b8 100%);
}
.service-card-image .service-media.fit-contain img {
  object-fit: contain;
  transform: none;
  padding: 8px;
}
.service-card-image:hover .service-media.fit-contain img {
  transform: scale(1.02);
}
.service-card-image .service-media.empty-media {
  background:
    radial-gradient(circle at 70% 18%, rgba(91,199,42,0.18), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #eaf1ff 46%, #dbe7ff 100%);
}
.service-photo-empty {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--blue-700);
  border: 2px dashed rgba(31,79,224,0.24);
  border-radius: 14px;
  margin: 18px;
}
.service-photo-empty span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.service-card-image:hover .service-media img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.03);
}
.service-tag {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10,31,94,0.86);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(10,31,94,0.18);
}
.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-title-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
}
.service-card-image .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin: 0;
  background: linear-gradient(135deg, #0a1f72 0%, #1F4FE0 68%, #5BC72A 160%);
}
.service-card-image h3 {
  margin: 0;
  font-size: 18px;
  color: var(--blue-900);
}
.service-card-image p {
  margin-top: 12px;
  min-height: 68px;
}
.service-card-image .more {
  margin-top: auto;
  padding-top: 16px;
}

.business-info-section {
  background:
    radial-gradient(ellipse 780px 420px at 90% 18%, rgba(91,199,42,0.14), transparent 70%),
    linear-gradient(90deg, rgba(6,24,92,0.98) 0%, rgba(10,31,94,0.94) 50%, rgba(247,251,255,0.98) 50%, #fff 100%);
  border-top: 1px solid var(--blue-100);
  border-bottom: 1px solid var(--blue-100);
}
.business-info-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: stretch;
}
.business-panel {
  color: #fff;
  padding: 8px 0;
}
.business-panel .eyebrow {
  color: #9ef06f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.business-panel h2 {
  color: #fff;
  margin-top: 10px;
  max-width: 540px;
}
.business-panel p {
  color: #dbe7ff;
  margin-top: 14px;
  max-width: 580px;
  font-size: 16px;
  line-height: 1.6;
}
.business-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.detail-card,
.hours-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 16px;
  backdrop-filter: blur(8px);
}
.detail-card {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  min-width: 0;
}
.detail-card > div { min-width: 0; }
.detail-card svg,
.hours-head svg { color: #72e53f; }
.detail-card h3,
.hours-card h3 {
  color: #fff;
  font-size: 14px;
  margin: 0 0 5px;
}
.detail-card a,
.detail-card span {
  display: block;
  color: #eaf1ff;
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.detail-card a:hover { color: #9ef06f; }
.hours-card { margin-top: 12px; }
.hours-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.hours-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #dbe7ff;
  font-size: 13.5px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hours-row b {
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}
.business-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.business-actions .btn-outline {
  background: rgba(255,255,255,0.94);
}
.business-map-card {
  min-height: 440px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(31,79,224,0.22);
  box-shadow: 0 22px 46px rgba(10,31,94,0.22);
  background: #eaf1ff;
}
.business-map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
  opacity: 1;
  filter: none;
}
.business-map-card .map-overlay-top,
.business-map-card .map-overlay-bottom { z-index: 2; pointer-events: none; }
.business-map-card .map-nav-btn { z-index: 3; pointer-events: auto; }

@media (max-width: 980px) {
  .business-info-section {
    background:
      radial-gradient(ellipse 620px 320px at 80% 5%, rgba(91,199,42,0.16), transparent 72%),
      linear-gradient(180deg, rgba(6,24,92,0.98), rgba(10,31,94,0.94));
  }
  .business-info-grid { grid-template-columns: 1fr; }
  .business-map-card { min-height: 360px; }
}
@media (max-width: 720px) {
  .business-details,
  .hours-list { grid-template-columns: 1fr; }
  .service-card-image p { min-height: 0; }
  .map-nav-btn {
    left: 14px;
    right: 14px;
    justify-content: center;
  }
  .map-stub .map-nav-btn { bottom: 76px; }
}

/* ============ FIRST SCREEN REVISIONS ============ */
.header .container {
  height: 92px;
}
.brand-logo img.logo-img {
  height: 64px;
  max-width: 230px;
  object-fit: contain;
  background: transparent;
}
.hero {
  min-height: 500px;
  padding: 44px 0 26px;
}
.hero-grid {
  grid-template-columns: minmax(380px, 0.86fr) minmax(610px, 1.14fr);
  gap: 54px;
}
.hero h1 {
  max-width: 430px;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: 0;
}
.hero-sub {
  max-width: 440px;
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.52;
}
.hero-right {
  min-height: 360px;
}
.hero-photo {
  transform: translate(42px, 2px);
  border-radius: 22px;
}
.hero-main-photo {
  object-position: 66% 58%;
}
.hero-photo::after {
  background: linear-gradient(180deg, rgba(6,24,92,0.02) 0%, rgba(6,24,92,0.34) 100%);
}
.hero-bot,
.hero-ac-medallion {
  display: none;
}
.hero-photo .ph-corner {
  top: auto;
  right: 18px;
  bottom: 18px;
  padding: 7px 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #06185c;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 12px 24px rgba(10,31,94,0.2);
}
.hero-henry {
  position: absolute;
  right: -22px;
  top: -42px;
  width: 148px;
  height: auto;
  z-index: 5;
  filter: drop-shadow(0 20px 24px rgba(10,31,94,0.28));
  transform: rotate(4deg);
  pointer-events: none;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero h1,
  .hero-sub {
    max-width: 620px;
  }
  .hero-photo {
    transform: none;
  }
  .hero-henry {
    right: 12px;
    top: -32px;
    width: 128px;
  }
}
@media (max-width: 760px) {
  .header .container {
    height: 76px;
  }
  .brand-logo img.logo-img {
    height: 46px;
    max-width: 180px;
  }
  .hero {
    padding: 28px 0 18px;
  }
  .hero h1 {
    font-size: 30px;
    line-height: 1.08;
  }
  .hero-sub {
    font-size: 16px;
    line-height: 1.5;
  }
  .hero-henry {
    width: 104px;
    right: 8px;
    top: -26px;
  }
  .hero-photo .ph-corner {
    right: 12px;
    bottom: 12px;
    font-size: 11px;
  }
}

/* Targeted cleanup from review comments: direct maps, no hero/job duplicate photos. */
.hero-right-clean {
  min-height: 360px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-right-clean::before {
  display: none;
}
.hero-right-clean .hero-henry {
  position: relative;
  right: auto;
  top: auto;
  width: min(300px, 58vw);
  transform: rotate(3deg);
}
.hero-right-clean .hero-overlay-card,
.hero-right-clean .hero-photo,
.hero-right-clean .ph-corner {
  display: none;
}

.map-link-card {
  display: block;
  text-decoration: none;
  cursor: pointer;
  background:
    linear-gradient(rgba(10,31,94,0.86), rgba(10,31,94,0.82)),
    linear-gradient(135deg, rgba(31,79,224,0.5), rgba(91,199,42,0.28));
}
.map-link-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 58px 58px;
}
.map-link-card::after {
  content: '';
  position: absolute;
  left: 18%;
  right: 18%;
  top: 50%;
  height: 9px;
  border-radius: 999px;
  background: rgba(91,199,42,0.72);
  transform: rotate(18deg);
  box-shadow: 0 0 0 8px rgba(91,199,42,0.12);
}
.map-link-card .map-overlay-top,
.map-link-card .map-overlay-bottom,
.map-link-card .map-nav-btn {
  pointer-events: none;
}
.map-link-card .map-nav-btn {
  text-decoration: none;
}

@media (min-width: 861px) {
  .family-grid {
    grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
    justify-content: initial;
  }
}
.family-grid > div {
  max-width: none;
}
.team-intro {
  grid-template-columns: minmax(0, 900px);
}
.team-intro > div {
  max-width: 900px;
}

/* ---------- REFERRAL PROGRAM ---------- */
.referral-bg {
  background:
    radial-gradient(ellipse 720px 420px at 85% -10%, rgba(91,199,42,0.18), transparent 65%),
    radial-gradient(ellipse 600px 380px at 0% 110%, rgba(31,79,224,0.30), transparent 65%),
    linear-gradient(180deg, #0a1f5e 0%, #0f2a7a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.referral-bg .container { position: relative; z-index: 1; }
.referral-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}
.referral-pitch h2 { color: #fff; max-width: 480px; }
.referral-pitch .eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  color: #c5ecae;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.referral-pitch .lead {
  margin-top: 16px;
  color: rgba(255,255,255,0.86);
  font-size: 17px;
  line-height: 1.55;
  max-width: 540px;
}
.referral-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 18px;
}
.referral-perks .perk {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 15.5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 12px 16px;
}
.referral-perks .perk b { color: #c5ecae; font-weight: 700; }
.referral-perks .perk-ic {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(91,199,42,0.22);
  color: #c5ecae;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.referral-fine {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  max-width: 520px;
}
.referral-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px 30px 28px;
  box-shadow: 0 28px 56px rgba(10,31,94,0.28);
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--ink);
}
.referral-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
}
.referral-card .ref-sub {
  font-size: 13px;
  color: var(--ink-3);
  margin: -6px 0 6px;
}
.ref-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ref-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ref-row label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ref-row input,
.ref-row select,
.ref-row textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #f7f9fc;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.ref-row input:focus,
.ref-row select:focus,
.ref-row textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(31,79,224,0.12);
}
.ref-row textarea {
  resize: vertical;
  min-height: 72px;
  font-size: 14.5px;
}
.ref-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 6px 0 2px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ref-divider::before,
.ref-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.ref-submit {
  margin-top: 6px;
  width: 100%;
  justify-content: center;
}
.ref-submit:disabled { opacity: 0.6; cursor: wait; }
.ref-err {
  font-size: 13.5px;
  color: #b91c1c;
  margin: 6px 0 0;
  text-align: center;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 14px 16px;
}
.ref-err p { margin: 0 0 10px; font-weight: 600; }
.ref-err-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.ref-err-actions .btn { color: #fff; }
.referral-success {
  text-align: center;
  padding: 18px 8px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.referral-success .success-ic {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(91,199,42,0.16);
  color: var(--green-600);
  display: grid; place-items: center;
}
.referral-success h3 { font-size: 24px; }
.referral-success p { color: var(--ink-2); max-width: 360px; }
.referral-success .btn { margin-top: 6px; }

@media (max-width: 880px) {
  .referral-grid { grid-template-columns: 1fr; gap: 28px; }
  .referral-pitch h2 { max-width: none; }
}
@media (max-width: 480px) {
  .ref-grid-2 { grid-template-columns: 1fr; }
  .referral-card { padding: 22px 20px 20px; }
}

/* ---------- CREDENTIALS / TRUST BADGES ---------- */
section.block.credentials { background: #fff; border-top: 1px solid var(--line); }
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
  align-items: stretch;
}
.credential-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 32px;
  min-height: 180px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.credential-card:hover {
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}
.credential-card img {
  display: block;
  max-width: 100%;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 640px) {
  .credentials-grid { grid-template-columns: 1fr; gap: 14px; }
  .credential-card { padding: 22px 24px; min-height: 150px; }
  .credential-card img { max-height: 100px; }
}

/* Podium owns the bottom-right contact experience. Keep mobile CTAs in-page. */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }
  body {
    padding-bottom: 0;
  }
  .announce .container {
    justify-content: center;
    min-height: 38px;
    height: auto;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .announce .left {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .announce .right {
    display: none;
  }
  .mobile-bar {
    display: none !important;
  }
  .to-top {
    bottom: calc(150px + env(safe-area-inset-bottom));
    right: 14px;
    left: auto;
    z-index: 45;
  }
  .hero {
    overflow: hidden;
  }
  .hero .container {
    width: 100%;
    max-width: 100vw;
    padding-left: 18px !important;
    padding-right: 18px !important;
    overflow: hidden;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 20px;
    width: 100%;
    max-width: 100%;
  }
  .hero-left,
  .hero-right {
    min-width: 0;
    width: calc(100vw - 36px) !important;
    max-width: calc(100vw - 36px) !important;
    overflow: hidden;
  }
  .hero h1 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(28px, 7.6vw, 34px) !important;
    line-height: 1.04;
    overflow-wrap: break-word;
  }
  .hero-sub {
    width: min(320px, calc(100vw - 70px)) !important;
    max-width: min(320px, calc(100vw - 70px)) !important;
    overflow-wrap: break-word;
  }
  .hero-micro {
    width: min(320px, calc(100vw - 70px)) !important;
    max-width: min(320px, calc(100vw - 70px)) !important;
  }
  .hero-ctas {
    width: min(354px, calc(100vw - 36px)) !important;
    max-width: min(354px, calc(100vw - 36px)) !important;
  }
  .hero-ctas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-ctas .btn {
    width: 100%;
    min-width: 0;
  }
}

/* Mobile top navigation: keep section links visible like desktop. */
@media (max-width: 980px) {
  html { scroll-padding-top: 138px; }

  body {
    padding-top: 116px;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    overflow: visible;
    z-index: 90;
    border-bottom-color: rgba(220, 227, 242, 0.95);
    box-shadow: 0 12px 30px rgba(10, 31, 94, 0.08);
  }

  .header .container {
    width: 100%;
    max-width: none;
    height: auto !important;
    min-height: 0;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    padding: 8px 14px 7px;
  }

  .brand-logo {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-logo img.logo-img {
    height: 52px !important;
    max-width: 188px;
  }

  .header-cta {
    flex: 0 0 auto;
    gap: 6px;
    margin-left: auto;
  }

  .header-cta .btn {
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    border-radius: 12px;
  }

  .header-cta .btn-book {
    display: inline-flex !important;
  }

  .header-cta .btn-text {
    display: none !important;
  }

  .menu-toggle {
    display: none !important;
  }

  .nav {
    order: 3;
    display: flex !important;
    width: 100%;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 9px 2px 4px;
    margin-top: 2px;
    border-top: 1px solid rgba(220, 227, 242, 0.8);
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    scroll-snap-align: start;
    font-size: 12.5px;
    line-height: 1;
    padding: 9px 0 10px;
    border-radius: 0;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
  }

  .nav a::after {
    left: 0;
    right: 0;
    bottom: 2px;
  }

  .mobile-menu,
  .mobile-menu.open {
    display: none !important;
  }

  .admin-bar .header {
    top: 32px;
  }
}

@media (max-width: 480px) {
  html { scroll-padding-top: 132px; }

  body {
    padding-top: 108px;
  }

  .header .container {
    padding-left: 14px;
    padding-right: 14px;
    gap: 8px;
  }

  .brand-logo img.logo-img {
    height: 46px !important;
    max-width: 154px;
  }

  .header-cta {
    gap: 5px;
  }

  .header-cta .btn {
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
  }

  .nav {
    gap: 14px;
    padding-top: 7px;
  }

  .nav a {
    font-size: 11.25px;
  }
}

@media (max-width: 782px) {
  .admin-bar .header {
    top: 46px;
  }
}

@media (max-width: 380px) {
  html { scroll-padding-top: 128px; }

  body {
    padding-top: 104px;
  }

  .brand-logo img.logo-img {
    height: 42px !important;
    max-width: 142px;
  }

  .header-cta .btn {
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
  }

  .nav {
    gap: 12px;
  }

  .nav a {
    font-size: 10.8px;
    min-height: 34px;
  }
}

.nav a:first-child:not(.active) {
  color: var(--ink);
}

.nav a:first-child:not(.active)::after {
  transform: scaleX(0);
}

.nav a:first-child:not(.active):hover::after,
.nav a.active::after {
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleX(1);
}

.nav a.active {
  color: var(--green-700);
}
