/* ==========================================================================
   NAC Property Maintenance — design system
   ========================================================================== */

:root {
  /* Brand */
  --navy-900: #081530;
  --navy-800: #0d1f45;
  --navy-700: #12234f;
  --navy-600: #1a2f66;
  --blue-600: #1f6fb8;
  --blue-500: #2b8adf;
  --blue-400: #57a8ef;
  --blue-100: #dbeafe;
  --leaf-600: #2f7c33;
  --leaf-500: #3f9142;
  --leaf-400: #6fc275;

  /* Neutrals */
  --ink: #101828;
  --ink-soft: #344054;
  --muted: #5a6472;
  --bg: #ffffff;
  --bg-alt: #f5f8fc;
  --bg-tint: #eef4fb;
  --border: #e3e9f1;
  --border-strong: #cfd9e8;

  /* Effects */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-xs: 0 1px 2px rgba(16, 24, 40, 0.06);
  --shadow-sm: 0 4px 12px rgba(13, 31, 69, 0.06);
  --shadow: 0 12px 32px rgba(13, 31, 69, 0.10);
  --shadow-lg: 0 28px 64px rgba(13, 31, 69, 0.18);
  --shadow-glow: 0 16px 40px rgba(31, 111, 184, 0.32);

  --grad-brand: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-500) 100%);
  --grad-deep: linear-gradient(150deg, var(--navy-900) 0%, var(--navy-700) 45%, #1c4a86 100%);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink-soft);
  background: var(--bg);
  line-height: 1.62;
  font-size: 16.5px;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }

img, svg { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: var(--navy-700);
  letter-spacing: -0.022em;
  font-weight: 800;
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--navy-700);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ============================ Buttons ============================ */
.btn {
  --btn-bg: var(--navy-700);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  font-family: inherit;
  line-height: 1.2;
  border: 2px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--navy-700); box-shadow: 0 10px 24px rgba(18, 35, 79, 0.22); }
.btn-primary:hover { background: var(--navy-600); box-shadow: 0 16px 34px rgba(18, 35, 79, 0.3); }

.btn-accent {
  background: var(--grad-brand);
  box-shadow: var(--shadow-glow);
}
.btn-accent:hover { box-shadow: 0 22px 48px rgba(31, 111, 184, 0.42); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255,255,255,0.6); }

.btn-outline {
  background: #fff;
  color: var(--navy-700);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-xs);
}
.btn-outline:hover { border-color: var(--blue-500); color: var(--blue-600); }

.btn-lg { padding: 17px 34px; font-size: 1.02rem; }

/* Shine sweep on primary CTAs */
.btn-accent::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.42) 48%, transparent 66%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
  pointer-events: none;
}
.btn-accent:hover::after { transform: translateX(120%); }

/* ============================ Header ============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--border);
  box-shadow: 0 6px 26px rgba(13, 31, 69, 0.08);
}

.scroll-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--grad-brand);
  z-index: 2;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--header-h);
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 46px;
  width: auto;
  transition: height 0.3s var(--ease);
}
.scrolled .logo-img { height: 38px; }
@media (min-width: 640px) { .logo-img { height: 58px; } }

.site-nav {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: 28px;
  font-weight: 600;
  font-size: 0.95rem;
}
.site-nav a {
  position: relative;
  color: var(--ink);
  padding: 9px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-500);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.3s var(--ease);
}
.site-nav a:hover { color: var(--blue-600); background: var(--bg-tint); }
.site-nav a:hover::after,
.site-nav a.active::after { transform: scaleX(1); }
.site-nav a.active { color: var(--blue-600); }

.header-actions {
  display: none;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--navy-700);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.header-phone svg { width: 18px; height: 18px; color: var(--blue-500); }
.header-phone:hover { color: var(--blue-600); }
.header-actions .btn { padding: 11px 22px; font-size: 0.9rem; }

@media (min-width: 980px) {
  .site-nav { display: flex; }
  .header-actions { display: flex; }
  .nav-toggle { display: none !important; }
}

.nav-toggle {
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-700);
  transition: transform 0.28s var(--ease), opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-panel {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 190;
  background: #fff;
  padding: 28px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
  overflow-y: auto;
}
.mobile-panel.open { opacity: 1; transform: none; visibility: visible; }
.mobile-panel a.m-link {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy-700);
  padding: 16px 4px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-panel a.m-link::after { content: "→"; color: var(--blue-500); }
.mobile-cta { display: grid; gap: 12px; margin-top: 26px; }
.mobile-cta .btn { width: 100%; }
@media (min-width: 980px) { .mobile-panel { display: none; } }

/* ============================ Hero ============================ */
.hero {
  position: relative;
  isolation: isolate;
  background: var(--grad-deep);
  color: #fff;
  padding: 72px 0 96px;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: -1;
  pointer-events: none;
}
.hero::before {
  width: 620px; height: 620px;
  top: -220px; left: -180px;
  background: radial-gradient(circle, rgba(43,138,223,0.55), transparent 70%);
  animation: drift 18s ease-in-out infinite alternate;
}
.hero::after {
  width: 520px; height: 520px;
  bottom: -220px; right: -120px;
  background: radial-gradient(circle, rgba(63,145,66,0.34), transparent 70%);
  animation: drift 22s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(50px, 40px, 0) scale(1.12); }
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 980px) {
  .hero { padding: 84px 0 108px; }
  .hero-grid { grid-template-columns: 1.02fr 1fr; gap: 56px; }
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.7rem;
  font-weight: 800;
  color: #d8e8fa;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 16px;
  margin: 0 0 22px;
}
.badge-pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--leaf-400);
  box-shadow: 0 0 0 0 rgba(111, 194, 117, 0.7);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(111, 194, 117, 0.65); }
  70%  { box-shadow: 0 0 0 10px rgba(111, 194, 117, 0); }
  100% { box-shadow: 0 0 0 0 rgba(111, 194, 117, 0); }
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5.6vw, 3.7rem);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.032em;
}
.hero h1 .grad {
  background: linear-gradient(100deg, #7fd190 0%, #57a8ef 55%, #a9d7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.08rem;
  color: #c9daee;
  margin: 0 0 30px;
  max-width: 540px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.92rem;
  color: #cfe0f2;
  font-weight: 600;
}
.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points svg { width: 18px; height: 18px; color: var(--leaf-400); flex-shrink: 0; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.16);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.6s var(--ease);
}
.hero-visual:hover .hero-frame { transform: perspective(1200px) rotateY(0deg) rotateX(0deg); }
.hero-frame img { width: 100%; height: auto; }

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: bob 5.5s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.float-card .fc-icon {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
}
.float-card .fc-icon svg { width: 20px; height: 20px; }
.float-card strong { display: block; color: var(--navy-700); font-size: 0.9rem; line-height: 1.25; }
.float-card span { font-size: 0.76rem; color: var(--muted); }

.float-punctual { bottom: 22px; left: -14px; animation-delay: -1.4s; }
.float-punctual .fc-icon { background: var(--grad-brand); }
.float-guarantee { top: 22px; right: -14px; }
.float-guarantee .fc-icon { background: linear-gradient(135deg, var(--leaf-500), var(--leaf-600)); }
@media (max-width: 560px) {
  .float-punctual { left: 8px; bottom: 12px; }
  .float-guarantee { right: 8px; top: 12px; }
  .float-card { padding: 10px 14px; }
  .float-card strong { font-size: 0.82rem; }
  .float-card span { font-size: 0.7rem; }
}

/* ============================ Stats ============================ */
.stats {
  padding: 0;
  margin-top: -46px;
  position: relative;
  z-index: 5;
}
.stats-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
}
@media (min-width: 820px) { .stats-card { grid-template-columns: repeat(4, 1fr); } }
.stat {
  padding: 30px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat:nth-child(2n) { border-right: none; }
@media (min-width: 820px) {
  .stat { border-bottom: none; }
  .stat:nth-child(2n) { border-right: 1px solid var(--border); }
  .stat:last-child { border-right: none; }
}
.stat-num {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--navy-700);
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-num:not([data-count]) { font-size: clamp(1.5rem, 3vw, 1.95rem); }
.stat-label {
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

/* ============================ Section shell ============================ */
section { padding: 84px 0; }
@media (min-width: 900px) { section { padding: 104px 0; } }

.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title { font-size: clamp(1.75rem, 3.4vw, 2.5rem); margin-bottom: 14px; }
.section-sub { color: var(--muted); margin: 0; font-size: 1.02rem; }

.eyebrow-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.73rem;
  font-weight: 800;
  color: var(--blue-600);
  background: var(--bg-tint);
  border-radius: 999px;
  padding: 7px 14px;
  margin: 0 0 16px;
}
.eyebrow-label::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-500);
}
.on-dark .eyebrow-label {
  color: #b7d6f5;
  background: rgba(255,255,255,0.09);
}
.on-dark .eyebrow-label::before { background: var(--leaf-400); }
.on-dark .section-title { color: #fff; }
.on-dark .section-sub { color: #c2d5ea; }

/* ============================ Services ============================ */
.services { background: var(--bg-alt); }
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-400);
}
.service-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy-700);
}
.service-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.service-card:hover .service-media img { transform: scale(1.07); }
.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 21, 48, 0.65), transparent 55%);
}
.service-badge {
  position: absolute;
  z-index: 2;
  top: 14px; left: 14px;
  width: 44px; height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(8, 21, 48, 0.55);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.service-badge svg { width: 23px; height: 23px; }

.service-body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 1.16rem; margin-bottom: 8px; }
.service-card p { color: var(--muted); margin: 0 0 18px; font-size: 0.95rem; }
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  padding: 0;
  margin: auto 0 0;
}
.service-tags li {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--blue-600);
  background: var(--bg-tint);
  border-radius: 999px;
  padding: 5px 11px;
}

.service-card.card-cta {
  background: var(--grad-deep);
  border: none;
  justify-content: center;
  padding: 36px 30px;
  color: #fff;
  text-align: left;
}
.service-card.card-cta h3 { color: #fff; font-size: 1.35rem; }
.service-card.card-cta p { color: #c2d5ea; }
.service-card.card-cta .btn { align-self: flex-start; }

/* ============================ Before / After ============================ */
.showcase { background: var(--grad-deep); color: #fff; overflow: hidden; }
.showcase-grid { display: grid; gap: 44px; align-items: center; }
@media (min-width: 980px) { .showcase-grid { grid-template-columns: 0.85fr 1.15fr; gap: 60px; } }

.ba {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.16);
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  cursor: ew-resize;
  aspect-ratio: 10 / 7;
  background: #0d1f45;
}
.ba img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-after-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 0 0 var(--pos, 50%));
  will-change: clip-path;
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos, 50%);
  width: 3px;
  margin-left: -1.5px;
  background: #fff;
  box-shadow: 0 0 18px rgba(0,0,0,0.45);
  z-index: 3;
  will-change: left;
}
.ba-knob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy-700);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
  border: none;
  cursor: ew-resize;
  transition: transform 0.25s var(--ease);
}
.ba:hover .ba-knob { transform: translate(-50%, -50%) scale(1.08); }
.ba-knob svg { width: 26px; height: 26px; }
.ba-tag {
  position: absolute;
  top: 16px;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.ba-tag.before { left: 16px; background: rgba(8,21,48,0.66); color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.ba-tag.after  { right: 16px; background: rgba(63,145,66,0.9); color: #fff; }
.ba-hint {
  margin: 14px 0 0;
  font-size: 0.86rem;
  color: #a8c3e0;
  text-align: center;
}

.showcase-list { list-style: none; padding: 0; margin: 28px 0 32px; display: grid; gap: 16px; }
.showcase-list li { display: flex; gap: 14px; align-items: flex-start; }
.showcase-list .li-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: grid;
  place-items: center;
  color: var(--leaf-400);
}
.showcase-list .li-icon svg { width: 17px; height: 17px; }
.showcase-list strong { display: block; color: #fff; font-size: 0.98rem; }
.showcase-list span { color: #b7cbe2; font-size: 0.9rem; }

/* ============================ Process ============================ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  position: relative;
}
@media (min-width: 860px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-grid::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--border-strong) 0 8px, transparent 8px 16px);
    z-index: 0;
  }
}
.process-step {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.process-num {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 18px;
  background: var(--grad-brand);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: var(--shadow-glow);
}
.process-step h3 { font-size: 1.14rem; margin-bottom: 8px; }
.process-step p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* ============================ Promise band ============================ */
.promise { background: var(--bg-alt); }

/* ============================ About ============================ */
.about-copy { max-width: 820px; margin: 0 auto; }
.about-copy p { color: var(--muted); font-size: 1.02rem; }
.about-cta { text-align: center; }

/* Two columns so four items read as a block, not a tall thin list */
.about-checklist {
  gap: 16px 34px;
  margin: 0 0 36px;
}
@media (min-width: 720px) {
  .about-checklist { grid-template-columns: 1fr 1fr; }
}
.about-checklist li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-xs);
}

.checklist { list-style: none; padding: 0; margin: 24px 0 30px; display: grid; gap: 13px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); font-size: 0.97rem; }
.checklist svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--leaf-500);
  margin-top: 1px;
}

/* ============================ Service area ============================ */
.area { background: var(--bg-alt); }
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.area-chips li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy-700);
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s var(--ease), border-color 0.2s ease, color 0.2s ease;
}
.area-chips li:hover { transform: translateY(-3px); border-color: var(--blue-400); color: var(--blue-600); }
.area-note { text-align: center; margin: 26px 0 0; color: var(--muted); font-size: 0.94rem; }

/* ============================ FAQ ============================ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 24px;
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item[open] { border-color: var(--blue-400); box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy-700);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 1.01rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f6fb8' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 15px no-repeat;
  transition: transform 0.3s var(--ease), background-color 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-item .faq-answer { overflow: hidden; }
.faq-item p { color: var(--muted); margin: 0 0 20px; font-size: 0.97rem; padding-right: 40px; }

/* ============================ CTA banner ============================ */
.cta-banner {
  position: relative;
  isolation: isolate;
  background: var(--grad-deep);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 700px; height: 700px;
  top: -300px; left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,138,223,0.45), transparent 68%);
  filter: blur(60px);
}
.cta-banner .section-title { color: #fff; }
.cta-banner .cta-sub { color: #c9daee; max-width: 560px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-banner-email { margin: 26px 0 0; font-size: 0.95rem; color: #a8c3e0; }
.cta-banner-email a { color: #dbe6f4; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.cta-banner-email a:hover { color: #fff; }

/* ============================ Page banner (subpages) ============================ */
.page-banner {
  position: relative;
  isolation: isolate;
  background: var(--grad-deep);
  color: #fff;
  padding: 72px 0 64px;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 560px; height: 560px;
  top: -260px; right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,138,223,0.5), transparent 70%);
  filter: blur(60px);
}
.page-banner h1 {
  color: #fff;
  font-size: clamp(2rem, 4.6vw, 3rem);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.page-banner .hero-sub { margin-bottom: 0; }
.page-banner.center { text-align: center; }
.page-banner.center .hero-sub { margin-left: auto; margin-right: auto; }
.page-banner .inner { max-width: 720px; }

.breadcrumbs { font-size: 0.85rem; color: #a8c3e0; margin: 0 0 18px; }
.breadcrumbs a:hover { color: #fff; text-decoration: underline; }

/* ============================ Trust bar ============================ */
.trust-bar { padding: 56px 0; border-top: 1px solid var(--border); background: var(--bg-alt); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-xs);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.trust-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.trust-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--bg-tint);
  color: var(--blue-600);
  display: grid;
  place-items: center;
}
.trust-icon svg { width: 24px; height: 24px; }
.trust-item h3 { font-size: 1rem; margin: 0 0 4px; }
.trust-item p { color: var(--muted); font-size: 0.89rem; margin: 0; }

/* ============================ Quote page ============================ */
.quote-layout { display: grid; gap: 36px; align-items: start; }
@media (min-width: 940px) { .quote-layout { grid-template-columns: 1.35fr 0.85fr; gap: 48px; } }

.quote-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 34px 30px;
}
.quote-panel h2 { font-size: 1.4rem; margin-bottom: 6px; }
.quote-panel > p.lede { color: var(--muted); margin-bottom: 26px; font-size: 0.97rem; }

/* The GHL form iframe sizes itself via form_embed.js; give it a floor so the
   panel doesn't collapse before the script runs. */
.quote-panel iframe { display: block; width: 100%; min-height: 620px; border: 0; }

/* The GHL form is a third-party iframe and takes a moment to arrive. Show a
   skeleton in the same space so the panel doesn't sit empty, then fade it out
   once the iframe fires load. */
.form-wrap { position: relative; min-height: 620px; }
.form-loader {
  position: absolute;
  inset: 0;
  /* form_embed.js sets position:relative on the iframe, so without a z-index
     the loader (an earlier sibling) paints underneath it and never shows. */
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.form-wrap.loaded .form-loader { opacity: 0; visibility: hidden; }
.form-spinner {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 3px solid var(--border-strong);
  border-top-color: var(--blue-500);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.form-loader p { margin: 0; color: var(--muted); font-size: 0.94rem; font-weight: 600; }
.form-skeleton { width: min(420px, 82%); display: grid; gap: 14px; margin-top: 6px; }
.form-skeleton span {
  display: block;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(90deg, #e8edf5 25%, #f4f7fb 50%, #e8edf5 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
.form-skeleton span:nth-child(2) { animation-delay: 0.15s; }
.form-skeleton span:nth-child(3) { animation-delay: 0.3s; }
@keyframes shimmer { to { background-position: -200% 0; } }
@media (prefers-reduced-motion: reduce) {
  .form-spinner, .form-skeleton span { animation: none; }
}

.quote-aside { display: grid; gap: 20px; }
.aside-card {
  background: var(--grad-deep);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.aside-card h3 { color: #fff; font-size: 1.14rem; }
.aside-card p { color: #c2d5ea; font-size: 0.94rem; }
.aside-card .btn { width: 100%; margin-top: 6px; }
.aside-contact {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  font-weight: 700;
}
.aside-contact:last-of-type { border-bottom: none; }
.aside-contact svg { width: 20px; height: 20px; color: var(--leaf-400); flex-shrink: 0; }
.aside-contact span { font-size: 0.76rem; display: block; color: #a8c3e0; font-weight: 600; }
.aside-contact div { min-width: 0; overflow-wrap: anywhere; }

.aside-plain {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-xs);
}
.aside-plain h3 { font-size: 1.05rem; }

/* ============================ Thank you ============================ */
.thank-you-content { max-width: 580px; margin: 0 auto; text-align: center; }
.thank-you-icon {
  width: 88px; height: 88px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf-400), var(--leaf-600));
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(63, 145, 66, 0.35);
  animation: popIn 0.6s var(--ease) both;
}
.thank-you-icon svg { width: 44px; height: 44px; }
@keyframes popIn {
  from { transform: scale(0.6); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ============================ Legal ============================ */
.legal-content { padding: 72px 0 96px; }
.prose { max-width: 760px; }
.prose h2 { font-size: 1.3rem; margin: 2em 0 0.6em; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--muted); font-size: 0.99rem; margin: 0 0 1em; }
.prose ul { padding-left: 1.2em; }
.prose a { color: var(--blue-600); text-decoration: underline; text-underline-offset: 3px; }

/* ============================ Footer ============================ */
.site-footer {
  background: var(--navy-900);
  color: #b9c9de;
  padding: 68px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 36px;
  padding-bottom: 48px;
}
/* The supplied logo has an opaque white background, so on the navy footer it
   needs a white plate to sit on rather than being placed directly. */
.footer-logo-badge {
  display: inline-flex;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
}
.footer-logo-img { height: 52px; width: auto; }
.footer-tagline { margin: 16px 0 0; font-size: 0.92rem; color: #8ea6c4; max-width: 240px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; font-size: 0.92rem; }
.footer-col h4 {
  color: #fff;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 6px;
  font-weight: 800;
}
.footer-col a, .footer-col span {
  color: #b9c9de;
  overflow-wrap: anywhere;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.footer-copy { margin: 0; font-size: 0.83rem; color: #7d95b5; }
.footer-legal { display: flex; gap: 20px; font-size: 0.83rem; }
.footer-legal a { color: #7d95b5; }
.footer-legal a:hover { color: #fff; }

/* ============================ Sticky mobile bar ============================ */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 180;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  transform: translateY(110%);
  transition: transform 0.35s var(--ease);
}
.mobile-bar.show { transform: none; }
.mobile-bar .btn { width: 100%; padding: 13px 16px; font-size: 0.92rem; }
@media (min-width: 760px) { .mobile-bar { display: none; } }
@media (max-width: 759px) { body { padding-bottom: 74px; } }

/* ============================ Back to top ============================ */
.to-top {
  position: fixed;
  right: 20px;
  bottom: 92px;
  z-index: 170;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy-700);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s, background 0.2s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--navy-700); color: #fff; }
.to-top svg { width: 20px; height: 20px; }
@media (min-width: 760px) { .to-top { bottom: 26px; } }

/* ============================ Reveal on scroll ============================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-frame { transform: none; }
}
