/* ==========================================================================
   Fresh Bin Bros: Design Tokens
   ========================================================================== */
:root {
  --ink: #393C3C;
  --ink-soft: #636868;
  --foam: #F7FAF9;
  --foam-dim: #EDF4F2;
  --teal: #3D7B13;
  --teal-dark: #2E5C0E;
  --splash: #4B91CE;
  --sunshine: #9ECC55;
  --sunshine-dark: #82B235;
  --curb: #5B605E;
  --line: #C6C9C8;
  --white: #FFFFFF;

  --font-display: 'Space Grotesk', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--foam);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--curb); }
a { color: var(--teal-dark); }

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

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--teal-dark);
  font-weight: 600;
}

/* ---------------------------------- Nav ---------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 250, 249, 0.97);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
}

.logo-img {
  display: block;
  height: 46px;
  width: 46px;
  border-radius: 10px;
  object-fit: cover;
}

.footer-logo-chip {
  display: inline-flex;
  background: var(--white);
  padding: 6px;
  border-radius: 14px;
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.4);
}
.footer-logo-chip img {
  display: block;
  height: 56px;
  width: 56px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--splash);
  transition: right 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  right: 0;
}

.nav-links a.nav-cta::after {
  content: none;
}

.nav-links a[aria-current="page"] { color: var(--teal-dark); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}
.nav-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }

.nav-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  color: var(--ink);
  background: transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.nav-socials a:hover {
  background: var(--foam-dim);
  color: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
}
.nav-socials svg { width: 19px; height: 19px; }
.nav-links a.nav-social-link::after { content: none; }

@media (max-width: 780px) {
  .nav-social-item { padding-top: 12px !important; padding-bottom: 12px !important; }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

@media (max-width: 780px) {
  .nav-links { 
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--foam);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 320px; }
  .nav-links li { padding: 16px 24px; border-top: 1px solid var(--line); }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--sunshine);
  color: var(--ink);
  box-shadow: 0 4px 0 var(--sunshine-dark);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--sunshine-dark); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }

.btn-light {
  background: var(--white);
  color: var(--ink);
}
.btn-light:hover { background: var(--foam-dim); }

/* ---------------------------------- Hero ---------------------------------- */
.hero {
  padding: 64px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero-copy p.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 32px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-trust .stat {
  font-family: var(--font-mono);
}
.hero-trust .stat b {
  display: block;
  font-size: 1.5rem;
  color: var(--teal-dark);
  font-family: var(--font-display);
}
.hero-trust .stat span {
  font-size: 0.78rem;
  color: var(--curb);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Before/after slider */
.slider-card {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 20px 50px -20px rgba(11, 41, 66, 0.45);
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.6;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: ew-resize;
  touch-action: pan-y;
  user-select: none;
  background: linear-gradient(180deg, #E0F8CF 0%, #D2EDBB 100%);
}

.ba-slider img,
.ba-slider svg { display: block; width: 100%; height: 100%; }

.ba-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ba-layer.after {
  clip-path: inset(0 0 0 50%);
}

.ba-label {
  position: absolute;
  top: 14px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(11, 41, 66, 0.75);
  color: var(--white);
  padding: 6px 10px;
  border-radius: 999px;
}
.ba-label.before { right: 14px; }
.ba-label.after { left: 14px; }

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  transform: translateX(-1px);
}
.ba-handle::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 2px;
  background: var(--white);
}
.ba-handle-grip {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.ba-handle-grip svg { width: 20px; height: 20px; }

.ba-caption {
  text-align: center;
  color: var(--foam);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding-top: 14px;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

/* ---------------------------------- Sections ---------------------------------- */
section { padding: 88px 0; }
.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.bg-ink { background: var(--ink); color: var(--foam); }
.bg-ink p { color: #A8ACAA; }
.bg-ink h2, .bg-ink h3 { color: var(--white); }
.bg-dim { background: var(--foam-dim); }

/* Value grid */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 860px) { .value-grid { grid-template-columns: 1fr; } }

.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 28px;
}
.value-card .icon {
  width: 46px; height: 46px;
  margin-bottom: 18px;
}
.value-card h3 { margin-bottom: 10px; }
.value-card p { margin: 0; font-size: 0.95rem; }

/* Pricing */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) { .plan-grid { grid-template-columns: 1fr; } }

.plan-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.plan-card.featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: translateY(-10px);
  box-shadow: 0 24px 48px -24px rgba(11,41,66,0.5);
}
.plan-card.featured p, .plan-card.featured li { color: #A8ACAA; }
.plan-card.featured h3 { color: var(--white); }

.plan-freq {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-dark);
}
.plan-card.featured .plan-freq { color: var(--splash); }

.plan-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  margin: 12px 0 4px;
}
.plan-price span { font-size: 1rem; font-family: var(--font-body); color: var(--curb); font-weight: 400; }
.plan-card.featured .plan-price span { color: #A8ACAA; }

.plan-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
  flex-grow: 1;
}
.plan-list li {
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.plan-card.featured .plan-list li { border-color: rgba(255,255,255,0.15); }
.plan-list li svg { flex-shrink: 0; margin-top: 3px; width: 15px; height: 15px; color: var(--teal); }
.plan-card.featured .plan-list li svg { color: var(--splash); }

.badge-pop {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--sunshine);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
}
.plan-card { position: relative; }

/* Process */
.process-list {
  display: grid;
  gap: 0;
}
.process-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.process-item:last-child { border-bottom: 1px solid var(--line); }
.process-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--teal-dark);
}
.process-item h3 { margin-bottom: 6px; }
.process-item p { margin: 0; max-width: 60ch; }

/* Service area / map-ish block */
.area-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) { .area-block { grid-template-columns: 1fr; } }
.zip-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.zip-chip {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  background: var(--foam-dim);
  border: 1px solid var(--line);
  padding: 7px 12px;
  border-radius: 8px;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
}
.stars { color: var(--sunshine-dark); letter-spacing: 2px; margin-bottom: 12px; font-size: 0.9rem; }
.testimonial-card p.quote {
  color: var(--ink);
  font-size: 0.98rem;
}
.testimonial-name {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--curb);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* CTA band */
.cta-band {
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: #E0F8CF; margin: 0; }

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--foam);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.footer-socials a:hover {
  background: var(--splash);
  color: var(--ink);
  border-color: var(--splash);
  transform: translateY(-2px);
}
.footer-socials svg { width: 20px; height: 20px; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: #A8ACAA;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: #A8ACAA; text-decoration: none; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--splash); }
.footer-grid p { color: #A8ACAA; }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------------------------------- Inner page hero ---------------------------------- */
.page-hero {
  padding: 56px 0 24px;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 14px; display: block; }
.page-hero p.lede { max-width: 60ch; font-size: 1.08rem; color: var(--ink-soft); }

/* About page */
.founders-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 960px) { .founders-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 780px) { .founders-strip { grid-template-columns: 1fr; } }

.team-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 201, 60, 0.18);
  color: var(--sunshine-dark);
  padding: 3px 9px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}
.founder-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.founder-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  background: var(--foam-dim);
}
.founder-card h3 { margin-bottom: 2px; }
.founder-role { font-family: var(--font-mono); font-size: 0.75rem; color: var(--teal-dark); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; display: block; }

.values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .values-row { grid-template-columns: repeat(2, 1fr); } }

.timeline {
  border-left: 2px solid var(--line);
  padding-left: 28px;
  display: grid;
  gap: 32px;
}
.timeline-item .year {
  font-family: var(--font-mono);
  color: var(--teal-dark);
  font-size: 0.85rem;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: flex-start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-card {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  min-width: 0;
}
.contact-info-card h3 { color: var(--white); }
.contact-info-card p { color: #A8ACAA; }
.contact-info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 22px;
}
.contact-info-row svg { flex-shrink: 0; color: var(--splash); width: 20px; height: 20px; margin-top: 2px; }
.contact-info-row > div { min-width: 0; }
.contact-info-row strong { display: block; color: var(--white); font-size: 0.92rem; }
.contact-info-row span { color: #A8ACAA; font-size: 0.88rem; overflow-wrap: anywhere; }
.contact-info-row span a { overflow-wrap: anywhere; }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--foam);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 124, 123, 0.15);
}
.field .error-msg {
  display: none;
  color: #C0362C;
  font-size: 0.8rem;
  margin-top: 6px;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: #C0362C; }
.field.invalid .error-msg { display: block; }

.freq-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 540px) { .freq-options { grid-template-columns: 1fr; } }
.freq-option {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.15s ease;
}
.freq-option input { position: absolute; opacity: 0; pointer-events: none; }
.freq-option.checked {
  border-color: var(--teal);
  background: rgba(14, 124, 123, 0.08);
  color: var(--teal-dark);
}

.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.success { background: rgba(14, 124, 123, 0.1); color: var(--teal-dark); }
.form-status.error { background: rgba(192, 54, 44, 0.1); color: #C0362C; }

.submit-btn { width: 100%; justify-content: center; }
.submit-btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Utility */
.faq-item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--teal);
  font-family: var(--font-body);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin-top: 12px; }

:focus-visible {
  outline: 2.5px solid var(--teal);
  outline-offset: 2px;
}

/* Subtle scroll-reveal, applied via JS to common content blocks */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Mobile polish (phones only, desktop/tablet layout is untouched above)
   ========================================================================== */
@media (max-width: 640px) {
  /* Tighter section rhythm so there's less empty scrolling */
  section { padding: 52px 0; }
  .page-hero { padding: 36px 0 20px; }
  .section-head { margin-bottom: 32px; }

  /* Hero: smaller headline so it wraps to 2 lines instead of 3-4,
     and everything is tighter so the slider isn't pushed too far down */
  .hero { padding: 32px 0 20px; }
  .hero-copy .eyebrow {
    display: block;
    font-size: 0.58rem;
    letter-spacing: 0.06em;
    line-height: 1.5;
    margin-bottom: 14px;
  }
  .hero-copy h1 { font-size: 2.05rem; line-height: 1.15; margin-bottom: 14px; }
  .hero-copy p.lede { font-size: 1rem; max-width: none; margin-bottom: 0; }

  /* Full-width, stacked, easy-to-tap buttons */
  .hero-actions {
    flex-direction: column;
    margin-top: 26px;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Trust stats as a tidy 3-up row instead of an uneven 2+1 wrap */
  .hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 34px;
  }
  .hero-trust .stat b { font-size: 1.15rem; }
  .hero-trust .stat span { font-size: 0.64rem; line-height: 1.3; }

  .slider-card { padding: 14px; }
  .ba-caption { font-size: 0.72rem; padding-top: 10px; }

  /* Contact page: show the actual form first, "prefer to call" card second */
  .form-card { order: -1; margin-bottom: 20px; }
  .form-card, .contact-info-card { padding: 24px; }

  /* CTA bands and plan cards: less padding, buttons full width */
  .cta-band { padding: 32px 24px; flex-direction: column; text-align: center; }
  .cta-band .btn { width: 100%; justify-content: center; }
  .plan-card.featured { transform: none; }

  /* Founder cards: stack avatar above text for a cleaner narrow layout */
  .founder-card { flex-direction: column; text-align: center; align-items: center; }
  .founder-role { margin-bottom: 6px; }
}