/* ============================================================
   Palmetto Water Pros — site styles
   BRAND COLORS: edit the :root block to match the logo.
   --cta is intentionally a warm orange so buttons pop against
   the blue palette. Change it here and every button updates.
   ============================================================ */
:root {
  --navy: #1b2d5b;        /* logo navy: headers, hero, footer */
  --navy-2: #27407a;      /* lighter navy for gradients */
  --blue: #2f56a8;        /* mid blue derived from logo navy: links, icons */
  --aqua: #4fa3e0;        /* water accent: highlights, eyebrow */
  --aqua-soft: #e8f0fb;   /* tinted section backgrounds */
  --cta: #f4903f;         /* logo orange: POP color for Book Now / CTA buttons */
  --cta-hover: #e07a27;
  --ink: #1b2440;         /* body text */
  --muted: #536478;
  --line: #dbe5ef;
  --bg: #ffffff;
  --bg-tint: #f3f8fc;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(27, 45, 91, .10);
  --shadow-lg: 0 24px 60px rgba(27, 45, 91, .18);
  --font-head: "Quicksand", "Nunito", "Segoe UI", system-ui, sans-serif;
  --font-body: "Nunito", "Quicksand", "Segoe UI", system-ui, sans-serif;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font-body); color: var(--ink); background: var(--bg); line-height: 1.6; font-size: 16.5px; font-weight: 500; }
img, svg { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 .5em; color: var(--navy); letter-spacing: -.005em; }
h1 { font-size: clamp(2rem, 4.2vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.center { text-align: center; }
.mt { margin-top: 1.25rem; }
.mt-lg { margin-top: 2.5rem; }
.icon { width: 24px; height: 24px; flex: none; }
.icon-sm { width: 18px; height: 18px; }
.icon-xs { width: 14px; height: 14px; }
.skip { position: absolute; left: -999px; top: 0; background: var(--cta); color: #fff; padding: .5rem 1rem; z-index: 999; }
.skip:focus { left: 1rem; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-head); font-weight: 700; font-size: 1rem; padding: .85rem 1.5rem; border-radius: 999px; border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; line-height: 1.1; white-space: nowrap; }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-cta { background: var(--cta); color: #fff; box-shadow: 0 8px 22px rgba(244, 144, 63, .38); }
.btn-cta:hover { background: var(--cta-hover); box-shadow: 0 12px 28px rgba(244, 144, 63, .45); }
.btn-outline { background: #fff; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .4); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255, 255, 255, .22); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- top bar + header ---------- */
.topbar { background: var(--navy); color: #cfe3f5; font-size: .85rem; }
.topbar-inner { display: flex; gap: 1.5rem; justify-content: space-between; padding: .4rem 0; }
.topbar span, .topbar a { display: inline-flex; align-items: center; gap: .4rem; color: inherit; }
.topbar a { color: #fff; font-weight: 600; }
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; box-shadow: 0 2px 14px rgba(27, 45, 91, .08); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 84px; }
.brand img { height: 64px; width: auto; }
.main-nav { margin-left: auto; }
.nav-list { display: flex; gap: .25rem; align-items: center; }
.nav-list > li { position: relative; }
.nav-link { display: inline-flex; align-items: center; gap: .3rem; padding: .6rem .85rem; font-family: var(--font-head); font-weight: 600; color: var(--navy); border-radius: 8px; }
.nav-link:hover, .nav-link.is-active { color: var(--blue); text-decoration: none; background: var(--bg-tint); }
.sub-toggle { display: none; }
.sub { position: absolute; top: 100%; left: 0; min-width: 280px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-lg); padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .18s ease; }
.has-sub:hover .sub, .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: translateY(0); }
.sub a { display: block; padding: .6rem .8rem; border-radius: 8px; color: var(--ink); font-weight: 500; }
.sub a:hover { background: var(--aqua-soft); color: var(--navy); text-decoration: none; }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-phone { display: inline-flex; align-items: center; gap: .5rem; color: var(--navy); font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.header-phone .icon { color: var(--blue); }
.nav-toggle { display: none; background: none; border: 0; color: var(--navy); cursor: pointer; padding: .4rem; }
.nav-toggle-close { display: none; }
.nav-mobile-cta { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; background: var(--navy); }
.hero-bg { position: absolute; inset: 0; background:
  radial-gradient(1200px 500px at 85% 0%, rgba(79, 163, 224, .35), transparent 60%),
  radial-gradient(800px 600px at 0% 100%, rgba(47, 86, 168, .45), transparent 60%),
  linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 55%, #2a4a8c 100%); }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='320' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='.05' d='M0 224l48-16c48-16 144-48 240-42.7C384 171 480 213 576 213.3c96 .7 192-42.3 288-58.6 96-16.7 192-5.7 288 10.6 96 16.7 192 37.7 240 48l48 10.7V320H0z'/%3E%3C/svg%3E") bottom/cover no-repeat; }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.3fr .9fr; gap: 3rem; align-items: center; padding: 4.5rem 0 5rem; }
.hero h1 { color: #fff; }
.hero .lead { font-size: 1.05rem; color: #d8e7f5; max-width: 60ch; }
.eyebrow { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: .75rem; }
.eyebrow--light { color: var(--aqua); }
.hero-links { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem 1.5rem; margin: 1.25rem 0 1.75rem; }
.hero-links a { color: #fff; font-weight: 600; display: inline-flex; align-items: center; gap: .5rem; }
.hero-links .icon { color: var(--aqua); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.form-card { background: #fff; color: var(--ink); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-lg); }
.form-card h3 { text-align: center; font-size: 1.5rem; margin-bottom: 1rem; }
.form-card h3 em { font-style: normal; color: var(--cta); }

/* ---------- forms ---------- */
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.lead-form--compact { grid-template-columns: 1fr; gap: .65rem; }
.field { display: flex; flex-direction: column; gap: .25rem; font-size: .85rem; font-weight: 600; color: var(--navy); }
.field b { color: var(--cta); }
.field--full, .lead-form .btn, .lead-form .form-status, .lead-form .fine-print { grid-column: 1 / -1; }
.field input, .field select, .field textarea { font: inherit; font-weight: 400; padding: .7rem .85rem; border: 1.5px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink); width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(47, 86, 168, .18); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-status { margin: 0; font-size: .9rem; font-weight: 600; min-height: 1.2em; }
.form-status.ok { color: #1a8f4d; }
.form-status.err { color: #c62828; }
.fine-print { font-size: .72rem; color: var(--muted); line-height: 1.45; margin: 0; }

/* ---------- trust bar ---------- */
.trust { background: #fff; border-bottom: 1px solid var(--line); }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: .75rem; padding: 1.1rem 1rem; font-family: var(--font-head); font-weight: 700; color: var(--navy); border-left: 1px solid var(--line); justify-content: center; }
.trust-item:first-child { border-left: 0; }
.trust-item .icon { color: var(--aqua); width: 28px; height: 28px; }

/* ---------- sections ---------- */
.section { padding: 5rem 0; }
.section--tint { background: var(--bg-tint); }
.section--navy { background: var(--navy); color: #d8e7f5; }
.section--navy h2 { color: #fff; }
.section-head { max-width: 820px; margin: 0 auto 3rem; text-align: center; }
.section-head p:last-child { color: var(--muted); font-size: 1.05rem; }
.section-head--light p:last-child { color: #b9d0e6; }
.section-head--left { text-align: left; margin: 0; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.25rem 1.75rem 1.75rem; box-shadow: var(--shadow); }
.step-num { position: absolute; top: 1rem; right: 1.25rem; font-family: var(--font-head); font-weight: 800; font-size: 2.5rem; color: var(--aqua-soft); }
.step-icon { width: 60px; height: 60px; border-radius: 14px; background: linear-gradient(135deg, var(--blue), var(--aqua)); color: #fff; display: grid; place-items: center; margin-bottom: 1.25rem; }
.step-icon .icon { width: 30px; height: 30px; }
.step-card p { color: var(--muted); margin: 0; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cards--compact { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.cards--reviews { grid-template-columns: repeat(3, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); color: var(--ink); display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
a.card:hover { text-decoration: none; transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--aqua); }
.card-icon { width: 54px; height: 54px; border-radius: 12px; background: var(--aqua-soft); color: var(--blue); display: grid; place-items: center; margin-bottom: 1rem; }
.card-icon .icon { width: 28px; height: 28px; }
.card p { color: var(--muted); flex: 1; }
.card-link { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-head); font-weight: 700; color: var(--cta); }

.split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: center; }
.media-frame { position: relative; border-radius: var(--radius); min-height: 440px; box-shadow: var(--shadow-lg); overflow: hidden; }
.media-frame--about { background:
  radial-gradient(500px 300px at 20% 20%, rgba(79, 163, 224, .55), transparent 60%),
  linear-gradient(160deg, var(--navy-2), var(--navy)); }
.media-frame--about::before { content: ""; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-opacity='.12' stroke-width='.6'%3E%3Cpath d='M12 3s6 6.5 6 11a6 6 0 0 1-12 0c0-4.5 6-11 6-11z'/%3E%3C/svg%3E") center/140px repeat; }
.media-badge { position: absolute; left: 1.25rem; bottom: 1.25rem; background: #fff; border-radius: 12px; padding: .9rem 1.1rem; display: flex; gap: .75rem; align-items: center; box-shadow: var(--shadow); }
.media-badge .icon { color: var(--cta); width: 32px; height: 32px; }
.media-badge strong { display: block; color: var(--navy); font-family: var(--font-head); }
.media-badge span { font-size: .8rem; color: var(--muted); }
.check-list { display: grid; gap: .9rem; margin: 1.5rem 0 2rem; }
.check-list li { display: flex; gap: .75rem; align-items: flex-start; }
.check-list .icon { color: var(--cta); margin-top: .1rem; }
.check-list strong { color: var(--navy); }
.check-list--tight { gap: .5rem; margin: .75rem 0 1.75rem; }
.num-list { padding-left: 1.25rem; display: grid; gap: .6rem; margin: 0 0 1.75rem; }
.num-list strong { color: var(--navy); }

.county-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.county-card { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .15); border-radius: var(--radius); padding: 1.75rem; }
.county-card h3 { display: flex; align-items: center; gap: .5rem; color: #fff; font-size: 1.4rem; }
.county-card h3 a { color: #fff; }
.county-card h3 .icon { color: var(--aqua); }
.county-card--light { background: #fff; border-color: var(--line); box-shadow: var(--shadow); }
.county-card--light h3, .county-card--light h3 a { color: var(--navy); }
.county-card--light p { color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.chips a { display: inline-block; padding: .4rem .85rem; border-radius: 999px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2); color: #fff; font-size: .9rem; font-weight: 500; }
.chips a:hover { background: var(--aqua); border-color: var(--aqua); color: var(--navy); text-decoration: none; }
.county-card--light .chips a, .chips--dark a { background: var(--aqua-soft); border-color: transparent; color: var(--navy); }
.county-card--light .chips a:hover, .chips--dark a:hover { background: var(--navy); color: #fff; }
.chips--dark { margin-bottom: 2rem; }

.stars { display: flex; gap: .15rem; color: #f5b301; margin-bottom: .75rem; }
.stars .icon { width: 20px; height: 20px; fill: currentColor; }
.reviews-empty { max-width: 640px; margin: 0 auto; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); }
.reviews-empty .stars { justify-content: center; }
.review-card footer { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: .75rem; margin-top: .5rem; font-size: .9rem; }
.review-card footer strong { color: var(--navy); }
.review-card footer span { color: var(--muted); }

.faq-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3.5rem; align-items: start; }
.faq { display: grid; gap: .75rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 1.35rem; font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { color: var(--blue); transition: transform .2s ease; }
.faq-item[open] summary .icon { transform: rotate(180deg); }
.faq-body { padding: 0 1.35rem 1.25rem; color: var(--muted); }
.faq-body p { margin: 0; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2.5rem; align-items: start; }
.contact-cards { display: grid; gap: 1rem; }
.contact-card { display: flex; gap: 1rem; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1.25rem; box-shadow: var(--shadow); color: var(--ink); }
.contact-card .icon { color: var(--cta); width: 30px; height: 30px; }
.contact-card strong { display: block; color: var(--navy); font-family: var(--font-head); }
.contact-card span { color: var(--muted); }
a.contact-card:hover { text-decoration: none; border-color: var(--aqua); }
.form-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.form-panel h3 { margin-bottom: 1.25rem; font-size: 1.5rem; }

.cta-band { background: linear-gradient(120deg, var(--blue), var(--aqua)); color: #fff; padding: 3.5rem 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: .25rem; }
.cta-band p { margin: 0; color: #eaf7fc; max-width: 55ch; }
.cta-band-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ---------- inner pages ---------- */
.page-hero { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 400px at 90% 0%, rgba(79, 163, 224, .35), transparent 60%), linear-gradient(135deg, var(--navy), var(--navy-2)); }
.page-hero-inner { position: relative; padding: 3.5rem 0 4rem; display: grid; gap: 3rem; align-items: center; }
.page-hero--form .page-hero-inner { grid-template-columns: 1.2fr .8fr; }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: #d8e7f5; font-size: 1.05rem; max-width: 65ch; }
.crumbs { font-size: .85rem; color: #9fbcd8; margin-bottom: 1rem; }
.crumbs a { color: #cfe3f5; }
.two-col { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.prose h2 { font-size: 1.6rem; margin-top: 2rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--muted); }
.prose--narrow { max-width: 760px; }
.sidebar { position: sticky; top: 100px; display: grid; gap: 1.25rem; }
.side-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.side-card h3 { font-size: 1.15rem; }
.side-card--navy { background: var(--navy); color: #d8e7f5; border-color: var(--navy); }
.side-card--navy h3 { color: #fff; }
.side-card--navy .btn { width: 100%; justify-content: center; }
.side-phone { display: flex; justify-content: center; align-items: center; gap: .5rem; color: #fff; font-family: var(--font-head); font-weight: 700; margin-top: .9rem; font-size: 1.1rem; }
.side-links { display: grid; gap: .35rem; }
.side-links a { display: flex; align-items: center; gap: .5rem; padding: .5rem .6rem; border-radius: 8px; color: var(--ink); font-weight: 500; }
.side-links a:hover { background: var(--aqua-soft); color: var(--navy); text-decoration: none; }
.side-links .icon { color: var(--blue); }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: #b9d0e6; padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-logo { margin-bottom: 1rem; }
.footer-logo img { height: 74px; width: auto; }
.site-footer h4 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.site-footer ul { display: grid; gap: .5rem; }
.site-footer a { color: #cfe3f5; }
.site-footer a:hover { color: var(--aqua); }
.contact-list li { display: flex; align-items: center; gap: .5rem; }
.contact-list a { display: inline-flex; align-items: center; gap: .5rem; }
.social { display: flex; gap: .6rem; margin-top: 1rem; }
.social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .1); display: grid; place-items: center; color: #fff; }
.social a:hover { background: var(--cta); }
.social svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); padding: 1.25rem 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; }
.sticky-call { display: none; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .header-cta { display: none; }
  .hero-inner { grid-template-columns: 1fr; padding: 3.5rem 0; }
  .page-hero--form .page-hero-inner { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split, .faq-layout, .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .media-frame { min-height: 300px; }
}
@media (max-width: 860px) {
  .topbar-inner span:first-child { display: none; }
  .header-inner { height: 72px; }
  .brand img { height: 46px; }
  .header-phone span { display: none; }
  .nav-toggle { display: block; }
  .main-nav { position: fixed; inset: 72px 0 0 0; background: #fff; padding: 1rem 1.25rem 2rem; overflow-y: auto; transform: translateX(100%); transition: transform .25s ease; }
  body.nav-open .main-nav { transform: none; }
  body.nav-open .nav-toggle-open { display: none; }
  body.nav-open .nav-toggle-close { display: block; }
  body.nav-open { overflow: hidden; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list > li { border-bottom: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; }
  .nav-link { flex: 1; padding: .9rem .25rem; font-size: 1.1rem; }
  .nav-link .icon { display: none; }
  .sub-toggle { display: grid; place-items: center; width: 44px; height: 44px; background: none; border: 0; color: var(--blue); cursor: pointer; }
  .sub-toggle .icon { transition: transform .2s ease; }
  .sub-toggle[aria-expanded="true"] .icon { transform: rotate(180deg); }
  .sub { position: static; width: 100%; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 .5rem .75rem; display: none; }
  .sub.is-open { display: block; }
  .nav-mobile-cta { display: grid; gap: .75rem; margin-top: 1.5rem; }
  .nav-mobile-cta .btn { justify-content: center; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .trust-item { border-left: 0; border-top: 1px solid var(--line); justify-content: flex-start; }
  .section { padding: 3.5rem 0; }
  .steps, .cards, .cards--reviews, .county-grid, .cards--compact { grid-template-columns: 1fr; }
  .hero-links { grid-template-columns: 1fr; }
  .lead-form { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .sticky-call { display: inline-flex; position: fixed; bottom: 1rem; right: 1rem; z-index: 40; align-items: center; gap: .5rem; background: var(--cta); color: #fff; font-family: var(--font-head); font-weight: 700; padding: .8rem 1.2rem; border-radius: 999px; box-shadow: 0 10px 24px rgba(244, 144, 63, .45); }
  .sticky-call:hover { text-decoration: none; }
  .btn { white-space: normal; text-align: center; }
}
@media (max-width: 480px) {
  .topbar-inner span { display: none; }
  .topbar-inner { justify-content: center; }
  .form-card, .form-panel { padding: 1.25rem; }
  .trust-inner { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; } html { scroll-behavior: auto; } }
