/* =====================================================================
   Appliance Repair Abilene — Home page styles
   Palette: blue / near-black / white / light-gray / dark footer
   ===================================================================== */

:root {
  --red: #1a66d6;
  --red-dark: #1450a8;
  --red-soft: #e7f0fc;
  --ink: #151515;
  --ink-2: #2a2a2a;
  --muted: #6b6b6b;
  --muted-2: #8a8a8a;
  --line: #ececec;
  --bg: #ffffff;
  --bg-soft: #f5f5f5;
  --bg-card: #f7f7f7;
  --dark: #171717;
  --dark-2: #202020;
  --white: #ffffff;

  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, .05);
  --shadow: 0 18px 50px rgba(0, 0, 0, .10);
  --container: 1200px;
  --gap: clamp(16px, 3vw, 28px);

  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

/* ------------------------------- reset ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; font-weight: 700; color: var(--ink); }

/* ----------------------------- layout ------------------------------ */
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--dark); color: #e9e9e9; }

.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: .82rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--muted);
}
.eyebrow::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--red); }
.eyebrow--center { justify-content: center; }

.section__head { max-width: 720px; margin-inline: auto; margin-bottom: clamp(34px, 5vw, 56px); }
.section__title { font-size: clamp(1.9rem, 4.2vw, 3rem); margin: 14px 0 12px; }
.section__sub { color: var(--muted); font-size: 1.05rem; }

/* ----------------------------- buttons ----------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: var(--radius-pill); border: 1.5px solid transparent;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem; line-height: 1;
  transition: transform .18s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-dark); box-shadow: 0 12px 26px rgba(26, 102, 214, .30); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; }
.btn--white { background: #fff; color: var(--ink); }
.btn--ghost { background: transparent; border-color: rgba(255, 255, 255, .35); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); }
.btn--outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--outline:hover { border-color: var(--ink); }
.btn__arrow {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.18);
  display: inline-grid; place-items: center; margin: -6px -14px -6px 4px;
}

/* --------------------------- placeholder --------------------------- */
.ph {
  width: 100%; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, #ededed 0%, #e2e2e2 100%);
  display: grid; place-content: center; gap: 8px; color: #9a9a9a; text-align: center;
  border: 1px dashed #cfcfcf;
}
.ph__icon svg { width: 34px; height: 34px; opacity: .7; margin-inline: auto; }
.ph__label { font-size: .8rem; font-weight: 600; letter-spacing: .02em; }
.ph--dark { background: linear-gradient(135deg, #2a2a2a, #1c1c1c); color: #777; border-color: #3a3a3a; }

/* =====================================================================
   TOP BAR
   ===================================================================== */
.topbar {
  background: var(--dark); color: #cfcfcf; font-size: .86rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 9px 0; }
.topbar__left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: 8px; color: #cfcfcf; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; color: var(--red); }
.topbar .hide-sm { color: #cfcfcf; }
.topbar__social { display: flex; gap: 10px; }
@media (max-width: 700px) { .topbar .hide-sm { display: none; } }
.topbar__social a {
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18);
  display: grid; place-items: center;
}
.topbar__social a:hover { background: var(--red); border-color: var(--red); }
.topbar__social svg { color: #fff; width: 14px; height: 14px; }

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.header { position: sticky; top: 0; z-index: 60; background: rgba(23,23,23,.0); }
.header.is-solid {
  position: sticky; background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 800; color: #fff; }
.header.is-solid .brand { color: var(--ink); }
.brand__mark {
  width: 40px; height: 40px; border-radius: 11px; background: var(--red); color: #fff;
  display: grid; place-items: center; flex: none;
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text b { font-size: 1.06rem; letter-spacing: -.01em; }
.brand__text span { font-family: var(--font-body); font-weight: 500; font-size: .68rem; letter-spacing: .04em; color: var(--red); text-transform: uppercase; }
.header.is-solid .brand__text span { color: var(--red); }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  padding: 9px 15px; border-radius: var(--radius-pill); font-weight: 500; font-size: .95rem;
  color: rgba(255,255,255,.85); transition: color .2s, background .2s;
}
.nav__links a:hover, .nav__links a.active { color: #fff; background: rgba(255,255,255,.12); }
.header.is-solid .nav__links a { color: var(--ink-2); }
.header.is-solid .nav__links a:hover, .header.is-solid .nav__links a.active { color: var(--red); background: var(--red-soft); }

.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__phone { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: #fff; font-size: .98rem; }
.header.is-solid .nav__phone { color: var(--ink); }
.nav__phone svg { width: 34px; height: 34px; padding: 9px; border-radius: 50%; background: var(--red); color: #fff; }

.nav__toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px; border: none;
  background: rgba(255,255,255,.14); color: #fff; place-items: center;
}
.header.is-solid .nav__toggle { background: var(--bg-soft); color: var(--ink); }
.nav__toggle svg { width: 24px; height: 24px; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; margin-top: -84px; padding-top: 84px;
  min-height: 92vh; display: flex; flex-direction: column; justify-content: center;
  color: #fff; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; background: #1a1a1a; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(26,102,214,.28), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.38) 45%, rgba(0,0,0,.6) 100%);
}
.hero__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.hero__bg .ph { height: 100%; border: none; border-radius: 0; }

.hero__inner { padding: clamp(40px, 7vw, 90px) 0 0; text-align: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; margin-bottom: 22px;
  border-radius: var(--radius-pill); background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18); font-size: .84rem; font-weight: 600; letter-spacing: .02em;
}
.hero__badge b { color: #ffd7dd; }
.hero h1 {
  color: #fff; font-size: clamp(2rem, 5.5vw, 68px); font-weight: 800; letter-spacing: -.02em;
  max-width: 18ch; margin-inline: auto;
}
.hero h1 .accent { color: #7fb0ff; }
.hero__lead {
  max-width: 640px; margin: 22px auto 0; color: rgba(255,255,255,.85); font-size: 1.12rem;
}
.hero__lead b { color: #fff; font-weight: 700; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }

/* hero stat strip */
.hero__strip {
  margin-top: auto; background: rgba(0,0,0,.42); backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,.10);
}
.hero__strip-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 20px 0;
}
.hero__stat { display: flex; align-items: center; gap: 11px; font-size: .92rem; color: rgba(255,255,255,.9); font-weight: 500; }
.hero__stat svg { width: 20px; height: 20px; color: var(--red); flex: none; }
.hero__stars { display: inline-flex; gap: 2px; color: #ffbf00; }
.hero__stars svg { width: 16px; height: 16px; color: #ffbf00; }

/* =====================================================================
   FLOATING CALL BUTTON
   ===================================================================== */
.callfab {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  display: inline-flex; align-items: center; gap: 12px; padding: 13px 22px 13px 15px;
  background: var(--red); color: #fff; border-radius: var(--radius-pill);
  box-shadow: 0 14px 34px rgba(26,102,214,.44); font-weight: 700; font-size: .95rem;
  transition: transform .2s, background .2s;
}
.callfab:hover { transform: translateY(-3px); background: var(--red-dark); }
.callfab__ring { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.2); display: grid; place-items: center; animation: pulse 2s infinite; }
.callfab__ring svg { width: 20px; height: 20px; }
.callfab small { display: block; font-weight: 500; font-size: .72rem; opacity: .85; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,.4);} 50%{box-shadow:0 0 0 8px rgba(255,255,255,0);} }

/* =====================================================================
   INTRO / URGENCY (heat)
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split__media .ph { border-radius: var(--radius-lg); }
.split__media img { width: 100%; display: block; border-radius: var(--radius-lg); object-fit: cover; aspect-ratio: 4/3; }
.split__body h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: 16px; }
.split__body p { color: var(--muted); margin-bottom: 16px; }
.split__body p:last-child { margin-bottom: 0; }
.split--rev .split__media { order: 2; }

.urgency-tag {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px; border-radius: var(--radius-pill);
  background: var(--red-soft); color: var(--red-dark); font-weight: 700; font-size: .82rem; margin-bottom: 18px;
}
.urgency-tag svg { width: 16px; height: 16px; }

/* =====================================================================
   FEATURE / WHY-US CARDS
   ===================================================================== */
.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.feature {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 26px; transition: transform .2s, box-shadow .2s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__icon {
  width: 54px; height: 54px; border-radius: 15px; background: var(--red); color: #fff;
  display: grid; place-items: center; margin-bottom: 18px;
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .96rem; }

/* =====================================================================
   STATS BAND
   ===================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.stat-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 26px;
}
.stat-card b { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--ink); }
.stat-card span { color: var(--muted); font-size: .95rem; }

/* =====================================================================
   SERVICES (appliance grid)
   ===================================================================== */
.svc-cat { margin-bottom: 34px; }
.svc-cat:last-child { margin-bottom: 0; }
.svc-cat__head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.svc-cat__head .dot { width: 40px; height: 40px; border-radius: 11px; background: var(--red-soft); color: var(--red); display: grid; place-items: center; flex: none; }
.svc-cat__head .dot svg { width: 22px; height: 22px; }
.svc-cat__head h3 { font-size: 1.3rem; }
.svc-list { display: flex; flex-wrap: wrap; gap: 12px; }
.svc-chip {
  display: inline-flex; align-items: center; gap: 9px; padding: 12px 18px; border-radius: 14px;
  background: #fff; border: 1px solid var(--line); font-weight: 600; font-size: .95rem; color: var(--ink-2);
  transition: border-color .2s, color .2s, transform .2s;
}
.svc-chip:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.svc-chip svg { width: 18px; height: 18px; color: var(--red); }

/* appliance service cards — image + name, 3 per row */
.svc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.svc-card {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; text-align: center; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card__media .ph, .svc-card__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: none; border-radius: 0; }
.svc-card h3 { padding: 20px 16px; color: var(--red); font-size: 1.2rem; transition: color .2s; }
@media (max-width: 820px) { .svc-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .svc-cards { grid-template-columns: 1fr; } }

.brands { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 34px; }
.brand-pill { padding: 10px 20px; border-radius: var(--radius-pill); background: var(--bg-soft); border: 1px solid var(--line); font-weight: 600; color: var(--ink-2); font-size: .92rem; }

/* services filter tabs */
.svc-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.svc-tab {
  padding: 11px 22px; border-radius: var(--radius-pill); border: 1.5px solid var(--line);
  background: #fff; color: var(--ink-2); font-weight: 600; font-size: .93rem; transition: all .2s;
}
.svc-tab:hover { border-color: var(--red); color: var(--red); }
.svc-tab.active { background: var(--red); border-color: var(--red); color: #fff; }

/* =====================================================================
   PROCESS TIMELINE
   ===================================================================== */
.timeline { display: grid; gap: 8px; }
.tl-item { display: grid; grid-template-columns: auto 1fr; gap: 24px; padding-bottom: 34px; position: relative; }
.tl-item:last-child { padding-bottom: 0; }
.tl-num {
  width: 58px; height: 58px; border-radius: 50%; background: var(--red); color: #fff;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; z-index: 2;
}
.tl-item:not(:last-child) .tl-num::after {
  content: ""; position: absolute; left: 28px; top: 58px; bottom: 0; width: 2px;
  background: repeating-linear-gradient(var(--red) 0 6px, transparent 6px 12px);
}
.tl-body h3 { font-size: 1.25rem; margin-bottom: 6px; }
.tl-body p { color: var(--muted); font-size: .97rem; max-width: 60ch; }

/* =====================================================================
   PRICING TABLE
   ===================================================================== */
.table-wrap { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
table.price, table.compare { width: 100%; border-collapse: collapse; }
.price th, .price td, .compare th, .compare td { padding: 16px 22px; text-align: left; border-bottom: 1px solid var(--line); }
.price thead th, .compare thead th { background: var(--ink); color: #fff; font-family: var(--font-head); font-size: .95rem; font-weight: 600; }
.price tbody tr:last-child td, .compare tbody tr:last-child td { border-bottom: none; }
.price tbody tr:nth-child(even) { background: var(--bg-soft); }
.price td:last-child { font-weight: 700; color: var(--red-dark); white-space: nowrap; }
.price td:first-child { font-weight: 600; }
.price-note { margin-top: 16px; color: var(--muted); font-size: .9rem; text-align: center; }

/* comparison */
.compare thead th:last-child { background: var(--red); }
.compare td:first-child { font-weight: 700; width: 20%; }
.compare td:nth-child(2) { color: var(--muted); }
.compare td:last-child { font-weight: 600; background: var(--red-soft); color: var(--ink); }
.compare svg { width: 17px; height: 17px; vertical-align: -3px; margin-right: 7px; }
.compare .x { color: #c23; } .compare .ok { color: #1a9d4b; }

/* =====================================================================
   SEASONS / TWO-COL LISTS
   ===================================================================== */
.season { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; }
.season__ico { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; color: #fff; }
.season__ico svg { width: 24px; height: 24px; }
.season--summer .season__ico { background: #f0932b; }
.season--winter .season__ico { background: #3498db; }
.season--mid .season__ico { background: #27ae60; }
.season h3 { font-size: 1.2rem; margin-bottom: 8px; }
.season p { color: var(--muted); font-size: .95rem; }

.checklist li { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--ink-2); }
.checklist li:last-child { border-bottom: none; }
.checklist li b { color: var(--ink); }
.checklist svg { width: 22px; height: 22px; color: var(--red); flex: none; margin-top: 1px; }

/* =====================================================================
   FAQ ACCORDION
   ===================================================================== */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.faq {
  background: var(--bg-soft); border-radius: 16px; border: 1px solid transparent; overflow: hidden;
  transition: background .25s, border-color .25s;
}
.faq.open { background: var(--red); color: #fff; }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; background: none; border: none; text-align: left; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: inherit; }
.faq__ico { flex: none; width: 24px; height: 24px; position: relative; }
.faq__ico::before, .faq__ico::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; transition: transform .25s; }
.faq__ico::before { top: 11px; left: 3px; right: 3px; height: 2px; }
.faq__ico::after { left: 11px; top: 3px; bottom: 3px; width: 2px; }
.faq.open .faq__ico::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 24px 22px; color: rgba(255,255,255,.9); font-size: .97rem; }

/* =====================================================================
   PROJECTS / GALLERY
   ===================================================================== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery .ph { border-radius: var(--radius); height: 100%; }
.gallery__tall { grid-row: span 2; }

/* before / after showcase */
.beforeafter { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.ba-item { position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden; }
.ba-item img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.ba-badge {
  position: absolute; top: 14px; left: 14px; padding: 8px 18px; border-radius: var(--radius-pill);
  font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .05em;
  text-transform: uppercase; color: #fff; box-shadow: 0 4px 12px rgba(0,0,0,.28);
}
.ba-badge--before { background: #565656; }
.ba-badge--after { background: var(--red); }
@media (max-width: 640px) { .beforeafter { grid-template-columns: 1fr; } }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.tst { display: grid; grid-template-columns: .8fr 1.2fr; gap: 34px; align-items: center; }
.tst__names { display: flex; flex-direction: column; gap: 6px; }
.tst__name { padding: 12px 16px; border-radius: 12px; border-left: 3px solid transparent; cursor: pointer; transition: background .2s; }
.tst__name.active { background: var(--bg-soft); border-color: var(--red); }
.tst__name b { display: block; font-family: var(--font-head); }
.tst__name span { color: var(--muted); font-size: .88rem; }
.tst__card { background: var(--bg-soft); border-radius: var(--radius-lg); padding: 34px; }
.tst__stars { color: #ffbf00; display: flex; gap: 3px; margin-bottom: 16px; }
.tst__stars svg { width: 18px; height: 18px; }
.tst__quote { font-size: 1.12rem; color: var(--ink-2); }
.tst__date { color: var(--muted); font-size: .88rem; margin-top: 18px; }

/* =====================================================================
   CTA BANNER
   ===================================================================== */
.cta { display: grid; grid-template-columns: 1fr 1.1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; }
.cta__media .ph { height: 100%; border-radius: 0; border: none; }
.cta__body { background: var(--red); color: #fff; padding: clamp(34px, 5vw, 60px); display: flex; flex-direction: column; justify-content: center; }
.cta__body h2 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: 14px; }
.cta__body p { color: rgba(255,255,255,.9); margin-bottom: 26px; max-width: 44ch; }

/* =====================================================================
   PROSE / NOTE / BUSINESS CARD / SUBTITLE
   ===================================================================== */
.prose { max-width: 760px; }
.prose.center { margin-inline: auto; text-align: center; }
.prose p { color: var(--muted); font-size: 1.05rem; margin-bottom: 16px; }
.prose p:last-child { margin-bottom: 0; }
.prose p b, .prose b { color: var(--ink); }
.subtitle { display: inline-block; font-family: var(--font-head); font-weight: 600; color: var(--red); font-size: 1.05rem; margin-bottom: 12px; }

.note {
  border: 1.5px dashed #cdcdcd; background: var(--bg-soft); border-radius: var(--radius-lg);
  padding: 30px; color: var(--muted); max-width: 760px; margin-inline: auto; text-align: center; font-size: 1rem;
}
.note svg { width: 30px; height: 30px; color: var(--muted-2); margin-bottom: 10px; }

.bizcard {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 30px; margin-top: 24px; display: grid; gap: 10px; max-width: 520px;
}
.bizcard div { display: flex; gap: 12px; align-items: flex-start; }
.bizcard svg { width: 20px; height: 20px; color: var(--red); flex: none; margin-top: 3px; }
.bizcard b { font-family: var(--font-head); }

/* how-fast callout band */
.callout { background: var(--red-soft); border-radius: var(--radius-lg); padding: clamp(30px, 5vw, 54px); text-align: center; }
.callout h2 { margin-bottom: 14px; }
.callout p { color: var(--ink-2); max-width: 70ch; margin-inline: auto; font-size: 1.06rem; }

/* final CTA band */
.cta-band { background: var(--red); color: #fff; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px); text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 56ch; margin: 0 auto 28px; font-size: 1.08rem; }
.cta-band .btn--white { font-size: 1.1rem; padding: 17px 36px; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--dark); color: #bdbdbd; overflow: hidden; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 40px; padding: clamp(50px, 7vw, 84px) 0 40px; }
.footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
.footer__news p { color: #fff; font-size: 1.15rem; font-family: var(--font-head); font-weight: 600; line-height: 1.35; margin-bottom: 20px; }
.news-form { display: flex; background: #fff; border-radius: var(--radius-pill); padding: 6px 6px 6px 20px; max-width: 380px; }
.news-form input { flex: 1; border: none; outline: none; background: none; font: inherit; color: var(--ink); }
.news-form button { width: 44px; height: 44px; border-radius: 50%; background: var(--red); color: #fff; border: none; display: grid; place-items: center; flex: none; }
.news-form button svg { width: 20px; height: 20px; }
.footer__agree { display: flex; align-items: center; gap: 10px; margin-top: 14px; font-size: .88rem; }
.footer__agree a { color: #fff; text-decoration: underline; }
.footer__links a { display: block; padding: 7px 0; color: #bdbdbd; transition: color .2s; }
.footer__links a:hover { color: #fff; }
.footer__contact li { display: flex; gap: 11px; padding: 7px 0; font-size: .95rem; }
.footer__contact svg { width: 18px; height: 18px; color: var(--red); flex: none; margin-top: 3px; }
.footer__social { display: flex; gap: 10px; margin-top: 6px; }
.footer__social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; color: #fff; transition: background .2s, border-color .2s; }
.footer__social a:hover { background: var(--red); border-color: var(--red); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.08); font-size: .88rem; }
.footer__wordmark { font-family: var(--font-head); font-weight: 800; text-align: center; line-height: .8; color: rgba(255,255,255,.05); font-size: clamp(4rem, 20vw, 17rem); letter-spacing: -.02em; user-select: none; padding-bottom: 10px; }

/* =====================================================================
   MOBILE MENU
   ===================================================================== */
.mobile-menu { position: fixed; inset: 0; z-index: 90; background: var(--dark); color: #fff; padding: 24px; transform: translateX(100%); transition: transform .3s ease; display: flex; flex-direction: column; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.mobile-menu__close { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.12); border: none; color: #fff; display: grid; place-items: center; }
.mobile-menu__close svg { width: 24px; height: 24px; }
.mobile-menu a.m-link { display: block; padding: 16px 6px; font-family: var(--font-head); font-size: 1.4rem; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-menu .btn { margin-top: 24px; width: 100%; }
.scroll-lock { overflow: hidden; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__phone span { display: none; }
  .nav__toggle { display: grid; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__about { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .split, .cta, .tst { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .cta__media { min-height: 240px; }
  .grid--3, .stats { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .tst__names { flex-direction: row; overflow-x: auto; }
  .hero__strip-inner { justify-content: flex-start; gap: 14px 26px; }
  .nav__phone { display: none; }
}
@media (max-width: 560px) {
  .grid--2, .grid--3, .grid--4, .stats { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .topbar__left a:not(:first-child) { display: none; }
  .table-wrap { overflow-x: auto; }
  table.price, table.compare { min-width: 480px; }
  .callfab small { display: none; }
  .footer__top { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
}
