/* ============================================
   SRC AUTOSCHADE — Design System
   Style: Industrial Premium / Exaggerated Minimalism
   Colors: #ffa055 (orange) + #0a0a0a (dark)
   Fonts: Bebas Neue (display) + DM Sans (body)
   ============================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Brand palette */
  --orange: #ffa055;
  --orange-hover: #ffb070;
  --orange-dark: #e8893d;
  --orange-glow: rgba(255, 160, 85, 0.2);
  --orange-subtle: rgba(255, 160, 85, 0.08);

  /* Neutrals — true blacks for OLED-grade depth */
  --black: #0a0a0a;
  --bg: #0a0a0a;
  --bg-raised: #111111;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --surface: #1e1e1e;

  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #e5e5e5;
  --gray-200: #cccccc;
  --gray-400: #888888;
  --gray-500: #666666;
  --gray-600: #444444;
  --gray-700: #2a2a2a;
  --gray-800: #1e1e1e;
  --gray-900: #141414;

  /* Typography */
  --ff-display: 'Bebas Neue', 'Impact', sans-serif;
  --ff-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  --fs-hero: clamp(3.8rem, 9vw, 8.5rem);
  --fs-h2: clamp(2.2rem, 4.5vw, 3.8rem);
  --fs-h3: clamp(1.1rem, 1.8vw, 1.35rem);
  --fs-body: 1rem;
  --fs-sm: 0.875rem;
  --fs-xs: 0.75rem;
  --fs-tag: 0.7rem;

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 3rem;
  --sp-xl: 5rem;
  --sp-2xl: 8rem;
  --sp-3xl: 10rem;

  /* Layout */
  --nav-h: 72px;
  --max-w: 1240px;
  --radius: 8px;
  --radius-lg: 12px;

  /* Motion */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.3s;
  --dur-slow: 0.6s;
}

/* ---------- RESET ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--gray-200);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--orange); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ---------- UTILITY ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-md); }
.accent { color: var(--orange); }
.hide-mobile { display: inline; }
@media (max-width: 768px) { .hide-mobile { display: none; } }

/* Section headers */
.section-header { margin-bottom: var(--sp-xl); }
.section-header--center { text-align: center; }
.section-tag {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: var(--fs-tag);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--sp-sm);
  padding: 0.35em 1em;
  border: 1px solid rgba(255,160,85,0.25);
  border-radius: 100px;
  background: var(--orange-subtle);
}
.section-title {
  font-size: var(--fs-h2);
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-sm);
}
.section-sub {
  color: var(--gray-400);
  font-size: var(--fs-sm);
  max-width: 520px;
  line-height: 1.7;
}
.section-header--center .section-sub { margin: 0 auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.9em 2em;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform var(--dur) var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--orange-glow), 0 2px 8px rgba(255,160,85,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--gray-600);
}
.btn--ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--dark:hover {
  background: var(--bg-raised);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  color: var(--white);
}

.btn--lg { padding: 1.05em 2.5em; font-size: var(--fs-body); }
.btn--full { width: 100%; justify-content: center; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 102;
  height: var(--nav-h);
  transition: background var(--dur) var(--ease),
              backdrop-filter var(--dur) var(--ease),
              -webkit-backdrop-filter var(--dur) var(--ease),
              border-bottom var(--dur) var(--ease);
}
.nav--scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(255,160,85,0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  height: 100%;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6em;
  text-decoration: none;
  z-index: 101;
}
.nav__logo:hover { color: var(--white); }
.nav__logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.nav__logo-text {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.12em;
}
.nav__logo-accent { color: var(--gray-400); }

/* Nav links */
.nav__links { display: flex; align-items: center; gap: var(--sp-md); }
.nav__link {
  font-size: var(--fs-xs);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3em 0;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--orange);
  transition: width var(--dur) var(--ease);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

/* Nav right */
.nav__right { display: flex; align-items: center; gap: var(--sp-md); }
.nav__phone {
  display: flex;
  align-items: center;
  gap: 0.4em;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.nav__phone svg { width: 16px; height: 16px; }
.nav__phone:hover { color: var(--orange); }
.nav__cta { font-size: var(--fs-xs); padding: 0.7em 1.4em; }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--dur) var(--ease);
  border-radius: 1px;
}
.nav__burger--active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav__burger--active span:nth-child(2) { opacity: 0; }
.nav__burger--active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile menu overlay — lives OUTSIDE nav to avoid backdrop-filter stacking context */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu--open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__close {
  position: absolute;
  top: 18px;
  right: var(--sp-md);
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  z-index: 1;
}
.mobile-menu__close svg {
  display: block;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-lg);
}
.mobile-menu__link,
.mobile-menu__cta {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease, color var(--dur) var(--ease);
}
.mobile-menu--open .mobile-menu__link,
.mobile-menu--open .mobile-menu__cta {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu--open .mobile-menu__link:nth-child(1) { transition-delay: 0.06s; }
.mobile-menu--open .mobile-menu__link:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu--open .mobile-menu__link:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu--open .mobile-menu__link:nth-child(4) { transition-delay: 0.24s; }
.mobile-menu--open .mobile-menu__link:nth-child(5) { transition-delay: 0.30s; }
.mobile-menu--open .mobile-menu__cta { transition-delay: 0.36s; }
.mobile-menu__link {
  font-size: 1.8rem;
  font-family: var(--ff-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}
.mobile-menu__link:hover { color: var(--orange); }
.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: var(--sp-lg);
  padding: 0.9em 2em;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: #0a0a0a;
  background: var(--orange);
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background var(--dur) var(--ease);
}
.mobile-menu__cta:hover { background: var(--orange-hover); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg) url('assets/firstframe.webp') center / cover no-repeat;
}

/* Video background */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.78) 40%,
    rgba(10, 10, 10, 0.55) 100%
  );
  pointer-events: none;
}

/* Noise texture */
.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
}

/* Grid overlay */
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,160,85,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,160,85,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 30% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 0%, transparent 70%);
}

.hero__diagonals {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Floating shapes */
.hero__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero__shape--1 {
  width: 500px;
  height: 500px;
  background: rgba(255, 160, 85, 0.06);
  top: -10%;
  right: -5%;
  animation: floatShape 20s ease-in-out infinite;
}
.hero__shape--2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 160, 85, 0.04);
  bottom: 10%;
  left: -5%;
  animation: floatShape 15s ease-in-out infinite reverse;
}
@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + var(--sp-xl)) var(--sp-md) var(--sp-xl);
  width: 100%;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: var(--sp-lg);
  padding: 0.4em 1.2em 0.4em 0.8em;
  border: 1px solid var(--gray-700);
  border-radius: 100px;
  background: rgba(255,255,255,0.02);
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,160,85,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(255,160,85,0); }
}

/* Hero title */
.hero__title {
  font-size: var(--fs-hero);
  letter-spacing: 0.02em;
  margin-bottom: var(--sp-md);
  max-width: 900px;
  line-height: 0.95;
}
.hero__title--stroke {
  -webkit-text-stroke: 1.5px var(--white);
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero__title--accent {
  color: var(--orange);
  display: inline-block;
  position: relative;
}
/* Decorative underline */
.hero__title--accent::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--orange);
  opacity: 0.4;
}

.hero__sub {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--gray-400);
  max-width: 520px;
  margin-bottom: var(--sp-lg);
  line-height: 1.7;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-sm); margin-bottom: var(--sp-xl); }

/* Social proof */
.hero__proof {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}
.hero__proof-avatars {
  display: flex;
}
.hero__proof-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: var(--fs-xs);
  font-weight: 700;
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.hero__proof-avatars span:first-child { margin-left: 0; }
.hero__proof-text {
  font-size: var(--fs-sm);
  color: var(--gray-400);
}
.hero__proof-text strong {
  color: var(--white);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-lg);
  right: var(--sp-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-xs);
  z-index: 2;
}
.hero__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
  writing-mode: vertical-rl;
}
.hero__scroll-track {
  width: 1px;
  height: 48px;
  background: var(--gray-700);
  position: relative;
  overflow: hidden;
}
.hero__scroll-thumb {
  width: 100%;
  height: 50%;
  background: var(--orange);
  animation: scrollThumb 2s ease-in-out infinite;
}
@keyframes scrollThumb {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust {
  background: var(--bg-raised);
  padding: var(--sp-lg) 0;
  border-top: 1px solid var(--gray-700);
  border-bottom: 1px solid var(--gray-700);
  position: relative;
  overflow: hidden;
}
.trust__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}
.trust__item {
  text-align: center;
  padding: var(--sp-sm) 0;
  position: relative;
}
.trust__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gray-700);
}
.trust__value {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--orange);
  letter-spacing: 0.02em;
  display: block;
  line-height: 1;
}
.trust__label {
  font-size: var(--fs-xs);
  color: var(--gray-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 0.5em;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--sp-3xl) 0;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-700);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Service card */
.svc {
  background: var(--bg-card);
  padding: var(--sp-lg) var(--sp-md);
  position: relative;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.svc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-subtle), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.svc:hover, .svc:focus-visible {
  background: var(--bg-card-hover);
  z-index: 1;
}
.svc:hover::before, .svc:focus-visible::before { opacity: 1; }

.svc__num {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  color: var(--orange);
  opacity: 0.08;
  line-height: 1;
  position: absolute;
  top: var(--sp-md);
  right: var(--sp-md);
}

.svc__icon {
  width: 40px;
  height: 40px;
  color: var(--orange);
  margin-bottom: var(--sp-md);
  position: relative;
  z-index: 1;
}
.svc__icon svg { width: 100%; height: 100%; }

.svc__title {
  font-size: var(--fs-h3);
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-xs);
  position: relative;
  z-index: 1;
}

.svc__desc {
  font-size: var(--fs-sm);
  color: var(--gray-500);
  line-height: 1.65;
  flex: 1;
  position: relative;
  z-index: 1;
}

.svc__arrow {
  width: 32px;
  height: 32px;
  color: var(--gray-600);
  margin-top: var(--sp-md);
  transition: all var(--dur) var(--ease);
  position: relative;
  z-index: 1;
}
.svc__arrow svg { width: 100%; height: 100%; }
.svc:hover .svc__arrow { color: var(--orange); transform: translate(3px, -3px); }

/* ============================================
   WHY US
   ============================================ */
.why {
  padding: var(--sp-3xl) 0;
  background: var(--bg-raised);
  position: relative;
  overflow: hidden;
}
.why__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--sp-xl);
  align-items: center;
}

/* Visual block */
.why__visual-card {
  position: relative;
}
.why__visual-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-card);
}
.why__visual-img svg { width: 100%; height: 100%; }

/* Floating stat */
.why__float-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: var(--black);
  padding: var(--sp-md) var(--sp-lg);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.why__float-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  display: block;
  line-height: 1;
}
.why__float-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

/* Content */
.why__intro {
  color: var(--gray-400);
  margin-bottom: var(--sp-lg);
  line-height: 1.7;
  font-size: var(--fs-sm);
}

.why__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

.why__feat {
  display: flex;
  gap: var(--sp-sm);
  align-items: flex-start;
  padding: var(--sp-sm);
  border-radius: var(--radius);
  transition: background var(--dur) var(--ease);
}
.why__feat:hover { background: var(--orange-subtle); }

.why__feat-icon {
  width: 28px;
  height: 28px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.why__feat-icon svg { width: 100%; height: 100%; }

.why__feat-title {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.2em;
}
.why__feat-desc {
  font-size: var(--fs-sm);
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: var(--sp-3xl) 0;
}
.process__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
  position: relative;
  margin-top: var(--sp-xl);
}

/* Connecting line */
.process__line {
  position: absolute;
  top: 42px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--gray-700);
}
.process__line-fill {
  width: 0;
  height: 100%;
  background: var(--orange);
  transition: width 1.8s var(--ease-out);
}
.process__line-fill--active { width: 100%; }

.process__step { text-align: center; position: relative; }

.process__num {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--orange);
  line-height: 1;
  margin-bottom: var(--sp-xs);
  position: relative;
  display: inline-block;
}
/* Dot on the line */
.process__num::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gray-600);
  margin: var(--sp-xs) auto var(--sp-sm);
  position: relative;
  z-index: 2;
  transition: all var(--dur) var(--ease);
}
.process__step:hover .process__num::after {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 0 16px var(--orange-glow);
}

.process__title {
  font-size: var(--fs-h3);
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-xs);
}
.process__desc {
  font-size: var(--fs-sm);
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  padding: var(--sp-3xl) 0;
  background: var(--bg-raised);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  align-items: start;
}

.review {
  background: var(--bg-card);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg) var(--sp-md);
  transition: all var(--dur) var(--ease);
}
.review:hover {
  border-color: rgba(255,160,85,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
/* Featured middle card */
.review--featured {
  border-color: rgba(255,160,85,0.15);
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(255,160,85,0.05) 100%);
  transform: translateY(-8px);
}
.review--featured:hover { transform: translateY(-12px); }

.review__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-sm);
}
.review__stars {
  color: var(--orange);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.review__badge {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-500);
  padding: 0.3em 0.8em;
  border: 1px solid var(--gray-700);
  border-radius: 100px;
}

.review__text {
  font-size: var(--fs-sm);
  color: var(--gray-200);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--sp-md);
  border: none;
  padding: 0;
}

.review__author { display: flex; align-items: center; gap: var(--sp-sm); }
.review__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--fs-sm);
  flex-shrink: 0;
}
.review__name {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.review__car {
  font-size: var(--fs-xs);
  color: var(--gray-500);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: var(--sp-3xl) var(--sp-md);
  background: var(--orange);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner__noise {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
}
.cta-banner__inner {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
}
.cta-banner__title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  letter-spacing: 0.03em;
  color: var(--black);
  margin-bottom: var(--sp-sm);
}
.cta-banner__title span { display: block; }
.cta-banner__sub {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: rgba(10, 10, 10, 0.6);
  margin-bottom: var(--sp-lg);
  line-height: 1.6;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--sp-3xl) 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-xl);
  margin-bottom: var(--sp-xl);
}

.contact__card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-lg);
}
.contact__detail { display: flex; gap: var(--sp-sm); align-items: flex-start; }
.contact__icon {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact__icon svg { width: 100%; height: 100%; }
.contact__label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-500);
  font-weight: 700;
  margin-bottom: 0.2em;
  font-family: var(--ff-body);
}
.contact__value {
  font-size: var(--fs-sm);
  color: var(--gray-200);
  line-height: 1.5;
}
.contact__value a { color: var(--gray-200); }
.contact__value a:hover { color: var(--orange); }

/* Socials */
.contact__socials { display: flex; gap: var(--sp-sm); }
.contact__social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--dur) var(--ease);
  cursor: pointer;
}
.contact__social svg { width: 18px; height: 18px; }
.contact__social:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-subtle);
  transform: translateY(-2px);
}

/* Form */
.contact__form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
}
.contact__form-title {
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-md);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-sm); }
.form-group { margin-bottom: var(--sp-sm); }
.form-label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--gray-200);
  margin-bottom: 0.4em;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.form-label span { color: var(--orange); }

.form-input {
  width: 100%;
  padding: 0.85em 1em;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  color: var(--white);
  background: var(--bg);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  appearance: none;
}
.form-input::placeholder { color: var(--gray-600); }
.form-input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.form-input--error { border-color: #ef4444 !important; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: var(--fs-xs);
  color: var(--gray-500);
  text-align: center;
  margin-top: var(--sp-sm);
}

/* Success state */
.form-success {
  text-align: center;
  padding: var(--sp-xl) var(--sp-md);
}
.form-success__check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-md);
  color: var(--orange);
}
.form-success__title {
  font-size: var(--fs-h3);
  margin-bottom: var(--sp-xs);
}
.form-success__text {
  font-size: var(--fs-sm);
  color: var(--gray-500);
}

/* Map */
.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-700);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-raised);
  border-top: 1px solid var(--gray-700);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-md);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--sp-lg);
  padding: var(--sp-xl) 0 var(--sp-lg);
}
.footer__tagline {
  font-size: var(--fs-sm);
  color: var(--gray-500);
  line-height: 1.6;
  margin-top: var(--sp-sm);
}
.footer__col { display: flex; flex-direction: column; gap: 0.3em; }
.footer__heading {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: var(--sp-xs);
}
.footer__col a, .footer__col p {
  font-size: var(--fs-sm);
  color: var(--gray-500);
  line-height: 1.6;
}
.footer__col a:hover { color: var(--orange); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-md) 0;
  border-top: 1px solid var(--gray-700);
  font-size: var(--fs-xs);
  color: var(--gray-500);
}
.footer__legal { display: flex; gap: var(--sp-md); }
.footer__legal a { color: var(--gray-500); }
.footer__legal a:hover { color: var(--orange); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.anim[data-anim="fade-right"] {
  transform: translateX(-40px);
}
.anim--visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__inner { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .why__visual { order: -1; max-width: 420px; margin: 0 auto; }
  .process__track { grid-template-columns: repeat(2, 1fr); gap: var(--sp-lg); }
  .process__line { display: none; }
  .reviews__grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .review--featured { transform: none; }
  .review--featured:hover { transform: translateY(-4px); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Nav mobile */
  .nav__links, .nav__right { display: none; }
  .nav__burger { display: flex; position: fixed; right: var(--sp-md); top: 18px; z-index: 1000; }

  /* Hero */
  .hero__content { padding-top: calc(var(--nav-h) + var(--sp-lg)); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__scroll { display: none; }
  .hero__title--stroke {
    -webkit-text-stroke: 1px var(--white);
  }

  /* Trust */
  .trust__inner { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(2)::after { display: none; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }

  /* Process */
  .process__track { grid-template-columns: 1fr 1fr; gap: var(--sp-md); }

  /* Contact */
  .contact__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--sp-sm); text-align: center; }
}

@media (max-width: 480px) {
  .process__track { grid-template-columns: 1fr; }
  .trust__inner { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .anim { opacity: 1; transform: none; }
  .hero__shape { animation: none; }
  .hero__video { display: none; }
}
