/* ============================================================
   Summit Pressure Washing — v2 (Fable 5 remake)
   ============================================================ */

:root {
  --ink-950: #0a1628;
  --ink-900: #0e1d33;
  --ink-800: #14263f;
  --ink-700: #1c3252;
  --blue-600: #1769e0;
  --blue-500: #2b86f5;
  --cyan-400: #2fd4f0;
  --cyan-300: #7ce6f6;
  --text: #15243a;
  --slate: #4d6079;
  --muted: #74859b;
  --line: #e3eaf3;
  --soft: #f4f8fc;
  --soft-2: #e9f2fb;
  --white: #ffffff;
  --accent-grad: linear-gradient(120deg, var(--blue-600), var(--cyan-400));
  --shadow-1: 0 1px 3px rgba(10, 22, 40, .06), 0 6px 18px rgba(10, 22, 40, .06);
  --shadow-2: 0 10px 34px rgba(10, 22, 40, .12);
  --shadow-3: 0 30px 70px rgba(10, 22, 40, .25);
  --r-lg: 22px;
  --r-md: 14px;
  --r-sm: 10px;
  --maxw: 1180px;
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -.01em; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }

/* ============ Buttons ============ */
.btn {
  --h: 50px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: var(--h); padding: 0 26px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  border-radius: var(--r-md); border: 0; cursor: pointer;
  transition: transform .16s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--sm { --h: 42px; padding: 0 20px; font-size: 14px; }
.btn--lg { --h: 58px; padding: 0 34px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary { background: var(--accent-grad); color: #fff; box-shadow: 0 8px 24px rgba(23, 105, 224, .35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(23, 105, 224, .45); }

.btn--dark { background: var(--ink-950); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }

.btn--outline { background: #fff; color: var(--ink-900); border: 1.5px solid var(--line); }
.btn--outline:hover { border-color: var(--blue-500); color: var(--blue-600); transform: translateY(-2px); }

.btn--glass {
  background: rgba(255, 255, 255, .10); color: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn--glass:hover { background: rgba(255, 255, 255, .2); transform: translateY(-2px); }

.btn--white { background: #fff; color: var(--blue-600); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }

/* ============ Header ============ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.header.is-scrolled { border-color: var(--line); box-shadow: 0 4px 24px rgba(10, 22, 40, .07); }
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 20px; }

.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo__mark { width: 36px; height: 36px; color: var(--blue-600); flex: none; }
.logo__text { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--ink-950); display: flex; flex-direction: column; line-height: 1; }
.logo__text em { font-style: normal; font-size: 10.5px; font-weight: 600; letter-spacing: 2.4px; text-transform: uppercase; color: var(--blue-600); margin-top: 4px; }
.logo--light .logo__text { color: #fff; }
.logo--light .logo__mark { color: var(--cyan-300); }
.logo--light .logo__text em { color: var(--cyan-300); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav__link { font-weight: 600; font-size: 15px; color: var(--slate); transition: color .15s ease; }
.nav__link:hover { color: var(--ink-950); }
.nav__cta { margin-left: 4px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink-900); border-radius: 2px; transition: .25s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============ Hero ============ */
.hero { position: relative; overflow: hidden; background: var(--ink-950); color: #fff; }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(800px 460px at 88% 0%, rgba(47, 212, 240, .20), transparent 60%),
    linear-gradient(105deg, rgba(10, 22, 40, .95) 8%, rgba(10, 22, 40, .78) 46%, rgba(10, 22, 40, .42) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.12fr .88fr; gap: 60px; align-items: center;
  padding-top: 96px; padding-bottom: 110px;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 700; letter-spacing: .04em;
  color: #cfe3f8; background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 26px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.hero__stars { color: #ffc94d; letter-spacing: 2px; }
.hero h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 800; color: #fff; letter-spacing: -.02em; }
.hero__accent {
  background: linear-gradient(110deg, var(--cyan-300), #c2f2fa);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead { margin-top: 24px; font-size: 18.5px; color: #c7d7eb; max-width: 530px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero__chips li {
  font-size: 13.5px; font-weight: 700; color: #dcebfb;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14);
  padding: 7px 15px; border-radius: 999px;
}
.hero__chips li::before { content: "✓"; color: var(--cyan-300); margin-right: 8px; }

/* Hero glass card */
.hero__card {
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--r-lg);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-3);
  overflow: hidden;
}
.hero__card-head { padding: 24px 28px 0; display: grid; gap: 3px; }
.hero__card-head strong { font-family: var(--font-head); font-size: 19px; color: #fff; }
.hero__card-head span { font-size: 13.5px; color: #a9c2dd; }
.mini-form { padding: 20px 28px 28px; display: grid; gap: 14px; }
.mini-form label { display: grid; gap: 7px; font-size: 12.5px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: #b7cce4; }
.mini-form input, .mini-form select {
  font: inherit; font-size: 15px; color: #fff;
  padding: 13px 15px; border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .20);
  transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.mini-form input::placeholder { color: rgba(255, 255, 255, .45); }
.mini-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; }
.mini-form select option { color: var(--text); background: #fff; }
.mini-form input:focus, .mini-form select:focus {
  outline: none; border-color: var(--cyan-400);
  background: rgba(255, 255, 255, .16);
  box-shadow: 0 0 0 4px rgba(47, 212, 240, .22);
}
.mini-form__note { font-size: 12.5px; color: #9fb8d3; text-align: center; }

input.invalid, select.invalid, textarea.invalid {
  border-color: #ff7a9c !important;
  box-shadow: 0 0 0 4px rgba(255, 122, 156, .18) !important;
}

/* ============ Ticker ============ */
.ticker { background: var(--ink-950); border-top: 1px solid rgba(255,255,255,.07); overflow: hidden; padding: 14px 0; }
.ticker__track {
  display: flex; align-items: center; gap: 34px; width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker__track span { font-family: var(--font-head); font-weight: 600; font-size: 14px; letter-spacing: .14em; text-transform: uppercase; color: #8fa9c8; }
.ticker__track i { font-style: normal; color: var(--cyan-400); font-size: 11px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============ Stats ============ */
.stats { border-bottom: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-top: 46px; padding-bottom: 46px; }
.stat { text-align: center; }
.stat__num { display: block; font-family: var(--font-head); font-size: clamp(32px, 4vw, 46px); font-weight: 800; color: var(--ink-950); }
.stat__label { color: var(--muted); font-weight: 600; font-size: 14px; }

/* ============ Sections ============ */
.section { padding: 100px 0; }
.section--soft { background: var(--soft); }
.section--dark { background: var(--ink-950); color: #fff; }

.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: 13px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--blue-600); margin-bottom: 16px;
}
.section--dark .eyebrow { color: var(--cyan-400); }

.section__head { max-width: 700px; margin: 0 auto 58px; text-align: center; }
.section__head--left { text-align: left; margin: 0 0 36px; }
.section__head h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 800; color: var(--ink-950); }
.section--dark .section__head h2 { color: #fff; }
.section__head p { margin-top: 16px; color: var(--slate); font-size: 17px; }
.section--dark .section__head p { color: #aac0da; }
.section__head a { color: var(--blue-600); font-weight: 700; }

/* ============ Services ============ */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 28px; box-shadow: var(--shadow-1);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service::after {
  content: ""; position: absolute; left: 28px; right: 28px; top: 0; height: 3px;
  background: var(--accent-grad); border-radius: 0 0 4px 4px;
  opacity: 0; transition: opacity .22s ease;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); border-color: #cfe0f5; }
.service:hover::after { opacity: 1; }
.service__icon {
  width: 56px; height: 56px; border-radius: var(--r-md); display: grid; place-items: center;
  background: var(--soft-2); margin-bottom: 20px;
}
.service__icon svg { width: 28px; height: 28px; color: var(--blue-600); }
.service h3 { font-size: 19px; font-weight: 700; margin-bottom: 9px; color: var(--ink-950); }
.service p { color: var(--slate); font-size: 15px; }
.service__price {
  display: inline-block; margin-top: 18px;
  font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--blue-600);
  background: var(--soft-2); padding: 6px 14px; border-radius: 999px;
}

.bundle {
  margin-top: 44px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px;
  background: var(--soft); border: 1px dashed #b9d3f2; border-radius: var(--r-lg);
  padding: 26px 30px; text-align: center;
}
.bundle p { font-size: 17px; }

/* ============ Before / after ============ */
.results__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ba {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-2); user-select: none; cursor: ew-resize; touch-action: none;
}
.ba__img { position: absolute; inset: 0; background-size: cover; }
.ba__img[data-before] { clip-path: inset(0 50% 0 0); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff;
  transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(0, 0, 0, .14); z-index: 2;
}
.ba__handle span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--blue-600);
  display: grid; place-items: center; font-weight: 800; letter-spacing: -1px; box-shadow: var(--shadow-2);
}
.ba__tag {
  position: absolute; top: 14px; z-index: 2; font-size: 11px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 999px; color: #fff;
}
.ba__tag--before { left: 14px; background: rgba(10, 22, 40, .82); }
.ba__tag--after { right: 14px; background: var(--blue-600); }
.ba figcaption {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 30px 18px 14px; font-size: 13.5px; font-weight: 700; color: #fff;
  background: linear-gradient(transparent, rgba(10, 22, 40, .88));
}

/* Photo surfaces */
.ba__img { background-position: center; }
.ba-driveway { background-image: url("/summit-pressure-washing/img/driveway-after.webp"); }
.ba-driveway.ba--dirty { background-image: url("/summit-pressure-washing/img/driveway-before.webp"); }
.ba-siding { background-image: url("/summit-pressure-washing/img/siding-after.webp"); }
.ba-siding.ba--dirty { background-image: url("/summit-pressure-washing/img/siding-before.webp"); }
.ba-deck { background-image: url("/summit-pressure-washing/img/deck-after.webp"); }
.ba-deck.ba--dirty { background-image: url("/summit-pressure-washing/img/deck-before.webp"); }

/* ============ Process ============ */
.section--dark .steps { counter-reset: step; }
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  position: relative; border-radius: var(--r-lg); padding: 32px 26px;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .10);
  transition: background-color .22s ease, transform .22s ease;
}
.step:hover { background: rgba(255, 255, 255, .09); transform: translateY(-4px); }
.step__num {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: var(--r-md);
  background: var(--accent-grad); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 19px; margin-bottom: 18px;
}
.step h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 9px; }
.step p { color: #a8bed9; font-size: 14.5px; }
.process__cta { text-align: center; margin-top: 48px; }

/* ============ Pricing ============ */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-lg);
  padding: 36px 30px; box-shadow: var(--shadow-1);
  transition: transform .22s ease, box-shadow .22s ease;
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.plan--featured { border-color: var(--blue-500); box-shadow: var(--shadow-2); }
.plan__badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--accent-grad); color: #fff;
  font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: .06em;
  padding: 7px 18px; border-radius: 999px; box-shadow: 0 6px 18px rgba(23, 105, 224, .35);
}
.plan h3 { font-size: 22px; font-weight: 800; color: var(--ink-950); }
.plan__desc { color: var(--muted); font-size: 14.5px; margin-top: 6px; }
.plan__price { font-family: var(--font-head); font-size: 48px; font-weight: 800; color: var(--ink-950); margin: 22px 0 4px; }
.plan__price span { font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--muted); margin-left: 8px; }
.plan ul { list-style: none; display: grid; gap: 12px; margin: 20px 0 28px; flex: 1; }
.plan li { position: relative; padding-left: 30px; font-size: 15px; color: var(--slate); }
.plan li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 19px; height: 19px; border-radius: 50%;
  background: var(--soft-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%231769e0' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/13px no-repeat;
}
.plans__foot { text-align: center; margin-top: 34px; color: var(--slate); }
.plans__foot a { color: var(--blue-600); font-weight: 700; }

/* ============ Why ============ */
.why__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.why__content h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--ink-950); }
.why__content > p { color: var(--slate); font-size: 17px; margin: 18px 0 28px; }
.why__list { list-style: none; display: grid; gap: 22px; margin-bottom: 32px; }
.why__list li { display: flex; gap: 16px; }
.why__list svg { flex: none; width: 26px; height: 26px; color: var(--blue-600); margin-top: 2px; }
.why__list strong { display: block; font-family: var(--font-head); font-size: 16px; color: var(--ink-950); }
.why__list span { color: var(--slate); font-size: 14.5px; }

.why__panel { display: grid; gap: 22px; }
.why__rating, .why__guarantee {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-1); padding: 34px; text-align: center;
}
.why__rating-num { display: block; font-family: var(--font-head); font-size: 60px; font-weight: 800; color: var(--ink-950); line-height: 1; }
.why__rating-stars { display: block; color: #ffb020; font-size: 26px; letter-spacing: 5px; margin: 10px 0; }
.why__rating-label { color: var(--slate); font-size: 14px; }
.why__guarantee svg { width: 56px; height: 56px; color: var(--blue-600); margin: 0 auto 14px; }
.why__guarantee strong { display: block; font-family: var(--font-head); font-size: 20px; color: var(--ink-950); }
.why__guarantee p { color: var(--slate); margin-top: 5px; }

/* ============ Reviews ============ */
.reviews__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--shadow-1);
  transition: transform .22s ease, box-shadow .22s ease;
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.review__stars { color: #ffb020; font-size: 17px; letter-spacing: 3px; margin-bottom: 14px; }
.review blockquote { font-size: 16.5px; color: var(--text); line-height: 1.65; }
.review figcaption { display: flex; align-items: center; gap: 13px; margin-top: 22px; }
.review__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: var(--accent-grad); color: #fff;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700;
}
.review figcaption strong { display: block; font-family: var(--font-head); font-size: 15px; color: var(--ink-950); }
.review figcaption em { font-style: normal; color: var(--muted); font-size: 13.5px; }

/* ============ CTA banner ============ */
.cta { background: var(--accent-grad); color: #fff; }
.cta__inner { text-align: center; padding-top: 78px; padding-bottom: 78px; }
.cta h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: #fff; }
.cta p { color: #e4f2ff; font-size: 17.5px; margin: 14px 0 30px; }

/* ============ FAQ ============ */
.faq__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 52px; align-items: start; }
.accordion { display: grid; gap: 14px; }
.acc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 4px 24px; box-shadow: var(--shadow-1); transition: border-color .2s ease;
}
.acc[open] { border-color: #c8ddf6; }
.acc summary {
  list-style: none; cursor: pointer; padding: 18px 0;
  font-family: var(--font-head); font-weight: 600; font-size: 16.5px; color: var(--ink-950);
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; font-size: 26px; font-weight: 300; color: var(--blue-600); transition: transform .2s ease; flex: none; }
.acc[open] summary::after { transform: rotate(45deg); }
.acc p { color: var(--slate); padding: 0 0 20px; font-size: 15.5px; }
.acc em { color: var(--blue-600); font-style: normal; font-weight: 700; }

/* ============ Quote ============ */
.quote__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.quote__info h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; color: var(--ink-950); }
.quote__info > p { color: var(--slate); font-size: 17px; margin: 16px 0 26px; }
.quote__points { list-style: none; display: grid; gap: 14px; }
.quote__points li { position: relative; padding-left: 32px; font-weight: 600; color: var(--text); }
.quote__points li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 21px; height: 21px; border-radius: 50%;
  background: var(--soft-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%231769e0' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
}

.quote__form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 36px; box-shadow: var(--shadow-2); display: grid; gap: 16px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; font-size: 13px; font-weight: 700; color: var(--slate); }
.quote__form input, .quote__form select, .quote__form textarea {
  font: inherit; font-size: 15px; color: var(--text);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: #fbfdff; transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
  width: 100%;
}
.quote__form input:focus, .quote__form select:focus, .quote__form textarea:focus {
  outline: none; border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(43, 134, 245, .14); background: #fff;
}
.quote__note { font-size: 12.5px; color: var(--muted); text-align: center; }
.form-success[hidden] { display: none; }
.form-success {
  display: flex; gap: 14px; align-items: center;
  background: #e9f8ee; border: 1px solid #b9e6c8; border-radius: var(--r-sm); padding: 16px 18px;
}
.form-success svg { flex: none; width: 30px; height: 30px; color: #fff; background: #28a865; border-radius: 50%; padding: 5px; }
.form-success strong { display: block; color: #15663b; }
.form-success span { color: #2c7a4f; font-size: 14px; }

/* ============ Footer ============ */
.footer { background: var(--ink-950); color: #bfd2e8; padding-top: 70px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 38px; padding-bottom: 52px; }
.footer__brand p { margin: 18px 0; font-size: 15px; max-width: 320px; color: #9fb6d2; }
.footer__rating { color: #ffc94d; font-weight: 700; }
.footer__rating span { color: #8aa3c2; font-weight: 500; font-size: 14px; margin-left: 6px; }
.footer__col h4 { font-family: var(--font-head); color: #fff; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.footer__col a, .footer__col span { display: block; color: #9fb6d2; font-size: 14.5px; margin-bottom: 11px; transition: color .15s ease; }
.footer__col a:hover { color: #fff; }
.footer__col--contact a { font-weight: 700; color: #d9e6f5; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .09); padding: 22px 0; }
.footer__bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: 13px; color: #7e97b8; }

/* ============ Sticky mobile CTA ============ */
.sticky-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 110;
  display: none; align-items: center; justify-content: center;
  background: var(--accent-grad); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  min-height: 54px; border-radius: var(--r-md); box-shadow: var(--shadow-3);
}

/* ============ Reveal ============ */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker__track { animation: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ============ Responsive ============ */
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; padding-top: 64px; padding-bottom: 72px; }
  .hero__card { max-width: 560px; }
  .services__grid, .results__grid, .steps, .plans, .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .why__inner, .faq__inner, .quote__inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 880px) {
  .nav {
    position: fixed; inset: 74px 0 auto 0; z-index: 99;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; padding: 10px 26px 26px;
    box-shadow: var(--shadow-2); border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform .3s ease;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__link { padding: 15px 0; border-bottom: 1px solid var(--line); }
  .nav__cta { margin: 16px 0 0; }
  .nav-toggle { display: flex; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 78px; }
}
@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 30px 14px; }
  .services__grid, .results__grid, .steps, .plans, .reviews__grid, .footer__inner { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(36px, 10vw, 48px); }
  .footer__bottom-inner { flex-direction: column; }
}
