/* ============================================================
   RedStart Auto Spa — styles.css
   ============================================================ */

/* --- Reset & Root --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #ed1c24;
  --blue:      #32a9ef;
  --black:     #000000;
  --dark:      #232323;
  --white:     #ffffff;
  --gray-text: rgba(84,84,84,1);
  --footer-bg: rgba(232, 235, 241, 1);
  --max-w:     1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 17px;
  color: var(--gray-text);
  background: var(--white);
  line-height: 1.6;
}

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

/* --- Typography --- */
h1 { font-size: 72px; line-height: 1; font-weight: 800; font-style: italic; color: var(--black); font-family: 'Montserrat', Arial, sans-serif; }
h2 { font-size: 48px; line-height: 1; font-weight: 700; color: var(--black); font-family: 'Montserrat', Arial, sans-serif; }
h3 { font-size: 26px; line-height: 1; font-weight: 700; color: var(--black); font-family: 'Montserrat', Arial, sans-serif; }
h4 { font-size: 18px; line-height: 1; font-weight: 700; color: var(--black); font-family: 'Montserrat', Arial, sans-serif; }
h5 { font-size: 18px; line-height: 1; font-weight: 700; color: var(--black); font-family: 'Montserrat', Arial, sans-serif; }
p  { line-height: 1.6; font-size: 17px; color: var(--gray-text); }

/* --- Layout --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER & NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--black);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 6px;
  padding-bottom: 6px;
  max-width: none;
}

.header-logo { flex: 1; }
.header-logo a { display: inline-block; }
.header-logo img { max-height: 80px; width: auto; }

/* Desktop Nav */
.main-nav { flex: 2; }
.main-nav > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.main-nav > ul > li { position: relative; }

.main-nav a {
  display: block;
  padding: 14px;
  font-size: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--white);
  white-space: nowrap;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--blue); }

/* Dropdown */
.main-nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--dark);
  min-width: 200px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  border-radius: 4px;
  z-index: 100;
}
.main-nav .dropdown li a {
  padding: 12px 18px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.main-nav .dropdown li:last-child a { border-bottom: none; }
.main-nav li.has-dropdown:hover .dropdown,
.main-nav li.has-dropdown:focus-within .dropdown { display: block; }
.main-nav .fa-angle-down { font-size: 12px; margin-left: 4px; }

/* Header CTA Button */
.header-cta {
  flex-shrink: 0;
  display: inline-block;
  padding: 8px 18px !important;
  background: #a81219;
  color: var(--white) !important;
  font-size: 12px !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 1px;
  border-radius: 5px;
  transition: background 0.2s;
  white-space: nowrap;
  border: 0;
}
.header-cta:hover { background: #8a0f14; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav { display: none; background: var(--black); border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 24px;
  color: var(--white);
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.mobile-nav a:hover { background: rgba(255,255,255,0.05); }
.mobile-nav .mobile-cta {
  display: block;
  margin: 16px 24px;
  padding: 14px;
  text-align: center;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-style: italic;
  border-radius: 5px;
}

/* ============================================================
   HERO — STANDARD (centered, dark overlay — all pages except homepage)
   ============================================================ */
.hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.79) 0%, rgba(0,0,0,1) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  padding: 80px 24px 100px;
}
.hero-content .eyebrow {
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; font-size: 66px; }
.hero-content h3 {
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 12px;
  margin-top: 10px;
}
.hero-content p { color: rgba(255,255,255,0.82); font-size: 18px; margin-bottom: 32px; }

/* SVG chevron divider */
.hero-divider {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}
.hero-divider svg { display: block; width: 100%; height: 50px; }

/* Hero entrance animations */
@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroZoomIn {
  from { opacity: 0; transform: scaleX(0.3); }
  to   { opacity: 1; transform: scaleX(1); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero-text-box h1           { animation: heroSlideIn 1.1s ease-out both; }
.hero-divider-line          { animation: heroZoomIn  1.1s ease-out 0.25s both; transform-origin: left center; }
.hero-text-box p            { animation: heroFadeIn  1.1s ease-out 0.45s both; }
.hero-text-box .btn         { animation: heroFadeIn  1.55s ease-out 0.65s both; }

/* Cinematic entrance: slow zoom-out on page load */
@keyframes heroCinematic {
  from { transform: scale(1.07); }
  to   { transform: scale(1.0); }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-attachment: scroll;
  z-index: 0;
  will-change: transform;
  transform-origin: center center;
  animation: heroCinematic 14s ease-out forwards;
}

/* ============================================================
   HERO — HOMEPAGE SPLIT (blue box on left, bg image on right)
   ============================================================ */
.hero-home {
  min-height: 0;
  padding: 5.32% 0 12.63%;
  display: block; /* override flex from .hero */
  align-items: unset;
  justify-content: unset;
}

/* Parallax bg layer — taller than the hero so it can travel on scroll */
.hero-parallax-bg {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform;
}

/* Suppress cinematic ::before on heroes using the parallax bg layer */
.hero-home::before,
.hero:has(.hero-parallax-bg)::before { display: none; }


/* Fade hero bottom to black so it blends into the why section */
.hero-home::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, #000);
  z-index: 1;
  pointer-events: none;
}

/* Hide the hard chevron divider on the home hero */
.hero-home .hero-divider { display: none; }

.hero-home .hero-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
  z-index: 1;
}

.hero-text-box {
  width: 50%;
  padding: 48px 3%;
  background: rgba(50, 169, 239, 0.60);
  border-radius: 5px;
}
.hero-text-box h1 {
  color: var(--white);
  font-size: 66px;
  font-style: italic;
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.hero-text-box p {
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  margin-bottom: 28px;
}
.hero-divider-line {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.35);
  margin: 20px 0 24px;
}
.hero-spacer { width: 50%; }

/* Membership hero — blue overlay instead of dark */
.hero-membership .hero-overlay {
  background: rgba(50, 169, 239, 0.89);
}

/* Contact hero — solid blue bg */
.hero-blue {
  background-color: var(--blue) !important;
}
.hero-blue .hero-overlay { display: none; }
.hero-blue .eyebrow { color: var(--black); }

/* Careers hero — solid black bg */
.hero-dark { background-color: var(--black); }
.hero-dark .hero-overlay { display: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 19px 38px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 17px;
  letter-spacing: 1px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--blue);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { border-color: var(--blue); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-outline:hover { background: var(--red); }

.btn-outline-white {
  display: inline-block;
  padding: 19px 48px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 17px;
  letter-spacing: 1px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.7);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: color 0.35s, border-color 0.35s;
}
.btn-outline-white::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.btn-outline-white:hover { color: var(--black); border-color: var(--white); }
.btn-outline-white:hover::after { transform: translateX(0); }

/* Dark radial gradient button (used in "Join the Club" CTA) */
.btn-dark-gradient {
  display: inline-block;
  background: radial-gradient(circle, rgba(137,137,137,1) 0%, rgba(35,35,35,1) 100%);
  color: var(--white);
  padding: 23px 46px;
  border-radius: 5px;
  box-shadow: -8px 6px 15px rgba(0,0,0,0.3);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 17px;
  letter-spacing: 1px;
  border: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: box-shadow 0.2s;
}
.btn-dark-gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.btn-dark-gradient:hover::after { transform: translateX(0); }
.btn-dark-gradient:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.5); }

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

.section-label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

/* ============================================================
   WHY REDSTART — TWO GRADIENT SECTIONS (homepage only)
   ============================================================ */
.why-section {
  background-color: #0a0a0a;
  background-image:
    linear-gradient(to bottom,
      #000 0%,
      #000 15%,
      rgba(0,0,0,0.65) 40%,
      rgba(0,0,0,0.65) 60%,
      #000 85%,
      #000 100%
    ),
    url('../images/shutterstock_1106572814.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: 'CLEAN';
  position: absolute;
  bottom: -50px;
  right: -40px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 260px;
  font-weight: 800;
  font-style: italic;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.why-badges {
  display: flex;
  gap: 2%;
  margin-bottom: 64px;
}

.why-badge {
  flex: 1;
  background: rgba(45,45,45,0.92);
  border-radius: 8px;
  padding: 36px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.why-badge-icon {
  width: 56px;
  height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  flex-shrink: 0;
}

.why-badge h4 {
  color: var(--white);
  font-style: italic;
  font-weight: 800;
  font-size: 22px;
  text-align: center;
}

.why-content {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.why-content .eyebrow {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.why-content h2 {
  color: var(--white);
  font-style: italic;
  font-size: 46px;
  margin-bottom: 28px;
}

.why-content p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.why-pullquote {
  color: var(--blue) !important;
  font-style: italic;
  font-weight: 700;
  font-size: 20px !important;
  line-height: 1.55 !important;
  margin-top: 10px;
  margin-bottom: 36px !important;
}

.why-cta {
  min-width: 420px;
  padding: 20px 40px;
}

/* ============================================================
   EXPERIENCE THE DIFFERENCE — FEATURE CARDS (BLUE)
   ============================================================ */
.features-section {
  background: var(--white);
  padding: 80px 0;
}
.features-section > .container > h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.feature-card {
  background: var(--blue);
  border: 5px solid var(--black);
  border-radius: 10px;
  padding: 28px 28px 32px;
  text-align: left;
}

.feature-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.feature-card .icon {
  font-size: 36px;
  color: var(--white);
  flex-shrink: 0;
}

.feature-card h4 {
  font-size: 18px;
  font-style: italic;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}

.feature-card .card-divider {
  border: none;
  border-top: 2px solid rgba(0,0,0,0.3);
  margin: 0 0 16px 0;
}

.feature-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   WASH MENU TOGGLE
   ============================================================ */
.wash-menu-section {
  background: var(--white);
  padding: 70px 0 80px;
}

.wash-menu-header {
  background: transparent;
  padding: 0 5% 48px;
  text-align: center;
  margin-bottom: 0;
}
.wash-menu-header h5 {
  color: rgba(0,0,0,0.4);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 12px;
}
.wash-menu-header h2 {
  color: var(--black);
  font-style: italic;
  margin-bottom: 10px;
}
.wash-menu-header > p {
  color: rgba(0,0,0,0.55);
  margin-bottom: 32px;
  font-size: 16px;
}

/* Pill Toggle */
.toggle-wrapper {
  display: inline-flex;
  align-items: center;
  background: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 50px;
  padding: 5px;
  gap: 0;
  margin-top: 0;
}
.toggle-pill-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(0,0,0,0.45);
  padding: 8px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s;
  user-select: none;
  border: none;
  background: transparent;
}
.toggle-pill-btn.active {
  background: var(--black);
  color: var(--white);
}
.switch { display: none; }
.toggle-label { display: none; }

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: transparent;
  align-items: stretch;
}

.pricing-single-view { display: grid; }
.pricing-unlimited-view { display: none; }

.pricing-card-wash {
  background: linear-gradient(160deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 1px solid rgba(0,0,0,0.08);
  border-top: 4px solid #333;
  border-radius: 16px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card-wash:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.28);
}
.pricing-card-wash.popular {
  border-top: 4px solid var(--blue);
  background: linear-gradient(160deg, #0d1e30 0%, #060f1a 100%);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(50,169,239,0.25), 0 8px 24px rgba(0,0,0,0.4);
}
.pricing-card-wash.popular:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 70px rgba(50,169,239,0.3), 0 8px 24px rgba(0,0,0,0.4);
}

.popular-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
  width: fit-content;
}

.pricing-card-wash .price-display {
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card-wash .price-display .dollar {
  font-size: 52px;
  font-weight: 800;
  font-style: italic;
  color: var(--red);
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-card-wash .price-display .period {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.pricing-card-wash .tier-name {
  font-size: 26px;
  font-weight: 800;
  font-style: italic;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}
.pricing-card-wash .card-rule {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 0 0 16px 0;
}
.pricing-card-wash .includes-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pricing-addon {
  background: transparent;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-addon:last-of-type { border-bottom: none; }
.pricing-addon i { font-size: 13px; color: var(--blue); flex-shrink: 0; }
.pricing-addon span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.pricing-card-cta {
  display: block;
  margin-top: auto;
  padding: 12px;
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: rgba(255,255,255,0.7);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s;
}
.pricing-card-cta:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}
.pricing-card-wash.popular .pricing-card-cta {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.pricing-card-wash.popular .pricing-card-cta:hover {
  background: #1a9fe0;
}

/* ============================================================
   CTA — HOMEPAGE "JOIN THE CLUB" (white bg)
   ============================================================ */
.cta-join-section {
  background: var(--white);
  padding: 70px 0;
}
.cta-join-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.cta-join-left {
  flex: 0 0 57%;
}
.cta-join-left .eyebrow {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.cta-join-left h2 {
  color: var(--black);
  font-style: italic;
  margin-bottom: 24px;
}
.cta-join-right {
  flex: 0 0 43%;
  padding-top: 8px;
}
.cta-join-right .pullquote {
  font-size: 18px;
  font-weight: 800;
  font-style: italic;
  color: var(--blue);
  margin-bottom: 16px;
  line-height: 1.4;
}
.cta-join-right p { font-size: 16px; color: #444; }

.cta-perks-row {
  display: flex;
  gap: 12px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.cta-perk {
  flex: 1;
  min-width: 140px;
  background: var(--red);
  border-radius: 10px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-perk:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(220,38,38,0.35);
}
.cta-perk i {
  font-size: 22px;
  color: rgba(255,255,255,0.75);
}
.cta-perk span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.3;
  text-transform: uppercase;
}

/* ============================================================
   CTA — OTHER PAGES (dark bg)
   ============================================================ */
.cta-section {
  background-color: #111;
  background-image: radial-gradient(circle, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 20px 20px;
  padding: 70px 0;
}
.cta-section .btn-dark-gradient {
  display: block;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  box-shadow: -8px 6px 15px rgba(0,0,0,0.3), 0 0 80px 16px rgba(255,255,255,0.15);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-inner .eyebrow {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.cta-inner h2 {
  color: var(--white);
  font-style: italic;
  margin-bottom: 0;
}

/* ============================================================
   LOCATION SECTION — HOMEPAGE (dark, soapy car bg)
   ============================================================ */
.location-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.location-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 40%, #000 100%),
    linear-gradient(to right, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}
.location-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.location-content h2 {
  color: var(--white);
  font-style: italic;
  margin-bottom: 16px;
}
.location-subtext {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
}
.location-info-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.location-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.location-info-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}
.location-info-label i { color: var(--red); }
.location-info-item span {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.location-info-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  align-self: stretch;
  min-height: 40px;
}

/* ============================================================
   LOCATION SECTION — LOCATION PAGE (white, with chevron)
   ============================================================ */
.location-section.location-page {
  background: #ffffff;
  padding: 80px 0 100px;
  overflow: visible;
}
.location-section.location-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 34px solid transparent;
  border-right: 34px solid transparent;
  border-top: 30px solid #0a0a0a;
  z-index: 10;
}

.location-inner {
  display: flex;
  align-items: stretch;
  gap: 60px;
}

.location-img {
  flex: 0 0 48%;
  border-radius: 10px;
  overflow: visible;
  min-height: 300px;
  position: relative;
}
.location-img::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  bottom: 12px;
  right: 12px;
  border: 3px solid var(--blue);
  border-radius: 12px;
  z-index: 0;
  pointer-events: none;
}
.location-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.location-card {
  flex: 1;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  padding: 36px;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
}

.info-icon {
  font-size: 22px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 3px;
}

.info-block h4 {
  font-style: italic;
  font-weight: 800;
  color: #1a1a1a;
  font-size: 20px;
  margin-bottom: 6px;
  line-height: 1;
}

.info-block p {
  color: #444;
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.map-embed {
  border-radius: 8px;
  overflow: hidden;
  margin-top: 4px;
}
.map-embed iframe { display: block; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background-color: #0a0a0a;
  background-image:
    linear-gradient(to bottom,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,0.92) 30%,
      rgba(0,0,0,0.65) 65%,
      rgba(0,0,0,0.3) 100%
    ),
    url('../images/shutterstock_1106572814.jpg');
  background-size: auto, cover;
  background-position: top left, center;
  background-attachment: scroll, fixed;
  padding: 90px 0;
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.faq-image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 560px;
}
.faq-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.faq-right h2 {
  color: var(--white);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.15;
}
.faq-red-rule {
  width: 80px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 32px;
}
.faq-list { max-width: none; margin: 0; }
.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  border-bottom: none;
}
.faq-item:first-child { border-top: none; }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--black);
  background: none;
  border: none;
  cursor: pointer;
  gap: 0;
  justify-content: flex-start;
}
.faq-question .faq-icon {
  font-size: 16px;
  color: #555;
  flex-shrink: 0;
  margin-right: 14px;
  transition: transform 0.3s;
  order: -1;
}
.faq-question::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 20px;
  background: #ccc;
  margin-right: 16px;
  flex-shrink: 0;
}
.faq-question:hover { color: var(--blue); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p { padding: 0 20px 12px 52px; font-size: 15px; color: #444; line-height: 1.6; }
.faq-cta {
  display: inline-block;
  margin: 0 20px 18px 52px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--red);
  letter-spacing: 0.3px;
  transition: color 0.2s, letter-spacing 0.2s;
}
.faq-cta:hover { color: var(--blue); letter-spacing: 0.8px; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* FAQ on dark background (contact page) */
.contact-faq-section {
  background: var(--dark);
  padding: 80px 0;
}
.contact-faq-section h2 { color: var(--white); text-align: center; margin-bottom: 48px; }
.contact-faq-section .faq-question { color: rgba(255,255,255,0.85); }
.contact-faq-section .faq-question:hover { color: var(--blue); }
.contact-faq-section .faq-item { border-color: rgba(255,255,255,0.15); }

/* ============================================================
   MEMBERSHIP — BENEFITS BAR
   ============================================================ */
.benefits-bar { background: var(--black); padding: 40px 0; }
.benefits-row { display: flex; justify-content: center; }
.benefit {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.benefit:last-child { border-right: none; }
.benefit h4 { color: var(--white); font-size: 18px; font-style: italic; }

/* ============================================================
   MEMBERSHIP — KEEP IT CLEAN
   ============================================================ */
.keep-clean { background: var(--white); padding: 80px 0; }
.keep-clean .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.keep-clean .img-col {
  position: relative;
  overflow: visible;
  min-height: 360px;
}

/* Image frame + badge (mirrors fundraising treatment) */
.keep-clean-img-frame {
  position: relative;
  isolation: isolate;
  border-radius: 12px;
  overflow: visible;
  height: 100%;
  min-height: 360px;
}
.keep-clean-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--blue);
  border-radius: 12px;
  transform: translate(-14px, -14px);
  z-index: -1;
  pointer-events: none;
}
.keep-clean-img-frame img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.keep-clean-img-badge {
  position: absolute;
  z-index: 2;
  bottom: -20px;
  left: -20px;
  background: var(--red);
  color: var(--white);
  border-radius: 12px;
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(237,28,36,0.35);
  line-height: 1;
}

.keep-clean h2 { margin-bottom: 28px; font-style: italic; color: var(--black); }

/* List items now use .split-perks — override legacy keep-clean li styles */
.keep-clean ul { margin-top: 16px; }
.keep-clean li i { font-size: 14px; }

/* FAQ image badge (homepage) */
.faq-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: visible;
  flex-shrink: 0;
  aspect-ratio: 3/4;
  max-height: 560px;
}
.faq-image-wrap::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  bottom: 12px;
  right: 12px;
  border: 3px solid var(--blue);
  border-radius: 12px;
  z-index: 0;
  pointer-events: none;
}
.faq-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.faq-img-badge {
  position: absolute;
  z-index: 2;
  bottom: -20px;
  left: -20px;
  background: var(--red);
  color: var(--white);
  border-radius: 12px;
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(237,28,36,0.35);
  line-height: 1;
}

/* ============================================================
   FUNDRAISING
   ============================================================ */
.split-section { background: var(--white); padding: 80px 0; }
.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-inner .text-col h2 { margin-bottom: 20px; font-style: italic; }
.split-inner .text-col p { margin-bottom: 16px; }
.split-inner .img-col img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
}
.highlight-text {
  font-size: 18px;
  font-weight: 800;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 16px;
}

/* Fundraising split — enhanced */
.fundraising-split {
  background: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.fundraising-split::before {
  content: '50%';
  position: absolute;
  top: -30px;
  right: -20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 280px;
  font-weight: 800;
  font-style: italic;
  color: rgba(0,0,0,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.fundraising-split-inner {
  gap: 72px;
  align-items: center;
}

.fundraising-text-col h2 {
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.05;
  color: var(--black);
}
.fundraising-text-col p { margin-bottom: 14px; }

.split-perks {
  list-style: none;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.split-perks li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--dark);
}
.split-perk-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.split-perks li strong { font-weight: 800; }

.split-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.split-social-proof {
  font-size: 13px;
  font-weight: 600;
  color: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
}
.split-social-proof i { color: var(--red); font-size: 14px; }

/* Fundraising image frame & badge */
.fundraising-img-col { position: relative; }
.fundraising-img-frame {
  position: relative;
  border-radius: 12px;
  overflow: visible;
}
.fundraising-img-frame::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  bottom: 12px;
  left: 12px;
  border: 3px solid var(--blue);
  border-radius: 12px;
  z-index: 0;
}
.fundraising-img-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.fundraising-img-badge {
  position: absolute;
  z-index: 2;
  bottom: -20px;
  left: -20px;
  background: var(--red);
  color: var(--white);
  border-radius: 12px;
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(237,28,36,0.35);
  line-height: 1;
}
.fib-pct {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 48px;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
}
.fib-label {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .fundraising-img-frame::before { display: none; }
  .fundraising-img-badge { bottom: 12px; left: 12px; }
  .fundraising-img-frame img { height: 280px; }
  .fundraising-split::before { font-size: 160px; }
}

.how-it-works { background: var(--white); padding: 80px 0; }
.how-it-works h3 { text-align: center; margin-bottom: 48px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  margin-bottom: 48px;
}
.step { padding: 32px 24px; }
.step .step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step h4 { font-size: 16px; font-style: italic; margin-bottom: 12px; line-height: 1.35; }
.step p { font-size: 15px; }

/* ============================================================
   FUNDRAISING — HOW IT WORKS (redesigned)
   ============================================================ */
.fundraising-how-it-works {
  background: #f4f4f4;
  padding: 90px 0 80px;
}

.fundraising-how-header {
  text-align: center;
  margin-bottom: 56px;
}
.fundraising-how-header h2 {
  font-style: italic;
  margin-bottom: 12px;
}
.fundraising-how-subtext {
  color: rgba(0,0,0,0.45);
  font-size: 16px;
  max-width: 440px;
  margin: 0 auto;
}

.fundraising-steps {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}

.fundraising-step {
  background: var(--white);
  border-radius: 14px;
  padding: 40px 28px 36px;
  text-align: center;
  box-shadow: 0 4px 28px rgba(0,0,0,0.07);
  transition: transform 0.22s, box-shadow 0.22s;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fundraising-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.13);
}

.fstep-icon-wrap {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
}
.fstep-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: transform 0.25s;
}
.fundraising-step:hover .fstep-circle {
  transform: scale(1.08);
}
.fstep-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f4f4f4;
}

.fundraising-step h4 {
  font-size: 17px;
  font-style: italic;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 14px;
  color: var(--dark);
}
.fundraising-step p {
  font-size: 15px;
  color: rgba(0,0,0,0.5);
  line-height: 1.7;
  margin: 0;
}
.fundraising-step p strong {
  color: var(--dark);
  font-weight: 700;
}

.fstep-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  color: rgba(0,0,0,0.2);
  font-size: 18px;
}

.fundraising-how-callout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 14px;
  padding: 22px 32px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.fundraising-how-callout:hover {
  background: #c5151c;
  transform: translateY(-2px);
}
.fundraising-how-callout i {
  font-size: 22px;
  flex-shrink: 0;
}
.fundraising-how-callout span {
  font-size: 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.fundraising-how-callout strong { font-weight: 800; }
.fundraising-how-callout-arrow {
  margin-left: auto;
  font-size: 16px;
  opacity: 0.75;
}

@media (max-width: 768px) {
  .fundraising-steps {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 420px;
  }
  .fstep-arrow {
    transform: rotate(90deg);
  }
  .fundraising-how-callout {
    flex-direction: column;
    text-align: center;
    border-radius: 14px;
    padding: 20px 24px;
  }
}

/* ============================================================
   CAREERS
   ============================================================ */
.careers-features { background: var(--white); padding: 80px 0; }
.careers-features h2 { text-align: center; margin-bottom: 48px; color: var(--black); font-style: italic; }
.careers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.careers-card {
  background: var(--black);
  border-radius: 10px;
  padding: 36px 24px 32px;
  text-align: center;
  border-top: 4px solid var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.22s, box-shadow 0.22s;
}
.careers-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.careers-card .careers-icon { font-size: 42px; color: var(--blue); margin-bottom: 20px; }
.careers-card h4 { color: var(--white); font-size: 17px; font-style: italic; margin-bottom: 8px; }
.careers-card-tag {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  font-style: italic;
  margin: 0;
}

/* Careers culture quote */
.careers-quote-section {
  background: var(--black);
  padding: 72px 0;
}
.careers-quote-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.careers-quote-mark {
  display: block;
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: 0.6;
  color: var(--red);
  margin-bottom: 24px;
}
.careers-quote-text {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 26px;
  font-weight: 800;
  font-style: italic;
  color: var(--white);
  line-height: 1.35;
  margin: 0 0 28px;
}
.careers-quote-rule {
  width: 48px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 0 auto 16px;
}
.careers-quote-attr {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* Careers apply section */
.careers-apply-section { background: var(--white); }
.careers-apply-header {
  text-align: center;
  margin-bottom: 40px;
}
.careers-apply-header h2 { color: var(--black); font-style: italic; margin-bottom: 10px; }
.careers-apply-sub {
  font-size: 15px;
  color: rgba(0,0,0,0.45);
  margin: 0;
}

@media (max-width: 768px) {
  .careers-quote-text { font-size: 20px; }
  .careers-quote-mark { font-size: 80px; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--white); padding: 80px 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 8px; }
.contact-info p { margin-bottom: 12px; }
.contact-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.contact-membership-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f4f4f4;
  border-radius: 12px;
  padding: 20px 22px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.contact-membership-icon {
  font-size: 28px;
  color: var(--red);
  flex-shrink: 0;
}
.contact-membership-box > div { flex: 1; min-width: 140px; }
.contact-membership-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 2px;
}
.contact-membership-sub {
  font-size: 12px;
  color: rgba(0,0,0,0.45);
  margin: 0;
}
.contact-membership-btn {
  flex-shrink: 0;
  padding: 10px 18px !important;
  font-size: 13px !important;
  border: 2px solid var(--red) !important;
  color: var(--red) !important;
  border-radius: 6px;
  font-weight: 800;
  font-style: italic;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.contact-membership-btn:hover {
  background: var(--red) !important;
  color: var(--white) !important;
}

.contact-form-col {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.06);
}

/* FAQ — metal grid background */
.contact-faq-section {
  padding: 90px 0;
}
.contact-faq-metal {
  position: relative;
  background-color: #0a0a0a;
  background-image:
    linear-gradient(to bottom,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.72) 40%,
      rgba(0,0,0,0.88) 100%
    ),
    url('images/shutterstock_1106572814.jpg');
  background-size: auto, cover;
  background-position: top left, center;
  background-attachment: scroll, fixed;
}

.contact-faq-inner { max-width: 820px; margin: 0 auto; }

.contact-faq-header {
  text-align: center;
  margin-bottom: 48px;
}
.contact-faq-header h2 { color: var(--white); margin-bottom: 0; }

.contact-faq-metal .faq-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  margin-bottom: 10px;
}
.contact-faq-metal .faq-question {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
}
.contact-faq-metal .faq-question:hover { color: var(--blue); }
.contact-faq-metal .faq-question::after { background: rgba(255,255,255,0.15); }
.contact-faq-metal .faq-answer p { color: rgba(255,255,255,0.65); padding-left: 20px; }
.contact-faq-metal .faq-cta { margin-left: 20px; color: var(--blue); }
.contact-faq-metal .faq-cta:hover { color: var(--white); }

@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-col { padding: 20px; box-shadow: none; border: 1px solid rgba(0,0,0,0.08); }
  .contact-membership-box { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   FREE WASH PAGE
   ============================================================ */
.page-free-wash .site-header { display: none; }

.free-wash-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 96px);
}

/* Left — dark branded side */
.free-wash-left {
  background: var(--black);
  display: flex;
  align-items: flex-start;
  padding: 80px 60px;
}
.free-wash-left-inner { max-width: 480px; }

.free-wash-eyebrow {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.free-wash-left h1 {
  color: var(--white);
  font-size: 56px;
  font-style: italic;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
}

.free-wash-sub {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.free-wash-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.free-wash-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.free-wash-perks li i { color: var(--blue); font-size: 16px; flex-shrink: 0; }

.free-wash-location {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.free-wash-location i { color: var(--red); font-size: 18px; margin-top: 3px; flex-shrink: 0; }
.free-wash-location div { display: flex; flex-direction: column; gap: 3px; }
.free-wash-location strong { color: var(--white); font-size: 14px; font-weight: 700; }
.free-wash-location span { color: rgba(255,255,255,0.5); font-size: 13px; }

/* Right — form side */
.free-wash-right {
  background: var(--black);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 48px;
}
.free-wash-form-wrap {
  width: 100%;
  max-width: 480px;
  background: var(--white);
  border-radius: 14px;
  padding: 36px 32px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.10);
}
.free-wash-form-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.page-thank-you { background: var(--black); }

.thank-you-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.thank-you-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 56px 64px;
  max-width: 860px;
  width: 100%;
  text-align: center;
}

.thank-you-logo { display: inline-block; margin-bottom: 40px; }
.thank-you-logo img { max-height: 80px; width: auto; }

.thank-you-icon {
  font-size: 64px;
  color: var(--red);
  margin-bottom: 24px;
  line-height: 1;
}

.thank-you-card h1 {
  color: var(--white);
  font-style: italic;
  font-size: 48px;
  margin-bottom: 16px;
}

.thank-you-sub {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.thank-you-steps {
  display: flex;
  flex-direction: row;
  gap: 0;
  text-align: left;
  margin-bottom: 40px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}

.ty-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 20px;
  flex: 1;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.ty-step:last-child { border-right: none; }

.ty-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ty-step > div { display: flex; flex-direction: column; gap: 4px; }
.ty-step strong { color: var(--white); font-size: 13px; font-weight: 700; }
.ty-step span { color: rgba(255,255,255,0.45); font-size: 12px; line-height: 1.5; }

@media (max-width: 600px) {
  .thank-you-steps { flex-direction: column; }
  .ty-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); flex-direction: row; align-items: center; }
  .ty-step:last-child { border-bottom: none; }
}

.thank-you-upsell {
  background: rgba(50,169,239,0.07);
  border: 1px solid rgba(50,169,239,0.25);
  border-radius: 12px;
  padding: 28px 24px;
  margin-bottom: 36px;
}
.ty-upsell-label {
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
  font-style: italic;
  margin-bottom: 6px;
}
.ty-upsell-sub {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.ty-upsell-btn { width: 100%; display: block; }

.thank-you-home-link {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.thank-you-home-link:hover { color: var(--white); }

@media (max-width: 600px) {
  .thank-you-card { padding: 36px 24px; }
  .thank-you-card h1 { font-size: 36px; }
}

.free-wash-home-link {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.free-wash-home-link img { max-height: 36px; width: auto; opacity: 0.7; transition: opacity 0.2s; }
.free-wash-home-link img:hover { opacity: 1; }
.free-wash-home-text {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.free-wash-home-text:hover { color: var(--white); }

@media (max-width: 900px) {
  .free-wash-split { grid-template-columns: 1fr; min-height: auto; }
  .free-wash-left { padding: 60px 28px; }
  .free-wash-left h1 { font-size: 40px; }
  .free-wash-right { padding: 40px 20px; }
  .free-wash-form-wrap { padding: 24px 20px; }
}

/* ============================================================
   FOOTER — LIGHT GREY-BLUE
   ============================================================ */
.site-footer { background: var(--footer-bg); }

.footer-top { padding: 60px 0 40px; }
.footer-top .inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-brand img { max-width: 246px; margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: rgba(60,60,60,0.7); line-height: 1.5; margin-bottom: 20px; }

.social-links { display: flex; gap: 12px; margin-top: 4px; }
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 16px;
  transition: background 0.2s, color 0.2s;
}
.social-links a:hover { background: var(--red); color: var(--white); }

.footer-col h5 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(40,40,40,0.9);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(60,60,60,0.7); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--dark); }
.footer-col .location-name { font-size: 14px; font-weight: 700; color: rgba(40,40,40,0.9); margin-bottom: 8px; }
.footer-col .location-name a { color: rgba(40,40,40,0.9); }
.footer-col .location-addr { font-size: 14px; color: rgba(60,60,60,0.7); line-height: 1.6; }
.footer-col .location-hours { font-size: 14px; color: rgba(60,60,60,0.7); margin-top: 8px; }
.footer-col .location-hours a { color: rgba(60,60,60,0.7); text-decoration: underline; }

.footer-bottom { background: rgba(35,35,35,1); padding: 16px 0; text-align: center; }
.footer-bottom p { font-size: 14px; color: rgba(137,137,137,1); font-family: Helvetica, Arial, sans-serif; }
.footer-bottom a { color: rgba(180,180,180,0.8); text-decoration: underline; }
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
/* ── Base: fade up ── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ── Slide from left ── */
.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-reveal-left.in-view {
  opacity: 1;
  transform: none;
}

/* ── Slide from right ── */
.scroll-reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-reveal-right.in-view {
  opacity: 1;
  transform: none;
}

/* ── Scale in (icons, badges, numbers) ── */
.scroll-reveal-scale {
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.scroll-reveal-scale.in-view {
  opacity: 1;
  transform: none;
}

/* ── Stagger delays ── */
.scroll-reveal[data-delay="1"],
.scroll-reveal-left[data-delay="1"],
.scroll-reveal-right[data-delay="1"],
.scroll-reveal-scale[data-delay="1"] { transition-delay: 0.12s; }

.scroll-reveal[data-delay="2"],
.scroll-reveal-left[data-delay="2"],
.scroll-reveal-right[data-delay="2"],
.scroll-reveal-scale[data-delay="2"] { transition-delay: 0.24s; }

.scroll-reveal[data-delay="3"],
.scroll-reveal-left[data-delay="3"],
.scroll-reveal-right[data-delay="3"],
.scroll-reveal-scale[data-delay="3"] { transition-delay: 0.36s; }

.scroll-reveal[data-delay="4"],
.scroll-reveal-left[data-delay="4"],
.scroll-reveal-right[data-delay="4"],
.scroll-reveal-scale[data-delay="4"] { transition-delay: 0.48s; }

.scroll-reveal[data-delay="5"],
.scroll-reveal-left[data-delay="5"],
.scroll-reveal-right[data-delay="5"],
.scroll-reveal-scale[data-delay="5"] { transition-delay: 0.60s; }

.scroll-reveal[data-delay="6"],
.scroll-reveal-left[data-delay="6"],
.scroll-reveal-right[data-delay="6"],
.scroll-reveal-scale[data-delay="6"] { transition-delay: 0.72s; }

.scroll-reveal[data-delay="7"],
.scroll-reveal-left[data-delay="7"],
.scroll-reveal-right[data-delay="7"],
.scroll-reveal-scale[data-delay="7"] { transition-delay: 0.84s; }

.scroll-reveal[data-delay="8"],
.scroll-reveal-left[data-delay="8"],
.scroll-reveal-right[data-delay="8"],
.scroll-reveal-scale[data-delay="8"] { transition-delay: 0.96s; }

/* ── Respect reduced motion preference ── */
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal, .scroll-reveal-left, .scroll-reveal-right, .scroll-reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  h1 { font-size: 52px; }
  h2 { font-size: 38px; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .careers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top .inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-text-box h1 { font-size: 48px; }
  .success-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .faq-inner { gap: 40px; }
}

/* ============================================================
   RESPONSIVE — MOBILE  (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* ── Global type scale ── */
  h1 { font-size: 38px !important; }
  h2 { font-size: 28px !important; }
  h3 { font-size: 22px !important; }
  p  { font-size: 16px; }

  /* Prevent long eyebrow/heading text from overflowing */
  .eyebrow, .section-label,
  .why-content h2, .why-content .eyebrow { white-space: normal !important; }

  /* ── Section padding: pull back from desktop sizes ── */
  .why-section         { padding: 48px 0 60px; }
  .features-section    { padding: 56px 0; }
  .wash-menu-section   { padding: 56px 0; }
  .cta-join-section    { padding: 56px 0; }
  .faq-section         { padding: 60px 0; }
  .keep-clean          { padding: 56px 0; }
  .how-it-works-section { padding: 56px 0 64px; }
  .success-section     { padding: 56px 0 64px; }
  .problem-section     { padding: 56px 0 64px; }
  .fundraising-split   { padding: 64px 0; }
  .fundraising-how-it-works { padding: 64px 0 56px; }
  .careers-features    { padding: 56px 0; }
  .contact-section     { padding: 56px 0; }
  .location-section.location-page { padding: 56px 0 72px; }

  /* ── Header ── */
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .header-inner { flex-wrap: wrap; }
  .header-logo { flex: 0 0 auto; }

  /* ── Heroes ── */
  .hero-home { padding: 0; }
  .hero-home .hero-inner { flex-direction: column; }
  .hero-text-box { width: 100%; border-radius: 0; padding: 40px 20px 56px; }
  .hero-text-box h1 { font-size: 34px !important; }
  .hero-spacer { display: none; }
  .hero { min-height: 280px; }
  .hero-content { padding: 56px 20px 72px; text-align: center; }
  .hero-content h1 { font-size: 34px !important; }
  .hero-content .eyebrow { white-space: normal; }
  .hero-content p { font-size: 16px; }
  .hero-content .btn { display: inline-block; }

  /* ── Why section ── */
  .why-badges { flex-direction: column; gap: 12px; }
  .why-content h2 { font-size: 30px; }
  .why-cta { min-width: 0; width: 100%; max-width: 340px; }
  .why-content { text-align: center; }

  /* ── Features grid ── */
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .feature-card { padding: 24px 18px; }

  /* ── Pricing ── */
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card-wash .price-display .dollar { font-size: 48px; }
  .pricing-card-wash .tier-name { font-size: 26px; }
  .wash-menu-header { padding: 40px 5% 44px; }
  .toggle-wrapper { gap: 6px; }

  /* ── CTA join ── */
  .cta-join-inner { flex-direction: column; gap: 24px; }
  .cta-join-left, .cta-join-right { flex: 1 1 auto; width: 100%; }
  .cta-perks-row { flex-wrap: wrap; gap: 12px; }
  .cta-perk { flex: 0 0 calc(50% - 6px); }

  /* ── CTA bottom ── */
  .cta-inner { flex-direction: column; text-align: center; gap: 24px; }

  /* ── Location page ── */
  .location-inner { flex-direction: column; gap: 32px; }
  .location-img { flex: none; width: 100%; max-height: 300px; }
  .location-img::before { display: none; }
  .location-img img { height: 100%; object-fit: cover; }
  .location-card { padding: 24px; }

  /* ── Membership: keep-clean ── */
  .keep-clean .inner { grid-template-columns: 1fr; gap: 32px; }
  .keep-clean-img-frame { min-height: 260px; }
  .keep-clean-img-frame::before { display: none; }
  .keep-clean-img-badge { bottom: 12px; left: 12px; }
  .keep-clean .img-col { min-height: 260px; }

  /* ── Homepage: FAQ ── */
  .faq-inner { grid-template-columns: 1fr; gap: 36px; }
  .faq-image-wrap { max-height: 320px; aspect-ratio: 4/3; }
  .faq-image-wrap::before { display: none; }
  .faq-img-badge { bottom: 12px; left: 12px; }

  /* ── Split sections (fundraising / membership) ── */
  .split-inner { grid-template-columns: 1fr; gap: 32px; }
  .fundraising-split-inner { gap: 36px; }
  .fundraising-img-frame img { height: 260px; }
  .fundraising-img-frame::before { display: none; }
  .fundraising-img-badge { bottom: 12px; left: 12px; }
  .fundraising-split::before { font-size: 140px; }

  /* ── Membership: How It Works — steps-grid is flex, not grid ── */
  .steps-grid {
    flex-direction: column;
    align-items: stretch;
    max-width: 440px;
    margin: 0 auto;
    gap: 16px;
  }
  .step-connector { display: none; }
  .step-card { padding: 32px 24px 28px; }

  /* ── Membership: Benefits bar ── */
  .benefits-row { flex-direction: column; gap: 20px; }
  .benefit { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 20px; }
  .benefit:last-child { border-bottom: none; }

  /* ── Membership: Success grid ── */
  .success-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .success-section h2 { margin-bottom: 32px; }

  /* ── Membership: problem comparison ── */
  .problem-intro { font-size: 0.9rem; margin-bottom: 32px; }

  /* ── Careers ── */
  .careers-grid { grid-template-columns: 1fr 1fr; }

  /* ── Contact ── */
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-col { padding: 20px; box-shadow: none; }
  .contact-membership-box { flex-direction: column; align-items: flex-start; }

  /* ── Footer ── */
  .footer-top .inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }

  /* ── Buttons: full width on mobile where appropriate ── */
  .hero-content .btn,
  .hero-text-box .btn,
  .why-cta { width: 100%; max-width: 340px; text-align: center; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {

  /* ── Type ── */
  h1 { font-size: 30px !important; }
  h2 { font-size: 24px !important; }

  /* ── Features: single column ── */
  .features-grid { grid-template-columns: 1fr; gap: 12px; }

  /* ── Pricing: single column ── */
  .pricing-grid { grid-template-columns: 1fr; gap: 14px; }

  /* ── CTA perks: full width ── */
  .cta-perks-row { flex-direction: column; }
  .cta-perk { flex: 0 0 100%; }

  /* ── Success: single column ── */
  .success-grid { grid-template-columns: 1fr; gap: 20px; }

  /* ── Careers: single column ── */
  .careers-grid { grid-template-columns: 1fr; }

  /* ── Footer: single column ── */
  .footer-top .inner { grid-template-columns: 1fr; }

  /* ── Contact ── */
  .contact-ctas { flex-direction: column; }

  /* ── Buttons ── */
  .btn, .btn-dark-gradient { padding: 15px 22px; font-size: 14px; width: 100%; text-align: center; }
  .split-cta-row { flex-direction: column; align-items: flex-start; }
  .split-cta-row .btn { width: 100%; text-align: center; }

  /* ── Hero ── */
  .hero-content h1 { font-size: 28px !important; }
  .hero-text-box h1 { font-size: 28px !important; }
  .hero-content { padding: 44px 16px 60px; }

  /* ── Comparison boxes ── */
  .comparison-col { padding: 22px 18px; }
  .comparison-header h3 { font-size: 0.95rem; }
  .comparison-list li { font-size: 0.88rem; gap: 8px; }

  /* ── Wash menu toggle ── */
  .toggle-pill-btn { font-size: 12px; padding: 8px 16px; }

  /* ── Pricing cards ── */
  .pricing-card-wash { padding: 28px 20px; }
  .pricing-card-wash .price-display .dollar { font-size: 44px; }
  .pricing-card-wash .tier-name { font-size: 22px; }

  /* ── Step cards ── */
  .step-card { padding: 28px 20px 24px; }

  /* ── Keep-clean feature cards ── */
  .split-perks li { padding: 12px 14px; font-size: 14px; }

  /* ── Footer ── */
  .footer-brand { text-align: center; }
  .social-links { justify-content: center; }
}

/* ============================================================
   RESPONSIVE — VERY SMALL  (≤ 360px)
   ============================================================ */
@media (max-width: 360px) {
  h1 { font-size: 26px !important; }
  h2 { font-size: 22px !important; }
  .container { padding: 0 16px; }
  .hero-content { padding: 36px 16px 52px; }
  .pricing-card-wash .price-display .dollar { font-size: 38px; }
  .step-card { padding: 24px 16px; }
  .comparison-col { padding: 18px 14px; }
}

/* ============================================================
   MEMBERSHIP — BENEFIT BAR ICONS
   ============================================================ */
.benefit-icon {
  display: block;
  font-size: 1.4rem;
  color: var(--red);
  margin-bottom: 10px;
}

/* ============================================================
   MEMBERSHIP — PROBLEM SECTION
   ============================================================ */
.problem-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px;
  text-align: center;
}
.problem-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 1;
}
.problem-section .container {
  position: relative;
  z-index: 2;
}
.problem-section .eyebrow { color: var(--red); }
.problem-section h2 { color: var(--white); margin-bottom: 16px; }
.problem-intro {
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin: 0 auto 48px;
  font-size: 1rem;
  line-height: 1.75;
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 52px 1fr;
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
  align-items: stretch;
}
.comparison-col {
  border-radius: 12px;
  padding: 36px 32px;
  text-align: left;
}
.comparison-bad {
  background: rgba(30,30,35,0.92);
  border: 1px solid rgba(255,255,255,0.18);
}
.comparison-good {
  background: rgba(15,40,65,0.95);
  border: 1px solid rgba(50,169,239,0.55);
}
.comparison-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
}
.comparison-bad .comparison-header { border-bottom: 1px solid rgba(255,255,255,0.1); }
.comparison-good .comparison-header { border-bottom: 1px solid rgba(50,169,239,0.3); }
.comparison-header h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0;
}
.comparison-bad .comparison-header h3 i { color: rgba(255,255,255,0.25); }
.comparison-good .comparison-header h3 i { color: var(--blue); }
.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  line-height: 1.55;
}
.comparison-list li i { font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; }
.comparison-bad .comparison-list li { color: rgba(255,255,255,0.4); }
.comparison-bad .comparison-list li i { color: rgba(255,255,255,0.2); }
.comparison-good .comparison-list li { color: rgba(255,255,255,0.85); }
.comparison-good .comparison-list li i { color: var(--blue); }
.comparison-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 2px;
}
@media (max-width: 680px) {
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-vs { padding: 8px 0; }
}

/* ============================================================
   MEMBERSHIP — KEEP CLEAN ENHANCEMENT
   ============================================================ */
.keep-clean-intro {
  color: rgba(0,0,0,0.6);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 8px;
}

/* ============================================================
   MEMBERSHIP — HOW IT WORKS
   ============================================================ */
.how-it-works-section {
  background: #f5f5f5;
  padding: 80px 0 90px;
  text-align: center;
}
.how-it-works-section .eyebrow { color: var(--red); }
.how-it-works-section h2 { color: var(--black); margin-bottom: 12px; }
.how-intro {
  color: rgba(0,0,0,0.5);
  max-width: 500px;
  margin: 0 auto 52px;
  font-size: 1rem;
  line-height: 1.75;
}
.steps-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 940px;
  margin: 0 auto;
}
.step-card {
  flex: 1;
  padding: 40px 28px 36px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  text-align: center;
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative;
  overflow: hidden;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.13);
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  color: rgba(0,0,0,0.18);
  font-size: 1.1rem;
  padding: 0 12px;
  flex-shrink: 0;
}
.step-number {
  position: absolute;
  top: -12px;
  right: -8px;
  font-size: 150px;
  font-weight: 800;
  font-style: italic;
  color: rgba(0,0,0,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  font-family: 'Montserrat', Arial, sans-serif;
}
.step-icon { font-size: 1.8rem; color: var(--red); margin-bottom: 16px; }
.step-card h4 { color: var(--black); font-style: italic; margin-bottom: 10px; }
.step-card p { color: rgba(0,0,0,0.5); font-size: 0.9rem; line-height: 1.65; }

/* ============================================================
   MEMBERSHIP — SUCCESS SECTION
   ============================================================ */
.success-section {
  background: var(--white);
  padding: 80px 0 90px;
  text-align: center;
}
.success-section .eyebrow { color: var(--red); }
.success-section h2 { color: var(--black); margin-bottom: 52px; }
.success-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  max-width: 1060px;
  margin: 0 auto;
}
.success-item { text-align: center; }
.success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--red) 0%, #c0201f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.35rem;
  color: #fff;
  transition: transform 0.2s;
}
.success-item:hover .success-icon { transform: scale(1.1); }
.success-item h4 { color: var(--black); font-style: italic; margin-bottom: 10px; font-size: 1rem; }
.success-item p { color: rgba(0,0,0,0.52); font-size: 0.88rem; line-height: 1.65; }

/* ============================================================
   MEMBERSHIP — FAQ SECTION
   ============================================================ */
.membership-faq-section {
  background: #0a0a0a;
  padding: 80px 0 90px;
}
.membership-faq-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.membership-faq-header { margin-bottom: 48px; }
.membership-faq-header .eyebrow { color: var(--red); }
.membership-faq-header h2 { color: var(--white); margin-bottom: 12px; }
.membership-faq-header p { color: rgba(255,255,255,0.5); font-size: 0.95rem; }
.membership-faq-section .faq-item { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); text-align: left; }
.membership-faq-section .faq-question { color: var(--white); }
.membership-faq-section .faq-question .faq-icon { color: rgba(255,255,255,0.5); }
.membership-faq-section .faq-question::after { background: rgba(255,255,255,0.15); }
.membership-faq-section .faq-question:hover { color: var(--blue); }
.membership-faq-section .faq-answer p { color: rgba(255,255,255,0.65); }

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.privacy-hero {
  background: #f7f7f7;
  padding: 64px 0 48px;
  border-bottom: 1px solid #e8e8e8;
}
.privacy-hero .section-label {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}
.privacy-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  font-style: italic;
  color: var(--black);
  margin-bottom: 12px;
}
.privacy-meta {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
}
.privacy-body {
  padding: 64px 0 80px;
  background: #fff;
}
.privacy-container {
  max-width: 780px;
  margin: 0 auto;
}
.privacy-block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #f0f0f0;
}
.privacy-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.privacy-block h2 {
  font-size: 1.1rem;
  font-weight: 700;
  font-style: normal;
  color: var(--black);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.privacy-block p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 12px;
}
.privacy-block p:last-child { margin-bottom: 0; }
.privacy-list {
  list-style: none;
  margin: 12px 0;
  padding: 0;
}
.privacy-list li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #444;
  padding: 6px 0 6px 20px;
  position: relative;
}
.privacy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}
.privacy-list li strong { color: var(--black); }
.privacy-list li a { color: var(--blue); text-decoration: underline; }

/* ============================================================
   ADA ACCESSIBILITY WIDGET
   ============================================================ */
.ada-widget-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 52px;
  height: 52px;
  background: var(--blue);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 8990;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.28);
  transition: transform 0.2s, background 0.2s;
}
.ada-widget-btn:hover { transform: scale(1.1); background: var(--red); }
.ada-widget-btn:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.ada-widget-btn i { color: #fff; font-size: 1.4rem; pointer-events: none; }
.ada-panel {
  position: fixed;
  bottom: 86px;
  left: 24px;
  width: 288px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  z-index: 8989;
  overflow: hidden;
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.ada-panel.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.ada-panel-header {
  background: var(--blue);
  padding: 16px 20px;
}
.ada-panel-header h4 {
  font-size: 0.9rem;
  font-weight: 800;
  font-style: normal;
  margin: 0 0 2px;
  color: #fff;
  letter-spacing: 0.03em;
}
.ada-panel-header p { font-size: 0.75rem; margin: 0; color: rgba(255,255,255,0.75); }
.ada-panel-body { padding: 12px 16px 16px; }
.ada-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f2f2f2;
}
.ada-control:last-of-type { border-bottom: none; }
.ada-control-label {
  font-size: 0.83rem;
  font-weight: 700;
  color: #222;
  line-height: 1.2;
  cursor: default;
}
.ada-control-label span {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: #999;
  margin-top: 2px;
}
/* Toggle switch */
.ada-toggle {
  position: relative;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}
.ada-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.ada-toggle-slider {
  position: absolute;
  inset: 0;
  background: #d8d8d8;
  border-radius: 24px;
  transition: background 0.2s;
}
.ada-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.ada-toggle input:checked + .ada-toggle-slider { background: var(--blue); }
.ada-toggle input:checked + .ada-toggle-slider::before { transform: translateX(18px); }
.ada-toggle input:focus-visible + .ada-toggle-slider { outline: 2px solid var(--blue); outline-offset: 2px; }
/* Font size control */
.ada-font-control { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.ada-font-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #ddd;
  background: #f6f6f6;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  padding: 0;
}
.ada-font-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.ada-font-btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.ada-size-lbl { font-size: 0.78rem; color: #555; min-width: 34px; text-align: center; font-weight: 600; }
/* Reset button */
.ada-reset-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 9px 12px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: #666;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.15s, color 0.15s;
}
.ada-reset-btn:hover { background: #ececec; color: #222; }
/* Body modifier classes */
body.ada-links a:not(.ada-widget-btn):not(.ada-reset-btn) {
  outline: 2px solid #e6b800 !important;
  background: rgba(255,235,0,0.18) !important;
  border-radius: 2px;
}
body.ada-pause *,
body.ada-pause *::before,
body.ada-pause *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
}
@media (max-width: 480px) {
  .ada-widget-btn { bottom: 16px; left: 16px; width: 46px; height: 46px; }
  .ada-panel { left: 12px; bottom: 74px; width: calc(100vw - 24px); }
}

/* ============================================================
   COMING SOON MODAL
   ============================================================ */
.coming-soon-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.coming-soon-modal[hidden] { display: none; }
.coming-soon-inner {
  background: #fff;
  border-radius: 14px;
  padding: 48px 40px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
}
.coming-soon-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #888;
  padding: 4px 8px;
}
.coming-soon-close:hover { color: #111; }
.coming-soon-icon {
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 16px;
}
.coming-soon-inner h3 {
  font-size: 1.75rem;
  font-weight: 800;
  font-style: italic;
  margin-bottom: 12px;
  color: #0a0a0a;
}
.coming-soon-inner p {
  color: #555;
  margin-bottom: 28px;
  font-size: 0.95rem;
  line-height: 1.6;
}
