/* =========================================
   FRESHCAN KC — Custom Theme
   ========================================= */

:root {
  --bg: #F8F6F0;
  --bg-alt: #F0EDE4;
  --fg: #1A1A1A;
  --fg-muted: #5C5C5C;
  --accent: #1B4332;
  --accent-light: #2D6A4F;
  --accent-yellow: #FFD60A;
  --accent-yellow-dim: #F5C800;
  --white: #FFFFFF;
  --dirty-brown: #6B4C3B;
  --dirty-dark: #3D2B1F;
  --clean-green: #2D6A4F;
  --clean-light: #52B788;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  line-height: 1.15;
}

/* --- NAV --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-logo-kc {
  color: var(--fg-muted);
  font-weight: 600;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-family: 'DM Sans', sans-serif;
}

/* --- HERO --- */
.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 24px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  line-height: 1.08;
}
.hero-headline-accent {
  color: var(--accent);
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 32px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
}
.hero-stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero right — bin cards */
.hero-bin-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.hero-bin-card {
  width: 100%;
  max-width: 320px;
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.hero-bin-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-bin-label-dirty { color: var(--dirty-brown); }
.hero-bin-label-clean { color: var(--clean-green); }
.hero-bin-visual {
  height: 80px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.dirty-bin {
  background: linear-gradient(135deg, var(--dirty-brown) 0%, var(--dirty-dark) 100%);
  position: relative;
  overflow: hidden;
}
.dirty-bin::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(0,0,0,0.1) 8px,
    rgba(0,0,0,0.1) 10px
  );
}
.clean-bin {
  background: linear-gradient(135deg, var(--clean-green) 0%, var(--clean-light) 100%);
}
.hero-bin-desc {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
}
.hero-bin-arrow {
  color: var(--accent);
  transform: rotate(90deg);
}

/* --- SECTIONS COMMON --- */
.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.6;
}

/* --- HOW --- */
.how {
  background: var(--accent);
  padding: 80px 24px;
}
.how-header {
  max-width: 1120px;
  margin: 0 auto 56px;
}
.how-header .section-title { color: var(--white); }
.how-header .section-sub { color: rgba(255,255,255,0.7); }
.how-steps {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.how-step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(255,255,255,0.12);
  margin-bottom: 16px;
  letter-spacing: -2px;
}
.how-step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.how-step-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* --- WHY --- */
.why {
  padding: 80px 24px;
  background: var(--bg);
}
.why-content {
  max-width: 1120px;
  margin: 0 auto;
}
.why-lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 500px;
  line-height: 1.6;
  margin-top: 16px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.why-icon {
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
}
.why-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.why-card-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* --- HEALTH --- */
.health {
  background: var(--fg);
  padding: 80px 24px;
}
.health-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.health-badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 32px;
}
.health-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  max-width: 700px;
  line-height: 1.1;
  margin-bottom: 56px;
}
.health-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.health-fact-path {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.health-fact-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.health-arrow {
  color: var(--accent-yellow);
}
.health-pathways {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.health-pathway-bug {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-yellow);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.health-pathway-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* --- AREAS --- */
.areas {
  padding: 80px 24px;
  background: var(--bg-alt);
}
.areas-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 48px 0 32px;
  text-align: left;
}
.areas-col-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.areas-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.areas-list li {
  font-size: 16px;
  color: var(--fg);
}
.areas-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 10px;
  margin-bottom: 2px;
}
.areas-note {
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
}

/* --- CLOSING --- */
.closing {
  background: var(--accent);
  padding: 100px 24px;
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 48px;
}
.closing-vision p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 16px;
}
.closing-vision p:last-child {
  margin-bottom: 0;
}

/* --- FOOTER --- */
.footer {
  background: var(--fg);
  padding: 32px 24px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
}
.footer-logo-kc { color: rgba(255,255,255,0.4); font-weight: 600; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); display: block; margin-top: 2px; }
.footer-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 48px 24px 40px; }
  .hero-left { order: 1; }
  .hero-right { order: 2; }
  .hero-stats { gap: 24px; }
  .hero-lede { max-width: 100%; }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .health-facts { grid-template-columns: 1fr; }
  .health-pathways { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 36px; }
  .hero-stats { gap: 20px; }
  .how-steps { grid-template-columns: 1fr; }
  .health-pathways { grid-template-columns: 1fr; }
  .areas-list { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .nav-tagline { display: none; }
}