/* H2G Handyman — Design tokens */
:root {
  /* Blue scheme inspired by H2G logo */
  --navy-900: #0a1f3d;
  --navy-800: #0f2a52;
  --navy-700: #14366b;
  --blue-600: #1e5bb8;
  --blue-500: #2d72d9;
  --blue-400: #4a8def;
  --blue-50:  #eaf2fb;

  --ink-900: #0c1421;
  --ink-700: #2b3849;
  --ink-500: #5a6878;
  --ink-300: #9aa5b3;
  --line:    #e2e7ee;

  --bg:      #f6f8fb;
  --paper:   #ffffff;
  --warn:    #f4b740;

  --shadow-sm: 0 1px 2px rgba(10,31,61,.06), 0 1px 1px rgba(10,31,61,.04);
  --shadow-md: 0 8px 24px rgba(10,31,61,.08), 0 2px 6px rgba(10,31,61,.06);
  --shadow-lg: 0 24px 60px rgba(10,31,61,.18);

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  --maxw: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink-900);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Archivo', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--navy-900);
  margin: 0 0 .4em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.2rem; font-weight: 700; }
p  { margin: 0 0 1em; color: var(--ink-700); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue-600);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--blue-600);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: var(--r-md);
  font-weight: 700; font-size: 15px; letter-spacing: .01em;
  border: none; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-600); color: white;
  box-shadow: 0 4px 14px rgba(30,91,184,.32);
}
.btn-primary:hover { background: var(--blue-500); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(30,91,184,.4); }
.btn-ghost {
  background: transparent; color: var(--paper); border: 1.5px solid rgba(255,255,255,.4);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); }
.btn-dark {
  background: var(--navy-900); color: white;
}
.btn-dark:hover { background: var(--navy-800); transform: translateY(-1px); }

/* Image placeholders */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      rgba(30,91,184,.08) 0 12px,
      rgba(30,91,184,.04) 12px 24px),
    var(--blue-50);
  border: 1px dashed rgba(30,91,184,.4);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--blue-600);
  text-align: center;
  padding: 16px;
  overflow: hidden;
}
.ph .ph-label {
  background: var(--paper);
  border: 1px solid rgba(30,91,184,.3);
  padding: 6px 10px;
  border-radius: 4px;
  max-width: 80%;
}
.ph-dark {
  background:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,.06) 0 12px,
      rgba(255,255,255,.02) 12px 24px),
    rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
}
.ph-dark .ph-label {
  background: rgba(0,0,0,.35);
  border-color: rgba(255,255,255,.2);
  color: white;
}

/* ── Top utility bar ── */
.topbar {
  background: var(--navy-900); color: white;
  font-size: 13px;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; padding: 10px 24px; gap: 16px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.85); display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: white; }
.topbar .top-right { display: flex; gap: 22px; align-items: center; }
.topbar .icon { width: 14px; height: 14px; }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .b1 { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 22px; color: var(--navy-900); letter-spacing: -.02em; }
.brand-text .b2 { font-size: 11px; font-family: 'JetBrains Mono', monospace; color: var(--blue-600); margin-top: 3px; letter-spacing: .08em; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-weight: 600; font-size: 14px; color: var(--ink-700); }
.nav-links a:hover { color: var(--blue-600); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-btn svg { width: 26px; height: 26px; color: var(--navy-900); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  color: white;
  position: relative; overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 85% 20%, rgba(74,141,239,.18), transparent),
    radial-gradient(600px 300px at 10% 90%, rgba(30,91,184,.2), transparent);
}
.hero .wrap {
  position: relative;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
  padding: 80px 24px 100px;
  align-items: center;
}
.hero h1 { color: white; }
.hero h1 .accent { color: var(--blue-400); }
.hero p.lede { font-size: 1.15rem; color: rgba(255,255,255,.82); max-width: 540px; margin-bottom: 32px; }
.hero .eyebrow { color: var(--blue-400); }
.hero .eyebrow::before { background: var(--blue-400); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 40px;
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.trust-item { display: flex; gap: 12px; align-items: center; }
.trust-item .num { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 28px; color: white; }
.trust-item .lbl { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.3; }

.hero-art { position: relative; aspect-ratio: 4/5; }
.hero-art .ph { position: absolute; inset: 0; }
.hero-art .hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 30px 60px -20px rgba(10,31,61,.45), 0 0 0 1px rgba(255,255,255,.05);
}
.about-art .about-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 50px -18px rgba(10,31,61,.25), 0 0 0 1px rgba(30,91,184,.08);
}
.hero-art .badge {
  position: absolute; bottom: -28px; left: -28px;
  background: var(--paper); color: var(--navy-900);
  border-radius: var(--r-lg); padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex; gap: 14px; align-items: center;
}
.hero-art .badge .price { font-family: 'Archivo', sans-serif; font-size: 36px; font-weight: 900; color: var(--blue-600); line-height: 1; }
.hero-art .badge .meta  { font-size: 12px; color: var(--ink-500); }
.hero-art .badge .meta strong { color: var(--ink-900); display: block; font-size: 14px; }

/* ── Section ── */
section { padding: 90px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head p { font-size: 1.05rem; }

/* ── Services ── */
.services { background: var(--bg); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.svc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 22px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  cursor: default;
}
.svc:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--blue-400); }
.svc .icon-tile {
  width: 44px; height: 44px;
  background: var(--blue-50);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-600);
  margin-bottom: 16px;
}
.svc .icon-tile svg { width: 24px; height: 24px; }
.svc h3 { margin: 0 0 6px; font-size: 16px; color: var(--navy-900); }
.svc p { font-size: 13.5px; color: var(--ink-500); margin: 0; line-height: 1.5; }

/* ── About / split ── */
.about .wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.about-art { aspect-ratio: 5/6; }
.about-art .ph { position: relative; height: 100%; width: 100%; }
.about ul.checklist {
  list-style: none; padding: 0; margin: 24px 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px;
}
.about ul.checklist li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; color: var(--ink-700); font-weight: 500;
}
.about ul.checklist li::before {
  content: ""; flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--blue-600);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/></svg>") center / contain no-repeat;
  margin-top: 1px;
}

/* ── Why us / features ── */
.why { background: var(--navy-900); color: white; position: relative; overflow: hidden; }
.why::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 400px at 90% 100%, rgba(74,141,239,.16), transparent);
}
.why .wrap { position: relative; }
.why h2 { color: white; }
.why .section-head p { color: rgba(255,255,255,.75); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.feat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  padding: 28px 24px;
  border-radius: var(--r-md);
}
.feat .num {
  font-family: 'Archivo', sans-serif;
  font-size: 14px; font-weight: 800;
  color: var(--blue-400);
  letter-spacing: .14em;
  display: block; margin-bottom: 14px;
}
.feat h3 { color: white; font-size: 18px; margin-bottom: 8px; }
.feat p { color: rgba(255,255,255,.7); font-size: 14px; margin: 0; }

/* ── Pricing strip ── */
.pricing { background: var(--paper); }
.price-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.price-left {
  background: linear-gradient(135deg, var(--blue-600), var(--navy-700));
  color: white;
  padding: 56px 48px;
}
.price-left .eyebrow { color: rgba(255,255,255,.85); }
.price-left .eyebrow::before { background: rgba(255,255,255,.85); }
.price-left .price-num {
  font-family: 'Archivo', sans-serif; font-weight: 900;
  font-size: 96px; line-height: 1;
  margin: 18px 0 6px;
  letter-spacing: -.04em;
  display: flex; align-items: flex-start; gap: 6px;
}
.price-left .price-num .sym { font-size: 40px; margin-top: 12px; }
.price-left .price-num .per { font-size: 18px; align-self: flex-end; margin: 0 0 14px 4px; opacity: .85; font-weight: 600; }
.price-left h3 { color: white; font-size: 26px; margin-bottom: 12px; }
.price-left p { color: rgba(255,255,255,.85); margin: 0; }
.price-right { padding: 56px 48px; background: var(--paper); }
.price-right h4 { font-size: 18px; color: var(--navy-900); margin-bottom: 18px; }
.price-right ul { list-style: none; padding: 0; margin: 0 0 28px; }
.price-right ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14.5px;
}
.price-right ul li:last-child { border-bottom: none; }
.price-right ul li .lbl { color: var(--ink-700); font-weight: 500; }
.price-right ul li .v { font-family: 'JetBrains Mono', monospace; color: var(--blue-600); font-weight: 600; font-size: 13px; }

/* ── Process ── */
.process { background: var(--bg); }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  position: relative;
}
.step {
  background: var(--paper); border-radius: var(--r-md);
  padding: 30px 26px;
  border: 1px solid var(--line);
  position: relative;
}
.step .step-num {
  position: absolute; top: -16px; left: 24px;
  width: 36px; height: 36px;
  background: var(--blue-600); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Archivo', sans-serif; font-weight: 800;
  box-shadow: 0 4px 12px rgba(30,91,184,.35);
}
.step h3 { font-size: 17px; margin: 8px 0 6px; color: var(--navy-900); }
.step p { font-size: 13.5px; color: var(--ink-500); margin: 0; }

/* ── Testimonials ── */
.testimonials { background: var(--paper); overflow: hidden; }
.t-marquee {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.t-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: t-scroll 60s linear infinite;
  padding: 12px 0;
}
.t-track:hover { animation-play-state: paused; }
@keyframes t-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .t-track { animation: none; }
}
.t {
  flex: 0 0 380px;
  width: 380px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px 28px;
  display: flex; flex-direction: column;
}
.t .stars { color: var(--warn); font-size: 18px; letter-spacing: 1px; margin-bottom: 14px; }
.t blockquote { font-size: 15px; color: var(--ink-700); margin: 0 0 22px; line-height: 1.6; font-style: normal; }
.t .who { display: flex; gap: 12px; align-items: center; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.t .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue-50); color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
}
.t .who .name { font-weight: 700; font-size: 14.5px; color: var(--navy-900); }
.t .who .meta { font-size: 12.5px; color: var(--ink-500); }

/* ── Service area ── */
.area { background: var(--bg); }
.area-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.area-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 18px;
  margin-top: 22px;
}
.area-list .city {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 12px 16px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500; color: var(--ink-700);
  display: flex; align-items: center; gap: 8px;
}
.area-list .city::before {
  content: ""; width: 6px; height: 6px; background: var(--blue-500); border-radius: 50%;
}
.area-art .ph { aspect-ratio: 4/3; }
.map-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 14px;
  box-shadow: var(--shadow-md);
}
.map-card svg { width: 100%; height: auto; display: block; border-radius: var(--r-md); }
.svc { cursor: pointer; }

/* ── FAQ ── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: 'Archivo', sans-serif;
  font-size: 17px; font-weight: 700; color: var(--navy-900);
  text-align: left;
}
.faq-q .plus { font-size: 24px; color: var(--blue-600); transition: transform .3s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(0.4, 0, 0.2, 1), padding .4s cubic-bezier(0.4, 0, 0.2, 1), opacity .3s ease;
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.6;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}
.faq-item.open .faq-a {
  max-height: 220px;
  padding-top: 8px;
  padding-bottom: 22px;
  opacity: 1;
}

/* ── CTA strip ── */
.cta-strip {
  background: linear-gradient(135deg, var(--blue-600), var(--navy-800));
  color: white; padding: 70px 0;
}
.cta-strip .wrap {
  display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap;
}
.cta-strip h2 { color: white; margin-bottom: 8px; }
.cta-strip p { color: rgba(255,255,255,.85); margin: 0; max-width: 520px; }
.cta-strip .actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Contact ── */
.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.info-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.info-card .info-icon {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--blue-600); color: white;
  display: flex; align-items: center; justify-content: center;
}
.info-card .info-icon svg { width: 22px; height: 22px; }
.info-card h4 { margin: 0 0 4px; font-size: 15px; color: var(--navy-900); font-family: 'Inter', sans-serif; font-weight: 700; }
.info-card p { margin: 0; font-size: 14.5px; color: var(--ink-700); line-height: 1.5; }
.info-card a { color: var(--blue-600); font-weight: 600; }

.form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-700); }
.field input, .field select, .field textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--paper);
  font-family: inherit; font-size: 14.5px; color: var(--ink-900);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(45,114,217,.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.form .btn-primary { width: 100%; padding: 16px; }
.form-success {
  display: none;
  margin-top: 14px;
  padding: 14px 16px;
  background: rgba(45,114,217,.08);
  border: 1px solid var(--blue-500);
  border-radius: var(--r-sm);
  color: var(--blue-600); font-weight: 600; font-size: 14px;
}
.form-success.show { display: block; }

/* ── Footer ── */
footer.foot { background: #050d1c; color: rgba(255,255,255,.7); padding: 70px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
.foot h4 { color: white; font-size: 15px; margin-bottom: 18px; font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot ul a { font-size: 14px; color: rgba(255,255,255,.65); }
.foot ul a:hover { color: var(--blue-400); }
.foot .brand-text .b1 { color: white; }
.foot .brand-text .b2 { color: var(--blue-400); }
.foot .blurb { font-size: 14px; margin: 18px 0 18px; color: rgba(255,255,255,.65); line-height: 1.6; }
.foot .contact-mini { font-size: 14px; line-height: 1.7; }
.foot .contact-mini a { color: rgba(255,255,255,.85); display: block; }
.foot .contact-mini a:hover { color: var(--blue-400); }
.foot-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; }
.foot-bottom span { color: rgba(255,255,255,.5); }

/* ── Responsive ── */
@media (max-width: 1000px) {
  .hero .wrap { grid-template-columns: 1fr; padding: 60px 24px 80px; }
  .hero-art { max-width: 480px; aspect-ratio: 4/3; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .about .wrap, .area-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .price-card { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-links, .topbar .top-right .hide-mob { display: none; }
  .menu-btn { display: block; }
  .nav-links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--paper);
    border-top: 1px solid var(--line);
    padding: 8px 0;
  }
  .nav-links.open a { padding: 14px 24px; border-bottom: 1px solid var(--line); }
  .about ul.checklist { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  section { padding: 64px 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 18px; }
  .price-left, .price-right { padding: 36px 28px; }
  .price-left .price-num { font-size: 72px; }
  .form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
}
