/* Михаил Дмитриевич — track brutal / no glow */
:root {
  --asphalt: #111111;
  --asphalt-2: #1c1c1c;
  --concrete: #f4f3ef;
  --concrete-2: #e7e5df;
  --lane: #ffd400;
  --lane-deep: #e6be00;
  --signal: #ff2d00;
  --text: #141414;
  --muted: #5a5a5a;
  --line: rgba(20, 20, 20, 0.14);
  --white: #ffffff;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 88px;
  --section-y: clamp(4.25rem, 9vw, 7rem);
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--concrete);
  -webkit-font-smoothing: antialiased;
}

.page-top-anchor {
  display: block;
  height: 0;
  width: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--text); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--signal); }

h1, h2, h3, h4, .h-like, .font-display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow { width: min(760px, 100%); margin-inline: auto; }

/* Header — inset bar, not full-bleed strip */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0.85rem 0 0;
  height: auto;
  background: transparent;
  border: none;
  pointer-events: none;
}

.site-header .container {
  pointer-events: none;
}

.header-bar {
  display: flex;
  align-items: center;
  gap: 1rem 1.25rem;
  width: 100%;
  padding: 0.55rem 0.7rem 0.55rem 0.65rem;
  background: rgba(244, 243, 239, 0.96);
  border: 2px solid var(--asphalt);
  box-shadow: 4px 4px 0 var(--asphalt);
  pointer-events: auto;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled .header-bar {
  background: var(--white);
  box-shadow: 5px 5px 0 var(--asphalt);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  flex-shrink: 0;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--asphalt);
  color: var(--lane);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  border: 2px solid var(--lane);
}

.logo-mark--sm { width: 40px; height: 40px; font-size: 1.15rem; }

.logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.logo-tag {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.15rem 1.15rem;
}

.main-nav a {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a.active,
.main-nav a:hover {
  border-bottom-color: var(--signal);
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.header-phone {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 2px solid var(--asphalt);
  background: var(--concrete);
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--asphalt);
}

/* Buttons — sharp, no pills */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid var(--asphalt);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.9rem 1.35rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn:hover { transform: none; text-decoration: none; }
.btn-sm { padding: 0.55rem 0.95rem; font-size: 0.8rem; }
.btn-lg { padding: 1.05rem 1.55rem; font-size: 0.98rem; }
.btn-block { width: 100%; }

.btn-accent {
  background: var(--lane);
  color: var(--asphalt);
  border-color: var(--asphalt);
  box-shadow: 4px 4px 0 var(--asphalt);
}

.btn-accent:hover {
  background: var(--white);
  color: var(--asphalt);
}

.btn-ghost {
  background: transparent;
  color: inherit;
  border-color: currentColor;
  box-shadow: none;
}

.btn-ghost:hover {
  background: var(--asphalt);
  color: var(--lane);
  border-color: var(--asphalt);
}

/* Hero — asphalt + hard lane marks */
.hero {
  position: relative;
  min-height: min(100vh, 920px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 4.5rem) 0 6rem;
  background: var(--asphalt);
  color: var(--white);
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-lanes {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -12deg,
      transparent 0 56px,
      rgba(255, 212, 0, 0.11) 56px 60px
    );
  mask-image: linear-gradient(90deg, transparent 0%, black 35%, black 100%);
}

.hero-slash {
  position: absolute;
  right: -8%;
  top: -10%;
  width: 42%;
  height: 130%;
  background: var(--lane);
  transform: skewX(-12deg);
  opacity: 0;
}

.hero.is-ready .hero-slash {
  animation: slash-in 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}

.hero-stamp {
  position: absolute;
  right: 7%;
  bottom: 14%;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 14vw, 10rem);
  line-height: 0.85;
  color: var(--asphalt);
  letter-spacing: 0.02em;
  mix-blend-mode: multiply;
  opacity: 0;
}

.hero.is-ready .hero-stamp {
  animation: stamp-in 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}

@keyframes slash-in {
  from { transform: skewX(-12deg) translate3d(14%, 0, 0); opacity: 0; }
  to { transform: skewX(-12deg) translate3d(0, 0, 0); opacity: 0.95; }
}

@keyframes stamp-in {
  from { opacity: 0; transform: translate3d(18px, 8px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
}

.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.35rem;
  margin: 0 0 2.75rem;
}

.hero-brand-main {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
  color: var(--white);
  text-transform: uppercase;
}

.hero-brand-sub {
  display: inline-block;
  width: fit-content;
  margin: 0;
  padding: 0.55rem 0.9rem;
  background: var(--lane);
  color: var(--asphalt);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
}

.hero-title {
  margin: 0 0 1.85rem;
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  color: var(--white);
  max-width: 18ch;
  line-height: 1.18;
}

.hero-accent {
  display: inline-block;
  margin-top: 0.45rem;
  color: var(--lane);
  background: transparent;
}

.hero-lead {
  margin: 0 0 2.75rem;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.15rem;
}

.hero .btn-ghost {
  color: var(--white);
  border-color: var(--white);
}

.hero .btn-ghost:hover {
  background: var(--lane);
  color: var(--asphalt);
  border-color: var(--lane);
}

.hero-scroll {
  position: absolute;
  right: max(1rem, calc((100% - 1180px) / 2));
  bottom: 1.75rem;
  z-index: 3;
  color: var(--asphalt);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Stats — finish line */
.stats-bar {
  background: var(--lane);
  color: var(--asphalt);
  padding: 1.85rem 0;
  border-top: 3px solid var(--asphalt);
  border-bottom: 3px solid var(--asphalt);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  line-height: 1;
}

.stat-item span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Sections */
.section {
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--line);
}

.section--muted {
  background: var(--concrete-2);
}

.section-head {
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
  max-width: 42rem;
}

.section-label {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.25rem 0.55rem;
  background: var(--asphalt);
  color: var(--lane);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.section-title--left { text-align: left; }

.section-sub {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.65;
  max-width: 38rem;
}

.section-sub--left { text-align: left; }

.page-hero {
  padding: calc(var(--header-h) + 3rem) 0 2.75rem;
  background:
    repeating-linear-gradient(
      -12deg,
      transparent 0 48px,
      rgba(17, 17, 17, 0.04) 48px 50px
    ),
    var(--concrete);
  border-bottom: 3px solid var(--asphalt);
}

.page-title {
  margin: 0 0 1.15rem;
  font-size: clamp(2.4rem, 6.5vw, 4.2rem);
  line-height: 1.02;
}

.page-lead {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.7;
}

.page-hero .hero-actions {
  margin-top: 1.75rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--signal); }

/* Services — index rows */
.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
  margin-bottom: 2.5rem;
}

.audience-tag {
  display: inline-flex;
  padding: 0.5rem 0.85rem;
  background: transparent;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--asphalt);
}

.audience-tag:hover {
  color: var(--signal);
  border-bottom-color: var(--signal);
}

.services-list {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--asphalt);
}

.service-row {
  display: grid;
  grid-template-columns: 4.5rem 2.75rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 1.25rem;
  padding: 1.65rem 0.25rem 1.65rem 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
  color: inherit;
  transition:
    background-color 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    padding-left 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease;
}

.service-row:hover {
  background: linear-gradient(90deg, var(--lane) 0, var(--lane) 6px, transparent 6px);
  padding-left: 0.85rem;
  color: inherit;
}

.service-row-idx {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  line-height: 1;
}

.service-row:hover .service-row-idx { color: var(--asphalt); }

.service-row-icon {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--signal);
  display: grid;
  place-items: center;
}

.service-row-icon svg,
.service-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 2;
}

.service-icon {
  width: 40px;
  height: 40px;
  color: var(--signal);
}

.service-icon--lg {
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  display: block;
}

.service-row-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-row-body h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
}

.service-row-body p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  max-width: 46rem;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
}

.service-row-go {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--asphalt);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s ease;
}

.service-row:hover .service-row-go {
  transform: translateX(4px);
  color: var(--signal);
}

.catalog-more {
  margin: 2.5rem 0 0;
  text-align: left;
}

/* Formats */
.formats-stack {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.format-row {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  padding: 1.65rem 1.5rem;
  background: var(--white);
  border-left: 6px solid var(--lane);
}

.format-num,
.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--asphalt);
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.format-row-body h3 {
  margin: 0 0 0.55rem;
  font-size: 1.8rem;
}

.format-row-body p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 40rem;
}

/* Steps */
.steps-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.step-row {
  position: relative;
  padding: 0;
  background: transparent;
}

.step-row:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: 4.2rem;
  right: -0.85rem;
  height: 2px;
  background: var(--asphalt);
  opacity: 0.2;
}

.step-row-body { margin-top: 1.1rem; }

.step-row-body h3 {
  margin: 0 0 0.55rem;
  font-size: 1.7rem;
}

.step-row-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.55;
}

.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.h-like { font-size: 2.2rem; margin: 0 0 1rem; }

.check-list {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.35rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
  font-weight: 500;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--lane);
}

.check-list--accent li::before { background: var(--signal); }

.muted { color: var(--muted); }

/* Testimonials */
.testimonials-row {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
}

.testimonials-viewport {
  overflow: hidden;
  flex: 1;
  background: transparent;
}

.testimonials-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0;
}

.testimonial-card {
  margin: 0;
  padding: 2rem 0 1.5rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  background: transparent;
  border-top: 2px solid var(--asphalt);
}

.testimonial-quote {
  margin: 0.85rem 0 1.5rem;
  flex: 1;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 500;
  line-height: 1.45;
  max-width: 38rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--asphalt);
  color: var(--lane);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.testimonial-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testimonial-meta span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stars { color: #ccc; letter-spacing: 0.08em; }
.star.is-filled { color: var(--signal); }

.test-arrow {
  width: 52px;
  height: 52px;
  align-self: center;
  border: 2px solid var(--asphalt);
  background: var(--lane);
  cursor: pointer;
  color: var(--asphalt);
  flex-shrink: 0;
}

.test-arrow:hover { background: var(--white); }

.testimonials-nav {
  display: flex;
  justify-content: flex-start;
  gap: 0.4rem;
  margin-top: 1rem;
}

.testimonials-dot {
  width: 28px;
  height: 4px;
  border: 0;
  background: rgba(17, 17, 17, 0.18);
  cursor: pointer;
  padding: 0;
}

.testimonials-dot.is-active { background: var(--signal); }

/* CTA */
.cta-banner {
  padding: clamp(2.25rem, 5vw, 3.25rem);
  background: var(--asphalt);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: var(--lane);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.cta-banner h3 {
  margin: 0 0 0.9rem;
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  line-height: 1.08;
}

.cta-banner p {
  margin: 0 0 1.85rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  line-height: 1.65;
  max-width: 36rem;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.cta-banner .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.cta-banner .btn-ghost:hover {
  background: var(--lane);
  color: var(--asphalt);
  border-color: var(--lane);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--asphalt);
}

.faq-item {
  background: transparent;
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
  padding: 1.1rem 0;
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  margin: 0.7rem 0 0.2rem;
  color: var(--muted);
  font-weight: 500;
  max-width: 40rem;
}

/* Forms */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-phones a {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.contact-form-wrap {
  background: var(--white);
  border-left: 6px solid var(--lane);
  padding: 1.6rem 1.5rem;
  box-shadow: none;
}

.form-field {
  position: relative;
  margin-bottom: 0.85rem;
}

.form-input {
  width: 100%;
  padding: 1.2rem 0.95rem 0.5rem;
  border: 2px solid var(--asphalt);
  border-radius: 0;
  font: inherit;
  background: var(--concrete);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.form-input:focus {
  border-color: var(--signal);
  background: var(--white);
}

.form-textarea { min-height: 96px; resize: vertical; }

.form-label-float {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  transition: 0.2s var(--ease);
  font-size: 0.95rem;
  font-weight: 600;
}

.form-textarea + .form-label-float { top: 1.05rem; transform: none; }

.form-input:focus + .form-label-float,
.form-input:not(:placeholder-shown) + .form-label-float {
  top: 0.3rem;
  transform: none;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-optional { opacity: 0.7; }

.form-check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin: 0.75rem 0 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

.form-note {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.form-alert {
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  border: 2px solid var(--asphalt);
}

.form-alert--success {
  background: var(--lane);
  color: var(--asphalt);
}

.form-alert--error {
  background: #ffe5e0;
  border-color: var(--signal);
  color: var(--signal);
}

/* SEO */
.seo-content h2 {
  margin: 0 0 1.1rem;
  font-size: 2.2rem;
}

.seo-content h3 {
  margin: 2rem 0 0.85rem;
  font-size: 1.5rem;
}

.seo-content p,
.seo-content li {
  line-height: 1.7;
  color: var(--muted);
  font-weight: 500;
}

.policy-content h1 { font-size: 2.4rem; }
.policy-content h2 { font-size: 1.6rem; margin-top: 1.5rem; }

/* Footer — flat, stripe only, NO glow */
.site-footer {
  position: relative;
  background: var(--asphalt);
  color: rgba(255, 255, 255, 0.78);
  padding: 0 0 1.5rem;
  overflow: hidden;
}

.footer-stripe {
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    var(--lane) 0 28px,
    var(--asphalt) 28px 40px
  );
  margin-bottom: 2.75rem;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.25rem;
}

.footer-brand h4,
.footer-grid h4 {
  margin: 0.75rem 0 0.75rem;
  color: var(--white);
  font-size: 1.45rem;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li { margin-bottom: 0.4rem; }

.footer-grid a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-grid a:hover { color: var(--lane); }

.footer-modes {
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lane);
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
  font-weight: 600;
}

.footer-bottom-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-credit a { color: rgba(255, 255, 255, 0.4); }
.footer-credit a:hover { color: var(--lane); }

.back-to-top {
  color: var(--lane);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal[hidden] {
  display: grid !important;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.85);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.modal.is-open .modal-backdrop {
  opacity: 1;
}

.modal-dialog {
  position: relative;
  width: min(440px, 100%);
  background: var(--concrete);
  border: 3px solid var(--lane);
  padding: 1.5rem;
  z-index: 1;
  transform: translate3d(0, 12px, 0) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal.is-open .modal-dialog {
  transform: translate3d(0, 0, 0) scale(1);
}

.modal-dialog h3 {
  margin: 0 0 0.4rem;
  font-size: 2rem;
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.7rem;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
}

.modal-lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-weight: 500;
}

body.modal-open { overflow: hidden; }

/* Consent */
.visit-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 350;
  max-width: 520px;
}

.visit-consent[hidden] { display: none !important; }

html.visit-consent-pending .visit-consent { display: block; }

.visit-consent-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  background: var(--asphalt);
  color: var(--white);
  border: 3px solid var(--lane);
}

.visit-consent-inner p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.visit-consent-inner a { color: var(--lane); }

/* Reveal — clean fade/rise, no skew */
.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.hero .reveal {
  transform: translate3d(0, 22px, 0);
}

.hero .reveal.is-visible {
  transform: translate3d(0, 0, 0);
}

/* Responsive */
@media (max-width: 980px) {
  .stats-grid,
  .steps-flow,
  .footer-grid,
  .split-2,
  .contact-section {
    grid-template-columns: 1fr 1fr;
  }

  .step-row:not(:last-child)::after { display: none; }
  .header-phone { display: none; }
  .hero-slash { width: 34%; opacity: 0.9; }
  .hero-stamp { font-size: clamp(4rem, 18vw, 8rem); right: 4%; bottom: 12%; }
  .service-row {
    grid-template-columns: 3.5rem minmax(0, 1fr) auto;
  }
  .service-row-icon { display: none; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }

  .header-bar {
    position: relative;
    flex-wrap: wrap;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    display: none;
    flex: none;
    width: 100%;
    background: var(--white);
    border: 2px solid var(--asphalt);
    box-shadow: 4px 4px 0 var(--asphalt);
    padding: 0.85rem 1rem 1rem;
    transform: none;
    justify-content: flex-start;
    z-index: 210;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    width: 100%;
    gap: 0.2rem;
  }

  .main-nav a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.35rem;
    font-family: var(--font-display);
    letter-spacing: 0.04em;
  }

  .logo-tag { display: none; }

  .stats-grid,
  .steps-flow,
  .footer-grid,
  .split-2,
  .contact-section,
  .format-row {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 0.75rem;
  }

  .service-row-go { display: none; }

  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 3.25rem) 0 5rem;
    align-items: flex-start;
  }

  .hero-brand {
    gap: 1.15rem;
    margin-bottom: 2.25rem;
  }

  .hero-title {
    margin-bottom: 1.5rem;
  }

  .hero-lead {
    margin-bottom: 2.25rem;
  }

  .hero-slash {
    width: 100%;
    height: 28%;
    top: auto;
    bottom: 0;
    right: 0;
    transform: none;
    opacity: 1;
  }

  .hero-stamp {
    right: 1rem;
    bottom: 1.2rem;
    font-size: 4.5rem;
    color: var(--asphalt);
  }

  .hero-scroll { display: none; }

  .visit-consent-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Prices + calculator */
.price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.price-card {
  padding: 1.5rem 1.35rem;
  background: var(--white);
  border-left: 6px solid var(--lane);
}

.price-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.7rem;
}

.price-card-value {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

.price-card-value span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 0.25rem;
}

.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  padding: 0.45rem 0;
  border-top: 1px solid rgba(17,17,17,0.12);
  font-weight: 500;
  color: var(--muted);
}

.calc {
  background: var(--white);
  border-left: 6px solid var(--lane);
  padding: 1.5rem;
}

.calc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.calc-tab {
  border: 2px solid var(--asphalt);
  background: transparent;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  padding: 0.65rem 0.9rem;
  cursor: pointer;
}

.calc-tab.is-active {
  background: var(--asphalt);
  color: var(--lane);
}

.calc-note {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-weight: 500;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.calc-input {
  border: 2px solid var(--asphalt);
  background: var(--concrete);
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text);
  padding: 0.75rem 0.8rem;
}

.calc-result {
  padding-top: 1.1rem;
  border-top: 2px solid var(--asphalt);
  display: grid;
  gap: 0.75rem;
}

.calc-result-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.calc-result-sum {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1;
  margin-top: 0.2rem;
}

.calc-result-detail {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 1100px) {
  .price-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .price-cards,
  .calc-grid {
    grid-template-columns: 1fr;
  }
}
