/* ============================================
   Coppervane Heating & Cooling — style.css
   Light/airy · Red #D0102E · Navy #0F2437 · Aqua card
   ============================================ */

:root {
  --red: #d0102e;
  --red-dark: #a80c24;
  --red-tint: #fdeaec;
  --navy: #0f2437;
  --navy-light: #1c3c58;
  --aqua: #cdeaf2;
  --aqua-deep: #9fd6e4;
  --ink: #101820;
  --gray: #5b6a77;
  --line: #e7e5e0;
  --paper: #f6f8f9;
  --white: #ffffff;
  --gold: #f5a623;
  --radius: 10px;
  --pill: 100px;
  --shadow: 0 2px 12px rgba(16, 24, 32, 0.08);
  --shadow-lg: 0 14px 44px rgba(16, 24, 32, 0.16);
  --max: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* sticky header is 78px — keep anchored sections from hiding under it */
  scroll-padding-top: 96px;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
:target { scroll-margin-top: 96px; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--red); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

h1, h2, h3, h4 { line-height: 1.15; color: var(--ink); font-weight: 800; }
.display {
  font-family: "Archivo Black", "Arial Black", "Inter", sans-serif;
  text-transform: uppercase; letter-spacing: -0.5px; font-weight: 900;
}

.section { padding: 72px 0; }
.section-alt { background: var(--paper); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-size: 2.1rem; }
.section-head p { color: var(--gray); margin-top: 10px; }
.kicker {
  display: inline-block; font-size: 0.76rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--red);
  margin-bottom: 10px;
}

/* ---------- Buttons (pills, like reference) ---------- */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: var(--pill);
  font-weight: 800; font-size: 0.85rem; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; text-align: center; border: 2px solid transparent;
  cursor: pointer; transition: all .18s ease; font-family: inherit;
}
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(208,16,46,.28); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: #fff; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--aqua); }
.btn-lg { padding: 17px 36px; font-size: 0.92rem; }

/* ---------- Top bar (light, like reference) ---------- */
.topbar { background: #fff; border-bottom: 1px solid var(--line); font-size: 0.83rem; padding: 9px 0; color: var(--ink); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar .left { display: flex; gap: 22px; align-items: center; }
.topbar a { color: var(--ink); text-decoration: none; font-weight: 600; }
.topbar .hot { color: var(--red); font-weight: 800; }
.topbar .phone { color: var(--red); font-weight: 800; font-size: .95rem; }
@media (max-width: 640px) { .topbar .email { display: none; } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100; background: #fff;
  box-shadow: 0 1px 10px rgba(16,24,32,.07);
}
.header .container { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 16px; }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: radial-gradient(circle at 32% 30%, var(--red) 58%, var(--red-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 1.05rem; letter-spacing: -.5px;
  box-shadow: 0 4px 12px rgba(208,16,46,.3);
}
.logo-text { line-height: 1.1; }
.logo-text strong { display: block; color: var(--ink); font-size: 1.22rem; letter-spacing: .02em; font-family: "Archivo Black","Arial Black",sans-serif; text-transform: uppercase; }
.logo-text span { display: block; font-size: 0.64rem; color: var(--gray); text-transform: uppercase; letter-spacing: .22em; }

.nav { display: flex; gap: 26px; align-items: center; }
.nav a {
  text-decoration: none; color: var(--ink); font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: .07em;
}
.nav a:hover, .nav a.active { color: var(--red); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 1.6rem; color: var(--ink); padding: 6px; }

@media (max-width: 1020px) {
  .nav {
    display: none; position: absolute; top: 78px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 18px 20px 24px;
    box-shadow: var(--shadow-lg); align-items: flex-start; gap: 16px;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
}

@media (max-width: 640px) {
  .header .container { gap: 8px; }
  .header-cta { gap: 4px; }
  .header-cta .btn { display: none; }
}

/* ---------- Hero (photo-sky scene + floating white card) ---------- */
.hero {
  position: relative; padding: 56px 0 120px; overflow: hidden;
  background:
    radial-gradient(900px 340px at 15% 100%, rgba(96,158,86,.55), transparent 70%),
    radial-gradient(1100px 420px at 88% 96%, rgba(72,138,74,.45), transparent 70%),
    linear-gradient(180deg, #b7dcec 0%, #cfe8f0 38%, #e6f2e4 72%, #cfe3c8 100%);
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: 1;
  transition: opacity .55s ease;
}
.hero-video.fading { opacity: 0; }
.hero::after { /* soft ground */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 90px;
  background: linear-gradient(180deg, transparent, rgba(58,112,58,.35));
}

.hero-card-wrap { position: relative; z-index: 2; }
.hero-panel {
  background: rgba(255,255,255,.94); border-radius: 22px; box-shadow: var(--shadow-lg);
  padding: 64px 58px 74px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: start;
}
.hero-copy h1 { font-size: 3.1rem; margin: 14px 0 18px; }
.hero-copy .lead { color: var(--gray); font-size: 1.02rem; max-width: 480px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.hero-badges span {
  background: var(--paper); border: 1px solid var(--line);
  padding: 5px 13px; border-radius: var(--pill); font-size: 0.78rem; font-weight: 700; color: var(--navy);
}
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* Aqua booking card (like reference) */
.hero-card {
  background: var(--aqua); border-radius: 16px; padding: 30px 28px;
  box-shadow: 0 10px 30px rgba(15,36,55,.12);
}
.hero-card h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .06em; text-align: center; color: var(--navy); }
.hero-card .sub { font-size: .84rem; color: #33586b; margin: 8px 0 18px; text-align: center; }

@media (max-width: 940px) {
  .hero { padding: 32px 0 90px; }
  .hero-panel { grid-template-columns: 1fr; padding: 40px 28px 50px; }
  .hero-copy h1 { font-size: 2.2rem; }
}

/* ---------- 3D Heater ---------- */
.heater-stage {
  position: absolute; z-index: 3; bottom: -30px; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 340px;
  cursor: grab;
}
.heater {
  position: relative; width: 170px; height: 260px; margin: 30px auto 0;
  transform-style: preserve-3d;
  transform: rotateX(-6deg) rotateY(-18deg);
  transition: transform .5s ease;
  animation: heater-idle 7s ease-in-out infinite;
}
.heater-stage:hover .heater { animation: none; }
@keyframes heater-idle {
  0%, 100% { transform: rotateX(-6deg) rotateY(-18deg); }
  50%      { transform: rotateX(-6deg) rotateY(14deg); }
}
.heater .face { position: absolute; inset: 0; border-radius: 8px; }
.heater .front {
  background: linear-gradient(180deg, #f4f2ee 0%, #e8e5df 60%, #dcd8d0 100%);
  transform: translateZ(45px);
  border: 1px solid #c9c4bb;
  display: flex; flex-direction: column; align-items: center; padding: 16px 14px;
}
.heater .back  { background: #cfcabf; transform: rotateY(180deg) translateZ(45px); }
.heater .left  { background: linear-gradient(180deg, #e2ded6, #cfcabf); width: 90px; left: 50%; margin-left: -45px; transform: rotateY(-90deg) translateZ(85px); }
.heater .right { background: linear-gradient(180deg, #d8d3ca, #c4beb2); width: 90px; left: 50%; margin-left: -45px; transform: rotateY(90deg) translateZ(85px); }
.heater .top   { background: #efece6; height: 90px; top: 50%; margin-top: -45px; transform: rotateX(90deg) translateZ(130px); }
.heater .bottom{ background: #b5afa2; height: 90px; top: 50%; margin-top: -45px; transform: rotateX(-90deg) translateZ(130px); }

.heater-badge {
  background: var(--red); color: #fff; font-size: .55rem; font-weight: 900;
  letter-spacing: .12em; text-transform: uppercase; padding: 4px 10px;
  border-radius: 3px; margin-bottom: 10px;
}
.heater-display {
  width: 100%; background: #10202e; border-radius: 6px; padding: 8px 10px;
  color: #7fe3ff; font-family: "Courier New", monospace; font-size: .8rem;
  display: flex; justify-content: space-between; align-items: center;
  box-shadow: inset 0 2px 6px rgba(0,0,0,.5);
}
.heater-display b { color: #ffb347; font-size: 1rem; }
.heater-vents { width: 100%; margin-top: 12px; flex: 1; display: flex; flex-direction: column; gap: 7px; }
.heater-vents i {
  display: block; height: 9px; border-radius: 3px;
  background: linear-gradient(180deg, #c7c2b8, #a9a396 70%, #8f8a7c);
  box-shadow: inset 0 -2px 3px rgba(0,0,0,.18);
}
.heater-glow {
  width: 100%; height: 34px; margin-top: 10px; border-radius: 5px;
  background:
    repeating-linear-gradient(90deg, rgba(0,0,0,.35) 0 6px, transparent 6px 12px),
    radial-gradient(60% 140% at 50% 100%, #ffdd8a 0%, #ff8c2e 45%, #d0341b 80%);
  box-shadow: 0 0 22px rgba(255,120,40,.55), inset 0 2px 6px rgba(0,0,0,.4);
  animation: flame-flicker 2.2s ease-in-out infinite;
}
@keyframes flame-flicker {
  0%, 100% { filter: brightness(1); }
  35%      { filter: brightness(1.18); }
  60%      { filter: brightness(.92); }
}
.heater-shadow {
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 26px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(10,20,10,.38), transparent);
}
.heater-label {
  position: absolute; bottom: -52px; left: 50%; transform: translateX(-50%);
  background: #fff; border-radius: var(--pill); padding: 5px 16px;
  font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--navy); box-shadow: var(--shadow); white-space: nowrap;
}
@media (max-width: 940px) {
  .heater-stage { position: relative; bottom: auto; left: auto; transform: none; margin: -50px auto 40px; }
}

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: .74rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .05em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 13px; border: 1.5px solid transparent;
  border-radius: 8px; font-size: .93rem; font-family: inherit; background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); }
.field .err { color: var(--red-dark); font-size: .74rem; display: none; }
.field.invalid input, .field.invalid select { border-color: var(--red); }
.field.invalid .err { display: block; }
.form-note { font-size: .76rem; color: #33586b; margin-top: 10px; text-align: center; }
.form-success {
  display: none; background: #eaf6ec; border: 1px solid #b9e0c1; color: #1e6b32;
  border-radius: 8px; padding: 14px; font-weight: 600; margin-top: 10px; font-size: .9rem;
}

/* ---------- Trust strip ---------- */
.trust-strip { background: #fff; border-bottom: 1px solid var(--line); padding: 26px 0; }
.trust-strip .container { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 700; color: var(--ink); }
.trust-item .ico { font-size: 1.35rem; }
.trust-item small { display: block; font-weight: 400; color: var(--gray); font-size: .78rem; }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 28px; text-decoration: none; color: var(--ink);
  transition: all .18s ease; display: block;
}
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.svc-ico {
  width: 54px; height: 54px; border-radius: 50%; background: var(--red-tint);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 16px;
}
.svc-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.svc-card p { font-size: .9rem; color: var(--gray); margin-bottom: 12px; }
.svc-link { font-weight: 800; color: var(--red); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }

/* ============================================
   PRICING — "What it costs, before we knock"
   Flat Design per ui-ux-pro-max: no gradients,
   no shadows on cards, solid color, 150-200ms.
   ============================================ */
.pricing { padding: 88px 0; background: var(--white); }

.pricing-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: end; padding-bottom: 34px;
  border-bottom: 2px solid var(--ink);
}
.pricing-head h2 {
  font-family: "Lexend", sans-serif; font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.1rem); line-height: 1.05;
  letter-spacing: -0.02em; color: var(--ink);
  text-wrap: balance;
}
.pricing-head p { color: var(--gray); font-size: 1.02rem; max-width: 46ch; }
.pricing-promise { margin-top: 18px; }
.pricing-promise .lbl {
  display: block; font-size: .7rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--red); margin-bottom: 4px;
}
.pricing-promise strong { font-size: 1.05rem; color: var(--ink); font-weight: 700; }
@media (max-width: 860px) {
  .pricing-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
}

/* --- rail --- */
.rail-wrap { position: relative; margin-top: 40px; }
.rail {
  display: grid; grid-auto-flow: column;
  /* 3 up on desktop with the 4th peeking, so the rail reads as scrollable */
  grid-auto-columns: minmax(300px, calc((100% - 40px) / 3));
  gap: 20px; overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  /* room for the card's focus ring + hover border so nothing clips */
  padding: 4px 4px 12px; margin: -4px -4px 0;
  scroll-padding-left: 4px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
@media (max-width: 1040px) { .rail { grid-auto-columns: minmax(290px, calc((100% - 20px) / 2)); } }
@media (max-width: 720px)  { .rail { grid-auto-columns: 86%; } }
.rail::-webkit-scrollbar { display: none; }
@media (prefers-reduced-motion: reduce) { .rail { scroll-behavior: auto; } }

.tier {
  scroll-snap-align: start;
  background: var(--white); border: 2px solid var(--line);
  border-radius: 4px; padding: 32px 30px 30px;
  display: flex; flex-direction: column;
  transition: border-color .18s ease;
  min-width: 0; overflow: hidden;
}
@media (max-width: 720px) { .tier { padding: 26px 22px 24px; } }
.tier:hover { border-color: var(--ink); }
.tier.is-lead { border-color: var(--ink); background: var(--ink); }
.tier.is-lead h3, .tier.is-lead .tier-price b, .tier.is-lead .tier-sub { color: #fff; }
.tier.is-lead .tier-note { color: #b9c4cd; border-color: rgba(255,255,255,.22); }
.tier.is-lead .tier-ico { background: rgba(255,255,255,.1); color: #fff; }
.tier.is-lead .tier-ico svg { stroke: #fff; }

.tier-ico {
  width: 44px; height: 44px; border-radius: 4px; background: var(--red-tint);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.tier-ico svg { width: 22px; height: 22px; stroke: var(--red); stroke-width: 1.75;
  fill: none; stroke-linecap: round; stroke-linejoin: round; }

.tier h3 {
  font-family: "Lexend", sans-serif;
  /* shrink slightly on narrow cards instead of overflowing */
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  font-weight: 600; margin-bottom: 12px; color: var(--ink);
  /* the clipping fix: let long titles wrap instead of running past the card */
  white-space: normal; overflow-wrap: break-word; hyphens: auto;
  max-width: 100%;
}

/* Grid/flex children default to min-width:auto, which lets wide content
   push past the card edge and get clipped. This is the real cause. */
.tier, .tier > *, .tier-price, .tier-actions { min-width: 0; }
.tier-price b { white-space: normal; overflow-wrap: break-word; }
.tier-price b {
  font-family: "Lexend", sans-serif; font-size: 1.9rem; font-weight: 700;
  color: var(--ink); display: block; line-height: 1.1; letter-spacing: -.02em;
}
.tier-sub { font-size: .84rem; color: var(--gray); margin-top: 3px; }
.tier-note {
  font-size: .92rem; color: var(--gray); margin: 18px 0 22px;
  padding-top: 18px; border-top: 1px solid var(--line); flex: 1;
}
.tier-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.tier-link {
  font-size: .84rem; font-weight: 700; color: var(--ink);
  text-decoration: underline; text-underline-offset: 3px;
  min-height: 44px; display: inline-flex; align-items: center;
}
.tier.is-lead .tier-link { color: #fff; }
.tier-link:hover { color: var(--red); }
/* On the dark lead card, --red on near-black is only ~2.8:1 — use a light tint instead */
.tier.is-lead .tier-link:hover { color: #ff8a9c; }
.tier.is-lead .rail-btn:focus-visible,
.tier.is-lead .tier-link:focus-visible { outline-color: #ff8a9c; }

/* rail controls */
.rail-nav { display: flex; gap: 8px; justify-content: flex-end; margin-top: 20px; }
.rail-btn {
  width: 44px; height: 44px; border-radius: 4px; cursor: pointer;
  background: var(--white); border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .18s ease, background .18s ease;
}
.rail-btn:hover:not(:disabled) { border-color: var(--ink); }
.rail-btn:disabled { opacity: .35; cursor: default; }
.rail-btn svg { width: 18px; height: 18px; stroke: var(--ink); stroke-width: 2;
  fill: none; stroke-linecap: round; stroke-linejoin: round; }
.rail-btn:focus-visible, .tier-link:focus-visible, .pricing a:focus-visible {
  outline: 3px solid var(--red); outline-offset: 2px;
}

/* --- emergency line (replaces the bottom bento row) --- */
.pricing-foot {
  margin-top: 40px; padding-top: 26px; border-top: 2px solid var(--ink);
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 22px 40px; flex-wrap: wrap;
}
.pricing-foot .lede {
  font-size: .72rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--red); display: block; margin-bottom: 6px;
}
.pricing-foot .tel {
  font-family: "Lexend", sans-serif; font-size: 1.85rem; font-weight: 700;
  color: var(--ink); text-decoration: none; letter-spacing: -.02em;
  display: inline-block; min-height: 44px;
}
.pricing-foot .tel:hover { color: var(--red); }
.pricing-foot .detail { font-size: .9rem; color: var(--gray); max-width: 52ch; }

/* ---------- Promo banner ---------- */
.promo {
  background: linear-gradient(95deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff; border-radius: 16px; padding: 32px 36px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
  box-shadow: 0 14px 34px rgba(208,16,46,.3);
}
.promo h3 { color: #fff; font-size: 1.45rem; margin-bottom: 4px; }
.promo p { opacity: .93; font-size: .95rem; }
.promo .fine { font-size: .7rem; opacity: .72; margin-top: 6px; }

/* ---------- Stats / why us ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-list { list-style: none; }
.why-list li { display: flex; gap: 14px; margin-bottom: 18px; }
.why-list .ico {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
  background: var(--red-tint); display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.why-list strong { display: block; color: var(--ink); }
.why-list p { font-size: .9rem; color: var(--gray); }
.stats-band { background: var(--navy); color: #fff; border-radius: 16px; padding: 36px; }
.stats-band .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat b { display: block; font-size: 2rem; color: #ff6b81; }
.stat span { font-size: .8rem; color: #b7c6d3; }
@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr; }
  .stats-band .grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Reviews ---------- */
.review-summary { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 34px; flex-wrap: wrap; }
.review-summary .score { font-size: 2.4rem; font-weight: 900; color: var(--ink); }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 26px; }
.review-card .stars { font-size: .9rem; }
.review-card p { font-size: .92rem; margin: 10px 0 14px; }
.review-meta { display: flex; justify-content: space-between; font-size: .8rem; color: var(--gray); }
.review-meta b { color: var(--ink); }
.review-src { font-size: .72rem; }
@media (max-width: 860px) { .review-grid { grid-template-columns: 1fr; } }

/* ---------- Service area ---------- */
.area-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.area-cities { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.area-cities span {
  background: #fff; border: 1px solid var(--line); border-radius: var(--pill);
  padding: 6px 14px; font-size: .84rem; font-weight: 700; color: var(--navy);
}
.area-map {
  background: radial-gradient(400px 300px at 60% 40%, var(--navy-light), var(--navy));
  border-radius: 16px; min-height: 300px; display: flex; align-items: center;
  justify-content: center; color: #fff; position: relative; overflow: hidden;
}
.area-map .pin { text-align: center; }
.area-map .pin .dot { font-size: 2.2rem; }
@media (max-width: 860px) { .area-wrap { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  padding: 18px 4px; font-size: 1.02rem; font-weight: 800; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: inherit;
}
.faq-q::after { content: "+"; font-size: 1.4rem; color: var(--red); transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 4px 18px; color: var(--gray); font-size: .95rem; }
.faq-item.open .faq-a { display: block; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: #fff; text-align: center; padding: 68px 0; }
.cta-band h2 { color: #fff; font-size: 2rem; margin-bottom: 10px; }
.cta-band p { color: #b7c6d3; margin-bottom: 28px; }

/* ---------- Footer ---------- */
.footer { background: #0b1b2a; color: #9fb2c1; font-size: .9rem; }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding: 56px 0 40px; }
.footer h4 { color: #fff; font-size: .85rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .1em; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 9px; }
.footer a { color: #9fb2c1; text-decoration: none; }
.footer a:hover { color: #fff; }
.footer .about { max-width: 300px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; font-size: .78rem;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.license-line { font-size: .78rem; color: #7e93a5; margin-top: 12px; line-height: 1.7; }
@media (max-width: 860px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-main { grid-template-columns: 1fr; } }

/* ---------- Mobile sticky call bar ---------- */
.mobile-call {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--red); padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 16px rgba(0,0,0,.18);
}
.mobile-call a { display: block; text-align: center; color: #fff; text-decoration: none; font-weight: 800; font-size: 1.05rem; }
@media (max-width: 700px) {
  .mobile-call { display: block; }
  body { padding-bottom: 64px; }
}
