/* ===================================================================
   The Villages Maid Service — theme: "Fresh & trusted, teal-led"
   Palette: teal #13736B + soft mint.  Warm coral #E86B4E = CTAs ONLY.
   Fully self-contained: system fonts, inline SVG, CSS visuals.
   =================================================================== */
:root {
  --teal:       #13736B;   /* brand primary */
  --teal-700:   #0E5A54;   /* deep teal */
  --teal-900:   #0A3B37;   /* footer base */
  --sage:       #4C6C67;   /* muted sage */
  --ink:        #1D2B29;   /* body headings */
  --muted:      #5E6E6B;   /* secondary text */
  --paper:      #ffffff;
  --paper-alt:  #F4F8F7;   /* section tint */
  --line:       #E1EAE8;   /* hairlines */
  --tint-teal:  #E4F1EE;   /* teal icon chip bg */
  --tint-mint:  #EAF3EE;   /* mint icon chip bg */
  --tint-gray:  #F1F4F3;   /* neutral chip bg */
  --accent:     #E86B4E;   /* WARM CTA accent — CTAs only */
  --accent-600: #CE573C;   /* CTA hover */
  --gold:       #E0A420;   /* stars / accents */
  --serif: Georgia, 'Times New Roman', Cambria, serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--paper); color: var(--ink); -webkit-font-smoothing: antialiased; }
svg { display: block; }

/* NAV */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 74px; background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--teal), var(--teal-700));
  color: #fff;
}
.logo-mark svg { width: 24px; height: 24px; }
.logo-text { font-size: 15.5px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.logo-sub { font-size: 11px; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; display: block; margin-top: 2px; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { font-size: 14px; color: var(--sage); text-decoration: none; font-weight: 500; transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-cta {
  background: var(--accent); color: #fff !important; padding: 10px 20px;
  border-radius: 8px; font-weight: 600 !important; font-size: 14px !important;
  display: inline-flex; align-items: center; gap: 7px;
  box-shadow: 0 6px 16px rgba(232,107,78,0.28);
}
.nav-cta:hover { background: var(--accent-600) !important; }
.nav-cta svg { width: 16px; height: 16px; }

/* HERO */
.hero { position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.16), transparent 42%),
    radial-gradient(circle at 12% 92%, rgba(255,255,255,0.10), transparent 40%),
    linear-gradient(155deg, var(--teal) 0%, var(--teal-700) 62%, var(--teal-900) 100%);
}
/* soft floating bubbles */
.hero-bubbles { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-bubbles span {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,0.35), rgba(255,255,255,0.05) 60%, transparent 70%);
  border: 1px solid rgba(255,255,255,0.14);
}
.hero-bubbles span:nth-child(1) { width: 140px; height: 140px; left: 8%;  top: 20%; animation: float 9s ease-in-out infinite; }
.hero-bubbles span:nth-child(2) { width: 70px;  height: 70px;  left: 78%; top: 62%; animation: float 7s ease-in-out infinite 0.6s; }
.hero-bubbles span:nth-child(3) { width: 40px;  height: 40px;  left: 62%; top: 24%; animation: float 6s ease-in-out infinite 1.2s; }
.hero-bubbles span:nth-child(4) { width: 100px; height: 100px; left: 88%; top: 12%; animation: float 8s ease-in-out infinite 0.3s; }
.hero-bubbles span:nth-child(5) { width: 26px;  height: 26px;  left: 40%; top: 78%; animation: float 5.5s ease-in-out infinite 0.9s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@media (prefers-reduced-motion: reduce) { .hero-bubbles span { animation: none; } }

.hero-inner {
  position: relative; z-index: 2; max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem;
  align-items: center; padding: 4.5rem 3rem 4.75rem;
}
.tag {
  display: inline-flex; align-items: center; gap: 7px; font-size: 12px;
  font-weight: 600; color: #fff; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 1.5rem;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.22);
  padding: 6px 13px; border-radius: 999px;
}
.tag svg { width: 14px; height: 14px; }
.h1 {
  font-family: var(--serif); font-size: 52px; line-height: 1.08;
  color: #fff; letter-spacing: -0.015em; margin-bottom: 1.25rem; font-weight: 700;
}
.h1 .soft { color: #BEE6DF; font-style: italic; font-weight: 400; }
.hero-p { font-size: 17px; color: rgba(255,255,255,0.92); line-height: 1.7; max-width: 480px; margin-bottom: 2rem; font-weight: 400; }
.btns { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 1.5rem; margin-top: 2.25rem; flex-wrap: wrap; }
.hero-trust-item { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,0.92); font-weight: 500; }
.hero-trust-item svg { width: 18px; height: 18px; color: #BEE6DF; flex-shrink: 0; }

/* Hero visual card (photo placeholder collage) */
.hero-visual { position: relative; }
.hero-photo {
  border-radius: 18px; overflow: hidden; box-shadow: 0 26px 60px rgba(6,40,37,0.42);
  border: 1px solid rgba(255,255,255,0.25);
}
.hero-badge-float {
  position: absolute; bottom: -22px; left: -22px;
  background: #fff; border-radius: 14px; padding: 14px 18px;
  box-shadow: 0 16px 40px rgba(6,40,37,0.28); display: flex; align-items: center; gap: 12px;
}
.hero-badge-float .hb-star { display: flex; gap: 2px; }
.hero-badge-float .hb-star svg { width: 16px; height: 16px; color: var(--gold); }
.hero-badge-float .hb-num { font-family: var(--serif); font-size: 22px; color: var(--ink); font-weight: 700; line-height: 1; }
.hero-badge-float .hb-lbl { font-size: 11.5px; color: var(--muted); margin-top: 3px; }

/* PHOTO PLACEHOLDER BLOCKS */
.photo-ph {
  position: relative; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 10px; text-align: center;
  background:
    repeating-linear-gradient(45deg, rgba(19,115,107,0.05) 0 12px, rgba(19,115,107,0.02) 12px 24px),
    var(--tint-teal);
  color: var(--teal); min-height: 260px; padding: 1.5rem;
}
.photo-ph svg { width: 34px; height: 34px; opacity: 0.7; }
.photo-ph .ph-label { font-size: 12.5px; font-weight: 600; letter-spacing: 0.03em; color: var(--teal-700); }
.photo-ph .ph-sub { font-size: 11.5px; color: var(--sage); max-width: 240px; line-height: 1.5; }

/* Buttons */
.btn-primary {
  background: var(--accent); color: #fff; font-size: 15px; font-weight: 600;
  padding: 14px 26px; border-radius: 9px; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 10px 24px rgba(232,107,78,0.32);
}
.btn-primary:hover { background: var(--accent-600); transform: translateY(-1px); }
.btn-primary svg { width: 18px; height: 18px; }
.btn-lg { font-size: 16px; padding: 16px 30px; }

.btn-ghost {
  font-size: 15px; color: #fff; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  padding: 14px 24px; border-radius: 9px; border: 1.5px solid rgba(255,255,255,0.6);
  transition: background 0.15s, border-color 0.15s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: #fff; }
.btn-ghost svg { width: 18px; height: 18px; }

.btn-teal {
  background: var(--teal); color: #fff; font-size: 15px; font-weight: 600;
  padding: 14px 26px; border-radius: 9px; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.btn-teal:hover { background: var(--teal-700); transform: translateY(-1px); }
.btn-teal svg { width: 18px; height: 18px; }

/* TRUST BAR */
.trust-bar { display: grid; grid-template-columns: repeat(4,1fr); background: var(--paper); border-bottom: 1px solid var(--line); max-width: 1180px; margin: 0 auto; }
.trust-item { padding: 1.5rem 1.75rem; display: flex; align-items: center; gap: 0.9rem; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: none; }
.trust-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--tint-teal); color: var(--teal); }
.trust-icon svg { width: 21px; height: 21px; }
.trust-title { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.trust-sub { font-size: 12.5px; color: var(--muted); font-weight: 400; margin-top: 1px; }

/* SECTION SHELL */
.section { padding: 4.5rem 3rem; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section.alt { background: var(--paper-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-tag { font-size: 12px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.6rem; }
.sec-h { font-family: var(--serif); font-size: 34px; color: var(--ink); letter-spacing: -0.015em; margin-bottom: 1rem; line-height: 1.15; }
.sec-lead { font-size: 16px; color: var(--sage); line-height: 1.75; font-weight: 400; max-width: 620px; margin-bottom: 2.25rem; }
.center { text-align: center; }
.center .sec-lead { margin-left: auto; margin-right: auto; }

/* SERVICE / PACKAGE CARDS */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.svc {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 1.75rem; transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  display: block; text-decoration: none;
}
.svc:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(6,40,37,0.10); border-color: var(--tint-teal); }
.svc-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; background: var(--tint-teal); color: var(--teal); }
.svc-icon svg { width: 24px; height: 24px; }
.svc-name { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; font-family: var(--serif); }
.svc-desc { font-size: 14px; color: var(--muted); line-height: 1.65; font-weight: 400; }
.svc-list { list-style: none; margin-top: 1rem; }
.svc-list li { font-size: 13.5px; color: var(--sage); display: flex; align-items: flex-start; gap: 8px; padding: 5px 0; line-height: 1.5; }
.svc-list li svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }

/* PACKAGE / PRICING CARDS */
.pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: stretch; }
.pkg {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 2rem 1.9rem; display: flex; flex-direction: column; position: relative;
  transition: transform 0.15s, box-shadow 0.15s;
}
.pkg:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(6,40,37,0.10); }
.pkg.featured { border: 2px solid var(--teal); box-shadow: 0 20px 50px rgba(19,115,107,0.16); }
.pkg-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.pkg-name { font-family: var(--serif); font-size: 22px; color: var(--ink); font-weight: 700; }
.pkg-tagline { font-size: 13px; color: var(--muted); margin-top: 4px; margin-bottom: 1.1rem; }
.pkg-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 0.4rem; }
.pkg-price .from { font-size: 12.5px; color: var(--muted); }
.pkg-price .amt { font-family: var(--serif); font-size: 40px; color: var(--teal); font-weight: 700; line-height: 1; }
.pkg-price .per { font-size: 13px; color: var(--muted); }
.pkg-note { font-size: 12.5px; color: var(--muted); margin-bottom: 1.25rem; }
.pkg-features { list-style: none; margin-bottom: 1.5rem; flex-grow: 1; }
.pkg-features li { font-size: 13.5px; color: var(--sage); display: flex; align-items: flex-start; gap: 9px; padding: 7px 0; border-bottom: 1px solid var(--line); line-height: 1.5; }
.pkg-features li:last-child { border-bottom: none; }
.pkg-features li svg { width: 17px; height: 17px; color: var(--teal); flex-shrink: 0; margin-top: 1px; }
.pkg .btn-primary, .pkg .btn-teal, .pkg .btn-outline { width: 100%; justify-content: center; }
.btn-outline {
  font-size: 15px; color: var(--teal); font-weight: 600; background: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none;
  padding: 13px 24px; border-radius: 9px; border: 1.5px solid var(--teal); transition: background 0.15s; cursor: pointer;
}
.btn-outline:hover { background: var(--tint-teal); }

/* FEATURE / WHY GRID */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.feat { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.75rem; }
.feat-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; background: var(--tint-teal); color: var(--teal); }
.feat-icon svg { width: 23px; height: 23px; }
.feat-name { font-size: 16.5px; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; }
.feat-desc { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 400; }

/* SPLIT (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media .photo-ph { border-radius: 18px; min-height: 380px; }
.split-body .about-p { font-size: 15.5px; color: var(--sage); line-height: 1.8; font-weight: 400; margin-bottom: 1rem; }
.check-list { list-style: none; margin-top: 1.25rem; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; padding: 8px 0; font-size: 15px; color: var(--ink); font-weight: 500; }
.check-list li svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.check-list li span { font-weight: 400; color: var(--sage); font-size: 14px; display: block; margin-top: 2px; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.step { position: relative; padding-top: 0.5rem; }
.step-num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--tint-teal); color: var(--teal);
  font-family: var(--serif); font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.step-name { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.step-desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* REVIEWS */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.review { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.75rem; }
.review-stars { display: flex; gap: 2px; margin-bottom: 0.9rem; }
.review-stars svg { width: 18px; height: 18px; color: var(--gold); }
.review-text { font-size: 14.5px; color: var(--ink); line-height: 1.7; font-weight: 400; margin-bottom: 1.1rem; }
.review-who { display: flex; align-items: center; gap: 11px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(150deg, var(--teal), var(--teal-700)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 15px; flex-shrink: 0; }
.review-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.review-loc { font-size: 12.5px; color: var(--muted); }

/* STAT BAND */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.stat { text-align: center; }
.stat-num { font-family: var(--serif); font-size: 44px; color: #fff; font-weight: 700; line-height: 1; }
.stat-lbl { font-size: 13.5px; color: rgba(255,255,255,0.82); margin-top: 8px; font-weight: 500; }
.band-teal { background: linear-gradient(155deg, var(--teal), var(--teal-700)); }

/* CTA STRIP */
.cta-strip { background: linear-gradient(155deg, var(--teal), var(--teal-900)); position: relative; overflow: hidden; }
.cta-inner { position: relative; z-index: 2; max-width: 1180px; margin: 0 auto; padding: 3.5rem 3rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-title { font-family: var(--serif); font-size: 30px; color: #fff; margin-bottom: 6px; letter-spacing: -0.01em; }
.cta-sub { font-size: 15px; color: rgba(255,255,255,0.8); font-weight: 400; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* PAGE HERO (subpages) */
.page-hero { position: relative; overflow: hidden; }
.page-hero .hero-bg { background: linear-gradient(150deg, var(--teal) 0%, var(--teal-700) 70%, var(--teal-900) 100%); }
.ph-inner { position: relative; z-index: 2; max-width: 1180px; margin: 0 auto; padding: 3.75rem 3rem; }
.page-h1 { font-family: var(--serif); font-size: 44px; line-height: 1.1; color: #fff; letter-spacing: -0.015em; margin-bottom: 0.9rem; font-weight: 700; }
.page-hero-p { font-size: 16.5px; color: rgba(255,255,255,0.9); line-height: 1.7; font-weight: 400; max-width: 620px; }
.crumbs { font-size: 12.5px; color: rgba(255,255,255,0.7); margin-bottom: 1.25rem; }
.crumbs a { color: rgba(255,255,255,0.9); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* QUOTE FORM */
.quote-wrap { display: grid; grid-template-columns: 1fr 1.05fr; gap: 3rem; align-items: start; }
.quote-copy .about-p { font-size: 15.5px; color: var(--sage); line-height: 1.8; margin-bottom: 1rem; }
.quote-perks { list-style: none; margin-top: 1.5rem; }
.quote-perks li { display: flex; align-items: flex-start; gap: 11px; padding: 9px 0; font-size: 15px; color: var(--ink); font-weight: 500; }
.quote-perks li svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; margin-top: 1px; }
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 2rem; box-shadow: 0 20px 50px rgba(6,40,37,0.10); }
.quote-card-title { font-family: var(--serif); font-size: 24px; color: var(--ink); margin-bottom: 0.35rem; }
.quote-card-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 1.5rem; }
.field { display: block; margin-bottom: 1.1rem; }
.field > span { display: block; font-size: 12.5px; font-weight: 600; color: var(--sage); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 14.5px; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s; resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(19,115,107,0.12); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%; justify-content: center; margin-top: 0.35rem;
  background: var(--accent); color: #fff; font-size: 15.5px; font-weight: 600;
  padding: 15px 20px; border: none; border-radius: 10px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; transition: background 0.15s;
  box-shadow: 0 10px 24px rgba(232,107,78,0.30);
}
.btn-submit:hover { background: var(--accent-600); }
.btn-submit svg { width: 18px; height: 18px; }
.form-fine { font-size: 12px; color: var(--muted); text-align: center; margin-top: 0.9rem; line-height: 1.5; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 1.4rem 0; }
.faq-q { font-size: 16.5px; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; display: flex; gap: 10px; align-items: flex-start; }
.faq-q svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; margin-top: 1px; }
.faq-a { font-size: 14.5px; color: var(--sage); line-height: 1.75; padding-left: 30px; }

/* PHONE CALLOUT */
.phone-callout { display: inline-flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 30px; color: #fff; text-decoration: none; font-weight: 700; }
.phone-callout svg { width: 26px; height: 26px; color: #BEE6DF; }

/* FOOTER */
.footer { background: var(--teal-900); }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 3.5rem 3rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.ft-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; text-decoration: none; }
.ft-logo-mark { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.12); color: #fff; }
.ft-logo-mark svg { width: 21px; height: 21px; }
.ft-name { font-size: 15px; font-weight: 600; color: #fff; }
.ft-tagline { font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.7; font-weight: 400; max-width: 300px; }
.ft-heading { font-size: 11.5px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.ft-link { display: block; font-size: 13.5px; color: rgba(255,255,255,0.72); margin-bottom: 0.65rem; font-weight: 400; text-decoration: none; }
.ft-link:hover { color: #fff; }
.ft-row { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: rgba(255,255,255,0.72); margin-bottom: 0.65rem; font-weight: 400; }
.ft-row svg { width: 16px; height: 16px; color: rgba(255,255,255,0.45); flex-shrink: 0; margin-top: 2px; }
.ft-row a { color: inherit; text-decoration: none; }
.ft-row a:hover { color: #fff; }
.ft-row strong { color: #fff; font-weight: 600; }
.ft-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.ft-bottom-inner { max-width: 1180px; margin: 0 auto; padding: 1.25rem 3rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.ft-copy { font-size: 12.5px; color: rgba(255,255,255,0.45); }

/* DEMO NOTES — internal/pitch markers, removed before production */
.demo-note {
  display: flex; align-items: flex-start; gap: 12px;
  border: 1.5px dashed #7C3AED; background: rgba(124, 58, 237, 0.06);
  border-radius: 10px; padding: 0.9rem 1.25rem;
  font-size: 13px; color: #5B21B6; line-height: 1.6; font-weight: 400;
}
.demo-note-badge {
  flex-shrink: 0; background: #7C3AED; color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px; margin-top: 2px;
}
.demo-note-wrap { max-width: 1180px; margin: 1.5rem auto 0; padding: 0 3rem; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .nav { padding: 0 1.5rem; }
  .nav-links { gap: 1.1rem; }
  .nav-links li:not(:last-child) { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.25rem 1.5rem 3.75rem; }
  .h1 { font-size: 40px; }
  .hero-visual { max-width: 480px; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .section { padding: 3.25rem 1.5rem; }
  .svc-grid, .pkg-grid, .feat-grid, .reviews { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .split, .quote-wrap { grid-template-columns: 1fr; gap: 2.25rem; }
  .split.reverse .split-media { order: 0; }
  .stats { grid-template-columns: 1fr 1fr; gap: 2.25rem 1rem; }
  .cta-inner, .ph-inner { padding: 3rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; padding: 2.5rem 1.5rem; }
  .ft-bottom-inner { padding: 1.25rem 1.5rem; }
  .page-h1 { font-size: 36px; }
  .demo-note-wrap { padding: 0 1.5rem; }
}
@media (max-width: 620px) {
  .nav { padding: 0 1rem; height: 66px; }
  .logo-sub { display: none; }
  .h1 { font-size: 33px; }
  .hero-p { font-size: 16px; }
  .btns .btn-primary, .btns .btn-ghost { width: 100%; justify-content: center; }
  .trust-bar { grid-template-columns: 1fr; }
  .trust-item { border-right: none !important; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: none; }
  .svc-grid, .pkg-grid, .feat-grid, .reviews, .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .sec-h { font-size: 28px; }
  .cta-title { font-size: 25px; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-badge-float { left: 50%; transform: translateX(-50%); bottom: -26px; }
  .phone-callout { font-size: 25px; }
}

/* ===================================================================
   POLISH PASS v2 — instant estimator, recurring savings, trust badges,
   sticky mobile CTA, refined micro-interactions. Self-contained.
   =================================================================== */

/* Accessible focus rings */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(19,115,107,0.45); outline-offset: 2px; border-radius: 6px;
}
.hero a:focus-visible, .cta-strip a:focus-visible, .band-teal a:focus-visible {
  outline-color: rgba(255,255,255,0.8);
}

/* Hero entrance (reduced-motion safe) */
@keyframes riseIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.hero-copy > * { animation: riseIn 0.7s cubic-bezier(.2,.7,.2,1) both; }
.hero-copy > *:nth-child(1) { animation-delay: 0.02s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.09s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.16s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.23s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.30s; }
.hero-visual { animation: riseIn 0.8s cubic-bezier(.2,.7,.2,1) both 0.2s; }
@media (prefers-reduced-motion: reduce) {
  .hero-copy > *, .hero-visual { animation: none; }
}

/* Instant-estimate hero pill */
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.25rem; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600;
  color: #fff; background: rgba(255,255,255,0.13); border: 1px solid rgba(255,255,255,0.22);
  padding: 6px 12px; border-radius: 999px; letter-spacing: 0.01em;
}
.hero-pill svg { width: 14px; height: 14px; color: #BEE6DF; }
.hero-pill.hot { background: rgba(232,107,78,0.22); border-color: rgba(255,208,196,0.5); }
.hero-pill.hot svg { color: #FFD3C7; }

/* Button shimmer micro-interaction */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-18deg); transition: none;
}
.btn-primary:hover::after { animation: sheen 0.85s ease; }
@keyframes sheen { to { left: 130%; } }
@media (prefers-reduced-motion: reduce) { .btn-primary:hover::after { animation: none; } }
.btn-primary:active, .btn-teal:active, .btn-submit:active { transform: translateY(0); }

/* Svc card arrow reveal */
.svc { position: relative; }
.svc-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 1rem;
  font-size: 13px; font-weight: 600; color: var(--teal); opacity: 0; transform: translateX(-4px);
  transition: opacity 0.18s, transform 0.18s; }
.svc-more svg { width: 15px; height: 15px; }
.svc:hover .svc-more { opacity: 1; transform: translateX(0); }
@media (prefers-reduced-motion: reduce) { .svc-more { opacity: 1; transform: none; } }

/* CREDENTIAL / TRUST BADGE STRIP */
.badge-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.85rem;
  max-width: 1180px; margin: 2.25rem auto 0;
}
.badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 6px 18px rgba(6,40,37,0.05);
}
.badge-ring {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--tint-teal); color: var(--teal); border: 1.5px solid rgba(19,115,107,0.18);
}
.badge-ring svg { width: 19px; height: 19px; }
.badge-t { font-size: 13.5px; font-weight: 700; color: var(--ink); line-height: 1.15; }
.badge-s { font-size: 11.5px; color: var(--muted); margin-top: 1px; }

/* RECURRING PLAN — frequency toggle + live savings on packages */
.freq-toggle {
  display: inline-flex; gap: 4px; padding: 5px; background: var(--tint-gray);
  border: 1px solid var(--line); border-radius: 999px; margin: 0 auto 0.5rem;
}
.freq-btn {
  border: none; background: transparent; cursor: pointer; font-family: inherit;
  font-size: 13.5px; font-weight: 600; color: var(--sage); padding: 8px 16px;
  border-radius: 999px; transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.freq-btn[aria-pressed="true"] { background: #fff; color: var(--teal); box-shadow: 0 2px 8px rgba(6,40,37,0.1); }
.freq-save-note {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600;
  color: var(--teal); background: var(--tint-teal); padding: 4px 11px; border-radius: 999px; margin-left: 8px;
}
.pkg-save {
  font-size: 12px; font-weight: 700; color: var(--teal); background: var(--tint-teal);
  display: inline-block; padding: 3px 9px; border-radius: 999px; margin-bottom: 1rem;
  min-height: 22px;
}
.pkg-save:empty { background: transparent; }
.pkg-price .amt { transition: color 0.2s; }

/* INSTANT ESTIMATOR (quote page flagship) */
.est-band { background: var(--paper-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.estimator {
  max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 0; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: #fff;
  box-shadow: 0 24px 60px rgba(6,40,37,0.10);
}
.est-form { padding: 2.25rem; }
.est-q { margin-bottom: 1.5rem; }
.est-q:last-child { margin-bottom: 0; }
.est-q > label, .est-q > .est-qlabel {
  display: block; font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 0.6rem;
}
.seg { display: flex; flex-wrap: wrap; gap: 8px; }
.seg-opt {
  cursor: pointer; user-select: none; font-size: 14px; font-weight: 600; color: var(--sage);
  background: #fff; border: 1.5px solid var(--line); border-radius: 10px; padding: 10px 15px;
  transition: border-color 0.15s, color 0.15s, background 0.15s, box-shadow 0.15s;
}
.seg-opt:hover { border-color: var(--teal); color: var(--teal); }
.seg-opt.on {
  border-color: var(--teal); color: #fff; background: var(--teal);
  box-shadow: 0 6px 16px rgba(19,115,107,0.22);
}
.est-addons { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.est-add {
  display: flex; align-items: center; gap: 9px; cursor: pointer; font-size: 13.5px;
  color: var(--ink); font-weight: 500; padding: 10px 12px; border: 1.5px solid var(--line);
  border-radius: 10px; transition: border-color 0.15s, background 0.15s;
}
.est-add:hover { border-color: var(--teal); }
.est-add.on { border-color: var(--teal); background: var(--tint-teal); }
.est-add .est-box {
  width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid var(--line);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: #fff;
  transition: background 0.15s, border-color 0.15s;
}
.est-add .est-box svg { width: 12px; height: 12px; color: #fff; opacity: 0; }
.est-add.on .est-box { background: var(--teal); border-color: var(--teal); }
.est-add.on .est-box svg { opacity: 1; }
.est-add .est-cost { margin-left: auto; font-size: 12px; color: var(--muted); font-weight: 600; }

/* Estimator result panel */
.est-result {
  background: linear-gradient(160deg, var(--teal), var(--teal-900)); color: #fff;
  padding: 2.25rem; display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.est-result::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 12%, rgba(255,255,255,0.14), transparent 45%);
}
.est-result > * { position: relative; z-index: 1; }
.est-rlabel { font-size: 12px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: #BEE6DF; }
.est-price { font-family: var(--serif); font-size: 52px; font-weight: 700; line-height: 1; margin: 0.5rem 0 0.15rem; }
.est-price .est-per { font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.75); font-family: var(--sans); }
.est-range { font-size: 13.5px; color: rgba(255,255,255,0.82); margin-bottom: 1.25rem; }
.est-save-badge {
  display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
  background: rgba(232,107,78,0.9); color: #fff; font-size: 13px; font-weight: 700;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 1.4rem; min-height: 32px;
}
.est-save-badge svg { width: 15px; height: 15px; }
.est-save-badge.hide { display: none; }
.est-breakdown { border-top: 1px solid rgba(255,255,255,0.18); padding-top: 1.1rem; margin-bottom: 1.4rem; }
.est-line { display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.85); padding: 4px 0; }
.est-line span:last-child { font-weight: 600; color: #fff; }
.est-result .btn-primary { width: 100%; justify-content: center; margin-top: auto; }
.est-fine { font-size: 11.5px; color: rgba(255,255,255,0.62); text-align: center; margin-top: 0.9rem; line-height: 1.5; }

/* STICKY MOBILE CTA */
.mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(6,40,37,0.12);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); gap: 10px;
}
.mobile-cta a { flex: 1; justify-content: center; padding: 13px 10px; font-size: 15px; }
.mobile-cta .btn-outline { flex: 0 0 auto; padding: 13px 16px; }
@media (max-width: 620px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 74px; }
  .estimator { grid-template-columns: 1fr; }
  .est-addons { grid-template-columns: 1fr; }
  .est-price { font-size: 46px; }
  .badge { width: 100%; }
}
@media (max-width: 960px) {
  .estimator { grid-template-columns: 1fr; }
}

/* ===================================================================
   CALCULATOR-FIRST HERO — "tool-led" layout variant (index.html)
   The instant estimator lives inside the hero as the primary hook.
   Scoped under .tool-hero / .hero-tool so the quote-page estimator
   (default two-panel) is untouched.
   =================================================================== */
.hero-inner.tool-hero {
  grid-template-columns: 1.02fr 468px;
  gap: 3rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4.25rem;
}

/* Right column: the live calculator card */
.hero-tool { position: relative; z-index: 2; }
.hero-tool .estimator {
  grid-template-columns: 1fr;          /* stack form over result */
  max-width: 468px;
  margin: 0 0 0 auto;
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 34px 80px rgba(4,28,26,0.5);
}

/* Card header ribbon — "instant estimate / 60 seconds" */
.est-head {
  display: flex; align-items: center; gap: 10px;
  padding: 0.95rem 1.6rem;
  background: var(--paper-alt);
  border-bottom: 1px solid var(--line);
}
.est-head-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; background: var(--teal); padding: 5px 11px; border-radius: 999px;
}
.est-head-badge svg { width: 13px; height: 13px; }
.est-head-txt { font-size: 13px; font-weight: 600; color: var(--sage); }

/* Compact the stacked estimator inside the hero */
.hero-tool .est-form { padding: 1.5rem 1.6rem 1.55rem; }
.hero-tool .est-q { margin-bottom: 1.1rem; }
.hero-tool .seg-opt { padding: 8px 13px; font-size: 13.5px; }
.hero-tool .est-add { padding: 9px 11px; font-size: 13px; }
.hero-tool .est-result { padding: 1.6rem; }
.hero-tool .est-price { font-size: 44px; }

/* No-JS fallback note under the calculator */
.est-noscript {
  margin-top: 1rem; max-width: 468px; margin-left: auto;
  background: rgba(255,255,255,0.94); border: 1px solid rgba(255,255,255,0.5);
  border-radius: 12px; padding: 0.9rem 1.1rem;
  font-size: 13px; line-height: 1.55; color: var(--ink);
}
.est-noscript a { color: var(--teal); font-weight: 600; }

/* Floating social-proof badge over the tool card */
.hero-tool .hero-badge-float {
  bottom: -20px; left: auto; right: -18px;
}

/* When the tool-led hero collapses, keep the copy width sensible */
@media (max-width: 960px) {
  .hero-inner.tool-hero { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-tool .estimator { margin: 0 auto; }
  .hero-tool { max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-tool .hero-badge-float { right: 50%; transform: translateX(50%); }
}
@media (max-width: 620px) {
  .hero-inner.tool-hero { padding-top: 2.75rem; padding-bottom: 3.25rem; }
  .hero-tool .est-price { font-size: 40px; }
  .hero-tool .hero-badge-float { position: static; transform: none; margin: 1.75rem auto 0; width: max-content; }
}
