/* ============================================================
   AUTO SHKOLLA START — Design System
   Palette: #fee100 (yellow) · #343a40 (dark gray) · white
   ============================================================ */

:root {
  --yellow: #fee100;
  --yellow-dark: #e6cc00;
  --yellow-soft: #fff9cc;
  --dark: #343a40;
  --darker: #23272b;
  --darkest: #16191c;
  --gray: #6c757d;
  --gray-light: #adb5bd;
  --surface: #f8f9fa;
  --line: #e9ecef;
  --white: #ffffff;

  --font-display: "Archivo", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 12px rgba(52, 58, 64, 0.08);
  --shadow-md: 0 12px 32px rgba(52, 58, 64, 0.12);
  --shadow-lg: 0 24px 64px rgba(52, 58, 64, 0.18);
  --shadow-yellow: 0 12px 32px rgba(254, 225, 0, 0.35);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1200px;
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

@supports (overflow: clip) {
  html, body { overflow-x: clip; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--yellow); color: var(--dark); }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 200;
  padding: 12px 22px;
  background: var(--dark);
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 999px;
  transform: translateY(-200%);
  transition: transform 0.3s;
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.display-xl {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.display-lg { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 900; }
.display-md { font-size: clamp(1.5rem, 3vw, 2.1rem); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--gray); }

/* Yellow marker highlight behind a word */
.mark {
  position: relative;
  display: inline-block;
  z-index: 1;
  white-space: nowrap;
}
.mark::after {
  content: "";
  position: absolute;
  left: -0.08em; right: -0.08em; bottom: 0.04em;
  height: 0.42em;
  background: var(--yellow);
  z-index: -1;
  transform: skew(-12deg) scaleX(0);
  transform-origin: left center;
  animation: markIn 0.9s var(--ease-out) 0.7s forwards;
}
@keyframes markIn { to { transform: skew(-12deg) scaleX(1); } }

/* Section eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 10px;
  background:
    repeating-conic-gradient(var(--dark) 0% 25%, var(--yellow) 0% 50%)
    0 0 / 10px 10px;
  border-radius: 2px;
}
.on-dark .eyebrow { color: var(--white); }

/* ---------- Layout ---------- */
.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.section { padding: clamp(72px, 10vw, 128px) 0; }
.section-head { max-width: 640px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { margin-top: 16px; }

.on-dark { background: var(--dark); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--white); }
.on-dark p, .on-dark .lead { color: var(--gray-light); }

.on-surface { background: var(--surface); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.35s, color 0.35s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform 0.35s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: scale(0.97); }

/* shine sweep */
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease-out);
}
.btn:hover::after { left: 130%; }

.btn-yellow {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: var(--shadow-yellow);
}
.btn-yellow:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(254, 225, 0, 0.45); }

.btn-dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-dark::after { background: linear-gradient(105deg, transparent, rgba(254, 225, 0, 0.25), transparent); }

.btn-outline {
  background: transparent;
  color: var(--dark);
  box-shadow: inset 0 0 0 2px var(--dark);
}
.btn-outline:hover { background: var(--dark); color: var(--white); transform: translateY(-3px); }

.on-dark .btn-outline { color: var(--white); box-shadow: inset 0 0 0 2px rgba(255,255,255,0.4); }
.on-dark .btn-outline:hover { background: var(--yellow); color: var(--dark); box-shadow: none; }

/* ---------- Checkered ribbons ---------- */
.checker-strip {
  height: 18px;
  background:
    repeating-conic-gradient(var(--darker) 0% 25%, var(--white) 0% 50%)
    0 0 / 18px 18px;
}
.checker-strip.on-yellow {
  background:
    repeating-conic-gradient(var(--darker) 0% 25%, var(--yellow) 0% 50%)
    0 0 / 18px 18px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: height 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s, background 0.4s;
}
.site-header.scrolled {
  height: 68px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 40px; width: auto; transition: height 0.4s var(--ease-out); }
.site-header.scrolled .brand img { height: 34px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  position: relative;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  border-radius: 999px;
  transition: color 0.3s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 3px;
  border-radius: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease-out);
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.header-cta { flex: none; }
.header-cta .btn { padding: 12px 24px; font-size: 0.88rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px; height: 48px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--dark);
  z-index: 110;
}
.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--yellow);
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  /* Full-screen overlay menu. Sized explicitly to the viewport because
     the header's backdrop-filter makes it the containing block for this
     fixed child — so `inset:0`/`bottom:0` would resolve against the header,
     not the screen. The header sits at the viewport's top-left, so
     top/left:0 + 100vw/100dvh reliably covers the whole viewport. */
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 105;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: calc(var(--header-h) + 24px) 24px 48px;
    background: var(--dark);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.4s var(--ease-out), visibility 0.4s, transform 0.4s var(--ease-out);
  }
  .main-nav::before {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 18px;
    background:
      repeating-conic-gradient(var(--darkest) 0% 25%, var(--yellow) 0% 50%)
      0 0 / 18px 18px;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    padding: 12px 24px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  }
  .main-nav.open a { opacity: 1; transform: none; }
  .main-nav.open a:nth-child(1) { transition-delay: 0.08s; }
  .main-nav.open a:nth-child(2) { transition-delay: 0.14s; }
  .main-nav.open a:nth-child(3) { transition-delay: 0.20s; }
  .main-nav.open a:nth-child(4) { transition-delay: 0.26s; }
  .main-nav.open a:nth-child(5) { transition-delay: 0.32s; }
  .main-nav.open a:nth-child(6) { transition-delay: 0.38s; }
  .main-nav a::after { left: 24px; right: 24px; }

  /* Keep the logo visible and legible above the dark overlay while open. */
  .brand { position: relative; z-index: 106; }
  .brand img { transition: filter 0.3s var(--ease-out); }
  body.nav-locked .brand img { filter: brightness(0) invert(1); }

  body.nav-locked { overflow: hidden; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(48px, 8vw, 96px)) 0 0;
  background:
    radial-gradient(1200px 600px at 85% -10%, var(--yellow-soft), transparent 60%),
    var(--white);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding-bottom: clamp(64px, 9vw, 120px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(254, 225, 0, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(254, 225, 0, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(254, 225, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(254, 225, 0, 0); }
}

.hero h1 { margin-bottom: 24px; }
.hero .lead { max-width: 520px; margin-bottom: 36px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
}
.hero-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
}
.hero-trust .trust-item svg {
  width: 22px; height: 22px;
  color: var(--dark);
  background: var(--yellow);
  border-radius: 8px;
  padding: 3px;
  flex: none;
}

/* Hero visual */
.hero-visual { position: relative; }

.hero-photo {
  position: relative;
  border-radius: var(--radius) var(--radius) var(--radius) 96px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 0.2s ease-out;
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(254, 225, 0, 0.18), transparent 45%);
  z-index: 1;
  pointer-events: none;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; }

/* decorative checkered corner */
.hero-visual::before {
  content: "";
  position: absolute;
  top: -28px; right: -28px;
  width: 120px; height: 120px;
  background:
    repeating-conic-gradient(var(--dark) 0% 25%, transparent 0% 50%)
    0 0 / 30px 30px;
  border-radius: 16px;
  opacity: 0.9;
  z-index: -1;
  animation: floatY 5s ease-in-out infinite;
}
.hero-visual::after {
  content: "";
  position: absolute;
  bottom: -36px; left: -36px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--yellow);
  filter: blur(2px);
  opacity: 0.35;
  z-index: -1;
  animation: floatY 6s ease-in-out 1s infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* floating cards on hero image */
.float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  animation: floatY 5s ease-in-out infinite;
}
.float-card.fc-1 { top: 26px; left: -34px; animation-delay: 0.5s; }
.float-card.fc-2 { bottom: 34px; right: -26px; animation-delay: 1.4s; }
.float-card .fc-icon {
  width: 44px; height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--yellow);
  border-radius: 12px;
}
.float-card .fc-icon svg { width: 24px; height: 24px; color: var(--dark); }
.float-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.2;
}
.float-card span { font-size: 0.8rem; color: var(--gray); }

/* animated road at hero bottom */
.hero-road {
  position: relative;
  height: 56px;
  background: var(--dark);
  overflow: hidden;
}
.hero-road::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 200%;
  height: 6px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(
    90deg,
    var(--yellow) 0 48px,
    transparent 48px 96px
  );
  animation: roadMove 1.6s linear infinite;
}
@keyframes roadMove { to { transform: translate(-96px, -50%); } }

.hero-road .road-car {
  position: absolute;
  top: 50%;
  left: 12%;
  transform: translateY(-58%);
  width: 64px; height: 32px;
  color: var(--yellow);
  animation: carBob 0.9s ease-in-out infinite;
}
@keyframes carBob {
  0%, 100% { transform: translateY(-58%); }
  50% { transform: translateY(-64%); }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; margin-inline: auto; }
  .float-card.fc-1 { left: -8px; }
  .float-card.fc-2 { right: -8px; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--yellow);
  padding: 18px 0;
  overflow: hidden;
  border-block: 3px solid var(--dark);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  white-space: nowrap;
}
.marquee-track span::after {
  content: "";
  width: 14px; height: 14px;
  background:
    repeating-conic-gradient(var(--dark) 0% 25%, transparent 0% 50%)
    0 0 / 7px 7px;
  border-radius: 3px;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--darker); position: relative; overflow: hidden; }
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 15% 0%, rgba(254, 225, 0, 0.07), transparent 65%),
    radial-gradient(600px 300px at 85% 100%, rgba(254, 225, 0, 0.05), transparent 65%);
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: clamp(56px, 7vw, 88px) 0;
}
.stat { text-align: center; }
.stat .stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .stat-label {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--gray-light);
}
@media (max-width: 760px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 1080px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cat-grid { grid-template-columns: 1fr; } }

.cat-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.cat-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.cat-media { position: relative; overflow: hidden; aspect-ratio: 37 / 25; }
.cat-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.cat-card:hover .cat-media img { transform: scale(1.08); }
.cat-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(52, 58, 64, 0.35), transparent 55%);
  opacity: 0;
  transition: opacity 0.45s;
}
.cat-card:hover .cat-media::after { opacity: 1; }

.cat-tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  padding: 6px 16px;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.05em;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.cat-body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.cat-body h3 { font-size: 1.3rem; }
.cat-body p { color: var(--gray); font-size: 0.95rem; flex: 1; }

.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}
.cat-link svg { width: 18px; height: 18px; transition: transform 0.35s var(--ease-out); }
.cat-card:hover .cat-link svg { transform: translateX(6px); }
.cat-link::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  transition: width 0.35s var(--ease-out);
}
.cat-card:hover .cat-link::before { width: 40px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { position: relative; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
@media (max-width: 860px) { .process-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

/* dashed connector */
.process-grid::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 12%; right: 12%;
  border-top: 3px dashed rgba(52, 58, 64, 0.25);
  z-index: 0;
}
@media (max-width: 860px) { .process-grid::before { display: none; } }

.step {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s;
}
.step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}

.step-num {
  width: 88px; height: 88px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--dark);
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--dark);
  position: relative;
  transition: background 0.4s, transform 0.45s var(--ease-out);
}
.step:hover .step-num { background: var(--yellow); transform: rotate(-8deg) scale(1.06); }
.step-num::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px dashed rgba(52, 58, 64, 0.25);
  animation: spin 14s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.step h3 { font-size: 1.35rem; margin-bottom: 12px; }
.step p { color: var(--gray); font-size: 0.97rem; }

/* ============================================================
   FEATURES (Pse START)
   ============================================================ */
.features { position: relative; overflow: hidden; }
.features::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 100%;
  background:
    radial-gradient(800px 400px at 20% 20%, rgba(254, 225, 0, 0.08), transparent 60%),
    radial-gradient(700px 400px at 85% 85%, rgba(254, 225, 0, 0.06), transparent 60%);
  pointer-events: none;
}

/* huge ghost word */
.ghost-word {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(5rem, 14vw, 11rem);
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.feat-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 1080px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feat-grid { grid-template-columns: 1fr; } }

.feat-card {
  position: relative;
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  transition: transform 0.45s var(--ease-out), background 0.45s, border-color 0.45s;
  overflow: hidden;
}
.feat-card::before {
  content: "";
  position: absolute;
  inset: auto auto -40% -40%;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 225, 0, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}
.feat-card:hover { transform: translateY(-8px); background: rgba(255, 255, 255, 0.07); border-color: rgba(254, 225, 0, 0.4); }
.feat-card:hover::before { opacity: 1; }

.feat-icon {
  width: 60px; height: 60px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  border-radius: 16px;
  margin-bottom: 22px;
  transition: transform 0.45s var(--ease-out);
}
.feat-icon svg { width: 30px; height: 30px; color: var(--dark); }
.feat-card:hover .feat-icon { transform: rotate(-8deg) scale(1.08); }

.feat-card h3 { color: var(--white); font-size: 1.18rem; margin-bottom: 10px; }
.feat-card p { color: var(--gray-light); font-size: 0.94rem; }

/* ============================================================
   FLEET
   ============================================================ */
.fleet-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
}
@media (max-width: 860px) { .fleet-gallery { grid-template-columns: 1fr; } }

.fleet-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 280px;
}
.fleet-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.fleet-photo:hover img { transform: scale(1.05); }
.fleet-photo figcaption {
  position: absolute;
  left: 20px; bottom: 20px;
  padding: 8px 18px;
  background: rgba(52, 58, 64, 0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 999px;
  border-left: 4px solid var(--yellow);
}

.fleet-cars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1080px) { .fleet-cars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .fleet-cars { grid-template-columns: 1fr; } }

.car-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--yellow); }
.car-card .car-icon {
  width: 46px; height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--surface);
  border-radius: 12px;
  transition: background 0.4s;
}
.car-card:hover .car-icon { background: var(--yellow); }
.car-card .car-icon svg { width: 26px; height: 26px; color: var(--dark); }
.car-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.25;
}
.car-card span { font-size: 0.8rem; color: var(--gray); }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 1080px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; } }

.team-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.team-photo {
  position: relative;
  aspect-ratio: 27 / 34;
  overflow: hidden;
  background:
    radial-gradient(220px 220px at 50% 30%, var(--yellow-soft), transparent 70%),
    var(--surface);
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(35%);
  transition: filter 0.5s, transform 0.6s var(--ease-out);
}
.team-card:hover .team-photo img { filter: grayscale(0%); transform: scale(1.04); }

.team-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 10px;
  background:
    repeating-conic-gradient(var(--dark) 0% 25%, var(--yellow) 0% 50%)
    0 0 / 10px 10px;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
.team-card:hover .team-photo::after { transform: translateY(0); }

.team-info { padding: 22px 24px 26px; text-align: center; }
.team-info h3 { font-size: 1.12rem; margin-bottom: 6px; }
.team-info span {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 4px 14px;
  background: var(--surface);
  border-radius: 999px;
  transition: background 0.4s, color 0.4s;
}
.team-card:hover .team-info span { background: var(--yellow); color: var(--dark); }

.team-cta { text-align: center; margin-top: 52px; }

/* ============================================================
   MATERIALS
   ============================================================ */
.mat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1080px) { .mat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .mat-grid { grid-template-columns: 1fr; } }

.mat-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}
.mat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--yellow); }
.mat-icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  border-radius: 14px;
}
.mat-icon svg { width: 26px; height: 26px; color: var(--dark); }
.mat-card h3 { font-size: 1.08rem; }
.mat-card p { font-size: 0.9rem; color: var(--gray); flex: 1; }
.mat-card .mat-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
}
.mat-card .mat-action svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-out); }
.mat-card:hover .mat-action svg { transform: translateY(3px); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  background: var(--yellow);
  overflow: hidden;
}
.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 20px;
  background:
    repeating-conic-gradient(var(--dark) 0% 25%, transparent 0% 50%)
    0 0 / 20px 20px;
}
.cta-banner::before { top: 0; }
.cta-banner::after { bottom: 0; }

.cta-inner {
  padding: clamp(72px, 9vw, 110px) 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.cta-inner h2 { max-width: 560px; }
.cta-inner .cta-sub {
  margin-top: 14px;
  font-weight: 500;
  color: rgba(52, 58, 64, 0.75);
  max-width: 480px;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--dark);
  padding: 16px 30px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.cta-phone:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow-lg); }
.cta-phone svg { width: 24px; height: 24px; color: var(--dark); animation: ring 3s ease-in-out infinite; }
@keyframes ring {
  0%, 86%, 100% { transform: rotate(0); }
  88%, 92%, 96% { transform: rotate(-12deg); }
  90%, 94%, 98% { transform: rotate(12deg); }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(56px, 8vw, 96px)) 0 clamp(56px, 8vw, 88px);
  background: var(--dark);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 360px at 80% 10%, rgba(254, 225, 0, 0.12), transparent 60%),
    radial-gradient(500px 300px at 10% 90%, rgba(254, 225, 0, 0.06), transparent 60%);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); margin-bottom: 18px; }
.page-hero .lead { color: var(--gray-light); max-width: 620px; }

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.breadcrumb a { color: var(--yellow); transition: opacity 0.3s; }
.breadcrumb a:hover { opacity: 0.75; }
.breadcrumb svg { width: 14px; height: 14px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } }

.info-cards { display: grid; gap: 20px; }

.info-card {
  display: flex;
  gap: 18px;
  padding: 26px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}
.info-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); border-color: var(--yellow); }
.info-card .ic-icon {
  width: 52px; height: 52px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--yellow);
  border-radius: 14px;
}
.info-card .ic-icon svg { width: 26px; height: 26px; color: var(--dark); }
.info-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.info-card p, .info-card a.ic-line { display: block; color: var(--gray); font-size: 0.95rem; }
.info-card a.ic-line { transition: color 0.3s; font-weight: 600; }
.info-card a.ic-line:hover { color: var(--dark); }

/* Form */
.contact-form-wrap {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
}
.contact-form-wrap::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background:
    repeating-conic-gradient(var(--dark) 0% 25%, var(--yellow) 0% 50%)
    0 0 / 8px 8px;
}
.contact-form-wrap h2 { font-size: 1.6rem; margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--gray); font-size: 0.95rem; margin-bottom: 28px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(254, 225, 0, 0.25);
}

.form-note { font-size: 0.82rem; color: var(--gray); margin-top: 14px; }

/* Map */
.map-wrap {
  margin-top: clamp(48px, 7vw, 80px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  position: relative;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 440px;
  border: 0;
  filter: grayscale(35%);
  transition: filter 0.5s;
}
.map-wrap:hover iframe { filter: grayscale(0%); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--darkest);
  color: var(--gray-light);
  position: relative;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: clamp(64px, 8vw, 96px) 0 56px;
}
@media (max-width: 1000px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand img { height: 44px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 0.93rem; max-width: 300px; }

.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.35s, transform 0.35s var(--ease-out), border-color 0.35s;
}
.footer-social a:hover { background: var(--yellow); border-color: var(--yellow); transform: translateY(-4px); }
.footer-social a svg { width: 20px; height: 20px; color: var(--white); transition: color 0.35s; }
.footer-social a:hover svg { color: var(--dark); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.footer-col ul { display: grid; gap: 12px; }
.footer-col ul a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.93rem;
  transition: color 0.3s, transform 0.3s var(--ease-out);
}
.footer-col ul a:hover { color: var(--yellow); transform: translateX(4px); }
.footer-col ul a svg { width: 14px; height: 14px; flex: none; }

.footer-contact li {
  display: flex;
  gap: 12px;
  font-size: 0.93rem;
  align-items: flex-start;
}
.footer-contact svg { width: 18px; height: 18px; color: var(--yellow); flex: none; margin-top: 3px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 0;
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
}
.footer-bottom a { color: var(--yellow); }

.footer-credit a {
  font-weight: 700;
  transition: opacity 0.3s, text-decoration-color 0.3s;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}
.footer-credit a:hover { opacity: 0.85; text-decoration-color: var(--yellow); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.to-top {
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 90;
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--dark);
  border-radius: 50%;
  box-shadow: var(--shadow-yellow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.4s, visibility 0.4s, transform 0.4s var(--ease-out), box-shadow 0.3s;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(254, 225, 0, 0.5); }
.to-top svg { width: 22px; height: 22px; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
[data-reveal="left"] { transform: translateX(-48px); }
[data-reveal="right"] { transform: translateX(48px); }
[data-reveal="zoom"] { transform: scale(0.9); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* Page load intro for hero elements */
.intro-item {
  opacity: 0;
  transform: translateY(28px);
  animation: introUp 0.9s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes introUp { to { opacity: 1; transform: none; } }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal], .intro-item { opacity: 1; transform: none; }
  .mark::after { transform: skew(-12deg) scaleX(1); }
}
