/* ============================================================
   BIN BUDDY - Lloydminster AB/SK
   Fresh, friendly, fast. One page, zero frameworks.
   ============================================================ */

:root {
  --ink: #0b2712;
  --pine: #14401f;
  --grass: #3fa544;
  --grass-deep: #2c8735;
  --lime: #7bd152;
  --foam: #f1f9ee;
  --cream: #fbfdf7;
  --paper: #ffffff;
  --cherry: #d6453d;
  --apple: #6fbe3a;
  --sun: #ffd84d;
  --snow-sky: #dfeefb;
  --snow-deep: #1e3a52;
  --text: #22331f;
  --text-soft: #52664e;
  --radius: 22px;
  --shadow-pop: 0 18px 50px -18px rgba(11, 39, 18, .45);
  --font-display: "Lilita One", "Arial Rounded MT Bold", sans-serif;
  --font-body: "Karla", "Helvetica Neue", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, .price, .step-num, .pc-num {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: .01em;
}
h2 { font-size: clamp(2rem, 4.6vw, 3.3rem); margin-bottom: .5em; }
h3 { font-size: 1.35rem; }

.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--grass-deep);
  background: rgba(63, 165, 68, .12);
  border: 2px solid rgba(63, 165, 68, .25);
  padding: .35em 1em;
  border-radius: 99px;
  margin-bottom: 1.1em;
}
.eyebrow-light { color: var(--lime); background: rgba(123, 209, 82, .1); border-color: rgba(123, 209, 82, .28); }
.eyebrow-snow { color: var(--snow-deep); background: rgba(255,255,255,.65); border-color: rgba(30,58,82,.18); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.02rem;
  text-decoration: none;
  padding: .95em 1.7em;
  border-radius: 99px;
  border: 0;
  cursor: pointer;
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s ease, background .18s ease;
}
.btn:active { transform: scale(.96); }
.btn-solid {
  background: linear-gradient(180deg, var(--lime), var(--grass) 55%, var(--grass-deep));
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
  box-shadow: 0 6px 0 var(--pine), 0 16px 30px -12px rgba(44, 135, 53, .55);
}
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 9px 0 var(--pine), 0 22px 36px -12px rgba(44,135,53,.6); }
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,.55);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-3px); }
.btn-ghost-dark { background: transparent; color: var(--snow-deep); border: 2px solid var(--snow-deep); }
.btn-ghost-dark:hover { background: rgba(30,58,82,.08); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--grass-deep); border: 2.5px solid var(--grass); }
.btn-outline:hover { background: rgba(63,165,68,.1); transform: translateY(-3px); }
.btn-snow {
  background: linear-gradient(180deg, #4a7bb5, var(--snow-deep));
  color: #fff;
  box-shadow: 0 6px 0 #122435, 0 16px 30px -12px rgba(30,58,82,.5);
}
.btn-snow:hover { transform: translateY(-3px); }
.btn-wide { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 26px;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.nav.scrolled {
  background: rgba(11, 39, 18, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -12px rgba(0,0,0,.4);
  padding: 8px 26px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand img { filter: drop-shadow(0 2px 6px rgba(0,0,0,.35)); }
.nav-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,.35);
}
.nav-name em { font-style: normal; color: var(--lime); }
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a {
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.nav-links a:hover { color: var(--lime); border-color: var(--lime); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sun);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  padding: .6em 1.2em;
  border-radius: 99px;
  box-shadow: 0 4px 0 #c9a221;
  transition: transform .18s cubic-bezier(.34,1.56,.64,1);
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px) rotate(-1deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(1200px 700px at 68% 30%, #6ec95f 0%, transparent 55%),
    radial-gradient(900px 600px at 20% 80%, #2f9c3f 0%, transparent 60%),
    linear-gradient(160deg, #55b757 0%, #2e8f3c 45%, #1c6b2c 100%);
  overflow: hidden;
  padding: 110px 0 70px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 30px;
}
.hero-kicker {
  color: rgba(255,255,255,.9);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: 1.2em;
}
.hero-title { font-size: clamp(2.6rem, 6.2vw, 4.6rem); color: #fff; margin-bottom: .35em; }
.hero-title .line { display: block; text-shadow: 0 3px 0 rgba(11,39,18,.35), 0 12px 30px rgba(11,39,18,.35); }
.hero-title .line-pop {
  color: var(--sun);
  transform: rotate(-1.5deg);
  text-shadow: 0 3px 0 rgba(11,39,18,.4), 0 12px 30px rgba(11,39,18,.4);
}
.hero-sub {
  color: rgba(255,255,255,.94);
  font-size: 1.13rem;
  max-width: 34em;
  margin-bottom: 1.6em;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 1.8em; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.hero-chips li {
  background: rgba(11,39,18,.35);
  border: 1.5px solid rgba(255,255,255,.35);
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  padding: .45em 1em;
  border-radius: 99px;
  backdrop-filter: blur(3px);
}
.hero-art { position: relative; }
.hero-mascot {
  width: min(100%, 520px);
  margin: 0 auto;
  filter: drop-shadow(0 30px 40px rgba(11,39,18,.45));
  animation: buddy-bob 5s ease-in-out infinite;
}
@keyframes buddy-bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(1.2deg); }
}
.hero-sparkles i {
  position: absolute;
  color: #fff;
  font-style: normal;
  opacity: 0;
  animation: sparkle 3.2s ease-in-out infinite;
}
.hero-sparkles i:nth-child(1) { top: 8%; left: 12%; font-size: 1.6rem; animation-delay: 0s; }
.hero-sparkles i:nth-child(2) { top: 20%; right: 6%; font-size: 1.1rem; animation-delay: .9s; }
.hero-sparkles i:nth-child(3) { bottom: 30%; left: 4%; font-size: 1.2rem; animation-delay: 1.7s; }
.hero-sparkles i:nth-child(4) { bottom: 12%; right: 14%; font-size: 1.8rem; animation-delay: 2.4s; }
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(.4) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(25deg); }
}

/* Floating bubbles */
.hero-bubbles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-bubbles span {
  position: absolute;
  bottom: -80px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,.85), rgba(255,255,255,.15) 42%, rgba(255,255,255,.05) 70%);
  border: 1px solid rgba(255,255,255,.35);
  animation: bubble-rise linear infinite;
}
.hero-bubbles span:nth-child(1)  { left: 4%;  width: 42px; height: 42px; animation-duration: 11s; }
.hero-bubbles span:nth-child(2)  { left: 12%; width: 20px; height: 20px; animation-duration: 9s;  animation-delay: 2s; }
.hero-bubbles span:nth-child(3)  { left: 22%; width: 30px; height: 30px; animation-duration: 13s; animation-delay: 4s; }
.hero-bubbles span:nth-child(4)  { left: 33%; width: 16px; height: 16px; animation-duration: 8s;  animation-delay: 1s; }
.hero-bubbles span:nth-child(5)  { left: 44%; width: 26px; height: 26px; animation-duration: 12s; animation-delay: 5s; }
.hero-bubbles span:nth-child(6)  { left: 55%; width: 38px; height: 38px; animation-duration: 10s; animation-delay: 3s; }
.hero-bubbles span:nth-child(7)  { left: 64%; width: 18px; height: 18px; animation-duration: 9s;  animation-delay: 6s; }
.hero-bubbles span:nth-child(8)  { left: 72%; width: 30px; height: 30px; animation-duration: 14s; animation-delay: 2.5s; }
.hero-bubbles span:nth-child(9)  { left: 81%; width: 22px; height: 22px; animation-duration: 10s; animation-delay: 4.5s; }
.hero-bubbles span:nth-child(10) { left: 88%; width: 44px; height: 44px; animation-duration: 12s; animation-delay: 1.5s; }
.hero-bubbles span:nth-child(11) { left: 94%; width: 14px; height: 14px; animation-duration: 8s;  animation-delay: 5.5s; }
.hero-bubbles span:nth-child(12) { left: 50%; width: 12px; height: 12px; animation-duration: 7s;  animation-delay: 0.5s; }
@keyframes bubble-rise {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateY(-108vh) translateX(30px) scale(1.15); opacity: 0; }
}

.wave { position: absolute; bottom: -1px; left: 0; width: 100%; height: 90px; z-index: 3; }

/* ---------- Problem ---------- */
.problem {
  background: var(--ink);
  color: var(--foam);
  padding: 96px 0 110px;
  position: relative;
}
.problem h2 { color: #fff; max-width: 15em; }
.problem .gross {
  color: var(--sun);
  display: inline-block;
  transform: rotate(-2deg);
  text-decoration: underline wavy var(--cherry) 3px;
  text-underline-offset: 8px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.problem-card {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(123, 209, 82, .18);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.problem-card:hover { transform: translateY(-6px) rotate(-.5deg); border-color: rgba(123,209,82,.45); background: rgba(255,255,255,.08); }
.p-icon { font-size: 2.2rem; margin-bottom: 14px; }
.problem-card h3 { color: var(--lime); margin-bottom: 8px; }
.problem-card p { color: rgba(241,249,238,.82); font-size: .98rem; }
.problem-punch {
  margin-top: 52px;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 800;
  color: #fff;
  max-width: 30em;
}

/* ---------- Flies (pain point) ---------- */
.flies {
  position: relative;
  padding: 100px 0;
  background:
    radial-gradient(700px 420px at 18% 35%, rgba(214,69,61,.09) 0%, transparent 60%),
    radial-gradient(600px 400px at 85% 80%, rgba(255,216,77,.12) 0%, transparent 55%),
    #fffdf6;
  overflow: hidden;
}
.flies-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 50px;
  align-items: center;
}
.fly-art { position: relative; min-height: 320px; }
.buzz-path {
  position: absolute;
  inset: -10% -6%;
  width: 112%;
  height: 120%;
  color: rgba(214,69,61,.4);
}
.fly-img {
  position: relative;
  width: min(78%, 360px);
  margin: 0 auto;
  filter: drop-shadow(0 24px 30px rgba(34,51,31,.3));
  animation: fly-buzz 2.6s ease-in-out infinite;
}
@keyframes fly-buzz {
  0%, 100% { transform: translate(0, 0) rotate(-3deg); }
  20% { transform: translate(7px, -10px) rotate(2deg); }
  45% { transform: translate(-6px, -4px) rotate(-4deg); }
  70% { transform: translate(5px, -13px) rotate(3deg); }
  85% { transform: translate(-4px, -5px) rotate(-2deg); }
}
.fly-svg { display: block; height: auto; overflow: visible; }
.fly-svg .wing { transform-box: fill-box; }
.fly-svg .wing-l { transform-origin: 85% 65%; animation: flap-l .18s ease-in-out infinite alternate; }
.fly-svg .wing-r { transform-origin: 15% 65%; animation: flap-r .18s ease-in-out infinite alternate; }
@keyframes flap-l { from { transform: rotate(0deg); } to { transform: rotate(-12deg); } }
@keyframes flap-r { from { transform: rotate(0deg); } to { transform: rotate(12deg); } }
.stink {
  position: absolute;
  color: rgba(111,124,54,.55);
  font-size: 1.6rem;
  transform: rotate(90deg);
  animation: stink-rise 3s ease-in-out infinite;
}
.stink.s1 { top: 16%; left: 14%; animation-delay: 0s; }
.stink.s2 { top: 8%; right: 18%; animation-delay: 1.4s; }
@keyframes stink-rise {
  0% { opacity: 0; translate: 0 12px; }
  40% { opacity: 1; }
  100% { opacity: 0; translate: 0 -22px; }
}
.eyebrow-cherry { color: var(--cherry); background: rgba(214,69,61,.09); border-color: rgba(214,69,61,.3); }
.flies h2 { color: var(--ink); }
.flies-sub { color: var(--cherry); }
.flies-copy > p { color: var(--text-soft); font-size: 1.08rem; margin-bottom: 1.2em; max-width: 36em; }
.flies-copy strong { color: var(--pine); }
.fly-stats { display: flex; flex-wrap: wrap; gap: 18px; margin: 4px 0 22px; }
.fly-stat {
  background: #fff;
  border: 2px solid rgba(214,69,61,.22);
  border-radius: 18px;
  padding: 18px 24px;
  min-width: 200px;
  box-shadow: 0 12px 30px -18px rgba(214,69,61,.45);
}
.fly-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--cherry);
}
.fly-stat-label { font-size: .9rem; font-weight: 700; color: var(--text-soft); }
.btn-cherry {
  background: linear-gradient(180deg, #e8655d, var(--cherry) 60%, #b2352e);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
  box-shadow: 0 6px 0 #7e211c, 0 16px 30px -12px rgba(214,69,61,.55);
}
.btn-cherry:hover { transform: translateY(-3px); box-shadow: 0 9px 0 #7e211c, 0 22px 36px -12px rgba(214,69,61,.6); }
.fly-source { font-size: .78rem !important; color: #a3a795 !important; }

/* ---------- Guide ---------- */
.guide { padding: 110px 0; background: var(--cream); }
.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.guide-photos { position: relative; min-height: 520px; }
.polaroid {
  position: absolute;
  background: #fff;
  padding: 12px 12px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow-pop);
}
.polaroid img { border-radius: 8px; }
.polaroid figcaption {
  font-weight: 700;
  font-size: .85rem;
  color: var(--text-soft);
  text-align: center;
  padding-top: 10px;
}
.p1 { width: 68%; top: 0; left: 0; transform: rotate(-3.5deg); z-index: 1; }
.p2 { width: 52%; bottom: 0; right: 0; transform: rotate(2.5deg); z-index: 2; }
.polaroid { transition: transform .3s ease; }
.p1:hover { transform: rotate(-1deg) scale(1.03); z-index: 3; }
.p2:hover { transform: rotate(0deg) scale(1.03); z-index: 3; }
.guide-copy h2 { color: var(--pine); }
.guide-copy > p { color: var(--text-soft); font-size: 1.08rem; margin-bottom: 1.2em; }
.guide-points { list-style: none; display: grid; gap: 16px; }
.guide-points li {
  background: #fff;
  border-left: 5px solid var(--grass);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px -14px rgba(11,39,18,.25);
  font-size: 1rem;
}
.guide-points strong { color: var(--pine); }

/* ---------- Plan ---------- */
.plan { padding: 96px 0 110px; background: linear-gradient(180deg, var(--foam), var(--cream)); }
.plan h2 { color: var(--pine); max-width: 17em; }
.plan-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
  counter-reset: step;
}
.plan-steps li {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 44px 28px 32px;
  box-shadow: 0 14px 40px -18px rgba(11,39,18,.3);
  border-top: 6px solid var(--grass);
  transition: transform .25s ease;
}
.plan-steps li:hover { transform: translateY(-8px); }
.plan-steps li:nth-child(2) { border-top-color: var(--sun); }
.plan-steps li:nth-child(3) { border-top-color: var(--cherry); }
.step-num {
  position: absolute;
  top: -28px;
  left: 24px;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  background: var(--pine);
  color: #fff;
  font-size: 1.7rem;
  border-radius: 50%;
  box-shadow: 0 8px 20px -6px rgba(11,39,18,.5);
}
.plan-steps h3 { color: var(--pine); margin-bottom: 8px; }
.plan-steps p { color: var(--text-soft); font-size: .98rem; }
.plan-steps a { color: var(--grass-deep); font-weight: 800; }

/* ---------- Transformation (scroll wipe) ---------- */
.transform { position: relative; height: 260vh; background: var(--ink); }
.transform-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  padding: 76px 20px 20px;
}
.transform-head { text-align: center; color: #fff; }
.transform-head h2 { color: #fff; }
.wash-stage {
  position: relative;
  width: min(440px, 82vw);
  aspect-ratio: 900 / 1090;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.7), 0 0 0 6px rgba(255,255,255,.08);
}
.wash-pane { position: absolute; inset: 0; margin: 0; }
.wash-pane img { width: 100%; height: 100%; object-fit: cover; }
.wash-after { clip-path: inset(0 0 100% 0); will-change: clip-path; }
.tag {
  position: absolute;
  top: 16px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: .04em;
  padding: .3em .9em;
  border-radius: 99px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.tag-before { background: var(--cherry); }
.tag-after { background: var(--grass); }
.wash-stage .tag-before { left: 16px; }
.wash-stage .tag-after { right: 16px; }
.wash-jet {
  position: absolute;
  left: 0; right: 0;
  top: 0;
  z-index: 3;
  transform: translateY(-40px);
  will-change: transform;
}
.jet-bar {
  height: 7px;
  background: linear-gradient(90deg, transparent, #d9f6ff 12%, #ffffff 50%, #d9f6ff 88%, transparent);
  box-shadow: 0 0 22px 4px rgba(217, 246, 255, .8);
  border-radius: 99px;
}
.jet-foam { position: relative; height: 0; }
.jet-foam b {
  position: absolute;
  top: -7px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, rgba(255,255,255,.4));
  animation: foam-pop 1.1s ease-in-out infinite;
}
.jet-foam b:nth-child(1) { left: 12%; animation-delay: 0s; }
.jet-foam b:nth-child(2) { left: 32%; animation-delay: .25s; width: 10px; height: 10px; }
.jet-foam b:nth-child(3) { left: 52%; animation-delay: .5s; }
.jet-foam b:nth-child(4) { left: 70%; animation-delay: .15s; width: 9px; height: 9px; }
.jet-foam b:nth-child(5) { left: 86%; animation-delay: .4s; }
@keyframes foam-pop {
  0%, 100% { transform: translateY(0) scale(1); opacity: .95; }
  50% { transform: translateY(-9px) scale(1.25); opacity: .65; }
}
.transform-note { color: rgba(241,249,238,.65); font-size: .92rem; text-align: center; }

/* ---------- Process ---------- */
.process { padding: 100px 0; background: var(--cream); }
.process h2 { color: var(--pine); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.process-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px 24px;
  border: 1.5px solid rgba(63,165,68,.16);
  box-shadow: 0 10px 30px -18px rgba(11,39,18,.25);
  transition: transform .22s ease, border-color .22s ease;
}
.process-card:hover { transform: translateY(-5px); border-color: rgba(63,165,68,.45); }
.pc-num { color: var(--lime); font-size: 1rem; letter-spacing: .1em; }
.process-card h3 { color: var(--pine); margin: 6px 0 6px; }
.process-card p { color: var(--text-soft); font-size: .95rem; }
.scent { font-weight: 800; white-space: nowrap; }
.scent-cherry { color: var(--cherry); }
.scent-apple { color: var(--apple); }

/* ---------- Pricing ---------- */
.pricing { padding: 100px 0; background: linear-gradient(180deg, var(--foam), #e6f4e0); }
.pricing h2 { color: var(--pine); max-width: 16em; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: #fff;
  border-radius: 26px;
  padding: 38px 30px 34px;
  text-align: center;
  box-shadow: 0 16px 44px -20px rgba(11,39,18,.35);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s ease;
}
.price-card:hover { transform: translateY(-8px); }
.price-card h3 { color: var(--pine); font-size: 1.4rem; }
.price { font-size: 4.2rem; color: var(--grass-deep); line-height: 1; }
.price sup { font-size: 2rem; vertical-align: 26px; margin-right: 2px; }
.price-word { font-size: 2.6rem; padding: .35em 0; }
.price-note { color: var(--text-soft); font-size: .92rem; margin-top: -6px; }
.price-card ul { list-style: none; display: grid; gap: 8px; margin: 4px 0 10px; color: var(--text-soft); font-size: .97rem; }
.price-card ul li::before { content: "✓  "; color: var(--grass); font-weight: 800; }
.price-card .btn { margin-top: auto; }
.price-featured {
  border: 3px solid var(--grass);
  transform: scale(1.05);
  z-index: 1;
}
.price-featured:hover { transform: scale(1.05) translateY(-8px); }
.badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--sun);
  color: var(--ink);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .45em 1.2em;
  border-radius: 99px;
  box-shadow: 0 4px 12px -4px rgba(201,162,33,.7);
  white-space: nowrap;
}
.guarantee {
  margin-top: 44px;
  background: var(--pine);
  color: var(--foam);
  border-radius: var(--radius);
  padding: 26px 32px;
  display: grid;
  gap: 8px;
}
.guarantee strong { color: var(--lime); }
.pay-chips { margin-left: 10px; }
.pay-chips span {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border-radius: 99px;
  padding: .2em .8em;
  font-size: .88rem;
  margin-right: 6px;
  font-weight: 700;
}
.urgency { color: var(--sun); font-weight: 800; font-size: .95rem; }

/* ---------- Pressure washing ---------- */
.washing {
  padding: 100px 0;
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(123,209,82,.14) 0%, transparent 55%),
    var(--ink);
  color: var(--foam);
}
.washing h2 { color: #fff; }
.washing-lead { max-width: 44em; color: rgba(241,249,238,.85); font-size: 1.08rem; margin-bottom: 40px; }

.compare {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 70px -24px rgba(0,0,0,.8), 0 0 0 5px rgba(255,255,255,.07);
  user-select: none;
  touch-action: pan-y;
}
.compare-img { width: 100%; display: block; }
.compare-clip {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 50%);
  will-change: clip-path;
}
.compare-clip img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare-sweep {
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 0;
  will-change: left;
  opacity: 0;
  transition: opacity .3s ease;
}
.sweep-bar {
  position: absolute;
  top: 0; bottom: 0;
  left: -4px;
  width: 8px;
  background: linear-gradient(180deg, transparent, #d9f6ff 12%, #ffffff 50%, #d9f6ff 88%, transparent);
  box-shadow: 0 0 26px 6px rgba(217, 246, 255, .85);
  border-radius: 99px;
}
.compare-sweep i {
  position: absolute;
  left: -10px;
  color: #fff;
  font-style: normal;
  font-size: 1.1rem;
  text-shadow: 0 0 10px rgba(255,255,255,.9);
  animation: sweep-sparkle 1.4s ease-in-out infinite;
}
.compare-sweep i:nth-of-type(1) { top: 18%; animation-delay: 0s; }
.compare-sweep i:nth-of-type(2) { top: 47%; animation-delay: .45s; font-size: 1.5rem; }
.compare-sweep i:nth-of-type(3) { top: 74%; animation-delay: .9s; }
@keyframes sweep-sparkle {
  0%, 100% { opacity: 0; transform: scale(.4) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(30deg); }
}
.compare-sweep b {
  position: absolute;
  left: -7px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, rgba(255,255,255,.35));
  animation: sweep-bubble 1.6s ease-in-out infinite;
}
.compare-sweep b:nth-of-type(1) { top: 12%; animation-delay: .2s; }
.compare-sweep b:nth-of-type(2) { top: 36%; animation-delay: .8s; width: 8px; height: 8px; }
.compare-sweep b:nth-of-type(3) { top: 60%; animation-delay: .5s; }
.compare-sweep b:nth-of-type(4) { top: 86%; animation-delay: 1.1s; width: 9px; height: 9px; }
@keyframes sweep-bubble {
  0%, 100% { opacity: 0; transform: translateX(0) scale(.8); }
  50% { opacity: .95; transform: translateX(-14px) scale(1.2); }
}
.compare-tag-l { top: 18px; left: 16px; }
.compare-tag-r { top: 18px; right: 16px; transition: opacity .4s ease; }

.service-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 44px;
}
.service-grid li {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(123,209,82,.2);
  border-radius: 16px;
  padding: 18px 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform .2s ease, border-color .2s ease;
}
.service-grid li:hover { transform: translateY(-4px); border-color: rgba(123,209,82,.55); }
.service-grid li span { font-size: 1.5rem; }

.more-services {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 34px;
  align-items: center;
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(123,209,82,.2);
  border-radius: var(--radius);
  padding: 28px;
}
.more-services img { border-radius: 14px; }
.more-services h3 { color: var(--lime); font-size: 1.6rem; margin: 12px 0 8px; }
.more-services p { color: rgba(241,249,238,.85); margin-bottom: 18px; }
.badge-new {
  position: static;
  transform: rotate(-2deg);
  display: inline-block;
  background: var(--cherry);
  color: #fff;
}
.more-services .btn-outline { color: var(--lime); border-color: var(--lime); }
.more-services .btn-outline:hover { background: rgba(123,209,82,.12); }

/* ---------- Snow Buddy ---------- */
.snow {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(1000px 500px at 15% 10%, #ffffff 0%, transparent 50%),
    linear-gradient(180deg, #eef6fd 0%, var(--snow-sky) 60%, #cfe3f5 100%);
  color: var(--snow-deep);
  overflow: hidden;
}
.snowfall { position: absolute; inset: 0; pointer-events: none; }
.snowfall i {
  position: absolute;
  top: -30px;
  color: #fff;
  font-style: normal;
  text-shadow: 0 1px 4px rgba(30,58,82,.25);
  animation: snow-fall linear infinite;
}
.snowfall i:nth-child(1)  { left: 5%;  font-size: 14px; animation-duration: 11s; }
.snowfall i:nth-child(2)  { left: 15%; font-size: 20px; animation-duration: 14s; animation-delay: 3s; }
.snowfall i:nth-child(3)  { left: 24%; font-size: 12px; animation-duration: 10s; animation-delay: 6s; }
.snowfall i:nth-child(4)  { left: 33%; font-size: 17px; animation-duration: 13s; animation-delay: 1s; }
.snowfall i:nth-child(5)  { left: 42%; font-size: 13px; animation-duration: 9s;  animation-delay: 5s; }
.snowfall i:nth-child(6)  { left: 51%; font-size: 22px; animation-duration: 15s; animation-delay: 2s; }
.snowfall i:nth-child(7)  { left: 60%; font-size: 14px; animation-duration: 11s; animation-delay: 7s; }
.snowfall i:nth-child(8)  { left: 69%; font-size: 18px; animation-duration: 12s; animation-delay: 4s; }
.snowfall i:nth-child(9)  { left: 78%; font-size: 12px; animation-duration: 10s; animation-delay: 8s; }
.snowfall i:nth-child(10) { left: 86%; font-size: 16px; animation-duration: 13s; animation-delay: 2.5s; }
.snowfall i:nth-child(11) { left: 93%; font-size: 13px; animation-duration: 9s;  animation-delay: 6.5s; }
.snowfall i:nth-child(12) { left: 48%; font-size: 11px; animation-duration: 8s;  animation-delay: 0s; }
@keyframes snow-fall {
  0% { transform: translateY(-30px) translateX(0) rotate(0deg); opacity: 0; }
  10% { opacity: .9; }
  90% { opacity: .9; }
  100% { transform: translateY(110vh) translateX(-40px) rotate(320deg); opacity: 0; }
}
.snow-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 54px;
  align-items: center;
}
.snow h2 { color: var(--snow-deep); }
.snow-sub {
  display: block;
  font-size: .55em;
  color: #4a7bb5;
  letter-spacing: .06em;
}
.snow-copy > p { color: #3a5470; font-size: 1.08rem; margin-bottom: 1.2em; }
.snow-points { list-style: none; display: grid; gap: 10px; margin-bottom: 1.6em; }
.snow-points li {
  background: rgba(255,255,255,.75);
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  box-shadow: 0 6px 20px -12px rgba(30,58,82,.4);
}
.snow-points li::before { content: "❄  "; color: #4a7bb5; }
.snow-photo {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 26px 60px -22px rgba(30,58,82,.55);
  transform: rotate(1.5deg);
  transition: transform .3s ease;
}
.snow-photo:hover { transform: rotate(0deg) scale(1.02); }

/* ---------- Contact ---------- */
.contact { padding: 110px 0; background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact h2 { color: var(--pine); }
.contact-copy > p { color: var(--text-soft); font-size: 1.06rem; margin-bottom: 1.6em; }
.contact-methods { display: grid; gap: 14px; margin-bottom: 2em; }
.method {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  text-decoration: none;
  box-shadow: 0 10px 28px -16px rgba(11,39,18,.3);
  border: 1.5px solid transparent;
  transition: transform .2s ease, border-color .2s ease;
}
.method:hover { transform: translateX(6px); border-color: rgba(63,165,68,.4); }
.m-icon { font-size: 1.6rem; }
.method strong { color: var(--pine); }
.mascot-signoff { display: flex; align-items: center; gap: 6px; }
.mascot-signoff img { flex-shrink: 0; }
.speech {
  position: relative;
  background: var(--grass);
  color: #fff;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  box-shadow: 0 10px 24px -10px rgba(44,135,53,.6);
  transform: rotate(-1deg);
}
.quote-form {
  background: #fff;
  border-radius: 26px;
  padding: 36px 32px;
  box-shadow: var(--shadow-pop);
  border-top: 8px solid var(--grass);
  display: grid;
  gap: 16px;
}
.quote-form h3 { color: var(--pine); font-size: 1.5rem; }
.quote-form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
  font-size: .88rem;
  color: var(--pine);
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .8em 1em;
  border: 2px solid #dcebd7;
  border-radius: 12px;
  background: var(--foam);
  color: var(--text);
  transition: border-color .2s ease, background .2s ease;
  width: 100%;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--grass);
  background: #fff;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-hint { font-size: .84rem; color: var(--text-soft); text-align: center; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(241,249,238,.85); padding: 60px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.f-brand { display: flex; gap: 16px; align-items: flex-start; }
.f-brand img { }
.f-brand strong { color: #fff; font-size: 1.1rem; }
.f-links, .f-contact { display: grid; gap: 10px; align-content: start; }
.f-links a, .f-contact a { color: rgba(241,249,238,.85); text-decoration: none; font-weight: 700; }
.f-links a:hover, .f-contact a:hover { color: var(--lime); }
.f-legal { text-align: center; padding-top: 26px; font-size: .85rem; color: rgba(241,249,238,.5); }

/* ---------- Floating CTA ---------- */
.float-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: none;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, var(--lime), var(--grass-deep));
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 99px;
  box-shadow: 0 6px 0 var(--pine), 0 18px 40px -10px rgba(11,39,18,.6);
  animation: float-in .4s ease both;
}
.float-call.show { display: inline-flex; }
@keyframes float-in { from { transform: translateY(80px); } to { transform: translateY(0); } }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-art { order: 1; }
  .hero-mascot { width: min(62vw, 330px); }
  .hero-ctas, .hero-chips { justify-content: center; }
  .problem-grid, .plan-steps, .process-grid, .price-grid { grid-template-columns: 1fr; }
  .price-featured { transform: none; }
  .price-featured:hover { transform: translateY(-8px); }
  .guide-grid, .snow-grid, .contact-grid, .more-services { grid-template-columns: 1fr; }
  .guide-photos { min-height: 0; position: static; display: grid; gap: 18px; }
  .polaroid { position: static; width: 100% !important; transform: rotate(0); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .plan-steps { gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .transform { height: 220vh; }
  .flies-grid { grid-template-columns: 1fr; gap: 20px; }
  .fly-art { min-height: 0; max-width: 300px; margin: 0 auto; }
  .fly-stats { justify-content: center; }
  .flies-copy { text-align: center; }
  .flies-copy .hero-ctas { justify-content: center; }
  .flies-copy > p { margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  .service-grid { grid-template-columns: 1fr 1fr; }
  .nav-cta { font-size: .85rem; padding: .55em .9em; }
  .nav-name { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bubbles span, .snowfall i, .hero-mascot, .hero-sparkles i, .jet-foam b,
  .fly-img, .fly-svg .wing, .stink, .compare-sweep i, .compare-sweep b { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: .01ms !important; }
}
