/* ============================================================
   SasqWashers LLC — Design System
   Mascot-forward · vibrant · water + grass brand palette
   ============================================================ */

/* ── Tokens ── */
:root {
  /* Brand */
  --green:      #2BA82E;
  --green-700:  #1C7D22;
  --green-800:  #14601b;
  --green-300:  #5FD04E;
  --green-100:  #E7F7E6;

  --blue:       #18A6E0;
  --blue-700:   #1182B6;
  --blue-300:   #5CC8F2;
  --blue-100:   #E4F5FD;

  --ink:        #10231A;
  --body:       #4B5B53;
  --muted:      #8A9890;

  --bg:         #ffffff;
  --bg-soft:    #F2FAF2;
  --bg-ice:     #EEF8FE;
  --bg-dark:    #0C1A12;
  --border:     #E2EFE3;

  --brand-grad:    linear-gradient(135deg, #18A6E0 0%, #2BA82E 100%);
  --brand-grad-dk: linear-gradient(135deg, #0E5E86 0%, #14601b 100%);

  --shadow-sm: 0 2px 10px rgba(16,35,26,.06);
  --shadow:    0 10px 34px rgba(16,35,26,.10);
  --shadow-lg: 0 24px 64px rgba(16,35,26,.18);
  --shadow-green: 0 10px 28px rgba(43,168,46,.30);
  --shadow-blue:  0 10px 28px rgba(24,166,224,.28);

  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --r-pill: 100px;

  --maxw: 1180px;
  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ── Reset / base ── */
*, *::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);
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; font-weight: 800; letter-spacing: -.02em; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

/* ── Layout helpers ── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 22px; }
.section { padding: 76px 0; position: relative; }
.section-sm { padding: 52px 0; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 700; font-size: 12.5px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-700); background: var(--green-100);
  padding: 7px 15px; border-radius: var(--r-pill); margin-bottom: 16px;
}
.eyebrow svg { width: 1.15em; height: 1.15em; }
.eyebrow.on-blue { color: var(--blue-700); background: var(--blue-100); }
.eyebrow.on-dark { color: #fff; background: rgba(255,255,255,.14); }

h1.display { font-size: clamp(34px, 5.4vw, 60px); font-weight: 800; }
.h-xl { font-size: clamp(30px, 4.2vw, 46px); }
.h-lg { font-size: clamp(26px, 3.2vw, 38px); }
.h-md { font-size: clamp(21px, 2.4vw, 27px); }
.lead { font-size: clamp(16.5px, 1.5vw, 19px); color: var(--body); line-height: 1.7; max-width: 620px; }
.eyebrow + h2, .eyebrow + h1 { margin-bottom: 14px; }
.muted { color: var(--muted); }
.grad-text { background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-green { color: var(--green-700); }
.text-blue { color: var(--blue-700); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  padding: 15px 30px; border-radius: var(--r-pill); border: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-green { background: var(--green); color: #fff; box-shadow: var(--shadow-green); }
.btn-green:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(43,168,46,.4); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-blue:hover { background: var(--blue-700); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--green-700); box-shadow: var(--shadow); }
.btn-white:hover { background: #f3fbf3; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--border); }
.btn-ghost:hover { border-color: var(--green); color: var(--green-700); }
.btn-outline-white { background: rgba(255,255,255,.08); color: #fff; border: 2px solid rgba(255,255,255,.55); }
.btn-outline-white:hover { background: rgba(255,255,255,.16); border-color: #fff; }
.btn-lg { padding: 17px 38px; font-size: 17.5px; }
.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn-block { width: 100%; }

/* ── Wave dividers ── */
.wave { display: block; width: 100%; height: auto; line-height: 0; }
.wave svg { display: block; width: 100%; height: 70px; }
@media (max-width: 640px){ .wave svg { height: 42px; } }

/* ── Floating bubbles (decor) ── */
.bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.bubble {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,.85), rgba(255,255,255,.18) 42%, rgba(255,255,255,0) 70%);
  border: 1px solid rgba(255,255,255,.35);
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-16px) } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 500;
  background: rgba(255,255,255,.86); backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 22px;
  display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 18px; }
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { width: auto; }
.nav-logo .nav-mascot { height: 54px; }
.nav-logo .nav-wordmark { height: 38px; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--ink);
  padding: 10px 14px; border-radius: 10px; transition: background .15s, color .15s; cursor: pointer;
}
.nav-link:hover, .nav-link.active { color: var(--green-700); background: var(--green-100); }
.nav-link .chev { width: 14px; height: 14px; transition: transform .2s; }
.nav-item:hover .chev { transform: rotate(180deg); }

/* dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 480px; background: #fff; border: 1px solid var(--border); border-radius: var(--r);
  box-shadow: var(--shadow-lg); padding: 12px; opacity: 0; visibility: hidden; transition: all .2s ease; z-index: 600;
}
.dropdown.wide { min-width: 560px; }
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.dd-link { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 12px; transition: background .15s; }
.dd-link:hover { background: var(--bg-soft); }
.dd-ico { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; font-size: 19px; flex-shrink: 0;
  background: var(--green-100); }
.dd-link.blue .dd-ico { background: var(--blue-100); }
.dd-txt b { display: block; font-family: var(--font-head); font-weight: 700; font-size: 14.5px; color: var(--ink); }
.dd-txt span { font-size: 12.5px; color: var(--muted); }
.dd-foot { margin-top: 6px; padding: 12px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.dd-foot a { font-family: var(--font-head); font-weight: 700; font-size: 13.5px; color: var(--green-700); }
.dd-foot a svg { width: 1em; height: 1em; display: inline-block; vertical-align: middle; }

.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-phone { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 15px; }
.nav-phone:hover { color: var(--green-700); }
.nav-phone svg { width: 17px; height: 17px; color: var(--green); }
.hamburger { display: none; background: none; border: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: .3s; }

/* mobile drawer */
.mnav { display: none; position: fixed; inset: 76px 0 0; z-index: 480; background: #fff; padding: 18px 22px 40px; overflow-y: auto; }
.mnav.open { display: block; }
.mnav details { border-bottom: 1px solid var(--border); }
.mnav summary { list-style: none; cursor: pointer; font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--ink); padding: 15px 0; display: flex; justify-content: space-between; align-items: center; }
.mnav summary::-webkit-details-marker { display: none; }
.mnav summary::after { content: '+'; font-size: 22px; color: var(--green); font-weight: 400; }
.mnav details[open] summary::after { content: '–'; }
.mnav .msub { padding: 0 0 14px; display: flex; flex-direction: column; gap: 2px; }
.mnav .msub a { padding: 9px 12px; border-radius: 10px; color: var(--body); font-weight: 500; }
.mnav .msub a:hover { background: var(--bg-soft); color: var(--green-700); }
.mnav > a { display: block; font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--ink); padding: 15px 0; border-bottom: 1px solid var(--border); }
.mnav .mnav-cta { margin-top: 22px; }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero { position: relative; background: var(--brand-grad); overflow: hidden; padding: 60px 0 0; }
.hero::after { content:''; position:absolute; inset:0; background: radial-gradient(ellipse at 78% 20%, rgba(255,255,255,.22), transparent 55%); pointer-events:none; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding-bottom: 28px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.4); color: #fff; font-family: var(--font-head); font-weight: 600;
  font-size: 13px; padding: 7px 15px; border-radius: var(--r-pill); margin-bottom: 20px; backdrop-filter: blur(4px);
}
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: #BFF5B0; box-shadow: 0 0 0 4px rgba(191,245,176,.35); animation: blink 1.6s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }
.hero h1 { color: #fff; font-size: clamp(36px, 5.2vw, 62px); font-weight: 800; line-height: 1.05; text-shadow: 0 2px 18px rgba(8,40,16,.18); }
.hero h1 .pop { color: #FFE45E; }
.hero-sub { color: rgba(255,255,255,.94); font-size: clamp(16.5px,1.5vw,19px); line-height: 1.65; margin: 20px 0 30px; max-width: 500px; text-shadow: 0 1px 10px rgba(8,40,16,.12); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 26px; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 22px; }
.hero-trust .ht { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: 14px; font-weight: 600; }
.hero-trust .ht svg { width: 1.15em; height: 1.15em; }
.hero-trust .stars { color: #FFE45E; letter-spacing: 1px; }
.hero-trust .div { width: 1px; height: 18px; background: rgba(255,255,255,.4); }

/* hero visual: mascot + photo card */
.hero-visual { position: relative; min-height: 440px; display: flex; align-items: flex-end; justify-content: center; }
.hero-photo { position: relative; width: 100%; max-width: 440px; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 5px solid rgba(255,255,255,.85); aspect-ratio: 3/4; background:#cde; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-mascot { position: absolute; left: -8%; bottom: -2px; width: 56%; max-width: 320px; z-index: 3;
  filter: drop-shadow(0 18px 26px rgba(6,30,12,.35)); animation: floaty 6s ease-in-out infinite; }
.hero-badge {
  position: absolute; z-index: 4; background: #fff; border-radius: 16px; padding: 12px 16px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px;
}
.hero-badge .bi { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; font-size: 20px; background: var(--green-100); }
.hero-badge b { font-family: var(--font-head); font-size: 16px; color: var(--ink); display: block; line-height: 1.1; }
.hero-badge span { font-size: 11.5px; color: var(--muted); }
.hero-badge.b1 { top: 14px; right: -6px; }
.hero-badge.b2 { bottom: 60px; right: -14px; }

/* ── Trust strip ── */
.trust-strip { background: var(--bg-dark); }
.trust-strip .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding-top: 18px; padding-bottom: 18px; }
.trust-strip .ts { display: inline-flex; align-items: center; gap: 9px; color: rgba(255,255,255,.85); font-size: 14px; font-weight: 600; font-family: var(--font-head); }
.trust-strip .ts svg { width: 19px; height: 19px; color: var(--green-300); }

/* ── Stats ── */
.stats { background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,.07); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; text-align: center; padding: 44px 0; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(34px,5vw,52px); line-height: 1;
  background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { margin-top: 8px; font-size: 12.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); }

/* ============================================================
   CARDS / GRIDS
   ============================================================ */
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; }
.mt-32 { margin-top: 36px; }
.mt-20 { margin-top: 22px; }

/* feature card */
.fcard { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r); padding: 28px 24px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.fcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--green-300); }
.fcard .ico { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; font-size: 27px; margin-bottom: 16px; background: var(--green-100); }
.fcard .ico svg { width: 1em; height: 1em; }
.fcard.blue .ico { background: var(--blue-100); }
.fcard h3 { font-size: 18px; margin-bottom: 8px; }
.fcard p { font-size: 14.5px; line-height: 1.6; }

/* service card (with link) */
.scard { display: flex; flex-direction: column; background: #fff; border: 1.5px solid var(--border); border-radius: var(--r); overflow: hidden; transition: transform .2s, box-shadow .2s, border-color .2s; }
.scard:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--green-300); }
.scard .ph { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-soft); }
.scard .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.scard:hover .ph img { transform: scale(1.06); }
.scard .bd { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.scard .ico { font-size: 26px; margin-bottom: 6px; }
.scard h3 { font-size: 18.5px; margin-bottom: 7px; }
.scard p { font-size: 14px; line-height: 1.6; margin-bottom: 16px; flex: 1; }
.scard .go { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--green-700); display: inline-flex; align-items: center; gap: 5px; }
.scard .go svg { width: 15px; height: 15px; transition: transform .2s; }
.scard:hover .go svg { transform: translateX(4px); }

/* process steps */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; position: relative; }
.step { text-align: center; }
.step .bub { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; background: var(--brand-grad); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 24px; display: grid; place-items: center; box-shadow: var(--shadow-green); position: relative; z-index: 1; }
.step h3 { font-size: 17px; margin-bottom: 7px; }
.step p { font-size: 14px; line-height: 1.6; }

/* gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.gitem { position: relative; border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 4/3; }
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.gitem:hover img { transform: scale(1.07); }
.gitem .tag { position: absolute; top: 11px; left: 11px; background: var(--green); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; padding: 5px 11px; border-radius: var(--r-pill); }
.gitem .tag.blue { background: var(--blue); }

/* reviews */
.rcard { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r); padding: 26px; }
.rcard .stars { color: #F5A623; font-size: 18px; letter-spacing: 2px; margin-bottom: 12px; }
.rcard p { font-size: 15px; line-height: 1.7; color: var(--body); font-style: italic; margin-bottom: 18px; }
.rcard .who { display: flex; align-items: center; gap: 12px; }
.rcard .av { width: 44px; height: 44px; border-radius: 50%; background: var(--brand-grad); color: #fff; font-family: var(--font-head); font-weight: 700; display: grid; place-items: center; flex-shrink: 0; }
.rcard .who b { font-family: var(--font-head); font-size: 15px; color: var(--ink); display: block; }
.rcard .who span { font-size: 12.5px; color: var(--muted); }

.gbadge { margin-top: 34px; background: #fff; border: 1.5px solid var(--border); border-radius: var(--r); padding: 26px; text-align: center; box-shadow: var(--shadow-sm); }
.gbadge .row { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 8px; }
.gbadge .row b { font-family: var(--font-head); font-size: 17px; color: var(--ink); }
.gbadge .big { font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--ink); }

/* ============================================================
   GUARANTEE / CTA bands
   ============================================================ */
.band { background: var(--brand-grad-dk); color: #fff; text-align: center; position: relative; overflow: hidden; }
.band h2 { color: #fff; }
.band p { color: rgba(255,255,255,.85); max-width: 580px; margin: 14px auto 30px; }
.band .ico-xl { font-size: 56px; margin-bottom: 14px; }
.ico-xl svg { width: 1em; height: 1em; display: inline-block; }

.cta-split { background: var(--brand-grad); color:#fff; border-radius: var(--r-lg); padding: 46px; display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap; box-shadow: var(--shadow-lg); position:relative; overflow:hidden; }
.cta-split h2 { color:#fff; font-size: clamp(24px,3vw,34px); }
.cta-split p { color: rgba(255,255,255,.9); margin-top:8px; max-width: 520px; }
.cta-split .acts { display:flex; gap:12px; flex-wrap:wrap; }

/* ============================================================
   VIDEO
   ============================================================ */
.video-wrap { position: relative; background:#000; height: 560px; overflow: hidden; }
.video-wrap video { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; }
.video-ov { position:absolute; inset:0; z-index:2; background: linear-gradient(to bottom, rgba(8,20,12,.35), rgba(8,20,12,.7)); display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding: 30px; }
.video-ov h2 { color:#fff; font-size: clamp(26px,3.6vw,42px); }
.video-ov p { color: rgba(255,255,255,.85); max-width: 460px; margin: 12px 0 24px; }

/* ============================================================
   ESTIMATOR
   ============================================================ */
.estimator { background: var(--bg-dark); }
.est-card { max-width: 840px; margin: 30px auto 0; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg); padding: 40px; }
.est-tabs { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-bottom: 34px; }
.est-tab { display:inline-flex; align-items:center; gap:7px; padding: 10px 18px; border-radius: var(--r-pill); border: 1.5px solid rgba(255,255,255,.16); background: transparent; color: rgba(255,255,255,.7); font-family: var(--font-head); font-weight: 600; font-size: 14px; cursor: pointer; transition: .18s; }
.est-tab:hover { border-color: var(--green-300); color:#fff; }
.est-tab.active { background: var(--green); border-color: var(--green); color:#fff; box-shadow: var(--shadow-green); }
.est-ctrl { margin-bottom: 28px; }
.est-label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.est-opts { display:flex; gap: 11px; flex-wrap: wrap; }
.est-opt { flex:1; min-width: 96px; padding: 16px 10px; border-radius: 14px; border: 1.5px solid rgba(255,255,255,.16); background: rgba(255,255,255,.05); color:#fff; font-family: var(--font-body); cursor: pointer; text-align:center; transition:.18s; }
.est-opt b { display:block; font-family: var(--font-head); font-size: 14px; margin-top: 4px; }
.est-opt small { display:block; font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; }
.est-opt:hover { border-color: var(--green-300); }
.est-opt.active { border-color: var(--green); background: rgba(43,168,46,.2); box-shadow: 0 0 0 3px rgba(43,168,46,.22); }
.est-slider-top { display:flex; justify-content: space-between; align-items: flex-end; margin-bottom: 10px; }
.est-big { font-family: var(--font-head); font-weight: 800; font-size: 44px; color:#fff; line-height: 1; }
.est-big small { font-size: 15px; color: rgba(255,255,255,.5); font-weight: 500; }
.est-rangelbl { font-size: 13px; color: rgba(255,255,255,.45); }
input[type=range].est-range { width:100%; height:6px; border-radius: 6px; -webkit-appearance:none; appearance:none; outline:none; cursor:pointer; background: rgba(255,255,255,.18); }
input[type=range].est-range::-webkit-slider-thumb { -webkit-appearance:none; width:26px; height:26px; border-radius:50%; background: var(--green); border:3px solid #fff; box-shadow:0 2px 10px rgba(43,168,46,.5); cursor:pointer; }
input[type=range].est-range::-moz-range-thumb { width:26px; height:26px; border-radius:50%; background: var(--green); border:3px solid #fff; cursor:pointer; }
.est-ticks { display:flex; justify-content: space-between; margin-top: 8px; }
.est-ticks span { font-size: 11px; color: rgba(255,255,255,.32); }
.est-result { background: rgba(43,168,46,.14); border: 1px solid rgba(43,168,46,.32); border-radius: var(--r); padding: 26px 30px; display:flex; align-items:center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.est-result .plbl { font-size: 12.5px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing:.08em; font-weight:600; margin-bottom: 5px; }
.est-result .price { font-family: var(--font-head); font-weight: 800; font-size: 50px; color:#fff; line-height:1; }
.est-result .price sup { font-size: 22px; vertical-align: super; }
.est-result .pnote { font-size: 12.5px; color: rgba(255,255,255,.45); margin-top: 6px; }
.est-result .disc { font-size: 11.5px; color: rgba(255,255,255,.35); max-width: 210px; text-align: right; margin-top: 8px; }
.est-commercial { text-align:center; padding: 36px 20px; border: 1.5px dashed rgba(255,255,255,.18); border-radius: var(--r); }

/* ============================================================
   FORM
   ============================================================ */
.form-card { background:#fff; border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 34px; box-shadow: var(--shadow); }
.form-card h3 { font-size: 22px; margin-bottom: 3px; }
.form-card .fsub { font-size: 13.5px; color: var(--muted); margin-bottom: 24px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.fgroup { margin-bottom: 15px; }
.fgroup label { display:block; font-family: var(--font-head); font-size: 13px; font-weight: 600; color: #44524b; margin-bottom: 6px; }
.fgroup input, .fgroup select, .fgroup textarea {
  width:100%; padding: 13px 15px; border: 1.5px solid #DEE9DF; border-radius: 12px; font-size: 15px; font-family: var(--font-body);
  color: var(--ink); background:#fff; outline:none; transition: border-color .18s, box-shadow .18s;
}
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(43,168,46,.12); }
.fgroup textarea { resize: vertical; min-height: 84px; }
.fgroup select { appearance:none; cursor:pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2389988F' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position: right 15px center; padding-right: 38px; }
.form-submit { width:100%; padding: 16px; font-family: var(--font-head); font-size: 16.5px; font-weight: 700; color:#fff; background: var(--green); border:none; border-radius: 13px; cursor:pointer; box-shadow: var(--shadow-green); transition:.18s; margin-top: 4px; }
.form-submit:hover { background: var(--green-700); transform: translateY(-2px); }
.form-submit:disabled { opacity:.6; cursor: not-allowed; transform:none; }
.form-note { font-size: 11.5px; color: var(--muted); text-align:center; margin-top: 11px; line-height: 1.5; }
.form-success { display:none; background:#F0FDF4; border: 1.5px solid #86EFAC; border-radius: var(--r); padding: 28px; text-align:center; }
.form-success .ico { font-size: 44px; margin-bottom: 10px; }
.form-success h3 { color:#15803D; font-size: 20px; margin-bottom: 6px; }
.form-success p { color:#15803D; font-size: 14.5px; }

.booking-perks { display:flex; flex-direction: column; gap: 16px; margin-top: 30px; }
.perk { display:flex; gap: 14px; align-items: flex-start; }
.perk .pi { width: 44px; height: 44px; min-width:44px; border-radius: 12px; background: var(--green-100); display:grid; place-items:center; font-size: 20px; }
.pi svg { width: 1em; height: 1em; }
.perk b { display:block; font-family: var(--font-head); font-size: 15px; color: var(--ink); }
.perk span { font-size: 14px; color: var(--body); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; margin: 36px auto 0; display:flex; flex-direction: column; gap: 12px; }
.faq-item { background:#fff; border: 1.5px solid var(--border); border-radius: var(--r); overflow: hidden; }
.faq-q { width:100%; display:flex; align-items:center; justify-content: space-between; gap: 14px; padding: 19px 22px; font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--ink); background:none; border:none; cursor:pointer; text-align:left; }
.faq-q:hover { background: var(--bg-soft); }
.faq-q .ic { font-size: 22px; color: var(--green); font-weight: 400; flex-shrink:0; transition: transform .3s; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 420px; }
.faq-a-in { padding: 0 22px 20px; font-size: 15px; line-height: 1.7; color: var(--body); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.phero { background: var(--brand-grad); color:#fff; position: relative; overflow: hidden; }
.phero-grid { position: relative; z-index: 2; display:grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; padding: 46px 0 54px; }
.phero.solo .phero-grid { grid-template-columns: 1fr; text-align:center; }
.phero.solo .lead, .phero.solo .crumbs { justify-content:center; margin-left:auto; margin-right:auto; }
.crumbs { display:flex; flex-wrap: wrap; align-items:center; gap: 7px; font-size: 13px; color: rgba(255,255,255,.8); margin-bottom: 16px; }
.crumbs a:hover { color:#fff; text-decoration: underline; }
.crumbs .sep { opacity:.5; }
.phero h1 { color:#fff; font-size: clamp(30px,4.4vw,48px); }
.phero .lead { color: rgba(255,255,255,.92); margin: 16px 0 26px; max-width: 540px; }
.phero-photo { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 5px solid rgba(255,255,255,.8); aspect-ratio: 4/3; }
.phero-photo img { width:100%; height:100%; object-fit: cover; }
.phero-chips { display:flex; flex-wrap:wrap; gap:10px; }
.chip { display:inline-flex; align-items:center; gap:7px; background: rgba(255,255,255,.16); border:1px solid rgba(255,255,255,.34); color:#fff; padding: 8px 15px; border-radius: var(--r-pill); font-size: 13.5px; font-weight:600; }
.chip svg { width: 1em; height: 1em; }

/* prose / content blocks */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(24px,2.6vw,32px); margin: 36px 0 14px; }
.prose h3 { font-size: 20px; margin: 26px 0 10px; }
.prose p { font-size: 16px; line-height: 1.8; margin-bottom: 16px; color: var(--body); }
.prose ul.ticks { margin: 6px 0 20px; display:flex; flex-direction: column; gap: 10px; }
.prose ul.ticks li { position: relative; padding-left: 32px; font-size: 16px; line-height: 1.6; color: var(--body); }
.prose ul.ticks li::before { content:''; position:absolute; left:0; top:2px; width:21px; height:21px; border-radius:50%; background: var(--green-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231C7D22' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat; }

.split { display:grid; grid-template-columns: 1.3fr .9fr; gap: 48px; align-items: start; }
.sticky-side { position: sticky; top: 100px; }
.side-card { background:#fff; border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow); }
.side-card h3 { font-size: 19px; margin-bottom: 6px; }
.side-card .pr { font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--green-700); margin: 10px 0 4px; }
.side-card .pr small { font-size: 14px; color: var(--muted); font-weight: 500; }
.side-list { margin: 16px 0; display:flex; flex-direction: column; gap: 9px; }
.side-list div { display:flex; gap: 10px; font-size: 14px; }
.side-list svg { width: 17px; height: 17px; color: var(--green); flex-shrink:0; margin-top:2px; }

.pricing-table { width:100%; border-collapse: collapse; background:#fff; border:1.5px solid var(--border); border-radius: var(--r); overflow: hidden; }
.pricing-table th, .pricing-table td { padding: 14px 18px; text-align:left; border-bottom: 1px solid var(--border); font-size: 15px; }
.pricing-table th { background: var(--bg-soft); font-family: var(--font-head); color: var(--ink); font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }
.pricing-table td:last-child { font-family: var(--font-head); font-weight: 700; color: var(--green-700); }
.pricing-table tr:last-child td { border-bottom: none; }

/* area tags */
.area-tags { display:flex; flex-wrap:wrap; gap: 10px; justify-content:center; }
.area-tag { display:inline-flex; align-items:center; gap:6px; background:#fff; border: 1.5px solid var(--border); color: var(--ink); padding: 9px 18px; border-radius: var(--r-pill); font-family: var(--font-head); font-weight: 600; font-size: 14px; transition: .18s; }
.area-tag:hover { border-color: var(--green); color: var(--green-700); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.area-tag.lg { padding: 12px 22px; font-size: 15px; }

/* city cards */
.city-card { display:flex; align-items:center; gap: 14px; background:#fff; border:1.5px solid var(--border); border-radius: var(--r); padding: 18px 20px; transition:.2s; }
.city-card:hover { border-color: var(--green-300); box-shadow: var(--shadow); transform: translateY(-3px); }
.city-card .pin { width: 46px; height:46px; border-radius: 12px; background: var(--blue-100); display:grid; place-items:center; font-size: 22px; flex-shrink:0; }
.city-card b { font-family: var(--font-head); font-size: 16.5px; color: var(--ink); display:block; }
.city-card span { font-size: 13px; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--bg-dark); color: rgba(255,255,255,.6); padding: 64px 0 26px; }
.foot-grid { display:grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 40px; margin-bottom: 48px; }
.foot-brand img { height: 58px; margin-bottom: 14px; }
.foot-brand p { font-size: 14px; line-height: 1.7; max-width: 290px; }
.foot-social { display:flex; gap: 10px; margin-top: 18px; }
.foot-social a { width: 38px; height:38px; border-radius: 10px; background: rgba(255,255,255,.08); display:grid; place-items:center; transition:.18s; }
.foot-social a:hover { background: var(--green); }
.foot-social svg { width: 18px; height:18px; color:#fff; }
.foot-col h4 { font-family: var(--font-head); color:#fff; font-size: 13px; text-transform: uppercase; letter-spacing:.1em; margin-bottom: 16px; }
.foot-col ul { display:flex; flex-direction: column; gap: 9px; }
.foot-col a { font-size: 14px; transition: color .15s; }
.foot-col a:hover { color: var(--green-300); }
.foot-contact div { display:flex; gap: 10px; margin-bottom: 11px; font-size: 14px; align-items: flex-start; }
.foot-contact svg { width: 17px; height:17px; color: var(--green-300); flex-shrink:0; margin-top: 2px; }
.foot-contact a:hover { color: var(--green-300); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display:flex; justify-content: space-between; align-items:center; flex-wrap: wrap; gap: 10px; font-size: 12.5px; }
.foot-bottom .credit { color: rgba(255,255,255,.3); }
.foot-bottom .credit a { color: rgba(255,255,255,.45); }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.mcta { position: fixed; left:0; right:0; bottom:0; z-index: 450; display:none; gap: 10px; padding: 10px 14px;
  background: rgba(255,255,255,.94); backdrop-filter: blur(12px); border-top: 1px solid var(--border); box-shadow: 0 -6px 24px rgba(16,35,26,.12); }
.mcta .btn { flex:1; padding: 13px; font-size: 15px; }

/* ── scroll reveal ── */
.reveal { opacity:0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity:1; transform:none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px){
  .nav-menu, .nav-phone { display:none; }
  .hamburger { display:flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; padding-bottom: 10px; }
  .hero-visual { min-height: 360px; margin-top: 8px; }
  .phero-grid { grid-template-columns: 1fr; }
  .phero-photo { order: -1; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .sticky-side { position: static; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); gap: 30px 20px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px){
  .section { padding: 52px 0; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 28px 18px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .est-card { padding: 24px 18px; }
  .est-result { flex-direction: column; align-items: stretch; text-align:left; }
  .est-result .disc { text-align:left; max-width:none; }
  .cta-split { padding: 32px 24px; }
  .hero { padding-top: 40px; }
  .hero-mascot { width: 50%; left: -4%; }
  .mcta { display:flex; }
  .nav-right .btn { display:none; }
  body { padding-bottom: 66px; }
  .video-wrap { height: 380px; }
  footer { padding: 52px 0 84px; }
  .hero-badge.b1 { top: 6px; right: 0; padding: 9px 12px; }
  .hero-badge.b2 { bottom: 40px; right: 0; padding: 9px 12px; }
  .hero-badge span { display:none; }
}
