/* ==========================================================================
   Lancaster Water Heater Pros — core stylesheet
   Navy base + orange accent. Mobile-first. No external font/asset deps.
   ========================================================================== */

:root {
  --navy-900: #0b2137;
  --navy-800: #0f2942;
  --navy-700: #163a5c;
  --navy-600: #1e4d78;
  --navy-050: #eef3f8;
  --orange-600: #d95a0c;
  --orange-500: #f97316;
  --orange-400: #fb8c3c;
  --amber-400: #fbbf24;
  --ink-900: #12202e;
  --ink-700: #33475b;
  --ink-500: #5b7085;
  --line: #dce4ec;
  --line-2: #e8eef4;
  --bg: #ffffff;
  --bg-soft: #f5f8fb;
  --bg-soft-2: #eef3f8;
  --white: #ffffff;
  --green-600: #17803d;
  --shadow-sm: 0 1px 2px rgba(15, 41, 66, .06), 0 1px 3px rgba(15, 41, 66, .1);
  --shadow-md: 0 6px 18px rgba(15, 41, 66, .12);
  --shadow-lg: 0 18px 40px rgba(11, 33, 55, .18);
  --radius: 12px;
  --radius-sm: 8px;
  --wrap: 1160px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-head: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink-700);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy-600); text-decoration: none; }
a:hover { color: var(--orange-600); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink-900);
  line-height: 1.2;
  margin: 0 0 .55em;
  font-weight: 700;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(1.85rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.6vw, 2.15rem); }
h3 { font-size: clamp(1.2rem, 2.6vw, 1.5rem); }
h4 { font-size: 1.08rem; }
p { margin: 0 0 1.1em; }

strong { color: var(--ink-900); font-weight: 700; }
mark { background: #fff3d6; color: var(--ink-900); padding: 0 .15em; border-radius: 3px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 20px; }

.section { padding: 60px 0; }
.section-sm { padding: 42px 0; }
.section-soft { background: var(--bg-soft); }
.section-soft-2 { background: var(--bg-soft-2); }
.section-navy { background: var(--navy-800); color: #cdd9e5; }
.section-navy h2, .section-navy h3, .section-navy h4 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: .6rem;
}
.section-navy .eyebrow { color: var(--amber-400); }

.lead { font-size: 1.12rem; color: var(--ink-700); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--orange-500);
  color: #fff;
  box-shadow: 0 6px 16px rgba(217, 90, 12, .32);
}
.btn-primary:hover { background: var(--orange-600); color: #fff; box-shadow: 0 8px 22px rgba(217, 90, 12, .42); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .1); color: #fff; border-color: #fff; }
.btn-navy { background: var(--navy-700); color: #fff; }
.btn-navy:hover { background: var(--navy-800); color: #fff; }
.btn-lg { min-height: 58px; font-size: 1.12rem; padding: 0 32px; }
.btn-block { display: flex; width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(15, 41, 66, .04);
}
.header-bar { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 12px; }
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 1; min-width: 0; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 9px;
  background: linear-gradient(145deg, var(--navy-700), var(--navy-800));
  display: grid; place-items: center; flex-shrink: 0;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.08);
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name b { font-family: var(--font-head); color: var(--navy-800); font-size: 1.06rem; font-weight: 800; letter-spacing: -.01em; }
.brand-name span { font-size: .72rem; color: var(--ink-500); font-weight: 600; letter-spacing: .02em; }

.main-nav { display: none; }
.main-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  display: inline-block; padding: 9px 14px; border-radius: 8px;
  color: var(--ink-900); font-weight: 600; font-size: .98rem;
}
.main-nav a:hover { background: var(--navy-050); color: var(--navy-800); }
.has-dropdown { position: relative; }
.dropdown-toggle { background: none; border: 0; font: inherit; cursor: pointer; display: inline-flex; align-items: center; gap: 5px; padding: 9px 14px; border-radius: 8px; color: var(--ink-900); font-weight: 600; }
.dropdown-toggle:hover { background: var(--navy-050); }
.dropdown-toggle svg { width: 12px; height: 12px; transition: transform .15s; }
.has-dropdown[data-open="true"] .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 288px; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow-lg); padding: 8px;
  display: none;
}
.has-dropdown[data-open="true"] .dropdown { display: block; }
.dropdown a { display: block; padding: 10px 12px; border-radius: 8px; font-weight: 600; font-size: .95rem; color: var(--ink-900); }
.dropdown a small { display: block; font-weight: 500; color: var(--ink-500); font-size: .8rem; margin-top: 1px; }
.dropdown a:hover { background: var(--navy-050); }

.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-phone { display: none; }
.header-phone small { display: block; font-size: .7rem; color: var(--ink-500); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.header-phone b { font-size: 1.15rem; color: var(--navy-800); font-family: var(--font-head); }
.btn-call {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 48px; padding: 0 16px; border-radius: 9px;
  background: var(--orange-500); color: #fff; font-weight: 700; font-size: .98rem;
  box-shadow: 0 4px 12px rgba(217, 90, 12, .3);
}
.btn-call:hover { background: var(--orange-600); color: #fff; }
.btn-call svg { width: 17px; height: 17px; }
.btn-call .call-label { display: none; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 9px; border: 1px solid var(--line);
  background: #fff; cursor: pointer; color: var(--navy-800);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* Mobile drawer */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 10px 0 18px;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav > ul > li > a, .mobile-nav .m-group > span {
  display: block; padding: 12px 4px; font-weight: 700; color: var(--ink-900);
  border-bottom: 1px solid var(--line-2); font-size: 1.02rem;
}
.mobile-nav .m-sub { padding: 4px 0 8px 12px; }
.mobile-nav .m-sub a { display: block; padding: 9px 4px; color: var(--ink-700); font-weight: 600; font-size: .96rem; }
.mobile-nav .m-group > span { color: var(--orange-600); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy-800); color: #dbe6f0; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(11, 33, 55, .96) 0%, rgba(11, 33, 55, .82) 42%, rgba(11, 33, 55, .55) 100%),
    radial-gradient(1100px 500px at 88% -10%, rgba(249, 115, 22, .22), transparent 60%);
}
.hero-inner { position: relative; display: grid; gap: 34px; padding: 52px 0 58px; }
.hero h1 { color: #fff; margin-bottom: .5em; }
.hero-lead { font-size: 1.18rem; color: #cdd9e5; max-width: 40ch; margin-bottom: 1.6em; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 1.4em; }
.hero-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.hero-points li { display: flex; align-items: flex-start; gap: 10px; color: #cfdbe7; font-weight: 600; }
.hero-points svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--amber-400); }
.hero-media { position: relative; }
.hero-media img { border-radius: 16px; box-shadow: var(--shadow-lg); border: 4px solid rgba(255,255,255,.08); width: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: -8px; bottom: -14px; background: #fff; color: var(--navy-800);
  border-radius: 12px; padding: 12px 16px; box-shadow: var(--shadow-md); display: flex; gap: 10px; align-items: center;
}
.hero-badge svg { width: 30px; height: 30px; color: var(--orange-500); flex-shrink: 0; }
.hero-badge b { display: block; font-size: 1.02rem; color: var(--navy-800); }
.hero-badge small { color: var(--ink-500); font-size: .82rem; }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--navy-900); color: #b9c8d6; border-top: 1px solid rgba(255,255,255,.06); }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 12px; padding: 26px 0; }
.trust-item { display: flex; align-items: center; gap: 11px; }
.trust-item svg { width: 26px; height: 26px; color: var(--amber-400); flex-shrink: 0; }
.trust-item b { display: block; color: #fff; font-size: .98rem; line-height: 1.2; }
.trust-item small { font-size: .8rem; color: #93a7b8; }

/* ---------- Generic content ---------- */
.section-head { max-width: 720px; margin: 0 auto 38px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head p { color: var(--ink-700); font-size: 1.08rem; margin-bottom: 0; }

.prose { max-width: 760px; }
.prose h2 { margin-top: 1.7em; }
.prose h3 { margin-top: 1.5em; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul, .prose ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.prose li { margin-bottom: .5em; }
.prose figure { margin: 1.6em 0; }
.prose figure img { border-radius: 12px; box-shadow: var(--shadow-sm); border: 1px solid var(--line-2); }
.prose figcaption { font-size: .86rem; color: var(--ink-500); margin-top: .5em; text-align: center; font-style: italic; }

.answer { font-weight: 400; }
.answer strong:first-child, .direct-answer { }

/* Layout with sidebar */
.content-layout { display: grid; gap: 40px; min-width: 0; }
.content-layout > * { min-width: 0; }
.aside-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); padding: 22px; }
.aside-card + .aside-card { margin-top: 22px; }
.aside-card h3 { font-size: 1.15rem; margin-bottom: .7em; }
.aside-cta { background: var(--navy-800); color: #cdd9e5; border-radius: 14px; padding: 24px; text-align: center; }
.aside-cta h3 { color: #fff; }
.aside-cta .phone-xl { font-size: 1.6rem; color: #fff; font-weight: 800; display: block; margin: 6px 0 14px; font-family: var(--font-head); }

.aside-list { list-style: none; margin: 0; padding: 0; }
.aside-list li { border-bottom: 1px solid var(--line-2); }
.aside-list li:last-child { border-bottom: 0; }
.aside-list a { display: block; padding: 11px 0; font-weight: 600; color: var(--navy-700); }
.aside-list a:hover { color: var(--orange-600); }

/* ---------- Cards / grids ---------- */
.card-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }

.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s; display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.service-card figure { margin: 0; }
.service-card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.service-card .card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { font-size: 1.22rem; margin-bottom: .4em; }
.service-card p { font-size: .97rem; color: var(--ink-700); flex: 1; }
.card-link { font-weight: 700; color: var(--orange-600); display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; }
.card-link svg { width: 15px; height: 15px; }

.feature-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px; box-shadow: var(--shadow-sm); }
.feature-ico { width: 50px; height: 50px; border-radius: 11px; background: var(--navy-050); display: grid; place-items: center; margin-bottom: 14px; }
.feature-ico svg { width: 26px; height: 26px; color: var(--navy-700); }
.feature-card h3 { font-size: 1.14rem; margin-bottom: .35em; }
.feature-card p { font-size: .96rem; margin-bottom: 0; }

/* Problem/spec list */
.check-list { list-style: none; margin: 0 0 1.2em; padding: 0; }
.check-list li { display: flex; gap: 11px; padding: 8px 0; align-items: flex-start; }
.check-list svg { width: 21px; height: 21px; color: var(--green-600); flex-shrink: 0; margin-top: 3px; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; margin: 1.4em 0; border: 1px solid var(--line); border-radius: 12px; }
table.data { width: 100%; border-collapse: collapse; min-width: 460px; font-size: .96rem; }
table.data caption { text-align: left; padding: 12px 16px; font-weight: 700; color: var(--ink-900); background: var(--bg-soft); border-bottom: 1px solid var(--line); }
table.data th, table.data td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line-2); }
table.data thead th { background: var(--navy-800); color: #fff; font-weight: 700; }
table.data tbody tr:nth-child(even) { background: var(--bg-soft); }
table.data tbody tr:last-child td { border-bottom: 0; }

/* ---------- FAQ / details ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 52px 18px 20px; position: relative;
  font-weight: 700; color: var(--ink-900); font-size: 1.05rem; font-family: var(--font-head);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--orange-500); font-weight: 400; line-height: 1;
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item .faq-body { padding: 0 20px 20px; color: var(--ink-700); }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ---------- Micro CTA banner ---------- */
.micro-cta {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  border-radius: 14px; padding: 22px 24px; margin: 30px 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  box-shadow: var(--shadow-md);
}
.micro-cta p { margin: 0; color: #dbe6f0; font-weight: 600; font-size: 1.05rem; }
.micro-cta b { color: #fff; }
.micro-cta .btn { flex-shrink: 0; }

/* ---------- Areas / map ---------- */
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 0; padding: 0; list-style: none; }
.area-tags li a, .area-tags li span {
  display: inline-block; padding: 9px 15px; border-radius: 30px; background: #fff;
  border: 1px solid var(--line); font-weight: 600; font-size: .95rem; color: var(--ink-900);
}
.area-tags li a:hover { border-color: var(--orange-500); color: var(--orange-600); }
.area-tags li span { color: var(--ink-500); }
.area-note { font-size: .9rem; color: var(--ink-500); margin-top: 12px; }

.map-frame { border: 0; width: 100%; height: 380px; border-radius: 14px; box-shadow: var(--shadow-sm); filter: saturate(1.02); }

/* ---------- Brands ---------- */
.brand-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.brand-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px; text-align: center; box-shadow: var(--shadow-sm); }
.brand-item img { aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; width: 100%; margin-bottom: 10px; }
.brand-item b { display: block; color: var(--navy-800); font-size: 1rem; }
.brand-item small { color: var(--ink-500); font-size: .82rem; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 18px; grid-template-columns: 1fr; counter-reset: step; }
.step { display: flex; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 20px; box-shadow: var(--shadow-sm); }
.step-num { width: 42px; height: 42px; border-radius: 50%; background: var(--orange-500); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.15rem; flex-shrink: 0; }
.step h3 { font-size: 1.1rem; margin-bottom: .25em; }
.step p { margin: 0; font-size: .95rem; }

/* ---------- Stats ---------- */
.stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stat { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 20px; text-align: center; }
.stat b { display: block; font-size: 1.9rem; color: #fff; font-family: var(--font-head); line-height: 1; margin-bottom: 6px; }
.stat span { font-size: .9rem; color: #a9bccc; }

/* ---------- Final CTA ---------- */
.final-cta { background: linear-gradient(135deg, var(--navy-800), var(--navy-900)); color: #dbe6f0; text-align: center; }
.final-cta h2 { color: #fff; }
.final-cta .phone-xl { display: block; font-size: clamp(1.9rem, 6vw, 2.8rem); font-weight: 800; color: #fff; font-family: var(--font-head); margin: 10px 0 6px; }
.final-cta .phone-xl a { color: #fff; }
.final-cta p { color: #b9c8d6; max-width: 52ch; margin-left: auto; margin-right: auto; }

/* ---------- Breadcrumbs ---------- */
.crumbs { padding: 14px 0; font-size: .88rem; color: var(--ink-500); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.crumbs li::after { content: "/"; margin-left: 6px; color: var(--line); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--navy-600); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #9db2c4; padding: 52px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 34px; padding-bottom: 34px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1em; letter-spacing: .01em; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: #9db2c4; font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.footer-brand .brand-name b { color: #fff; }
.footer-brand .brand-name span { color: #7f97ab; }
.footer-about { font-size: .92rem; margin: 16px 0; color: #8ea4b7; }
.footer-nap { font-style: normal; font-size: .93rem; line-height: 1.7; color: #9db2c4; }
.footer-nap b { color: #fff; }
.footer-phone { color: var(--amber-400); font-weight: 700; font-size: 1.1rem; }
.footer-disclosure { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; font-size: .82rem; color: #74899c; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0 26px; font-size: .82rem; color: #74899c; display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; }

/* ---------- Floating mobile call button ---------- */
.floating-call {
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 55;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; border-radius: 12px;
  background: var(--orange-500); color: #fff; font-weight: 800; font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(11, 33, 55, .35);
}
.floating-call:hover { color: #fff; background: var(--orange-600); }
.floating-call svg { width: 20px; height: 20px; }
body { padding-bottom: 84px; }

/* ---------- Diagram helpers ---------- */
.diagram { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px; box-shadow: var(--shadow-sm); }
.diagram svg { width: 100%; height: auto; display: block; }
.diagram figcaption { font-size: .86rem; color: var(--ink-500); margin-top: 10px; text-align: center; }

.callout {
  border-left: 4px solid var(--orange-500); background: var(--bg-soft);
  padding: 16px 18px; border-radius: 0 10px 10px 0; margin: 1.4em 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout b { color: var(--navy-800); }

/* ---------- Responsive ---------- */
@media (max-width: 520px) {
  .header-bar { gap: 8px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-name b { font-size: .9rem; line-height: 1.12; overflow-wrap: anywhere; }
  .brand-name span { font-size: .64rem; }
  .btn-call { padding: 0 13px; }
}

@media (min-width: 640px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-row { grid-template-columns: repeat(4, 1fr); }
  .btn-call .call-label { display: inline; }
}

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.05fr .95fr; align-items: center; padding: 70px 0 80px; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .brand-grid { grid-template-columns: repeat(5, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .content-layout.with-aside { grid-template-columns: 1fr 336px; align-items: start; }
  .content-layout.with-aside .aside-wrap { position: sticky; top: 92px; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
}

@media (min-width: 1024px) {
  .main-nav { display: block; }
  .nav-toggle { display: none; }
  .header-phone { display: block; text-align: right; }
  .floating-call { display: none; }
  body { padding-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
