/* ─────────────────────────────────────────────
   Clearflow Vent Services — Main Stylesheet
   clearflowventservices.com
   ───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;800&display=swap');

/* ── Variables ── */
:root {
  --teal-900: #064e3b;
  --teal-800: #065f46;
  --teal-700: #047857;
  --teal-600: #059669;
  --teal-500: #10b981;
  --teal-400: #34d399;
  --teal-300: #6ee7b7;
  --teal-200: #a7f3d0;
  --teal-100: #d1fae5;
  --teal-50:  #ecfdf5;

  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;

  --orange-500: #f97316;
  --orange-50:  #fff7ed;

  --white: #ffffff;

  --font-display: 'Zilla Slab', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);

  --max-w: 1160px;
  --nav-h: 68px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section--tight { padding: 56px 0; }
.section--dark { background: var(--slate-900); color: var(--white); }
.section--teal { background: var(--teal-800); color: var(--white); }
.section--light { background: var(--slate-50); }

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

.text-center { text-align: center; }
.text-sm { font-size: 14px; }
.text-xs { font-size: 12px; }

/* ── Typography ── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 12px;
}
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(36px,5vw,58px); font-weight: 700; }
h2 { font-size: clamp(28px,3.5vw,42px); font-weight: 700; }
h3 { font-size: clamp(20px,2.5vw,26px); font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }

.section-label {
  font-size: clamp(28px,3.5vw,38px);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 17px;
  color: var(--slate-500);
  max-width: 560px;
  line-height: 1.65;
}
.section-sub--center { margin: 0 auto; }
.section-header { margin-bottom: 48px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all .18s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--teal-700);
  color: var(--white);
  border-color: var(--teal-700);
}
.btn--primary:hover {
  background: var(--teal-800);
  border-color: var(--teal-800);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(5,150,105,.30);
}
.btn--outline {
  background: transparent;
  color: var(--teal-700);
  border-color: var(--teal-700);
}
.btn--outline:hover {
  background: var(--teal-50);
  transform: translateY(-1px);
}
.btn--white {
  background: var(--white);
  color: var(--teal-800);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--teal-50);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}
.btn--lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}
.btn--phone {
  background: var(--orange-500);
  color: var(--white);
  border-color: var(--orange-500);
}
.btn--phone:hover {
  background: #ea6c0a;
  border-color: #ea6c0a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,.30);
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
  height: var(--nav-h);
}
.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo-img { height: 38px; width: auto; display: block; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__link { font-size: 14px; font-weight: 500; color: var(--slate-700); transition: color .15s; }
.nav__link:hover { color: var(--teal-700); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__phone {
  font-size: 15px; font-weight: 600; color: var(--slate-900);
  display: flex; align-items: center; gap: 6px; transition: color .15s;
}
.nav__phone:hover { color: var(--teal-700); }
.nav__phone svg { width: 16px; height: 16px; color: var(--teal-600); }
.nav__hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__mobile {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--slate-100);
  padding: 16px 24px 24px; gap: 4px;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile-link {
  display: block; padding: 12px 0; font-size: 16px; font-weight: 500;
  color: var(--slate-700); border-bottom: 1px solid var(--slate-100);
}
.nav__mobile .btn { margin-top: 12px; width: 100%; justify-content: center; }

/* ── Hero ── */
.hero {
  background: linear-gradient(160deg, var(--slate-900) 0%, var(--teal-900) 100%);
  color: var(--white);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 50%, rgba(16,185,129,.12) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,.025) 39px, rgba(255,255,255,.025) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,.025) 39px, rgba(255,255,255,.025) 40px);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero__stat-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,.18); border: 1px solid rgba(249,115,22,.35);
  border-radius: 99px; padding: 6px 14px;
  font-size: 12px; font-weight: 600; letter-spacing: .04em; color: #fbbf24;
  margin-bottom: 20px;
}
.hero__stat-pill svg { width: 14px; height: 14px; }
.hero__headline {
  font-size: clamp(38px,5vw,60px); font-weight: 700; line-height: 1.12;
  margin-bottom: 20px; font-family: var(--font-display);
}
.hero__headline em { font-style: normal; color: var(--teal-400); }
.hero__sub { font-size: 17px; color: rgba(255,255,255,.75); max-width: 500px; line-height: 1.65; margin-bottom: 32px; }
.hero__ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__area { margin-top: 36px; display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.5); }
.hero__area svg { width: 14px; height: 14px; color: var(--teal-400); flex-shrink: 0; }

/* Hero card */
.hero__card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 32px; color: var(--slate-800); box-shadow: var(--shadow-lg);
}
.hero__card-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 6px; color: var(--slate-900); }
.hero__card-sub { font-size: 13px; color: var(--slate-500); margin-bottom: 24px; }
.hero__card form { display: flex; flex-direction: column; gap: 12px; }

/* ── Forms ── */
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--slate-600); letter-spacing: .04em; text-transform: uppercase; }
.form-input, .form-select, .form-textarea {
  padding: 11px 14px; border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm); font-size: 15px; color: var(--slate-800);
  background: var(--white); transition: border-color .15s, box-shadow .15s; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(16,185,129,.12);
}
.form-input.error, .form-select.error, .form-textarea.error { border-color: #ef4444; }
.form-error { font-size: 12px; color: #ef4444; display: none; }
.form-error.visible { display: block; }
.form-textarea { resize: vertical; min-height: 80px; }
.form-select { appearance: none; cursor: pointer; }
.form-note { font-size: 11px; color: var(--slate-400); text-align: center; line-height: 1.5; }
.form-note a { color: var(--teal-600); text-decoration: underline; }
.form-success { display: none; text-align: center; padding: 24px 0; }
.form-success.visible { display: block; }
.form-success__icon {
  width: 56px; height: 56px; background: var(--teal-100); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.form-success__icon svg { width: 28px; height: 28px; color: var(--teal-700); }
.form-success h4 { font-size: 18px; margin-bottom: 6px; }
.form-success p { font-size: 14px; color: var(--slate-500); }

/* ── Trust bar ── */
.trust-bar { background: var(--teal-700); color: var(--white); padding: 20px 0; }
.trust-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.trust-item svg { width: 20px; height: 20px; color: var(--teal-300); flex-shrink: 0; }

/* ── Services ── */
.service-card {
  background: var(--white); border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 36px;
  transition: box-shadow .2s, border-color .2s, transform .2s;
  position: relative;
}
.service-card:hover { box-shadow: var(--shadow-lg); border-color: var(--teal-400); transform: translateY(-3px); }
.service-card--featured { border-color: var(--teal-600); box-shadow: 0 0 0 3px rgba(5,150,105,.12); }
.service-badge {
  position: absolute; top: -12px; left: 28px;
  background: var(--teal-600); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 99px;
}
.service-icon {
  width: 56px; height: 56px; background: var(--teal-50);
  border-radius: var(--radius-md); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px;
}
.service-icon svg { width: 28px; height: 28px; color: var(--teal-700); }
.service-card h3 { margin-bottom: 10px; color: var(--slate-900); }
.service-card p { font-size: 15px; color: var(--slate-500); line-height: 1.65; margin-bottom: 20px; }
.service-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.service-price__amount { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--teal-700); }
.service-price__unit { font-size: 14px; color: var(--slate-500); }
.service-disclaimer {
  font-size: 12px; color: var(--slate-500); font-style: italic;
  margin-bottom: 16px; line-height: 1.5; padding: 8px 12px;
  background: var(--slate-50); border-radius: var(--radius-sm);
  border-left: 3px solid var(--teal-200);
}
.service-includes { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.service-includes li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--slate-600); }
.service-includes li svg { width: 16px; height: 16px; color: var(--teal-600); flex-shrink: 0; margin-top: 2px; }

/* ── Stats ── */
.stat-item { text-align: center; padding: 16px; }
.stat-num { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--teal-400); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.4; }

/* ── How it works ── */
.step-card { text-align: center; padding: 8px; }
.step-num {
  width: 52px; height: 52px; background: var(--teal-700); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 22px; font-weight: 700; margin: 0 auto 20px;
}
.step-card h4 { margin-bottom: 10px; color: var(--slate-900); }
.step-card p { font-size: 15px; color: var(--slate-500); line-height: 1.6; }

/* ── Why Clearflow ── */
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.why-item {
  display: flex; gap: 16px; padding: 24px;
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--slate-100); transition: box-shadow .18s;
}
.why-item:hover { box-shadow: var(--shadow-md); }
.why-icon {
  width: 44px; height: 44px; background: var(--teal-50);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.why-icon svg { width: 22px; height: 22px; color: var(--teal-700); }
.why-item h4 { margin-bottom: 4px; font-size: 16px; color: var(--slate-900); }
.why-item p { font-size: 14px; color: var(--slate-500); line-height: 1.5; }

/* ── Reviews ── */
.review-card {
  background: var(--white); border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: box-shadow .2s, transform .2s;
}
.review-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.review-stars { font-size: 20px; color: #f59e0b; letter-spacing: 2px; }
.review-text { font-size: 15px; color: var(--slate-600); line-height: 1.7; font-style: italic; flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--teal-700);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 14px; color: var(--slate-800); margin: 0; }
.review-location { font-size: 12px; color: var(--slate-500); margin: 0; }

/* ── FAQ ── */
.faq-grid { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md); overflow: hidden; transition: border-color .2s;
}
.faq-item--open { border-color: var(--teal-400); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 22px; background: none; border: none; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--slate-800);
  text-align: left; font-family: var(--font-body); transition: color .15s;
}
.faq-question:hover { color: var(--teal-700); }
.faq-item--open .faq-question { color: var(--teal-700); }
.faq-icon { width: 20px; height: 20px; min-width: 20px; max-width: 20px; flex-shrink: 0; color: var(--teal-600); transition: transform .25s ease; display: block; }
.faq-item--open .faq-icon { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 22px 18px; }
.faq-item--open .faq-answer { display: block; }
.faq-answer p { font-size: 15px; color: var(--slate-600); line-height: 1.7; margin: 0; }

/* ── Service area chips ── */
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.area-chip {
  display: flex; align-items: center; gap: 6px; padding: 8px 16px;
  background: var(--white); border: 1.5px solid var(--slate-200);
  border-radius: 99px; font-size: 14px; font-weight: 500; color: var(--slate-700);
  transition: border-color .15s, color .15s;
}
.area-chip:hover { border-color: var(--teal-500); color: var(--teal-700); }
.area-chip svg { width: 14px; height: 14px; color: var(--teal-500); }

/* ── Quote form section ── */
.quote-section { background: var(--slate-50); }
.quote-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 48px; box-shadow: var(--shadow-lg);
  max-width: 680px; margin: 0 auto;
}
.quote-card .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-800) 0%, var(--teal-900) 100%);
  color: var(--white); padding: 64px 0;
}
.cta-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner h2 { font-size: clamp(24px,3vw,36px); max-width: 560px; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,.7); margin-top: 8px; }
.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ── Footer ── */
.footer { background: var(--slate-900); color: var(--white); padding: 56px 0 32px; }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 28px;
}
.footer__logo-img { height: 42px; width: auto; display: block; margin-bottom: 14px; }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 20px; }
.footer__contact a {
  display: flex; align-items: center; gap: 8px; font-size: 14px;
  color: rgba(255,255,255,.65); margin-bottom: 8px; transition: color .15s;
}
.footer__contact a:hover { color: var(--teal-400); }
.footer__contact svg { width: 15px; height: 15px; color: var(--teal-500); flex-shrink: 0; }
.footer__col-title { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 14px; color: rgba(255,255,255,.65); transition: color .15s; }
.footer__links a:hover { color: var(--teal-400); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__copy { font-size: 13px; color: rgba(255,255,255,.35); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 13px; color: rgba(255,255,255,.35); transition: color .15s; }
.footer__legal a:hover { color: rgba(255,255,255,.65); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp .55s ease forwards; }
.fade-up--1 { animation-delay: .1s; }
.fade-up--2 { animation-delay: .2s; }
.fade-up--3 { animation-delay: .3s; }
.fade-up--4 { animation-delay: .4s; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { max-width: 480px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .trust-bar__inner { justify-content: center; gap: 20px; }
}

@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__hamburger { display: block; }
  .nav__cta .btn:not(.btn--phone) { display: none; }
  .hero { padding: 56px 0 64px; }
  .quote-card { padding: 28px 20px; }
  .quote-card .form-row { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .nav__logo-img { height: 28px; max-width: 160px; }
  .footer__logo-img { height: 32px; max-width: 180px; }

  /* FAQ mobile fix */
  .faq-question { padding: 12px 14px; font-size: 14px; gap: 10px; }
  .faq-icon { width: 16px; height: 16px; }
  .faq-answer { padding: 0 14px 14px; }
  .faq-answer p { font-size: 14px; }
}

/* ── Netrun Technologies Badge ── */
.netrun-powered {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.netrun-powered-label {
  font-size: 8px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.netrun-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity .2s;
}
.netrun-badge:hover {
  opacity: 1;
}
.netrun-badge img {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  min-width: 20px !important;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}
@media (max-width: 480px) {
  .netrun-badge img {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    min-width: 20px !important;
  }
}
.netrun-badge-text {
  font-family: 'Orbitron', monospace, sans-serif;
  font-size: 10px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.08em;
  line-height: 1.1;
}
.netrun-badge-sub {
  font-size: 7px;
  font-weight: 400;
  color: #00EEFF;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.2;
}

/* ── Live Estimate Display ── */
.form-hint {
  display: block;
  font-size: 11px;
  color: var(--slate-400);
  font-weight: 400;
  margin-top: 2px;
  letter-spacing: 0;
  text-transform: none;
}
.estimate-questions { display: flex; flex-direction: column; gap: 14px; }
.estimate-display {
  background: var(--teal-50);
  border: 2px solid var(--teal-300);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  animation: estimateFadeIn .2s ease;
}
@keyframes estimateFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.estimate-display__range {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.estimate-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-700);
}
.estimate-amount {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--teal-800);
  line-height: 1.1;
  margin-top: 2px;
}
.estimate-check {
  width: 36px; height: 36px;
  background: var(--teal-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.estimate-check svg { width: 18px; height: 18px; color: var(--teal-700); }
.estimate-note {
  font-size: 11px;
  color: var(--slate-500);
  margin-top: 8px;
  line-height: 1.5;
}

/* ── Booking form section label ── */
.booking-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-700);
  border-bottom: 1px solid var(--teal-100);
  padding-bottom: 8px;
  margin-bottom: 14px;
}
