/* ============================================================
   VÝBĚROVÁ AUTA – Global Styles
   Matěj Horňák | vyberovaauta.cz
   ============================================================ */

/* 1. VARIABLES */
:root {
  --black:        #0A0A0A;
  --dark:         #111111;
  --dark-2:       #181818;
  --dark-3:       #222222;
  --white:        #FFFFFF;
  --off-white:    #F8F8F8;
  --gray-1:       #F0F0F0;
  --gray-2:       #E0E0E0;
  --gray-3:       #BBBBBB;
  --gray-4:       #888888;
  --gray-5:       #555555;
  --blue:         #4FABFF;
  --blue-h:       #1A8FFF;
  --blue-dark:    #0D6FD8;
  --blue-light:   #EBF5FF;
  --blue-border:  rgba(79,171,255,0.25);
  --dark-border:  rgba(255,255,255,0.07);
  --font:         'Inter', system-ui, -apple-system, sans-serif;
  --max:          1280px;
  --nav-h:        72px;
  --ease:         cubic-bezier(.4,0,.2,1);
  --radius:       6px;
  --radius-lg:    12px;
  --radius-xl:    20px;
}

/* 2. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; font-size: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }

/* 3. BASE TYPOGRAPHY */
h1, h2, h3, h4, h5 { line-height: 1.08; font-weight: 800; color: var(--black); letter-spacing: -0.03em; }
h1 { font-size: clamp(44px, 6.5vw, 88px); }
h2 { font-size: clamp(32px, 4.5vw, 60px); letter-spacing: -0.025em; }
h3 { font-size: clamp(22px, 2.5vw, 32px); letter-spacing: -0.02em; }
h4 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
h5 { font-size: 16px; font-weight: 700; letter-spacing: 0; }
p { color: var(--gray-5); line-height: 1.75; font-size: 16px; }
strong { font-weight: 700; color: var(--black); }

/* 4. LAYOUT */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
section { padding: 100px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}
.section-head { margin-bottom: 64px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 18px; color: var(--gray-4); max-width: 540px; line-height: 1.65; }
.section-head.centered { text-align: center; }
.section-head.centered p { margin: 0 auto; }
.section-head.white h2 { color: var(--white); }
.section-head.white p { color: rgba(255,255,255,0.45); }
.section-head.white .section-label { color: var(--blue); }

/* 5. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  transition: all var(--ease) 0.22s;
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn svg { width: 16px; height: 16px; transition: transform var(--ease) 0.22s; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: btnShimmer 6s ease-in-out 2.5s infinite;
  pointer-events: none;
}
@keyframes btnShimmer {
  0%, 100% { transform: translateX(-120%); }
  12% { transform: translateX(120%); }
}
.btn-primary:hover {
  background: var(--blue-h);
  border-color: var(--blue-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79,171,255,0.35);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover {
  background: var(--dark-3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--gray-2);
}
.btn-outline:hover {
  border-color: var(--black);
  transform: translateY(-2px);
}

.btn-ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.18);
}
.btn-ghost-white:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
}

.btn-lg { padding: 18px 36px; font-size: 15px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

.btn-arrow { gap: 10px; }
.btn-arrow svg { transition: transform var(--ease) 0.22s; }
.btn-arrow:hover svg { transform: translateX(4px); }

.btn-group { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* 6. NAVIGATION */
@keyframes navIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), height 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled { height: 60px; }
.nav-dark { background: transparent; }
.nav-dark.scrolled { background: rgba(10,10,10,0.94); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-color: var(--dark-border); }
.nav-light { background: var(--white); border-color: var(--gray-2); }
.nav-light.scrolled { background: rgba(255,255,255,0.96); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 2px 20px rgba(0,0,0,0.07); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  animation: navIn 0.5s var(--ease) 0.05s both;
}
.nav-logo-mark {
  width: 28px; height: 28px;
  background: var(--blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.05em;
  flex-shrink: 0;
}
.nav-dark .nav-logo-text { color: var(--white); }
.nav-light .nav-logo-text { color: var(--black); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  position: relative;
  list-style: none;
}

/* Magic hover pill */
.nav-highlight {
  position: absolute;
  top: 4px; bottom: 4px;
  left: 0;
  width: 80px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, width;
}
.nav-light .nav-highlight { background: var(--gray-1); }
.nav-dark .nav-highlight { background: rgba(255,255,255,0.09); }

.nav-links li { animation: navIn 0.4s var(--ease) both; }
.nav-links li:nth-child(2) { animation-delay: 0.08s; }
.nav-links li:nth-child(3) { animation-delay: 0.13s; }
.nav-links li:nth-child(4) { animation-delay: 0.18s; }
.nav-links li:nth-child(5) { animation-delay: 0.23s; }
.nav-links li:nth-child(6) { animation-delay: 0.28s; }
.nav-links li:nth-child(7) { animation-delay: 0.33s; }

.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  transition: color 0.18s var(--ease);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
  display: block;
}
.nav-dark .nav-links a { color: rgba(255,255,255,0.6); }
.nav-dark .nav-links a:hover { color: var(--white); }
.nav-dark .nav-links a.active { color: var(--white); }
.nav-light .nav-links a { color: var(--gray-4); }
.nav-light .nav-links a:hover { color: var(--black); }
.nav-light .nav-links a.active { color: var(--black); font-weight: 700; }

/* Active indicator — pulsing dot */
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--blue);
  animation: activePulse 2.8s ease-in-out infinite;
}
@keyframes activePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(79,171,255,0.55); }
  50%       { box-shadow: 0 0 0 5px rgba(79,171,255,0); }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: navIn 0.5s var(--ease) 0.2s both;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  border-radius: 2px;
  transition: all 0.35s var(--ease);
}
.nav-dark .nav-hamburger span { background: var(--white); }
.nav-light .nav-hamburger span { background: var(--black); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile panel — slide in from right */
.nav-mobile-panel {
  position: fixed;
  top: 0; right: 0;
  width: min(380px, 100vw);
  bottom: 0;
  background: #0A0A0A;
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 60px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  border-left: 1px solid rgba(255,255,255,0.06);
  counter-reset: mobile-nav;
}
.nav-mobile-panel::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  z-index: -1;
}
.nav-mobile-panel.open {
  transform: translateX(0);
  pointer-events: auto;
}
.nav-mobile-panel.open::before { opacity: 1; }

.nav-mobile-panel a:not(.btn) {
  counter-increment: mobile-nav;
  font-size: 28px;
  font-weight: 800;
  color: rgba(255,255,255,0.5);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateX(24px);
  transition: color 0.2s, opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.nav-mobile-panel a:not(.btn)::before {
  content: '0' counter(mobile-nav);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 3px;
}
.nav-mobile-panel a:not(.btn):hover { color: var(--white); }
.nav-mobile-panel a:not(.btn).active { color: var(--white); }

.nav-mobile-panel.open a:not(.btn):nth-child(1) { opacity: 1; transform: none; transition-delay: 0.10s; }
.nav-mobile-panel.open a:not(.btn):nth-child(2) { opacity: 1; transform: none; transition-delay: 0.16s; }
.nav-mobile-panel.open a:not(.btn):nth-child(3) { opacity: 1; transform: none; transition-delay: 0.22s; }
.nav-mobile-panel.open a:not(.btn):nth-child(4) { opacity: 1; transform: none; transition-delay: 0.28s; }
.nav-mobile-panel.open a:not(.btn):nth-child(5) { opacity: 1; transform: none; transition-delay: 0.34s; }
.nav-mobile-panel.open a:not(.btn):nth-child(6) { opacity: 1; transform: none; transition-delay: 0.40s; }

.nav-mobile-panel .mobile-cta {
  margin-top: auto;
  padding-top: 32px;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s var(--ease) 0.48s, transform 0.35s var(--ease) 0.48s;
}
.nav-mobile-panel.open .mobile-cta { opacity: 1; transform: none; }

/* 7. HERO */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -20%; left: -10%;
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(79,171,255,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 0;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79,171,255,0.1);
  border: 1px solid rgba(79,171,255,0.22);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.hero-tag-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(79,171,255,0.6);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(79,171,255,0.6); }
  50% { box-shadow: 0 0 16px rgba(79,171,255,1); }
}
.hero-h1 { color: var(--white); margin-bottom: 24px; max-width: 820px; }
.hero-h1 em { font-style: normal; color: var(--blue); }
.hero-desc { font-size: 18px; color: rgba(255,255,255,0.45); max-width: 500px; line-height: 1.7; margin-bottom: 48px; }
.hero-kpis {
  display: flex;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
  margin-top: 24px;
}
.hero-kpi-val {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-kpi-val sup { font-size: 18px; color: var(--blue); }
.hero-kpi-label { font-size: 13px; color: rgba(255,255,255,0.35); font-weight: 500; }

/* PAGE HERO (subpages) */
.page-hero {
  background: var(--black);
  padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.45); font-size: 18px; max-width: 520px; }
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.breadcrumb a { color: rgba(255,255,255,0.3); transition: color var(--ease) 0.2s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* 8. STATS BAR */
.stats-bar {
  background: var(--black);
  padding: 64px 0;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
  justify-items: center;
}

.stat-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.stat-orb {
  width: 136px;
  height: 136px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.stat-cell:hover .stat-orb {
  border-color: rgba(79,171,255,0.4);
  box-shadow: 0 0 0 5px rgba(79,171,255,0.06);
}

.stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-num span { color: var(--white); }
.stat-num em { font-style: normal; color: var(--blue); font-size: 0.65em; vertical-align: super; }
.stat-desc { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 500; text-align: center; }

/* 9. SERVICE CARDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--ease) 0.28s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform var(--ease) 0.28s;
  transform-origin: left;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 48px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--gray-1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background var(--ease) 0.28s;
  flex-shrink: 0;
}
.service-icon svg { width: 24px; height: 24px; color: var(--black); transition: color var(--ease) 0.28s; }
.service-card:hover .service-icon { background: var(--blue-light); }
.service-card:hover .service-icon svg { color: var(--blue); }
.service-card h4 { margin-bottom: 10px; font-size: 19px; }
.service-card p { font-size: 14px; color: var(--gray-4); line-height: 1.6; flex: 1; margin-bottom: 24px; }
.service-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.service-price span { font-size: 14px; font-weight: 500; color: var(--gray-3); }
.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: gap var(--ease) 0.22s;
}
.service-link svg { width: 14px; height: 14px; transition: transform var(--ease) 0.22s; }
.service-card:hover .service-link { gap: 10px; }
.service-card:hover .service-link svg { transform: translateX(2px); }

/* 10. HOW IT WORKS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: var(--gray-2);
  z-index: 0;
}
.step-item {
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  margin: 0 auto 24px;
  transition: all var(--ease) 0.28s;
  letter-spacing: -0.02em;
}
.step-item:hover .step-num {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: scale(1.1);
}
.step-item h5 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.step-item p { font-size: 14px; color: var(--gray-4); line-height: 1.6; }

/* 11. CAR CARDS */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.car-card {
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--ease) 0.28s;
  background: var(--white);
  cursor: pointer;
}
.car-card:hover {
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.car-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--gray-1) 0%, var(--gray-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.car-img-inner {
  text-align: center;
  color: var(--gray-3);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.car-img-inner svg { width: 64px; height: 64px; margin: 0 auto 8px; opacity: 0.3; }
.car-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.car-badge.blue { background: var(--blue); }
.car-body { padding: 24px; }
.car-make { font-size: 11px; font-weight: 700; color: var(--gray-4); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.car-name { font-size: 20px; font-weight: 800; color: var(--black); margin-bottom: 14px; letter-spacing: -0.02em; }
.car-specs {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--gray-1);
  border-bottom: 1px solid var(--gray-1);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.car-spec { font-size: 13px; color: var(--gray-4); display: flex; align-items: center; gap: 5px; font-weight: 500; }
.car-spec svg { width: 13px; height: 13px; color: var(--gray-3); flex-shrink: 0; }
.car-footer { display: flex; align-items: center; justify-content: space-between; }
.car-price { font-size: 24px; font-weight: 900; color: var(--black); letter-spacing: -0.03em; }
.car-price sup { font-size: 13px; vertical-align: super; letter-spacing: 0; color: var(--gray-4); font-weight: 500; }

/* Car filter */
.filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
  border: 2px solid var(--gray-2);
  background: transparent;
  color: var(--gray-4);
  transition: all var(--ease) 0.2s;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.filter-btn:hover { border-color: var(--black); color: var(--black); }
.filter-btn.active { background: var(--black); border-color: var(--black); color: var(--white); }

/* 12. PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pricing-card {
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  transition: all var(--ease) 0.28s;
  background: var(--white);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  background: var(--black);
  border-color: var(--black);
}
.pricing-card.featured::before {
  content: 'NEJOBLÍBENĚJŠÍ';
  position: absolute;
  top: 28px; right: -30px;
  background: var(--blue);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 40px;
  transform: rotate(45deg);
}
.pricing-card:hover:not(.featured) { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.pricing-title { font-size: 14px; font-weight: 700; color: var(--gray-4); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.pricing-card.featured .pricing-title { color: rgba(255,255,255,0.4); }
.pricing-price {
  font-size: 48px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card.featured .pricing-price { color: var(--white); }
.pricing-price sub { font-size: 16px; font-weight: 600; vertical-align: baseline; letter-spacing: 0; color: var(--gray-4); }
.pricing-card.featured .pricing-price sub { color: rgba(255,255,255,0.4); }
.pricing-desc { font-size: 14px; color: var(--gray-4); margin-bottom: 32px; line-height: 1.5; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.4); }
.pricing-features { flex: 1; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-5);
  font-weight: 500;
}
.pricing-card.featured .pricing-feat { color: rgba(255,255,255,0.75); }
.pricing-feat svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }
.pricing-feat.muted { opacity: 0.4; }
.pricing-divider { height: 1px; background: var(--gray-1); margin: 24px 0; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.08); }
.pricing-note { font-size: 12px; color: var(--gray-3); margin-top: 16px; text-align: center; line-height: 1.5; }
.pricing-card.featured .pricing-note { color: rgba(255,255,255,0.2); }

/* 13. WHY US */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-features { display: flex; flex-direction: column; gap: 32px; }
.why-feat {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-feat-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(79,171,255,0.1);
  border: 1px solid rgba(79,171,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-feat-icon svg { width: 20px; height: 20px; color: var(--blue); }
.why-feat-body h5 { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.why-feat-body p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.65; }
.why-visual {
  background: var(--dark-2);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
}
.why-visual-name {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.why-visual-role { font-size: 14px; color: rgba(255,255,255,0.35); margin-bottom: 32px; }
.why-visual-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-visual-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.why-visual-stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.why-visual-stat-num span { color: var(--blue); }
.why-visual-stat-label { font-size: 12px; color: rgba(255,255,255,0.3); font-weight: 500; }
.why-visual-quote {
  background: rgba(79,171,255,0.06);
  border: 1px solid rgba(79,171,255,0.15);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  font-style: italic;
}

/* 14. CALCULATOR */
.calc-wrapper {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-2);
}
.calc-tabs {
  display: flex;
  background: var(--white);
  border-bottom: 1px solid var(--gray-2);
}
.calc-tab {
  flex: 1;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-4);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all var(--ease) 0.2s;
  letter-spacing: -0.01em;
  text-align: left;
}
.calc-tab.active { color: var(--black); border-color: var(--blue); background: var(--white); }
.calc-tab:hover:not(.active) { color: var(--black); background: var(--gray-1); }
.calc-body { display: none; padding: 48px; }
.calc-body.active { display: block; }
.calc-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-control {
  padding: 12px 16px;
  border: 2px solid var(--gray-2);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--ease) 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-control:focus { border-color: var(--blue); }
.form-control option { color: var(--black); }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.calc-result {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.calc-result-item { text-align: center; }
.calc-result-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.3); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.calc-result-val {
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.calc-result-val.monthly { color: var(--blue); }
.calc-result-val sub { font-size: 16px; vertical-align: baseline; color: rgba(255,255,255,0.4); letter-spacing: 0; }
.calc-disclaimer { font-size: 12px; color: var(--gray-3); text-align: center; margin-top: 20px; line-height: 1.5; }
.calc-cta { text-align: center; margin-top: 32px; }

/* 15. CONTACT FORM */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--gray-1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--black); }
.contact-item-label { font-size: 12px; font-weight: 700; color: var(--gray-3); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.contact-item-val { font-size: 16px; font-weight: 600; color: var(--black); }
.contact-item-val a:hover { color: var(--blue); }
.contact-form-wrap { background: var(--off-white); border-radius: var(--radius-xl); padding: 48px; border: 1px solid var(--gray-2); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-control { resize: vertical; min-height: 140px; line-height: 1.6; }
.form-success {
  display: none;
  background: var(--blue-light);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  color: var(--blue-dark);
  font-size: 15px;
  font-weight: 600;
}

/* 16. CTA BANNER */
.cta-banner {
  background: var(--black);
  padding: 100px 0;
  text-align: center;
}
.cta-banner-glow { display: none; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.45); font-size: 18px; max-width: 500px; margin: 0 auto 40px; }

/* 17. FOOTER */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.3); line-height: 1.65; max-width: 240px; }
.footer-col h6 { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.45); padding: 5px 0; transition: color var(--ease) 0.18s; }
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--dark-border);
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.2); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all var(--ease) 0.2s;
}
.footer-social a:hover { border-color: var(--blue); color: var(--blue); }
.footer-social svg { width: 16px; height: 16px; }

/* 18. MISC COMPONENTS */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.badge-blue { background: var(--blue-light); color: var(--blue-dark); }
.badge-dark { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }

.divider { height: 1px; background: var(--gray-2); margin: 48px 0; }
.divider-dark { background: var(--dark-border); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--gray-2); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--gray-2); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  transition: background var(--ease) 0.2s;
  gap: 16px;
  letter-spacing: -0.01em;
}
.faq-q:hover { background: var(--off-white); }
.faq-arrow { width: 20px; height: 20px; flex-shrink: 0; color: var(--gray-3); transition: transform var(--ease) 0.28s; }
.faq-item.open .faq-arrow { transform: rotate(45deg); color: var(--blue); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--ease) 0.4s;
}
.faq-a-inner { padding: 0 28px 28px; font-size: 15px; color: var(--gray-5); line-height: 1.7; }

/* ══════════════════════════════════════════════════════
   SERVICES PAGE — numbered rows + mini cards
   ══════════════════════════════════════════════════════ */

.svc-rows-section {
  padding: 0 0 20px;
}

/* Each numbered service row */
.svc-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0 40px;
  padding: 72px 0;
  border-bottom: 1px solid var(--gray-2);
  transition: background 0.3s ease;
  border-radius: 0;
}
.svc-row:first-child { border-top: 1px solid var(--gray-2); }

.svc-row-num {
  font-size: 88px;
  font-weight: 900;
  color: var(--gray-2);
  letter-spacing: -0.05em;
  line-height: 0.9;
  padding-top: 6px;
  user-select: none;
  transition: color 0.35s ease;
  font-variant-numeric: tabular-nums;
}
.svc-row:hover .svc-row-num { color: var(--blue); }

.svc-row-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.svc-row-title-group { flex: 1; min-width: 280px; }

.svc-row-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.svc-row-h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1.08;
}

.svc-row-lead {
  font-size: 16px;
  color: var(--gray-5);
  line-height: 1.75;
  max-width: 480px;
}

.svc-row-pricing {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  text-align: right;
  min-width: 200px;
}

.svc-row-price {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: var(--black);
  line-height: 1;
}

.svc-row-price-note {
  font-size: 12px;
  color: var(--gray-4);
  font-weight: 500;
  margin-bottom: 6px;
}

/* Features grid — 3 cols */
.svc-row-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 32px;
}

.svc-row-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-5);
}
.svc-row-feat::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── DOPLŇKOVÉ SLUŽBY — dark section ── */
.svc-mini-section {
  background: var(--black);
  padding: 100px 0 110px;
}

.svc-mini-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.svc-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
}

.svc-mini-card {
  padding: 44px 36px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  transition: background 0.28s ease;
  position: relative;
}
.svc-mini-card:hover { background: #111; }
.svc-mini-card:hover .svc-mini-link { gap: 10px; }

.svc-mini-n {
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.svc-mini-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.2;
}

.svc-mini-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 32px;
}

.svc-mini-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
}

.svc-mini-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}

.svc-mini-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  transition: gap 0.22s ease;
}

/* ── FAQ two-column layout ── */
.faq-section { padding: 100px 0; }

.faq-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-head h2 { margin-bottom: 14px; }
.faq-head p  { font-size: 16px; color: var(--gray-5); line-height: 1.7; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .svc-row { grid-template-columns: 72px 1fr; gap: 0 28px; }
  .svc-row-num { font-size: 64px; }
  .svc-row-feats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .svc-row { grid-template-columns: 1fr; padding: 52px 0; }
  .svc-row-num { font-size: 48px; margin-bottom: 20px; }
  .svc-row-pricing { align-items: flex-start; text-align: left; }
  .svc-mini-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .svc-row-header { flex-direction: column; gap: 28px; }
  .svc-row-feats { grid-template-columns: 1fr; }
  .svc-mini-card { padding: 32px 24px; }
  .svc-mini-head { flex-direction: column; align-items: flex-start; }
}

/* Service detail page (legacy) */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-detail-img {
  background: var(--gray-1);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-3);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.service-detail-img svg { width: 64px; height: 64px; opacity: 0.25; }
.service-detail-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 40%; height: 40%;
  background: var(--blue-light);
  border-radius: 50% 0 0 0;
  opacity: 0.6;
}
.service-detail-body h3 { margin-bottom: 16px; }
.service-detail-body > p { font-size: 17px; margin-bottom: 32px; line-height: 1.7; }
.service-detail-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.service-detail-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-5);
}
.service-detail-feat svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }
.service-detail.reverse .service-detail-img { order: 2; }
.service-detail.reverse .service-detail-body { order: 1; }

/* Inline promo */
.inline-promo {
  background: var(--blue-light);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.inline-promo p { font-size: 16px; font-weight: 600; color: var(--black); margin: 0; }

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   HERO CLEAN — split layout: text left, stat orbs right
   ============================================================ */
.hero-clean {
  background: var(--white);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 56px) 0 120px;
  position: relative;
  overflow: hidden;
}

/* Automotive background — two faint concentric rings, right-anchored */
.hero-clean::before {
  content: '';
  position: absolute;
  right: -160px;
  top: 50%;
  transform: translateY(-50%);
  width: 640px;
  height: 640px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.055);
  pointer-events: none;
}

.hero-clean::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 424px;
  height: 424px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.038);
  pointer-events: none;
}

/* Road strip — bottom of hero */
.hero-road {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;  /* 48px road + 72px room for bubbles above */
  overflow: visible;
  pointer-events: none;
}
.hero-road-surface {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 48px;
  background: #0E0E0E;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-road-dashes {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.hero-road-dashes::before {
  content: '';
  display: block;
  width: 200%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    rgba(255,255,255,0.18) 0,
    rgba(255,255,255,0.18) 48px,
    transparent 48px,
    transparent 96px
  );
  animation: roadScroll 0.7s linear infinite;
}
@keyframes roadScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-96px); }
}
/* fade edges on road surface */
.hero-road-surface::before,
.hero-road-surface::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}
.hero-road-surface::before { left: 0;  background: linear-gradient(to right, #0E0E0E, transparent); }
.hero-road-surface::after  { right: 0; background: linear-gradient(to left,  #0E0E0E, transparent); }

/* Team cars — JS-driven, transition-based */
.road-car {
  position: absolute;
  bottom: 48px;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  pointer-events: none;
  will-change: transform;
}
.road-car-unit {
  display: flex;
  align-items: flex-end;
  animation: roadBounce 0.38s ease-in-out infinite;
}
@keyframes roadBounce {
  0%, 100% { transform: translateY(0);    }
  50%      { transform: translateY(-2px); }
}
.road-car-svg {
  width: 52px; height: 26px;
  display: block; flex-shrink: 0;
}
.road-car-svg svg { width: 100%; height: 100%; display: block; }
.road-car-trailer {
  width: 56px; height: 26px;
  display: block; flex-shrink: 0;
}
.road-car-trailer svg { width: 100%; height: 100%; display: block; }
.road-car-bubble {
  background: var(--white);
  border-radius: 10px;
  padding: 9px 13px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.13), 0 1px 4px rgba(0,0,0,0.07);
  white-space: nowrap;
  position: relative;
  transform-origin: bottom center;
  opacity: 0;
  transform: translateY(6px) scale(0.86);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.road-car-bubble.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.road-car-bubble::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--white);
}
.rcb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rcb-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  color: #fff;
  font-size: 9px; font-weight: 800; letter-spacing: 0.03em;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rcb-text strong {
  font-size: 11px; font-weight: 700;
  color: var(--black);
  display: block; line-height: 1.35;
}
.rcb-text span {
  font-size: 10px;
  color: var(--gray-4);
  display: block; line-height: 1.3;
}
.rcb-mission {
  font-size: 10px; font-weight: 600;
  color: var(--blue);
  display: block; line-height: 1.3;
}

.hero-clean-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Left column ── */
.hero-text { display: flex; flex-direction: column; }

.hero-clean-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
  opacity: 0;
  animation: heroIn 0.6s var(--ease) 0.05s both;
}

.hero-clean-h1 {
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: var(--black);
  margin-bottom: 36px;
  /* opacity controlled by child .hl elements */
}

.hero-clean-h1 em {
  font-style: normal;
  color: var(--blue);
}

.hero-clean-sub {
  font-size: clamp(15px, 1.3vw, 19px);
  color: var(--gray-4);
  line-height: 1.7;
  max-width: 100%;
  margin-bottom: 48px;
  opacity: 0;
  animation: heroIn 0.8s cubic-bezier(0.16,1,0.3,1) 0.78s both;
}

.hero-clean-actions {
  opacity: 0;
  animation: heroIn 0.8s cubic-bezier(0.16,1,0.3,1) 0.95s both;
}

/* Proof bar — inline stats below buttons */
.hero-clean-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: heroIn 0.7s cubic-bezier(0.16,1,0.3,1) 1.08s both;
}
.hero-clean-proof span { font-size: 13px; color: var(--gray-4); }
.hero-clean-proof strong { color: var(--black); font-weight: 700; }
.hcp-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gray-3);
  flex-shrink: 0;
}

/* ── Hero right column — embedded, no card ── */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  opacity: 0;
  animation: heroInRight 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

/* Logo — mix-blend so white bg becomes transparent on white page */
.hero-right-logo {
  max-height: 44px;
  max-width: 200px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(1);
  opacity: 0.55;
  transition: opacity 0.3s;
}
.hero-right-logo:hover { opacity: 0.75; }

/* Floating video thumbnail */
.hero-right-video {
  display: block;
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    0 4px 12px rgba(0,0,0,0.06),
    0 16px 48px rgba(0,0,0,0.10),
    0 32px 80px rgba(0,0,0,0.07);
  animation: heroFloat 5s ease-in-out 1.2s infinite alternate;
  will-change: transform;
  transition: box-shadow 0.45s var(--ease);
}
@keyframes heroFloat {
  from { transform: translateY(0px) rotate(0deg); }
  to   { transform: translateY(-10px) rotate(0.4deg); }
}
.hero-right-video:hover {
  box-shadow:
    0 8px 24px rgba(0,0,0,0.1),
    0 28px 64px rgba(0,0,0,0.15),
    0 48px 96px rgba(0,0,0,0.08);
  animation-play-state: paused;
}

.hrv-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.hero-right-video:hover .hrv-thumb { transform: scale(1.03); }

/* Dark gradient top overlay */
.hrv-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.62) 0%,
    rgba(0,0,0,0.12) 45%,
    rgba(0,0,0,0) 100%);
  border-radius: inherit;
  pointer-events: none;
}

/* Shimmer sweep — cool animation */
.hrv-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(105deg,
    transparent 20%,
    rgba(255,255,255,0.09) 50%,
    transparent 80%);
  transform: translateX(-100%);
  animation: hrvShimmer 6s ease-in-out 2s infinite;
  pointer-events: none;
  border-radius: inherit;
}
@keyframes hrvShimmer {
  0%        { transform: translateX(-100%); opacity: 0; }
  5%        { opacity: 1; }
  40%, 100% { transform: translateX(160%); opacity: 0; }
}

/* Play button */
.hrv-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.93);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
  transition: transform 0.3s var(--ease), background 0.2s, box-shadow 0.3s;
}
.hrv-play svg { width: 22px; height: 22px; color: var(--black); margin-left: 3px; }
.hero-right-video:hover .hrv-play {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}

/* Video info top */
.hrv-info {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 14px 16px 18px;
  display: flex; flex-direction: column; gap: 5px;
}
.hrv-badge {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--blue);
}
.hrv-title {
  font-size: 13px; font-weight: 700;
  color: var(--white); line-height: 1.4; margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Stats — floating below video */
.hero-right-stats {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding: 4px 0;
}
.hrs-stat {
  display: flex; flex-direction: column;
  align-items: center; gap: 3px;
}
.hrs-stat strong {
  font-size: 22px; font-weight: 900;
  letter-spacing: -0.04em; color: var(--black); line-height: 1;
}
.hrs-stat strong em {
  font-style: normal; color: var(--blue);
  font-size: 0.58em; vertical-align: super;
}
.hrs-stat span {
  font-size: 10px; color: var(--gray-4);
  font-weight: 500; text-align: center;
}

/* ── Hero Inspect Card (right column) ── */
.hero-inspect-card {
  background: #0D0D0D;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 0;
  animation: heroIn 0.7s var(--ease) 0.42s both;
  will-change: transform;
  transition: box-shadow 0.4s var(--ease);
}
.hero-inspect-card:hover {
  box-shadow: 0 28px 72px rgba(0,0,0,0.22);
}

/* Header */
.hic-header { display: flex; align-items: center; gap: 12px; }
.hic-icon-wrap {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(79,171,255,0.1);
  border: 1px solid rgba(79,171,255,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hic-icon { width: 18px; height: 18px; color: var(--blue); }
.hic-header-text { flex: 1; }
.hic-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin: 0;
}
.hic-model {
  font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,0.9); margin: 2px 0 0;
  letter-spacing: -0.02em;
}
.hic-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}
.hic-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #34D399;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(52,211,153,0); }
}

/* Scanner */
.hic-scan-area {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  height: 88px;
  display: flex; align-items: center; justify-content: center;
}
.hic-car-svg { width: 100%; padding: 0 12px; }
.hic-scan-line {
  position: absolute;
  top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(79,171,255,0.85) 50%, transparent);
  box-shadow: 0 0 14px rgba(79,171,255,0.6);
  animation: hicScan 2.4s var(--ease) infinite;
}
@keyframes hicScan {
  0%   { left: 0;    opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* Checklist */
.hic-checks { display: flex; flex-direction: column; gap: 11px; }
.hic-check {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.3);
}
.hic-check-icon {
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hic-done { color: rgba(255,255,255,0.75); }
.hic-done .hic-check-icon {
  background: rgba(52,211,153,0.14);
  color: #34D399;
}
.hic-done .hic-check-icon svg { width: 12px; height: 12px; }
.hic-active { color: rgba(255,255,255,0.92); }
.hic-scanning {
  border: 1.5px solid rgba(79,171,255,0.5);
  animation: scanDotPulse 1.5s ease-in-out infinite;
}
@keyframes scanDotPulse {
  0%, 100% { border-color: rgba(79,171,255,0.25); box-shadow: none; }
  50%       { border-color: rgba(79,171,255,0.8); box-shadow: 0 0 8px rgba(79,171,255,0.4); }
}
.hic-scanning-tag {
  margin-left: auto;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue);
  animation: tagFlicker 1.5s ease-in-out infinite;
}
@keyframes tagFlicker {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}
.hic-empty {
  border: 1.5px solid rgba(255,255,255,0.12);
}

/* Score footer */
.hic-footer { display: flex; flex-direction: column; gap: 8px; }
.hic-score-row {
  display: flex; justify-content: space-between; align-items: baseline;
}
.hic-score-label { font-size: 11px; color: rgba(255,255,255,0.3); font-weight: 500; }
.hic-score-val {
  font-size: 22px; font-weight: 800;
  color: rgba(255,255,255,0.9); letter-spacing: -0.04em;
}
.hic-score-val small { font-size: 12px; color: rgba(255,255,255,0.25); font-weight: 500; }
.hic-bar {
  height: 4px; background: rgba(255,255,255,0.07);
  border-radius: 2px; overflow: hidden;
}
.hic-bar-fill {
  height: 100%; width: 0;
  background: linear-gradient(to right, var(--blue), #93C5FD);
  border-radius: 2px;
  animation: hicBarGrow 1.4s var(--ease) 1s both;
}
@keyframes hicBarGrow { from { width: 0; } to { width: 81%; } }

/* ── Old right column: stat orbs (kept for other pages) ── */
.hero-stats-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  animation: heroIn 0.7s var(--ease) 0.42s both;
}

.hero-stat-orb {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  border: 1px solid var(--gray-2);
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
  flex-shrink: 0;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.hero-stat-orb:hover {
  border-color: rgba(79,171,255,0.45);
  box-shadow: 0 0 0 5px rgba(79,171,255,0.06);
}

/* Staircase offset: left → center → right */
.hero-stat-orb:nth-child(2) { align-self: center; }
.hero-stat-orb:nth-child(3) { align-self: flex-end; }

.hero-stat-num {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1;
}

.hero-stat-num em {
  font-style: normal;
  color: var(--blue);
  font-size: 0.58em;
  vertical-align: super;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--gray-4);
  font-weight: 500;
  line-height: 1.4;
  max-width: 100px;
}

/* ── Hero video panel ── */
.hero-video-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  animation: heroIn 0.7s var(--ease) 0.42s both;
}

.hero-video-card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-2);
  text-decoration: none;
  position: relative;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s;
}
.hero-video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.10);
  border-color: rgba(79,171,255,0.3);
}

.hero-video-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-1);
}
.hero-video-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}
.hero-video-card:hover .hero-video-thumb { transform: scale(1.04); }

.hero-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.22);
  transition: background 0.25s;
}
.hero-video-card:hover .hero-video-play { background: rgba(0,0,0,0.38); }
.hero-video-play svg {
  width: 52px; height: 52px;
  color: var(--white);
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.45));
  transition: transform 0.25s var(--ease);
}
.hero-video-card:hover .hero-video-play svg { transform: scale(1.12); }

.hero-video-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.hero-video-stats {
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
}
.hero-vstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero-vstat-num {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1;
}
.hero-vstat-num em {
  font-style: normal;
  color: var(--blue);
  font-size: 0.55em;
  vertical-align: super;
}
.hero-vstat-label {
  font-size: 10px;
  color: var(--gray-4);
  font-weight: 500;
  text-align: center;
  line-height: 1.35;
  max-width: 80px;
}

/* ── Hero entrance animations ── */

/* Laser sweep line — glowing blue beam across the hero */
.hero-sweep {
  position: absolute;
  top: 0; bottom: 0;
  left: -4px;
  width: 3px;
  background: linear-gradient(
    to bottom,
    transparent      0%,
    rgba(79,171,255,.4) 12%,
    var(--blue)      35%,
    #fff             50%,
    var(--blue)      65%,
    rgba(79,171,255,.4) 88%,
    transparent      100%
  );
  box-shadow: 0 0 18px 6px rgba(79,171,255,0.55), 0 0 4px 1px rgba(255,255,255,0.7);
  animation: heroSweep 1.3s cubic-bezier(0.25, 0, 0.1, 1) 0.1s both;
  z-index: 10;
  pointer-events: none;
}
@keyframes heroSweep {
  0%   { left: -4px;         opacity: 0; }
  6%   {                     opacity: 1; }
  90%  {                     opacity: 1; }
  100% { left: calc(100% + 4px); opacity: 0; }
}

/* H1 line-reveal: each line wipes up from below the overflow clip */
.hl-wrap {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.08em; /* prevent descender clipping */
  vertical-align: bottom;
}
.hl {
  display: inline-block;
  transform: translateY(115%);
}
.hl-1 .hl { animation: heroLineReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards; }
.hl-2 .hl { animation: heroLineReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.58s forwards; }
@keyframes heroLineReveal {
  from { transform: translateY(115%); }
  to   { transform: translateY(0);    }
}

/* Remaining elements: blur-clear fade-up */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0);   }
}
@keyframes heroInRight {
  from { opacity: 0; transform: translateX(52px); filter: blur(10px); }
  to   { opacity: 1; transform: translateX(0);    filter: blur(0);    }
}

/* ============================================================
   JOURNEY — jak to funguje (3 animated steps)
   ============================================================ */
.journey {
  background: var(--white);
  border-top: 1px solid var(--gray-1);
  border-bottom: 1px solid var(--gray-1);
  padding: 64px 0;
}

.journey-steps {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 72px 1fr 72px 1fr;
  align-items: start;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: opacity 0.3s var(--ease);
}

.journey-steps:has(.journey-step:hover) .journey-step:not(:hover) {
  opacity: 0.35;
}

.journey-vis {
  position: relative;
  width: 100%;
  margin-bottom: 22px;
}

.journey-svg {
  width: 100%;
  max-width: 210px;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: transform 0.35s var(--ease);
}

.journey-step:hover .journey-svg {
  transform: translateY(-5px);
}

.journey-step-num {
  position: absolute;
  top: -12px;
  right: -4px;
  font-size: 80px;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--gray-1);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.journey-step-title {
  display: block;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.journey-step-desc {
  font-size: 13.5px;
  color: var(--gray-4);
  line-height: 1.65;
  margin: 0;
  max-width: 260px;
}

.journey-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
}

.journey-connector svg {
  width: 60px;
  height: 20px;
  flex-shrink: 0;
}

/* ── SVG animations: hidden by default, reveal when .visible ── */

/* Step 1 — car slides in from left, speed lines + rays fade in */
.journey-step[data-step="0"] .jsvg-car {
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity 0.7s var(--ease) 0.35s, transform 0.7s var(--ease) 0.35s;
}
.journey-step[data-step="0"].visible .jsvg-car { opacity: 1; transform: none; }

.journey-step[data-step="0"] .jsvg-speed {
  opacity: 0;
  transition: opacity 0.5s var(--ease) 0.78s;
}
.journey-step[data-step="0"].visible .jsvg-speed { opacity: 1; }

.journey-step[data-step="0"] .jsvg-rays {
  opacity: 0;
  transition: opacity 0.45s var(--ease) 0.95s;
}
.journey-step[data-step="0"].visible .jsvg-rays { opacity: 1; }

/* Step 2 — car fades in, scan beam sweeps, magnifier pops */
.journey-step[data-step="1"] .jsvg-car2 {
  opacity: 0;
  transition: opacity 0.6s var(--ease) 0.35s;
}
.journey-step[data-step="1"].visible .jsvg-car2 { opacity: 1; }

.journey-step[data-step="1"] .jsvg-scan {
  opacity: 0;
  transition: opacity 0.5s var(--ease) 0.65s;
}
.journey-step[data-step="1"].visible .jsvg-scan { opacity: 1; }

.journey-step[data-step="1"].visible .jsvg-scanline {
  animation: scanPulse 2.4s var(--ease) 1s infinite alternate;
  transform-box: fill-box;
}
@keyframes scanPulse {
  from { transform: translateX(-20px); opacity: 0.5; }
  to   { transform: translateX(20px);  opacity: 1; }
}

.journey-step[data-step="1"] .jsvg-mag {
  opacity: 0;
  transform: scale(0.7);
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 0.5s var(--ease) 0.5s,
              transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
}
.journey-step[data-step="1"].visible .jsvg-mag { opacity: 1; transform: none; }

/* Step 3 — tag drops, hands slide in, clasp + check pop */
.journey-step[data-step="2"] .jsvg-tag {
  opacity: 0;
  transform: translateY(-14px);
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 0.5s var(--ease) 0.38s, transform 0.5s var(--ease) 0.38s;
}
.journey-step[data-step="2"].visible .jsvg-tag { opacity: 1; transform: none; }

.journey-step[data-step="2"] .jsvg-hand-l {
  opacity: 0;
  transform: translateX(-28px);
  transform-box: fill-box;
  transition: opacity 0.55s var(--ease) 0.5s, transform 0.55s var(--ease) 0.5s;
}
.journey-step[data-step="2"].visible .jsvg-hand-l { opacity: 1; transform: none; }

.journey-step[data-step="2"] .jsvg-hand-r {
  opacity: 0;
  transform: translateX(28px);
  transform-box: fill-box;
  transition: opacity 0.55s var(--ease) 0.5s, transform 0.55s var(--ease) 0.5s;
}
.journey-step[data-step="2"].visible .jsvg-hand-r { opacity: 1; transform: none; }

.journey-step[data-step="2"] .jsvg-clasp {
  opacity: 0;
  transition: opacity 0.4s var(--ease) 0.9s;
}
.journey-step[data-step="2"].visible .jsvg-clasp { opacity: 1; }

.journey-step[data-step="2"] .jsvg-check {
  opacity: 0;
  transform: scale(0.4);
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 0.4s var(--ease) 1.05s,
              transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.05s;
}
.journey-step[data-step="2"].visible .jsvg-check { opacity: 1; transform: none; }

/* ── Continuous animations (loop after reveal) ── */

/* Step 1 — car rocks back and forth, lights pulse */
.journey-step[data-step="0"].visible .jsvg-car {
  animation: carRock 2.6s ease-in-out 1.0s infinite alternate;
}
@keyframes carRock {
  from { transform: translateX(-7px); }
  to   { transform: translateX(5px); }
}
.journey-step[data-step="0"].visible .jsvg-speed {
  animation: speedFade 2.6s ease-in-out 0.7s infinite alternate;
}
@keyframes speedFade {
  from { opacity: 0.2; }
  to   { opacity: 1; }
}
.journey-step[data-step="0"].visible .jsvg-rays {
  animation: raysBlink 1.8s ease-in-out 0.85s infinite alternate;
}
@keyframes raysBlink {
  from { opacity: 0.3; }
  to   { opacity: 1; }
}

/* Step 3 — price tag drops, sweep goes left-right, clasp pulses */
.journey-step[data-step="2"].visible .jsvg-tag {
  animation: priceDropBob 2.4s ease-in-out 0.95s infinite alternate;
  transform-box: fill-box;
  transform-origin: top center;
}
@keyframes priceDropBob {
  from { transform: translateY(0); }
  to   { transform: translateY(11px); }
}
.jsvg-sweep { opacity: 0; }
.journey-step[data-step="2"].visible .jsvg-sweep {
  animation: negoSweep 2.4s var(--ease) 1.1s infinite alternate;
  transform-box: fill-box;
}
@keyframes negoSweep {
  from { transform: translateX(-26px); opacity: 0.3; }
  to   { transform: translateX(26px);  opacity: 0.9; }
}
.journey-step[data-step="2"].visible .jsvg-clasp {
  animation: claspPulse 2.4s ease-in-out 0.75s infinite alternate;
}
@keyframes claspPulse {
  from { opacity: 0.45; }
  to   { opacity: 1; }
}

/* ============================================================
   HERO V2 – SPLIT DESIGN WITH CAR ANIMATION
   ============================================================ */

/* Logo image */
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity var(--ease) 0.2s;
}
.nav-light .nav-logo-img { filter: none; }
.nav-logo-img:hover { opacity: 0.8; }

/* Hero V2 */
.hero-v2 {
  min-height: 100vh;
  max-height: 840px;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
  padding-bottom: 80px; /* space for absolute road */
}

/* Subtle background texture — light grid on white */
.hero-v2-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 100px 100px;
  pointer-events: none;
}
.hero-v2-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 0% 50%, rgba(235,245,255,0.6) 0%, transparent 60%);
  pointer-events: none;
}

/* Headlight glow — blue/white beam from car toward text (dramatically boosted for visible blink) */
.hero-v2-beam {
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background:
    radial-gradient(ellipse 60% 55% at 95% 55%,
      rgba(255,255,255,0.18) 0%,
      rgba(168,216,255,0.32) 18%,
      rgba(79,171,255,0.18) 40%,
      transparent 70%),
    radial-gradient(ellipse 90% 80% at 100% 50%,
      rgba(79,171,255,0.22) 0%,
      rgba(79,171,255,0.10) 45%,
      transparent 75%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.05s ease;
  z-index: 1;
  mix-blend-mode: screen;
}

/* Při každém ON pulsu blinku se text rozsvítí (modrobílá záře) — instantní pro strobe efekt */
.hero-v2.lights-on .hero-v2-h1,
.hero-v2.lights-on .hero-v2-sub,
.hero-v2.lights-on .hero-v2-actions,
.hero-v2.lights-on .hero-v2-kpis,
.hero-v2.lights-on .hero-v2-h1 em {
  text-shadow: 0 0 24px rgba(168,216,255,0.7), 0 0 10px rgba(255,255,255,0.55), 0 0 40px rgba(79,171,255,0.35);
}

/* YT billboard se rozjasní synchronně s blinkem */
.hero-v2.lights-on .yt-billboard {
  filter: brightness(1.35) saturate(1.15) drop-shadow(0 0 30px rgba(168,216,255,0.4));
}
.yt-billboard { transition: filter 0.18s ease; }

/* DRL ring — spinning dashed circle (Porsche 911 style) */
.hl-drl-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: drlSpin 5s linear infinite;
}
@keyframes drlSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Headlight projector pulse — subtle breathe when lights are on */
@keyframes hlGlow {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(79,171,255,0.55)); }
  50%       { filter: drop-shadow(0 0 18px rgba(79,171,255,0.90)) brightness(1.12); }
}
#headlights-group {
  animation: hlGlow 2.8s ease-in-out infinite;
}

/* Text side */
.hero-v2-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 56px 14px 0;
  position: relative;
  z-index: 2;
}

/* Car side */
.hero-v2-car-side {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-right: 0;
  position: relative;
  overflow: visible;
  z-index: 2;
}

/* Car wrapper — entrance handled by GSAP */
.hero-v2-car {
  width: 95%;
  max-width: 640px;
  margin-bottom: 90px;
  flex-shrink: 0;
  position: relative;
  transform: translateX(115%); /* GSAP animates from here */
}

#car-canvas {
  display: block;
  width: 100%;
  height: 360px;
}

/* ═══════ Three.js 3D car frame ═══════ */
.hero-v2-car-frame {
  position: relative;
  width: 100%;
  height: 380px;
}
#car-canvas {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
}
.hero-v2-car-status {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255,255,255,0.45);
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  pointer-events: none;
  text-align: center;
  max-width: 320px;
  line-height: 1.5;
  transition: opacity .4s ease;
}
.hero-v2-car-status.hidden { opacity: 0; }
.hero-v2-car-status.error  { color: rgba(255,150,150,0.95); }

/* Placeholder když auto je dočasně schované (drží výšku layoutu) */
.hero-v2-car-placeholder {
  width: 100%;
  height: 380px;
}

/* Wheel spin — GSAP controls transform, CSS sets origin */
.wheel-spin-front { transform-box: view-box; transform-origin: 120px 165px; }
.wheel-spin-rear  { transform-box: view-box; transform-origin: 460px 165px; }

/* ════════════════════════════════════════════════════════════════════
   YT BILLBOARD — moderní velký LED outdoor billboard
   Inspirace: digital highway billboard, premium aluminum bezel,
   substantial steel mount. Reaguje na blink světlomet auta.
   ════════════════════════════════════════════════════════════════════ */
.yt-billboard {
  position: absolute;
  top: 50%;
  right: max(40px, calc((100vw - 1280px) / 2 + 40px));
  transform: translateY(-52%);
  width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  pointer-events: none;
  filter: brightness(0.18) saturate(0.4);
  transition: filter 0.6s ease;
}

/* Brand plate odstraněn — modernější vzhled bez retro headeru */
.yt-billboard.visible {
  filter: brightness(1) saturate(1);
  pointer-events: auto;
  animation: billboardPowerOn 1.8s ease;
}
@keyframes billboardPowerOn {
  0%   { filter: brightness(0.18) saturate(0.4); }
  20%  { filter: brightness(1.4)  saturate(1.2); }
  35%  { filter: brightness(0.6)  saturate(0.7); }
  55%  { filter: brightness(1.3)  saturate(1.15); }
  100% { filter: brightness(1)    saturate(1); }
}

/* ── Hlavní rám billboardu — sleek minimalistický bezel ── */
.yt-billboard-screen {
  position: relative;
  width: 100%;
  /* Tenký moderní bezel — black aluminum, žádné šrouby/dekorace */
  padding: 6px;
  background: linear-gradient(180deg, #1a1d24 0%, #0a0c10 100%);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    /* Vnitřní rám — kovový gradient lemu */
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(0,0,0,0.5),
    inset 0 0 0 2px rgba(0,0,0,0.6),
    /* Modrý LED ambient glow okolo skříně */
    0 0 0 1px rgba(79,171,255,0.15),
    0 0 80px rgba(79,171,255,0.25),
    /* Hluboký drop shadow — billboard "stojí" v prostoru */
    0 30px 80px rgba(0,0,0,0.85),
    0 12px 24px rgba(0,0,0,0.5);
  animation: screenBreath 5.5s ease-in-out infinite;
}
@keyframes screenBreath {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.12),
      inset 0 -1px 0 rgba(0,0,0,0.5),
      inset 0 0 0 2px rgba(0,0,0,0.6),
      0 0 0 1px rgba(79,171,255,0.15),
      0 0 80px rgba(79,171,255,0.22),
      0 30px 80px rgba(0,0,0,0.85),
      0 12px 24px rgba(0,0,0,0.5);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.12),
      inset 0 -1px 0 rgba(0,0,0,0.5),
      inset 0 0 0 2px rgba(0,0,0,0.6),
      0 0 0 1px rgba(79,171,255,0.28),
      0 0 120px rgba(79,171,255,0.40),
      0 30px 80px rgba(0,0,0,0.85),
      0 12px 24px rgba(0,0,0,0.5);
  }
}

/* Subtilní LED dot pattern přes obrazovku — moderní LED panel textura */
.yt-billboard-screen::after {
  content: '';
  position: absolute;
  inset: 6px;
  background:
    repeating-linear-gradient(to bottom,
      transparent       0px,
      transparent       2px,
      rgba(0,0,0,0.04)  2px,
      rgba(0,0,0,0.04)  3px);
  pointer-events: none;
  z-index: 11;
  border-radius: 6px;
}

/* ── Minimalistický topbar — čistý, nenápadný ── */
.yt-billboard-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 7px;
  background: rgba(8,10,14,0.75);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px 6px 0 0;
  position: relative;
  z-index: 5;
}
.yt-billboard-topbar svg {
  opacity: 0.9;
  flex-shrink: 0;
}
.yt-billboard-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  flex: 1;
}

/* ── Display media area — hlavní LED panel s videem ── */
.yt-billboard-media {
  position: relative;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  overflow: hidden;
  background: #040408;
  border-radius: 0 0 6px 6px;
  /* Vnitřní LED border glow */
  box-shadow:
    inset 0 0 0 1px rgba(79,171,255,0.12),
    inset 0 0 20px rgba(79,171,255,0.06);
}
/* Lesk skla nad obrazovkou — sklo nad LED panelem */
.yt-billboard-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.10) 0%,
    rgba(255,255,255,0.04) 30%,
    transparent 55%);
  pointer-events: none;
  z-index: 9;
}
.yt-card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.4s ease;
}
.yt-billboard-media:hover .yt-card-thumb {
  transform: scale(1.04);
  filter: brightness(1.08);
}

.yt-billboard-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yt-billboard-play::before { display: none; }
.yt-billboard-play svg {
  width: 56px; height: 56px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6));
  position: relative;
  z-index: 11;
  opacity: 0.85;
}
.yt-billboard-play svg circle {
  fill: rgba(0,0,0,0.52);
  transition: fill 0.25s ease;
}
.yt-billboard-media:hover .yt-billboard-play svg {
  transform: scale(1.08);
  opacity: 1;
}
.yt-billboard-media:hover .yt-billboard-play svg circle {
  fill: rgba(220,30,30,0.90);
}

.yt-card-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: none;
}

/* footer odstraněn — minimalistický vzhled jen s topbarem */
.yt-billboard-footer { display: none; }
.yt-billboard-channel { display: none; }

/* mount odstraněn — billboard plave volně v prostoru */
.yt-billboard-mount { display: none; }
.yt-billboard-post  { display: none; }

/* ══════════════════════════════════════════════════════
   MATĚJ — 3D vyrenderovaná figurka, 6-frame sprite animace
   Frames: 0=stand, 1=slight turn, 2=more turn, 3=3/4 back arm up,
           4=back arm up, 5=arm pointing peak
   ══════════════════════════════════════════════════════ */

.matej-char {
  position: absolute;
  bottom: 80px;
  left: 47%;
  margin-left: -107px;
  z-index: 4;
  width: 213px;
  height: 426px;                  /* sprite: 10 frames × 213×426px */
  opacity: 0;
  pointer-events: none;
  transform: translateX(420px);
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.22));
}

.matej-anim {
  width: 100%;
  height: 100%;
  background-image: url('../img-turn.webp');
  /* Strip: 2130×426px, 10 frames × 213px. Frame N → background-position-x: -(N×213)px */
  background-size: 2130px 426px;
  background-position: 0 0;
  background-repeat: no-repeat;
  display: block;
  user-select: none;
}

.matej-char.visible {
  animation: matejWalkOut 3.4s cubic-bezier(0.18, 0.72, 0.32, 1) 0s forwards;
  pointer-events: auto;
}

/* Vystoupí ze dveří auta a krokem dojde dopředu */
@keyframes matejWalkOut {
  0%   { opacity: 0;   transform: translateX(420px) translateY(0px)   scale(0.93); }
  6%   { opacity: 0.5; transform: translateX(395px) translateY(-1.5px) scale(0.94); }
  14%  { opacity: 1;   transform: translateX(350px) translateY(1px)   scale(0.96); }
  24%  { opacity: 1;   transform: translateX(290px) translateY(-1.5px) scale(0.97); }
  36%  { opacity: 1;   transform: translateX(225px) translateY(1px)   scale(0.98); }
  49%  { opacity: 1;   transform: translateX(162px) translateY(-1px)  scale(0.99); }
  62%  { opacity: 1;   transform: translateX(104px) translateY(1px)   scale(1);    }
  75%  { opacity: 1;   transform: translateX(55px)  translateY(-0.5px) scale(1);   }
  88%  { opacity: 1;   transform: translateX(16px)  translateY(0.5px) scale(1);    }
  100% { opacity: 1;   transform: translateX(0)     translateY(0)     scale(1);    }
}

/* Po chůzi: idle dýchání + sprite frame turn-and-point */
.matej-char.visible .matej-anim {
  animation:
    matejBreath 4.2s ease-in-out 3.6s infinite,
    matejTurn 10s steps(1, end) 4.4s infinite;
}

/* Dýchání — plynulé, velmi jemné */
@keyframes matejBreath {
  0%, 100% { translate: 0 0; }
  30%       { translate: 0 -2px; }
  70%       { translate: 0 -1px; }
}

/* SPRITE TURN — 10 snímků, cycle 10s, steps(1,end)
   Frames:  0=čelně  1=lehký turn  2=turn  3=ruka začíná  4=ruka nahoru
            5=ukazuje (peak1)  6=ukazuje (peak2)  7=ruka dolů  8=návrat  9=téměř zpět
   Frame N → background-position-x: -(N × 213)px */
@keyframes matejTurn {
  /* ─ idle 5s ─ */
  0%, 50% { background-position:    0px 0; }   /* frame 0 */

  /* ─ turn vpřed: ~200ms/frame ─ */
  51%  { background-position:  -213px 0; }   /* frame 1 */
  53%  { background-position:  -426px 0; }   /* frame 2 */
  55%  { background-position:  -639px 0; }   /* frame 3 */
  57%  { background-position:  -852px 0; }   /* frame 4 */
  59%  { background-position: -1065px 0; }   /* frame 5 — pointing peak */

  /* ─ drží peak ~600ms ─ */
  65%  { background-position: -1278px 0; }   /* frame 6 — peak 2 */

  /* ─ návrat: ~400ms/frame ─ */
  71%  { background-position: -1491px 0; }   /* frame 7 */
  75%  { background-position: -1704px 0; }   /* frame 8 */
  79%  { background-position: -1917px 0; }   /* frame 9 */

  /* ─ zpět na frame 0, pauza před dalším cyklem ─ */
  83%, 100% { background-position:    0px 0; } /* frame 0 */
}

/* billboardPulse keyframes — používáno v hlavním .yt-billboard.visible pravidle výše,
   pulzí když je Matěj na peak frame (synchronizováno s 65–78% jeho turn cyklu) */
@keyframes billboardPulse {
  0%, 60%, 100% { filter: brightness(1) saturate(1); }
  68%, 80%       { filter: brightness(1.20) saturate(1.18); }
}

/* ══════════════════════════════════════════════════════
   ŘIDIČOVY DVEŘE — animované přímo uvnitř SVG auta
   ══════════════════════════════════════════════════════ */

/* Tmavý interiér za dveřmi (vidět když se dveře otevřou) */
.car-door-interior {
  opacity: 0;
}

/* Křídlo dveří — GSAP ovládá animaci */
.car-door-swing {
  transform-box: view-box;
  transform-origin: 41.6% 40%;     /* hinge na A-pilíři (x=258 v SVG 620px) */
  transform: scaleX(1);
  will-change: transform;
}

/* Road strip — absolutně na spodní hraně hero sekce */
.hero-v2-road {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: #0c0c0c;
  border-top: 2px solid var(--black);
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 3;
}
.road-dashes {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.road-dashes::before {
  content: '';
  display: block;
  width: 200%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    rgba(255,255,255,0.2) 0,
    rgba(255,255,255,0.2) 60px,
    transparent 60px,
    transparent 120px
  );
  animation: dashScroll 0.55s linear infinite;
}
@keyframes dashScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-120px); }
}
.road-edge-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.06);
}
.road-edge-line.bottom { top: auto; bottom: 0; }

/* Hero text reveals — JS adds .text-revealed after headlight blink */
.hero-v2-tag     { opacity: 0; animation: slideUp 0.6s var(--ease) 1.55s forwards; }
.hero-v2-h1      { opacity: 0; transform: translateY(22px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.hero-v2-sub     { opacity: 0; transform: translateY(22px); transition: opacity 0.65s var(--ease) 0.12s, transform 0.65s var(--ease) 0.12s; }
.hero-v2-actions { opacity: 0; transform: translateY(22px); transition: opacity 0.65s var(--ease) 0.24s, transform 0.65s var(--ease) 0.24s; }
.hero-v2-kpis    { opacity: 0; transform: translateY(22px); transition: opacity 0.65s var(--ease) 0.36s, transform 0.65s var(--ease) 0.36s; }
.hero-v2-h1.text-revealed,
.hero-v2-sub.text-revealed,
.hero-v2-actions.text-revealed,
.hero-v2-kpis.text-revealed    { opacity: 1; transform: translateY(0); }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Floor glow on road — lit by headlights */
.road-floor-glow {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: radial-gradient(ellipse 55% 130% at 48% -10%,
    rgba(79,171,255,0.45) 0%,
    rgba(79,171,255,0.15) 40%,
    transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* ── ANIMATED PROPOSITIONS ── */
.props-section {
  border-top: 1px solid var(--gray-2);
  border-bottom: 1px solid var(--gray-2);
  overflow: hidden;
  background: var(--white);
}
.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: 0 auto;
}
.prop-item {
  padding: 56px 52px;
  border-right: 1px solid var(--gray-2);
  position: relative;
  cursor: default;
  transform: translateX(56px);
  opacity: 0;
  transition: transform 0.85s cubic-bezier(0.22,1,0.36,1), opacity 0.7s ease;
  overflow: hidden;
}
.prop-item:last-child { border-right: none; }
.prop-item.visible { transform: translateX(0); opacity: 1; }

/* Bílý block se přijede zprava — vymazává obsah pod */
.prop-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(0);
  transition: transform 0.85s cubic-bezier(0.22,1,0.36,1);
  z-index: 1;
}
.prop-item.visible::before { transform: translateX(101%); }

/* Modrá čára dole na hover */
.prop-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--blue);
  transition: width 0.45s cubic-bezier(0.22,1,0.36,1);
}
.prop-item:hover::after { width: 100%; }

.prop-num {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--gray-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  transition: color var(--ease) 0.2s;
}
.prop-item:hover .prop-num { color: var(--blue); }

.prop-headline {
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.prop-item p {
  font-size: 14px;
  color: var(--gray-4);
  line-height: 1.65;
  position: relative;
  z-index: 2;
}

@media (max-width: 800px) {
  .props-grid { grid-template-columns: 1fr; }
  .prop-item { border-right: none; border-bottom: 1px solid var(--gray-2); padding: 40px 24px; }
  .prop-item:last-child { border-bottom: none; }
}

/* ── MARQUEE TICKER ── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--gray-2);
  border-bottom: 1px solid var(--gray-2);
  padding: 18px 0;
  background: var(--off-white);
  user-select: none;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeRoll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 40px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-3);
  white-space: nowrap;
  cursor: default;
}
.marquee-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
@keyframes marqueeRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── EDITORIAL SERVICES LIST ── */
.svc-list { border-top: 1px solid var(--gray-2); }
.svc-row {
  display: flex;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-2);
  gap: 28px;
  text-decoration: none;
  transition: padding-left var(--ease) 0.25s;
  cursor: pointer;
}
.svc-row:hover { padding-left: 16px; }
.svc-n {
  font-size: 11px;
  font-weight: 800;
  color: var(--gray-3);
  letter-spacing: 0.12em;
  width: 28px;
  flex-shrink: 0;
  transition: color var(--ease) 0.22s;
}
.svc-row:hover .svc-n { color: var(--blue); }
.svc-nm {
  flex: 1;
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
}
.svc-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 3px 10px;
  background: var(--blue-light);
  border-radius: 100px;
  flex-shrink: 0;
  display: none;
}
.svc-row:hover .svc-tag { display: inline; }
.svc-pr {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-3);
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color var(--ease) 0.22s;
  flex-shrink: 0;
}
.svc-row:hover .svc-pr { color: var(--black); }
.svc-arr {
  font-size: 20px;
  color: var(--gray-3);
  transition: all var(--ease) 0.22s;
  flex-shrink: 0;
  line-height: 1;
}
.svc-row:hover .svc-arr { transform: translateX(6px); color: var(--blue); }

/* ── FEATURED CAR (editorial) ── */
.featured-car-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.featured-car-visual {
  background: linear-gradient(135deg, var(--gray-1) 0%, var(--gray-2) 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--gray-3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
}
.featured-car-visual svg { width: 80px; height: 80px; opacity: 0.2; }
.featured-car-badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.featured-car-details {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
}
.featured-car-make { font-size: 11px; font-weight: 800; color: var(--gray-4); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 6px; }
.featured-car-name { font-size: 32px; font-weight: 900; color: var(--black); letter-spacing: -0.03em; margin-bottom: 24px; line-height: 1.1; }
.featured-car-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.featured-car-spec-item { }
.featured-car-spec-label { font-size: 11px; font-weight: 700; color: var(--gray-3); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.featured-car-spec-val { font-size: 16px; font-weight: 700; color: var(--black); letter-spacing: -0.01em; }
.featured-car-price-row { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--gray-1); gap: 16px; }
.featured-car-price { font-size: 36px; font-weight: 900; color: var(--black); letter-spacing: -0.03em; line-height: 1; }
.featured-car-price sup { font-size: 16px; color: var(--gray-4); vertical-align: super; letter-spacing: 0; }

/* Big quote section */
.big-quote {
  font-size: clamp(22px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.25;
  font-style: italic;
  max-width: 780px;
  margin-bottom: 32px;
  position: relative;
}
.big-quote::before {
  content: '"';
  position: absolute;
  top: -20px; left: -24px;
  font-size: 120px;
  color: var(--blue);
  opacity: 0.15;
  font-style: normal;
  line-height: 1;
  font-family: Georgia, serif;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { order: -1; }
  .cars-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  /* Billboard scaling — pod 1100 px zúžíme */
  .yt-billboard { width: 380px; }
}

/* Intermediate breakpoint — 1101-1300 px */
@media (min-width: 1101px) and (max-width: 1300px) {
  .yt-billboard { width: 460px; }
}

@media (max-width: 800px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 24px; }
  section { padding: 72px 0; }
  .nav-links, .nav-actions .btn { display: none; }
  .nav-hamburger { display: flex; }
  .hero-kpis { gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .cars-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .calc-form { grid-template-columns: 1fr; }
  .calc-result { grid-template-columns: 1fr; text-align: left; }
  .calc-body { padding: 28px 24px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 24px; }
  .service-detail { grid-template-columns: 1fr; gap: 40px; }
  .service-detail.reverse .service-detail-img { order: 0; }
  .service-detail.reverse .service-detail-body { order: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  h1 { font-size: clamp(36px, 10vw, 56px); }
  h2 { font-size: clamp(28px, 8vw, 44px); }

  /* hero v2 mobile */
  .hero-v2 {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding-bottom: 0;
    max-height: none;
  }
  .hero-v2-road {
    position: relative;
    bottom: auto; left: auto; right: auto;
  }
  .hero-v2-text {
    padding: 48px 0 32px;
    order: 1;
    justify-content: flex-start;
  }
  .hero-v2-car-side {
    order: 2;
    padding: 0;
    height: 200px;
    justify-content: center;
    overflow: hidden;
  }
  #car-canvas { height: 200px; }
  .hero-v2-car-frame { height: 240px; }
  .hero-v2-car {
    width: 100%;
    max-width: 380px;
    margin-bottom: 0;
    margin-top: auto;
  }
  .hero-v2-beam       { display: none; }
  .yt-billboard       { display: none; }
  .featured-car-grid  { grid-template-columns: 1fr; }
  .featured-car-details { padding: 28px; }
  .featured-car-name { font-size: 24px; }
  .svc-tag { display: none !important; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-tag { font-size: 11px; }
  .hero-kpis { flex-direction: column; gap: 24px; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .pricing-card.featured::before { display: none; }
  .calc-tabs { flex-direction: column; }
  .calc-tab { border-bottom: 1px solid var(--gray-2); border-right: none; }
  .calc-tab.active { border-right: none; border-bottom: 3px solid var(--blue); }
}

/* ============================================================
   PREMIUM SERVICE CARDS
   ============================================================ */
/* ══════════════════════════════════════════════════════
   CARS SHOWCASE — aktuální nabídka aut k prodeji
   Vyvažuje "expertní prověření" vůči "samotný prodej"
   ══════════════════════════════════════════════════════ */
.cars-showcase {
  background: var(--white);
  padding: 140px 0 110px;
  position: relative;
}

.cars-showcase-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 32px;
}
.cars-showcase-meta {
  text-align: right;
}
.cars-showcase-count-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.04em;
  line-height: 1;
}
.cars-showcase-count-num span { color: var(--black); }
.cars-showcase-count-num span[data-suffix] { color: var(--blue); }
.cars-showcase-count-label {
  font-size: 13px;
  color: var(--gray-4);
  margin-top: 8px;
  font-weight: 600;
  line-height: 1.45;
}

/* H2 ve stylu hero (mix černá / modrá akcent přes <em>) */
.cars-showcase-h2 {
  max-width: 580px;
  color: var(--black);
  letter-spacing: -0.03em;
}
.cars-showcase-h2 em {
  font-style: normal;
  color: var(--blue);
}

/* Krátký popis pod cenou v kartách */
.car-desc {
  font-size: 13px;
  color: var(--gray-4);
  margin-bottom: 14px;
  line-height: 1.5;
  min-height: 38px;
}

/* ══════════════════════════════════════════════════════
   YOUTUBE SEKCE — editorial design + channel CTA bar
   ══════════════════════════════════════════════════════ */
.yt-section {
  background: var(--off-white);
  padding: 100px 0 110px;
}

.yt-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.yt-head-left { flex: 1; min-width: 0; }

.yt-head-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  flex-shrink: 0;
}

.yt-section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gray-5);
  margin-bottom: 22px;
}

.yt-section-h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1.08;
  margin-bottom: 16px;
}
.yt-section-h2 em {
  font-style: normal;
  color: var(--blue);
}

.yt-section-sub {
  font-size: 17px;
  color: var(--gray-5);
  max-width: 480px;
  line-height: 1.65;
  margin: 0;
}

.yt-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: transparent;
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-2);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.22s ease, color 0.22s ease;
}
.yt-open-btn::before { display: none; }
.yt-open-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.yt-open-btn svg {
  flex-shrink: 0;
  transition: transform 0.22s ease;
}
.yt-open-btn:hover svg {
  transform: translateX(4px);
}

/* ── VIDEO CARDS — editorial overlay style ── */
.yt-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.yt-video-card {
  display: block;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #111;
  cursor: pointer;
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.3, 1),
              box-shadow 0.38s ease;
}
.yt-video-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 70px rgba(0,0,0,0.22);
}

.yt-video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.yt-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.3, 1),
              filter 0.4s ease;
}
.yt-video-card:hover .yt-video-thumb img {
  transform: scale(1.07);
  filter: brightness(0.65);
}

/* Dark gradient overlay — always visible, deepens on hover */
.yt-video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.35) 45%,
    transparent 75%
  );
  transition: opacity 0.38s ease;
}

/* Play button — appears on hover, centered */
.yt-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.yt-video-play svg {
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.7));
}
.yt-video-card:hover .yt-video-play {
  opacity: 1;
  transform: scale(1);
}

/* Text overlay at bottom */
.yt-video-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 20px 20px;
  z-index: 2;
}
.yt-video-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 6px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.yt-video-date {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Skeleton */
.yt-video-skeleton { pointer-events: none; border-radius: 16px; overflow: hidden; }
.yt-video-skeleton::before {
  content: '';
  display: block;
  aspect-ratio: 16 / 9;
  background: linear-gradient(90deg, #e0e0e0 0%, #ececec 50%, #e0e0e0 100%);
  background-size: 200% 100%;
  animation: ytSkeletonShimmer 1.6s linear infinite;
}
.yt-video-skeleton::after { display: none; }
@keyframes ytSkeletonShimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* Responsive */
@media (max-width: 920px) {
  .yt-section-head { align-items: flex-start; }
  .yt-head-right { align-items: flex-start; }
  .yt-videos-grid { grid-template-columns: 1fr 1fr; }
  .yt-videos-grid > .yt-video-card:nth-child(3) { grid-column: span 2; }
}
@media (max-width: 640px) {
  .yt-section { padding: 70px 0 80px; }
  .yt-section-head { flex-direction: column; gap: 28px; }
  .yt-head-right { align-items: flex-start; }
  .yt-open-btn { font-size: 15px; padding: 16px 26px; }
  .yt-videos-grid { grid-template-columns: 1fr; gap: 14px; }
  .yt-videos-grid > .yt-video-card:nth-child(3) { grid-column: auto; }
}

/* ══════════════════════════════════════════════════════
   DRAMATICKÝ CTA BLOK — sportovní auto jako hero element
   ══════════════════════════════════════════════════════ */

.cars-cta-hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
  padding: 40px 52px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-2);
  text-decoration: none;
  color: var(--black);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.cars-cta-hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--blue), var(--blue-dark));
  border-radius: 16px 0 0 16px;
}
.cars-cta-hero:hover {
  border-color: var(--blue-border);
  box-shadow: 0 8px 40px rgba(79,171,255,0.1), 0 2px 16px rgba(0,0,0,0.04);
}
/* Top row: headline + arrow */
.cars-cta-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
/* Bottom row: stats + meta */
.cars-cta-row-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-1);
}
.cars-cta-headline {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--black);
  margin: 0;
}
.cars-cta-headline em {
  font-style: normal;
  color: var(--blue);
}
.cars-cta-meta {
  font-size: 13px;
  color: var(--gray-4);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: right;
}
.cars-cta-stats {
  display: flex;
  gap: 32px;
}
.cars-cta-stats > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cars-cta-stats strong {
  font-size: 22px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1;
}
.cars-cta-stats span {
  font-size: 11px;
  color: var(--gray-4);
  font-weight: 500;
}
.cars-cta-arrow {
  font-size: 28px;
  color: var(--blue);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.cars-cta-hero:hover .cars-cta-arrow { transform: translateX(8px); }

/* ── SEKUNDÁRNÍ ODKAZ — decentní centrovaný text ── */
.cars-cta-secondary {
  display: block;
  width: fit-content;
  margin: 28px auto 0;
  padding: 4px 8px;
  font-size: 15px;
  color: var(--gray-4);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: -0.005em;
  text-align: center;
  transition: color 0.3s ease;
}
.cars-cta-secondary em {
  font-style: normal;
  font-weight: 600;
  color: var(--gray-5);
  border-bottom: 1px dashed var(--gray-3);
  padding-bottom: 1px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.cars-cta-secondary:hover {
  color: var(--gray-5);
}
.cars-cta-secondary:hover em {
  color: var(--blue);
  border-bottom-color: var(--blue);
  border-bottom-style: solid;
}
.cars-cta-secondary.driving { pointer-events: none; opacity: 0.55; }

/* Responsive */
@media (max-width: 920px) {
  .cars-cta-hero { padding: 36px 32px; }
  .cars-cta-headline { font-size: 28px; }
}
@media (max-width: 600px) {
  .cars-cta-hero { padding: 32px 24px; gap: 20px; }
  .cars-cta-headline { font-size: 24px; }
  .cars-cta-secondary { font-size: 14px; flex-wrap: wrap; }
}

/* Page-transition overlay — elektrické auto přejede přes obrazovku */
.car-transit {
  position: fixed;
  inset: 0;
  z-index: 99998;
  pointer-events: none;
  overflow: hidden;
}
.car-transit-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at center, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.4) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.car-transit.go .car-transit-bg { opacity: 1; }

.car-transit-trail {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 6px;
  transform: translateY(20px);
  background: linear-gradient(90deg, transparent 0%, rgba(79,171,255,0.55) 30%, rgba(255,210,74,0.85) 70%, rgba(255,255,255,0.95) 100%);
  filter: blur(3px);
  opacity: 0;
  border-radius: 6px;
}
.car-transit.go .car-transit-trail {
  animation: carTrailDraw 1.0s cubic-bezier(0.3, 0, 0.4, 1) forwards;
}
@keyframes carTrailDraw {
  0%   { width: 0;    opacity: 0;   }
  20%  { opacity: 0.9; }
  100% { width: 110vw; opacity: 0;  }
}

.car-transit-car {
  position: absolute;
  top: 50%;
  left: -440px;
  transform: translateY(-50%);
  width: 380px;
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(79,171,255,0.42));
}
.car-transit-car svg { width: 100%; height: auto; display: block; }
.car-transit.go .car-transit-car {
  animation: carTransitDrive 1.1s cubic-bezier(0.32, 0.04, 0.4, 1) forwards;
}
@keyframes carTransitDrive {
  0%   { left: -440px;            opacity: 0; }
  10%  {                          opacity: 1; }
  100% { left: calc(100vw + 80px); opacity: 1; }
}

/* ARRIVAL na cílové stránce — auto přijede zprava, projede a odjede vlevo */
.car-arrival {
  position: fixed;
  inset: 0;
  z-index: 99998;
  pointer-events: none;
  overflow: hidden;
}
.car-arrival-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at center, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.35) 55%, transparent 100%);
  opacity: 1;
  animation: carArrivalFadeBg 1.6s ease-out forwards;
}
@keyframes carArrivalFadeBg {
  0%   { opacity: 1; }
  60%  { opacity: 0.6; }
  100% { opacity: 0; }
}
.car-arrival-trail {
  position: absolute;
  top: 38%;
  right: 0;
  width: 110vw;
  height: 6px;
  transform: translateY(20px);
  background: linear-gradient(270deg, transparent 0%, rgba(79,171,255,0.55) 30%, rgba(255,210,74,0.85) 70%, rgba(255,255,255,0.95) 100%);
  filter: blur(3px);
  opacity: 0;
  border-radius: 6px;
  animation: carArrivalTrail 1.4s cubic-bezier(0.3, 0, 0.4, 1) forwards;
}
@keyframes carArrivalTrail {
  0%   { transform: translateY(20px) translateX(0);    opacity: 0;   }
  15%  { opacity: 0.85; }
  100% { transform: translateY(20px) translateX(-110vw); opacity: 0; }
}
.car-arrival-car {
  position: absolute;
  top: 42%;
  right: -440px;
  width: 380px;
  height: auto;
  transform: translateY(-50%) scaleX(-1); /* zrcadleno — auto jede zprava doleva */
  filter: drop-shadow(0 18px 36px rgba(79,171,255,0.42));
}
.car-arrival-car svg { width: 100%; height: auto; display: block; }
.car-arrival.go .car-arrival-car {
  animation: carArrivalDrive 1.4s cubic-bezier(0.32, 0.04, 0.4, 1) forwards;
}
@keyframes carArrivalDrive {
  0%   { right: -440px;            opacity: 0; }
  10%  {                           opacity: 1; }
  100% { right: calc(100vw + 80px); opacity: 1; }
}

/* Responsive: 2 sloupce na tabletu, 1 na mobilu */
@media (max-width: 920px) {
  .cars-showcase .cars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cars-showcase-head { align-items: flex-start; }
  .cars-showcase-meta { text-align: left; }
  .cars-showcase-cta { flex-direction: column; align-items: flex-start; padding: 28px; }
  .cars-showcase-actions { width: 100%; }
}
@media (max-width: 600px) {
  .cars-showcase .cars-grid {
    grid-template-columns: 1fr;
  }
  .cars-showcase { padding: 70px 0 80px; }
  .cars-showcase-count-num { font-size: 40px; }
  .cars-showcase-actions { flex-direction: column; }
  .cars-showcase-actions .btn { width: 100%; justify-content: center; }
}

.svc-prem-section {
  background: var(--black);
  padding: 100px 0;
}
.svc-prem-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.svc-prem-head h2 { color: var(--white); }
.svc-prem-count-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.svc-prem-count-label {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
  font-weight: 600;
  text-align: right;
}

/* 3-column main cards */
.svc-main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.svc-main-card {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease) 0.3s, border-color var(--ease) 0.3s, box-shadow var(--ease) 0.3s;
  cursor: pointer;
}
.svc-main-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--blue), rgba(79,171,255,0.2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease) 0.38s;
}
.svc-main-card:hover {
  border-color: rgba(79,171,255,0.2);
  transform: translateY(-8px);
  box-shadow: 0 28px 72px rgba(0,0,0,0.55), 0 0 0 1px rgba(79,171,255,0.06);
}
.svc-main-card:hover::after { transform: scaleX(1); }

.svc-main-card.svc-highlight {
  background: linear-gradient(150deg, #141C2E 0%, #0D1420 100%);
  border-color: rgba(79,171,255,0.12);
}
.svc-card-n {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255,255,255,0.1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.svc-card-ico {
  width: 54px; height: 54px;
  background: rgba(79,171,255,0.07);
  border: 1px solid rgba(79,171,255,0.14);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease) 0.3s, border-color var(--ease) 0.3s;
  flex-shrink: 0;
}
.svc-main-card:hover .svc-card-ico {
  background: rgba(79,171,255,0.15);
  border-color: rgba(79,171,255,0.3);
}
.svc-card-ico svg { width: 26px; height: 26px; color: var(--blue); }
.svc-card-body { flex: 1; display: flex; flex-direction: column; }
.svc-card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(79,171,255,0.1);
  border: 1px solid rgba(79,171,255,0.2);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 12px;
  width: fit-content;
}
.svc-main-card h3 {
  font-size: clamp(19px, 1.7vw, 23px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.svc-main-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.36);
  line-height: 1.65;
  flex: 1;
}
.svc-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: auto;
}
.svc-card-price {
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.svc-highlight .svc-card-price { color: var(--blue); }
.svc-card-price sup {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.28);
  vertical-align: super;
  letter-spacing: 0;
}
.svc-highlight .svc-card-price sup { color: rgba(79,171,255,0.5); }
.svc-card-arr {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.22);
  font-size: 16px;
  flex-shrink: 0;
  transition: all var(--ease) 0.25s;
}
.svc-main-card:hover .svc-card-arr {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(79,171,255,0.08);
  transform: translate(2px, -2px);
}

/* 2-column secondary cards */
.svc-sec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.svc-sec-card {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  transition: border-color var(--ease) 0.25s, transform var(--ease) 0.25s;
}
.svc-sec-card:hover {
  border-color: rgba(79,171,255,0.16);
  transform: translateX(6px);
}
.svc-sec-n {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255,255,255,0.1);
  letter-spacing: 0.16em;
  flex-shrink: 0;
  width: 24px;
}
.svc-sec-body { flex: 1; min-width: 0; }
.svc-sec-body h5 {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.svc-sec-body p {
  font-size: 13px;
  color: rgba(255,255,255,0.26);
  line-height: 1.45;
}
.svc-sec-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.svc-sec-price {
  font-size: 17px;
  font-weight: 800;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  letter-spacing: -0.02em;
  transition: color var(--ease) 0.2s;
}
.svc-sec-card:hover .svc-sec-price { color: var(--white); }
.svc-sec-arr {
  color: rgba(255,255,255,0.16);
  font-size: 14px;
  transition: color var(--ease) 0.2s, transform var(--ease) 0.2s;
}
.svc-sec-card:hover .svc-sec-arr { color: var(--blue); transform: translateX(3px); }

/* Responsive service cards */
@media (max-width: 1100px) {
  .svc-main-grid { grid-template-columns: 1fr 1fr; }
  .svc-main-grid .svc-main-card:last-child { grid-column: 1 / -1; }
  .svc-main-grid .svc-main-card:last-child { max-width: 50%; }
}
@media (max-width: 800px) {
  .svc-main-grid { grid-template-columns: 1fr; }
  .svc-main-grid .svc-main-card:last-child { grid-column: auto; max-width: 100%; }
  .svc-sec-grid { grid-template-columns: 1fr; }
  .svc-sec-body h5 { white-space: normal; }
  .svc-prem-count-label { text-align: left; }
}

/* ── IMPROVED CAR CARDS (dark premium) ── */
.car-img {
  background: linear-gradient(160deg, #111 0%, #1A1A1A 100%);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.car-img-inner { color: rgba(255,255,255,0.12); }
.car-img-inner svg { opacity: 0.12; color: rgba(255,255,255,0.5); }

/* Car card hover: dark accent border */
.car-card:hover { border-color: rgba(79,171,255,0.2); }

/* Featured car visual placeholder */
.featured-car-visual {
  background: linear-gradient(160deg, #111 0%, #181818 100%);
  color: rgba(255,255,255,0.12);
  border-right: 1px solid rgba(255,255,255,0.04);
}
.featured-car-visual svg { opacity: 0.1; color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════════════════════
   SVC SCROLL — sticky left panel + scroll-driven right column
   ══════════════════════════════════════════════════════ */

/* Wrapper: scroll travel height = section height + 5 × step (5 transitions between 6 slides) */
/* ══════════════════════════════════════════════
   SERVICES SECTION — car diagnostic panel
   ══════════════════════════════════════════════ */

/* ============================================================
   SERVICES SECTION — white, airy, card-based
   ============================================================ */
.svc-section {
  background: var(--white);
  padding: 100px 0;
}

.svc-head {
  margin-bottom: 56px;
}

.svc-head h2 { margin-bottom: 14px; }

.svc-head h2 em {
  font-style: normal;
  color: var(--blue);
}

.svc-head-sub {
  font-size: 18px;
  color: var(--gray-4);
  max-width: 500px;
  line-height: 1.65;
  margin: 0;
}

/* ── Journey within services section ── */
.svc-journey {
  display: grid;
  grid-template-columns: 1fr 72px 1fr 72px 1fr;
  align-items: start;
  padding: 0 0 48px;
  border-bottom: 1px solid var(--gray-1);
  margin-bottom: 0;
}

.svc-journey:has(.journey-step:hover) .journey-step:not(:hover) {
  opacity: 0.35;
}

.journey-krok {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 7px;
}

/* Hide old watermark numbers */
.journey-step-num { display: none; }

/* ── Service index rows ── */
.svc-index-rows {
  margin-top: 48px;
  margin-bottom: 32px;
}

.svc-index-row {
  display: grid;
  grid-template-columns: 52px 1fr 28px;
  align-items: center;
  gap: 0 24px;
  padding: 26px 12px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--gray-1);
  border-radius: var(--radius);
  transition: background 0.2s var(--ease), padding-left 0.2s var(--ease), padding-right 0.2s var(--ease);
}

.svc-index-rows .svc-index-row:first-child {
  border-top: 1px solid var(--gray-1);
}

.svc-index-row:hover {
  background: var(--off-white);
  padding-left: 20px;
}

.svc-index-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gray-3);
  transition: color 0.2s var(--ease);
}

.svc-index-row:hover .svc-index-num { color: var(--blue); }

.svc-index-title {
  display: block;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.025em;
  margin-bottom: 4px;
  transition: color 0.2s var(--ease);
}

.svc-index-desc {
  font-size: 13px;
  color: var(--gray-4);
  line-height: 1.55;
  margin: 0;
}

.svc-index-arr {
  color: var(--gray-3);
  justify-self: end;
  transition: transform 0.2s var(--ease), color 0.2s var(--ease);
}

.svc-index-row:hover .svc-index-arr {
  transform: translateX(4px);
  color: var(--black);
}

/* ── Service cards (4-up grid) ── */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 36px;
}

.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 26px 26px;
  border: 1px solid var(--gray-1);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  background: var(--off-white);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.svc-card:hover {
  border-color: rgba(79,171,255,0.35);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transform: translateY(-4px);
}

/* Featured first card — blue tinted */
.svc-card:first-child {
  background: var(--blue-light);
  border-color: rgba(79,171,255,0.22);
}
.svc-card:first-child:hover {
  border-color: rgba(79,171,255,0.45);
  box-shadow: 0 8px 28px rgba(79,171,255,0.12);
}

/* Service card icon */
.svc-card-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(79,171,255,0.1);
  border: 1px solid rgba(79,171,255,0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
  flex-shrink: 0;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.svc-card:hover .svc-card-icon {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* "Nejpopulárnější" badge */
.svc-card-popular {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(79,171,255,0.12);
  border: 1px solid rgba(79,171,255,0.25);
  border-radius: 100px;
  padding: 3px 9px;
  margin-bottom: 12px;
  width: fit-content;
}

.svc-card-title {
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  line-height: 1.15;
}

.svc-card-desc {
  font-size: 13px;
  color: var(--gray-4);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.svc-card-hook {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.45;
  margin: 0 0 14px;
}
.svc-card:first-child .svc-card-hook {
  color: var(--black);
}

.svc-card-bullets {
  list-style: none;
  margin: 0 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-bottom: 4px;
}
.svc-card-bullets li {
  font-size: 12.5px;
  color: var(--gray-5);
  line-height: 1.45;
  padding-left: 18px;
  position: relative;
}
.svc-card-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.55;
  flex-shrink: 0;
}
.svc-card:first-child .svc-card-bullets li::before {
  opacity: 0.8;
}

.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 11px 18px;
  background: var(--blue);
  color: var(--white);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  align-self: flex-start;
  transition: background 0.2s var(--ease), gap 0.2s var(--ease), transform 0.15s var(--ease);
}
.svc-card:hover .svc-card-link {
  background: var(--blue-dark);
  gap: 10px;
  transform: translateY(-1px);
}
/* Featured card gets a dark button so it contrasts with blue-light bg */
.svc-card:first-child .svc-card-link {
  background: var(--black);
  color: var(--white);
}
.svc-card:first-child:hover .svc-card-link {
  background: #1A1A1A;
}

/* ── Brand cards (Matějovy další značky) ── */
.svc-brands {
  margin-bottom: 32px;
}
.svc-brands-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.svc-brands-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0;
  white-space: nowrap;
}
.svc-brands-note {
  font-size: 13px;
  color: var(--gray-4);
  margin: 0;
}
.svc-brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-brand-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-2);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.2s var(--ease);
}
.svc-brand-card:hover {
  border-color: var(--blue-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.svc-brand-vis {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 36px 24px 28px;
  min-height: 155px;
  overflow: hidden;
}
.svc-brand-vis--servis {
  background: linear-gradient(145deg, #0d1b2a 0%, #1b3a5c 60%, #1a4f80 100%);
}
.svc-brand-vis--stk {
  background: linear-gradient(145deg, #0e1f14 0%, #1a3d28 60%, #1f5234 100%);
}
.svc-brand-vis--bazar {
  background: linear-gradient(145deg, #141414 0%, #1e2030 60%, #1a2540 100%);
}
.svc-brand-vis--hub {
  background: linear-gradient(145deg, #0a0a14 0%, #18183a 60%, #1e1e50 100%);
}
.svc-brand-vis--komis {
  background: linear-gradient(145deg, #1a1000 0%, #3a2800 55%, #4d3600 100%);
}
.svc-brand-vis::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.svc-brand-vis svg {
  color: #fff;
  opacity: 0.88;
  transition: transform 0.3s var(--ease), opacity 0.25s;
}
.svc-brand-card:hover .svc-brand-vis svg {
  transform: scale(1.1);
  opacity: 1;
}
.svc-brand-ext-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 4px 9px 4px 7px;
  z-index: 1;
  transition: color 0.2s, background 0.2s;
}
.svc-brand-card:hover .svc-brand-ext-badge {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.13);
}
.svc-brand-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.25s var(--ease), transform 0.3s var(--ease);
}
.svc-brand-card:hover .svc-brand-icon-wrap {
  background: rgba(255,255,255,0.12);
  transform: scale(1.06);
}
.svc-brand-icon-wrap--percent svg {
  opacity: 1;
  color: #f0b429;
}
.svc-brand-vis--komis .svc-brand-vis-label {
  color: rgba(240,180,41,0.6);
}
.svc-brand-vis--hub .svc-brand-vis-label {
  color: rgba(130,150,255,0.7);
}
.svc-brand-vis-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-align: center;
}
.svc-brand-logo-img {
  max-width: 130px;
  max-height: 58px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.82;
  transition: opacity 0.25s;
}
.svc-brand-card:hover .svc-brand-logo-img { opacity: 1; }
.svc-brand-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 24px;
}
.svc-brand-name {
  display: block;
  font-size: 14.5px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}
.svc-brand-desc {
  font-size: 13px;
  color: var(--gray-5);
  line-height: 1.6;
  margin: 0 0 auto;
  padding-bottom: 18px;
}
.svc-brand-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
  border-top: 1px solid var(--gray-1);
  padding-top: 16px;
  transition: gap 0.2s var(--ease);
}
.svc-brand-card:hover .svc-brand-cta { gap: 10px; }
.svc-ext-icon {
  color: var(--gray-3);
  flex-shrink: 0;
  transition: color 0.18s var(--ease), transform 0.18s var(--ease);
}
@media (max-width: 860px) {
  .svc-brands-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .svc-brands-grid { grid-template-columns: 1fr; }
  .svc-brands-head { flex-direction: column; gap: 6px; }
}

/* ── What I inspect (chips bar) ── */
.svc-inspect-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-1);
  margin-bottom: 24px;
}

.svc-inspect-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-3);
  white-space: nowrap;
  margin: 0;
}

.svc-inspect-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.svc-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: var(--off-white);
  border: 1px solid var(--gray-1);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gray-5);
  white-space: nowrap;
}

/* ── Calculator CTA ── */
.svc-calc-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.svc-calc-cta:hover {
  border-color: var(--blue-border);
  box-shadow: 0 6px 32px rgba(79,171,255,0.1);
}

.svc-calc-cta-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.svc-calc-cta:hover .svc-calc-cta-ico {
  background: var(--blue);
  color: var(--white);
}

.svc-calc-cta-body { flex: 1; }

.svc-calc-cta-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 4px;
}
.svc-calc-cta-name {
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.03em;
  display: block;
}
.svc-calc-cta-sub {
  font-size: 13px;
  color: var(--gray-4);
  display: block;
  margin-top: 3px;
  line-height: 1.4;
}
.svc-calc-cta-arr {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--blue-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.svc-calc-cta:hover .svc-calc-cta-arr {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
/* ── Responsive ── */
@media (max-width: 1080px) {
  .hero-clean-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .journey-steps { grid-template-columns: 1fr 56px 1fr 56px 1fr; padding: 0 24px; }
  .svc-journey { grid-template-columns: 1fr 56px 1fr 56px 1fr; }
  .svc-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .journey-steps { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .journey-connector { display: none; }
  .journey-step { align-items: flex-start; text-align: left; }
  .journey-svg { max-width: 180px; }
  .svc-journey { grid-template-columns: 1fr; gap: 40px; }
  .svc-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-clean-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-clean::before, .hero-clean::after { display: none; }
  .hero-inspect-card { max-width: 420px; }
  .svc-calc-cta { padding: 22px 24px; }
}

@media (max-width: 600px) {
  /* Hero — extra bottom padding so road strip + bubbles don't overlap content */
  .hero-clean { padding: calc(var(--nav-h) + 36px) 0 148px; min-height: auto; }
  .hero-clean-inner { padding: 0 20px; }
  .hero-clean-sub { font-size: 15px; }
  .hero-clean-sub br { display: none; }
  .hero-clean-proof { flex-wrap: wrap; gap: 8px; }

  /* Car bubbles — allow wrapping so text fits narrow screens */
  .road-car-bubble { white-space: normal; max-width: 175px; padding: 7px 10px; }
  .rcb-avatar { width: 24px; height: 24px; font-size: 7.5px; }
  .rcb-text strong { font-size: 10.5px; }
  .rcb-text span, .rcb-mission { font-size: 9.5px; }

  /* Cars CTA — stack bottom row */
  .cars-cta-row-top { flex-wrap: wrap; }
  .cars-cta-row-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cars-cta-meta { display: none; }
  .cars-cta-stats { gap: 20px; }

  /* Services */
  .svc-cards { grid-template-columns: 1fr; }
  .svc-inspect-bar { flex-direction: column; align-items: flex-start; }

  /* YouTube grid — single column */
  .yt-videos-grid { grid-template-columns: 1fr !important; }
  .yt-section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .yt-section-h2 { font-size: clamp(26px, 7vw, 36px); }

  /* CTA banner */
  .cta-banner h2 { font-size: clamp(26px, 7vw, 40px); }
  .cta-banner p { font-size: 15px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
