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

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #F5F2EC;
  color: #1C3520;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9999;
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible          { opacity: 1; transform: translateY(0); }
.reveal-d1               { transition-delay: 0.08s; }
.reveal-d2               { transition-delay: 0.18s; }
.reveal-d3               { transition-delay: 0.28s; }
.reveal-d4               { transition-delay: 0.38s; }
.reveal-d5               { transition-delay: 0.48s; }
.reveal-d6               { transition-delay: 0.58s; }

/* ── Sticky Nav ── */
#nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(245, 242, 236, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(28, 53, 32, 0.07);
  transition: box-shadow 0.3s ease;
}
#nav.scrolled {
  box-shadow: 0 2px 20px rgba(28, 53, 32, 0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}
.nav-logo { height: 56px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2.25rem; }
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #2D5535;
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-link:hover          { color: #4C8B5C; }
.nav-link:focus-visible  { outline: 2px solid #4C8B5C; outline-offset: 4px; border-radius: 3px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.btn:focus-visible { outline: 3px solid currentColor; outline-offset: 2px; }
.btn:active        { transform: translateY(0) !important; }

.btn-orange {
  background: #D4700A;
  color: white;
  box-shadow: 0 4px 14px rgba(212, 112, 10, 0.28);
}
.btn-orange:hover {
  background: #A8590A;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(212, 112, 10, 0.38);
}
.btn-sm  { font-size: 0.875rem; padding: 0.6rem 1.2rem; }
.btn-md  { font-size: 0.95rem;  padding: 0.8rem 1.6rem; }
.btn-lg  { font-size: 1.05rem;  padding: 1rem 2rem; }
.btn-xl  { font-size: 1.1rem;   padding: 1.1rem 2.5rem; }
.btn-full { width: 100%; }

.btn-dark {
  background: #1C3520;
  color: white;
}
.btn-dark:hover {
  background: #2D5535;
  transform: translateY(-2px);
}

/* ── Mobile menu ── */
.mobile-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #1C3520;
}
.mobile-menu {
  display: none;
  background: rgba(245, 242, 236, 0.98);
  border-top: 1px solid rgba(28, 53, 32, 0.07);
  padding: 1.25rem 1.5rem 1.75rem;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 500;
  color: #1C3520;
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(28, 53, 32, 0.06);
}

/* ── Breadcrumb ── */
.breadcrumb-bar {
  background: #F9F7F3;
  border-bottom: 1px solid rgba(28, 53, 32, 0.06);
  padding: 0.75rem 0;
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  font-size: 0.8rem;
  color: rgba(45, 85, 53, 0.6);
}
.breadcrumb-inner a {
  color: #4C8B5C;
  text-decoration: none;
}
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-sep { margin: 0 0.4rem; }

/* ── Hero ── */
.hero {
  position: relative;
  padding: 2.75rem 0 5rem;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "copy   widget"
    "social widget";
  column-gap: 4.5rem;
  row-gap: 2rem;
}
.hero-copy-block { grid-area: copy; }
.hero-inner > .hero-social-proof {
  grid-area: social;
  margin-top: 0;
}
.hero-inner > .widget-card {
  grid-area: widget;
  align-self: center;
}
/* Decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.blob-1 {
  right: -8%;
  top: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(76, 139, 92, 0.10) 0%, transparent 70%);
}
.blob-2 {
  left: -6%;
  bottom: -25%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 112, 10, 0.07) 0%, transparent 70%);
}
.blob-3 {
  right: 30%;
  top: 60%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(76, 139, 92, 0.05) 0%, transparent 70%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(76, 139, 92, 0.10);
  border: 1px solid rgba(76, 139, 92, 0.22);
  color: #2D5535;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3.6rem, 7.5vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: #1C3520;
}
.hero-heading .accent { color: #4C8B5C; }

.hero-subline {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #3D7045;
  max-width: 480px;
  margin-top: 1.75rem;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(28, 53, 32, 0.08);
}
.proof-stars { color: #D4700A; letter-spacing: 0.05em; }
.proof-text  { font-size: 0.82rem; color: #3D7045; font-weight: 500; }
.proof-text strong { color: #1C3520; font-weight: 700; }

/* ── Widget Card ── */
.widget-card {
  background: white;
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow:
    0 0 0 1px rgba(28, 53, 32, 0.05),
    0 4px 6px rgba(28, 53, 32, 0.04),
    0 20px 48px rgba(28, 53, 32, 0.10);
}
.widget-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #1C3520;
  margin-bottom: 0.3rem;
}
.widget-subtitle {
  font-size: 0.82rem;
  color: #4C8B5C;
  margin-bottom: 2rem;
}
.field-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2D5535;
  margin-bottom: 0.55rem;
}
.field-group { margin-bottom: 1.1rem; }

.input-field,
.select-field {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  padding: 0.9rem 1.1rem;
  border: 2px solid #E6F4EB;
  border-radius: 10px;
  color: #1C3520;
  background: #F9F7F3;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.input-field:focus,
.select-field:focus {
  border-color: #4C8B5C;
  box-shadow: 0 0 0 3px rgba(76, 139, 92, 0.12);
}
.input-field.error { border-color: #D4700A; }

.select-field {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%232D5535' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.75rem;
}

.widget-cta {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1.05rem;
  background: #D4700A;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 18px rgba(212, 112, 10, 0.30);
}
.widget-cta:hover {
  background: #A8590A;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 112, 10, 0.42);
}
.widget-cta:focus-visible { outline: 3px solid #D4700A; outline-offset: 2px; }
.widget-note {
  font-size: 0.75rem;
  color: rgba(45, 85, 53, 0.5);
  text-align: center;
  margin-top: 1rem;
}

/* ── Stats Bar ── */
.stats-bar {
  background: #1C3520;
  padding: 3rem 0;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 0.5rem 2rem;
  text-align: center;
}
.stat-item + .stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: white;
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.4rem;
}

/* ── Section shared ── */
.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-head { text-align: center; margin-bottom: 4rem; }
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #4C8B5C;
  margin-bottom: 0.85rem;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: #1C3520;
}

/* ── Waste rules section ── */
.waste-rules-section { padding: 6rem 0; background: #fff; }
.waste-rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.waste-rule-card { border-radius: 1rem; padding: 2rem; }
.waste-rule-card.allowed { background: #F2FAF5; border: 1.5px solid #C2DFCB; }
.waste-rule-card.not-allowed { background: #FFF8F2; border: 1.5px solid #F5CFA8; }
.waste-rule-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.waste-rule-icon { width: 2rem; height: 2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; background: #4C8B5C; color: #fff; flex-shrink: 0; }
.waste-rule-icon.not { background: #D4700A; }
.waste-rule-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: #1C3520; }
.waste-rule-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.waste-rule-list li { font-size: 0.9rem; color: #2D5535; line-height: 1.5; padding-left: 1.25rem; position: relative; }
.waste-rule-list li::before { content: '–'; position: absolute; left: 0; color: #4C8B5C; }
.waste-rule-card.not-allowed .waste-rule-list li::before { color: #D4700A; }

/* ── Waste hints section ── */
.waste-hints-section { padding: 6rem 0; background: #F9F7F3; }
.waste-hints-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.waste-hint-card { background: #fff; border-radius: 1rem; padding: 2rem; border: 1px solid rgba(28,53,32,0.08); }
.waste-hint-icon { font-size: 2rem; margin-bottom: 1rem; }
.waste-hint-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: #1C3520; margin-bottom: 0.75rem; }
.waste-hint-text { font-size: 0.9rem; color: #374151; line-height: 1.7; }
.waste-sizes-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.waste-sizes-list li { font-size: 0.9rem; color: #374151; line-height: 1.5; }

/* ── Waste types cross-links ── */
.waste-types-section { padding: 5rem 0; background: #fff; }

@media (max-width: 768px) {
  .waste-rules-grid { grid-template-columns: 1fr; }
  .waste-hints-grid { grid-template-columns: 1fr; }
}

/* ── City intro ── */
.city-intro-section { padding: 5rem 0; background: #fff; }
.city-intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.city-intro-text { font-size: 1.05rem; line-height: 1.75; color: #374151; }
@media (max-width: 768px) { .city-intro-inner { grid-template-columns: 1fr; gap: 1.5rem; } }

/* ── How it works ── */
.how-section { padding: 6rem 0; background: #F9F7F3; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step-card {
  padding: 2.5rem 2rem;
  border-radius: 16px;
  background: white;
  box-shadow: 0 2px 12px rgba(28, 53, 32, 0.05), 0 0 0 1px rgba(76, 139, 92, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(28, 53, 32, 0.10);
}
.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(76, 139, 92, 0.13);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}
.step-card:hover .step-num { color: rgba(76, 139, 92, 0.25); }
.step-icon-wrap {
  width: 52px;
  height: 52px;
  background: #E6F4EB;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 1.25rem;
  transition: background 0.2s ease;
}
.step-card:hover .step-icon-wrap { background: #4C8B5C; }
.step-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.55rem;
  color: #1C3520;
  margin-bottom: 0.75rem;
}
.step-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #3D7045;
}

/* ── Waste types ── */
.waste-section { padding: 6rem 0; }
.waste-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3.5rem;
}
.waste-header-text {
  font-size: 1rem;
  line-height: 1.85;
  color: #3D7045;
}
.waste-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.waste-tile:last-child { grid-column: 2; }
.waste-tile {
  background: white;
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(28, 53, 32, 0.05), 0 0 0 1px rgba(28, 53, 32, 0.05);
  text-align: left;
  font-family: inherit;
  display: block;
  width: 100%;
}
.waste-tile:hover {
  border-color: #4C8B5C;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(28, 53, 32, 0.11), 0 0 0 1px rgba(76, 139, 92, 0.2);
}
.waste-tile:focus-visible {
  outline: 3px solid #4C8B5C;
  outline-offset: 2px;
}
.waste-emoji { font-size: 2.2rem; display: block; margin-bottom: 1rem; }
.waste-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1C3520;
  margin-bottom: 0.5rem;
}
.waste-desc { font-size: 0.825rem; line-height: 1.6; color: #4C8B5C; }

/* ── Testimonials ── */
.testi-section { padding: 6rem 0; background: #F9F7F3; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.testi-card {
  background: white;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(28, 53, 32, 0.055), 0 0 0 1px rgba(28, 53, 32, 0.045);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(28, 53, 32, 0.10), 0 0 0 1px rgba(76, 139, 92, 0.10);
}
.testi-card.featured {
  border: 2px solid rgba(76, 139, 92, 0.2);
}
.testi-stars   { color: #D4700A; font-size: 0.95rem; letter-spacing: 0.08em; }
.testi-quote   { font-size: 0.95rem; line-height: 1.75; color: #2D5535; font-style: italic; margin: 1rem 0 1.25rem; }
.testi-name    { font-weight: 700; font-size: 0.875rem; color: #1C3520; }
.testi-role    { font-size: 0.78rem; color: #4C8B5C; margin-top: 0.2rem; }
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.rating-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: #1C3520;
  line-height: 1;
}
.rating-sub { font-size: 0.78rem; color: #4C8B5C; margin-top: 0.2rem; }

/* ── FAQ ── */
.faq-section { padding: 6rem 0; }
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(28, 53, 32, 0.08); }
.faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  color: #1C3520;
  transition: color 0.2s ease;
}
.faq-btn:hover { color: #4C8B5C; }
.faq-btn:focus-visible { outline: 2px solid #4C8B5C; outline-offset: 3px; border-radius: 3px; }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #E6F4EB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #2D5535;
  transition: transform 0.3s ease, background 0.2s ease, color 0.2s ease;
}
.faq-btn[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: #4C8B5C;
  color: white;
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}
.faq-answer.open { max-height: 320px; opacity: 1; }
.faq-body { padding-bottom: 1.5rem; font-size: 0.92rem; line-height: 1.8; color: #3D7045; }

/* ── Footer ── */
footer {
  background: #0A1A0D;
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo { height: 30px; opacity: 0.75; filter: brightness(0) invert(1); }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-link {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-link:hover { color: rgba(255, 255, 255, 0.65); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copy { font-size: 0.78rem; color: rgba(255, 255, 255, 0.22); }

/* ── Toast ── */
#toast {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  background: #1C3520;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 9000;
  max-width: 340px;
}
#toast.show { opacity: 1; transform: translateY(0); }

/* ── Pricing Section ── */
.pricing-section { padding: 6rem 0; background: #F9F7F3; }
.pricing-intro {
  text-align: center;
  font-size: 1rem;
  line-height: 1.75;
  color: #3D7045;
  max-width: 620px;
  margin: 1.25rem auto 3.5rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.price-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 8px rgba(28,53,32,0.06), 0 0 0 1px rgba(28,53,32,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(28,53,32,0.10), 0 0 0 1px rgba(76,139,92,0.12);
}
.price-card.featured-price {
  border: 2px solid rgba(76,139,92,0.22);
  background: #F2FAF5;
}
.price-size {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  color: #1C3520;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.price-type {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4C8B5C;
  margin-bottom: 1.25rem;
}
.price-range {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.85rem;
  color: #D4700A;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.price-label {
  font-size: 0.73rem;
  color: rgba(45,85,53,0.45);
}
.price-use {
  font-size: 0.82rem;
  color: #3D7045;
  line-height: 1.65;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(28,53,32,0.06);
}
.pricing-disclaimer {
  text-align: center;
  font-size: 0.77rem;
  color: rgba(45,85,53,0.45);
  margin-bottom: 3rem;
}
.pricing-cta-strip {
  background: #1C3520;
  border-radius: 20px;
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.pricing-cta-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: white;
  line-height: 1.15;
}
.pricing-cta-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.48);
  margin-top: 0.5rem;
}

/* ── Cities Section ── */
.cities-section { padding: 5rem 0; background: #F5F2EC; }
.cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-top: 0;
}
.city-link {
  display: block;
  background: white;
  border: 1px solid rgba(28, 53, 32, 0.08);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2D5535;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.city-link:hover {
  border-color: #4C8B5C;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(28, 53, 32, 0.08);
  color: #1C3520;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links      { display: none; }
  .nav-cta-desk   { display: none; }
  .mobile-btn     { display: flex; }

  .hero           { padding: 1.75rem 0 3rem; }
  .hero-inner     {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "widget" "social";
    gap: 2.5rem;
  }

  .stats-inner    { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3) { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); }

  .steps-grid     { grid-template-columns: 1fr; }
  .waste-header   { grid-template-columns: 1fr; gap: 1.5rem; }
  .waste-grid     { grid-template-columns: repeat(2, 1fr); }
  .waste-tile:last-child { grid-column: auto; }
  .testi-grid     { grid-template-columns: 1fr; }
  .cities-grid    { grid-template-columns: repeat(3, 1fr); }

  .how-section,
  .waste-section,
  .testi-section,
  .faq-section,
  .cities-section { padding: 4.5rem 0; }

  .pricing-cta-strip { padding: 2rem; text-align: center; justify-content: center; }
}
@media (max-width: 480px) {
  .waste-grid     { grid-template-columns: 1fr; }
  .hero-heading   { font-size: 3.2rem; }
  #toast          { left: 1rem; right: 1rem; bottom: 1rem; }
  .pricing-grid   { grid-template-columns: 1fr; }
  .cities-grid    { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════════
   PARTNER / ENTSORGER SECTION
══════════════════════════════════════════════════════════ */
.partner-section {
  background: #1C3520;
  padding: 5rem 0;
}
.partner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}
.partner-text { flex: 1; }
.partner-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9BC4A8;
  margin: 0 0 0.75rem;
}
.partner-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.2;
}
.partner-sub {
  font-size: 1rem;
  color: #9BC4A8;
  line-height: 1.6;
  margin: 0;
  max-width: 560px;
}
.btn-partner {
  flex-shrink: 0;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 8px;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
  font-family: inherit;
}
.btn-partner:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.nav-entsorger-link {
  opacity: 0.65;
  font-size: 0.9rem;
}
.nav-entsorger-link:hover { opacity: 1; }

/* ── Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay[hidden] { display: none; }
.modal-box {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 2rem 2.25rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 48px rgba(0,0,0,0.22);
}
.modal-box h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1C3520;
  margin: 0 0 0.4rem;
}
.modal-sub {
  font-size: 0.9rem;
  color: #6B8F73;
  margin: 0 0 1.5rem;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: #888;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
}
.modal-close:hover { color: #1a1a1a; }

/* ── Form fields ── */
.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.35rem;
}
.opt {
  font-size: 0.8em;
  font-weight: 400;
  color: #999;
}
.form-field input,
.form-field textarea {
  border: 1.5px solid #D8D3CC;
  border-radius: 7px;
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: #1a1a1a;
  background: #fff;
  transition: border-color 0.15s;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #4C8B5C;
}
.btn-submit-form {
  width: 100%;
  background: #4C8B5C;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.5rem;
  font-family: inherit;
  transition: background 0.2s;
}
.btn-submit-form:hover:not(:disabled) { background: #3a7048; }
.btn-submit-form:disabled { opacity: 0.6; cursor: default; }
.ef-status {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  text-align: center;
  padding: 0.6rem;
  border-radius: 6px;
}
.ef-status[hidden] { display: none; }
.ef-success { background: #e8f5e9; color: #2e7d32; }
.ef-error   { background: #fdecea; color: #c62828; }

@media (max-width: 768px) {
  .partner-inner { flex-direction: column; align-items: flex-start; }
  .btn-partner   { width: 100%; text-align: center; }
  .partner-title { font-size: 1.6rem; }
}
