:root {
  --bruiser-red: #FF0000;
  --bruiser-red-dark: #CC0000;
  --car-wash-cyan: #00BFFF;
  --car-wash-cyan-light: #E6F7FF;
  --car-wash-cyan-dark: #0099CC;
  --blitz-black: #000000;
  --clean-white: #FFFFFF;
  --off-white: #FAFCFE;
  --light-gray: #F0F4F8;
  --medium-gray: #E2E8F0;
  --text-dark: #0F172A;
  --text-medium: #475569;
  --text-light: #94A3B8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.04), 0 10px 15px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.06), 0 20px 48px rgba(0,0,0,0.08);
  --shadow-xl: 0 25px 50px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}


* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--clean-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: "factoria", serif; font-weight: 900; line-height: 1.1; }
p, li { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; }
a, span, input { font-family: inherit; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

.highlight { color: var(--bruiser-red); }
.cyan { color: var(--car-wash-cyan); }

.section-label {
  display: inline-block;
  font-family: "microgramma-extended", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--car-wash-cyan);
  margin-bottom: 16px;
  position: relative;
  padding-left: 36px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: var(--car-wash-cyan);
  transform: translateY(-50%);
}

.section-title {
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-medium);
  max-width: 560px;
  line-height: 1.8;
}

.section-header {
  margin-bottom: 64px;
}

.section-header.reveal-up {
  text-align: center;
}

.section-header .section-label {
  justify-content: center;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-lg { padding: 20px 44px; font-size: 1.05rem; }

.btn-primary {
  background: var(--bruiser-red);
  color: var(--clean-white);
  box-shadow: 0 4px 20px rgba(255,0,0,0.25);
}

.btn-primary:hover {
  background: var(--bruiser-red-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,0,0,0.35);
}

.btn-glass {
  background: rgba(255,255,255,0.15);
  color: var(--clean-white);
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
}

.btn-cyan {
  background: var(--car-wash-cyan);
  color: var(--clean-white);
  box-shadow: 0 4px 20px rgba(0,191,255,0.25);
}

.btn-cyan:hover {
  background: var(--car-wash-cyan-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,191,255,0.35);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--delay, 0s);
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
  padding: 8px 0;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
  padding: 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-logo img { height: 60px; width: auto; transition: all var(--transition); }

.navbar-links { display: flex; align-items: center; gap: 28px; list-style: none; }

.navbar-links a {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.navbar:not(.scrolled) .navbar-links a { color: rgba(255,255,255,0.85); }
.navbar.scrolled .navbar-links a { color: var(--text-dark); }

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bruiser-red);
  transition: width var(--transition);
}

.navbar-links a:hover::after { width: 100%; }
.navbar-links a:hover { color: var(--bruiser-red); }

.navbar-cta .btn { padding: 10px 24px; font-size: 0.7rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar:not(.scrolled) .hamburger span { background: white; }
.navbar.scrolled .hamburger span { background: var(--text-dark); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--clean-white);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  z-index: 999;
}

.mobile-menu.active { display: block; }

.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  border-bottom: 1px solid var(--medium-gray);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { width: 100%; margin-top: 16px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0.6) 100%);
}

/* Sparkle Glint Animation */
@keyframes glint {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

.sparkle-field {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0;
  animation: glint 3s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: calc(100vh - 72px);
  justify-content: center;
  gap: 48px;
}

.hero-content { max-width: 700px; color: white; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,191,255,0.15);
  border: 1px solid rgba(0,191,255,0.3);
  color: var(--car-wash-cyan);
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--car-wash-cyan);
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,191,255,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(0,191,255,0); }
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.05;
  margin-bottom: 28px;
  color: white;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
}

.hero-scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--blitz-black);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  font-family: "microgramma-extended", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 3px;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== WHY BRUISER'S (Problem + Guide Combined) ===== */
.why-bruisers {
  padding: 120px 0;
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.why-bruisers .section-subtitle {
  max-width: 640px;
}

.why-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: stretch;
  margin-bottom: 64px;
}

.why-col {
  background: white;
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--medium-gray);
}

.why-old {
  border-top: 3px solid var(--bruiser-red);
}

.why-new {
  border-top: 3px solid var(--car-wash-cyan);
}

.why-col-title {
  font-family: "factoria", serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--medium-gray);
}

.why-item:last-child {
  border-bottom: none;
}

.why-icon-x {
  color: var(--bruiser-red);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-icon-check {
  color: var(--car-wash-cyan);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item strong {
  display: block;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.why-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.why-divider-line {
  width: 2px;
  flex: 1;
  background: var(--medium-gray);
}

.why-divider-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--car-wash-cyan);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.why-images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  border-radius: 16px;
  overflow: hidden;
}

.why-img-lg,
.why-img-sm {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
}

.plan-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.how-it-works::before,
.amenities::before,
.avoid-failure::before,
.feel-good::before,
.location::before,
.faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 0, 0, 0.03),
    rgba(255, 0, 0, 0.03) 1px,
    transparent 1px,
    transparent 24px
  );
  pointer-events: none;
  z-index: 0;
}

.wash-menu::before,
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px,
    transparent 24px
  );
  pointer-events: none;
  z-index: 0;
}

.membership::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(0, 191, 255, 0.05),
    rgba(0, 191, 255, 0.05) 1px,
    transparent 1px,
    transparent 24px
  );
  pointer-events: none;
  z-index: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.step-card {
  text-align: center;
  position: relative;
  padding: 0 8px;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bruiser-red);
  color: white;
  font-family: "factoria", serif;
  font-weight: 900;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(255,0,0,0.2);
  position: relative;
  z-index: 2;
  border: 5px solid var(--off-white);
}

.step-connector {
  display: none;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 40px);
  right: calc(16.66% + 40px);
  height: 2px;
  background: linear-gradient(90deg, var(--bruiser-red), rgba(255,0,0,0.2), var(--bruiser-red));
  z-index: 1;
}

.step-card h3 {
  font-family: "factoria", serif;
  font-weight: 900;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.8;
  max-width: 280px;
  margin: 0 auto;
}

/* ===== WHY DIFFERENT ===== */
.why-different {
  padding: 120px 0;
  background: var(--clean-white);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image-stack {
  position: relative;
}

.why-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.why-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  border: 4px solid white;
}

.why-content .section-title {
  text-align: left;
}

.comparison-list {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comp-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--light-gray);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.comp-row:hover {
  background: var(--car-wash-cyan-light);
  transform: translateX(4px);
}

.comp-old {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: line-through;
  flex: 1;
}

.comp-x {
  color: #EF4444;
  font-size: 0.8rem;
  font-style: normal;
  text-decoration: none;
  display: inline-block;
}

.comp-arrow {
  color: var(--car-wash-cyan);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.comp-new {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  flex: 1;
}

.comp-check {
  color: var(--car-wash-cyan);
  font-size: 0.8rem;
}

/* ===== PHOTO BREAK ===== */
.photo-break {
  padding: 0;
  overflow: hidden;
}

.photo-grid-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 4px;
}

.photo-grid-scroll::-webkit-scrollbar { display: none; }

.photo-item {
  flex: 0 0 20%;
  min-width: 200px;
  aspect-ratio: 4/3;
  overflow: hidden;
  scroll-snap-align: start;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.85) saturate(1.1);
}

.photo-item:hover img {
  transform: scale(1.1);
  filter: brightness(1) saturate(1.2);
}

/* ===== WASH MENU ===== */
.wash-menu {
  padding: 120px 0;
  background: linear-gradient(160deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  position: relative;
  overflow: hidden;
}


.menu-title { color: white; }
.menu-subtitle { color: rgba(255,255,255,0.5) !important; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.menu-card {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
}

.menu-card-popular {
  border-color: var(--car-wash-cyan);
  box-shadow: 0 0 40px rgba(0,191,255,0.1);
}

.menu-card-popular:hover {
  border-color: var(--car-wash-cyan);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(0,191,255,0.15);
}

.menu-popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bruiser-red);
  color: white;
  padding: 6px 20px;
  border-radius: 0 0 8px 8px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
}

.menu-card-top {
  text-align: center;
  padding: 40px 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.menu-card-popular .menu-card-top {
  padding-top: 48px;
}

.menu-card-bottom {
  padding: 24px 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-tier-label {
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.menu-card h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.menu-price {
  font-family: "factoria", serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: white;
  line-height: 1;
}

.menu-price-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

.menu-features {
  list-style: none;
  flex: 1;
  margin-bottom: 20px;
}

.menu-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.menu-features li .check {
  width: 20px;
  height: 20px;
  background: rgba(0,191,255,0.12);
  color: var(--car-wash-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

a.menu-member-row {
  text-decoration: none;
  cursor: pointer;
}

a.menu-member-row:hover {
  background: rgba(0,191,255,0.15);
  border-color: rgba(0,191,255,0.3);
}

.menu-member-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  transition: all 0.3s;
  background: rgba(0,191,255,0.08);
  border: 1px solid rgba(0,191,255,0.15);
  border-radius: 8px;
  margin-bottom: 12px;
}

.menu-member-row span:first-child {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
}

.menu-member-price {
  font-family: "factoria", serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--car-wash-cyan);
  line-height: 1;
}

.menu-member-price small {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(0,191,255,0.6);
}

.menu-time {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.menu-note {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  margin-top: 40px;
  line-height: 1.8;
  font-style: italic;
}

/* ===== AMENITIES ===== */
.amenities {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.amenities-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.amenities-left {
  text-align: left;
}

.amenities-left .section-title {
  text-align: left;
}

.amenities-pitch {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.9;
  margin-bottom: 36px;
}

.amenities-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
}

.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.amenity-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0,191,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--car-wash-cyan);
}

.amenity-item strong {
  display: block;
  font-family: "factoria", serif;
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.amenity-item p {
  font-size: 0.85rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* ===== AVOID FAILURE ===== */
.avoid-failure {
  padding: 120px 0;
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.failure-content {
  text-align: center;
}

.failure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 48px 0 40px;
}

.failure-card {
  background: white;
  padding: 40px 28px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--medium-gray);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.failure-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.failure-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,0,0,0.08);
  color: var(--bruiser-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.failure-card h3 {
  font-family: "factoria", serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.failure-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.8;
}

.failure-closer {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 32px;
}

/* ===== MEMBERSHIP ===== */
.membership {
  padding: 120px 0;
  background: url('images/wipe-car.jpg') center/cover no-repeat;
  color: var(--clean-white);
  position: relative;
  overflow: hidden;
}

.membership::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 0;
}



.membership-header { text-align: center; margin-bottom: 48px; }
.membership .section-title { color: white; }

.section-label-light {
  color: var(--car-wash-cyan) !important;
}
.section-label-light::before {
  background: var(--car-wash-cyan) !important;
}

.membership-hook {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 16px auto 0;
  line-height: 1.8;
}

.membership-content { position: relative; z-index: 2; text-align: center; }

.membership-spotlight {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,191,255,0.2);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 480px;
  margin: 0 auto 56px;
  position: relative;
  backdrop-filter: blur(10px);
}

.membership-spotlight::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,191,255,0.4), transparent 50%, rgba(255,0,0,0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.spotlight-badge {
  display: inline-block;
  background: var(--car-wash-cyan);
  color: white;
  padding: 6px 18px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.spotlight-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 12px;
}

.spotlight-currency {
  font-family: "factoria", serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--car-wash-cyan);
}

.spotlight-amount {
  font-family: "factoria", serif;
  font-weight: 900;
  font-size: 5rem;
  line-height: 1;
  color: white;
}

.spotlight-period {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.spotlight-tagline {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}

.spotlight-cta {
  width: 100%;
  justify-content: center;
  font-size: 1rem !important;
  padding: 18px 40px !important;
}

.membership-perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.perk {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.perk-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0,191,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--car-wash-cyan);
  flex-shrink: 0;
}

.perk strong {
  display: block;
  font-size: 1rem;
  color: white;
  margin-bottom: 4px;
}

.perk p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ===== FEEL GOOD ===== */
.feel-good {
  padding: 120px 0;
  background: var(--clean-white);
  position: relative;
  overflow: hidden;
}

.feel-good-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feel-good-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.feel-good-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.feel-good-floating-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: white;
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  max-width: 240px;
  animation: gentle-bob 4s ease-in-out infinite;
}

@keyframes gentle-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-stars {
  color: #FBBF24;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.feel-good-floating-card span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  font-style: italic;
}

.feel-good-content .section-title { text-align: left; }

.feel-good-text {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin-bottom: 28px;
  line-height: 1.9;
}

.feel-good-list {
  list-style: none;
  margin-bottom: 36px;
}

.feel-good-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.feel-good-list li .check {
  width: 30px;
  height: 30px;
  background: var(--car-wash-cyan-light);
  color: var(--car-wash-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ===== LOCATION ===== */
.location {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.location-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--medium-gray);
}

.location-map {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.location-info {
  text-align: left;
}

.location-intro {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 32px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.6;
  padding: 16px 0;
  border-bottom: 1px solid var(--medium-gray);
}

.location-detail:last-child {
  border-bottom: none;
}

.location-icon {
  width: 40px;
  height: 40px;
  background: rgba(0,191,255,0.1);
  color: var(--car-wash-cyan);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #DCFCE7;
  color: #16A34A;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.open-badge .dot {
  width: 8px;
  height: 8px;
  background: #16A34A;
  border-radius: 50%;
  animation: pulse-glow-green 2s infinite;
}

@keyframes pulse-glow-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(22,163,74,0); }
}

/* ===== FAQ ===== */
.faq {
  padding: 120px 0;
  background: var(--clean-white);
  position: relative;
  overflow: hidden;
}

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

.faq-header .section-title { text-align: left; }

.faq-header p {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-top: 16px;
}

.faq-list { max-width: 100%; }

.faq-item {
  border-bottom: 1px solid var(--medium-gray);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--car-wash-cyan); }

.faq-question .arrow {
  font-size: 0.8rem;
  color: var(--car-wash-cyan);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question .arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.9;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(160deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}


.final-cta h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
}

.final-cta .highlight {
  color: var(--bruiser-red);
}

.final-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--blitz-black);
  color: rgba(255,255,255,0.9);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 80px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  max-width: 320px;
}

.footer-tagline {
  font-family: "factoria", serif;
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--car-wash-cyan);
  margin-top: 14px;
}

.footer h4 {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clean-white);
  margin-bottom: 20px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 14px; }

.footer-links a {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  letter-spacing: 0.5px;
}

.footer-links a:hover { color: var(--car-wash-cyan); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.footer-bottom a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--car-wash-cyan);
}

/* ===== SPEED-LINE TEXTURE ===== */
.why-bruisers::before,
.how-it-works::before,
.amenities::before,
.avoid-failure::before,
.feel-good::before,
.location::before,
.faq::before,
.wash-menu::before,
.final-cta::before {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-title { font-size: 3.5rem; }
  .section-title { font-size: 2.4rem; }
  .why-comparison { gap: 24px; }
  .feel-good-layout { gap: 40px; }
  .photo-item { width: calc(100% / 4); }
  .amenities-split { gap: 48px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar-links, .navbar-cta { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: 2.5rem; }
  .hero-inner { padding-top: 120px; padding-bottom: 60px; }
  .stat-card { padding: 16px 20px; }
  .stat-number { font-size: 2rem; }

  .steps-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .steps-grid::before { display: none; }

  .why-comparison { grid-template-columns: 1fr; gap: 0; }
  .why-divider { flex-direction: row; padding: 16px 0; }
  .why-divider-line { width: auto; height: 2px; flex: 1; }
  .why-images { grid-template-columns: 1fr; }
  .why-img-lg, .why-img-sm { height: 200px; }

  .failure-grid { grid-template-columns: 1fr; max-width: 400px; margin: 48px auto 40px; }

  .photo-item { width: calc(100% / 3); }

  .amenities-split { grid-template-columns: 1fr; gap: 40px; }
  .amenities-left { text-align: center; }
  .amenities-left .section-title { text-align: center; }
  .amenities-right { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .menu-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .membership-perks { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .membership-spotlight { padding: 36px 28px; }

  .feel-good-layout { grid-template-columns: 1fr; }
  .feel-good-content { text-align: center; }
  .feel-good-content .section-title { text-align: center; }
  .feel-good-floating-card { right: 16px; bottom: -16px; }

  .location-layout { grid-template-columns: 1fr; }
  .location-map { height: 300px; }
  .location-details-grid { grid-template-columns: 1fr; }

  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-header { text-align: center; }
  .faq-header .section-title { text-align: center; }

  .section-title { font-size: 2rem; }
  .final-cta h2 { font-size: 2rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .marquee-track span { font-size: 0.7rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .stat-card { padding: 14px 18px; }
  .stat-number { font-size: 1.6rem; }
  .hero-scroll-indicator { display: none; }
  .photo-item { width: calc(100% / 2); }
  .btn-lg { padding: 16px 32px; font-size: 0.85rem; }
}

.ada-toggle {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bruiser-red);
  color: white;
  border: none;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.2s, background 0.2s;
}

.ada-toggle:hover {
  transform: scale(1.1);
  background: #cc0000;
}

.ada-toggle svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.ada-panel {
  position: fixed;
  bottom: 88px;
  left: 24px;
  width: 280px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  z-index: 9998;
  padding: 24px;
  transform: translateY(16px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}

.ada-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ada-panel-title {
  font-family: "factoria", serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--blitz-black);
  margin-bottom: 20px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ada-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: #999;
  line-height: 1;
  padding: 0;
}

.ada-close:hover { color: var(--bruiser-red); }

.ada-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.ada-option:last-child { border-bottom: none; }

.ada-option-label {
  font-size: 0.85rem;
  color: #333;
  font-weight: 500;
}

.ada-option-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ada-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #f5f5f5;
  color: #333;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
  padding: 0;
}

.ada-btn:hover {
  background: var(--bruiser-red);
  border-color: var(--bruiser-red);
  color: white;
}

.ada-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}
.ada-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.ada-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ccc;
  border-radius: 26px;
  transition: background 0.25s;
}
.ada-slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.25s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.ada-switch input:checked + .ada-slider {
  background: var(--bruiser-red);
}
.ada-switch input:checked + .ada-slider::before {
  transform: translateX(22px);
}

.ada-reset {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: #f0f0f0;
  color: #555;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.15s;
}

.ada-reset:hover {
  background: #e0e0e0;
}

body.ada-high-contrast {
  background: #000 !important;
  color: #fff !important;
}
body.ada-high-contrast *:not(.ada-toggle):not(.ada-panel):not(.ada-panel-title):not(.ada-close):not(.ada-option):not(.ada-option-label):not(.ada-option-controls):not(.ada-btn):not(.ada-switch):not(.ada-slider):not(.ada-reset) {
  background-color: #000 !important;
  color: #fff !important;
  border-color: #fff !important;
}
body.ada-high-contrast .ada-switch input {
  background-color: transparent !important;
}
body.ada-high-contrast img,
body.ada-high-contrast picture,
body.ada-high-contrast video,
body.ada-high-contrast iframe,
body.ada-high-contrast svg {
  filter: contrast(1.2);
}
body.ada-high-contrast a {
  color: #FFD700 !important;
}
body.ada-high-contrast .btn,
body.ada-high-contrast .btn-primary,
body.ada-high-contrast .btn-lg {
  background: var(--bruiser-red) !important;
  color: #fff !important;
  border: 2px solid #fff !important;
}
body.ada-high-contrast .ada-toggle {
  background: var(--bruiser-red) !important;
  color: white !important;
  border: 3px solid #fff !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5) !important;
}
body.ada-high-contrast .ada-toggle svg {
  fill: white !important;
  filter: none !important;
}
body.ada-high-contrast .ada-panel {
  background: #fff !important;
  border: 2px solid #333 !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4) !important;
}
body.ada-high-contrast .ada-panel .ada-panel-title,
body.ada-high-contrast .ada-panel .ada-option-label,
body.ada-high-contrast .ada-panel .ada-close,
body.ada-high-contrast .ada-panel .ada-reset {
  background: #fff !important;
  color: #000 !important;
}
body.ada-high-contrast .ada-panel .ada-btn {
  background: #f5f5f5 !important;
  color: #333 !important;
  border-color: #ddd !important;
}
body.ada-high-contrast .ada-panel .ada-option {
  background: #fff !important;
  border-color: #eee !important;
}
body.ada-high-contrast .ada-panel .ada-slider {
  background: #ccc !important;
}
body.ada-high-contrast .ada-panel .ada-switch input:checked + .ada-slider {
  background: var(--bruiser-red) !important;
}
body.ada-high-contrast .ada-panel .ada-slider::before {
  background: #fff !important;
}
body.ada-high-contrast .navbar {
  background: #000 !important;
  border-bottom: 1px solid #333 !important;
}

body.ada-large-cursor,
body.ada-large-cursor * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M5 2l20 12-9 3-5 10z' fill='black' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E") 4 2, auto !important;
}

body.ada-highlight-links a {
  outline: 3px solid var(--bruiser-red) !important;
  outline-offset: 2px;
}

body.ada-dyslexia-friendly,
body.ada-dyslexia-friendly * {
  font-family: "Comic Sans MS", "OpenDyslexic", sans-serif !important;
  letter-spacing: 0.05em !important;
  word-spacing: 0.1em !important;
}
