:root {
  --bg: #0f0f0f;
  --bg-elevated: #1a1a1a;
  --bg-card: #181818;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f3f5f7;
  --muted: #9ca3af;
  --orange: #ff8c00;
  --orange-dark: #e67a00;
  --steel: #d1d5db;
  --steel-mid: #9ca3af;
  --shadow: 0 4px 6px rgba(0,0,0,0.3), 0 12px 28px rgba(0,0,0,0.4);
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.25), 0 4px 12px rgba(0,0,0,0.3);
  --radius-xl: 20px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --max-width: 1220px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, li { line-height: 1.65; }

.site-background { display: none; }

/* ── LAYOUT ── */
.site-header,
.section,
.site-footer,
.ticker {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 1.4rem;
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header--scrolled {
  background: rgba(15, 15, 15, 0.97);
  border-color: var(--line-strong);
}

/* ── BRAND ── */
.brand { display: grid; gap: 0.1rem; }

.brand__flag,
.brand__sub,
.section-label,
.service-card__number,
.process-card__step,
.vehicle-card__tag {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.brand__flag {
  color: var(--orange);
  font-weight: 600;
}

.brand__name {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand__zone,
.brand__repair { color: var(--orange); }
.brand__auto { color: var(--text); }
.brand__sub { color: var(--steel-mid); }

/* ── NAV ── */
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--muted);
}

.site-nav a {
  position: relative;
  padding: 0.3rem 0;
  font-size: 0.92rem;
  font-weight: 500;
}

.site-nav__social {
  font-size: 1.15rem;
  display: flex;
  align-items: center;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); }

/* ── CALL CHIP ── */
.call-chip {
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  white-space: nowrap;
  background: var(--orange);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.88rem;
  transition: opacity 160ms ease, transform 160ms ease;
}

.call-chip:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── SECTION ── */
.section { padding: 5rem 0; }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3rem;
  padding-top: 4rem;
}

.hero__copy h1,
.section-heading h2,
.contact__copy h2 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: none;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero__copy h1 {
  max-width: 18ch;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.hero__lead,
.section-heading p,
.contact__copy p {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1rem;
}

/* ribbons */
.hero__ribbons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.hero__ribbons span {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(232, 84, 30, 0.08);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(232, 84, 30, 0.2);
}

/* actions */
.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.75rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.75rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 160ms ease, opacity 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-1px); }

.button--primary {
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(232, 84, 30, 0.28);
}

.button--primary:hover { opacity: 0.9; }

.button--secondary {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}

.button--secondary:hover { background: rgba(255,255,255,0.06); }

/* highlights */
.hero__highlights,
.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__highlights {
  display: grid;
  gap: 0.7rem;
  max-width: 42rem;
}

.hero__highlights li,
.checklist li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--steel);
  font-size: 0.93rem;
}

.hero__highlights li::before,
.checklist li::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--orange);
}

/* ── HERO CARD ── */
.hero__panel { position: relative; }

.hero-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before { display: none; }

.hero-card__topline {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 600;
}

.hero-card__art {
  position: relative;
  z-index: 1;
  border-radius: calc(var(--radius-xl) - 8px);
  border: 1px solid var(--line);
}

.hero-card__phone,
.contact__phone {
  display: inline-flex;
  margin: 1.2rem 0 1rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(232, 84, 30, 0.28);
  transition: opacity 160ms ease, transform 160ms ease;
}

.hero-card__phone:hover,
.contact__phone:hover { opacity: 0.9; transform: translateY(-1px); }

.hero-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.hero-card__stats article,
.service-card,
.vehicle-card,
.process-card,
.contact__card {
  border: 1px solid var(--line);
  background: var(--bg-card);
}

.hero-card__stats article {
  padding: 0.85rem;
  border-radius: var(--radius-md);
}

.hero-card__stats span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-card__stats strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

/* ── TICKER ── */
.ticker {
  position: relative;
  display: flex;
  overflow: hidden;
  gap: 2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 7rem;
  z-index: 2;
}

.ticker::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.ticker::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }

.ticker__track {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-width: max-content;
  animation: marquee 26s linear infinite;
}

.ticker__track span {
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: var(--steel);
  white-space: nowrap;
  font-size: 0.88rem;
}

/* ── SECTION HEADING ── */
.section-heading {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.section-label {
  color: var(--orange);
  font-weight: 600;
}

.section-heading h2,
.contact__copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.section-heading--compact { margin-bottom: 1.4rem; }

/* ── SERVICE GRID ── */
.service-grid,
.vehicle-grid,
.process-grid {
  display: grid;
  gap: 1rem;
}

.service-grid { grid-template-columns: repeat(12, 1fr); }

.service-card {
  grid-column: span 4;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: rgba(232, 84, 30, 0.3);
}

.service-card:hover .service-card__icon {
  background: rgba(232, 84, 30, 0.12);
  border-color: rgba(232, 84, 30, 0.3);
  color: var(--orange-dark);
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 0.85rem;
  border-radius: 10px;
  background: rgba(232, 84, 30, 0.08);
  border: 1px solid rgba(232, 84, 30, 0.15);
  color: var(--orange);
  font-size: 1.25rem;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.service-card__number {
  display: inline-flex;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.service-card h3,
.vehicle-card h3,
.process-card h3,
.contact__card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.02rem;
  font-weight: 600;
}

.service-card p,
.vehicle-card p,
.process-card p,
.contact__card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ── VEHICLE CARDS ── */
.vehicle-grid { grid-template-columns: repeat(3, 1fr); }

.vehicle-card {
  position: relative;
  min-height: 14rem;
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.vehicle-card::after { display: none; }

.vehicle-card--orange {
  background: linear-gradient(145deg, rgba(232, 84, 30, 0.07), rgba(232, 84, 30, 0.02));
  border-color: rgba(232, 84, 30, 0.2);
}

.vehicle-card--dark { background: var(--bg-card); }

.vehicle-card--steel {
  background: linear-gradient(145deg, rgba(55, 65, 81, 0.05), transparent);
}

.vehicle-card__tag {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  background: rgba(232, 84, 30, 0.08);
  color: var(--orange);
  font-weight: 600;
  border: 1px solid rgba(232, 84, 30, 0.2);
}

/* ── PROCESS ── */
.process-grid { grid-template-columns: repeat(3, 1fr); }

.process-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.process-card__step {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--orange);
  font-weight: 600;
}

/* ── CONTACT ── */
.contact {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
}

.contact__card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.checklist { display: grid; gap: 0.75rem; }

.contact__social {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.contact__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange);
  font-weight: 500;
  font-size: 0.92rem;
  transition: opacity 160ms ease;
}

.contact__social-link:hover { opacity: 0.8; }

/* ── FOOTER ── */
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.site-footer__left { display: grid; gap: 0.2rem; }
.site-footer__name { margin: 0; font-weight: 600; color: var(--text); font-size: 0.92rem; }
.site-footer__tagline { margin: 0; }

.site-footer__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-footer__links a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  transition: color 160ms ease;
}

.site-footer__links a:hover { color: var(--orange); }
.site-footer__copy { margin: 0; }

/* ── MOBILE BAR ── */
.mobile-bar {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 25;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.mobile-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
}

.mobile-bar a:first-child {
  background: var(--orange);
  color: #ffffff;
}

.mobile-bar a:last-child {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: var(--text);
}

/* ── REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── KEYFRAMES ── */
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 1.2rem)); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .site-header { border-radius: 24px; }

  .hero,
  .contact,
  .vehicle-grid,
  .process-grid { grid-template-columns: 1fr; }

  .hero__copy h1 { max-width: 100%; }
  .hero-card__stats { grid-template-columns: repeat(3, 1fr); }
  .service-card { grid-column: span 6; }

  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer__copy { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  body { padding-bottom: 6rem; }

  .site-header {
    width: min(var(--max-width), calc(100% - 1rem));
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem;
  }

  .site-nav,
  .call-chip { display: none; }

  .brand { text-align: center; }

  .section,
  .ticker,
  .site-footer { width: min(var(--max-width), calc(100% - 1rem)); }

  .section { padding: 3.5rem 0; }
  .hero { padding-top: 2rem; }

  .hero__copy h1 { font-size: clamp(1.6rem, 9vw, 2.2rem); }
  .section-heading h2,
  .contact__copy h2 { font-size: clamp(1.4rem, 8vw, 2rem); }

  .service-grid { grid-template-columns: 1fr; }
  .service-card { grid-column: auto; }

  .hero-card__phone,
  .contact__phone { width: 100%; justify-content: center; }

  .site-footer { grid-template-columns: 1fr; padding: 1.5rem 0; }
  .mobile-bar { display: grid; }
}

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