/* ============================================================
   Honest Water Co. of Lubbock — design-forward build
   Brand: ink #17171A · navy #192A82 · navy-deep #0E1A55 · sky #8ADFFE
   Type:  Outfit (display, expressive) / Inter (body)
   Purpose: lead-gen sales funnel — convert hot leads.
   ============================================================ */

:root {
  --ink: #17171a;
  --ink-soft: #3a3f4c;
  --navy: #192a82;
  --navy-deep: #0e1a55;
  --navy-abyss: #081235;
  --navy-ghost: #eef1fb;
  --sky: #8adffe;
  --sky-bright: #b6ecff;
  --sky-soft: #e8f7ff;
  --sky-line: #cfe9f5;
  --paper: #ffffff;
  --mist: #f3f6fb;
  --line: #e3e8f1;
  --muted: #5a6580;
  --gold: #f2b705;

  --maxw: 1200px;
  --radius: 16px;
  --radius-sm: 11px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(20, 28, 60, 0.05), 0 10px 24px -16px rgba(20, 28, 60, 0.2);
  --shadow-lg: 0 40px 90px -40px rgba(14, 26, 85, 0.45);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --f-display: "Outfit", "Trebuchet MS", system-ui, sans-serif;
  --f-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 0.4em;
  color: var(--ink);
  text-wrap: balance;
}
p { margin: 0 0 1rem; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
@media (max-width: 560px) { .wrap { padding: 0 18px; } }

section { padding: 104px 0; position: relative; }
:where(section, [id]) { scroll-margin-top: 92px; }
@media (max-width: 900px) { section { padding: 76px 0; } }
@media (max-width: 560px) { section { padding: 60px 0; } }

.section-mist { background: var(--mist); }
.section-ink { background: var(--ink); color: #fff; }
.section-navy {
  background: radial-gradient(120% 120% at 15% 0%, var(--navy) 0%, var(--navy-deep) 55%, var(--navy-abyss) 100%);
  color: #fff;
}
.section-navy h2, .section-navy h3, .section-ink h2, .section-ink h3 { color: #fff; }

/* ---------- eyebrow / section head (funnel storytelling) ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 22px;
}
.eyebrow .step-tag {
  font-variant-numeric: tabular-nums;
  border: 1.5px solid currentColor;
  border-radius: var(--radius-pill);
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
}
.section-navy .eyebrow, .section-ink .eyebrow { color: var(--sky); }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 0.2em; }

h2 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); font-weight: 800; }
h3 { font-size: 1.24rem; }
.lead { font-size: 1.16rem; color: var(--muted); line-height: 1.55; }
.section-navy .lead, .section-ink .lead { color: rgba(255, 255, 255, 0.82); }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--navy);
  --btn-fg: #fff;
  --btn-bd: transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--btn-bd);
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background-color 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; }
.btn-primary { --btn-bg: var(--navy); --btn-fg: #fff; }
.btn-primary:hover { --btn-bg: var(--navy-deep); }
.btn-sky { --btn-bg: var(--sky); --btn-fg: var(--navy-deep); }
.btn-sky:hover { --btn-bg: var(--sky-bright); }
.btn-ghost { --btn-bg: transparent; --btn-fg: var(--navy); --btn-bd: var(--line); }
.btn-ghost:hover { --btn-bd: var(--navy); --btn-bg: var(--sky-soft); }
.btn-ghost-light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,0.35); }
.btn-ghost-light:hover { --btn-bd: #fff; --btn-bg: rgba(255,255,255,0.08); }
.btn-lg { padding: 18px 32px; font-size: 1.08rem; }
.btn-block { width: 100%; justify-content: center; }

:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; border-radius: 4px; }
.section-navy :focus-visible, .section-ink :focus-visible, .hero :focus-visible { outline-color: var(--sky); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
  .btn:hover { transform: none; }
}

/* ---------- scroll progress ---------- */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--sky), var(--navy));
  z-index: 80;
}

/* ---------- utility bar ---------- */
.utility { background: var(--navy-abyss); color: rgba(255, 255, 255, 0.68); font-size: 0.82rem; }
.utility .wrap { display: flex; justify-content: space-between; align-items: center; gap: 24px; min-height: 46px; }
.utility p, .utility a { margin: 0; display: inline-flex; align-items: center; gap: 8px; line-height: 1; }
.utility svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.75; }
.util-area { letter-spacing: 0.03em; }
.util-phone { color: #fff; font-family: var(--f-display); font-weight: 600; letter-spacing: 0.02em; font-size: 0.86rem; }
.util-phone:hover { color: var(--sky); text-decoration: none; }
@media (max-width: 640px) {
  .utility .wrap { justify-content: center; }
  .util-area { display: none; }
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 70;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px -22px rgba(14, 26, 85, 0.4); }
.site-header:not(.over-hero) { border-bottom-color: var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 44px; width: auto; }
.brand .logo-light { display: none; }

/* transparent over the dark hero, solid once scrolled */
.site-header.over-hero:not(.scrolled) {
  background: transparent;
  backdrop-filter: none;
}
.site-header.over-hero:not(.scrolled) .logo-dark { display: none; }
.site-header.over-hero:not(.scrolled) .logo-light { display: block; }
.site-header.over-hero:not(.scrolled) .nav a:not(.btn) { color: #fff; }
.site-header.over-hero:not(.scrolled) .nav-toggle { border-color: rgba(255, 255, 255, 0.4); color: #fff; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a:not(.btn) {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
}
.nav a.btn { padding: 13px 22px; font-size: 0.95rem; }
.nav a:not(.btn):hover { color: var(--navy); text-decoration: none; }
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--navy); transition: right 0.25s var(--ease);
}
.nav a:not(.btn):hover::after { right: 0; }

.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; padding: 9px; cursor: pointer; }
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 1000px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(340px, 84vw);
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; padding: 96px 26px 40px;
    box-shadow: -30px 0 60px -30px rgba(0, 0, 0, 0.35);
    transform: translateX(100%); visibility: hidden;
    transition: transform 0.3s var(--ease), visibility 0.3s;
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); visibility: visible; }
  .nav a:not(.btn) { font-size: 1.06rem; padding: 15px 0; border-bottom: 1px solid var(--line); }
  .nav a:not(.btn)::after { display: none; }
  .nav .btn { margin-top: 20px; justify-content: center; }
  body.nav-open { overflow: hidden; }
}
.nav-scrim { position: fixed; inset: 0; background: rgba(8, 18, 53, 0.5); z-index: 60; opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease); }
.nav-scrim.show { opacity: 1; pointer-events: auto; }

/* ---------- HERO (dark, outcome-led) ---------- */
.hero {
  position: relative;
  color: #fff;
  background: radial-gradient(130% 110% at 12% -10%, var(--navy) 0%, var(--navy-deep) 50%, var(--navy-abyss) 100%);
  margin-top: calc(-1 * var(--header-h));
  padding: calc(96px + var(--header-h)) 0 108px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before { /* caustic glow */
  content: ""; position: absolute; z-index: -2;
  top: -30%; right: -10%; width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(138, 223, 254, 0.28), transparent 62%);
  filter: blur(20px);
}
.hero::after { /* grain */
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0.5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero .wrap { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 48px; align-items: center; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-weight: 600;
  font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 26px;
}
.hero-eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--sky); }

.hero h1 {
  font-size: clamp(2.7rem, 7vw, 4.9rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  color: #fff;
  margin-bottom: 24px;
}
.hero h1 .out { color: transparent; -webkit-text-stroke: 1.6px var(--sky); }
.hero h1 .sky { color: var(--sky); }
.hero h1 .word { display: inline-block; }

.hero p.lead { font-size: 1.2rem; color: rgba(255, 255, 255, 0.82); max-width: 36ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-assure {
  margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px 20px;
  font-family: var(--f-display); font-weight: 500; font-size: 0.9rem; color: rgba(255,255,255,0.7);
}
.hero-assure span { display: inline-flex; align-items: center; gap: 7px; }
.hero-assure svg { width: 15px; height: 15px; color: var(--sky); }

/* water glass graphic */
.hero-art { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-art svg.glass { width: min(420px, 82%); height: auto; filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.45)); }
.hero-art .bubble { transform-box: fill-box; transform-origin: center; animation: rise var(--dur, 5s) ease-in infinite; animation-delay: var(--delay, 0s); opacity: 0; }
@keyframes rise {
  0% { transform: translateY(0) scale(0.6); opacity: 0; }
  12% { opacity: 0.9; }
  70% { opacity: 0.7; }
  100% { transform: translateY(-150px) scale(1.05); opacity: 0; }
}
.hero-art .surface { animation: sway 6s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes sway { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-3px) } }
.hero-art .drip { animation: drip 4.5s ease-in infinite; transform-box: fill-box; }
@keyframes drip {
  0%, 55% { transform: translateY(0); opacity: 0; }
  60% { opacity: 1; }
  92% { transform: translateY(120px); opacity: 1; }
  100% { transform: translateY(120px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-art .bubble { opacity: 0.5; animation: none; }
  .hero-art .drip { opacity: 0; }
}

@media (max-width: 940px) {
  .hero { padding: calc(32px + var(--header-h)) 0 84px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 30px; }
  .hero p.lead { max-width: 48ch; }
  .hero-art { order: -1; }
  .hero-art svg.glass { width: min(260px, 60%); }
  .hero-eyebrow { letter-spacing: 0.14em; }
}

/* ---------- guarantee strip ---------- */
.guarantee {
  background: var(--ink); color: #fff;
  border-top: 3px solid var(--sky);
}
.guarantee .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; padding: 20px 24px; }
.guarantee-item { display: flex; align-items: center; gap: 10px; font-family: var(--f-display); font-weight: 600; font-size: 0.94rem; }
.guarantee-item svg { width: 19px; height: 19px; color: var(--sky); flex-shrink: 0; }

/* ---------- WHY: rich graphic cards ---------- */
.why-head { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; margin-bottom: 54px; }
@media (max-width: 760px) { .why-head { grid-template-columns: 1fr; } }
.why-head .kicker {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(3rem, 9vw, 5.5rem); line-height: 0.8;
  color: var(--navy-ghost); letter-spacing: -0.04em;
}

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 940px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.why-card:hover { transform: translateY(-4px); border-color: var(--sky); box-shadow: var(--shadow-lg); }
.why-art {
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--sky-soft), #fff);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.why-art svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.why-card .why-body { padding: 20px 22px 26px; }
.why-kicker {
  display: block;
  font-family: var(--f-display); font-weight: 700; font-size: 0.68rem;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 8px;
}
.why-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.why-card p { color: var(--muted); font-size: 0.93rem; margin: 0; }
.why-foot {
  margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  padding: 22px 26px; background: var(--navy-ghost); border-radius: var(--radius);
}
.why-foot p { margin: 0; font-family: var(--f-display); font-weight: 500; }
.why-foot .btn { margin-left: auto; }
@media (max-width: 620px) { .why-foot .btn { margin-left: 0; } }

/* ---------- Lubbock water report (resource) ---------- */
.report {
  display: grid;
  grid-template-columns: 320px 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 880px) { .report { grid-template-columns: 1fr; } }

.report-stat {
  background: linear-gradient(170deg, var(--sky-soft), #fff);
  border-right: 1px solid var(--line);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 880px) { .report-stat { border-right: 0; border-bottom: 1px solid var(--line); } }
.report-stat .eyebrow { color: var(--navy); margin-bottom: 10px; }
.report-num {
  font-family: var(--f-display); font-weight: 800;
  font-size: 4.8rem; line-height: 0.9; color: var(--navy);
  margin: 4px 0 12px;
}
.report-stat p { color: var(--ink-soft); font-size: 0.98rem; margin: 0; }
.report-meta { color: var(--muted) !important; font-size: 0.8rem !important; margin-top: 14px !important; line-height: 1.5; }

.report-body { padding: 40px; }
@media (max-width: 560px) { .report-body { padding: 28px 24px; } }
.report-body .eyebrow { margin-bottom: 14px; }
.report-body h2 { font-size: clamp(1.7rem, 3.6vw, 2.3rem); margin-bottom: 14px; }
.report-body > p { color: var(--muted); font-size: 0.98rem; }

.report-chips { list-style: none; padding: 0; margin: 22px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 520px) { .report-chips { grid-template-columns: 1fr; } }
.report-chips li {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  background: var(--mist); border: 1px solid var(--line);
  border-radius: 10px; padding: 11px 14px; font-size: 0.86rem;
}
.report-chips b { font-family: var(--f-display); font-weight: 700; color: var(--navy); white-space: nowrap; font-size: 0.84rem; }

.report-callout {
  display: flex; gap: 11px; align-items: flex-start;
  background: var(--sky-soft); border: 1px solid var(--sky-line);
  border-radius: 12px; padding: 15px 17px;
  font-size: 0.92rem; color: var(--navy-deep); margin: 0 0 20px;
}
.report-callout svg { width: 18px; height: 18px; color: var(--navy); flex-shrink: 0; margin-top: 2px; }

.report-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.report-fine { font-size: 0.77rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* ---------- benefits (navy) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.benefits { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.benefits li { display: flex; gap: 13px; align-items: flex-start; font-size: 1.04rem; }
.benefits svg { width: 22px; height: 22px; color: var(--sky); flex-shrink: 0; margin-top: 3px; }

/* ---------- systems ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 940px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3 { grid-template-columns: 1fr; } }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1000px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }

/* ---------- featured package ---------- */
.package {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 900px) { .package { grid-template-columns: 1fr; } }

.package-media {
  position: relative;
  background: radial-gradient(130% 110% at 30% 12%, var(--navy), var(--navy-deep) 55%, var(--navy-abyss));
  padding: 34px 34px 0;
  overflow: hidden;
  display: grid;
  place-items: end center;
  min-height: 400px;
}
.package-media::before {
  content: "";
  position: absolute;
  inset: -12%;
  background: repeating-radial-gradient(circle at 48% 40%, transparent 0 40px, rgba(138, 223, 254, 0.055) 40px 42px);
  pointer-events: none;
}
.package-photo {
  position: relative;
  width: auto;
  max-width: 100%;
  max-height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.45));
}
@media (max-width: 900px) {
  .package-media { min-height: 320px; padding: 26px 26px 0; place-items: center; }
  .package-photo { max-height: 300px; }
}

.badge-best {
  position: absolute; top: 20px; left: 20px;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--gold); color: #241a00;
  font-family: var(--f-display); font-weight: 800;
  font-size: 0.74rem; letter-spacing: 0.13em; text-transform: uppercase;
  padding: 8px 15px; border-radius: var(--radius-pill);
  box-shadow: 0 10px 24px -10px rgba(242, 183, 5, 0.6);
}
.badge-best svg { width: 14px; height: 14px; }

.package-body { padding: 44px; }
@media (max-width: 560px) { .package-body { padding: 30px 24px; } }
.package-body .system-tag { margin-bottom: 14px; }
.package-body h3 { font-size: 1.7rem; margin-bottom: 6px; }
.package-lead { color: var(--muted); font-size: 1rem; }

.package-includes { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 12px; }
.package-includes li { display: flex; gap: 13px; align-items: flex-start; }
.package-includes .pi-ic { width: 40px; height: 40px; border-radius: 11px; background: var(--sky-soft); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.package-includes .pi-ic svg { width: 20px; height: 20px; color: var(--navy); }
.package-includes strong { display: block; font-family: var(--f-display); font-size: 0.98rem; }
.package-includes span { font-size: 0.88rem; color: var(--muted); }

.price-block {
  background: var(--sky-soft);
  border: 1px solid var(--sky-line);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 22px 0;
}
.price-row { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 14px; }
.price-was { font-size: 0.95rem; color: var(--muted); }
.price-was s { color: var(--ink); font-weight: 600; font-size: 1.15rem; text-decoration-thickness: 2px; }
.price-save {
  font-family: var(--f-display); font-weight: 800;
  font-size: 0.9rem; letter-spacing: 0.02em;
  color: #241a00; background: var(--gold);
  padding: 5px 12px; border-radius: var(--radius-pill);
}
.price-fin { display: flex; align-items: center; gap: 9px; margin: 14px 0 6px; font-family: var(--f-display); font-weight: 600; font-size: 0.95rem; color: var(--navy-deep); }
.price-fin svg { width: 18px; height: 18px; color: var(--navy); flex-shrink: 0; }
.price-note { font-size: 0.85rem; color: var(--muted); margin: 0; }
.price-fine {
  font-size: 0.74rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--sky-line);
}
.price-fine a { color: var(--muted); text-decoration: underline; }
.price-fine a:hover { color: var(--navy); }

.package-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.package-feat { list-style: none; padding: 18px 0 0; margin: 18px 0 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
@media (max-width: 560px) { .package-feat { grid-template-columns: 1fr; } }
.package-feat li { display: flex; gap: 8px; align-items: flex-start; font-size: 0.84rem; color: var(--ink-soft); }
.package-feat svg { width: 15px; height: 15px; color: var(--navy); flex-shrink: 0; margin-top: 3px; }

.also-head { margin: 64px 0 24px; }
.also-head h3 { font-size: 1.15rem; margin: 0; }
.also-head p { margin: 4px 0 0; color: var(--muted); font-size: 0.95rem; }

.mini-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; height: 100%; transition: border-color 0.2s var(--ease), transform 0.2s var(--ease); }
.mini-card:hover { border-color: var(--sky); transform: translateY(-3px); }
.mini-card .icon-badge { width: 42px; height: 42px; margin-bottom: 14px; }
.mini-card .icon-badge svg { width: 21px; height: 21px; }
.mini-card h4 { font-family: var(--f-display); font-size: 1.02rem; margin: 0 0 3px; }
.mini-card .for { font-size: 0.78rem; font-family: var(--f-display); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy); margin-bottom: 10px; }
.mini-card p { font-size: 0.88rem; color: var(--muted); margin: 0 0 16px; }
.mini-card .qlink { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-family: var(--f-display); font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.mini-card .qlink svg { width: 15px; height: 15px; transition: transform 0.2s var(--ease); }
.mini-card:hover .qlink svg { transform: translateX(3px); }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.card:hover { transform: translateY(-4px); border-color: var(--sky); box-shadow: var(--shadow-lg); }
.icon-badge { width: 50px; height: 50px; border-radius: 13px; background: var(--sky-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.icon-badge svg { width: 25px; height: 25px; color: var(--navy); }

.system-card { display: flex; flex-direction: column; height: 100%; }
.system-card h3 { margin-bottom: 8px; }
.system-card > p { color: var(--muted); font-size: 0.96rem; }
.system-card .feat { list-style: none; padding: 16px 0 0; margin: 14px 0 22px; border-top: 1px solid var(--line); display: grid; gap: 9px; }
.system-card .feat li { display: flex; gap: 9px; align-items: flex-start; font-size: 0.88rem; }
.system-card .feat svg { width: 16px; height: 16px; color: var(--navy); flex-shrink: 0; margin-top: 3px; }
.system-card .btn { margin-top: auto; align-self: flex-start; }
.system-tag { font-family: var(--f-display); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); background: var(--navy-ghost); padding: 5px 11px; border-radius: var(--radius-pill); align-self: flex-start; margin-bottom: 15px; }
.quote-note { margin-top: 28px; padding: 18px 22px; background: var(--sky-soft); border: 1px solid var(--sky-line); border-radius: var(--radius-sm); font-size: 0.96rem; color: var(--navy-deep); display: flex; gap: 12px; align-items: flex-start; }
.quote-note svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--navy); margin-top: 2px; }

/* equipment band */
.equipment { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 720px) { .equipment { grid-template-columns: 1fr; } }
.equipment figure { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; text-align: center; }
.equipment img { height: 236px; width: auto; margin: 0 auto 16px; object-fit: contain; }
.equipment figcaption { font-family: var(--f-display); font-weight: 600; }
.equipment figcaption span { display: block; font-family: var(--f-body); font-weight: 400; font-size: 0.88rem; color: var(--muted); margin-top: 4px; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step-num { font-family: var(--f-display); font-weight: 800; font-size: 2.6rem; color: var(--sky); line-height: 1; margin-bottom: 12px; }
.step h3 { margin-bottom: 6px; }
.step p { color: rgba(255, 255, 255, 0.8); margin: 0; }

/* about */
.about-pledge { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 15px; }
.about-pledge li { display: flex; gap: 12px; align-items: flex-start; }
.about-pledge strong { display: block; font-family: var(--f-display); }
.about-pledge svg { width: 22px; height: 22px; color: var(--navy); flex-shrink: 0; margin-top: 2px; }
.about-card { background: radial-gradient(120% 120% at 0% 0%, var(--navy), var(--navy-deep)); color: #fff; border-radius: 22px; padding: 40px; }
.about-card h3 { color: #fff; }
.about-card .q { font-size: 1.18rem; font-family: var(--f-display); font-weight: 500; line-height: 1.42; }
.about-card .sig { margin-top: 18px; font-size: 0.9rem; color: var(--sky); }

/* warranty */
.warranty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 28px; }
@media (max-width: 800px) { .warranty-grid { grid-template-columns: 1fr; } }
.warranty-item { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.16); border-radius: var(--radius); padding: 26px; }
.warranty-item .term { font-family: var(--f-display); font-weight: 800; font-size: 1.7rem; color: var(--sky); }
.warranty-item p { color: rgba(255, 255, 255, 0.82); font-size: 0.92rem; margin: 6px 0 0; }
.cert-row { display: flex; flex-wrap: wrap; gap: 12px; }
.cert-chip { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; padding: 9px 15px; border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 600; font-family: var(--f-display); }
.cert-chip:hover { background: rgba(255, 255, 255, 0.2); text-decoration: none; }
.cert-chip svg { width: 15px; height: 15px; color: var(--sky); }

/* service area */
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 24px; }
.area-chips span { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 9px 17px; font-size: 0.9rem; font-family: var(--f-display); font-weight: 500; }
.area-note { display: flex; gap: 12px; align-items: center; background: var(--navy-ghost); border-radius: var(--radius-sm); padding: 17px 21px; font-size: 0.95rem; }
.area-note svg { width: 20px; height: 20px; color: var(--navy); flex-shrink: 0; }

/* FAQ */
.faq { max-width: 840px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: 0; list-style: none; text-align: left; padding: 24px 46px 24px 0; font-family: var(--f-display); font-weight: 600; font-size: 1.08rem; color: var(--ink); cursor: pointer; position: relative; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: ""; position: absolute; right: 6px; top: 28px; width: 12px; height: 12px; border-right: 2px solid var(--navy); border-bottom: 2px solid var(--navy); transform: rotate(45deg); transition: transform 0.2s var(--ease); }
.faq-item[open] .faq-q::after { transform: rotate(-135deg); }
.faq-a { padding: 0 20px 26px 0; color: var(--muted); }
.faq-a p { margin: 0; }

/* ---------- CONTACT / LEAD FORM ---------- */
.contact-head h2 { font-size: clamp(2.8rem, 9vw, 5.4rem); font-weight: 800; letter-spacing: -0.04em; line-height: 0.92; }
.contact-grid { display: grid; grid-template-columns: 310px 1fr; gap: 56px; margin-top: 48px; }
@media (max-width: 940px) { .contact-grid { grid-template-columns: 1fr; gap: 34px; } }
.contact-info dl { margin: 0; }
.contact-info dt { font-family: var(--f-display); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 24px; }
.contact-info dt:first-child { margin-top: 0; }
.contact-info dd { margin: 5px 0 0; font-size: 1.06rem; font-weight: 500; }
.contact-info dd a { color: var(--ink); }
.contact-info .big { font-family: var(--f-display); font-weight: 800; font-size: 1.5rem; }

.lead-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 560px) { .lead-form { padding: 22px; } }
.lead-form .field { margin-bottom: 18px; }
.lead-form label { display: block; font-family: var(--f-display); font-weight: 600; font-size: 0.86rem; margin-bottom: 7px; }
.lead-form .req { color: var(--navy); }
.lead-form input[type="text"], .lead-form input[type="tel"], .lead-form input[type="email"], .lead-form textarea, .lead-form select {
  width: 100%; padding: 14px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; color: var(--ink); background: #fff;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(25, 42, 130, 0.16); }
.lead-form textarea { min-height: 110px; resize: vertical; }
.lead-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .lead-form .field-row { grid-template-columns: 1fr; } }
.lead-form input[aria-invalid="true"], .lead-form select[aria-invalid="true"] { border-color: #d33; box-shadow: 0 0 0 3px rgba(221, 51, 51, 0.14); }
.err-msg { display: none; color: #c22; font-size: 0.82rem; margin-top: 5px; font-weight: 500; }
.err-msg.show { display: block; }
.hp { position: absolute !important; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.hp input { width: 1px !important; padding: 0 !important; border: 0 !important; }

fieldset { border: 0; padding: 0; margin: 0 0 18px; }
fieldset legend { font-family: var(--f-display); font-weight: 600; font-size: 0.86rem; margin-bottom: 10px; padding: 0; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
@media (max-width: 520px) { .check-grid { grid-template-columns: 1fr; } }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 0.93rem; cursor: pointer; }
.check input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--navy); flex-shrink: 0; }
.check em { font-style: normal; color: var(--navy); font-weight: 600; font-size: 0.82rem; }
.form-hint { font-size: 0.85rem; color: var(--muted); margin-top: 14px; }

/* TCPA consent block */
.consent {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin: 4px 0 18px;
}
.consent .check { align-items: flex-start; font-size: 0.8rem; line-height: 1.55; color: var(--muted); }
.consent .check input { margin-top: 4px; }
.consent .check:hover { color: var(--ink); }

.form-success {
  display: none;
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  color: #fff; border-radius: var(--radius); padding: 36px 32px; text-align: center;
}
.form-success.show { display: block; }
.form-success svg { width: 46px; height: 46px; color: var(--sky); margin: 0 auto 14px; }
.form-success h3 { color: #fff; margin-bottom: 8px; }
.form-success p { color: rgba(255, 255, 255, 0.85); margin: 0; }
.form-error-banner { display: none; background: #fdecec; border: 1px solid #f3c2c2; color: #a11; border-radius: var(--radius-sm); padding: 12px 15px; font-size: 0.9rem; margin-bottom: 16px; }
.form-error-banner.show { display: block; }

/* ---------- sticky mobile CTA ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 65;
  display: none;
  gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px -14px rgba(14, 26, 85, 0.25);
}
.mobile-cta .btn { flex: 1; padding: 14px 12px; font-size: 0.96rem; }
@media (max-width: 1000px) { .mobile-cta { display: flex; } body { padding-bottom: 76px; } }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.7); padding: 66px 0 30px; font-size: 0.92rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr; gap: 28px; } }
.site-footer img { height: 44px; width: auto; margin-bottom: 16px; }
.site-footer h4 { color: #fff; font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer a { color: rgba(255, 255, 255, 0.78); }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 24px; font-size: 0.82rem; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

.hero .word { opacity: 0; transform: translateY(0.5em); display: inline-block; animation: wordUp 0.6s var(--ease-out) forwards; }
.hero .word:nth-child(1) { animation-delay: 0.05s; }
.hero .word:nth-child(2) { animation-delay: 0.13s; }
.hero .word:nth-child(3) { animation-delay: 0.21s; }
.hero .word:nth-child(4) { animation-delay: 0.29s; }
.hero .word:nth-child(5) { animation-delay: 0.37s; }
.hero .word:nth-child(6) { animation-delay: 0.45s; }
@keyframes wordUp { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .hero .word { opacity: 1; transform: none; animation: none; } }

/* ---------- warranty doc page ---------- */
.doc { max-width: 820px; margin: 0 auto; padding: 80px 0; }
.doc h1 { font-size: clamp(2rem, 5vw, 3rem); }
.doc h2 { font-size: 1.45rem; margin-top: 44px; }
.doc h3 { font-size: 1.1rem; margin-top: 28px; }
.doc ul { padding-left: 20px; }
.doc li { margin-bottom: 8px; }
.doc table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.doc th, .doc td { border: 1px solid var(--line); padding: 11px 15px; text-align: left; font-size: 0.95rem; }
.doc th { background: var(--mist); font-family: var(--f-display); }
.doc .back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 30px; font-family: var(--f-display); font-weight: 600; }
.doc .disclaimer { background: var(--mist); border-radius: var(--radius); padding: 20px 24px; font-size: 0.9rem; color: var(--muted); }
