:root {
  --bg: #f7f8f9;
  --paper: #ffffff;
  --ink: #101316;
  --graphite: #171a1f;
  --muted: #5e6872;
  --line: #e3e6ea;
  --silver: #c9d0d6;
  --red: #c1121f;
  --red-dark: #9f0e19;
  --green: #1f7a4d;
  --shadow: 0 20px 60px rgba(16, 19, 22, .12);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16,19,22,.035) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(180deg, rgba(16,19,22,.03) 1px, transparent 1px) 0 0 / 88px 88px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 70%);
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 32px, var(--max));
  min-height: 72px;
  margin: 14px auto 0;
  padding: 10px 12px 10px 18px;
  background: rgba(247, 248, 249, .92);
  border: 1px solid rgba(227, 230, 234, .9);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(16, 19, 22, .08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 172px;
}

.brand img {
  width: 120px;
  height: 32px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #30363d;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a:hover, .phone-link:hover { color: var(--red); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.phone-link { color: var(--graphite); font-size: 15px; font-weight: 800; white-space: nowrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--red);
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  box-shadow: 0 14px 30px rgba(193, 18, 31, .22);
}

.btn:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(193, 18, 31, .32);
  outline-offset: 3px;
}

.btn-secondary { background: var(--paper); color: var(--graphite); border-color: var(--silver); box-shadow: none; }
.btn-secondary:hover { background: var(--graphite); color: #fff; border-color: var(--graphite); }
.btn-small { min-height: 42px; padding: 0 16px; font-size: 14px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--graphite); }

.mobile-menu {
  position: fixed;
  top: 88px;
  left: 16px;
  right: 16px;
  z-index: 19;
  display: none;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.mobile-menu.is-open { display: grid; }
.mobile-menu a { padding: 13px 10px; font-weight: 800; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border-bottom: 0; }

.section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 84px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - 88px);
  padding-top: 44px;
  padding-bottom: 62px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--graphite);
  font-size: clamp(42px, 6vw, 78px);
  line-height: .96;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 18px;
  color: var(--graphite);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}
h3 { color: var(--graphite); font-size: 21px; line-height: 1.18; letter-spacing: 0; }
.lead { max-width: 690px; color: #30363d; font-size: 19px; }

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 660px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}
.hero-points li {
  position: relative;
  padding: 14px 14px 14px 38px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--graphite);
  font-weight: 800;
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 18px;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.workline { margin: 0; color: var(--muted); font-weight: 750; }

.hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--graphite);
  box-shadow: var(--shadow);
}
.hero-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.hero-media figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  background: rgba(16, 19, 22, .78);
  color: #fff;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
}

.section-heading { max-width: 790px; margin-bottom: 34px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 18px; }

.situation-grid, .cases-grid, .faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.situation-grid article {
  min-height: 180px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.situation-grid strong { display: block; margin-bottom: 12px; color: var(--graphite); font-size: 19px; line-height: 1.2; }
.situation-grid span { color: var(--muted); }
.center-action { margin-top: 24px; }

.split-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  align-items: start;
}
.split-section p { color: var(--muted); font-size: 18px; }
.note-line {
  padding-left: 16px;
  border-left: 4px solid var(--red);
  color: var(--graphite) !important;
  font-weight: 850;
}

.compare, .two-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.compare-col, .two-lists > div {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.compare-col.good { border-color: rgba(31, 122, 77, .35); }
.compare-col ul, .two-lists ul, .urgent-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: #38414a;
}

.price-section {
  padding: 54px;
  background: var(--graphite);
  color: #fff;
  border-radius: var(--radius);
}
.price-section h2 { color: #fff; }
.price-section .section-heading p:not(.eyebrow), .price-section .disclaimer { color: #cfd5da; }
.price-table {
  display: grid;
  overflow: hidden;
  margin-bottom: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
}
.price-table div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.price-table div:last-child { border-bottom: 0; }
.price-table strong { color: #fff; white-space: nowrap; }
.disclaimer { max-width: 760px; }

.case-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.case-card h3, .case-card p { padding: 0 18px; }
.case-card h3 { margin: 18px 0 8px; font-size: 20px; }
.case-card p { margin-bottom: 20px; color: var(--muted); }
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}
.before-after img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.steps li {
  counter-increment: step;
  position: relative;
  min-height: 220px;
  padding: 62px 18px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
}
.steps strong { display: block; margin-bottom: 8px; line-height: 1.2; }
.steps span { color: var(--muted); font-size: 15px; }

.urgent-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 24px 24px 24px 44px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 780;
}

.chip-section {
  padding: 54px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--graphite);
  font-weight: 850;
}
details p { padding: 0 20px 18px; color: var(--muted); }

.contact-section { padding-bottom: 42px; }
.contact-main {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 32px;
  align-items: start;
}
.contact-main > div:first-child p { max-width: 700px; color: var(--muted); font-size: 18px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

.booking-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.booking-form h3 { margin-bottom: 2px; }
.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 850;
}
.booking-form input, .booking-form textarea {
  width: 100%;
  border: 1px solid #ccd3da;
  border-radius: var(--radius);
  padding: 13px 12px;
  background: #fff;
  color: var(--ink);
}
.booking-form textarea { resize: vertical; }
.consent { grid-template-columns: 20px 1fr; align-items: start; font-weight: 700 !important; color: var(--muted) !important; }
.consent input { width: 18px; height: 18px; margin-top: 2px; }
.form-note, .form-status { margin: 0; color: var(--muted); font-size: 13px; }
.form-status.is-success { color: var(--green); font-weight: 800; }
.form-status.is-error { color: var(--red); font-weight: 800; }

.map-wrap {
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.map-wrap iframe { display: block; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 30px 0 92px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.site-footer div { display: grid; }
.site-footer strong { color: var(--graphite); }
.site-footer a { color: var(--graphite); font-weight: 900; }

.mobile-sticky { display: none; }

@media (max-width: 1040px) {
  .desktop-nav, .phone-link, .header-actions .btn-small { display: none; }
  .menu-toggle { display: block; }
  .site-header { min-height: 64px; }
  .hero, .split-section, .contact-main { grid-template-columns: 1fr; }
  .hero { min-height: 0; padding-top: 36px; }
  .hero-media { order: -1; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .situation-grid, .cases-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  body { padding-bottom: 74px; }
  .site-header { width: calc(100% - 20px); margin-top: 10px; padding-left: 12px; }
  .brand { min-width: 0; }
  .brand img { width: 120px; height: 32px; }
  .section { width: calc(100% - 20px); padding: 56px 0; }
  .hero { gap: 22px; padding-top: 28px; }
  h1 { font-size: 43px; }
  h2 { font-size: 32px; }
  .lead, .section-heading p:not(.eyebrow), .split-section p, .contact-main > div:first-child p { font-size: 16px; }
  .hero-points, .situation-grid, .cases-grid, .compare, .two-lists, .faq-grid, .urgent-list { grid-template-columns: 1fr; }
  .hero-points li { padding-top: 13px; padding-bottom: 13px; }
  .cta-row .btn { width: 100%; }
  .hero-media figcaption { position: static; border-radius: 0; }
  .price-section, .chip-section { width: calc(100% - 20px); padding: 28px 18px; }
  .price-table div { grid-template-columns: 1fr; gap: 4px; }
  .steps { grid-template-columns: 1fr; }
  .steps li { min-height: 0; }
  .contact-actions .btn, .booking-form .btn { width: 100%; }
  .site-footer { flex-direction: column; width: calc(100% - 20px); padding-bottom: 96px; }
  .mobile-sticky {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    background: rgba(16, 19, 22, .94);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(16, 19, 22, .28);
    backdrop-filter: blur(12px);
  }
  .mobile-sticky a {
    display: grid;
    place-items: center;
    min-height: 44px;
    border-radius: 6px;
    background: #fff;
    color: var(--graphite);
    font-size: 14px;
    font-weight: 900;
  }
  .mobile-sticky a:first-child { background: var(--red); color: #fff; }
}

@media (max-width: 420px) {
  h1 { font-size: 38px; }
  .before-after { grid-template-columns: 1fr; }
  .booking-form { padding: 18px; }
}
