:root {
  --bg: #121314;
  --deep: #0d0e0f;
  --surface: #1f2020;
  --surface-low: #1b1c1c;
  --surface-high: #292a2a;
  --line: #4d4732;
  --line-soft: rgba(153, 144, 119, .28);
  --text: #e4e2e2;
  --muted: #d0c6ab;
  --yellow: #ffd700;
  --yellow-soft: #ffe16d;
  --blue: #acc7ff;
  --red: #ff4a3d;
  --shadow: 0 24px 48px rgba(0, 0, 0, .42);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 82px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.material-symbols-outlined { font-variation-settings: "FILL" 0, "wght" 450, "GRAD" 0, "opsz" 24; }
.wrap { width: min(1280px, calc(100% - 40px)); margin: 0 auto; }
.top-strip {
  background: #0a0b0c;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.top-strip .wrap { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.top-strip b { color: var(--yellow); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(31, 32, 32, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav-row { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #221b00;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-soft));
  font: 900 13px/1 Montserrat, sans-serif;
  box-shadow: 0 0 22px rgba(255, 215, 0, .2);
}
.brand-name { font: 900 18px/1.05 Montserrat, sans-serif; letter-spacing: -.01em; color: #fff6df; text-transform: uppercase; }
.brand-name small { display: block; color: var(--muted); font: 700 10px/1.3 "DM Sans", sans-serif; letter-spacing: .18em; margin-top: 4px; }
.desktop-nav { display: flex; align-items: center; gap: 22px; }
.desktop-nav a { color: var(--muted); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--yellow); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.btn {
  border: 1px solid transparent;
  border-radius: 8px;
  min-height: 44px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--yellow); color: #3a3000; box-shadow: 0 0 20px rgba(255, 215, 0, .18); }
.btn-secondary { border-color: var(--line); background: rgba(57, 57, 57, .35); color: var(--text); }
.btn-danger { background: var(--red); color: #210000; }
.mobile-menu-button { display: none; background: transparent; color: var(--text); border: 1px solid var(--line); border-radius: 8px; width: 44px; height: 44px; }
.mobile-nav { display: none; border-top: 1px solid var(--line-soft); padding: 14px 0 20px; }
.mobile-nav a { display: block; padding: 12px 0; color: var(--muted); font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  border-bottom: 1px solid var(--line);
  background: var(--deep);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18, 19, 20, .98), rgba(18, 19, 20, .82) 52%, rgba(18, 19, 20, .25)); }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: right center; filter: saturate(.95) contrast(1.05); }
.hero .wrap { position: relative; z-index: 2; padding: 88px 0 72px; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(360px, .65fr); gap: 42px; align-items: center; }
.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 10px;
  color: var(--yellow);
  background: rgba(18, 19, 20, .72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: Montserrat, Arial, sans-serif; line-height: 1.08; margin: 0; }
h1 { margin-top: 24px; max-width: 780px; font-size: clamp(42px, 7vw, 78px); letter-spacing: 0; text-transform: uppercase; }
h1 span, h2 span, .accent { color: var(--yellow); }
.lead { color: var(--muted); font-size: clamp(17px, 2.1vw, 21px); max-width: 680px; margin: 22px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.quote-card, .panel, .service-card, .state-card, .contact-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(31, 32, 32, .94), rgba(18, 19, 20, .96));
  box-shadow: var(--shadow);
}
.quote-card { padding: 22px; }
.quote-card h2 { font-size: 24px; margin-bottom: 16px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { color: var(--text); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: #121314;
  padding: 13px 12px;
  font: 500 16px/1.3 "DM Sans", sans-serif;
}
textarea { min-height: 104px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(255, 215, 0, .3); border-color: var(--yellow); }
.mini-note { margin-top: 12px; color: var(--muted); font-size: 13px; }
.section { padding: 76px 0; border-bottom: 1px solid var(--line-soft); }
.section.dark { background: var(--deep); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.section h2 { font-size: clamp(30px, 4.8vw, 52px); text-transform: uppercase; letter-spacing: 0; }
.section p { color: var(--muted); }
.badge-grid, .service-grid, .why-grid, .steps-grid, .review-grid, .faq-grid { display: grid; gap: 16px; }
.badge-grid { grid-template-columns: repeat(3, 1fr); }
.badge {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(31, 32, 32, .76);
  padding: 16px;
}
.badge .material-symbols-outlined { color: var(--yellow); font-size: 32px; }
.badge b { display: block; color: var(--text); font-family: Montserrat, sans-serif; }
.badge small { color: var(--muted); }
.service-grid { grid-template-columns: repeat(4, 1fr); }
.service-card { min-height: 100%; padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.service-card .material-symbols-outlined { color: var(--yellow); font-size: 40px; }
.service-card h3 { font-size: 22px; text-transform: uppercase; }
.service-card ul, .check-list { padding: 0; margin: 0; list-style: none; display: grid; gap: 10px; }
.service-card li, .check-list li { color: var(--muted); display: flex; gap: 8px; align-items: flex-start; }
.service-card li::before, .check-list li::before { content: "check_circle"; font-family: "Material Symbols Outlined"; color: var(--yellow); line-height: 1.45; }
.steps-grid { grid-template-columns: repeat(3, 1fr); counter-reset: step; }
.step { position: relative; padding: 22px; border-left: 4px solid var(--yellow); background: var(--surface); border-radius: 8px; counter-increment: step; }
.step::before { content: counter(step, decimal-leading-zero); display: block; color: var(--yellow); font: 900 13px/1 Montserrat, sans-serif; margin-bottom: 18px; }
.why-grid { grid-template-columns: 1.15fr .85fr; align-items: stretch; }
.panel { padding: 28px; }
.area-map {
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255, 215, 0, .08) 1px, transparent 1px),
    linear-gradient(rgba(255, 215, 0, .08) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(255, 215, 0, .22), transparent 28%),
    #101112;
  background-size: 34px 34px, 34px 34px, auto, auto;
  display: grid;
  place-items: center;
  color: var(--yellow);
  text-align: center;
}
.review-grid { grid-template-columns: repeat(3, 1fr); }
.review { padding: 20px; border: 1px solid var(--line-soft); background: rgba(31,32,32,.8); border-radius: 8px; }
.stars { color: var(--yellow); letter-spacing: .08em; }
.faq-grid { grid-template-columns: repeat(2, 1fr); }
details { border: 1px solid var(--line-soft); border-radius: 8px; padding: 18px; background: rgba(31,32,32,.8); }
summary { cursor: pointer; font-weight: 900; color: var(--text); }
details p { margin: 12px 0 0; }
.quote-shell { display: grid; grid-template-columns: minmax(0, 1.1fr) 390px; gap: 24px; align-items: start; }
.quote-progress { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-bottom: 16px; }
.quote-progress button { border: 1px solid var(--line); border-radius: 8px; padding: 10px 6px; color: var(--muted); background: #121314; font-weight: 900; text-transform: uppercase; font-size: 11px; cursor: pointer; }
.quote-progress button.active { color: #3a3000; background: var(--yellow); border-color: var(--yellow); }
.quote-form-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.quote-state { display: none; }
.quote-state.active { display: block; }
.spinner { width: 46px; height: 46px; border-radius: 50%; border: 4px solid var(--line); border-top-color: var(--yellow); animation: spin 1s linear infinite; margin: 0 auto 18px; }
@keyframes spin { to { transform: rotate(360deg); } }
.price-box { border: 1px solid var(--yellow); border-radius: 10px; padding: 20px; background: rgba(255, 215, 0, .08); }
.price { color: var(--yellow); font: 900 48px/1 Montserrat, sans-serif; }
.alert { border-left: 4px solid var(--red); background: rgba(255, 74, 61, .08); padding: 16px; border-radius: 8px; }
.site-footer { background: #0a0b0c; border-top: 1px solid var(--line); padding: 34px 0; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: flex-end; }
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px;
  background: rgba(13, 14, 15, .96);
  border-top: 1px solid var(--line);
}
.mobile-cta .btn { min-height: 52px; padding: 10px; font-size: 12px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; align-items: start; }
.contact-card { padding: 22px; }
.route-result { display: grid; gap: 16px; }
.route-line { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; padding: 16px; border: 1px solid var(--line-soft); border-radius: 8px; }
.dot { width: 14px; height: 14px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 6px rgba(255, 215, 0, .12); }
@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .hero .wrap, .quote-shell, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  body { padding-bottom: 84px; }
  .wrap { width: min(100% - 28px, 1280px); }
  .top-strip { display: none; }
  .site-header .header-actions { display: none; }
  .mobile-menu-button { display: inline-grid; place-items: center; }
  .site-header[data-open="true"] .mobile-nav { display: block; }
  .brand-name { font-size: 15px; }
  .brand-name small { font-size: 9px; }
  .hero { min-height: auto; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(18,19,20,.82), rgba(18,19,20,.97) 38%, #121314); }
  .hero .wrap { padding: 48px 0 44px; }
  h1 { font-size: clamp(38px, 11vw, 54px); }
  .hero-actions .btn { width: 100%; }
  .form-grid, .badge-grid, .service-grid, .steps-grid, .review-grid, .faq-grid, .two-col, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 54px 0; }
  .section-head { display: block; }
  .quote-progress { grid-template-columns: repeat(2, 1fr); }
  .footer-links { justify-content: flex-start; }
  .mobile-cta { display: grid; }
}
