/* =========================================
   CHRIS'S CLEAN CANS — Main Stylesheet
   ========================================= */

:root {
  --bg-deep:      #080812;
  --bg-dark:      #0d0d1a;
  --bg-mid:       #111128;
  --bg-card:      #16162e;
  --yellow:       #FFD700;
  --yellow-light: #FFE84D;
  --yellow-dark:  #C9A800;
  --blue:         #1B72E8;
  --blue-light:   #4A9FE0;
  --blue-dark:    #0F4BA8;
  --green:        #4CAF50;
  --green-light:  #69D46C;
  --green-dark:   #2E7D32;
  --white:        #FFFFFF;
  --grey-light:   #c8c8e0;
  --grey-mid:     #8888aa;
  --border:       rgba(255,215,0,0.15);
  --glow-yellow:  0 0 30px rgba(255,215,0,0.3);
  --glow-blue:    0 0 30px rgba(27,114,232,0.4);
  --glow-green:   0 0 30px rgba(76,175,80,0.4);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-deep);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

.section-pad { padding: 100px 0; }
.dark-section { background: var(--bg-dark); }

/* ── Typography ── */
h1, h2, h3 { line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }
p  { color: var(--grey-light); }

/* ── Section Headers ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-badge {
  display: inline-block;
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--grey-mid); max-width: 540px; margin: 0 auto; font-size: 1.1rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color: var(--bg-deep);
  box-shadow: 0 4px 20px rgba(255,215,0,0.35);
}
.btn-primary:hover { box-shadow: 0 8px 30px rgba(255,215,0,0.5); }

.btn-outline {
  background: transparent;
  border-color: var(--yellow);
  color: var(--yellow);
}
.btn-outline:hover { background: rgba(255,215,0,0.1); }

.btn-ghost {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.site-header.scrolled {
  background: rgba(8,8,18,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  padding: 10px 0;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link { display: flex; align-items: center; gap: 12px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--blue-light);
  letter-spacing: 0.05em;
}
.logo-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  color: var(--yellow);
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--yellow), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--grey-light);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-cta {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark)) !important;
  color: var(--bg-deep) !important;
  padding: 10px 22px !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  margin-left: 12px;
  box-shadow: 0 4px 16px rgba(255,215,0,0.3);
  transition: box-shadow var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,215,0,0.45) !important; background: rgba(255,255,255,0.06) !important; color: var(--bg-deep) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(27,114,232,0.25) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 80% 50%, rgba(76,175,80,0.12) 0%, transparent 50%),
              var(--bg-deep);
  overflow: hidden;
  padding-top: 90px;
}
.hero-bg-bubbles { position: absolute; inset: 0; pointer-events: none; }
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,114,232,0.3), transparent);
  animation: floatBubble linear infinite;
}
.bubble:nth-child(1)  { width: 60px; height: 60px; left: 5%;  bottom: -80px; animation-duration: 8s;  animation-delay: 0s; }
.bubble:nth-child(2)  { width: 30px; height: 30px; left: 15%; bottom: -80px; animation-duration: 10s; animation-delay: 1s; background: radial-gradient(circle, rgba(76,175,80,0.25), transparent); }
.bubble:nth-child(3)  { width: 80px; height: 80px; left: 25%; bottom: -80px; animation-duration: 7s;  animation-delay: 2s; }
.bubble:nth-child(4)  { width: 20px; height: 20px; left: 35%; bottom: -80px; animation-duration: 12s; animation-delay: 0.5s; background: radial-gradient(circle, rgba(255,215,0,0.2), transparent); }
.bubble:nth-child(5)  { width: 45px; height: 45px; left: 45%; bottom: -80px; animation-duration: 9s;  animation-delay: 3s; }
.bubble:nth-child(6)  { width: 70px; height: 70px; left: 55%; bottom: -80px; animation-duration: 11s; animation-delay: 1.5s; background: radial-gradient(circle, rgba(76,175,80,0.2), transparent); }
.bubble:nth-child(7)  { width: 25px; height: 25px; left: 65%; bottom: -80px; animation-duration: 6s;  animation-delay: 4s; background: radial-gradient(circle, rgba(255,215,0,0.15), transparent); }
.bubble:nth-child(8)  { width: 55px; height: 55px; left: 75%; bottom: -80px; animation-duration: 13s; animation-delay: 2.5s; }
.bubble:nth-child(9)  { width: 35px; height: 35px; left: 82%; bottom: -80px; animation-duration: 8s;  animation-delay: 1s; }
.bubble:nth-child(10) { width: 90px; height: 90px; left: 10%; bottom: -80px; animation-duration: 15s; animation-delay: 5s; background: radial-gradient(circle, rgba(27,114,232,0.15), transparent); }
.bubble:nth-child(11) { width: 40px; height: 40px; left: 90%; bottom: -80px; animation-duration: 9s;  animation-delay: 3.5s; background: radial-gradient(circle, rgba(76,175,80,0.2), transparent); }
.bubble:nth-child(12) { width: 15px; height: 15px; left: 70%; bottom: -80px; animation-duration: 7s;  animation-delay: 6s; background: radial-gradient(circle, rgba(255,215,0,0.25), transparent); }

@keyframes floatBubble {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-110vh) scale(0.8); opacity: 0; }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.35);
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.badge::before { content: '★'; }
.hero-headline {
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.highlight-green {
  background: linear-gradient(135deg, var(--green-light), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: bold;
}
.hero-sub {
  font-size: 1.2rem;
  color: var(--grey-light);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  width: fit-content;
}
.trust-item { text-align: center; }
.trust-num { display: block; font-size: 1.5rem; font-weight: 800; color: var(--yellow); }
.trust-label { font-size: 0.75rem; color: var(--grey-mid); text-transform: uppercase; letter-spacing: 0.06em; }
.trust-divider { width: 1px; height: 40px; background: var(--border); }

/* ── Trash Can CSS Art ── */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.trash-can-scene {
  position: relative;
  width: 320px;
  height: 380px;
}
.clean-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse, rgba(76,175,80,0.25) 0%, rgba(27,114,232,0.15) 40%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 3s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(1.1); opacity: 1; }
}
.trash-can-wrapper {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation: canBounce 3s ease-in-out infinite;
}
@keyframes canBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-12px); }
}
.trash-can { position: relative; width: 160px; }
.can-lid {
  width: 180px;
  height: 24px;
  background: linear-gradient(180deg, #5acd5e, #2e8d32);
  border-radius: 12px 12px 4px 4px;
  margin-left: -10px;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  animation: lidTilt 3s ease-in-out infinite;
}
@keyframes lidTilt {
  0%, 100% { transform: rotate(0deg); transform-origin: right center; }
  30%       { transform: rotate(-8deg); transform-origin: right center; }
  60%       { transform: rotate(-4deg); transform-origin: right center; }
}
.can-body {
  width: 160px;
  height: 200px;
  background: linear-gradient(160deg, #5acd5e 0%, #3da840 30%, #2e8d32 100%);
  border-radius: 8px 8px 20px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 4px 8px 24px rgba(0,0,0,0.5), inset -4px 0 16px rgba(0,0,0,0.2), inset 4px 0 8px rgba(255,255,255,0.1);
}
.can-face {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.can-eyes { display: flex; gap: 24px; }
.eye {
  width: 28px; height: 28px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}
.pupil {
  width: 14px; height: 14px;
  background: #1a1a2e;
  border-radius: 50%;
  animation: eyeLook 4s ease-in-out infinite;
}
@keyframes eyeLook {
  0%, 100% { transform: translate(0,0); }
  25%       { transform: translate(2px, -1px); }
  75%       { transform: translate(-2px, 1px); }
}
.can-smile {
  width: 40px; height: 20px;
  border-bottom: 4px solid white;
  border-radius: 0 0 20px 20px;
}
.can-stripes {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50px;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 14px,
    rgba(0,0,0,0.15) 14px,
    rgba(0,0,0,0.15) 16px
  );
}
.can-wheels {
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  margin-top: 4px;
}
.wheel {
  width: 32px; height: 32px;
  background: radial-gradient(circle at 35% 35%, #555, #1a1a1a);
  border-radius: 50%;
  border: 3px solid #444;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
  animation: wheelSpin 2s linear infinite;
}
@keyframes wheelSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* spray particles */
.spray-particles {
  position: absolute;
  top: 20px; right: 10px;
  pointer-events: none;
}
.spray-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(100,200,255,0.8);
  animation: spray linear infinite;
}
.spray-dot:nth-child(1) { width: 8px; height: 8px; animation-duration: 1.2s; animation-delay: 0s; }
.spray-dot:nth-child(2) { width: 5px; height: 5px; animation-duration: 0.9s; animation-delay: 0.1s; }
.spray-dot:nth-child(3) { width: 6px; height: 6px; animation-duration: 1.4s; animation-delay: 0.25s; }
.spray-dot:nth-child(4) { width: 4px; height: 4px; animation-duration: 1.0s; animation-delay: 0.35s; }
.spray-dot:nth-child(5) { width: 9px; height: 9px; animation-duration: 1.3s; animation-delay: 0.5s; }
.spray-dot:nth-child(6) { width: 3px; height: 3px; animation-duration: 0.8s; animation-delay: 0.6s; }
.spray-dot:nth-child(7) { width: 7px; height: 7px; animation-duration: 1.1s; animation-delay: 0.15s; }
.spray-dot:nth-child(8) { width: 5px; height: 5px; animation-duration: 1.5s; animation-delay: 0.4s; }
@keyframes spray {
  0%   { transform: translate(0,0) scale(1); opacity: 0.9; }
  100% { transform: translate(calc(var(--dx, 40px) + (var(--i, 0) * 8px)), calc(var(--dy, 30px) + (var(--i, 0) * 10px))) scale(0); opacity: 0; }
}
.spray-dot:nth-child(1) { --dx: 50px; --dy: -20px; --i: 0; }
.spray-dot:nth-child(2) { --dx: 35px; --dy: -10px; --i: 1; }
.spray-dot:nth-child(3) { --dx: 60px; --dy: -35px; --i: 2; }
.spray-dot:nth-child(4) { --dx: 25px; --dy: -5px;  --i: 3; }
.spray-dot:nth-child(5) { --dx: 70px; --dy: -45px; --i: 4; }
.spray-dot:nth-child(6) { --dx: 20px; --dy: 5px;   --i: 5; }
.spray-dot:nth-child(7) { --dx: 55px; --dy: -30px; --i: 6; }
.spray-dot:nth-child(8) { --dx: 40px; --dy: -15px; --i: 7; }

/* water splash */
.water-splash {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.splash-drop {
  position: absolute;
  background: rgba(100,200,255,0.7);
  border-radius: 50%;
  animation: splashOut ease-out infinite;
}
.splash-drop:nth-child(1) { width: 6px; height: 6px; animation-duration: 1.5s; animation-delay: 0s;    --sx: -50px; --sy: -30px; }
.splash-drop:nth-child(2) { width: 4px; height: 4px; animation-duration: 1.2s; animation-delay: 0.2s;  --sx: 50px;  --sy: -25px; }
.splash-drop:nth-child(3) { width: 8px; height: 8px; animation-duration: 1.8s; animation-delay: 0.4s;  --sx: -30px; --sy: -40px; }
.splash-drop:nth-child(4) { width: 3px; height: 3px; animation-duration: 1.0s; animation-delay: 0.6s;  --sx: 40px;  --sy: -15px; }
.splash-drop:nth-child(5) { width: 5px; height: 5px; animation-duration: 1.4s; animation-delay: 0.1s;  --sx: -60px; --sy: -20px; }
.splash-drop:nth-child(6) { width: 7px; height: 7px; animation-duration: 1.6s; animation-delay: 0.8s;  --sx: 60px;  --sy: -35px; }
@keyframes splashOut {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.9; }
  100% { transform: translate(var(--sx), var(--sy)) scale(0.2); opacity: 0; }
}

.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 100px; }

/* ── Animations ── */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
}
.animate-fade-left {
  opacity: 0;
  transform: translateX(40px);
  animation: fadeLeft 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp  { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { to { opacity: 1; transform: translateX(0); } }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }

/* ── How It Works ── */
.how-it-works { background: var(--bg-mid); }
.steps {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}
.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), var(--glow-blue);
}
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: rgba(255,215,0,0.08);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
}
.step-icon { font-size: 3rem; margin-bottom: 16px; }
.step h3 { color: var(--white); margin-bottom: 12px; }
.step p { color: var(--grey-mid); font-size: 0.95rem; }

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), transparent);
  flex-shrink: 0;
  margin: 0 -1px;
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); border-color: rgba(255,215,0,0.3); }
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  border-color: rgba(255,215,0,0.4);
  background: linear-gradient(160deg, rgba(255,215,0,0.06), var(--bg-card));
  box-shadow: 0 8px 40px rgba(255,215,0,0.1);
}
.service-card.featured::before { opacity: 1; background: linear-gradient(90deg, var(--yellow), var(--green)); }
.featured-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color: var(--bg-deep);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.service-icon-wrap { font-size: 2.8rem; margin-bottom: 20px; }
.service-card h3 { color: var(--white); margin-bottom: 12px; }
.service-card p { color: var(--grey-mid); font-size: 0.95rem; line-height: 1.6; margin-bottom: 24px; }
.card-link { color: var(--yellow); font-weight: 600; font-size: 0.95rem; transition: gap var(--transition); }
.card-link:hover { color: var(--yellow-light); }

/* ── Why Us ── */
.why-us { background: var(--bg-deep); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-card-stack {
  position: relative;
  height: 380px;
}
.why-stat-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: transform var(--transition);
}
.why-stat-card:hover { transform: scale(1.04); z-index: 2; }
.stat-big { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--grey-mid); font-weight: 500; }
.card-1 { top: 0; left: 0; width: 220px; .stat-big { color: var(--green-light); } }
.card-2 { top: 80px; right: 0; width: 200px; }
.card-3 { bottom: 0; left: 60px; width: 220px; }
.card-1 .stat-big { color: var(--green-light); }
.card-2 .stat-big { color: var(--blue-light); }
.card-3 .stat-big { color: var(--yellow); }

.why-content .section-badge { margin-bottom: 16px; }
.why-content h2 { margin-bottom: 20px; }
.why-intro { color: var(--grey-light); margin-bottom: 36px; font-size: 1.1rem; line-height: 1.7; }
.why-points { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.point-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-point h4 { color: var(--white); margin-bottom: 4px; font-size: 1.05rem; }
.why-point p { color: var(--grey-mid); font-size: 0.9rem; }

/* ── Testimonials ── */
.testimonials { background: var(--bg-dark); }
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.stars { color: var(--yellow); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 20px; }
.testimonial-card p { color: var(--grey-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.reviewer strong { display: block; color: var(--white); font-size: 0.95rem; }
.reviewer span { color: var(--grey-mid); font-size: 0.8rem; }

/* ── Pricing ── */
.pricing-teaser { background: var(--bg-mid); }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-8px); }
.pricing-card.featured {
  border-color: var(--yellow);
  background: linear-gradient(160deg, rgba(255,215,0,0.08), var(--bg-card));
  box-shadow: 0 8px 40px rgba(255,215,0,0.15);
  transform: scale(1.04);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-8px); }
.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color: var(--bg-deep);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name { font-size: 1.1rem; font-weight: 700; color: var(--grey-mid); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.plan-price { margin-bottom: 20px; }
.currency { font-size: 1.8rem; font-weight: 700; color: var(--yellow); vertical-align: top; margin-top: 8px; display: inline-block; }
.plan-price { font-size: 4rem; font-weight: 800; color: var(--white); line-height: 1; }
.per { font-size: 1rem; color: var(--grey-mid); font-weight: 400; }
.pricing-card > p { color: var(--grey-mid); font-size: 0.9rem; margin-bottom: 28px; min-height: 56px; }
.pricing-card ul { text-align: left; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.pricing-card li { color: var(--grey-light); font-size: 0.9rem; display: flex; gap: 8px; }
.pricing-note { text-align: center; color: var(--grey-mid); font-size: 0.9rem; }
.pricing-note a { color: var(--yellow); }

/* ── CTA Banner ── */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue-dark), var(--bg-dark), var(--green-dark));
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bubbles { position: absolute; inset: 0; pointer-events: none; }
.cta-bubble {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  animation: ctaFloat ease-in-out infinite;
}
.cta-bubble:nth-child(1) { width: 120px; height: 120px; top: 10%;  left: 5%;  animation-duration: 6s; animation-delay: 0s; }
.cta-bubble:nth-child(2) { width: 80px;  height: 80px;  top: 60%;  left: 10%; animation-duration: 8s; animation-delay: 1s; }
.cta-bubble:nth-child(3) { width: 160px; height: 160px; top: 20%;  right: 8%; animation-duration: 7s; animation-delay: 2s; }
.cta-bubble:nth-child(4) { width: 60px;  height: 60px;  bottom: 15%; right: 20%; animation-duration: 5s; animation-delay: 0.5s; }
.cta-bubble:nth-child(5) { width: 100px; height: 100px; top: 40%;  left: 40%; animation-duration: 9s; animation-delay: 3s; }
.cta-bubble:nth-child(6) { width: 50px;  height: 50px;  top: 70%;  right: 5%; animation-duration: 6s; animation-delay: 1.5s; }
@keyframes ctaFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-20px); }
}
.cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-content p { color: var(--grey-light); font-size: 1.15rem; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(27,114,232,0.2) 0%, transparent 60%), var(--bg-dark);
  padding: 140px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-subtitle { color: var(--grey-light); font-size: 1.15rem; margin-top: 12px; max-width: 600px; margin-left: auto; margin-right: auto; }
.content-prose h2 { color: var(--white); margin: 48px 0 16px; }
.content-prose h3 { color: var(--yellow); margin: 32px 0 12px; }
.content-prose p { color: var(--grey-light); margin-bottom: 16px; font-size: 1rem; line-height: 1.8; }
.content-prose ul { list-style: disc; padding-left: 24px; margin-bottom: 24px; }
.content-prose li { color: var(--grey-light); margin-bottom: 8px; }

/* ── Footer ── */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding-top: 0;
}
.footer-waves { line-height: 0; }
.footer-waves svg { width: 100%; height: 80px; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
}
.footer-logo-text { display: flex; flex-direction: column; line-height: 1.1; margin-bottom: 16px; }
.footer-tagline { color: var(--grey-mid); font-style: italic; font-size: 0.95rem; }
.footer-links h4, .footer-contact h4 {
  color: var(--yellow);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--grey-mid); font-size: 0.95rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact p { color: var(--grey-mid); font-size: 0.95rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.footer-contact a { color: var(--grey-light); transition: color var(--transition); }
.footer-contact a:hover { color: var(--yellow); }
.icon { font-size: 1rem; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--grey-mid);
  transition: background var(--transition), color var(--transition);
}
.social-btn:hover { background: var(--yellow); color: var(--bg-deep); border-color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px;
  text-align: center;
}
.footer-bottom p { color: var(--grey-mid); font-size: 0.85rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid, .testimonials-track { grid-template-columns: 1fr 1fr; }
  .testimonials-track .testimonial-card:last-child { grid-column: 1 / -1; max-width: 500px; margin: 0 auto; }
  .why-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 72px 0; }
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 48px; padding: 40px 24px 80px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { margin: 0 auto; flex-wrap: wrap; gap: 16px; }
  .hero-visual { order: -1; }
  .trash-can-scene { width: 240px; height: 280px; }
  .can-body { width: 120px; height: 150px; }
  .can-lid { width: 136px; }

  .steps { flex-direction: column; gap: 16px; }
  .step-connector { width: 2px; height: 40px; background: linear-gradient(180deg, var(--yellow), transparent); }

  .services-grid, .testimonials-track, .pricing-cards { grid-template-columns: 1fr; }
  .testimonials-track .testimonial-card:last-child { grid-column: auto; max-width: 100%; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-8px); }

  .why-grid { grid-template-columns: 1fr; }
  .why-card-stack { height: 260px; }
  .why-stat-card { padding: 20px 24px; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }

  .main-nav {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(8,8,18,0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--border);
  }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav ul a { display: block; padding: 12px 16px; }
  .nav-cta { margin-left: 0; margin-top: 12px; text-align: center; }
  .hamburger { display: flex; }
}

/* ── Contact Page ── */
.contact-section { background: var(--bg-mid); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { color: var(--white); margin-bottom: 32px; }
.contact-detail {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-icon {
  font-size: 1.4rem;
  width: 48px; height: 48px;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail strong { display: block; color: var(--white); font-weight: 600; margin-bottom: 4px; }
.contact-detail a, .contact-detail span { color: var(--grey-light); font-size: 0.95rem; }
.contact-detail a:hover { color: var(--yellow); }

.contact-steps { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border); }
.contact-steps h3 { color: var(--white); margin-bottom: 20px; }
.mini-step { display: flex; gap: 14px; align-items: center; margin-bottom: 14px; }
.mini-num {
  width: 28px; height: 28px;
  background: var(--yellow);
  color: var(--bg-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.mini-step p { color: var(--grey-light); font-size: 0.9rem; margin: 0; }

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}
.form-card h2 { color: var(--white); margin-bottom: 8px; }
.form-card > p { color: var(--grey-mid); margin-bottom: 32px; }

.booking-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--grey-light); text-transform: uppercase; letter-spacing: 0.06em; }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--grey-mid); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,215,0,0.12);
}
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; min-height: 80px; }

.submit-btn { width: 100%; justify-content: center; font-size: 1.1rem; }
.form-note { text-align: center; color: var(--grey-mid); font-size: 0.82rem; margin-top: -8px; }

/* ── Full Pricing Page ── */
.full-pricing { background: var(--bg-mid); }
.commercial-cta { margin-top: 64px; }
.commercial-box {
  background: linear-gradient(135deg, rgba(27,114,232,0.15), rgba(76,175,80,0.1));
  border: 1px solid rgba(27,114,232,0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.commercial-icon { font-size: 3rem; flex-shrink: 0; }
.commercial-box h3 { color: var(--white); margin-bottom: 8px; }
.commercial-box p { color: var(--grey-light); font-size: 0.95rem; margin: 0; }
.commercial-box .btn { flex-shrink: 0; margin-left: auto; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.faq-item h4 { color: var(--yellow); margin-bottom: 10px; font-size: 1rem; }
.faq-item p { color: var(--grey-light); font-size: 0.9rem; margin: 0; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .commercial-box { flex-direction: column; text-align: center; }
  .commercial-box .btn { margin-left: 0; }
  .faq-grid { grid-template-columns: 1fr; }
}

/* ── Logo image in header/footer ── */
.site-logo {
  height: 160px;
  width: auto;
  display: block;
  transition: transform var(--transition);
}
.site-logo:hover { transform: scale(1.04); }
.footer-logo-img {
  height: 72px;
  width: auto;
  margin-bottom: 12px;
}
/* hide old text logo if image present */
.logo-text { display: none; }

/* ── Plan emoji (replaces price) ── */
.plan-emoji {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

/* ── Steps: 4-column ── */
@media (min-width: 769px) {
  .steps { gap: 0; }
  .step { padding: 32px 24px; }
}

/* ── FAQ Accordion ── */
.faq-page { background: var(--bg-mid); }
.faq-page-inner { max-width: 860px; }
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 64px;
}
.faq-item-acc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item-acc:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(255,215,0,0.4);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
  font-family: 'Inter', sans-serif;
}
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--yellow);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 28px;
}
.faq-answer.open {
  max-height: 600px;
  padding: 0 28px 24px;
}
.faq-answer p { color: var(--grey-light); margin-bottom: 12px; font-size: 0.97rem; line-height: 1.7; }
.faq-answer ul { padding-left: 20px; margin-bottom: 12px; list-style: disc; }
.faq-answer li { color: var(--grey-light); font-size: 0.95rem; margin-bottom: 6px; }
.faq-answer a { color: var(--yellow); text-decoration: underline; }

.faq-still-questions { margin-top: 16px; }
.still-q-box {
  background: linear-gradient(135deg, rgba(27,114,232,0.15), rgba(76,175,80,0.1));
  border: 1px solid rgba(27,114,232,0.3);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}
.still-q-icon { font-size: 3rem; margin-bottom: 16px; }
.still-q-box h3 { color: var(--white); margin-bottom: 12px; font-size: 1.6rem; }
.still-q-box p { color: var(--grey-light); margin-bottom: 32px; font-size: 1rem; }
.still-q-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── About Page ── */
.about-page { background: var(--bg-mid); }
.owner-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}
.owner-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
}
.owner-avatar-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
}
.owner-avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--blue), var(--green));
  animation: spinRing 6s linear infinite;
}
@keyframes spinRing {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.owner-avatar {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--blue-dark), var(--green-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--bg-card);
}
.owner-initials {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
}
.owner-badge-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; align-items: center; }
.owner-badge {
  display: inline-block;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
}
.owner-stats { display: flex; align-items: center; justify-content: center; gap: 20px; }
.o-stat { text-align: center; }
.o-stat-num { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--yellow); line-height: 1; }
.o-stat-label { font-size: 0.72rem; color: var(--grey-mid); text-transform: uppercase; letter-spacing: 0.08em; }
.o-stat-div { width: 1px; height: 36px; background: var(--border); }

.owner-bio .section-badge { margin-bottom: 16px; }
.owner-bio h2 { margin-bottom: 16px; }
.owner-lead { color: var(--white) !important; font-size: 1.15rem; font-weight: 500; margin-bottom: 20px; line-height: 1.6; }
.owner-bio p { color: var(--grey-light); font-size: 0.97rem; line-height: 1.8; margin-bottom: 16px; }
.owner-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }

.values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.value-icon { font-size: 2.2rem; margin-bottom: 12px; }
.value-card h4 { color: var(--yellow); margin-bottom: 8px; font-size: 1rem; }
.value-card p { color: var(--grey-mid); font-size: 0.87rem; line-height: 1.6; margin: 0; }

@media (max-width: 768px) {
  .owner-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-row { grid-template-columns: 1fr 1fr; }
  .still-q-box { padding: 32px 20px; }
  .faq-question { padding: 18px 20px; font-size: 0.97rem; }
  .faq-answer.open { padding: 0 20px 20px; }
}
@media (max-width: 480px) {
  .values-row { grid-template-columns: 1fr; }
}
/* ── Mobile Bug Fixes ── */
@media (max-width: 768px) {

  /* 1. Trash can — scale wrapper to match body */
  .trash-can {
    width: 120px;
  }
  .can-lid {
    width: 136px;
    margin-left: -8px;
  }
  .can-wheels {
    padding: 0 8px;
  }
  .wheel {
    width: 24px;
    height: 24px;
  }

  /* 2. Trust bar — tighten spacing so it fits on one row */
  .hero-trust {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    padding: 16px 20px;
    width: 100%;
  }
  .trust-item {
    padding: 4px 8px;
    text-align: center;
  }
  .trust-divider {
    width: 1px;
    height: 100%;
    align-self: stretch;
  }
  .trust-num {
    font-size: 1.2rem;
  }
  .trust-label {
    font-size: 0.65rem;
  }


  /* 3. Why card stack — switch from absolute to stacked flow */
  .why-card-stack {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
  }
  .why-stat-card {
    position: static;       /* pull out of absolute positioning */
    width: 100% !important; /* override the fixed widths on card-1/2/3 */
    transform: none !important;
  }
}
