﻿:root {
  color-scheme: light;
  --bg: #f3f5f7;
  --surface: #ffffff;
  --surface-2: #eef2f5;
  --ink: #172026;
  --muted: #5d6975;
  --line: #d7dee5;
  --brand: #b42318;
  --brand-dark: #7f1d1d;
  --accent: #0f766e;
  --steel: #26333d;
  --focus: #2563eb;
  --shadow: 0 18px 48px rgba(23, 32, 38, .14);
  --radius: 8px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: var(--container);
  min-height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  min-width: 212px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: 12px; }
.main-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.main-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--steel);
  font-weight: 700;
  font-size: 14px;
}
.main-nav a:hover { background: var(--surface-2); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  white-space: nowrap;
}
.menu-toggle { display: none; }

.btn, .icon-btn, .text-btn, .quick-actions a, .mobile-cta a {
  border: 0;
  transition: transform .16s ease, background .16s ease, color .16s ease, box-shadow .16s ease;
}
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}
.btn-large { min-height: 52px; padding: 14px 18px; font-size: 15px; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 22px rgba(180,35,24,.24); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-light { background: #fff; color: var(--brand); }
.btn-dark { background: var(--steel); color: #fff; width: 100%; }
.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: inline-grid;
  place-items: center;
  background: var(--surface-2);
  color: var(--steel);
}
.whatsapp { color: #0f7a3d; }
svg { width: 18px; height: 18px; flex: 0 0 auto; }

.hero {
  position: relative;
  min-height: 700px;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: #111;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,14,18,.86), rgba(10,14,18,.62) 46%, rgba(10,14,18,.22));
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 118px 24px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 390px;
  gap: 42px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: #b7f3df;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}
.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: .95;
}
.hero-text {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.88);
  font-size: 20px;
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-metrics {
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 160px));
  gap: 12px;
}
.hero-metrics div, .hero-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
}
.hero-metrics div { padding: 14px; }
.hero-metrics dt { font-size: 28px; font-weight: 900; }
.hero-metrics dd { margin: 4px 0 0; color: rgba(255,255,255,.76); }
.hero-card {
  padding: 24px;
  box-shadow: var(--shadow);
}
.card-head { display: flex; align-items: center; gap: 10px; }
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 6px rgba(52,211,153,.16);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  gap: 10px;
}
.check-list li { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.86); }
.check-list svg { color: #34d399; }

.quick-actions {
  max-width: var(--container);
  margin: -34px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.quick-actions a {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(23,32,38,.08);
}
.quick-actions a:hover { transform: translateY(-2px); }

.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 86px 24px 0;
}
.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}
.section-head .eyebrow, .lead-copy .eyebrow { color: var(--brand); }
.section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}
.section-head p, .lead-copy p { color: var(--muted); font-size: 18px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(23,32,38,.08);
}
.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.service-card div { padding: 18px; }
.service-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent);
  font-weight: 900;
  font-size: 13px;
}
.service-card h3 { margin: 0 0 8px; font-size: 21px; line-height: 1.15; }
.service-card p { margin: 0 0 16px; color: var(--muted); }
.service-card a { color: var(--brand); font-weight: 900; }

.case-grid {
  display: grid;
  gap: 18px;
}
.before-after {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(23,32,38,.08);
}
.ba-stage {
  --pos: 50%;
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #101820;
}
.ba-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-after { clip-path: inset(0 0 0 var(--pos)); }
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 3px;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 0 0 999px rgba(255,255,255,.04);
}
.ba-stage input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}
.case-copy {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case-copy h3 { margin: 0 0 10px; font-size: 26px; line-height: 1.1; }
.case-copy p { color: var(--muted); }
.text-btn {
  align-self: flex-start;
  background: transparent;
  color: var(--brand);
  font-weight: 900;
  padding: 0;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.timeline li, .trust-card, .lead-form, .lead-copy, details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(23,32,38,.07);
}
.timeline li { padding: 22px; }
.timeline span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: #fff0ee;
  color: var(--brand);
  font-weight: 900;
}
.timeline h3, .trust-card h3 { margin: 0 0 8px; }
.timeline p, .trust-card p { margin: 0; color: var(--muted); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.trust-card { padding: 22px; }
.trust-card svg {
  width: 28px;
  height: 28px;
  color: var(--brand);
  margin-bottom: 18px;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 22px;
  align-items: start;
}
.lead-copy { padding: 28px; }
.contact-strip {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}
.contact-strip a {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--surface-2);
  font-weight: 900;
}
.lead-form {
  padding: 24px;
  display: grid;
  gap: 14px;
}
.lead-form label { display: grid; gap: 7px; font-weight: 800; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
}
.lead-form textarea { resize: vertical; min-height: 116px; }
.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 500 !important;
  color: var(--muted);
}
.consent input { width: 18px; min-height: 18px; margin-top: 3px; }
.form-status { margin: 0; color: var(--accent); font-weight: 800; min-height: 24px; }

.faq-list {
  display: grid;
  gap: 12px;
}
details { padding: 18px 20px; }
summary { font-weight: 900; cursor: pointer; }
details p { color: var(--muted); margin-bottom: 0; }

.site-footer {
  max-width: var(--container);
  margin: 0 auto;
  padding: 70px 24px 110px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}
.site-footer strong { color: var(--ink); font-size: 22px; }
.footer-links { display: flex; gap: 18px; font-weight: 800; color: var(--steel); }

.mobile-cta {
  display: none;
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 110;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.mobile-cta a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.motion-toggle {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 120;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(23,32,38,.12);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.service-card:hover, .trust-card:hover {
  transform: translate3d(0, -3px, 0);
}
.service-card, .trust-card { transition: transform .18s ease, box-shadow .18s ease; }

body.reduce-motion *, body.reduce-motion *::before, body.reduce-motion *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}
body.reduce-motion .reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .header-inner { grid-template-columns: auto auto 1fr; }
  .menu-toggle { display: inline-grid; }
  .main-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: grid; }
  .header-actions { justify-self: end; }
  .header-actions .btn, .phone-link { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 520px; }
  .service-grid, .trust-grid, .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .header-inner { padding: 0 16px; gap: 12px; }
  .brand { min-width: 0; }
  .brand small { display: none; }
  .hero { min-height: auto; }
  .hero-inner { padding: 86px 16px 54px; gap: 24px; }
  .hero h1 { font-size: 42px; }
  .hero-text { font-size: 17px; }
  .hero-metrics { grid-template-columns: 1fr; }
  .quick-actions { margin-top: 0; padding: 14px 16px 0; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section { padding: 64px 16px 0; }
  .service-grid, .trust-grid, .timeline, .lead-section { grid-template-columns: 1fr; }
  .before-after { grid-template-columns: 1fr; }
  .ba-stage { min-height: 260px; }
  .site-footer { flex-direction: column; padding: 58px 16px 96px; }
  .footer-links { flex-wrap: wrap; }
  .mobile-cta { display: grid; }
  .motion-toggle { bottom: 82px; }
}

@media (max-width: 440px) {
  .hero h1 { font-size: 36px; }
  .hero-actions .btn { width: 100%; }
  .quick-actions { grid-template-columns: 1fr; }
  .service-card h3, .case-copy h3 { font-size: 22px; }
}
