/* ============================================================
   Mike's Handyman — practical, trustworthy, handyman-industry
   Palette: deep blue · safety orange · white · slate text
============================================================ */

:root {
  --blue:         #0b3d91;
  --blue-2:       #082e6e;
  --blue-3:       #0a54c2;
  --blue-soft:    #e8eefc;

  /* Action orange — passes WCAG AA (4.5:1) with white text */
  --orange:         #c24a0a;
  --orange-2:       #a63d08;
  --orange-soft:    #fce8dc;
  /* Decorative bright orange — use only WITHOUT white text on top */
  --orange-bright:  #ff6b1f;

  --ink:          #0f172a;
  --text:         #1f2937;
  --muted:        #5b6572;
  --line:         #e4e7ec;
  --line-2:       #cbd2db;
  --bg:           #ffffff;
  --bg-2:         #f6f8fb;
  --bg-3:         #eef2f7;
  --green:        #16a34a;
  --yellow:       #f5b700;

  --font:         "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    16px;
  --radius-xl:    20px;

  --shadow-1:     0 1px 2px rgba(15,23,42,.06), 0 2px 6px rgba(15,23,42,.04);
  --shadow-2:     0 4px 10px rgba(15,23,42,.06), 0 20px 40px -20px rgba(15,23,42,.22);
  --shadow-3:     0 30px 60px -20px rgba(11,61,145,.3);

  /* Tokenized button glow shadows */
  --shadow-blue-btn:     0 6px 14px -6px rgba(11,61,145,.55);
  --shadow-blue-btn-hv:  0 10px 24px -8px rgba(11,61,145,.7);
  --shadow-orange-btn:     0 8px 18px -6px rgba(194,74,10,.55);
  --shadow-orange-btn-hv:  0 14px 30px -8px rgba(194,74,10,.7);

  --ease:         cubic-bezier(.2,.7,.2,1);
}

/* ========== Skip to content ========== */
.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  z-index: 999;
  background: var(--blue);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: top .15s var(--ease);
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--orange-bright);
  outline-offset: -3px;
}

/* ========== Reset ========== */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
.hero__img img, .case__photo img { width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--orange); color: #fff; }

h1, h2, h3, h4 { color: var(--ink); letter-spacing: -0.02em; margin: 0; font-weight: 800; line-height: 1.15; }
h1 { font-size: clamp(32px, 4.6vw, 56px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.05; }
h2 { font-size: clamp(26px, 3.4vw, 40px); }
h3 { font-size: 20px; font-weight: 700; }
p  { margin: 0; }

/* ========== Layout ========== */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow--light { color: var(--orange-bright); }

.sec-head { max-width: 780px; margin-bottom: 44px; }
.sec-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.sec-head h2 { margin: 10px 0 12px; }
.sec-head p  { color: var(--muted); font-size: 17px; max-width: 72ch; }
.sec-head--center p { margin-left: auto; margin-right: auto; }

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .15s var(--ease), background .15s var(--ease), color .15s var(--ease), box-shadow .2s var(--ease);
  min-height: 44px;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--xl  { padding: 16px 26px; font-size: 16px; min-height: 54px; }
.btn--xxl { padding: 20px 32px; font-size: 18px; min-height: 64px; font-weight: 800; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-blue-btn);
}
.btn--primary:hover { background: var(--blue-2); transform: translateY(-1px); box-shadow: var(--shadow-blue-btn-hv); }

.btn--secondary {
  background: #fff;
  color: var(--blue);
  border-color: var(--line-2);
}
.btn--secondary:hover { background: var(--blue-soft); border-color: var(--blue); }

.btn--orange {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-orange-btn);
}
.btn--orange:hover { background: var(--orange-2); transform: translateY(-1px); box-shadow: var(--shadow-orange-btn-hv); }

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn--outline-light:hover { background: #fff; color: var(--blue); border-color: #fff; }

/* ========== Callbar (top) ========== */
.callbar {
  display: block;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  transition: background .15s;
}
.callbar:hover { background: var(--orange-2); }
.callbar__row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 24px;
  font-size: 14px;
}
.callbar__dot {
  position: relative;
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}
.callbar__dot::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  animation: pulse 1.8s infinite;
  pointer-events: none;
  will-change: transform, opacity;
}
@keyframes pulse {
  0%   { transform: scale(.5); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}
.callbar__text { opacity: .95; }
.callbar__phone {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800;
  font-size: 15px;
}
@media (max-width: 720px) {
  .callbar__text { display: none; }
  .callbar__phone { margin-left: 0; }
}

/* ========== Nav ========== */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s;
}
.nav.is-scrolled { box-shadow: 0 4px 12px -4px rgba(15,23,42,.08); }
.nav__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}

.brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.brand__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--blue);
  border-radius: 10px;
  flex-shrink: 0;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-size: 17px; font-weight: 800; letter-spacing: -0.01em; color: var(--ink); }
.brand__sub  { font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }

.nav__links {
  display: flex; gap: 28px;
  font-size: 15px; font-weight: 600;
  color: var(--text);
}
.nav__links a { padding: 6px 0; transition: color .15s; }
.nav__links a:hover { color: var(--blue); }

.nav__cta { font-size: 14px; padding: 10px 16px; min-height: 40px; }

.burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  border-radius: 8px;
  border: 1px solid var(--line-2);
}
.burger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  display: none;
  padding: 8px 24px 20px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.drawer a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 17px; font-weight: 600; }
.drawer a:last-child { border: 0; margin-top: 12px; }
.nav.is-open .drawer { display: block; }

@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .burger { display: flex; }
}

/* ========== Hero ========== */
.hero {
  padding: 56px 0 72px;
  background:
    linear-gradient(180deg, var(--bg-2) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,31,.08), transparent 70%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__copy h1 {
  margin: 16px 0 20px;
  color: var(--ink);
}
.hero__lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 32px;
}
.hero__lede strong { color: var(--ink); font-weight: 700; }

.hero__cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__trust {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 8px;
  box-shadow: var(--shadow-1);
}
.hero__trust li {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 4px 12px;
  border-right: 1px solid var(--line);
}
.hero__trust li:last-child { border-right: 0; }
.hero__trust strong {
  display: inline-flex; align-items: baseline;
  font-size: 26px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; line-height: 1;
}
.hero__trust em { font-style: normal; color: var(--yellow); font-size: 18px; margin-left: 2px; }
.hero__trust span { font-size: 12px; color: var(--muted); margin-top: 6px; font-weight: 500; }

.hero__img {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-3);
  overflow: hidden;
  position: relative;
}

@media (max-width: 960px) {
  .hero { padding: 24px 0 40px; }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  /* Unwrap .hero__copy so children become grid items we can reorder individually */
  .hero__copy { display: contents; }
  .hero__copy > .eyebrow     { order: 1; }
  .hero__copy > h1           { order: 2; margin: 4px 0 0; }
  .hero__copy > .hero__lede  { order: 3; margin: 0; font-size: 16.5px; }
  .hero__img                 { order: 4; }
  .hero__copy > .hero__cta   { order: 5; margin: 0; }
  .hero__copy > .hero__trust { order: 6; }

  /* Full-bleed hero image — edge to edge, balanced height */
  .hero__img {
    margin-left: -24px;
    margin-right: -24px;
    aspect-ratio: 1/1;
    max-height: 440px;
    border-radius: 0;
    box-shadow: 0 12px 28px -12px rgba(15,23,42,.25);
  }
  .hero__img .ph__tag {
    left: 16px; bottom: 16px;
    padding: 7px 12px;
    font-size: 12.5px;
  }

  /* Equal-width stacked CTAs */
  .hero__cta { flex-direction: column; gap: 10px; }
  .hero__cta .btn { width: 100%; }

  /* Tighter trust stats */
  .hero__trust {
    grid-template-columns: repeat(2,1fr);
    gap: 14px 0;
    padding: 14px 10px;
  }
  .hero__trust li:nth-child(2) { border-right: 0; }
  .hero__trust li:nth-child(-n+2) { border-bottom: 1px solid var(--line); padding-bottom: 14px; }
  .hero__trust strong { font-size: 22px; }
  .hero__trust em { font-size: 15px; }
  .hero__trust span { font-size: 11.5px; margin-top: 4px; }
}

/* ========== Placeholders ========== */
.ph {
  position: relative;
  margin: 0;
  background:
    linear-gradient(135deg, var(--blue-soft), #d6e1f7);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--blue);
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(11,61,145,.04) 0 2px, transparent 2px 16px);
  pointer-events: none;
}
.ph::after {
  content: "";
  position: absolute; inset: 14px;
  border: 2px dashed rgba(11,61,145,.2);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
}
.ph__tag {
  position: absolute;
  left: 20px; bottom: 20px;
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-1);
  max-width: calc(100% - 40px);
}
.ph__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
}
.ph__chip {
  position: absolute; top: 16px; left: 16px;
  background: var(--blue); color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  z-index: 2;
}
.ph__chip--before { background: #475569; }
.ph__chip--after  { background: var(--orange); }

/* ========== Trust bar ========== */
.trust {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust__row {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 24px;
  padding: 28px 24px;
}
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.trust__icon {
  display: block;
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  padding: 15px;
  border-radius: 12px;
  background: #fff;
  color: var(--blue);
  box-shadow: var(--shadow-1);
  flex-shrink: 0;
}
.trust__icon svg {
  display: block;
  width: 22px;
  height: 22px;
}
.trust__item strong { display: block; font-size: 14px; color: var(--ink); font-weight: 700; }
.trust__item span  { display: block; font-size: 12.5px; color: var(--muted); }

@media (max-width: 1100px) { .trust__row { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 640px)  { .trust__row { grid-template-columns: repeat(2,1fr); gap: 18px; padding: 20px; } }

/* ========== Services ========== */
.services { padding: 80px 0; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.svc {
  grid-column: span 2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.svc:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: var(--blue);
}
.svc__icon {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  margin-bottom: 18px;
}
.svc h3 { margin-bottom: 10px; color: var(--ink); }
.svc > p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }

.svc__list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.svc__list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--text);
}
.svc__list li:last-child { border-bottom: 0; }
.svc__list li span {
  font-weight: 700;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}

.services__cta {
  margin-top: 32px;
  text-align: center;
  font-size: 16px;
  color: var(--muted);
}
.services__cta strong { color: var(--orange); font-weight: 800; }

@media (max-width: 1000px) { .services__grid { grid-template-columns: repeat(2,1fr); } .svc { grid-column: span 1; } }
@media (max-width: 640px)  { .services { padding: 56px 0; } .services__grid { grid-template-columns: 1fr; } .svc { grid-column: span 1; padding: 24px; } }

/* ========== How it works ========== */
.how {
  padding: 80px 0;
  background: var(--blue);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.how::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(255,107,31,.15), transparent 60%),
    radial-gradient(500px 300px at 0% 100%, rgba(255,255,255,.05), transparent 60%);
}
.how .sec-head h2 { color: #fff; }
.how .sec-head p { color: rgba(255,255,255,.75); }
.how .eyebrow { color: var(--orange); }

.how__steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
  position: relative; z-index: 1;
}
.hstep {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(6px);
}
.hstep__num {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  font-weight: 800; font-size: 18px;
  margin-bottom: 18px;
}
.hstep h3 { color: #fff; margin-bottom: 10px; }
.hstep p { color: rgba(255,255,255,.75); font-size: 15px; margin-bottom: 16px; }
.hstep__meta {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  color: var(--orange-bright);
  letter-spacing: .04em;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .how { padding: 56px 0; }
  .how__steps { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) { .how__steps { grid-template-columns: 1fr; } }

/* ========== Work / Before-After ========== */
.work { padding: 80px 0; background: var(--bg-2); }
.work__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.case {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-1);
}
.case__head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; flex-wrap: wrap;
  padding: 4px 4px 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.case__head h3 { font-size: 20px; color: var(--ink); font-weight: 700; }
.case__meta {
  display: flex; gap: 16px;
  font-size: 13px; font-weight: 600;
  color: var(--muted);
}
.case__meta span { padding-left: 16px; border-left: 1px solid var(--line); }
.case__meta span:first-child { border-left: 0; padding-left: 0; }

.case__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.case__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
}

@media (max-width: 640px) {
  .work { padding: 56px 0; }
  .case__pair { grid-template-columns: 1fr; }
}

/* ========== Pricing ========== */
.pricing { padding: 80px 0; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  align-items: stretch;
}
.plan {
  display: flex; flex-direction: column;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: transform .2s var(--ease), border-color .2s, box-shadow .2s;
}
.plan:hover { border-color: var(--blue); box-shadow: var(--shadow-2); transform: translateY(-3px); }
.plan--feat {
  border-color: var(--blue);
  box-shadow: var(--shadow-3);
  background: linear-gradient(180deg, #fff, var(--blue-soft));
}
.plan__tag {
  position: absolute;
  top: -12px; left: 32px;
  background: var(--orange);
  color: #fff;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.plan__head h3 { font-size: 22px; color: var(--ink); margin-bottom: 6px; }
.plan__head p { color: var(--muted); font-size: 14px; }

.plan__price {
  display: flex; align-items: baseline; gap: 6px;
  flex-wrap: wrap;
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.plan__price .dollar { font-size: 18px; color: var(--muted); font-weight: 700; }
.plan__price .num    { font-size: 44px; font-weight: 900; color: var(--ink); letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.plan__price .per    { font-size: 12px; color: var(--muted); margin-left: auto; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }

.plan__list { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.plan__list li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 14.5px;
  color: var(--text);
}
.plan__list li::before {
  content: "";
  position: absolute; left: 0; top: 14px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--green);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19l12-12-1.4-1.4z'/></svg>") center/70% no-repeat, linear-gradient(#000,#000);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19l12-12-1.4-1.4z'/></svg>") center/70% no-repeat;
}

.pricing__note {
  margin-top: 32px;
  text-align: center;
  font-size: 15px;
  color: var(--muted);
}
.pricing__note strong { color: var(--orange); font-weight: 800; }

@media (max-width: 960px) { .pricing__grid { grid-template-columns: 1fr; } }

/* ========== Reviews ========== */
.reviews { padding: 80px 0; background: var(--bg-2); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0;
  transition: transform .2s var(--ease), box-shadow .2s;
  display: flex; flex-direction: column;
}
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.review__stars {
  color: var(--yellow);
  font-size: 18px; letter-spacing: 2px;
  margin-bottom: 14px;
}
.review blockquote {
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0 0 20px;
  flex: 1;
}
.review figcaption {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: grid; gap: 3px;
}
.review figcaption strong { font-size: 14.5px; color: var(--ink); font-weight: 700; }
.review figcaption span { font-size: 12.5px; color: var(--muted); }
.review__src {
  display: inline-block !important;
  margin-top: 4px !important;
  font-weight: 700 !important;
  color: var(--blue) !important;
  font-size: 11.5px !important;
  letter-spacing: .04em;
  text-transform: uppercase;
}

@media (max-width: 960px) { .reviews__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .reviews__grid { grid-template-columns: 1fr; } }

/* ========== Service area ========== */
.area { padding: 80px 0; }
.area__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.area__copy h2 { margin: 10px 0 16px; }
.area__copy > p { color: var(--muted); font-size: 17px; margin-bottom: 28px; max-width: 56ch; }

.area__cities {
  display: grid; gap: 0;
  border-top: 1px solid var(--line);
}
.area__city {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.area__city strong { font-size: 16px; color: var(--ink); font-weight: 700; }
.area__city span { font-size: 14.5px; color: var(--muted); }

.area__map {
  position: relative;
  margin: 0;
  aspect-ratio: 1/1;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  background: var(--bg-2);
}
.area__map iframe {
  width: 100%; height: 100%;
  display: block;
}
.area__map-cap {
  position: absolute;
  left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-2);
  z-index: 2;
}

@media (max-width: 900px) {
  .area__grid { grid-template-columns: 1fr; gap: 32px; }
  .area__city { grid-template-columns: 1fr; gap: 4px; }
  .area__map { min-height: 320px; }
}

/* ========== FAQ ========== */
.faq { padding: 80px 0; background: var(--bg-2); }
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.faq__head h2 { margin: 10px 0 14px; }
.faq__head p { color: var(--muted); font-size: 16px; }
.faq__head a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

.faq__list { display: grid; gap: 12px; }
.qa {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.qa[open] { border-color: var(--blue); }
.qa summary {
  list-style: none;
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  transition: background .15s;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { background: var(--bg-2); }
.qa summary i {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  position: relative;
  flex-shrink: 0;
  transition: background .2s, color .2s, transform .25s;
}
.qa summary i::before,
.qa summary i::after {
  content: ""; position: absolute;
  background: currentColor;
  border-radius: 2px;
}
.qa summary i::before { top: 50%; left: 7px; right: 7px; height: 2px; transform: translateY(-50%); }
.qa summary i::after  { left: 50%; top: 7px; bottom: 7px; width: 2px; transform: translateX(-50%); transition: transform .25s; }
.qa[open] summary i { background: var(--blue); color: #fff; }
.qa[open] summary i::after { transform: translateX(-50%) scaleY(0); }

.qa__body {
  padding: 0 24px 22px;
  color: var(--text);
  font-size: 15.5px;
  max-width: 68ch;
}
.qa__body p { margin: 0; }
.qa__body strong { color: var(--ink); font-weight: 700; }

@media (max-width: 960px) {
  .faq { padding: 56px 0; }
  .faq__grid { grid-template-columns: 1fr; gap: 32px; }
  .qa summary { font-size: 16px; padding: 18px 20px; }
}

/* ========== CTA / Contact ========== */
.cta {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--blue-2) 0%, var(--blue) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 0% 0%, rgba(255,107,31,.18), transparent 60%),
    radial-gradient(500px 300px at 100% 100%, rgba(255,255,255,.06), transparent 60%);
}
.cta__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.cta__copy h2 { color: #fff; margin: 10px 0 16px; }
.cta__lede {
  color: rgba(255,255,255,.85);
  font-size: 17px;
  max-width: 56ch;
  margin-bottom: 28px;
}
.cta__lede strong { color: #fff; font-weight: 700; }

.cta__big {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 28px;
}

.cta__perks {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.cta__perks li {
  position: relative;
  padding-left: 30px;
  color: rgba(255,255,255,.85);
  font-size: 15px;
}
.cta__perks li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

/* Quote form */
.quote {
  background: #fff;
  color: var(--text);
  padding: 32px;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow-3);
}
.quote__head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  gap: 14px;
  flex-wrap: wrap;
}
.quote__head h3 { font-size: 22px; color: var(--ink); }
.quote__badge {
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--green);
  background: #dcfce7;
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.field input, .field select, .field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--line-2);
  border-radius: 10px;
  background: #fff;
  font-size: 15.5px;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11,61,145,.12);
}
.field textarea { resize: vertical; min-height: 88px; font-family: var(--font); }
.field__row { display: grid; grid-template-columns: 1.5fr 1fr; gap: 12px; }
@media (max-width: 480px) { .field__row { grid-template-columns: 1fr; } }

.quote__fine {
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  margin: 0;
}
.quote.is-sent { text-align: center; }

@media (max-width: 960px) {
  .cta { padding: 56px 0; }
  .cta__grid { grid-template-columns: 1fr; gap: 36px; }
  .quote { padding: 24px; }
}

/* ========== Footer ========== */
.foot {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 64px 0 24px;
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.brand--light .brand__mark { background: #fff; color: var(--blue); }
.brand--light .brand__name { color: #fff; }
.brand--light .brand__sub  { color: rgba(255,255,255,.55); }

.foot__brand p { margin: 20px 0 18px; font-size: 14.5px; max-width: 42ch; }
.foot__brand address { font-style: normal; font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.7; }
.foot__brand address strong { color: #fff; }
.foot__brand address a { color: var(--orange-bright); font-weight: 600; }

.foot__col h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.foot__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot__col a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: rgba(255,255,255,.7);
  font-size: 14.5px;
  transition: color .15s;
}
.foot__col a:hover { color: var(--orange-bright); }
.foot__col li { font-size: 14.5px; min-height: 32px; display: flex; align-items: center; }

.foot__badges {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 18px;
}
.foot__badges span {
  font-size: 11px; font-weight: 700;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.75);
  letter-spacing: .06em;
}

.foot__base {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px 0;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.foot__base a { color: rgba(255,255,255,.6); }
.foot__base a:hover { color: var(--orange-bright); }

@media (max-width: 900px) {
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot__brand { grid-column: 1 / -1; }
  .foot__base { flex-direction: column; text-align: center; }
}

/* ========== Sticky mobile call button ========== */
.sticky-call {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 80;
  align-items: center; gap: 12px;
  padding: 12px 14px 12px 12px;
  background: var(--orange);
  color: #fff;
  border-radius: 16px;
  box-shadow:
    0 10px 30px -8px rgba(194,74,10,.55),
    0 2px 8px rgba(15,23,42,.12);
  font-weight: 700;
  transition: transform .12s var(--ease), background .15s var(--ease);
}
.sticky-call:hover { background: var(--orange-2); }
.sticky-call:active { transform: scale(.985); }

.sticky-call__icon {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: rgba(255,255,255,.18);
  border-radius: 12px;
}

.sticky-call__text {
  display: flex; flex-direction: column; line-height: 1.1;
  min-width: 0;
}
.sticky-call__text strong { font-size: 15px; font-weight: 800; letter-spacing: -0.01em; }
.sticky-call__text span { font-size: 13.5px; opacity: .95; font-weight: 600; margin-top: 3px; }

.sticky-call__status {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px 5px 8px;
  background: rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.sticky-call__pulse {
  position: relative;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}
.sticky-call__pulse::after {
  content: "";
  position: absolute; inset: -3px;
  border-radius: 50%;
  background: rgba(74,222,128,.45);
  animation: pulse 1.8s infinite;
  pointer-events: none;
}

@media (max-width: 960px) {
  .sticky-call { display: inline-flex; }
  main { padding-bottom: 96px; }
}
@media (max-width: 360px) {
  .sticky-call__status { display: none; }
}

/* ========== Reveal ========== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .callbar__dot { animation: none; }
}
