/* ============================================
   ROROS MOBILE AUTO DETAILING — Premium CSS
   Design: Dark luxury with purple accents
   ============================================ */

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

:root {
  --black: #0A0A0A;
  --black-surface: #111111;
  --black-card: #161616;
  --black-border: #222222;
  --purple: #7B1FA2;
  --purple-hover: #9D3AE0;
  --purple-dark: #4A1270;
  --purple-glow: rgba(123, 31, 162, 0.2);
  --purple-gradient: linear-gradient(135deg, #9D3AE0, #7B1FA2);
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --gray-100: #f0f0f0;
  --gray-300: #a0a0a0;
  --gray-400: #888888;
  --gray-500: #666666;
  --gray-700: #333333;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --section-padding: clamp(80px, 10vw, 140px);
  --container-width: 1280px;
  --container-padding: clamp(20px, 5vw, 40px);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-out-expo);
  --transition-medium: 0.4s var(--ease-out-expo);
  --transition-slow: 0.8s var(--ease-out-expo);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--black);
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10001;
  padding: 12px 24px;
  background: var(--purple);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* --- Focus Visible --- */
:focus-visible {
  outline: 2px solid var(--purple-hover);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--purple-hover);
  outline-offset: 2px;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.page-wrapper {
  width: 100%;
  overflow-x: clip;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; cursor: pointer; }
ul { list-style: none; }

/* --- Scroll Progress --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--purple-gradient);
  z-index: 10000;
  transition: width 0.1s linear;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--purple-gradient);
  color: var(--white);
  border-color: var(--purple);
  box-shadow: 0 0 20px var(--purple-glow);
}
.btn--primary:hover {
  background: var(--purple-hover);
  border-color: var(--purple-hover);
  box-shadow: 0 0 40px rgba(157, 58, 224, 0.35);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--gray-500);
}
.btn--outline:hover {
  border-color: var(--purple);
  color: var(--purple-hover);
}

.btn--large { padding: 18px 40px; font-size: 16px; }
.btn--full { width: 100%; }

.arrow { transition: transform var(--transition-fast); }
.btn:hover .arrow { transform: translateX(4px); }

.purple { color: var(--purple-hover); }

.hero__title .purple {
  background: linear-gradient(90deg, #7B1FA2 0%, #7B1FA2 30%, #E1BEE7 50%, #7B1FA2 70%, #7B1FA2 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 12s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 100% 0; }
  50% { background-position: -100% 0; }
  100% { background-position: 100% 0; }
}

/* --- Section Headers --- */
.section-header { margin-bottom: 60px; }
.section-header--center { text-align: center; }

.section-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-hover);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-300);
  max-width: 640px;
  line-height: 1.6;
}
.section-header--center .section-subtitle { margin: 0 auto; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: all var(--transition-medium);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 0;
}

.nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--purple);
  opacity: 0.65;
}

.nav__inner {
  max-width: 100%;
  margin: 0;
  padding: 0 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

/* --- Logo: flush left --- */
.nav__logo {
  justify-self: start;
  flex-shrink: 0;
  line-height: 0;
}

.nav__logo-img {
  height: 52px;
  width: auto;
  transition: all 0.3s ease;
  filter: brightness(1.25);
}
.nav__logo:hover .nav__logo-img { filter: brightness(1.4); }

/* --- Links + phone: center --- */
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-self: center;
}
.nav__links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c8c8c8;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--purple-hover);
  transition: width 0.35s ease;
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__link-divider {
  width: 1px;
  height: 16px;
  background: var(--gray-500);
}

.nav__phone-link {
  font-family: 'Montserrat', sans-serif;
  color: var(--purple-hover) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.nav__phone-link:hover { color: var(--white) !important; }
.nav__phone-link::after { display: none !important; }

/* --- Actions: right --- */
.nav__actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 20px;
}

.nav__schedule {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 0px;
  background: var(--purple);
  border: none;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.nav__schedule:hover {
  background: var(--purple-hover);
  box-shadow: 0 0 24px rgba(123, 31, 162, 0.4);
  transform: translateY(-1px);
  color: var(--white);
}

.nav__schedule-icon {
  flex-shrink: 0;
  stroke: var(--white);
  stroke-width: 2.8;
}

/* --- Hamburger --- */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
}
.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium);
}
.mobile-menu.active { opacity: 1; pointer-events: all; }

.mobile-menu:not(.active) [data-open-booking] {
  visibility: hidden;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-300);
  transition: color var(--transition-fast);
}
.mobile-menu a:hover { color: var(--purple-hover); }

@media (max-width: 900px) {
  .nav__inner {
    display: flex;
    justify-content: space-between;
    padding: 0 var(--container-padding);
    max-width: 100%;
    box-sizing: border-box;
  }
  .nav__links { display: none; }
  .nav__phone-link { display: none; }
  .nav__schedule { font-size: 11px; padding: 8px 14px; }
  .nav__toggle { display: flex; }
  .nav__logo-img { height: 28px; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding: 240px 0 80px;
  overflow: clip;
}

/* Corner Accent Lines */
.hero__corner {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  animation: cornerFadeIn 1.5s ease forwards 0.5s;
}
.hero__corner--tl { top: 32px; left: 32px; border-top: 1px solid var(--purple); border-left: 1px solid var(--purple); }
.hero__corner--tr { top: 32px; right: 32px; border-top: 1px solid var(--purple); border-right: 1px solid var(--purple); }
.hero__corner--bl { bottom: 32px; left: 32px; border-bottom: 1px solid var(--purple); border-left: 1px solid var(--purple); }
.hero__corner--br { bottom: 32px; right: 32px; border-bottom: 1px solid var(--purple); border-right: 1px solid var(--purple); }

@keyframes cornerFadeIn {
  to { opacity: 0.5; }
}

/* Diagonal Accent Slash */
.hero__slash {
  position: absolute;
  top: -20%;
  right: 8%;
  width: 1px;
  height: 140%;
  background: linear-gradient(to bottom, transparent, var(--purple), transparent);
  opacity: 0.08;
  transform: rotate(15deg);
  z-index: 1;
  pointer-events: none;
  animation: slashGlow 4s ease-in-out infinite;
  overflow: hidden;
}

@keyframes slashGlow {
  0%, 100% { opacity: 0.06; }
  50% { opacity: 0.15; }
}

/* Fullscreen Diagonal Purple Sweep — passes over the entire page including nav */
.page-sweep {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}

.page-sweep::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -60%;
  width: 40%;
  height: 34px;
  transform: translateY(-50%) rotate(-65deg);
  transform-origin: center center;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(157, 58, 224, 0.08) 30%,
    rgba(210, 145, 255, 0.28) 50%,
    rgba(157, 58, 224, 0.08) 70%,
    transparent 100%
  );
  filter: blur(3px)
          drop-shadow(0 0 22px rgba(157, 58, 224, 0.35))
          drop-shadow(0 0 60px rgba(123, 31, 162, 0.2));
  mix-blend-mode: screen;
  opacity: 0;
  animation: pageSweep 6s ease-in-out infinite;
  animation-delay: 1s;
  transition: opacity 0.4s ease;
}

.page-sweep--hidden {
  visibility: hidden;
}
.page-sweep--hidden::after {
  animation-play-state: paused;
  opacity: 0 !important;
}

@keyframes pageSweep {
  0%   { left: -60%; opacity: 0; }
  5%   { opacity: 1; }
  35%  { left: 100%; opacity: 1; }
  40%  { opacity: 0; }
  100% { left: 100%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .page-sweep { display: none; }
}

/* Hero Scroll Cue — subtle premium indicator under CTAs */
.hero__actions:has(+ .hero__scroll-cue) { margin-bottom: 0; }

.hero__scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  margin-bottom: 40px;
  transform: translateX(22px);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.45);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0;
  animation: scrollCueFadeIn 1.2s ease 2s forwards;
  transition: color 0.3s ease;
}
.hero__scroll-cue:hover { color: rgba(255, 255, 255, 0.85); }

.hero__scroll-cue-label {
  display: inline-block;
}

.hero__scroll-cue-track {
  position: relative;
  width: 1px;
  height: 42px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(157, 58, 224, 0.35) 50%,
    transparent 100%
  );
  overflow: hidden;
}

.hero__scroll-cue-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 10px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: linear-gradient(
    to bottom,
    rgba(210, 145, 255, 0) 0%,
    rgba(210, 145, 255, 0.9) 50%,
    rgba(210, 145, 255, 0) 100%
  );
  box-shadow: 0 0 8px rgba(157, 58, 224, 0.6);
  animation: scrollCueDrop 2.4s cubic-bezier(0.65, 0.05, 0.36, 1) infinite;
}

@keyframes scrollCueFadeIn {
  to { opacity: 1; }
}

@keyframes scrollCueDrop {
  0%   { transform: translateY(-14px); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(42px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-cue-dot { animation: none; }
}

/* Floating Particles */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  opacity: 0;
}
/* Top-left corner — 8 particles, each a different angle */
.hero__particle:nth-child(1)  { left: 3%;  top: 3%;  animation: particleToCenter1a 20s ease-in-out infinite 0s; }
.hero__particle:nth-child(2)  { left: 8%;  top: 6%;  animation: particleToCenter1b 24s ease-in-out infinite 2s; }
.hero__particle:nth-child(3)  { left: 5%;  top: 12%; animation: particleToCenter1c 22s ease-in-out infinite 5s; }
.hero__particle:nth-child(4)  { left: 14%; top: 4%;  animation: particleToCenter1d 18s ease-in-out infinite 8s; }
.hero__particle:nth-child(5)  { left: 2%;  top: 18%; animation: particleToCenter1a 26s ease-in-out infinite 3s; }
.hero__particle:nth-child(6)  { left: 10%; top: 2%;  animation: particleToCenter1c 21s ease-in-out infinite 10s; }
.hero__particle:nth-child(7)  { left: 6%;  top: 8%;  animation: particleToCenter1b 23s ease-in-out infinite 7s; }
.hero__particle:nth-child(8)  { left: 15%; top: 15%; animation: particleToCenter1d 19s ease-in-out infinite 12s; }
/* Top-right corner — 8 particles */
.hero__particle:nth-child(9)  { right: 3%;  top: 3%;  animation: particleToCenter2a 22s ease-in-out infinite 1s; }
.hero__particle:nth-child(10) { right: 8%;  top: 6%;  animation: particleToCenter2b 20s ease-in-out infinite 4s; }
.hero__particle:nth-child(11) { right: 5%;  top: 12%; animation: particleToCenter2c 24s ease-in-out infinite 6s; }
.hero__particle:nth-child(12) { right: 14%; top: 4%;  animation: particleToCenter2d 18s ease-in-out infinite 9s; }
.hero__particle:nth-child(13) { right: 2%;  top: 18%; animation: particleToCenter2a 26s ease-in-out infinite 2s; }
.hero__particle:nth-child(14) { right: 10%; top: 2%;  animation: particleToCenter2c 21s ease-in-out infinite 11s; }
.hero__particle:nth-child(15) { right: 6%;  top: 8%;  animation: particleToCenter2b 23s ease-in-out infinite 7.5s; }
.hero__particle:nth-child(16) { right: 15%; top: 15%; animation: particleToCenter2d 19s ease-in-out infinite 13s; }
/* Bottom-left corner — 8 particles */
.hero__particle:nth-child(17) { left: 3%;  bottom: 3%;  animation: particleToCenter3a 20s ease-in-out infinite 3s; }
.hero__particle:nth-child(18) { left: 8%;  bottom: 6%;  animation: particleToCenter3b 24s ease-in-out infinite 0s; }
.hero__particle:nth-child(19) { left: 5%;  bottom: 12%; animation: particleToCenter3c 22s ease-in-out infinite 6.5s; }
.hero__particle:nth-child(20) { left: 14%; bottom: 4%;  animation: particleToCenter3d 18s ease-in-out infinite 9.5s; }
.hero__particle:nth-child(21) { left: 2%;  bottom: 18%; animation: particleToCenter3a 26s ease-in-out infinite 1.5s; }
.hero__particle:nth-child(22) { left: 10%; bottom: 2%;  animation: particleToCenter3c 21s ease-in-out infinite 11.5s; }
.hero__particle:nth-child(23) { left: 6%;  bottom: 8%;  animation: particleToCenter3b 23s ease-in-out infinite 4.5s; }
.hero__particle:nth-child(24) { left: 15%; bottom: 15%; animation: particleToCenter3d 19s ease-in-out infinite 14s; }
/* Bottom-right corner — 8 particles */
.hero__particle:nth-child(25) { right: 3%;  bottom: 3%;  animation: particleToCenter4a 22s ease-in-out infinite 2.5s; }
.hero__particle:nth-child(26) { right: 8%;  bottom: 6%;  animation: particleToCenter4b 20s ease-in-out infinite 5.5s; }
.hero__particle:nth-child(27) { right: 5%;  bottom: 12%; animation: particleToCenter4c 24s ease-in-out infinite 0.5s; }
.hero__particle:nth-child(28) { right: 14%; bottom: 4%;  animation: particleToCenter4d 18s ease-in-out infinite 8.5s; }
.hero__particle:nth-child(29) { right: 2%;  bottom: 18%; animation: particleToCenter4a 26s ease-in-out infinite 3.5s; }
.hero__particle:nth-child(30) { right: 10%; bottom: 2%;  animation: particleToCenter4c 21s ease-in-out infinite 10.5s; }
.hero__particle:nth-child(31) { right: 6%;  bottom: 8%;  animation: particleToCenter4b 23s ease-in-out infinite 6s; }
.hero__particle:nth-child(32) { right: 15%; bottom: 15%; animation: particleToCenter4d 19s ease-in-out infinite 12.5s; }

/* Top-left — varied sporadic directions */
@keyframes particleToCenter1a {
  0% { transform: translate(0, 0); opacity: 0; }
  5% { opacity: 0.6; }
  45% { opacity: 0.6; }
  50% { transform: translate(12vw, 8vh); opacity: 0; }
  50.1% { transform: translate(0, 0); opacity: 0; }
  55% { opacity: 0.6; }
  95% { opacity: 0.6; }
  100% { transform: translate(8vw, 14vh); opacity: 0; }
}
@keyframes particleToCenter1b {
  0% { transform: translate(0, 0); opacity: 0; }
  5% { opacity: 0.6; }
  45% { opacity: 0.6; }
  50% { transform: translate(15vw, 5vh); opacity: 0; }
  50.1% { transform: translate(0, 0); opacity: 0; }
  55% { opacity: 0.6; }
  95% { opacity: 0.6; }
  100% { transform: translate(6vw, 12vh); opacity: 0; }
}
@keyframes particleToCenter1c {
  0% { transform: translate(0, 0); opacity: 0; }
  5% { opacity: 0.6; }
  45% { opacity: 0.6; }
  50% { transform: translate(10vw, 15vh); opacity: 0; }
  50.1% { transform: translate(0, 0); opacity: 0; }
  55% { opacity: 0.6; }
  95% { opacity: 0.6; }
  100% { transform: translate(14vw, 4vh); opacity: 0; }
}
@keyframes particleToCenter1d {
  0% { transform: translate(0, 0); opacity: 0; }
  5% { opacity: 0.6; }
  45% { opacity: 0.6; }
  50% { transform: translate(5vw, 10vh); opacity: 0; }
  50.1% { transform: translate(0, 0); opacity: 0; }
  55% { opacity: 0.6; }
  95% { opacity: 0.6; }
  100% { transform: translate(11vw, 7vh); opacity: 0; }
}
/* Top-right — varied sporadic directions */
@keyframes particleToCenter2a {
  0% { transform: translate(0, 0); opacity: 0; }
  5% { opacity: 0.6; }
  45% { opacity: 0.6; }
  50% { transform: translate(-12vw, 10vh); opacity: 0; }
  50.1% { transform: translate(0, 0); opacity: 0; }
  55% { opacity: 0.6; }
  95% { opacity: 0.6; }
  100% { transform: translate(-7vw, 13vh); opacity: 0; }
}
@keyframes particleToCenter2b {
  0% { transform: translate(0, 0); opacity: 0; }
  5% { opacity: 0.6; }
  45% { opacity: 0.6; }
  50% { transform: translate(-15vw, 4vh); opacity: 0; }
  50.1% { transform: translate(0, 0); opacity: 0; }
  55% { opacity: 0.6; }
  95% { opacity: 0.6; }
  100% { transform: translate(-9vw, 11vh); opacity: 0; }
}
@keyframes particleToCenter2c {
  0% { transform: translate(0, 0); opacity: 0; }
  5% { opacity: 0.6; }
  45% { opacity: 0.6; }
  50% { transform: translate(-6vw, 14vh); opacity: 0; }
  50.1% { transform: translate(0, 0); opacity: 0; }
  55% { opacity: 0.6; }
  95% { opacity: 0.6; }
  100% { transform: translate(-13vw, 6vh); opacity: 0; }
}
@keyframes particleToCenter2d {
  0% { transform: translate(0, 0); opacity: 0; }
  5% { opacity: 0.6; }
  45% { opacity: 0.6; }
  50% { transform: translate(-10vw, 8vh); opacity: 0; }
  50.1% { transform: translate(0, 0); opacity: 0; }
  55% { opacity: 0.6; }
  95% { opacity: 0.6; }
  100% { transform: translate(-14vw, 12vh); opacity: 0; }
}
/* Bottom-left — varied sporadic directions */
@keyframes particleToCenter3a {
  0% { transform: translate(0, 0); opacity: 0; }
  5% { opacity: 0.6; }
  45% { opacity: 0.6; }
  50% { transform: translate(13vw, -7vh); opacity: 0; }
  50.1% { transform: translate(0, 0); opacity: 0; }
  55% { opacity: 0.6; }
  95% { opacity: 0.6; }
  100% { transform: translate(7vw, -14vh); opacity: 0; }
}
@keyframes particleToCenter3b {
  0% { transform: translate(0, 0); opacity: 0; }
  5% { opacity: 0.6; }
  45% { opacity: 0.6; }
  50% { transform: translate(8vw, -12vh); opacity: 0; }
  50.1% { transform: translate(0, 0); opacity: 0; }
  55% { opacity: 0.6; }
  95% { opacity: 0.6; }
  100% { transform: translate(14vw, -5vh); opacity: 0; }
}
@keyframes particleToCenter3c {
  0% { transform: translate(0, 0); opacity: 0; }
  5% { opacity: 0.6; }
  45% { opacity: 0.6; }
  50% { transform: translate(5vw, -10vh); opacity: 0; }
  50.1% { transform: translate(0, 0); opacity: 0; }
  55% { opacity: 0.6; }
  95% { opacity: 0.6; }
  100% { transform: translate(11vw, -8vh); opacity: 0; }
}
@keyframes particleToCenter3d {
  0% { transform: translate(0, 0); opacity: 0; }
  5% { opacity: 0.6; }
  45% { opacity: 0.6; }
  50% { transform: translate(15vw, -6vh); opacity: 0; }
  50.1% { transform: translate(0, 0); opacity: 0; }
  55% { opacity: 0.6; }
  95% { opacity: 0.6; }
  100% { transform: translate(9vw, -13vh); opacity: 0; }
}
/* Bottom-right — varied sporadic directions */
@keyframes particleToCenter4a {
  0% { transform: translate(0, 0); opacity: 0; }
  5% { opacity: 0.6; }
  45% { opacity: 0.6; }
  50% { transform: translate(-11vw, -9vh); opacity: 0; }
  50.1% { transform: translate(0, 0); opacity: 0; }
  55% { opacity: 0.6; }
  95% { opacity: 0.6; }
  100% { transform: translate(-8vw, -13vh); opacity: 0; }
}
@keyframes particleToCenter4b {
  0% { transform: translate(0, 0); opacity: 0; }
  5% { opacity: 0.6; }
  45% { opacity: 0.6; }
  50% { transform: translate(-14vw, -5vh); opacity: 0; }
  50.1% { transform: translate(0, 0); opacity: 0; }
  55% { opacity: 0.6; }
  95% { opacity: 0.6; }
  100% { transform: translate(-6vw, -11vh); opacity: 0; }
}
@keyframes particleToCenter4c {
  0% { transform: translate(0, 0); opacity: 0; }
  5% { opacity: 0.6; }
  45% { opacity: 0.6; }
  50% { transform: translate(-7vw, -14vh); opacity: 0; }
  50.1% { transform: translate(0, 0); opacity: 0; }
  55% { opacity: 0.6; }
  95% { opacity: 0.6; }
  100% { transform: translate(-13vw, -7vh); opacity: 0; }
}
@keyframes particleToCenter4d {
  0% { transform: translate(0, 0); opacity: 0; }
  5% { opacity: 0.6; }
  45% { opacity: 0.6; }
  50% { transform: translate(-10vw, -10vh); opacity: 0; }
  50.1% { transform: translate(0, 0); opacity: 0; }
  55% { opacity: 0.6; }
  95% { opacity: 0.6; }
  100% { transform: translate(-15vw, -4vh); opacity: 0; }
}

/* Pulsing Line */
.hero__pulse-line {
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  margin-bottom: 24px;
  animation: pulseLineGlow 3s ease-in-out infinite;
}

@keyframes pulseLineGlow {
  0%, 100% { opacity: 0.3; width: 160px; }
  50% { opacity: 0.8; width: 200px; }
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--black);
  overflow: clip;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(123, 31, 162, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.5) 40%, rgba(10, 10, 10, 0.75) 100%);
}

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

.hero__car-asset {
  position: absolute;
  right: -3%;
  bottom: 0;
  width: 65%;
  max-width: 960px;
  opacity: 0.5;
  pointer-events: none;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 30%, transparent 90%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 30%, transparent 90%);
}

.hero__car-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero__content--centered {
  max-width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__content--centered .hero__subtitle {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero__content--centered .hero__stats {
  justify-content: center;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-hover);
  margin-bottom: 20px;
}

.hero__kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-hover);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__kicker::before {
  content: '';
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
}

.hero__logo-center {
  margin-bottom: 32px;
}

.hero__logo-img {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 0 40px rgba(123, 31, 162, 0.3));
}

.hero__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(64px, 10vw, 130px);
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #efefef;
}

.hero__title-line { display: block; margin-bottom: 36px; transform: scaleY(1.22); }

.hero__tagline {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 3vw, 34px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
  padding: 16px 0;
  pointer-events: none;
}

.hero__services-line {
  font-family: 'Inter', sans-serif;
  font-size: clamp(12px, 1.5vw, 15px);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 40px;
  pointer-events: none;
}

.hero__actions {
  display: flex;
  gap: 20px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.hero__cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 56px;
  border-radius: 0px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 19px;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
  position: relative;
  z-index: 6;
  pointer-events: auto;
}

.hero__cta-btn--primary {
  background: var(--purple);
  color: #ffffff;
}
.hero__cta-btn--primary:hover {
  background: var(--purple-hover);
  box-shadow: 0 0 24px rgba(123, 31, 162, 0.4);
  transform: translateY(-1px);
}

.hero__cta-btn--outline {
  flex-direction: column;
  gap: 2px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--purple);
  color: var(--purple);
}
.hero__cta-btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--purple-hover);
  box-shadow: 0 0 20px var(--purple-glow);
  transform: translateY(-3px);
}

.hero__phone-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__phone-hours {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__cta-main {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero__cta-icon {
  flex-shrink: 0;
}

.hero__cta-sub {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__stats {
  display: flex;
  gap: 48px;
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 36px;
  color: var(--white);
}

.hero__stat-label {
  font-size: 13px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero__car-asset { opacity: 0.15; width: 100%; right: 0; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .hero__stat-number { font-size: 28px; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__cta-btn { width: 100%; min-width: auto; }
  .hero__logo-img { height: 80px; }
  .hero__tagline { letter-spacing: 0.12em; margin-bottom: 36px; }
  .hero__title { font-size: clamp(40px, 12vw, 64px); word-break: break-word; }
  .hero__services-line { word-break: break-word; }
  .intro-pitch__headline { white-space: normal; }
  .intro-pitch__logo { width: 220px; }
  .hero__slash { display: none; }
  .hero__corner { display: none; }
}

/* ============ TRUST BAR ============ */
.trust-bar {
  padding: 48px 0;
  border-top: 1px solid rgba(157, 58, 224, 0.2);
  border-bottom: 1px solid rgba(157, 58, 224, 0.2);
  background: linear-gradient(135deg, #1a0a2e, #2d1150);
}

.trust-bar__inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.trust-bar__stat {
  text-align: center;
}

.trust-bar__stat-number {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple), #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.trust-bar__stat-label {
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media (max-width: 768px) {
  .trust-bar__inner { gap: 32px; }
}

/* ============ INTRO PITCH ============ */
.intro-pitch {
  padding: 80px 0;
  background: var(--black);
  border-bottom: 1px solid var(--black-border);
}

.intro-pitch__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.intro-pitch__logo {
  width: 320px;
  height: auto;
  margin-bottom: 12px;
}

.intro-pitch__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  background: rgba(157, 58, 224, 0.15);
  border: 1px solid rgba(157, 58, 224, 0.3);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple-hover);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.intro-pitch__badge-star {
  font-size: 14px;
  color: var(--purple-hover);
}

.intro-pitch__headline {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  font-family: var(--font-heading);
}

.intro-pitch__highlight {
  color: var(--purple);
  font-weight: 700;
}

.intro-pitch__sub {
  font-size: 16px;
  color: #d1d5db;
  line-height: 1.5;
}

.intro-pitch__bottom {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple-hover);
}

/* ============ SERVICES ============ */
.services {
  padding: 40px 0 5px;
  background: var(--white);
  overflow: clip;
}

.services__header {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 64px;
  padding-left: 0;
  margin-left: -6px;
  max-width: 640px;
}

.services__heading {
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 900;
  color: #0a0a0a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.services__divider {
  display: block;
  width: 56px;
  height: 4px;
  background: var(--purple);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(157, 58, 224, 0.35);
}

.services__note {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #6b6b6b;
  letter-spacing: 0;
  max-width: 560px;
  margin: 0;
  line-height: 1.55;
}

.services__header--ceramic {
  margin-top: 40px;
  margin-bottom: 36px;
}
.services__header--ceramic .services__note {
  max-width: 720px;
}

.services__grid--ceramic .service-card__topbar {
  margin-bottom: -4px;
}

.services__grid--ceramic {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 80px;
  transform: translateX(-175px);
}
.services__grid--ceramic .service-card:first-child {
  grid-column: 2;
}
.services__grid--ceramic .service-card:nth-child(2) {
  grid-column: 3;
}

#serviceCard7 .service-card__title {
  font-size: 20px;
  line-height: 1.1;
}
#serviceCard7 .service-card__heading {
  padding-top: 17px;
  gap: 3px;
}
#serviceCard7 .service-card__price strong {
  font-size: 31px;
}
#serviceCard7 .service-card__price-from {
  font-size: 13px;
}

#serviceCard9 .service-card__title {
  font-size: 20px;
  line-height: 1.1;
}
#serviceCard9 .service-card__heading {
  padding-top: 17px;
  gap: 3px;
}
#serviceCard9 .service-card__price strong {
  font-size: 31px;
}
#serviceCard9 .service-card__price-from {
  font-size: 13px;
}

/* ---- Light variant service card (v2) ---- */
.service-card.service-card--light {
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.16);
  color: #1a1a1a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 36px 20px 20px;
}

.service-card.service-card--light.service-card--purple {
  background: #ffffff;
  border: 2px solid rgba(123, 31, 162, 0.55);
  box-shadow: 0 0 0 1px rgba(123, 31, 162, 0.08), 0 4px 16px rgba(123, 31, 162, 0.1);
}

.service-card--light.service-card--purple .service-card__heading {
  padding-top: 18px;
  gap: 3px;
}
.service-card--light.service-card--purple .service-card__title {
  font-size: 16px;
  line-height: 1.1;
}
.service-card--light.service-card--purple .service-card__price {
  gap: 1px;
}
.service-card--light.service-card--purple .service-card__price-from {
  font-size: 11px;
}
.service-card--light.service-card--purple .service-card__price strong {
  font-size: 32px;
  line-height: 1.1;
}
.service-card--light.service-card--purple .service-card__popular {
  margin-bottom: 2px;
  padding: 4px 10px;
  font-size: 10px;
}
.service-card--light.service-card--purple .service-card__price-row {
  margin-top: 1px;
  gap: 5px;
}
.service-card--light.service-card--purple .service-card__price-old {
  font-size: 13px;
}
.service-card--light.service-card--purple .service-card__save {
  font-size: 10px;
  padding: 3px 9px;
}

#serviceCard6 .service-card__heading {
  padding-top: 8px;
  gap: 2px;
}
#serviceCard6 .service-card__price strong {
  font-size: 26px;
}
.service-card.service-card--light:hover {
  border-color: #a8a8a8;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.service-card--light .service-card__topbar {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin: -36px -20px 0 -20px;
  padding: 0 20px 0 0;
}

.service-card--light .service-card__image {
  flex: 0 0 130px;
  width: 130px;
  height: 130px;
  background: #ffffff;
  overflow: hidden;
  border: none;
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.service-card--light .service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card--light .service-card__heading {
  flex: 1 1 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding-top: 20px;
}

.service-card--light .service-card__price {
  align-items: flex-start;
}

.service-card--light .service-card__title {
  font-family: var(--font-heading);
  font-weight: 900;
  color: #0a0a0a;
  font-size: 22px;
  margin: 0;
  letter-spacing: -0.005em;
}

.service-card--light .service-card__price {
  font-family: var(--font-heading);
  font-size: 14px;
  color: #8a8a8a;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  line-height: 1.1;
}
.service-card--light .service-card__price-from {
  color: #8a8a8a;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 14px;
  text-transform: uppercase;
}
.service-card--light .service-card__price strong {
  color: var(--purple-hover);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  margin: 0;
  padding: 0;
  align-self: flex-start;
}

.service-card__price-row {
  display: flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-top: 0;
}

.service-card--light .service-card__price-old {
  font-size: 13px;
  font-weight: 500;
  color: #aaa;
  text-decoration: line-through;
}

.service-card__save {
  display: inline-block;
  background: #22c55e;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
}

.service-card--light .service-card__desc {
  color: #222222;
  margin-bottom: 12px;
  font-weight: 600;
}
.service-card--light .service-card__features {
  margin-bottom: 18px;
}
.service-card--light .service-card__features li {
  color: #0a0a0a;
  border-bottom: none;
  padding: 4px 0 4px 22px;
  font-weight: 600;
  font-size: 15px;
}
.service-card--light .service-card__features li::before {
  color: var(--purple);
}

.service-card__cta.service-card__cta--pill {
  background: var(--purple);
  color: #ffffff;
  border: 1px solid var(--purple);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: auto;
  padding: 12px 22px;
  box-shadow: none;
  transition: background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
}
.service-card__cta.service-card__cta--pill:hover {
  background: var(--purple-hover);
  border-color: var(--purple-hover);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(123, 31, 162, 0.35);
}
.service-card__cta.service-card__cta--pill .arrow { display: none; }

.service-card__tag.service-card__tag--executive {
  background: #f3e9ff;
  color: #5b21b6;
  border-color: rgba(91, 33, 182, 0.2);
}

.service-card__popular {
  display: inline-block;
  align-self: flex-start;
  background: #f3f3f3;
  color: var(--purple);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(123, 31, 162, 0.18);
  margin-bottom: 4px;
}

.service-card__tag {
  position: absolute;
  top: -44px;
  left: -6px;
  background: #ffffff;
  color: #6b6b6b;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 80px;
  margin-bottom: 80px;
}

.service-card {
  position: relative;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(123, 31, 162, 0.12);
}

.service-card--featured {
  border-color: var(--purple);
  background: linear-gradient(180deg, rgba(123, 31, 162, 0.08) 0%, var(--black-card) 100%);
}

.service-card__badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--purple-gradient);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.service-card__price {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.service-card__price strong {
  font-size: 28px;
  font-weight: 800;
  color: var(--purple-hover);
}

.service-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 20px;
  line-height: 1.5;
}

.service-card__features {
  margin-bottom: 20px;
  flex: 1;
}
.service-card__features li {
  font-size: 14px;
  color: var(--gray-300);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding-left: 20px;
  position: relative;
}
.service-card__features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--purple-hover);
  font-weight: 700;
}

.service-card__time {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 20px;
  font-style: italic;
}

.service-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border: 1px solid var(--purple);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--purple-hover);
  transition: all var(--transition-fast);
}
.service-card__cta:hover {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 0 20px var(--purple-glow);
}

@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid--ceramic { grid-template-columns: repeat(2, 1fr); transform: none; }
  .services__grid--ceramic .service-card:first-child { grid-column: auto; }
  .services__grid--ceramic .service-card:nth-child(2) { grid-column: auto; }
}
@media (max-width: 600px) {
  .services__grid { grid-template-columns: 1fr; }
  .services__grid--ceramic { grid-template-columns: 1fr; }
}

/* --- Add-ons --- */
.addons__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.addon-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  transition: all var(--transition-fast);
}
.addon-card:hover {
  border-color: var(--purple);
  transform: translateY(-2px);
}

.addon-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.addon-card__price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--purple-hover);
  margin-bottom: 4px;
}

.addon-card__time {
  font-size: 12px;
  color: var(--gray-500);
}

@media (max-width: 900px) {
  .addons__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .addons__grid { grid-template-columns: 1fr; }
}

/* ============ PROCESS ============ */
.process {
  padding: var(--section-padding) 0;
  background: var(--black-surface);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.process__step {
  text-align: center;
  padding: 40px 24px;
}

.process__number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 56px;
  background: var(--purple-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.process__step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 12px;
}

.process__step-desc {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process__steps { grid-template-columns: 1fr; gap: 20px; }
  .process__step { padding: 24px; }
}

/* ============ WHY CHOOSE US ============ */
.why-choose {
  padding: var(--section-padding) 0;
  background: var(--black);
  overflow: clip;
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-medium);
}
.why-card:hover {
  border-color: var(--purple);
  transform: translateY(-2px);
}

.why-card__icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(123, 31, 162, 0.1);
  border-radius: var(--radius-sm);
}

.why-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.why-card__desc {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-choose__grid { grid-template-columns: 1fr; }
}

/* ============ EQUIPMENT ============ */
.equipment {
  padding: var(--section-padding) 0;
  background: var(--black-surface);
  overflow: clip;
}

.equipment__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.equipment__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.equip-card {
  padding: 20px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast);
}
.equip-card:hover { border-color: var(--purple); }

.equip-card__icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.equip-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}

.equip-card__desc {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.5;
}

.equipment__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--black-border);
}
.equipment__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .equipment__inner { grid-template-columns: 1fr; }
  .equipment__image { max-height: 400px; }
}

/* ============ REVIEWS ============ */
.reviews {
  position: relative;
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, #0a0a12 0%, #110a1e 30%, #160d26 50%, #110a1e 70%, #0a0a12 100%);
  overflow: clip;
}

/* Background glow orb */
.reviews__bg-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(123, 31, 162, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle dot grid pattern */
.reviews__bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.reviews .container {
  position: relative;
  z-index: 1;
}

/* --- Reviews Header --- */
.reviews__header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.reviews__google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.reviews__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  color: var(--white);
}

/* --- Summary Row: Excellent + Stars + Score + Count --- */
.reviews__summary-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.reviews__summary-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}

.reviews__summary-stars {
  font-size: 20px;
  letter-spacing: 3px;
  color: #FBBC05;
  line-height: 1;
  text-shadow: 0 0 8px rgba(251, 188, 5, 0.3);
}

.reviews__summary-score {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
}

.reviews__summary-divider {
  width: 1px;
  height: 18px;
  background: var(--gray-500);
}

.reviews__summary-count {
  font-size: 14px;
  color: var(--gray-400);
}
.reviews__summary-count strong {
  color: var(--white);
}

/* --- Write a Review Button --- */
.reviews__write-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid rgba(66, 133, 244, 0.4);
  border-radius: 999px;
  background: rgba(66, 133, 244, 0.08);
  color: #8ab4f8;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.reviews__write-btn:hover {
  background: rgba(66, 133, 244, 0.18);
  border-color: rgba(66, 133, 244, 0.6);
  color: #aecbfa;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(66, 133, 244, 0.15);
}

/* --- Reviews Grid --- */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* --- Review Card --- */
.review-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 28px 28px 36px;
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}
.review-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(123, 31, 162, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

/* Card header: profile left, Google icon right */
.review-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.review-card__profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Avatar with unique gradient per card */
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.review-card__avatar--1 { background: linear-gradient(135deg, #7B1FA2, #E040FB); }
.review-card__avatar--2 { background: linear-gradient(135deg, #1565C0, #42A5F5); }
.review-card__avatar--3 { background: linear-gradient(135deg, #2E7D32, #66BB6A); }
.review-card__avatar--4 { background: linear-gradient(135deg, #E65100, #FF9800); }
.review-card__avatar--5 { background: linear-gradient(135deg, #AD1457, #F06292); }
.review-card__avatar--6 { background: linear-gradient(135deg, #283593, #7986CB); }

/* Name + blue check */
.review-card__name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  line-height: 1.2;
}

.review-card__check {
  flex-shrink: 0;
}

.review-card__time {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 400;
  margin-top: 2px;
}

/* Google icon — top right */
.review-card__google-icon {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.review-card:hover .review-card__google-icon {
  opacity: 1;
}

/* Google-colored stars */
.review-card__stars-google {
  font-size: 17px;
  letter-spacing: 3px;
  color: #FBBC05;
  margin-bottom: 14px;
  line-height: 1;
  text-shadow: 0 0 6px rgba(251, 188, 5, 0.2);
}

/* Review text with quotes */
.review-card__text {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

/* Rating-only text */
.review-card__text--rating-only {
  color: var(--gray-500);
  font-style: italic;
  font-size: 14px;
}

/* Decorative quotation mark — bottom right */
.review-card__quote-mark {
  position: absolute;
  bottom: 8px;
  right: 20px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 80px;
  line-height: 1;
  color: rgba(123, 31, 162, 0.1);
  pointer-events: none;
  user-select: none;
}

/* --- Reviews Footer --- */
.reviews__footer {
  text-align: center;
}

.reviews__see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
  transition: all 0.3s ease;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}
.reviews__see-all:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}
.reviews__see-all svg {
  transition: transform 0.3s ease;
}
.reviews__see-all:hover svg {
  transform: translate(2px, -2px);
}

@media (max-width: 1024px) {
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__summary-row { gap: 8px; }
  .reviews__summary-divider { display: none; }
  .review-card { padding: 24px 20px 32px; }
}

/* ============ AREAS ============ */
.areas {
  padding: var(--section-padding) 0;
  background: var(--black-surface);
}

.areas__zone {
  margin-bottom: 32px;
}
.areas__zone:last-child { margin-bottom: 0; }

.areas__zone-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.areas__zone-label--free { background: rgba(34, 197, 94, 0.12); color: #22c55e; }
.areas__zone-label--extended { background: rgba(123, 31, 162, 0.12); color: var(--purple-hover); }
.areas__zone-label--far { background: rgba(255, 255, 255, 0.06); color: var(--gray-400); }

.areas__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.area-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition-fast);
}
.area-tag:hover {
  border-color: var(--purple);
  background: rgba(123, 31, 162, 0.06);
}

.pin { font-size: 16px; }

/* ============ FAQ ============ */
.faq {
  padding: var(--section-padding) 0;
  background: var(--black);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--black-border);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}
.faq__question:hover { color: var(--purple-hover); }

.faq__icon {
  font-size: 24px;
  color: var(--purple-hover);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq__item.active .faq__icon { transform: rotate(45deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium);
}

.faq__answer-inner {
  padding: 0 0 24px 0;
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ============ CTA SECTION + BOOKING MODAL ============ */
.cta-section {
  padding: var(--section-padding) 0;
  background: var(--black-surface);
}

.cta-section__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  margin-bottom: 16px;
  text-align: center;
}

.cta-section__subtitle {
  font-size: 18px;
  color: var(--gray-300);
  margin-bottom: 0;
  line-height: 1.6;
  text-align: center;
}

.cta-form__field {
  margin-bottom: 20px;
}

.cta-form__field label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-300);
  margin-bottom: 8px;
}

.cta-form__field input,
.cta-form__field select,
.cta-form__field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--black-surface);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color var(--transition-fast);
}
.cta-form__field input:focus,
.cta-form__field select:focus,
.cta-form__field textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-glow);
}

.cta-form__field input::placeholder,
.cta-form__field textarea::placeholder { color: var(--gray-500); }

.cta-form__field select { cursor: pointer; }
.cta-form__field select option { background: var(--black-surface); color: var(--white); }

.cta-form__field textarea { resize: vertical; min-height: 80px; }

.cta-form__note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 16px;
}

/* --- Booking CTA --- */
.booking-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.booking-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 20px 48px;
  background: var(--purple-gradient);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}
.booking-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(123, 31, 162, 0.4);
}

/* ═══ BOOKING MODAL ═══ */
.booking-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
}
.booking-modal.active { display: flex; align-items: center; justify-content: center; }

.booking-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.booking-modal__container {
  position: relative;
  width: 95vw;
  max-width: 640px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.booking-modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--black-border);
}

.booking-modal__brand {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--purple-hover);
}

.booking-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black-surface);
  border: 1px solid var(--black-border);
  color: var(--gray-300);
  font-size: 22px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.booking-modal__close:hover { border-color: var(--white); color: var(--white); }

/* Progress bar */
.booking-modal__progress {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--black-border);
  overflow-x: auto;
  gap: 0;
}

.booking-modal__step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.booking-modal__step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--black-surface);
  border: 2px solid var(--black-border);
  font-weight: 800;
  font-size: 12px;
  color: var(--gray-500);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.booking-modal__step.active { color: var(--white); }
.booking-modal__step.active span { background: var(--purple); border-color: var(--purple); color: var(--white); }
.booking-modal__step.done span { background: #22c55e; border-color: #22c55e; color: var(--white); }
.booking-modal__step.done { color: var(--gray-300); }

.booking-modal__step-line {
  flex: 1;
  height: 2px;
  background: var(--black-border);
  margin: 0 8px;
  min-width: 12px;
  max-width: 40px;
  transition: background 0.3s ease;
}
.booking-modal__step-line.done { background: #22c55e; }

/* Body (scrollable) */
.booking-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 28px 28px 16px;
}

/* Footer (sticky) */
.booking-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-top: 1px solid var(--black-border);
  gap: 12px;
}

/* Service banner (persistent at top of modal) */
.booking-modal__service-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(123, 31, 162, 0.08);
  border-bottom: 1px solid rgba(123, 31, 162, 0.2);
}
.bk-service-banner__label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
}
.bk-service-banner__name {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-top: 2px;
}
.bk-service-banner__price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--purple-hover);
}

/* Editing label */
.bk-editing-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-hover);
  margin-bottom: 16px;
  padding: 8px 14px;
  background: rgba(123, 31, 162, 0.06);
  border: 1px solid rgba(123, 31, 162, 0.15);
  border-radius: var(--radius-sm);
}

/* Service area popup (overlay within modal) */
.bk-area-popup {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.bk-area-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}
.bk-area-popup__card {
  position: relative;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  animation: modalSlideIn 0.3s ease;
}
.bk-area-popup__icon { margin-bottom: 16px; }
.bk-area-popup__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: #ef4444;
  margin-bottom: 12px;
}
.bk-area-popup__text {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 20px;
}
.bk-area-popup__subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.bk-area-popup__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}
.bk-area-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--black-surface);
  border: 1px solid var(--black-border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--gray-300);
  font-weight: 500;
}
.bk-area-popup__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ═══ BOOKING INNER COMPONENTS ═══ */
.bk-step-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}

.bk-step-sub {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 20px;
  line-height: 1.5;
}

.bk-step-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--purple-hover);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.bk-section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 14px;
  margin-top: 0;
}

.bk-divider {
  height: 1px;
  background: var(--black-border);
  margin: 24px 0;
}

.bk-selected-svc {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 20px;
  padding: 10px 14px;
  background: rgba(123, 31, 162, 0.06);
  border: 1px solid rgba(123, 31, 162, 0.15);
  border-radius: var(--radius-sm);
}

/* Buttons */
.bk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
}
.bk-btn--primary { background: var(--purple); color: var(--white); }
.bk-btn--primary:hover { background: var(--purple-hover); box-shadow: 0 4px 20px rgba(123, 31, 162, 0.35); }
.bk-btn--primary:disabled { opacity: 0.4; cursor: not-allowed; }
.bk-btn--primary:disabled:hover { background: var(--purple); box-shadow: none; }
.bk-btn--outline { background: transparent; border: 1px solid var(--gray-500); color: var(--gray-300); }
.bk-btn--outline:hover { border-color: var(--white); color: var(--white); }
.bk-btn--success { background: #22c55e; color: var(--white); }
.bk-btn--success:hover { background: #16a34a; }
.bk-btn--success:disabled { opacity: 0.4; cursor: not-allowed; }
.bk-btn--sm { padding: 10px 20px; font-size: 13px; }

/* Phone step */
.bk-phone-step { text-align: center; max-width: 400px; margin: 0 auto; padding: 20px 0; }
.bk-phone-step__icon { margin-bottom: 16px; }
.bk-phone-step .bk-step-title { font-size: 24px; }
.bk-phone-input {
  width: 100%; padding: 18px 20px;
  background: var(--black-surface); border: 2px solid var(--black-border); border-radius: var(--radius-md);
  color: var(--white); font-family: var(--font-body); font-size: 20px;
  text-align: center; letter-spacing: 0.04em; transition: border-color 0.2s ease;
}
.bk-phone-input:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 4px var(--purple-glow); }
.bk-phone-input::placeholder { color: var(--gray-500); font-size: 18px; }
.bk-consent-check {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 16px; padding: 12px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--black-border);
  border-radius: var(--radius-sm); text-align: left;
}
.bk-consent-check input { width: 18px; height: 18px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--purple); }
.bk-consent { font-size: 12px; color: var(--gray-500); line-height: 1.5; }
.bk-consent a { color: var(--purple-hover); text-decoration: underline; }
/* Service grid */
.bk-svc-category { margin-bottom: 20px; }
.bk-svc-category__title {
  font-family: var(--font-heading); font-weight: 700; font-size: 13px;
  color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.bk-svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }

.bk-svc-btn {
  display: flex; flex-direction: column; align-items: flex-start; gap: 3px;
  padding: 14px; background: var(--black-surface); border: 1.5px solid var(--black-border);
  border-radius: var(--radius-sm); color: var(--white); cursor: pointer;
  text-align: left; transition: all 0.2s ease; position: relative;
}
.bk-svc-btn:hover { border-color: var(--purple); background: rgba(123, 31, 162, 0.06); }
.bk-svc-btn.selected { border-color: var(--purple); background: rgba(123, 31, 162, 0.12); box-shadow: 0 0 0 1px var(--purple); }
.bk-svc-btn strong { font-family: var(--font-heading); font-size: 14px; font-weight: 700; }
.bk-svc-price { font-family: var(--font-heading); font-weight: 800; font-size: 16px; color: var(--purple-hover); }
.bk-svc-desc { font-size: 11px; color: var(--gray-400); line-height: 1.4; }
.bk-svc-time { font-size: 11px; color: var(--gray-500); font-style: italic; }

.bk-tag {
  position: absolute; top: -7px; right: 8px;
  font-family: var(--font-heading); font-weight: 800; font-size: 9px;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 2px 8px; border-radius: 999px;
}
.bk-tag--popular { background: var(--purple-gradient); color: var(--white); }
.bk-tag--value { background: #22c55e; color: var(--white); }

/* Vehicle type grid */
.bk-type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.bk-type-btn {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 16px 10px; background: var(--black-surface); border: 1.5px solid var(--black-border);
  border-radius: var(--radius-sm); color: var(--white); cursor: pointer; text-align: center;
  transition: all 0.2s ease;
}
.bk-type-btn:hover { border-color: var(--purple); }
.bk-type-btn.selected { border-color: var(--purple); background: rgba(123, 31, 162, 0.12); box-shadow: 0 0 0 1px var(--purple); }
.bk-type-btn strong { font-family: var(--font-heading); font-size: 13px; font-weight: 700; }
.bk-type-btn span { font-size: 12px; color: var(--gray-400); }

/* Dropdowns & inputs */
.bk-select, .bk-input {
  width: 100%; padding: 14px 16px;
  background: var(--black-surface); border: 1px solid var(--black-border);
  border-radius: var(--radius-sm); color: var(--white);
  font-family: var(--font-body); font-size: 16px;
  transition: border-color 0.2s ease; margin-bottom: 16px;
}
.bk-select:focus, .bk-input:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px var(--purple-glow); }
.bk-select { cursor: pointer; }
.bk-select option { background: var(--black-surface); color: var(--white); }
.bk-input::placeholder { color: var(--gray-500); }

.bk-inline-estimate {
  text-align: center; margin-top: 16px; font-family: var(--font-heading);
  font-size: 16px; color: var(--gray-300);
}
.bk-inline-estimate strong { font-size: 24px; font-weight: 800; color: var(--purple-hover); }

/* Vehicle list */
.bk-vehicle-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; background: var(--black-surface);
  border: 1px solid var(--black-border); border-radius: var(--radius-sm);
  margin-bottom: 8px; font-size: 14px; color: var(--gray-300);
}
.bk-vehicle-item.active { border-color: var(--purple); }
.bk-vehicle-item__actions { display: flex; gap: 8px; }
.bk-vehicle-item__edit {
  background: none; border: none; color: var(--purple-hover);
  font-family: var(--font-heading); font-weight: 700; font-size: 12px;
  text-transform: uppercase; cursor: pointer;
}
.bk-vehicle-item__remove {
  background: none; border: none; color: var(--gray-500); font-size: 18px;
  cursor: pointer; padding: 0 4px;
}
.bk-vehicle-item__remove:hover { color: #ef4444; }

.bk-add-vehicle-btn {
  width: 100%; padding: 12px; background: none;
  border: 1.5px dashed var(--black-border); border-radius: var(--radius-sm);
  color: var(--purple-hover); font-family: var(--font-heading);
  font-weight: 700; font-size: 14px; cursor: pointer;
  transition: border-color 0.2s ease; margin-top: 4px;
}
.bk-add-vehicle-btn:hover { border-color: var(--purple); }

.bk-hint { font-size: 12px; color: var(--gray-500); margin-top: 10px; }

/* Customize / add-ons */
.bk-customize-vehicle { margin-bottom: 24px; }
.bk-customize-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--black-border);
}
.bk-customize-header strong { font-family: var(--font-heading); font-size: 15px; color: var(--white); }
.bk-customize-svc { font-size: 13px; color: var(--purple-hover); font-weight: 600; }

.bk-upgrade {
  background: rgba(123, 31, 162, 0.06); border: 1px solid rgba(123, 31, 162, 0.2);
  border-radius: var(--radius-sm); padding: 16px; margin-bottom: 20px;
}
.bk-upgrade__badge {
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--purple-hover); margin-bottom: 6px;
}
.bk-upgrade strong { font-size: 15px; color: var(--white); }
.bk-upgrade p { font-size: 13px; color: var(--gray-400); margin: 4px 0 8px; }
.bk-upgrade__price { font-family: var(--font-heading); font-weight: 800; font-size: 16px; color: var(--purple-hover); margin-bottom: 10px; }

.bk-addons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.bk-addon-btn {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  padding: 12px; background: var(--black-surface); border: 1.5px solid var(--black-border);
  border-radius: var(--radius-sm); color: var(--white); cursor: pointer;
  text-align: left; transition: all 0.2s ease;
}
.bk-addon-btn:hover { border-color: var(--purple); }
.bk-addon-btn.selected { border-color: var(--purple); background: rgba(123, 31, 162, 0.1); box-shadow: 0 0 0 1px var(--purple); }
.bk-addon-btn strong { font-family: var(--font-heading); font-size: 13px; font-weight: 700; }
.bk-addon-price { font-family: var(--font-heading); font-size: 14px; font-weight: 800; color: var(--purple-hover); }
.bk-addon-time { font-size: 11px; color: var(--gray-500); }

.bk-running-total {
  margin-top: 20px; padding: 16px 20px;
  background: rgba(123, 31, 162, 0.06); border: 1px solid rgba(123, 31, 162, 0.15);
  border-radius: var(--radius-sm);
}
.bk-running-total__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 4px 0; font-family: var(--font-heading); font-size: 15px; color: var(--gray-300);
}
.bk-running-total__row strong { font-size: 22px; font-weight: 800; color: var(--purple-hover); }
.bk-running-total__note { font-size: 12px; color: var(--gray-500); margin-top: 6px; text-align: center; }

/* Calendar */
.bk-calendar { margin-bottom: 8px; }
.bk-cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.bk-cal-month { font-family: var(--font-heading); font-weight: 700; font-size: 18px; color: var(--white); }
.bk-cal-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--black-surface); border: 1px solid var(--black-border);
  color: var(--gray-300); cursor: pointer; transition: all 0.2s ease;
}
.bk-cal-arrow:hover { border-color: var(--purple); color: var(--white); }
.bk-cal-arrow:disabled { opacity: 0.3; cursor: not-allowed; }

.bk-cal-grid-header {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-bottom: 6px;
  text-align: center; font-family: var(--font-heading); font-size: 11px;
  font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em;
}

.bk-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }

.bk-cal-day {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 6px; background: var(--black-surface);
  border: 1.5px solid var(--black-border); border-radius: var(--radius-sm);
  cursor: pointer; font-family: var(--font-heading); font-weight: 700;
  font-size: 16px; color: var(--white); transition: all 0.2s ease;
  min-height: 44px;
}
.bk-cal-day:hover:not(.bk-cal-day--disabled):not(.bk-cal-day--empty) { border-color: var(--purple); }
.bk-cal-day.selected { border-color: var(--purple); background: rgba(123, 31, 162, 0.15); box-shadow: 0 0 0 1px var(--purple); }
.bk-cal-day--disabled { opacity: 0.25; cursor: not-allowed; }
.bk-cal-day--empty { background: none; border-color: transparent; cursor: default; }
.bk-cal-day--today { color: var(--purple-hover); }

.bk-time-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.bk-time-btn {
  padding: 12px 8px; background: var(--black-surface);
  border: 1.5px solid var(--black-border); border-radius: var(--radius-sm);
  color: var(--white); font-family: var(--font-heading); font-weight: 600;
  font-size: 14px; cursor: pointer; text-align: center; transition: all 0.2s ease;
}
.bk-time-btn:hover { border-color: var(--purple); }
.bk-time-btn.selected { border-color: var(--purple); background: rgba(123, 31, 162, 0.15); box-shadow: 0 0 0 1px var(--purple); }

.bk-loading { text-align: center; color: var(--gray-400); padding: 20px; font-style: italic; }
.bk-no-slots { text-align: center; color: var(--gray-400); padding: 20px; }

/* Contact form */
.bk-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.bk-field { margin-bottom: 16px; }
.bk-field--full { grid-column: 1 / -1; }
.bk-field label {
  display: block; font-family: var(--font-heading); font-weight: 600;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--gray-300); margin-bottom: 6px;
}

.bk-area-check { text-align: center; padding: 16px 0; }
.bk-area-btns { display: flex; gap: 16px; justify-content: center; margin-top: 16px; }

.bk-area-bad {
  text-align: center; padding: 24px; background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.2); border-radius: var(--radius-sm);
}
.bk-area-bad__icon { margin-bottom: 12px; }
.bk-area-bad h4 { font-family: var(--font-heading); font-size: 18px; color: #ef4444; margin-bottom: 8px; }
.bk-area-bad p { font-size: 14px; color: var(--gray-400); line-height: 1.6; margin-bottom: 8px; }

/* Travel fee info */
.bk-travel-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.4;
  margin-top: 4px;
}
.bk-travel-info strong { color: var(--white); }
.bk-travel-info--free {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.bk-travel-info--fee {
  background: rgba(123, 31, 162, 0.06);
  border: 1px solid rgba(123, 31, 162, 0.2);
}
.bk-quote-line--travel {
  font-size: 14px;
  color: var(--gray-300);
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Quote / review */
.bk-quote-section { margin-bottom: 20px; }
.bk-quote-vehicle {
  background: var(--black-surface); border: 1px solid var(--black-border);
  border-radius: var(--radius-sm); padding: 16px; margin-bottom: 12px;
}
.bk-quote-vehicle__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--black-border);
}
.bk-quote-vehicle__header strong { font-family: var(--font-heading); font-size: 15px; color: var(--white); }
.bk-quote-vehicle__type { font-size: 12px; color: var(--gray-400); }

.bk-quote-line {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; font-size: 14px; color: var(--gray-300);
}
.bk-quote-line--addon { font-size: 13px; color: var(--gray-400); }
.bk-quote-line--total {
  padding-top: 12px; margin-top: 8px; border-top: 2px solid var(--purple);
  font-size: 16px; color: var(--white);
}
.bk-quote-line--total strong { font-family: var(--font-heading); font-size: 24px; font-weight: 800; color: var(--purple-hover); }
.bk-quote-line--time strong { font-family: var(--font-heading); font-weight: 700; color: var(--white); }

.bk-quote-remove {
  background: none; border: none; color: #ef4444; font-size: 12px;
  font-weight: 600; cursor: pointer; text-decoration: underline; margin-left: 8px;
}

.bk-quote-details {
  background: var(--black-surface); border: 1px solid var(--black-border);
  border-radius: var(--radius-sm); padding: 12px 16px; margin-bottom: 16px;
}

.bk-accept {
  display: flex; align-items: flex-start; gap: 12px; cursor: pointer;
  font-size: 13px; color: var(--gray-400); line-height: 1.5; margin-top: 16px;
}
.bk-accept input[type="checkbox"] {
  flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px;
  accent-color: var(--purple); cursor: pointer;
}

/* Confirmation */
.bk-confirmation { text-align: center; padding: 20px 0; }
.bk-confirmation__icon { margin-bottom: 16px; }
.bk-confirmation__title { font-family: var(--font-heading); font-weight: 800; font-size: 28px; color: var(--white); margin-bottom: 10px; }
.bk-confirmation__text { font-size: 15px; color: var(--gray-300); line-height: 1.6; margin-bottom: 12px; }
.bk-confirmation__summary {
  text-align: left; background: var(--black-surface);
  border: 1px solid var(--black-border); border-radius: var(--radius-sm);
  padding: 16px 20px; margin: 20px auto; max-width: 380px;
}

/* Responsive modal */
@media (max-width: 768px) {
  .booking-modal__container { width: 100%; max-width: 100%; max-height: 100dvh; border-radius: 0; }
  .booking-modal__body { padding: 20px 16px 12px; }
  .booking-modal__footer { padding: 12px 16px; }
  .bk-svc-grid { grid-template-columns: 1fr; }
  .bk-type-grid { grid-template-columns: repeat(2, 1fr); }
  .bk-addons-grid { grid-template-columns: 1fr; }
  .bk-form-grid { grid-template-columns: 1fr; }
  .bk-time-grid { grid-template-columns: repeat(3, 1fr); }
  .bk-cal-day { padding: 10px 4px; font-size: 14px; }
  /* Collapse the 6-step tracker to numbered dots — labels don't fit at phone width */
  .booking-modal__progress { padding: 14px 16px; overflow-x: hidden; }
  .booking-modal__step { font-size: 0; gap: 0; }
  .booking-modal__step span { width: 24px; height: 24px; font-size: 11px; }
  .booking-modal__step-line { margin: 0 4px; min-width: 6px; max-width: none; }
}

/* (old inline booking CSS removed — see modal styles above) */
/* ============ FOOTER ============ */
.footer {
  padding: 60px 0 0;
  background: var(--black);
  border-top: 1px solid var(--black-border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__brand-img {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}

.footer__brand-desc {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  color: var(--white);
}

.footer__links li {
  margin-bottom: 10px;
}
.footer__links a,
.footer__links li {
  font-size: 14px;
  color: var(--gray-400);
  transition: color var(--transition-fast);
}
.footer__links a:hover { color: var(--purple-hover); }

.footer__bottom {
  border-top: 1px solid var(--black-border);
  padding: 20px 0;
  font-size: 13px;
  color: var(--gray-500);
  text-align: center;
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 500px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--black-surface);
  border-top: 1px solid var(--black-border);
  padding: 12px var(--container-padding);
  gap: 12px;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta__call,
.sticky-cta__book {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.sticky-cta__call {
  background: transparent;
  border: 1px solid var(--gray-500);
  color: var(--white);
}

.sticky-cta__book {
  background: var(--purple-gradient);
  border: 1px solid var(--purple);
  color: var(--white);
}

@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  .footer { padding-bottom: 80px; }
}

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
