/* ============ BASE LAYOUT ============ */
body {
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(0, 229, 255, 0.08), transparent 60%),
    radial-gradient(900px 700px at -10% 30%, rgba(0, 229, 255, 0.05), transparent 60%),
    var(--bg-base);
  background-attachment: fixed;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

.section {
  padding: var(--sp-9) 0;
  position: relative;
}
@media (min-width: 768px) { .section { padding: var(--sp-10) 0; } }

.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--sp-8);
}
.section__title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(1.875rem, 4vw, var(--fs-3xl));
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.section__sub {
  color: var(--text-secondary);
  font-size: var(--fs-md);
  max-width: 600px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.text-gradient {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ GLASS UTILITY ============ */
.glass {
  background: var(--surface-glass);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--lg { padding: 1rem 1.875rem; font-size: var(--fs-base); }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--accent);
  color: #001218;
  box-shadow: var(--accent-glow);
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--accent-glow-lg);
}
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: translateX(-100%);
  transition: transform .8s var(--ease);
}
.btn--primary:hover::after { transform: translateX(100%); }

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}
.btn--ghost:hover {
  background: var(--surface-glass-hover);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 1rem 0;
  transition: padding var(--dur) var(--ease), background var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease);
}
.nav.is-scrolled {
  padding: .625rem 0;
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--border-glass);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__brand { display: flex; align-items: center; }
.nav__logo { height: 38px; width: auto; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links {
  display: flex;
  gap: 1.75rem;
}
.nav__link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: .25rem 0;
  transition: color var(--dur) var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav__link:hover { color: var(--text-primary); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.nav__cta { padding: .625rem 1.25rem; font-size: var(--fs-sm); }

.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
}
.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    inset: 70px 1rem auto 1rem;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
  }
  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .nav__link { font-size: var(--fs-md); }
  .nav__cta { width: 100%; padding: .875rem; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(110%) contrast(105%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 11, 0.55) 0%, rgba(10, 10, 11, 0.78) 60%, var(--bg-base) 100%),
    radial-gradient(800px 500px at 30% 50%, rgba(0, 229, 255, 0.18), transparent 60%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 80%);
  opacity: .5;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1.05fr 1fr;
    gap: 3.5rem;
  }
}

.hero__content {
  max-width: 640px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1023px) {
  .hero__content { margin: 0 auto; text-align: center; }
  .hero__cta, .hero__trust { justify-content: center; }
}

/* ============ HERO VISUAL — animated car + chips ============ */
.hero__visual {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1.05 / 1;
  margin: 0 auto;
}
@media (max-width: 1023px) { .hero__visual { max-width: 480px; } }
@media (max-width: 600px)  { .hero__visual { max-width: 360px; aspect-ratio: 1.1 / 1; } }

.hero__glow {
  position: absolute;
  inset: 12% 6%;
  background: radial-gradient(circle at 50% 55%, rgba(0, 229, 255, 0.45), rgba(0, 229, 255, 0.08) 45%, transparent 70%);
  filter: blur(28px);
  animation: heroGlowPulse 4.5s ease-in-out infinite;
  z-index: 0;
}

.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.18);
  pointer-events: none;
  z-index: 0;
}
.hero__ring--1 {
  inset: 16% 4%;
  border-style: dashed;
  border-color: rgba(0, 229, 255, 0.22);
  animation: ringRotate 28s linear infinite;
}
.hero__ring--2 {
  inset: 6% -2%;
  border-color: rgba(255, 255, 255, 0.06);
  animation: ringRotate 60s linear infinite reverse;
}

.hero__car {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 96%;
  height: auto;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.55));
  animation: carHover 5.5s ease-in-out infinite;
  z-index: 1;
}
.hero__wheel {
  transform-origin: center;
  animation: wheelSpin 12s linear infinite;
}

/* Speed lines beneath the car */
.hero__streaks {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 14%;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  pointer-events: none;
  z-index: 0;
}
.hero__streaks span {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.6), transparent);
  background-size: 50% 100%;
  animation: streak 2.4s linear infinite;
}
.hero__streaks span:nth-child(2) { animation-delay: .4s; opacity: .6; }
.hero__streaks span:nth-child(3) { animation-delay: .8s; opacity: .35; }

/* Floating service chip */
.hero__chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  padding: .625rem .875rem;
  background: rgba(20, 21, 26, 0.75);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: 14px;
  color: var(--text-primary);
  font-size: var(--fs-xs);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  opacity: 0;
  z-index: 3;
  white-space: nowrap;
  animation: chipFadeIn .9s var(--ease-out) forwards, chipFloat 4.2s ease-in-out infinite;
}
.hero__chip-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
}
.hero__chip-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.hero__chip-text em {
  font-style: normal;
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--text-primary);
}
.hero__chip-text small {
  font-size: 11px;
  color: var(--text-muted);
}

/* Per-chip placement + stagger */
.hero__chip--engine { top: 8%; right: -4%; animation-delay: 0s, 0s; }
.hero__chip--oil    { top: 30%; left: -10%; animation-delay: .15s, .8s; }
.hero__chip--brake  { bottom: 12%; left: -4%; animation-delay: .3s, 1.6s; }
.hero__chip--tire   { bottom: 18%; right: -8%; animation-delay: .45s, .4s; }

/* Rating badge — bigger, centered */
.hero__chip--rating {
  top: -3%;
  left: 50%;
  transform: translateX(-50%);
  padding: .75rem 1.125rem;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.18), rgba(20, 21, 26, 0.85));
  border-color: rgba(0, 229, 255, 0.5);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), 0 0 24px rgba(0, 229, 255, 0.35);
  animation-name: chipFadeIn, chipFloatRating;
  animation-delay: .55s, 0s;
}
.hero__chip--rating .hero__chip-stars {
  color: var(--accent);
  font-size: var(--fs-md);
  letter-spacing: 2px;
  filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.6));
}
.hero__chip--rating .hero__chip-text em {
  font-family: var(--ff-head);
  font-size: var(--fs-md);
  font-weight: 700;
}

/* Sparkles */
.hero__sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent), 0 0 24px rgba(0, 229, 255, 0.5);
  z-index: 2;
  animation: sparkle 3s ease-in-out infinite;
}
.hero__sparkle--1 { top: 14%; left: 22%; animation-delay: 0s; }
.hero__sparkle--2 { top: 40%; right: 16%; animation-delay: 1s; }
.hero__sparkle--3 { bottom: 28%; left: 32%; animation-delay: 2s; width: 4px; height: 4px; }

/* Mobile: hide secondary chips so it stays clean */
@media (max-width: 600px) {
  .hero__chip-text small { display: none; }
  .hero__chip { padding: .5rem .625rem; }
  .hero__chip-icon { width: 18px; height: 18px; }
  .hero__chip--oil, .hero__chip--tire { display: none; }
}

.hero__title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: var(--fs-hero);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 1rem 0 1.25rem;
}
.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 2rem;
}
.hero__cta {
  display: flex;
  gap: .875rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__trust {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: var(--fs-sm);
  font-weight: 500;
}
.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.hero__trust svg { color: var(--accent); }

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--text-muted);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
.hero__mouse {
  width: 22px;
  height: 36px;
  border: 2px solid var(--text-muted);
  border-radius: 14px;
  position: relative;
}
.hero__mouse span {
  position: absolute;
  left: 50%;
  top: 6px;
  width: 3px;
  height: 8px;
  background: var(--accent);
  border-radius: 3px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s infinite var(--ease);
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translate(-50%, 0); }
  60% { opacity: .2; transform: translate(-50%, 12px); }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.service-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--surface-glass);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at var(--mx, 50%) var(--my, 0%), rgba(0, 229, 255, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 229, 255, 0.1) inset;
  background: var(--surface-glass-hover);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 1.25rem;
  transition: transform var(--dur) var(--ease);
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card:hover .service-card__icon {
  transform: rotate(-6deg) scale(1.05);
  box-shadow: var(--accent-glow);
}

.service-card h3 {
  font-family: var(--ff-head);
  font-size: var(--fs-lg);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: .5rem;
}
.service-card p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ============ WHY CHOOSE US ============ */
.section--why { background: linear-gradient(180deg, transparent, rgba(0, 229, 255, 0.025), transparent); }

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
  padding: 2rem;
  background: var(--surface-glass);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
}
@media (min-width: 768px) {
  .stats { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: 2.5rem; }
}
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -.5rem; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border-glass);
}
@media (max-width: 767px) {
  .stat:nth-child(2)::after { display: none; }
  .stat:nth-child(odd)::after { display: none; }
}
.stat__num {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, var(--fs-3xl));
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.stat__label {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-top: .25rem;
  letter-spacing: 0.05em;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .pillars { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.pillar {
  padding: 2rem;
  background: var(--surface-glass);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  text-align: center;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.3);
}
.pillar__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
}
.pillar__icon svg { width: 32px; height: 32px; }
.pillar h3 { font-family: var(--ff-head); font-size: var(--fs-xl); margin-bottom: .5rem; }
.pillar p { color: var(--text-secondary); font-size: var(--fs-sm); }

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
}
.badge {
  padding: .625rem 1.125rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  background: var(--surface-glass);
  transition: color var(--dur), border-color var(--dur);
}
.badge:hover { color: var(--accent); border-color: var(--accent); }

/* ============ PROCESS ============ */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 0;
}
@media (min-width: 900px) {
  .timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .timeline::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 4.5rem;
    height: 2px;
    background: linear-gradient(90deg, var(--border-glass), var(--accent), var(--border-glass));
    background-size: 200% 100%;
    animation: timelineShine 4s linear infinite;
  }
}
@keyframes timelineShine {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.timeline__step {
  position: relative;
  text-align: center;
  padding: 1.5rem;
  background: var(--surface-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  transition: transform var(--dur), border-color var(--dur);
}
.timeline__step:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.3);
}
.timeline__num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-base);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: var(--fs-md);
  box-shadow: var(--accent-glow);
  position: relative;
  z-index: 1;
}
.timeline__step h3 { font-family: var(--ff-head); font-size: var(--fs-lg); margin-bottom: .5rem; }
.timeline__step p { color: var(--text-secondary); font-size: var(--fs-sm); }

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: center; } }

.price-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--surface-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px) saturate(160%);
  transition: transform var(--dur) var(--ease), border-color var(--dur), box-shadow var(--dur);
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 255, 0.3);
}
.price-card--featured {
  border-color: rgba(0, 229, 255, 0.5);
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.06), var(--surface-glass));
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.2), 0 24px 64px rgba(0, 229, 255, 0.12);
}
@media (min-width: 768px) {
  .price-card--featured { transform: scale(1.04); }
  .price-card--featured:hover { transform: scale(1.04) translateY(-6px); }
}

.price-card__ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #001218;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: .375rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--accent-glow);
  white-space: nowrap;
}

.price-card__head { text-align: center; margin-bottom: 1.5rem; }
.price-card__head h3 {
  font-family: var(--ff-head);
  font-size: var(--fs-xl);
  font-weight: 600;
  margin-bottom: .25rem;
}
.price-card__tagline { color: var(--text-muted); font-size: var(--fs-sm); }

.price-card__price {
  text-align: center;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: .25rem;
}
.price-card__currency { font-size: var(--fs-xl); color: var(--text-secondary); margin-top: .5rem; }
.price-card__amount {
  font-family: var(--ff-head);
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--silver-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-card--featured .price-card__amount { background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; }

.price-card__list {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.price-card__list li {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}
.price-card__list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--accent-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300E5FF' stroke-width='3'><path d='M5 12l5 5L20 7'/></svg>");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: var(--fs-sm);
  margin-top: 1.5rem;
}

/* ============ TESTIMONIALS ============ */
.section--reviews { background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3), transparent); }

.reviews { position: relative; overflow: hidden; }
.reviews__track {
  display: flex;
  transition: transform .6s var(--ease-out);
  will-change: transform;
}
.review {
  flex: 0 0 100%;
  padding: 2.5rem 2rem;
  background: var(--surface-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px) saturate(160%);
  margin-right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 768px) { .review { flex-basis: calc(50% - .75rem); } }
@media (min-width: 1024px) { .review { flex-basis: calc(33.333% - 1rem); } }

.review__stars {
  color: var(--accent);
  font-size: var(--fs-md);
  letter-spacing: 4px;
}
.review__quote {
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--text-primary);
  font-style: italic;
  flex-grow: 1;
}
.review__author {
  display: flex;
  align-items: center;
  gap: .875rem;
}
.review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-grad);
  color: #001218;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: var(--fs-sm);
}
.review__name { font-weight: 600; font-size: var(--fs-sm); }
.review__meta { font-size: var(--fs-xs); color: var(--text-muted); }

.reviews__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}
.reviews__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  font-size: var(--fs-lg);
  background: var(--surface-glass);
  transition: background var(--dur), border-color var(--dur), color var(--dur), transform var(--dur);
}
.reviews__btn:hover {
  background: var(--accent);
  color: #001218;
  border-color: var(--accent);
  transform: scale(1.08);
  box-shadow: var(--accent-glow);
}
.reviews__dots {
  display: flex;
  gap: .5rem;
}
.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
  transition: background var(--dur), transform var(--dur), width var(--dur);
}
.reviews__dot.is-active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
  box-shadow: var(--accent-glow);
}

/* ============ CTA BANNER ============ */
.cta-banner {
  position: relative;
  padding: var(--sp-9) 0;
  background:
    radial-gradient(800px 400px at 50% 50%, rgba(0, 229, 255, 0.15), transparent 70%),
    linear-gradient(180deg, var(--bg-elev), var(--bg-base));
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 80%);
  opacity: .4;
}
.cta-banner__inner {
  position: relative;
  text-align: center;
  max-width: 760px;
}
.cta-banner__title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(1.875rem, 4.5vw, var(--fs-3xl));
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.cta-banner__sub {
  color: var(--text-secondary);
  font-size: var(--fs-md);
  margin-bottom: 2rem;
}
.cta-banner__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1.2fr 1fr; gap: 2rem; } }

.contact-form {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 768px) { .contact-form { padding: 2.5rem; } }

.field { display: flex; flex-direction: column; gap: .375rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }

.field label {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-secondary);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: .875rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: var(--fs-base);
  transition: border-color var(--dur), background var(--dur), box-shadow var(--dur);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0, 229, 255, 0.04);
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.1);
}
.field textarea { resize: vertical; min-height: 100px; font-family: inherit; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A1A6B0' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
  padding-right: 2.75rem;
}
.field select option { background: var(--bg-elev); color: var(--text-primary); }
.field.has-error input, .field.has-error select { border-color: var(--danger); }
.field__err {
  font-size: var(--fs-xs);
  color: var(--danger);
  min-height: 1em;
}

.form__status {
  font-size: var(--fs-sm);
  text-align: center;
  margin-top: .5rem;
  min-height: 1.2em;
}
.form__status.is-success { color: var(--success); }
.form__status.is-error { color: var(--danger); }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info__card { padding: 2rem; }
.contact-info__card h3 {
  font-family: var(--ff-head);
  font-size: var(--fs-xl);
  margin-bottom: 1.25rem;
}
.contact-info__list { display: flex; flex-direction: column; gap: 1rem; }
.contact-info__list li {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.55;
}
.contact-info__list li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.contact-info__list a { transition: color var(--dur); }
.contact-info__list a:hover { color: var(--accent); }

.contact-info__map {
  overflow: hidden;
  height: 280px;
  padding: 0;
}
.contact-info__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(.6) brightness(0.95);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-elev);
  border-top: 1px solid var(--border-glass);
  padding-top: var(--sp-8);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
}
@media (min-width: 640px) { .footer__inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__inner { grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem; } }

.footer__col h4 {
  font-family: var(--ff-head);
  font-size: var(--fs-base);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.footer__col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer__col ul a, .footer__col ul li {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  transition: color var(--dur);
}
.footer__col ul a:hover { color: var(--accent); }

.footer__brand {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: var(--fs-xl);
  margin-bottom: .75rem;
}
.footer__tagline {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: 320px;
}
.footer__social { display: flex; gap: .75rem; }
.footer__social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  transition: all var(--dur);
}
.footer__social a:hover {
  background: var(--accent);
  color: #001218;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--accent-glow);
}

.footer__bottom {
  border-top: 1px solid var(--border-glass);
  padding: 1.5rem 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: var(--fs-xs);
  color: var(--text-muted);
}
.footer__bottom a:hover { color: var(--accent); }
