:root {
  --jet-black: #0a0a0a;
  --jet-dark: #141414;
  --jet-charcoal: #1e1e1e;
  --surface: #171717;
  --yellow: #FFCA08;
  --yellow-bright: #ffdd44;
  --yellow-deep: #e6b500;
  --yellow-dominant: #FFCA08;
  --red: #e8221a;
  --red-deep: #c1121f;
  --white: #ffffff;
  --off-white: #fafafa;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --blue: #5BBFEC;
  --blue-light: #7fd0f2;
  --sky-blue: #e8f4fd;
  --sky-blue-tint: #ddf2fc;
  --yellow-light: #fff8dc;
  --success: #10b981;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 40px rgba(247,201,72,0.15);
  --transition: all 0.3s cubic-bezier(.4,0,.2,1);
  --transition-slow: all 0.5s cubic-bezier(.4,0,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-700);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900 !important;
  line-height: 1.1;
  color: var(--jet-dark);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-link {
  color: var(--red);
  font-weight: 600;
  transition: var(--transition);
}
.text-link:hover {
  color: var(--red-deep);
  text-decoration: underline;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(230,57,70,0.3); }
  50% { box-shadow: 0 0 40px rgba(230,57,70,0.5); }
}
@keyframes rippleEffect {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(4); opacity: 0; }
}
@keyframes cardReveal {
  from { opacity: 0; transform: translateY(60px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes bubbleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* ===== HEADER / NAV ===== */
.founders-sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: #FFCA08;
  color: #0a0a0a;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  padding: 5px 16px;
}
.founders-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.founders-sticky-star {
  font-size: 1rem;
  color: #E02C47;
}
.founders-sticky-text {
  color: #0a0a0a;
}
.founders-sticky-text strong {
  font-weight: 800;
}
.founders-sticky-cta {
  display: inline-block;
  background: #0a0a0a;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  padding: 5px 16px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: transform 0.2s, background 0.2s;
}
.founders-sticky-cta:hover {
  background: #1a1a2e;
  transform: scale(1.05);
}
@media (max-width: 600px) {
  .founders-sticky-bar { font-size: 0.72rem; padding: 4px 10px; }
  .founders-sticky-cta { font-size: 0.68rem; padding: 3px 10px; }
}
.site-header {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition-slow);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(247,201,72,0.2);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}
.nav-logo img {
  height: 96px;
  transition: var(--transition);
}
.nav-logo:hover img { transform: scale(1.05); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > a,
.nav-dropdown-toggle {
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: 10px;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-links > a:hover,
.nav-dropdown-toggle:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: rgba(255,255,255,0.8);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}
.nav-dropdown-menu a:hover {
  color: var(--yellow);
  background: rgba(255,255,255,0.05);
  padding-left: 24px;
}
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
  padding: 14px 30px !important;
  font-size: 0.95rem !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: var(--transition) !important;
  animation: ctaPulseGlow 2s ease-in-out infinite;
}
.nav-cta:hover {
  background: var(--red-deep) !important;
  transform: translateY(-2px) scale(1.05) !important;
  box-shadow: 0 8px 30px rgba(230,57,70,0.5) !important;
  animation: none;
}
@keyframes ctaPulseGlow {
  0%, 100% { box-shadow: 0 4px 15px rgba(230,57,70,0.3); }
  50% { box-shadow: 0 4px 25px rgba(230,57,70,0.6), 0 0 40px rgba(230,57,70,0.2); }
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  z-index: 9999;
}
.mobile-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); }

/* ===== HERO (After-Hero Cinematic) ===== */
.after-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.after-bg {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  filter: contrast(1.05) saturate(1.0) brightness(1.1);
  animation: cinematicDrift 20s ease-in-out infinite alternate;
}
@keyframes cinematicDrift {
  0% { transform: scale(1) translate(0, 0); }
  25% { transform: scale(1.04) translate(-1%, 0.5%); }
  50% { transform: scale(1.02) translate(0.5%, -0.5%); }
  75% { transform: scale(1.05) translate(-0.5%, 0.3%); }
  100% { transform: scale(1.03) translate(0.3%, -0.3%); }
}
.after-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(2,10,20,0.65) 0%, rgba(3,20,38,0.35) 50%, rgba(2,10,20,0.20) 100%);
  mix-blend-mode: multiply;
  z-index: 1;
}
.after-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(0,0,0,0.45) 100%),
    linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.6) 85%, rgba(10,10,10,1) 100%);
  z-index: 2;
  pointer-events: none;
}
.after-grade {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(135deg, rgba(20,8,2,0.28) 0%, rgba(180,90,20,0.06) 40%, rgba(0,10,30,0.30) 100%);
  mix-blend-mode: color;
  pointer-events: none;
}
.after-grain {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: grainShift 0.15s steps(1) infinite;
  pointer-events: none;
}
@keyframes grainShift {
  0%   { background-position: 0 0; }
  25%  { background-position: -50px -20px; }
  50%  { background-position: 30px 40px; }
  75%  { background-position: -20px 60px; }
  100% { background-position: 50px -30px; }
}
.speed-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 5;
}
.speed-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,200,255,0.15), transparent);
  animation: streakMove 3s ease-in-out infinite;
  transform-origin: left center;
}
@keyframes streakMove {
  0% { transform: scaleX(0) translateX(-10%); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: scaleX(1.2) translateX(5%); opacity: 0; }
}
.shimmer-dots {
  position: absolute;
  inset: 0;
  z-index: 5;
  background-image:
    radial-gradient(circle, rgba(100,220,255,0.25) 1px, transparent 1px),
    radial-gradient(circle, rgba(100,220,255,0.15) 1px, transparent 1px);
  background-size: 80px 80px, 50px 50px;
  background-position: 0 0, 40px 40px;
  animation: shimmerFloat 8s linear infinite;
  opacity: 0.4;
  pointer-events: none;
}
@keyframes shimmerFloat {
  from { background-position: 0 0, 40px 40px; }
  to { background-position: 80px 80px, 120px 120px; }
}
.wash-arch {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 60px solid rgba(0,160,255,0.05);
  box-shadow: inset 0 0 80px rgba(0,160,255,0.06), 0 0 120px rgba(0,160,255,0.06);
  pointer-events: none;
  z-index: 5;
}
.after-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 220px 48px 80px;
  max-width: 780px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #00c8ff;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease both;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #00c8ff;
}
.after-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--white);
  animation: fadeInUp 0.6s 0.1s ease both;
}
.after-headline .line2 {
  color: #f5c518;
  display: block;
}
.after-sub {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
  max-width: 500px;
  animation: fadeInUp 0.6s 0.2s ease both;
}
.after-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  animation: fadeInUp 0.6s 0.4s ease both;
}
.btn-primary-after,
.btn-inline-cta,
.btn-final-primary,
.btn-final-outline,
.nav-cta {
  position: relative;
  overflow: hidden;
}
.btn-primary-after:not(.btn-outline-after)::after,
.btn-inline-cta::after,
.btn-shine::after,
.nav-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: btnShine 3s ease-in-out infinite;
  pointer-events: none;
  display: block !important;
}
@keyframes btnShine {
  0% { left: -100%; }
  50% { left: 150%; }
  100% { left: 150%; }
}
.btn-primary-after {
  background: #e8221a;
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 40px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 6px 30px rgba(232,34,26,0.4);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary-after:hover {
  background: #c41810;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(232,34,26,0.5);
  color: white;
}
.btn-outline-after {
  background: transparent;
  box-shadow: none;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-after:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  box-shadow: none;
}
.btn-arrow {
  font-size: 20px;
  transition: transform 0.2s;
}
.btn-primary-after:hover .btn-arrow { transform: translateX(4px); }
.stats-strip {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: stretch;
  background: #0a0a0a;
  animation: fadeInUp 0.6s 0.5s ease both;
}
.stats-strip::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 180px;
  background: linear-gradient(to bottom, transparent 0%, rgba(10,10,10,0.3) 25%, rgba(10,10,10,0.65) 55%, #0a0a0a 100%);
  z-index: -1;
  pointer-events: none;
}
.stat-item {
  flex: 1;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.stat-item:nth-child(1) { transition-delay: 0.1s; }
.stat-item:nth-child(2) { transition-delay: 0.3s; }
.stat-item:nth-child(3) { transition-delay: 0.5s; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: #3b9dff;
  line-height: 1;
  flex-shrink: 0;
  text-shadow: 0 2px 12px rgba(59,157,255,0.35);
  animation: statPulse 3s ease-in-out infinite;
}
.stat-num-icon {
  display: flex;
  align-items: center;
}
.infinity-icon {
  width: 64px;
  height: 32px;
  filter: drop-shadow(0 2px 12px rgba(59,157,255,0.5));
}
@keyframes statPulse {
  0%, 100% { text-shadow: 0 2px 12px rgba(0,200,255,0.35); }
  50% { text-shadow: 0 2px 20px rgba(0,200,255,0.6), 0 0 40px rgba(0,200,255,0.2); }
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  line-height: 1.45;
  white-space: nowrap;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .after-hero { min-height: 100svh; }
  .after-bg::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.5) 70%, rgba(10,10,10,0.95) 100%);
  }
  .after-content {
    padding: 140px 24px 60px;
    text-align: center;
    align-items: center;
    max-width: 100%;
  }
  .after-content .eyebrow {
    justify-content: center;
  }
  .after-headline {
    font-size: clamp(3.4rem, 14vw, 5.5rem);
  }
  .after-sub {
    font-size: 18px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
  .after-buttons {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .after-buttons .btn-primary-after {
    text-align: center;
    justify-content: center;
    width: 100%;
  }
  .stats-strip { flex-direction: column; }
  .stat-item { padding: 16px 24px; }
  .stat-label { white-space: normal; }
  .wash-arch { display: none; }
}

/* ===== TRUST BAR (Rotating Slider) ===== */
.trust-bar {
  background: #0a0a0a;
  padding: 18px 0;
  border: none;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.trust-static {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-rotator {
  position: relative;
  height: 24px;
  overflow: hidden;
}
.trust-slide {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(100%);
  transition: none;
}
.trust-slide svg {
  width: 20px;
  height: 20px;
  color: #00c8ff;
  flex-shrink: 0;
}
.trust-slide span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #00c8ff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.trust-slide.trust-active {
  opacity: 1;
  transform: translateY(0);
}
.trust-slide.trust-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.trust-slide.trust-out {
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
@media (max-width: 768px) {
  .trust-bar {
    padding: 14px 0;
  }
  .trust-static {
    font-size: 14px;
  }
  .trust-slide span {
    font-size: 14px;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  justify-content: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(230,57,70,0.3);
  position: relative;
}
.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(230,57,70,0.5);
}
.btn-secondary {
  background: var(--yellow);
  color: var(--jet-black);
  box-shadow: 0 4px 15px rgba(247,201,72,0.3);
}
.btn-secondary:hover {
  background: var(--yellow-deep);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(247,201,72,0.4);
}
.btn-glass {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-3px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-3px);
}
.btn-dark {
  background: var(--jet-dark);
  color: var(--yellow);
  border: 2px solid var(--yellow);
}
.btn-dark:hover {
  background: var(--yellow);
  color: var(--jet-black);
  transform: translateY(-3px);
}
.btn-outline {
  background: transparent;
  color: var(--jet-dark);
  border: 2px solid var(--gray-300);
}
.btn-outline:hover {
  background: var(--jet-dark);
  color: var(--white);
  border-color: var(--jet-dark);
  transform: translateY(-3px);
}
.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
  border-radius: 14px;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 0.82rem;
}
.btn-block {
  width: 100%;
  margin-top: 8px;
}
.btn:active {
  transform: scale(0.97) !important;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
  position: relative;
}
.section-white { background: var(--white); }
.section-light { background: var(--gray-50); }
.section-dark {
  background: var(--jet-dark);
  color: var(--white);
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }
.section-dark .section-label { background: rgba(247,201,72,0.15); color: var(--yellow); border: 1px solid rgba(247,201,72,0.2); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(230,57,70,0.08);
  border-radius: 50px;
  border: 1px solid rgba(230,57,70,0.12);
}
.section-title {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.section-subtitle {
  font-size: 1.15rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}
.service-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.service-card:hover .service-card-icon {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: scale(1.1) rotate(5deg);
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.service-card p {
  color: var(--gray-500);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===== PROBLEM SECTION ===== */
.problem-dark {
  background: #ffffff;
  padding: 40px 0 80px;
  position: relative;
  overflow: hidden;
}
.ps-trio {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

.ps-card {
  border-radius: 24px;
  padding: 40px 36px;
  position: relative;
}
.ps-card-problem {
  background: linear-gradient(145deg, #0a0a0a 0%, #111111 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.ps-card-solution {
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.ps-card-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.ps-badge-problem {
  background: rgba(230,57,70,0.15);
  color: #ff6b6b;
}
.ps-badge-solution {
  background: rgba(34,197,94,0.1);
  color: #16a34a;
}

.ps-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
}
.ps-title-problem {
  color: #ffffff;
}
.ps-title-solution {
  color: #000000;
}
.ps-highlight-red {
  color: #e63946;
  font-style: italic;
}
.ps-highlight-green {
  color: #22c55e;
  font-style: italic;
}

.ps-card-sub {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 24px;
}
.ps-sub-problem {
  color: rgba(255,255,255,0.6);
}
.ps-sub-solution {
  color: #555;
}

.ps-arrow-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  z-index: 2;
}
.ps-arrow-connector svg {
  filter: drop-shadow(0 4px 12px rgba(247,201,72,0.4));
  animation: pulseArrow 2s ease-in-out infinite;
}
@keyframes pulseArrow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.ps-card-problem .pain-point {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
}
.ps-card-problem .pain-point:hover {
  background: rgba(230,57,70,0.1);
  border-color: rgba(230,57,70,0.3);
}
.ps-card-solution .solution-point {
  background: #f0fdf4;
  border: 1px solid #dcfce7;
  color: #1a1a1a;
}
.ps-card-solution .solution-point:hover {
  background: #dcfce7;
  border-color: #bbf7d0;
}
.problem-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}
.problem-slider-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.problem-text-col .eyebrow {
  color: var(--gray-400);
}
.problem-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  color: #1a1a1a;
  line-height: 1.08;
  margin-top: 16px;
  margin-bottom: 20px;
}
.problem-sub {
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}
.problem-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.problem-point {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.problem-point:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(230,57,70,0.2);
}
.problem-point svg {
  flex-shrink: 0;
}
.ps-slider-below {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}
.ps-slider-below .solution-cta {
  margin-top: 24px;
}
.before-after-slider {
  position: relative;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  cursor: ew-resize;
  touch-action: none;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.ba-before, .ba-after {
  position: absolute;
  inset: 0;
}
.ba-before img, .ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  pointer-events: none;
  user-select: none;
}
.ba-after {
  clip-path: inset(0 0 0 50%);
}
.ba-label {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 6px;
  pointer-events: none;
}
.ba-label-before {
  left: 16px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
}
.ba-label-after {
  right: 16px;
  background: rgba(0,200,255,0.15);
  color: #00c8ff;
  backdrop-filter: blur(8px);
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}
.ba-handle-line {
  flex: 1;
  width: 2px;
  background: rgba(255,255,255,0.5);
}
.ba-handle-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f7c948;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(247,201,72,0.4);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.before-after-slider:hover .ba-handle-circle {
  transform: scale(1.1);
}
.ba-hint {
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(13,42,74,0.5);
  letter-spacing: 0.1em;
}
.problem-dark-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: #0a1e36;
  margin-bottom: 20px;
  text-shadow: 0 1px 2px rgba(255,255,255,0.3);
}
.text-yellow {
  color: #FFCA08;
  font-style: italic;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.3), 2px 2px 0 rgba(0,0,0,0.15);
}
.problem-dark .text-yellow,
.your-choice-section .text-yellow,
.loc-dark-section .text-yellow {
  color: var(--blue);
  text-shadow: none;
}
.problem-dark-sub {
  font-size: 1.05rem;
  color: #1a3050;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}
.pain-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pain-point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 10px;
  color: #0a1e36;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.pain-point:hover {
  background: rgba(255,255,255,0.65);
  border-color: rgba(230,57,70,0.35);
  transform: translateX(4px);
}
.pain-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(230,57,70,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.solution-point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 10px;
  color: #0a1e36;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.solution-point:hover {
  background: rgba(255,255,255,0.65);
  border-color: rgba(34,197,94,0.4);
  transform: translateX(4px);
}
.solution-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution-cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== AMENITIES SECTION ===== */
.amenities-section {
  background: var(--sky-blue-tint);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.amenities-section .eyebrow {
  color: var(--blue);
}
.amenities-section .eyebrow::before {
  background: var(--blue);
}

.amenities-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.amenities-left {
  padding-top: 0;
}
.amenities-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.08;
  margin-top: 16px;
}
.amenities-intro {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.amenity-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.amenity-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(91,191,236,0.2);
  border-radius: 50px;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  white-space: nowrap;
}
.amenity-pill:hover,
.amenity-pill.active {
  background: #ffffff;
  border-color: var(--blue);
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(91,191,236,0.15);
}
.amenity-pill-cta {
  background: rgba(247,201,72,0.15);
  border-color: rgba(247,201,72,0.3);
  color: #f7c948;
}
.amenity-pill-cta:hover {
  background: rgba(247,201,72,0.25);
  border-color: rgba(247,201,72,0.5);
  color: #f7c948;
}

.pill-icon {
  flex-shrink: 0;
}
.amenity-tooltip {
  margin-top: 28px;
  min-height: 56px;
  padding: 18px 24px;
  background: rgba(255,255,255,0.9);
  border-radius: 14px;
  border: 1px solid rgba(91,191,236,0.25);
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.amenity-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}
.amenities-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.amenity-stat {
  text-align: center;
  padding: 48px 24px 0;
  position: relative;
}
.amenity-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 48px;
  bottom: 0;
  width: 1px;
  background: rgba(0,0,0,0.08);
}
.amenity-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  font-style: italic;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}
.amenity-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--gray-500);
  font-style: italic;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .amenities-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .amenities-left { position: static; }
  .amenities-stats {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 48px;
    gap: 0;
  }
  .amenity-stat {
    padding: 20px 12px;
  }
  .amenity-stat-num {
    font-size: 2rem;
  }
  .amenity-stat-label {
    font-size: 0.78rem;
  }
}

.steps-dark-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.12), transparent);
  margin: 60px 0;
}
.steps-dark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
/* ===== WASH SIM SECTION ===== */
.wash-sim-section {
  background: #ffffff;
  padding: 80px 0 20px;
}

/* ===== WASH SIMULATOR ===== */
.wash-sim {
  margin-top: 20px;
}
.wash-sim-header {
  text-align: center;
  margin-bottom: 36px;
}
.wash-sim-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 3.6rem);
  color: #0a0a0a;
  margin-bottom: 12px;
  line-height: 1.1;
}
.wash-sim-sub {
  font-size: 1.05rem;
  color: rgba(10,10,10,0.5);
  max-width: 480px;
  margin: 0 auto;
}
.wash-sim-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.wash-tab {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,0.1);
  background: #ffffff;
  color: #333;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.wash-tab:hover {
  border-color: rgba(91,191,236,0.4);
  background: rgba(91,191,236,0.06);
}
.wash-tab.active {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
}
.wash-tab-svg {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.wash-tab.active .wash-tab-svg {
  opacity: 1;
}
.wash-sim-progress {
  height: 3px;
  background: rgba(0,0,0,0.06);
  border-radius: 3px;
  margin-bottom: 0;
  overflow: hidden;
}
.wash-sim-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #5BBFEC, #FFCA08);
  border-radius: 3px;
  width: 16.66%;
  transition: width 0.5s ease;
}
.wash-sim-viewport {
  position: relative;
  background: linear-gradient(180deg, #0a0e14 0%, #0f1a24 40%, #0a0e14 100%);
  border-radius: 0 0 20px 20px;
  height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wash-sim-car {
  position: relative;
  z-index: 2;
  width: 260px;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.car-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}
.wash-fx-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.wash-sim-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 1;
}
.ground-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(91,191,236,0.3), transparent);
}
.ground-belt {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38px;
  background: repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.03) 40px, rgba(255,255,255,0.03) 42px);
  animation: beltMove 2s linear infinite;
}
@keyframes beltMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-42px); }
}
.wash-sim-stage-label {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  z-index: 4;
  transition: opacity 0.3s ease;
}
.wash-sim-info {
  text-align: center;
  padding: 28px 20px 16px;
}
.wash-sim-info-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  color: #0a0a0a;
  margin-bottom: 8px;
  transition: opacity 0.3s;
}
.wash-sim-info-desc {
  font-size: 0.95rem;
  color: rgba(10,10,10,0.55);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
  transition: opacity 0.3s;
}
.wash-sim-actions {
  text-align: center;
  padding: 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.wash-sim-hint {
  font-size: 0.95rem;
  color: rgba(10,10,10,0.5);
  margin: 0;
}

/* Wash FX particles */
.fx-drop {
  position: absolute;
  width: 2px;
  border-radius: 2px;
  background: rgba(91,191,236,0.6);
  animation: fxDrop var(--dur, 1s) linear infinite;
  animation-delay: var(--delay, 0s);
  left: var(--x, 50%);
  top: -20px;
}
@keyframes fxDrop {
  0% { transform: translateY(0); opacity: 0.8; }
  100% { transform: translateY(380px); opacity: 0; }
}
.fx-bubble {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
  animation: fxBubble var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  left: var(--x, 50%);
  bottom: var(--y, 40px);
  width: var(--size, 12px);
  height: var(--size, 12px);
}
@keyframes fxBubble {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  20% { opacity: 0.7; }
  80% { opacity: 0.5; }
  100% { transform: translateY(-200px) scale(1.5); opacity: 0; }
}
.fx-foam-blob {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 70%);
  animation: fxFoamPulse var(--dur, 2s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: var(--size, 60px);
  height: var(--size, 60px);
}
@keyframes fxFoamPulse {
  0%, 100% { transform: scale(0.8); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.7; }
}
.fx-wind-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: fxWind var(--dur, 0.8s) linear infinite;
  animation-delay: var(--delay, 0s);
  top: var(--y, 50%);
  left: -100px;
  width: var(--w, 120px);
}
@keyframes fxWind {
  0% { transform: translateX(0); opacity: 0; }
  30% { opacity: 0.7; }
  100% { transform: translateX(900px); opacity: 0; }
}
.fx-sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #FFCA08;
  box-shadow: 0 0 6px 2px rgba(255,202,8,0.5);
  animation: fxSparkle var(--dur, 1.5s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  left: var(--x, 50%);
  top: var(--y, 50%);
}
@keyframes fxSparkle {
  0%, 100% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1); opacity: 1; }
}
.fx-mist {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,191,236,0.15) 0%, transparent 70%);
  animation: fxMist var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  left: var(--x, 30%);
  top: var(--y, 20%);
  width: var(--size, 150px);
  height: var(--size, 150px);
}
@keyframes fxMist {
  0%, 100% { transform: scale(0.8) translateX(0); opacity: 0.3; }
  50% { transform: scale(1.3) translateX(20px); opacity: 0.6; }
}

@media (max-width: 768px) {
  .wash-sim-viewport { height: 260px; }
  .wash-sim-car { width: 180px; }
  .wash-sim-tabs { gap: 6px; }
  .wash-tab { padding: 8px 14px; font-size: 0.75rem; }
  .wash-sim-actions { flex-direction: column; gap: 12px; }
}

/* ===== FEATURES GRID SECTION ===== */
.features-section {
  padding: 100px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.feature-icon {
  color: var(--yellow);
  margin-bottom: 16px;
}
.feature-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.feature-line {
  width: 40px;
  height: 2px;
  background: var(--yellow);
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--jet-dark);
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {
  padding: 16px;
}
.stat-item h3 {
  font-size: 3rem;
  color: var(--yellow);
  margin-bottom: 8px;
  font-weight: 800;
}
.stat-item p {
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
}

/* ===== WASH PACKAGE CARDS ===== */
.wash-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}
.wash-card {
  border-radius: 20px;
  overflow: visible;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  position: relative;
  display: flex;
  flex-direction: column;
  border: 3px solid rgba(255,255,255,0.15);
}
.wash-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.wash-card-blue {
  background: linear-gradient(160deg, #2a6dd6 0%, #1a4fa0 50%, #0e3878 100%);
}
.wash-card-orange {
  background: linear-gradient(160deg, #f5a623 0%, #e8920a 50%, #d07c00 100%);
}
.wash-card-red {
  background: linear-gradient(160deg, #e63946 0%, #d42d3a 50%, #b8202e 100%);
}
.wash-card-gray {
  background: linear-gradient(160deg, #8a8a8a 0%, #6b6b6b 50%, #4a4a4a 100%);
}
.wash-card-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  border-radius: 17px;
}
.wash-card-bubbles .bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.bubble.b1 { width: 80px; height: 80px; top: -20px; right: -10px; }
.bubble.b2 { width: 50px; height: 50px; top: 40px; right: 40px; }
.bubble.b3 { width: 30px; height: 30px; bottom: 60px; right: 10px; }
.bubble.b4 { width: 40px; height: 40px; bottom: 30px; left: -10px; }
.bubble.b5 { width: 20px; height: 20px; top: 100px; left: 15px; }
.wash-card-popular {
  border-color: var(--yellow);
  box-shadow: 0 0 30px rgba(247,201,72,0.2);
}
.wash-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: #1a1a2e;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 8px 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  z-index: 3;
  box-shadow: 0 3px 12px rgba(247,201,72,0.5);
  white-space: nowrap;
}
.wash-card-logo {
  text-align: center;
  padding: 20px 0 8px;
  position: relative;
  z-index: 1;
}
.wash-card-popular > .wash-card-header {
  padding-top: 28px;
}
.wash-card-logo img {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}
.wash-card-header {
  padding: 24px 20px 16px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.wash-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.05;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  white-space: nowrap;
}
.wash-card-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 0.72rem;
  font-style: italic;
  margin-top: 6px;
  line-height: 1.3;
}
.wash-card-body {
  padding: 16px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.wash-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex: 1;
}
.wash-card-features li {
  padding: 6px 0;
  font-size: 0.82rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.wash-card-features li:last-child {
  border-bottom: none;
}
.feature-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 5px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
}
.feature-included .feature-check {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #1a1a2e;
}
.feature-x {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 5px;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(255,255,255,0.25);
}
.feature-text {
  flex: 1;
  line-height: 1.3;
}
.feature-excluded {
  opacity: 0.35;
}
.feature-excluded .feature-text {
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.3);
}
.feature-expand {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: transparent !important;
  border: 1.5px solid rgba(255,255,255,0.5) !important;
  color: #fff !important;
  opacity: 0.7;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}
.feature-expand:hover {
  background: transparent !important;
  border-color: #fff !important;
  color: #fff !important;
  opacity: 1;
  transform: scale(1.1);
}
.feature-expand.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #1a1a2e;
  transform: rotate(45deg);
}
.feature-desc {
  display: none;
  padding: 8px 0 4px 28px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  font-style: italic;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.feature-desc.show {
  display: block;
  animation: fadeSlideDown 0.3s ease;
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.wash-card-premium {
  transform: scale(1.04);
  box-shadow: 0 0 40px rgba(42,109,214,0.3), 0 0 80px rgba(247,201,72,0.1);
}
.wash-card-premium:hover {
  transform: translateY(-10px) scale(1.06);
}
.wash-card-premium .wash-card-name {
  font-size: 2.4rem;
}
.wash-card-premium .wash-card-header {
  padding-bottom: 20px;
}
.wash-card-premium::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, #1a5fc9, #3a8ef5, #1a5fc9);
  z-index: -1;
  opacity: 0.6;
}
.wash-card-pricing {
  position: relative;
  z-index: 1;
  padding: 0 20px 16px;
}
.wash-price-hero {
  background: rgba(0,0,0,0.2);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}
.wash-price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.wash-price-main:hover {
  opacity: 0.85;
}
.wash-price-dollar {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  color: #fff;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.wash-price-per {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.wash-price-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 16px 0;
  position: relative;
}
.wash-price-divider::after {
  content: 'OR SAVE WITH';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.3);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  white-space: nowrap;
}
.wash-price-club-cta {
  display: block;
  background: var(--yellow);
  color: #1a1a2e;
  border-radius: 50px;
  padding: 10px 14px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(255,202,8,0.3);
}
.wash-price-club-cta:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 28px rgba(247,201,72,0.6), 0 0 16px rgba(247,201,72,0.3);
  background: #ffe066;
}
.wash-club-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(26,26,46,0.6);
  margin-bottom: 2px;
}
.wash-club-price {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  line-height: 1.1;
  color: #1a1a2e;
  white-space: nowrap;
}
.wash-club-mo {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
}
.wash-club-join {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1a1a2e;
  white-space: nowrap;
}
.wash-card-features-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 4px;
}
.wash-cards-footer {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.wash-cards-footer p {
  color: rgba(255,255,255,0.5);
  font-size: 0.92rem;
  max-width: 500px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
}
.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.85) 100%);
}
.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.cta-banner-content h2 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.cta-banner-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== STEPS ===== */
.steps-list {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
}
.step-item:hover {
  background: var(--gray-50);
  border-color: var(--gray-200);
}
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--jet-dark);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.step-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  font-weight: 700;
}
.step-item p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ===== CONTENT SPLIT ===== */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.content-split.reverse { direction: rtl; }
.content-split.reverse > * { direction: ltr; }
.content-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
}
.content-image:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}
.content-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.4,0,.2,1);
}
.content-image:hover img { transform: scale(1.06); }
.content-text h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.content-text p {
  color: var(--gray-500);
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.7;
}
.content-text .btn { margin-top: 12px; }

/* ===== LOCATION ROTATING EYEBROW ===== */
.loc-rotating-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  height: 22px;
  position: relative;
  overflow: hidden;
}
.loc-rotate-line {
  color: #5BBFEC;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.loc-rotate-text {
  position: absolute;
  left: 32px;
  top: 50%;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5BBFEC;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(100%);
  transition: none;
}
.loc-rotate-text.slide-in {
  opacity: 1;
  transform: translateY(-50%);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.loc-rotate-text.slide-out {
  opacity: 0;
  transform: translateY(-150%);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

/* ===== LOCATION ===== */
.loc-dark-section {
  background: var(--sky-blue-tint);
  padding: 100px 0 80px;
}
.loc-dark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.loc-dark-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  color: #1a1a1a;
  font-weight: 800;
  line-height: 1.0;
  margin-top: 12px;
  margin-bottom: 20px;
}
.loc-dark-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 420px;
}
.loc-info-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
}
.loc-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #1a1a2e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.loc-info-block strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.loc-info-block p {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.6;
}
.loc-dark-map {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  height: 400px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.loc-map-pin {
  position: absolute;
  top: 30%;
  left: 55%;
  transform: translate(-50%, -100%);
  filter: drop-shadow(0 4px 12px rgba(247,201,72,0.4));
  animation: pinBounce 2s ease-in-out infinite;
}
@keyframes pinBounce {
  0%, 100% { transform: translate(-50%, -100%); }
  50% { transform: translate(-50%, -108%); }
}
.loc-map-label {
  position: absolute;
  top: 48%;
  left: 55%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.95);
  color: #0a0a0a;
  padding: 12px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.loc-map-label strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 2px;
}
.loc-map-label span {
  font-size: 0.75rem;
  color: #555;
}
@media (max-width: 768px) {
  .loc-dark-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .loc-dark-map {
    height: 300px;
  }
}

/* ===== FORM SECTION ===== */
.form-section {
  background: var(--gray-50);
  padding: 100px 0;
}
.form-section.form-section-dark {
  background: var(--jet-dark);
}
.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
}
.form-section-dark .form-wrapper {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
}
.form-wrapper h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--jet-dark);
}
.form-section-dark .form-wrapper h3 {
  color: var(--white);
}
.form-wrapper p {
  text-align: center;
  color: var(--gray-500);
  margin-bottom: 32px;
  font-size: 0.95rem;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--gray-700);
}
.form-section-dark .form-group label {
  color: rgba(255,255,255,0.7);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
  color: var(--jet-dark);
}
.form-section-dark .form-group input,
.form-section-dark .form-group textarea,
.form-section-dark .form-group select {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}
.form-section-dark .form-group input::placeholder,
.form-section-dark .form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230,57,70,0.1);
}
.form-section-dark .form-group input:focus,
.form-section-dark .form-group textarea:focus,
.form-section-dark .form-group select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(247,201,72,0.15);
  background: rgba(255,255,255,0.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== CAREERS PAGE ===== */
.careers-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.careers-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.careers-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.careers-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(10,10,10,1) 100%);
}
.careers-hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  padding: 220px 0 100px;
  text-align: center;
}
.careers-hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  color: var(--white);
}
.careers-hero-accent {
  color: var(--yellow);
  font-style: italic;
}
.careers-hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 520px;
}

.careers-why {
  background: #fff;
  padding: 60px 0;
}
.careers-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.careers-why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-radius: 16px;
  background: #f8f9fa;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.careers-why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
  background: #fff;
}
.careers-why-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.careers-why-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--jet-black);
  letter-spacing: 0.01em;
}
.careers-why-item p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

.careers-apply {
  background: var(--jet-black);
  padding: 80px 0 100px;
}
.careers-form-wrapper {
  max-width: 700px;
  margin: 40px auto 0;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
}

@media (max-width: 768px) {
  .careers-hero {
    min-height: 0;
    display: block;
  }
  .careers-hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.8) 100%);
  }
  .careers-hero-content {
    padding: 140px 24px 60px;
    max-width: 100%;
  }
  .careers-hero-headline {
    font-size: 10vw;
    line-height: 1.05;
  }
  .careers-why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .careers-form-wrapper {
    padding: 24px 16px;
  }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  padding: 220px 0 100px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  background: var(--jet-black);
}
.page-hero .bg-image {
  position: absolute;
  inset: 0;
}
.page-hero .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.page-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.75) 100%);
}
.page-hero .bubble-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.page-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s cubic-bezier(.4,0,.2,1);
  color: var(--white);
  letter-spacing: -1px;
}
.page-hero-content h1 span {
  color: var(--yellow);
}
.page-hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto;
  animation: fadeInUp 1s cubic-bezier(.4,0,.2,1);
}

/* ===== WASH PACKAGES TABLE (wash-menu page) ===== */
.packages-comparison {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.packages-table {
  width: 100%;
  min-width: 800px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
}
.packages-table thead th {
  background: var(--jet-dark);
  color: var(--white);
  padding: 28px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.packages-table thead th:first-child {
  border-radius: var(--radius-lg) 0 0 0;
  text-align: left;
  background: var(--jet-charcoal);
}
.packages-table thead th:last-child {
  border-radius: 0 var(--radius-lg) 0 0;
}
.packages-table thead th .price {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 6px;
  color: var(--yellow);
}
.most-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.packages-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-100);
  text-align: center;
  vertical-align: middle;
  transition: var(--transition);
}
.packages-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--jet-dark);
}
.packages-table tbody tr:hover td {
  background: rgba(247,201,72,0.06);
}
.feature-name {
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-expand {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  background: transparent;
}
.feature-expand:hover {
  background: var(--jet-dark);
  color: var(--yellow);
  border-color: var(--jet-dark);
}
.feature-expand.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: rotate(45deg);
}
.feature-description {
  display: none;
  padding: 8px 0 0 36px;
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 400;
}
.feature-description.show {
  display: block;
  animation: fadeIn 0.3s ease;
}
.check-included {
  color: var(--success);
  font-size: 1.3rem;
  font-weight: 800;
}
.check-excluded {
  color: var(--gray-300);
  font-size: 1rem;
}
.packages-table tfoot td {
  padding: 24px 16px;
  text-align: center;
  background: var(--gray-50);
}
.packages-table tfoot td:first-child {
  border-radius: 0 0 0 var(--radius-lg);
}
.packages-table tfoot td:last-child {
  border-radius: 0 0 var(--radius-lg) 0;
}
.pkg-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.pkg-cta-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== FF CLUB ===== */
.ff-bar {
  background: var(--yellow);
  color: var(--jet-black);
  text-align: center;
  padding: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.ff-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.ff-benefit {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.ff-benefit:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}
.ff-benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--jet-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  transition: var(--transition);
}
.ff-benefit:hover .ff-benefit-icon {
  background: var(--yellow);
  border-color: var(--yellow);
}
.ff-benefit h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.ff-benefit p {
  color: var(--gray-500);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===== WASH BOOKS PAGE ===== */
.wb-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: visible;
  padding: 220px 32px 40px;
  margin-bottom: 0;
}
.wb-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.wb-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.6) 40%, rgba(10,10,10,0.95) 85%, #0a0a0a 100%);
  z-index: 1;
}
.wb-hero-fade {
  display: none;
}
.wb-wave-seamless {
  margin-top: -2px;
  position: relative;
  z-index: 1;
}
.wb-wave-seamless svg {
  display: block;
}
.wb-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.wb-hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4rem;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.1;
}
.wb-hero-tagline {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  line-height: 1.5;
  font-weight: 500;
}
.wb-hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.wb-value-strip {
  background: #fff;
  padding: 60px 0 40px;
}
.wb-value-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.wb-value-card {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  padding: 36px 28px 32px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wb-value-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  pointer-events: none;
}
.wb-value-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
.wb-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.wb-value-blue {
  background: linear-gradient(135deg, #5BBFEC, #3a9fd4);
  box-shadow: 0 8px 24px rgba(91,191,236,0.35);
}
.wb-value-yellow {
  background: linear-gradient(135deg, #FFCA08, #e6b500);
  box-shadow: 0 8px 24px rgba(255,202,8,0.35);
  color: #1a1a1a;
}
.wb-value-yellow h3, .wb-value-yellow p { color: #1a1a1a; }
.wb-value-red {
  background: linear-gradient(135deg, #E02C47, #c41e38);
  box-shadow: 0 8px 24px rgba(224,44,71,0.35);
}
.wb-value-icon-circle {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  backdrop-filter: blur(4px);
}
.wb-value-yellow .wb-value-icon-circle {
  background: rgba(0,0,0,0.1);
}
.wb-value-yellow .wb-value-icon-circle svg path,
.wb-value-yellow .wb-value-icon-circle svg circle {
  stroke: #1a1a1a;
  fill: rgba(0,0,0,0.1);
}
.wb-value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.wb-value-card p {
  font-size: 0.92rem;
  opacity: 0.9;
  line-height: 1.4;
}
.wb-cards-section {
  background: #fff;
  padding: 20px 0 80px;
}
.wb-section-header {
  text-align: center;
  margin-bottom: 40px;
}
.wb-section-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem;
  color: #0a0a0a;
  margin-bottom: 6px;
}
.wb-section-header p {
  font-size: 1rem;
  color: #888;
}
.wb-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.wb-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 20px 20px;
  border: 2px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wb-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.wb-card-premium {
  border-color: #5BBFEC;
  box-shadow: 0 8px 32px rgba(91,191,236,0.15);
}
.wb-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #5BBFEC;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  padding: 4px 18px;
  border-radius: 50px;
  white-space: nowrap;
}
.wb-card-washes {
  font-size: 0.72rem;
  font-weight: 700;
  color: #5BBFEC;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.wb-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  color: #0a0a0a;
  margin-bottom: 12px;
  line-height: 1.2;
}
.wb-card-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}
.wb-card-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1;
}
.wb-card-per-wash {
  font-size: 0.85rem;
  font-weight: 600;
  color: #888;
}
.wb-card-per-wash span {
  font-size: 0.72rem;
  font-weight: 400;
  color: #aaa;
}
.wb-card-savings {
  margin-bottom: 14px;
}
.wb-card-savings-tag {
  display: inline-block;
  background: #e8f8ee;
  color: #1a8c4e;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}
.wb-card-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  color: #5BBFEC;
  padding: 6px 0;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.wb-card-toggle:hover { color: #3aa8dc; }
.wb-card-toggle svg {
  transition: transform 0.3s ease;
}
.wb-card-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.wb-card-details {
  width: 100%;
  margin-bottom: 8px;
}
.wb-card-details ul {
  list-style: none;
  padding: 10px 0 6px;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wb-card-details li {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.45;
  padding-left: 18px;
  position: relative;
}
.wb-card-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5BBFEC;
  font-weight: 700;
}
.wb-card-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #5BBFEC;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  letter-spacing: 0.5px;
}
.wb-card-btn:hover {
  background: #3aa8dc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91,191,236,0.4);
}
.wb-compare {
  background: #0a0a0a;
  padding: 80px 0;
}
.wb-compare-inner {
  max-width: 800px;
  text-align: center;
}
.wb-compare-cta {
  margin-top: 32px;
  display: inline-block;
}
.wb-card-toggle:focus-visible,
.wb-compare-tier:focus-visible {
  outline: 2px solid #5BBFEC;
  outline-offset: 2px;
}
.wb-compare-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 36px;
}
.wb-compare-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.wb-compare-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 28px 32px;
  min-width: 240px;
  transition: all 0.4s ease;
}
.wb-compare-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.wb-compare-calc {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.wb-compare-calc span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}
.wb-compare-calc strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  transition: all 0.4s ease;
}
.wb-compare-without .wb-compare-calc strong {
  color: #E02C47;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
}
.wb-compare-with {
  border-color: #5BBFEC;
  background: rgba(91,191,236,0.1);
}
.wb-compare-with .wb-compare-calc strong {
  color: #5BBFEC;
}
.wb-compare-with h3 {
  color: #fff;
}
.wb-compare-save {
  margin-top: 12px;
  display: inline-block;
  background: #1a8c4e;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  padding: 4px 16px;
  border-radius: 50px;
  transition: all 0.4s ease;
}
.wb-compare-vs {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.3);
}
.wb-compare-switch {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.wb-compare-tier {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.wb-compare-tier:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.wb-compare-tier.active {
  background: #5BBFEC;
  border-color: #5BBFEC;
  color: #fff;
}
@media (max-width: 1024px) {
  .wb-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .wb-hero-headline { font-size: 2.8rem; }
  .wb-cards-grid { grid-template-columns: 1fr; max-width: 360px; }
  .wb-section-header h2 { font-size: 2rem; }
  .wb-compare-title { font-size: 1.8rem; }
  .wb-compare-cards { flex-direction: column; }
  .wb-compare-card { min-width: 100%; }
  .wb-value-grid { gap: 16px; }
  .wb-value-card { min-width: 180px; padding: 28px 20px 24px; }
}

/* ===== WASH CLUB PAGE ===== */
.wc-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--white);
}
.wc-hero-bg {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: brightness(1.05);
  animation: wcDrift 25s ease-in-out infinite alternate;
}
@keyframes wcDrift {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.015) translate(-0.3%, 0.2%); }
  100% { transform: scale(1.01) translate(0.2%, -0.15%); }
}
.wc-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(2,10,20,0.75) 0%, rgba(3,20,38,0.5) 40%, rgba(2,10,20,0.2) 70%, rgba(2,10,20,0.15) 100%);
  mix-blend-mode: multiply;
  z-index: 1;
}
.wc-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(0,0,0,0.45) 100%),
    linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.6) 85%, rgba(10,10,10,1) 100%);
  z-index: 2;
  pointer-events: none;
}
.wc-hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 220px 48px 100px 80px;
  max-width: 55%;
}
.wc-hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--white);
  animation: fadeInUp 0.6s 0.1s ease both;
}
.wc-hero-line2 {
  color: var(--yellow);
  display: block;
}
.wc-hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.35;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
  max-width: 700px;
  animation: fadeInUp 0.6s 0.15s ease both;
}
.wc-hero-divider {
  width: 60px;
  height: 3px;
  background: var(--yellow);
  margin-bottom: 20px;
  animation: fadeInUp 0.6s 0.2s ease both;
}
.wc-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s 0.25s ease both;
}
.wc-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.3s ease both;
}
.wc-btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 0.95rem 2.2rem;
  border-radius: 50px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.wc-btn-blue {
  background: #5BBFEC;
  color: var(--white);
  padding: 0.95rem 2.2rem;
  border-radius: 50px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 6px 24px rgba(26,123,189,0.35);
}
.wc-btn-blue:hover {
  background: #155f94;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(26,123,189,0.5);
}
.wc-btn-blue-on-blue {
  background: var(--white);
  color: #5BBFEC;
  box-shadow: 0 6px 24px rgba(255,255,255,0.2);
}
.wc-btn-blue-on-blue:hover {
  background: #f0f8ff;
  color: #155f94;
  box-shadow: 0 10px 32px rgba(255,255,255,0.3);
}
.wc-section-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.wc-btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,34,26,0.4);
}
.wc-btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.95rem 2.2rem;
  border-radius: 50px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}
.wc-btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.wc-hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2.5rem;
  max-width: 750px;
  margin: 0 auto;
}
.wc-hero-stat {
  flex: 1;
  min-width: 150px;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.wc-hero-stat:last-child {
  border-right: none;
}
.wc-stat-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.wc-stat-lbl {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.wc-problem-strip {
  background: var(--blue);
  color: var(--white);
  padding: 3.5rem 2rem;
  text-align: center;
}
.wc-problem-strip p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-style: normal;
}
.wc-problem-strip strong {
  font-weight: 700;
}

.wc-section {
  padding: 5rem 2rem;
}
.wc-section.gray {
  background: var(--gray-50);
}
.wc-section.dark {
  background: var(--jet-black);
  color: var(--white);
}
.wc-section.sky {
  background: var(--sky-blue-tint);
}
.wc-section.yellow-bg {
  background: var(--yellow);
}
.wc-wrap {
  max-width: 1080px;
  margin: 0 auto;
}
.wc-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  display: block;
}
.wc-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--jet-dark);
}
.wc-section-body {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 560px;
}
.wc-section-header {
  margin-bottom: 3rem;
}
.wc-section-header.center {
  text-align: center;
}
.wc-section-header.center .wc-section-body {
  margin: 0 auto;
}

.wc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.wc-benefit-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem 2rem 2rem 2.25rem;
  transition: var(--transition);
  border-left: 5px solid transparent;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}
.wc-benefit-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-radius: 0 0 0 80px;
  opacity: 0.06;
  transition: var(--transition);
}
.wc-benefit-card.color-blue { border-left-color: #5BBFEC; }
.wc-benefit-card.color-yellow { border-left-color: var(--yellow); }
.wc-benefit-card.color-red { border-left-color: var(--red); }
.wc-benefit-card.color-blue::after { background: #5BBFEC; }
.wc-benefit-card.color-yellow::after { background: var(--yellow); }
.wc-benefit-card.color-red::after { background: var(--red); }
.wc-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}
.wc-benefit-card:hover::after {
  opacity: 0.12;
  width: 120px;
  height: 120px;
}
.wc-benefit-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.wc-benefit-icon-wrap svg {
  width: 24px;
  height: 24px;
}
.wc-benefit-card.color-blue .wc-benefit-icon-wrap {
  background: #e8f5fc;
  color: #5BBFEC;
}
.wc-benefit-card.color-yellow .wc-benefit-icon-wrap {
  background: #fff7d6;
  color: #c9a200;
}
.wc-benefit-card.color-red .wc-benefit-icon-wrap {
  background: #fde2e6;
  color: var(--red);
}
.wc-benefit-card:hover .wc-benefit-icon-wrap {
  transform: scale(1.1) rotate(-3deg);
}
.wc-benefit-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--jet-dark);
}
.wc-benefit-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.wc-hiw-section {
  background: #ffffff;
  padding: 5rem 2rem 6rem;
}
.wc-hiw-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
}
.wc-hiw-connector {
  position: absolute;
  top: 40px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 3px;
  background: linear-gradient(90deg, var(--sky-blue), var(--yellow), var(--red), var(--sky-blue));
  border-radius: 3px;
  z-index: 0;
}
.wc-hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}
.wc-hiw-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--jet-black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.wc-hiw-step:nth-child(2) .wc-hiw-number { background: #5BBFEC; }
.wc-hiw-step:nth-child(3) .wc-hiw-number { background: var(--yellow); }
.wc-hiw-step:nth-child(4) .wc-hiw-number { background: var(--red); }
.wc-hiw-step:nth-child(5) .wc-hiw-number { background: var(--jet-black); }
.wc-hiw-number span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 0.02em;
}
.wc-hiw-step:nth-child(3) .wc-hiw-number span { color: var(--jet-black); }
.wc-hiw-step:hover .wc-hiw-number {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.wc-hiw-content {
  max-width: 240px;
}
.wc-hiw-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  background: var(--sky-blue-tint);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-blue);
}
.wc-hiw-step:nth-child(3) .wc-hiw-icon { background: #fff7d6; color: #c9a200; }
.wc-hiw-step:nth-child(4) .wc-hiw-icon { background: #fde2e6; color: var(--red); }
.wc-hiw-step:nth-child(5) .wc-hiw-icon { background: #e8e8e8; color: var(--jet-dark); }
.wc-hiw-icon svg {
  width: 22px;
  height: 22px;
}
.wc-hiw-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--jet-dark);
  margin-bottom: 0.6rem;
}
.wc-hiw-content p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
}
@media (max-width: 768px) {
  .wc-hiw-timeline {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .wc-hiw-connector {
    display: none;
  }
  .wc-hiw-step {
    flex-direction: row;
    text-align: left;
    gap: 1.25rem;
    padding: 0;
  }
  .wc-hiw-number {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .wc-hiw-number span {
    font-size: 1.3rem;
  }
  .wc-hiw-icon {
    display: none;
  }
}

.wc-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  align-items: end;
}
.wc-plan-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem 2.25rem;
  position: relative;
  transition: var(--transition);
}
.wc-plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.wc-plan-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red), 0 12px 40px rgba(232,34,26,0.15);
  transform: scale(1.03);
}
.wc-plan-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}
.wc-plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.35rem 1.2rem;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}
.wc-plan-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
  color: var(--jet-dark);
}
.wc-plan-tagline {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}
.wc-plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.wc-plan-price .amt {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--jet-dark);
}
.wc-plan-price .per {
  font-size: 0.88rem;
  color: var(--gray-500);
}
.wc-plan-features {
  list-style: none;
  margin-bottom: 1.75rem;
}
.wc-plan-features li {
  font-size: 0.88rem;
  color: var(--gray-700);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  line-height: 1.45;
}
.wc-plan-features li:last-child {
  border-bottom: none;
}
.wc-plan-features .ck {
  color: var(--blue);
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 0.05rem;
}
.wc-plan-features .base {
  color: var(--gray-400);
  font-size: 0.83rem;
}
.wc-plan-btn {
  display: block;
  text-align: center;
  background: var(--red);
  color: var(--white);
  padding: 0.85rem;
  border-radius: 50px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: var(--transition);
}
.wc-plan-btn:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,34,26,0.3);
}
.wc-plan-card:not(.featured) .wc-plan-btn {
  background: var(--gray-50);
  color: var(--jet-dark);
  border: 1.5px solid var(--gray-200);
}
.wc-plan-card:not(.featured) .wc-plan-btn:hover {
  background: var(--sky-blue-tint);
  color: var(--blue);
  border-color: var(--blue);
}

.wc-guarantee-outer {
  background: #ffffff;
  padding: 4rem 2rem;
}
.wc-guarantee-section {
  background: var(--jet-black);
  padding: 4rem 3rem;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
}
.wc-guarantee-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.wc-guarantee-left {
  flex: 1;
  max-width: 550px;
}
.wc-guarantee-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.wc-guarantee-headline .text-yellow {
  color: var(--yellow);
}
.wc-guarantee-body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 480px;
}
.wc-guarantee-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wc-guarantee-seal {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 12px rgba(255,202,8,0.2), 0 0 60px rgba(255,202,8,0.15);
}
.wc-seal-ring {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.wc-seal-top {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(0,0,0,0.5);
}
.wc-seal-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--jet-black);
}
.wc-seal-bottom {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(0,0,0,0.5);
}

.wc-terms-section-wrap {
  background: #ffffff;
  padding: 3rem 2rem 5rem;
  text-align: center;
}
.wc-terms-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--jet-dark);
  margin-bottom: 2rem;
}
.wc-terms-heading .text-blue {
  color: var(--blue);
  font-style: italic;
}
.wc-terms-dropdown {
  max-width: 700px;
  margin: 0 auto;
}
.wc-terms-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: var(--jet-black);
  color: var(--white);
  border: none;
  padding: 18px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 0;
}
.wc-terms-toggle:hover {
  background: #1a1a1a;
}
.wc-terms-toggle svg {
  flex-shrink: 0;
  transition: transform 0.3s;
}
.wc-terms-toggle[aria-expanded="true"] .wc-terms-plus-v {
  opacity: 0;
  transition: opacity 0.3s;
}
.wc-terms-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: none;
}
.wc-terms-content.open {
  max-height: 1200px;
}
.wc-terms-inner {
  padding: 2rem 2.5rem;
  text-align: left;
}
.wc-terms-inner h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin: 1.5rem 0 0.5rem;
}
.wc-terms-inner h4:first-child {
  margin-top: 0;
}
.wc-terms-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wc-terms-inner ul li {
  font-size: 0.88rem;
  color: var(--gray-500);
  padding: 0.35rem 0 0.35rem 1.2rem;
  position: relative;
  line-height: 1.6;
  border-bottom: 1px solid var(--gray-100);
}
.wc-terms-inner ul li:last-child {
  border-bottom: none;
}
.wc-terms-inner ul li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 0.8rem;
  top: 0.4rem;
}

.wc-cta-section {
  background: linear-gradient(180deg, #5BBFEC 0%, #3a9fd4 60%, #2b8bc2 100%);
  color: var(--white);
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.wc-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 30% 0%, rgba(255,255,255,0.15), transparent 60%),
              radial-gradient(ellipse 50% 60% at 80% 100%, rgba(255,202,8,0.15), transparent 50%);
  pointer-events: none;
}
.wc-cta-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.wc-cta-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.wc-cta-bubble.b1 { width: 60px; height: 60px; top: 15%; left: 8%; animation: floatBubble 6s ease-in-out infinite; }
.wc-cta-bubble.b2 { width: 40px; height: 40px; top: 60%; left: 5%; animation: floatBubble 8s ease-in-out infinite 1s; }
.wc-cta-bubble.b3 { width: 80px; height: 80px; top: 20%; right: 10%; animation: floatBubble 7s ease-in-out infinite 0.5s; }
.wc-cta-bubble.b4 { width: 30px; height: 30px; top: 70%; right: 15%; animation: floatBubble 5s ease-in-out infinite 2s; }
.wc-cta-bubble.b5 { width: 50px; height: 50px; bottom: 10%; left: 20%; animation: floatBubble 9s ease-in-out infinite 1.5s; }
.wc-cta-bubble.b6 { width: 25px; height: 25px; top: 40%; right: 25%; animation: floatBubble 6s ease-in-out infinite 3s; }
@keyframes floatBubble {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-15px) scale(1.08); opacity: 1; }
}
.wc-cta-inner {
  position: relative;
  z-index: 1;
}
.wc-cta-eyebrow {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.wc-cta-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  position: relative;
}
.text-blue-inline {
  color: var(--yellow);
}
.wc-cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  position: relative;
}
.wc-cta-section .wc-btn-primary {
  background: var(--yellow);
  color: var(--jet-black);
  font-weight: 800;
  box-shadow: 0 6px 24px rgba(255,202,8,0.4);
}
.wc-cta-section .wc-btn-primary:hover {
  background: #ffe04a;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,202,8,0.5);
}
.wc-cta-cancel {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
  margin-bottom: 0;
}

.wc-diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 2rem;
}

@media (max-width: 768px) {
  .wc-hero {
    min-height: 0 !important;
    height: auto !important;
    display: block !important;
  }
  .wc-hero-bg {
    background-position: 80% center !important;
  }
  .wc-hero-content {
    position: relative;
    z-index: 10;
    padding: 140px 24px 60px !important;
    max-width: 100% !important;
    flex: none !important;
  }
  .wc-hero .eyebrow {
    font-size: 0.9rem !important;
    margin-bottom: 10px !important;
  }
  .wc-hero-headline {
    font-size: 14vw !important;
    line-height: 1.05 !important;
    margin-bottom: 16px !important;
  }
  .wc-hero-tagline {
    font-size: 1.2rem !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
  }
  .wc-hero-divider {
    margin: 8px 0 !important;
  }
  .wc-hero-sub {
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
  }
  .wc-hero-actions .wc-btn-blue {
    font-size: 1.05rem !important;
    padding: 16px 36px !important;
  }
  .wc-hero-stats {
    position: relative;
    z-index: 10;
    padding: 16px 12px !important;
    margin-top: 0 !important;
  }
  .wc-hero-stat { min-width: 0; padding: 0 0.6rem; flex: 1; }
  .wc-plan-card.featured { transform: scale(1); }
  .wc-plan-card.featured:hover { transform: translateY(-4px); }
  .wc-guarantee-layout { flex-direction: column; text-align: center; }
  .wc-guarantee-body { margin: 0 auto; }
  .wc-guarantee-seal { width: 150px; height: 150px; }
  .wc-seal-ring { width: 120px; height: 120px; }
  .wc-seal-main { font-size: 2.2rem; }
  .wc-section { padding: 3.5rem 1.5rem; }
}

/* ===== MARQUEE (kept for other pages) ===== */
.marquee-bar {
  background: var(--red);
  color: var(--white);
  overflow: hidden;
  padding: 12px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 25s linear infinite;
}
.marquee-inner span { padding: 0 40px; }

/* ===== WAVE DIVIDER ===== */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
  margin-bottom: -1px;
  z-index: 5;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 100px;
  filter: drop-shadow(0 0 0 transparent);
}
.wave-divider-flip svg {
  transform: scaleY(-1);
}

/* ===== BUBBLE EFFECTS ===== */
.bubble-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.bubble {
  position: absolute;
  bottom: -20px;
  border-radius: 50%;
  background: rgba(247,201,72,0.1);
  border: 1px solid rgba(247,201,72,0.15);
  animation: bubbleFloat linear infinite;
}

/* ===== PRIVACY POLICY ===== */
.privacy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 70px 24px;
}
.privacy-content h2 {
  font-size: 1.8rem;
  margin: 40px 0 16px;
}
.privacy-content h3 {
  font-size: 1.3rem;
  color: var(--gray-700);
  margin: 30px 0 12px;
}
.privacy-content p {
  color: var(--gray-600);
  margin-bottom: 14px;
}
.privacy-content ul {
  margin: 14px 0;
  padding-left: 24px;
}
.privacy-content li {
  color: var(--gray-600);
  margin-bottom: 8px;
  list-style: disc;
}

/* ===== CONVEYOR CALLOUT (other pages) ===== */
.conveyor-callout {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.conveyor-callout .bg-image {
  position: absolute;
  inset: 0;
}
.conveyor-callout .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.conveyor-callout .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.65) 50%, rgba(10,10,10,0.8) 100%);
}
.conveyor-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.conveyor-content h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.conveyor-content p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.7);
}

/* ===== LIFESTYLE SECTION ===== */
.lifestyle-section {
  padding: 100px 0;
  background: var(--sky-blue);
}
.lifestyle-section {
  background: var(--sky-blue);
}
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.lifestyle-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.lifestyle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}
.lifestyle-card-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.lifestyle-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}
.lifestyle-card:hover .lifestyle-card-img img {
  transform: scale(1.06);
}
.lifestyle-card-text {
  padding: 28px 24px;
}
.lifestyle-card-text h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.lifestyle-card-text p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.65;
}


/* ===== FREQUENT FLYER CLUB SECTION ===== */
.ffc-section {
  background: #FFCA08;
  padding: 100px 0 80px;
}
.ffc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ffc-left {}
.ffc-right {}
.ffc-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.6rem;
  line-height: 1.0;
  color: #000000;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.ffc-sub {
  color: rgba(0,0,0,0.6);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 440px;
}
.ffc-perks-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.ffc-perk-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(0,0,0,0.08);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(0,0,0,0.7);
}
.ffc-calc {
  margin-top: 8px;
}
.ffc-tier-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.ffc-tier-btn {
  padding: 10px 18px;
  border-radius: 50px;
  border: 2px solid rgba(0,0,0,0.15);
  background: transparent;
  color: rgba(0,0,0,0.7);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ffc-tier-btn:hover {
  border-color: rgba(0,0,0,0.4);
  background: rgba(0,0,0,0.05);
}
.ffc-tier-btn.active {
  background: #1a1a1a;
  color: #FFCA08;
  border-color: #1a1a1a;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.ffc-slider-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.ffc-slider-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(0,0,0,0.6);
  white-space: nowrap;
}
.ffc-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 4px;
  background: rgba(0,0,0,0.1);
  outline: none;
  cursor: pointer;
}
.ffc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 3px solid #FFCA08;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}
.ffc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.ffc-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 3px solid #FFCA08;
  cursor: pointer;
}
.ffc-slider-value {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #FFCA08;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ffc-savings-display {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.ffc-savings-col {
  flex: 1;
  text-align: center;
  padding: 14px;
  border-radius: 16px;
  background: rgba(0,0,0,0.06);
}
.ffc-savings-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.45);
  margin-bottom: 4px;
}
.ffc-savings-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}
.ffc-amount-old {
  color: rgba(0,0,0,0.3);
  text-decoration: line-through;
  text-decoration-color: #e8221a;
}
.ffc-amount-club {
  color: #1a1a1a;
}
.ffc-savings-per {
  font-size: 0.72rem;
  color: rgba(0,0,0,0.45);
  font-weight: 600;
  margin-top: 2px;
}
.ffc-savings-vs {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  color: rgba(0,0,0,0.25);
}
.ffc-savings-banner {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s ease;
}
.ffc-savings-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.ffc-savings-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  color: #22c55e;
  line-height: 1;
  transition: all 0.3s ease;
}
.ffc-savings-freq {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}
@media (max-width: 768px) {
  .ffc-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ffc-headline {
    font-size: 2.6rem;
  }
}

/* ===== DIFFERENCE SECTION ===== */
.difference-section {
  padding: 100px 0;
}
.difference-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.difference-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: var(--transition);
}
.difference-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}
.difference-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--red);
  transition: var(--transition);
}
.difference-card:hover .difference-icon {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.difference-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--jet-dark);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.difference-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 12px;
}
.difference-desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== SECTION COLOR VARIANTS ===== */
.section-navy {
  background: var(--blue);
}
.wash-packages-section {
  background: #0d1117;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.wash-packages-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.wash-packages-header .eyebrow {
  color: var(--blue);
}
.wash-packages-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.2rem;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.wash-packages-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}
.section-yellow {
  background: var(--yellow);
}
.section-yellow h2,
.section-yellow p,
.section-yellow .content-text p { color: var(--jet-dark); }
.section-yellow .content-text p[style] { color: var(--jet-dark) !important; opacity: 1 !important; }
.form-section.form-section-navy {
  background: var(--blue);
}

/* ===== PLAYFUL ANIMATIONS ===== */
@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { opacity: 1; transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes wobble {
  0% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-5px) rotate(-2deg); }
  50% { transform: translateY(0) rotate(0deg); }
  75% { transform: translateY(-3px) rotate(2deg); }
  100% { transform: translateY(0) rotate(0deg); }
}
@keyframes bobFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.difference-card:hover { animation: wobble 0.6s ease; }
.lifestyle-card:hover { animation: wobble 0.6s ease; }

/* ===== CARTOON BUBBLES ===== */
.cartoon-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.cartoon-bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}
.cartoon-bubble-1 {
  width: 80px;
  height: 80px;
  background: var(--yellow);
  top: 20%;
  left: 5%;
  animation: bobFloat 4s ease-in-out infinite;
}
.cartoon-bubble-2 {
  width: 50px;
  height: 50px;
  background: var(--red);
  top: 60%;
  right: 8%;
  animation: bobFloat 5s ease-in-out infinite 1s;
}
.cartoon-bubble-3 {
  width: 35px;
  height: 35px;
  background: var(--blue);
  bottom: 15%;
  left: 15%;
  animation: bobFloat 3.5s ease-in-out infinite 0.5s;
}
.cartoon-bubble-4 {
  width: 60px;
  height: 60px;
  background: var(--yellow);
  top: 30%;
  right: 12%;
  animation: bobFloat 4.5s ease-in-out infinite 0.8s;
}

/* ===== COLORFUL DIFFERENCE ICONS ===== */
.difference-card:nth-child(1) .difference-icon { background: var(--red); color: var(--white); border-color: var(--red); }
.difference-card:nth-child(2) .difference-icon { background: var(--yellow); color: var(--jet-dark); border-color: var(--yellow); }
.difference-card:nth-child(3) .difference-icon { background: var(--blue); color: var(--white); border-color: var(--blue); }
.difference-card:nth-child(4) .difference-icon { background: var(--red); color: var(--white); border-color: var(--red); }
.difference-card:nth-child(5) .difference-icon { background: var(--yellow); color: var(--jet-dark); border-color: var(--yellow); }

/* ===== CARTOON ROUNDED CORNERS ===== */
.lifestyle-card { border-radius: var(--radius-xl); }
.wash-card { border-radius: 20px; }
.difference-card { border-radius: var(--radius-xl); }
.btn { border-radius: 50px; }
.btn-lg { border-radius: 50px; }

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1024px) {
  .difference-grid { grid-template-columns: repeat(3, 1fr); }
  .lifestyle-grid { grid-template-columns: repeat(2, 1fr); }
  .wash-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .difference-grid { grid-template-columns: repeat(2, 1fr); }
  .lifestyle-grid { grid-template-columns: 1fr; }
  .wave-divider svg { height: 60px; }
  .ps-trio {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ps-card { padding: 28px 24px; }
  .ps-arrow-connector {
    padding: 8px 0;
  }
  .ps-arrow-connector svg {
    transform: rotate(90deg);
  }
  @keyframes pulseArrow {
    0%, 100% { transform: rotate(90deg) scale(1); }
    50% { transform: rotate(90deg) scale(1.1); }
  }
  .ps-title { font-size: 2rem; }
  .solution-cta { width: 100%; justify-content: center; }
  .problem-split { grid-template-columns: 1fr; gap: 40px; }
  .problem-text-col { order: -1; }
  .problem-slider-col { order: 1; }
  .problem-headline { font-size: 2.6rem; }
  .problem-headline br,
  .amenities-headline br,
  .ffc-headline br { display: none; }
  .steps-dark-grid { grid-template-columns: 1fr; gap: 24px; }
  .problem-dark-title { font-size: 2.2rem; }
}
@media (max-width: 480px) {
  .difference-grid { grid-template-columns: 1fr; }
  .wave-divider svg { height: 40px; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--jet-black);
  color: rgba(255,255,255,0.5);
  padding: 48px 0 32px;
  border-top: none;
  text-align: center;
}
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 0;
  margin-bottom: 28px;
}
.footer-nav a {
  color: rgba(255,255,255,0.85);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  padding: 4px 16px;
  transition: var(--transition);
}
.footer-nav a:hover {
  color: var(--yellow);
}
.footer-dot {
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}
.footer-divider {
  width: 100%;
  max-width: 700px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 28px;
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}
.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--yellow);
  color: #0a0a0a;
  transition: var(--transition);
}
.footer-social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,202,8,0.4);
}
.footer-bottom {
  text-align: center;
  font-size: 0.82rem;
}
.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  transition: var(--transition);
}
.footer-bottom a:hover {
  color: var(--yellow);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .wash-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .content-split { grid-template-columns: 1fr; gap: 36px; }
  .content-split.reverse { direction: ltr; }
  .location-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--jet-black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 32px 40px;
    gap: 0;
    transition: right 0.4s cubic-bezier(.4,0,.2,1);
    z-index: 9998;
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-dropdown {
    width: 100%;
    text-align: center;
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255,255,255,0.05);
    border: none;
    box-shadow: none;
    border-radius: 12px;
    padding: 8px 0;
    margin: 4px auto 8px;
    min-width: auto;
    max-width: 280px;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }
  .nav-dropdown-toggle svg {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  .nav-dropdown.open .nav-dropdown-toggle svg {
    transform: rotate(180deg);
  }
  .nav-links > a,
  .nav-dropdown-toggle {
    width: 100%;
    padding: 16px 0;
    font-size: 1.15rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: var(--white);
  }
  .nav-dropdown-menu a {
    padding: 12px 20px;
    font-size: 0.95rem;
    text-align: center;
    color: rgba(255,255,255,0.7);
  }
  .nav-dropdown-menu a:hover {
    color: var(--yellow);
    background: rgba(255,255,255,0.05);
  }
  .nav-cta {
    margin-top: 20px;
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  .mobile-toggle { display: flex; }
  .section { padding: 72px 0; }
  .section-title { font-size: 2.4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .wash-cards-grid { grid-template-columns: 1fr; }
  .wash-card-premium { transform: none; }
  .wash-card-premium:hover { transform: translateY(-10px); }
  .wash-card-premium::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrapper { padding: 32px 24px; }
  .page-hero-content h1 { font-size: 2.4rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-item h3 { font-size: 2rem; }
  .cta-banner { padding: 80px 0; }
  .cta-banner-content h2 { font-size: 2.4rem; }
}

@media (max-width: 480px) {
  .btn { padding: 12px 24px; font-size: 0.88rem; }
  .btn-lg { padding: 14px 28px; font-size: 0.92rem; }
  .section-title { font-size: 2.2rem; }
}

/* ===== CUSTOM MASCOT CURSOR ===== */
.has-custom-cursor,
.has-custom-cursor * {
  cursor: none !important;
}

.custom-cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  pointer-events: none;
  z-index: 100000;
  transform: translate(-50%, -50%);
  background-image: url('/images/mascot-cursor.png');
  background-size: contain;
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  opacity: 0;
  transition: width 0.2s ease, height 0.2s ease, opacity 0.15s ease;
  will-change: left, top;
}
.custom-cursor.active {
  opacity: 1;
}
.custom-cursor.hovering {
  animation: cursorWiggle 0.4s ease;
  background-image: url('/images/mascot-cursor-pointer.png');
  width: 48px;
  height: 48px;
}
@keyframes cursorWiggle {
  0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  20% { transform: translate(-50%, -50%) rotate(-15deg) scale(1.2); }
  40% { transform: translate(-50%, -50%) rotate(10deg) scale(1.15); }
  60% { transform: translate(-50%, -50%) rotate(-8deg) scale(1.1); }
  80% { transform: translate(-50%, -50%) rotate(5deg) scale(1.05); }
  100% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
}
.custom-cursor.clicking {
  animation: cursorBounce 0.3s ease;
}
@keyframes cursorBounce {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(0.7); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

@media (pointer: coarse) {
  .custom-cursor { display: none !important; }
  .has-custom-cursor, .has-custom-cursor * { cursor: auto !important; }
}

.faq-dark-section {
  background: var(--gray-50);
  padding: 60px 0 50px;
}
.faq-header {
  text-align: center;
  margin-bottom: 32px;
}
.faq-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  color: #1a1a1a;
  font-weight: 800;
  line-height: 1.0;
  margin-top: 12px;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  transition: color 0.2s ease;
}
.faq-question:hover {
  color: var(--blue);
}
.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--blue);
  color: var(--blue);
}
.faq-item.open .faq-question span:first-child {
  color: var(--blue);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 200px;
}
.faq-answer p {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
  padding-bottom: 24px;
  margin: 0;
}

.final-cta-section {
  background: url('/images/final-cta-bg.webp') center center / cover no-repeat;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.9) 10%, rgba(0,0,0,0.9) 35%, rgba(0,0,0,0.9) 60%, rgba(0,0,0,0.9) 85%, rgba(0,0,0,0.9) 100%);
  pointer-events: none;
}
.final-cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
  z-index: 1;
}
.final-cta-section .final-cta-grain {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}
.final-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.final-cta-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 6.5vw, 5rem);
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  margin-top: 16px;
  margin-bottom: 24px;
}
.final-cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.section-cta {
  text-align: center;
  margin-top: 48px;
}
.section-cta-hint {
  font-size: 1rem;
  color: rgba(10,10,10,0.5);
  margin-bottom: 16px;
}
.btn-inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 40px;
  background: #e8221a;
  color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.15em;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s ease;
  box-shadow: 0 6px 30px rgba(232,34,26,0.3);
}
.btn-inline-cta:hover {
  background: #c41810;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(232,34,26,0.45);
}
.ffc-section .section-cta-hint {
  color: rgba(0,0,0,0.5);
}
.btn-final-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 40px;
  background: #e8221a;
  color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.15em;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s ease;
  box-shadow: 0 6px 30px rgba(232,34,26,0.3);
}
.btn-final-primary:hover {
  background: #c41810;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(232,34,26,0.45);
}
.ffc-section .btn-final-primary {
  background: #0a0a0a;
  color: #ffffff;
  box-shadow: 0 6px 30px rgba(0,0,0,0.2);
}
.ffc-section .btn-final-primary:hover {
  background: #1a1a1a;
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}
.btn-final-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 40px;
  background: transparent;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.15em;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.5);
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.btn-final-outline:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .final-cta-section {
    padding: 80px 0 70px;
  }
  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.your-choice-section {
  background: #ffffff;
  padding: 100px 0 80px;
}
.yc-header {
  text-align: center;
  margin-bottom: 60px;
}
.yc-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: #1a1a1a;
  font-weight: 800;
  line-height: 1.0;
  margin-top: 12px;
}
.yc-highlight {
  color: var(--blue);
  font-style: italic;
}
.yc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.yc-card {
  border-radius: 20px;
  padding: 44px 40px;
}
.yc-card-without {
  background: #f5f5f5;
  border: 1px solid rgba(0,0,0,0.06);
}
.yc-card-with {
  background: #0a0a0a;
  border: 1px solid rgba(255,202,8,0.2);
}
.yc-card-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.yc-label-without {
  color: var(--gray-400);
}
.yc-label-with {
  color: #FFCA08;
}
.yc-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 28px;
}
.yc-card-without .yc-card-title {
  color: #1a1a1a;
}
.yc-card-with .yc-card-title {
  color: #ffffff;
}
.yc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.yc-list li {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.yc-list-without li {
  color: var(--gray-500);
}
.yc-list-with li {
  color: rgba(255,255,255,0.85);
}
.yc-dash {
  color: var(--gray-300);
  font-weight: 600;
  flex-shrink: 0;
}
.yc-arrow {
  color: #FFCA08;
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .yc-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .yc-card {
    padding: 32px 28px;
  }
  .your-choice-section {
    padding: 70px 0 60px;
  }
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-mobile-cta.visible {
  transform: translateY(0);
}
.sticky-mobile-cta a {
  display: block;
  text-align: center;
  background: #e8221a;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(232,34,26,0.4);
  position: relative;
  overflow: hidden;
}
.sticky-mobile-cta a::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: btnShine 3s ease-in-out infinite;
  pointer-events: none;
}
@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: block;
  }
}

/* ===== ADA ACCESSIBILITY WIDGET ===== */
.ada-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 10000;
  font-family: 'Inter', sans-serif;
}
.ada-toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1a1a2e;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ada-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(0,0,0,0.4);
}
.ada-toggle svg {
  width: 24px;
  height: 24px;
}
.ada-panel {
  position: absolute;
  bottom: 62px;
  left: 0;
  width: 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transition: all 0.25s ease;
  overflow: hidden;
}
.ada-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.ada-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #1a1a2e;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}
.ada-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}
.ada-close:hover {
  color: #fff;
}
.ada-options {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ada-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: none;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease;
  text-align: left;
  width: 100%;
  font-family: 'Inter', sans-serif;
}
.ada-option:hover {
  background: #f0f4f8;
}
.ada-option.active {
  background: #e8f4fd;
}
.ada-option.active .ada-option-icon {
  background: var(--sky-blue);
  color: #fff;
}
.ada-option-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 8px;
  background: #f0f4f8;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  transition: all 0.15s ease;
}
.ada-option-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a2e;
}
.ada-reset {
  border-top: 1px solid #eee;
  margin-top: 4px;
  padding-top: 12px;
}
.ada-reset .ada-option-icon {
  background: #fee2e2;
  color: #e8221a;
}
.ada-reset:hover .ada-option-icon {
  background: #e8221a;
  color: #fff;
}
@media (max-width: 768px) {
  .ada-widget {
    bottom: 80px;
  }
  .ada-toggle {
    width: 44px;
    height: 44px;
  }
  .ada-toggle svg {
    width: 20px;
    height: 20px;
  }
  .ada-panel {
    width: 240px;
  }
}

/* ADA global states */
html.ada-high-contrast {
  filter: contrast(1.4);
}
html.ada-grayscale {
  filter: grayscale(1);
}
html.ada-high-contrast.ada-grayscale {
  filter: contrast(1.4) grayscale(1);
}
html.ada-highlight-links a {
  outline: 2px solid #FFCA08 !important;
  outline-offset: 2px;
  text-decoration: underline !important;
}
html.ada-readable-font * {
  font-family: Arial, Helvetica, sans-serif !important;
  letter-spacing: 0.03em !important;
  word-spacing: 0.1em !important;
}
html.ada-pause-animations *,
html.ada-pause-animations *::before,
html.ada-pause-animations *::after {
  animation-play-state: paused !important;
  transition: none !important;
}

/* ===== LOCATION PAGE RESPONSIVE ===== */
@media (max-width: 900px) {
  #loc-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  #loc-hero-grid > div:last-child {
    height: 350px !important;
  }
  .loc-timeline-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .loc-timeline-line {
    display: none;
  }
  .loc-action-grid {
    grid-template-columns: 1fr !important;
  }
  .loc-info-tile {
    border-right: none !important;
  }
}
@media (max-width: 600px) {
  #loc-hero-grid > div:last-child {
    height: 280px !important;
  }
  .loc-timeline-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
  }
  .loc-step-circle {
    width: 70px !important;
    height: 70px !important;
  }
  .loc-step-circle .loc-num {
    font-size: 1.5rem !important;
  }
}

/* ===== FREE WASH PAGE RESPONSIVE ===== */
@media (max-width: 600px) {
  section div[style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  section div[style*="padding: 45px 40px"] {
    padding: 30px 20px !important;
  }
}

/* ===== CONTACT PAGE FAQ ACCORDION ===== */
.contact-faq-card .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.contact-faq-card.faq-open .faq-answer {
  max-height: 200px;
}
.contact-faq-card.faq-open div > div:last-child {
  transform: rotate(45deg);
  background: var(--blue);
}
.contact-faq-card.faq-open div > div:last-child svg {
  stroke: white;
}

/* Contact page responsive */
@media (max-width: 900px) {
  #contact-form .container > .animate-on-scroll[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  #contact-form .container > .animate-on-scroll > div:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  #contact-form .container > .animate-on-scroll > div:last-child {
    grid-template-columns: 1fr !important;
  }
  #contact-form .container > .animate-on-scroll > div:first-child {
    padding: 30px 20px !important;
  }
  section[style*="padding: 80px 0 100px"] .container > .animate-on-scroll[style*="display: flex"] {
    flex-direction: column !important;
    text-align: center;
    padding: 50px 30px !important;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .after-grain,
  .shimmer-dots,
  .speed-lines,
  .wash-arch {
    display: none !important;
  }
}

/* ==========================================
   FOUNDERS CLUB - HOMEPAGE BANNER
   ========================================== */
.founders-banner {
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  overflow: hidden;
  padding: 5rem 2rem;
  text-align: center;
}
.founders-banner-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.founders-banner-shimmer {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(255,202,8,0.06) 10%, transparent 20%, rgba(91,191,236,0.06) 30%, transparent 40%);
  animation: foundersShimmerSpin 12s linear infinite;
}
@keyframes foundersShimmerSpin {
  to { transform: rotate(360deg); }
}
.founders-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.founders-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,202,8,0.15);
  border: 1px solid rgba(255,202,8,0.3);
  color: #FFCA08;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.founders-star {
  color: #FFCA08;
  font-size: 1.1em;
}
.founders-banner-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.15;
}
.founders-banner-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin: 0 0 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.founders-banner-deals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.founders-banner-deal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: 110px;
}
.founders-deal-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  color: #FFCA08;
  line-height: 1;
}
.founders-deal-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.founders-banner-deal-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
}
.founders-banner-cta {
  display: inline-block;
  background: #FFCA08;
  color: #0a0a0a;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(255,202,8,0.3);
}
.founders-banner-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(255,202,8,0.45);
}

@media (max-width: 600px) {
  .founders-banner { padding: 3.5rem 1.25rem; }
  .founders-banner-deals { gap: 1rem; }
  .founders-deal-price { font-size: 2rem; }
  .founders-banner-deal-divider { height: 36px; }
}

/* ==========================================
   FOUNDERS CLUB - WASH CLUB PRICING CARDS
   ========================================== */
.founders-club-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(255,202,8,0.2), rgba(255,202,8,0.08));
  border: 1px solid rgba(255,202,8,0.35);
  color: #FFCA08;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.founders-intro-pricing {
  margin-bottom: 1.25rem;
}
.founders-intro-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.founders-intro-row:last-child {
  border-bottom: none;
}
.founders-intro-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.founders-intro-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  color: #FFCA08;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.founders-strikethrough {
  text-decoration: line-through;
  color: rgba(255,255,255,0.35);
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.founders-mo {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}
.founders-lock-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
}
.founders-intro-then .founders-intro-price {
  color: #fff;
}
.founders-intro-then .founders-intro-price .founders-strikethrough + * {
  color: #FFCA08;
}
.founders-calc {
  background: #fff;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.founders-calc-header {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  color: #0a0a0a;
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}
.founders-calc-tiers {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.founders-calc-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: #f9fafb;
  border-radius: 14px;
  border: 1px solid #eee;
}
.founders-calc-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  color: #1a1a2e;
}
.founders-calc-prices {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.founders-calc-old {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
  font-weight: 500;
}
.founders-calc-arrow {
  color: #E02C47;
  font-weight: 700;
}
.founders-calc-new {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  color: #E02C47;
}
.founders-calc-mo {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: #666;
  font-weight: 500;
}
.founders-calc-tier-standard .founders-calc-new {
  color: #1a1a2e;
}
.founders-calc-intro {
  background: #0a0a0a;
  border-radius: 18px;
  padding: 1rem 1.25rem;
}
.founders-calc-intro-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.founders-calc-intro-row:last-child {
  border-bottom: none;
}
.founders-calc-intro-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  color: #FFCA08;
}
.founders-calc-intro-life {
  background: rgba(255,202,8,0.1);
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
  margin-top: 0.25rem;
}
.founders-calc-intro-life .founders-calc-intro-price {
  font-size: 1rem;
  color: #FFCA08;
}
@media (max-width: 600px) {
  .founders-calc { padding: 1.25rem; }
  .founders-calc-tier { padding: 0.6rem 0.75rem; }
  .founders-calc-new { font-size: 1.1rem; }
}
.founders-strikethrough-home {
  text-decoration: line-through;
  color: rgba(26,26,46,0.35);
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-right: 4px;
}
.founders-club-cta-home .wash-club-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

@media (max-width: 768px) {
  .btn { min-height: 44px; }
  .btn-lg { min-height: 48px; }
  .faq-question { min-height: 48px; padding: 16px 0; }
  .nav-dropdown-menu a { min-height: 44px; display: flex; align-items: center; justify-content: center; }
  .founders-sticky-cta { min-height: 44px; display: inline-flex; align-items: center; }
  .ada-toggle { min-width: 48px; min-height: 48px; }
  img { max-width: 100%; height: auto; }
  .container { padding-left: 16px; padding-right: 16px; }
  .founders-banner { padding: 3rem 1rem; }
  .founders-pricing-tiles { gap: 12px; }
}

@media (max-width: 480px) {
  .founders-sticky-text { font-size: 0.68rem; }
  .founders-pricing-tile { padding: 16px 12px; min-width: 80px; }
  .founders-pricing-amount { font-size: 2rem; }
  .yc-list li { font-size: 0.88rem; }
  h1, .section-title { word-wrap: break-word; overflow-wrap: break-word; }
}
