/* ─── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --coral:     #E8604C;
  --coral-dk:  #C94A38;
  --teal:      #6FCFBE;
  --teal-dk:   #4DADA0;
  --dark:      #1A1A1A;
  --dark-2:    #242424;
  --cream:     #F6F2EC;
  --white:     #FFFFFF;
  --text:      #2D2D2D;
  --muted:     #6B6B6B;
  --border:    rgba(0,0,0,0.08);
  --font:      'League Spartan', sans-serif;
  --max-w:     1180px;
  --r:         10px;
  --r-lg:      18px;
  --shadow:    0 2px 20px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* ─── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r);
  font-family: var(--font); font-size: 14px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; border: 2px solid transparent;
  transition: all 0.18s ease; white-space: nowrap;
}
.btn svg { flex-shrink: 0; }

.btn-coral { background: var(--coral); color: var(--white); border-color: var(--coral); }
.btn-coral:hover { background: var(--coral-dk); border-color: var(--coral-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,96,76,0.35); }

.btn-ghost-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-ghost-white:hover { background: var(--white); color: var(--dark); border-color: var(--white); }

.btn-white { background: var(--white); color: var(--coral); border-color: var(--white); }
.btn-white:hover { background: var(--dark); color: var(--white); border-color: var(--dark); transform: translateY(-2px); }

.btn-ghost-coral { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost-coral:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ─── Nav ──────────────────────────────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 200; background: var(--dark); border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 16px; }
.nav-logo img { height: 46px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links > li > a,
.nav-link-btn { display: flex; align-items: center; gap: 4px; color: rgba(255,255,255,0.75); font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; padding: 7px 9px; border-radius: 6px; background: none; border: none; cursor: pointer; font-family: var(--font); transition: color 0.15s, background 0.15s; white-space: nowrap; }
.nav-links > li > a:hover,
.nav-link-btn:hover,
.has-drop.open > .nav-link-btn { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-link-btn svg { width: 11px; height: 11px; transition: transform 0.2s; }
.has-drop.open > .nav-link-btn svg { transform: rotate(180deg); }
/* dropdown */
.has-drop { position: relative; }
.nav-drop { display: none; position: absolute; top: calc(100% + 6px); left: 0; background: var(--dark); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 8px; min-width: 220px; box-shadow: 0 16px 40px rgba(0,0,0,0.5); z-index: 400; }
.has-drop.open > .nav-drop { display: block; }
.nav-drop a { display: block; color: rgba(255,255,255,0.75); font-size: 12px; font-weight: 600; padding: 8px 12px; border-radius: 6px; transition: color 0.15s, background 0.15s; white-space: nowrap; }
.nav-drop a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
/* right side */
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-phone { display: flex; align-items: center; gap: 6px; color: var(--teal); font-size: 15px; font-weight: 800; transition: opacity 0.15s; }
.nav-phone:hover { opacity: 0.8; }
.nav-phone svg { width: 15px; height: 15px; }
.nav-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px; }
.nav-menu-btn span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.25s; }
/* mobile drawer */
.nav-drawer { display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: var(--dark); z-index: 199; overflow-y: auto; }
.nav-drawer.open { display: block; }
.drawer-links { display: flex; flex-direction: column; border-bottom: 1px solid rgba(255,255,255,0.06); }
.drawer-links a { color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 15px 24px; border-bottom: 1px solid rgba(255,255,255,0.04); transition: color 0.15s; }
.drawer-links a:hover { color: var(--teal); }
/* mobile drawer accordions (service sub-links) */
.drawer-section { border-bottom: 1px solid rgba(255,255,255,0.06); }
.drawer-section-btn { width: 100%; background: none; border: none; cursor: pointer; font-family: var(--font); display: flex; align-items: center; justify-content: space-between; padding: 15px 24px; color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.drawer-section-btn svg { width: 16px; height: 16px; color: var(--muted); transition: transform 0.2s; flex-shrink: 0; }
.drawer-section.open .drawer-section-btn { color: var(--teal); }
.drawer-section.open .drawer-section-btn svg { transform: rotate(180deg); color: var(--teal); }
.drawer-section-links { display: none; padding: 2px 0 12px; background: rgba(0,0,0,0.2); }
.drawer-section.open .drawer-section-links { display: block; }
.drawer-section-links a { display: block; color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 600; padding: 11px 24px 11px 38px; transition: color 0.15s; }
.drawer-section-links a:hover { color: var(--teal); }
.drawer-cta { padding: 20px 24px; display: flex; flex-direction: column; gap: 10px; }
.drawer-cta .btn { justify-content: center; }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.footer { background: #111; color: rgba(255,255,255,0.6); padding: 60px 0 0; }
.footer-body { display: grid; grid-template-columns: 220px 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-mascot { display: block; margin-bottom: 20px; }
.footer-info-item { margin-top: 14px; }
.footer-info-label { display: flex; align-items: center; gap: 5px; font-size: 9px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 3px; }
.footer-info-label svg { width: 11px; height: 11px; flex-shrink: 0; }
.footer-info-value { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.55; }
.footer-info-value a { color: rgba(255,255,255,0.75); transition: color 0.15s; }
.footer-info-value a:hover { color: var(--teal); }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social-btn { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 8px; color: rgba(255,255,255,0.7); transition: background 0.15s, color 0.15s; }
.footer-social-btn:hover { background: var(--teal); color: #111; }
.footer-col h4 { font-size: 20px; font-weight: 900; color: var(--white); margin-bottom: 16px; letter-spacing: -0.01em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.15s; line-height: 1.4; }
.footer-col ul a:hover { color: var(--white); }
.footer-quick { padding: 20px 0 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-quick h4 { font-size: 16px; font-weight: 900; color: var(--white); margin-bottom: 10px; letter-spacing: -0.01em; }
.footer-quick-links { display: flex; flex-wrap: wrap; align-items: center; }
.footer-quick-links a { font-size: 13px; color: rgba(255,255,255,0.6); padding: 2px 14px; border-right: 1px solid rgba(255,255,255,0.15); transition: color 0.15s; }
.footer-quick-links a:first-child { padding-left: 0; }
.footer-quick-links a:last-child { border-right: none; }
.footer-quick-links a:hover { color: var(--white); }
.footer-bottom { padding: 14px 0; display: flex; justify-content: space-between; align-items: center; font-size: 12px; flex-wrap: wrap; gap: 8px; }
@media (max-width: 1100px) { .footer-body { grid-template-columns: 1fr 1fr 1fr; } .footer-info { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: start; } }
@media (max-width: 768px) { .footer-body { grid-template-columns: 1fr 1fr; } .footer-info { grid-column: 1 / -1; grid-template-columns: 1fr; } .footer-quick-links a { border-right: none; padding: 4px 12px 4px 0; } .footer-bottom { flex-direction: column; text-align: center; } }
@media (max-width: 480px) { .footer-body { grid-template-columns: 1fr; } }

/* ─── Homepage Hero ────────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; background: var(--dark); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; opacity: 0.18; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(111,207,190,0.08) 1px, transparent 1px); background-size: 28px 28px; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26,26,26,0.85) 55%, rgba(26,26,26,0.1) 100%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 660px; padding: 80px 0; }
.hero-tag { display: inline-flex; align-items: center; gap: 7px; background: rgba(111,207,190,0.15); border: 1px solid rgba(111,207,190,0.35); color: var(--teal); font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 28px; }
.hero-tag svg { width: 12px; height: 12px; }
.hero h1 { font-size: clamp(44px, 7.5vw, 88px); font-weight: 900; color: var(--white); line-height: 0.95; letter-spacing: -0.03em; text-transform: uppercase; margin-bottom: 10px; }
.hero h1 .accent { color: var(--coral); }
.hero-sub { font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,0.65); font-weight: 400; margin-top: 20px; margin-bottom: 40px; max-width: 480px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-divider { margin-top: 60px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-wrap: wrap; gap: 28px; }
.hero-trust { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.82); font-size: 13px; font-weight: 600; }
.trust-dot { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--teal); display: flex; align-items: center; justify-content: center; background: rgba(111,207,190,0.12); flex-shrink: 0; }
.trust-dot svg { width: 15px; height: 15px; color: var(--teal); }

/* ─── Inner Page Hero ──────────────────────────────────────────────────────── */
.page-hero { position: relative; background: var(--dark); padding: clamp(44px, 8vw, 72px) 0 clamp(48px, 9vw, 80px); overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(111,207,190,0.06) 1px, transparent 1px); background-size: 28px 28px; }
.page-hero-content { position: relative; z-index: 2; max-width: 760px; }
.page-hero h1 { font-size: clamp(36px, 5.5vw, 68px); font-weight: 900; color: var(--white); line-height: 1.0; letter-spacing: -0.03em; text-transform: uppercase; margin-bottom: 16px; }
.page-hero h1 .accent { color: var(--coral); }
.page-hero-sub { font-size: clamp(16px, 2.2vw, 18px); color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.65; margin-bottom: 36px; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.page-hero-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 48px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.1); }
.page-hero-meta-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.75); }
.page-hero-meta-item svg { width: 15px; height: 15px; color: var(--teal); flex-shrink: 0; }


/* ─── Breadcrumb ───────────────────────────────────────────────────────────── */
.breadcrumb { background: var(--dark-2); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: rgba(255,255,255,0.45); }
.breadcrumb-inner a { color: rgba(255,255,255,0.55); transition: color 0.15s; }
.breadcrumb-inner a:hover { color: var(--teal); }
.breadcrumb-inner span { color: rgba(255,255,255,0.25); }
.breadcrumb-inner strong { color: rgba(255,255,255,0.75); font-weight: 700; }

/* ─── Service Strip ────────────────────────────────────────────────────────── */
.strip { background: var(--coral); }
.strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-item { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 18px 12px; color: var(--white); font-size: 13px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; border-right: 1px solid rgba(255,255,255,0.18); transition: background 0.15s; }
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: var(--coral-dk); }
.strip-item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ─── Sections ─────────────────────────────────────────────────────────────── */
.section      { padding: clamp(48px, 8vw, 96px) 0; }
.section-sm   { padding: clamp(40px, 6vw, 64px) 0; }
.section-cream { background: var(--cream); }
.section-dark  { background: var(--dark); }

.eyebrow { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--coral); margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 4vw, 50px); font-weight: 900; line-height: 1.05; letter-spacing: -0.025em; text-transform: uppercase; margin-bottom: 16px; }
.section-body { font-size: clamp(15px, 1.8vw, 17px); color: var(--muted); max-width: 540px; line-height: 1.7; }
.section-hd { margin-bottom: clamp(32px, 5vw, 60px); }
.center { text-align: center; }
.center .section-body { margin: 0 auto; }

/* ─── Prose (long-form content) ────────────────────────────────────────────── */
.prose { max-width: 720px; }
.prose p { font-size: clamp(16px, 1.7vw, 17px); color: var(--text); line-height: 1.75; margin-bottom: 20px; }
.prose p:last-child { margin-bottom: 0; }
.prose h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; color: var(--dark); margin: clamp(32px, 5vw, 48px) 0 16px; line-height: 1.1; }
.prose h3 { font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; color: var(--dark); margin: 32px 0 12px; }
.prose .aside { background: var(--cream); border-left: 4px solid var(--teal); padding: 20px 24px; border-radius: 0 var(--r) var(--r) 0; margin: 28px 0; font-size: 15px; color: var(--text); line-height: 1.7; }
.prose .aside strong { color: var(--dark); font-weight: 800; }

/* ─── Services Grid ─────────────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.svc-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.svc-card-top { background: var(--cream); padding: 40px 32px; display: flex; align-items: center; justify-content: center; border-bottom: 3px solid var(--coral); }
.svc-card-top img { height: 72px; width: auto; filter: drop-shadow(0 4px 12px rgba(232,96,76,0.2)); }
.svc-card-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.svc-card-title { font-size: 20px; font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em; color: var(--dark); margin-bottom: 10px; }
.svc-card-text { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.svc-list { list-style: none; margin-bottom: 28px; flex: 1; }
.svc-list li { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--text); padding: 5px 0; border-bottom: 1px solid var(--border); }
.svc-list li:last-child { border-bottom: none; }
.svc-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--coral); flex-shrink: 0; }

/* ─── NB Hub service links ──────────────────────────────────────────────────── */
.hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.hub-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px; display: flex; flex-direction: column; gap: 16px; transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s; }
.hub-card:hover { border-color: var(--coral); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.hub-card-icon { width: 52px; height: 52px; border-radius: var(--r); background: rgba(232,96,76,0.08); border: 1px solid rgba(232,96,76,0.18); display: flex; align-items: center; justify-content: center; }
.hub-card-icon img { height: 28px; width: auto; }
.hub-card-title { font-size: 18px; font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em; color: var(--dark); }
.hub-card-desc { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }
.hub-card-link { font-size: 13px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--coral); display: flex; align-items: center; gap: 6px; }
.hub-card-link svg { width: 14px; height: 14px; transition: transform 0.15s; }
.hub-card:hover .hub-card-link svg { transform: translateX(3px); }

/* ─── Pricing Table ─────────────────────────────────────────────────────────── */
.pricing-table { width: 100%; border-collapse: collapse; margin: 32px 0; }
.pricing-table th { background: var(--dark); color: var(--white); font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 20px; text-align: left; }
.pricing-table th:last-child { text-align: right; }
.pricing-table td { padding: 14px 20px; font-size: 15px; border-bottom: 1px solid var(--border); vertical-align: top; }
.pricing-table td:first-child { font-weight: 700; color: var(--dark); }
.pricing-table td:last-child { text-align: right; font-weight: 800; color: var(--coral); white-space: nowrap; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: var(--cream); }
.pricing-note { font-size: 13px; color: var(--muted); margin-top: 12px; font-style: italic; }

/* ─── FAQ ───────────────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.faq-q { width: 100%; background: var(--white); border: none; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; font-family: var(--font); font-size: 16px; font-weight: 700; color: var(--dark); text-align: left; transition: background 0.15s; }
.faq-q:hover { background: var(--cream); }
.faq-q svg { width: 18px; height: 18px; color: var(--coral); flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 20px; font-size: 15px; color: var(--text); line-height: 1.75; background: var(--white); }
.faq-item.open .faq-a { display: block; }

/* ─── Stats Bar ─────────────────────────────────────────────────────────────── */
.stats-bar { background: var(--dark-2); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 52px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.06); }
.stat:last-child { border-right: none; }
.stat-num { font-size: 54px; font-weight: 900; color: var(--teal); line-height: 1; letter-spacing: -0.04em; margin-bottom: 8px; }
.stat-lbl { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); }

/* ─── Why section ───────────────────────────────────────────────────────────── */
.why-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-photo { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; position: relative; }
.why-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.why-photo-badge { position: absolute; bottom: 24px; left: 24px; background: var(--dark); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r); padding: 16px 20px; display: flex; align-items: center; gap: 12px; }
.why-photo-badge-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--coral); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-photo-badge-icon svg { width: 20px; height: 20px; color: var(--white); }
.why-badge-label { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--white); }
.why-badge-sub { font-size: 12px; color: rgba(255,255,255,0.5); }
.why-features { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.why-feat { display: flex; gap: 16px; align-items: flex-start; }
.why-feat-icon { width: 46px; height: 46px; border-radius: var(--r); background: rgba(232,96,76,0.08); border: 1px solid rgba(232,96,76,0.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-feat-icon svg { width: 20px; height: 20px; color: var(--coral); }
.why-feat-title { font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; color: var(--dark); margin-bottom: 4px; }
.why-feat-text { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ─── Gallery ───────────────────────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: 240px 240px; gap: 12px; }
.g-item { border-radius: var(--r); overflow: hidden; background: #1a1a1a; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.g-item:hover img { transform: scale(1.05); }
.g-1 { grid-column: span 7; grid-row: span 2; }
.g-2 { grid-column: span 5; }
.g-3 { grid-column: span 3; }
.g-4 { grid-column: span 2; }

/* ─── Reviews ───────────────────────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--white); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow); border-top: 3px solid var(--teal); display: flex; flex-direction: column; }
.review-stars { display: flex; gap: 3px; margin-bottom: 16px; color: #F5A623; }
.review-stars svg { width: 17px; height: 17px; }
.review-text { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 20px; font-style: italic; flex: 1; }
.review-author { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--dark); }
.review-location { font-size: 12px; color: var(--muted); font-weight: 500; margin-top: 2px; }

/* ─── Service Areas ─────────────────────────────────────────────────────────── */
.areas-primary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
.area-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 22px 24px; display: flex; align-items: center; gap: 14px; transition: border-color 0.15s, box-shadow 0.15s; }
.area-card:hover { border-color: var(--teal); box-shadow: 0 4px 16px rgba(111,207,190,0.15); }
.area-pin { width: 38px; height: 38px; border-radius: 50%; background: rgba(232,96,76,0.08); border: 1px solid rgba(232,96,76,0.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.area-pin svg { width: 17px; height: 17px; color: var(--coral); }
.area-name { font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; color: var(--dark); }
.area-county { font-size: 12px; color: var(--muted); font-weight: 500; margin-top: 2px; }
.areas-extended { padding-top: 36px; border-top: 1px solid var(--border); }
.areas-extended-label { font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.areas-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tag { background: var(--cream); border: 1px solid var(--border); border-radius: 100px; padding: 6px 14px; font-size: 13px; font-weight: 600; color: var(--text); transition: background 0.15s, border-color 0.15s; }
.area-tag:hover { background: rgba(111,207,190,0.15); border-color: var(--teal); }

/* ─── CTA ───────────────────────────────────────────────────────────────────── */
.cta-section { background: var(--coral); padding: 88px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px); background-size: 24px 24px; }
.cta-section h2 { font-size: clamp(34px, 5vw, 64px); font-weight: 900; color: var(--white); text-transform: uppercase; letter-spacing: -0.025em; line-height: 1.0; margin-bottom: 14px; position: relative; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 44px; position: relative; }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; position: relative; }

/* old footer block removed — see new footer CSS above */

/* ─── Content + Sidebar Layout ─────────────────────────────────────────────── */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px;
  align-items: start;
}
.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 88px;
}

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-wrap { gap: 48px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.06); border-top: 1px solid rgba(255,255,255,0.06); }
  .stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .content-layout { grid-template-columns: 1fr; gap: 40px; }
  .content-sidebar { display: none; }
  .nav-links { display: none; }
  .nav-phone svg { width: 26px; height: 26px; }
  .nav-menu-btn { display: flex; }
  .nav-phone span { display: none; }
  .hero { min-height: 75vh; }
  .hero-content { padding: 60px 0; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.18); }
  .strip-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.18); }
  .strip-item:nth-last-child(-n+2) { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .hub-grid { grid-template-columns: 1fr; }
  .why-wrap { grid-template-columns: 1fr; }
  .why-photo { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .g-1 { grid-column: span 2; grid-row: span 1; }
  .g-2, .g-3, .g-4 { grid-column: span 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .areas-primary { grid-template-columns: repeat(2, 1fr); }
  .pricing-table { font-size: 13px; display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .pricing-table td, .pricing-table th { padding: 10px 12px; white-space: normal; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-divider { gap: 18px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
  .areas-primary { grid-template-columns: 1fr; }
  .page-hero-actions { flex-direction: column; align-items: flex-start; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════════════════════════════
   VISUAL COMPONENT LIBRARY  (reusable across all service pages)
   ════════════════════════════════════════════════════════════════════ */

/* Media split — image beside text, alternating */
.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin: 64px 0; }
.media-split.reverse .media-split-img { order: 2; }
.media-split-img { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.media-split-img img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }
.media-split-tag { position: absolute; bottom: 16px; left: 16px; background: rgba(26,26,26,0.85); color: var(--white); font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 8px 14px; border-radius: 100px; display: flex; align-items: center; gap: 7px; }
.media-split-tag svg { width: 14px; height: 14px; color: var(--teal); }
.media-split-body .eyebrow { margin-bottom: 12px; }
.media-split-body h2, .media-split-body h3 { font-size: clamp(24px, 3vw, 34px); font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; color: var(--dark); line-height: 1.08; margin-bottom: 16px; }
.media-split-body p { font-size: 16px; color: var(--text); line-height: 1.75; margin-bottom: 16px; }

/* Feature cards — icon/number + title + text */
.feature-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin: 40px 0; }
.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; transition: transform 0.18s, box-shadow 0.18s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card-ic { width: 48px; height: 48px; border-radius: 12px; background: rgba(232,96,76,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-card-ic svg { width: 24px; height: 24px; color: var(--coral); }
.feature-card.teal .feature-card-ic { background: rgba(111,207,190,0.16); }
.feature-card.teal .feature-card-ic svg { color: var(--teal-dk); }
.feature-card h3 { font-size: 17px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.01em; color: var(--dark); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.feature-card .fc-price { margin-top: 12px; font-size: 13px; font-weight: 800; color: var(--coral); display: flex; align-items: center; gap: 6px; }
.feature-card .fc-price svg { width: 13px; height: 13px; }

/* Callout boxes — highlight a key point */
.callout { display: flex; gap: 16px; align-items: flex-start; background: var(--cream); border-left: 4px solid var(--coral); border-radius: 0 var(--r-lg) var(--r-lg) 0; padding: 24px 28px; margin: 32px 0; }
.callout.teal { border-left-color: var(--teal-dk); }
.callout.dark { background: var(--dark); border-left-color: var(--coral); }
.callout.dark .callout-body, .callout.dark .callout-body strong { color: var(--white); }
.callout-ic { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; background: var(--white); box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; }
.callout-ic svg { width: 20px; height: 20px; color: var(--coral); }
.callout.teal .callout-ic svg { color: var(--teal-dk); }
.callout-body { font-size: 15px; color: var(--text); line-height: 1.7; }
.callout-body strong { color: var(--dark); font-weight: 800; display: block; margin-bottom: 4px; font-size: 16px; }

/* Photo band — strip of job photos */
.photo-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 48px 0; }
.photo-band img { width: 100%; height: 240px; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.photo-band.two { grid-template-columns: 1fr 1fr; }
.photo-band.four { grid-template-columns: repeat(4, 1fr); }
.photo-band figure { position: relative; margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.photo-band figure img { border-radius: 0; box-shadow: none; }
.photo-band figcaption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(26,26,26,0.85)); color: var(--white); font-size: 12px; font-weight: 700; padding: 28px 14px 12px; }

/* Icon checklist — replaces bullet lists where visual */
.icon-list { list-style: none; display: grid; gap: 14px; margin: 28px 0; }
.icon-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--text); line-height: 1.6; }
.icon-list li::before { content: ''; flex-shrink: 0; width: 24px; height: 24px; margin-top: 1px; border-radius: 50%; background: rgba(111,207,190,0.18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234DADA0'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/15px no-repeat; }
.icon-list li strong { color: var(--dark); font-weight: 800; }

/* Banner image — full-width photo with headline overlay */
.img-banner { position: relative; border-radius: var(--r-lg); overflow: hidden; margin: 56px 0; min-height: 280px; display: flex; align-items: center; box-shadow: var(--shadow-lg); }
.img-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.img-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26,26,26,0.88) 0%, rgba(26,26,26,0.55) 60%, rgba(26,26,26,0.25) 100%); }
.img-banner-inner { position: relative; z-index: 2; padding: 48px; max-width: 600px; }
.img-banner-inner h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; color: var(--white); line-height: 1.05; margin-bottom: 14px; }
.img-banner-inner p { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.65; margin-bottom: 22px; }

@media (max-width: 860px) {
  .media-split { grid-template-columns: 1fr; gap: 28px; margin: 44px 0; }
  .media-split.reverse .media-split-img { order: 0; }
  .media-split-img img { min-height: 260px; }
  .photo-band, .photo-band.four { grid-template-columns: 1fr 1fr; }
  .photo-band img { height: 190px; }
  .img-banner-inner { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .photo-band, .photo-band.two, .photo-band.four { grid-template-columns: 1fr; }
}

/* ─── Lead form ──────────────────────────────────────────────────────────────── */
.form-section { background: var(--cream); }
.lead-form-wrap {
  max-width: 720px; margin: 40px auto 0; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: clamp(26px, 4vw, 44px);
}
.lead-form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; position: relative; }
.field > label { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark); }
.field > label .req { color: var(--coral); }
.field input, .field textarea {
  font-family: var(--font); font-size: 16px; color: var(--text);
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 13px 15px; width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.55; }
.field input::placeholder, .field textarea::placeholder { color: #9a9a9a; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--teal-dk);
  box-shadow: 0 0 0 3px rgba(111,207,190,0.25);
}
.field.invalid input, .field.invalid textarea { border-color: var(--coral); }
.field.invalid input:focus, .field.invalid textarea:focus { box-shadow: 0 0 0 3px rgba(232,96,76,0.22); }
.field.valid input { border-color: var(--teal-dk); }
.field.valid::after {
  content: "✓"; position: absolute; right: 14px; top: 35px;
  color: var(--teal-dk); font-weight: 900; font-size: 15px; pointer-events: none;
}
.field-err { font-size: 12.5px; font-weight: 700; color: var(--coral); min-height: 0; line-height: 1.3; }

.pill-group { display: flex; flex-wrap: wrap; gap: 9px; }
.pill {
  font-family: var(--font); font-size: 13px; font-weight: 800;
  letter-spacing: 0.03em; color: var(--dark); background: var(--cream);
  border: 1.5px solid var(--border); border-radius: 100px;
  padding: 9px 17px; cursor: pointer; transition: all 0.15s ease;
}
.pill:hover { border-color: var(--teal-dk); transform: translateY(-1px); }
.pill.active { background: var(--coral); color: var(--white); border-color: var(--coral); }

.form-consent { display: flex; gap: 11px; align-items: flex-start; padding-top: 2px; }
.form-consent input[type="checkbox"] {
  width: 19px; height: 19px; margin-top: 2px; flex-shrink: 0;
  accent-color: var(--coral); cursor: pointer;
}
.form-consent label { font-size: 13.5px; font-weight: 700; color: var(--dark); cursor: pointer; line-height: 1.4; }
.a2p { font-size: 11.5px; line-height: 1.55; color: var(--muted); margin-top: -6px; }
.a2p a { color: var(--coral); font-weight: 700; text-decoration: underline; }

.form-submit { width: 100%; justify-content: center; font-size: 15px; padding: 16px 28px; }
.form-submit.loading { opacity: 0.75; cursor: progress; }
.form-error { font-size: 13.5px; font-weight: 700; color: var(--coral); text-align: center; }

.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

.form-success {
  text-align: center; max-width: 720px; margin: 40px auto 0;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: clamp(34px, 5vw, 56px) clamp(26px, 4vw, 44px);
}
.form-success .check {
  width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--teal); color: var(--white); font-size: 32px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.form-success h3 { font-size: clamp(22px, 3vw, 28px); font-weight: 900; color: var(--dark); margin-bottom: 10px; }
.form-success p { font-size: 16px; color: var(--muted); line-height: 1.6; }
.form-success p a { color: var(--coral); font-weight: 800; }

/* Hero 2-column form (content left, form right) — :has() falls back to stacked */
.page-hero .container:has(.page-hero-form) {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.page-hero-form { position: relative; z-index: 2; width: 100%; }
.page-hero-form .lead-form-wrap.in-hero { margin: 0; max-width: none; padding: clamp(22px, 2.5vw, 32px); }
.lead-form-wrap.in-hero .lead-form { gap: 16px; }
.form-card-head { margin-bottom: 16px; }
.form-card-head strong { display: block; font-size: clamp(20px, 2.4vw, 25px); font-weight: 900; color: var(--dark); line-height: 1.1; letter-spacing: -0.01em; }
.form-card-head span { display: block; font-size: 13.5px; color: var(--muted); margin-top: 5px; }
@media (max-width: 900px) {
  .page-hero .container:has(.page-hero-form) { grid-template-columns: 1fr; gap: 30px; }
  .page-hero-content { max-width: none; }
}

/* ─── Comfort Club: plan cards ───────────────────────────────────────────────── */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; align-items: start; }
.plan-card { position: relative; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 36px 28px; display: flex; flex-direction: column; }
.plan-card.popular { border: 2px solid var(--coral); box-shadow: var(--shadow-lg); }
.plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--coral); color: var(--white); font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 16px; border-radius: 100px; white-space: nowrap; }
.plan-name { font-size: 20px; font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em; color: var(--dark); text-align: center; }
.plan-price { display: flex; align-items: flex-start; justify-content: center; margin: 18px 0 2px; color: var(--dark); }
.plan-dollar { font-size: 22px; font-weight: 800; margin-top: 10px; }
.plan-amt { font-size: 58px; font-weight: 900; line-height: 1; letter-spacing: -0.03em; }
.plan-cents { font-size: 22px; font-weight: 800; margin-top: 10px; }
.plan-per { align-self: flex-end; font-size: 14px; font-weight: 700; color: var(--muted); margin: 0 0 12px 4px; }
.plan-annual { text-align: center; font-size: 13px; color: var(--muted); margin-bottom: 26px; }
.plan-feats { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex: 1; }
.plan-feats li { font-size: 14.5px; color: var(--text); line-height: 1.45; padding-left: 26px; position: relative; }
.plan-feats li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--teal-dk); font-weight: 900; }
.plan-card .btn { width: 100%; justify-content: center; }
.hub-feats { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow); }

/* Comfort Club: savings credits */
.cc-credit-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cc-credit { background: var(--cream); border-radius: var(--r-lg); padding: 26px 18px; text-align: center; }
.cc-credit-amt { display: block; font-size: 34px; font-weight: 900; color: var(--coral); line-height: 1; letter-spacing: -0.02em; }
.cc-credit-lbl { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* Comfort Club: comparison table */
.compare-wrap { overflow-x: auto; margin-top: 44px; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 580px; background: var(--white); }
.compare-table th, .compare-table td { padding: 13px 16px; text-align: center; border-bottom: 1px solid var(--border); font-size: 14px; }
.compare-table thead th { background: var(--dark); color: var(--white); font-size: 11px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.compare-table thead th.pop { background: var(--coral); }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; font-weight: 700; color: var(--dark); }
.compare-table tbody tr:nth-child(even) td { background: var(--cream); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table .yes { color: var(--teal-dk); font-weight: 900; font-size: 16px; }
.compare-table .no { color: #c7c7c7; }

.hub-card-icon svg { width: 26px; height: 26px; fill: var(--coral); }

@media (max-width: 860px) {
  .plan-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .cc-credit-row { grid-template-columns: 1fr; }
}

/* ─── Apple-style master-page panels ───────────────────────────────────────── */
.appl-statement { text-align: center; }
.appl-lead { font-size: clamp(30px, 5.2vw, 54px); font-weight: 900; line-height: 1.05; letter-spacing: -0.03em; color: var(--dark); text-transform: none; margin: 8px auto 18px; max-width: 760px; }
.appl-lead .accent { color: var(--coral); }
.appl-sub { font-size: clamp(16px, 2vw, 19px); color: var(--muted); line-height: 1.6; max-width: 600px; margin: 0 auto 28px; }
.appl-sub a { color: var(--coral); font-weight: 700; }
.price-big { font-size: clamp(56px, 11vw, 104px); font-weight: 900; color: var(--coral); line-height: 1; letter-spacing: -0.04em; margin-bottom: 4px; }
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-n { display: block; font-size: clamp(30px, 4.5vw, 46px); font-weight: 900; color: var(--coral); line-height: 1; letter-spacing: -0.02em; }
.stat-l { display: block; font-size: 13px; color: var(--muted); margin-top: 8px; line-height: 1.4; }
.hub-grid.three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } .hub-grid.three { grid-template-columns: 1fr; } }

/* ─── HVAC cost calculator ───────────────────────────────────────────────────── */
.calc-hero { background: var(--dark); }
.calc-hero .eyebrow { color: var(--teal); }
.calc-hero .appl-lead { color: var(--white); }
.calc-hero .appl-sub { color: rgba(255,255,255,0.7); }
.calc-wrap { max-width: 940px; margin: 0 auto; }
.calc-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.calc-controls { padding: clamp(24px, 3vw, 36px); }
.calc-field { margin-bottom: 22px; }
.calc-field > label { display: block; font-size: 13px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: var(--dark); margin-bottom: 10px; }
.calc-field > label strong { color: var(--coral); }
.calc-hint { font-weight: 700; color: var(--muted); text-transform: none; letter-spacing: 0; }
.calc-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.calc-pill { font-family: var(--font); font-size: 13px; font-weight: 800; color: var(--dark); background: var(--cream); border: 1.5px solid var(--border); border-radius: 100px; padding: 9px 15px; cursor: pointer; transition: all 0.15s ease; }
.calc-pill:hover { border-color: var(--teal-dk); transform: translateY(-1px); }
.calc-pill.active { background: var(--coral); color: var(--white); border-color: var(--coral); }
.calc-range { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 100px; background: var(--border); outline: none; margin-top: 4px; }
.calc-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--coral); cursor: pointer; box-shadow: 0 2px 8px rgba(232,96,76,0.4); }
.calc-range::-moz-range-thumb { width: 24px; height: 24px; border: none; border-radius: 50%; background: var(--coral); cursor: pointer; }
.calc-credit { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 700; color: var(--dark); cursor: pointer; }
.calc-credit input { width: 18px; height: 18px; accent-color: var(--coral); flex-shrink: 0; }
.calc-result { background: var(--dark); color: var(--white); padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; justify-content: center; text-align: center; }
.calc-result-label { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.calc-price { font-size: clamp(40px, 6vw, 60px); font-weight: 900; line-height: 1; letter-spacing: -0.03em; color: var(--white); }
.calc-was { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: line-through; margin-top: 8px; }
.calc-monthly { font-size: 15px; color: rgba(255,255,255,0.85); margin-top: 14px; }
.calc-monthly strong { color: var(--teal); }
.calc-fine { font-size: 11.5px; line-height: 1.5; color: rgba(255,255,255,0.5); margin: 16px 0 20px; }
.calc-cta { width: 100%; justify-content: center; }
@media (max-width: 720px) { .calc-grid { grid-template-columns: 1fr; } }
