:root {
  --bg: #F7F8F5;
  --bg-alt: #EDF0EB;
  --fg: #111827;
  --fg-muted: #4B5563;
  --green: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #3A7D5A;
  --amber: #F4C15A;
  --amber-dark: #D4A832;
  --white: #FFFFFF;
  --border: #D1D9C9;
  --font-head: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--green);
  letter-spacing: -0.3px;
}
.tag-pill {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  background: #EBF2EE;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.2px;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 64px;
  background: var(--white);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 28px;
}
.headline-accent { color: var(--green); }
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  padding-right: 32px;
}
.stat-value {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 32px;
}
.hero-bg-shape {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #EBF2EE 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* ORDER CARD */
.hero-visual {
  position: relative;
  z-index: 1;
}
.order-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 40px rgba(27,67,50,0.08), 0 2px 8px rgba(0,0,0,0.04);
}
.order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.oc-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}
.oc-badge {
  font-size: 11px;
  font-weight: 600;
  background: #EBF2EE;
  color: var(--green);
  padding: 4px 10px;
  border-radius: 12px;
}
.order-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #F0F3EC;
}
.order-line:last-of-type { border-bottom: none; }
.line-name { font-size: 14px; font-weight: 500; color: var(--fg); }
.line-sku { font-size: 11px; color: var(--fg-muted); margin-top: 2px; font-family: monospace; }
.line-price { font-family: var(--font-head); font-size: 15px; font-weight: 600; color: var(--fg); }
.order-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1.5px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.oc-total { display: flex; align-items: center; gap: 8px; }
.total-label { font-size: 13px; color: var(--fg-muted); }
.total-value { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--green); }
.oc-ship { font-size: 12px; color: var(--green-mid); font-weight: 500; }

/* FEATURES */
.features {
  padding: 96px 0;
  background: var(--bg);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 16px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.feature-card:hover {
  box-shadow: 0 6px 24px rgba(27,67,50,0.08);
  transform: translateY(-2px);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: #EBF2EE;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 18px;
}
.feature-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* PROOF */
.proof {
  padding: 96px 0;
  background: var(--green);
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.proof-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -1px;
  max-width: 700px;
  margin-bottom: 32px;
}
.proof-body {
  max-width: 680px;
  margin-bottom: 56px;
}
.proof-body p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 16px;
}
.proof-body p:last-child { margin-bottom: 0; }
.proof-stats {
  display: flex;
  gap: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.proof-stat {
  display: flex;
  flex-direction: column;
}
.proof-value {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -1px;
}
.proof-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  line-height: 1.4;
  max-width: 120px;
}

/* PROCESS */
.process {
  padding: 96px 0;
  background: var(--white);
}
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.process-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -0.8px;
  max-width: 580px;
  margin-bottom: 56px;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step {
  padding: 32px;
  background: var(--bg);
  border-radius: 14px;
  border: 1.5px solid var(--border);
}
.step-number {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.3;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-connector {
  display: flex;
  align-items: center;
  padding: 0 8px;
  padding-top: 48px;
}
.step-connector::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--border);
}

/* CLOSING */
.closing {
  padding: 96px 0;
  background: var(--bg);
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.closing-quote { }
.quote-text {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  color: var(--fg);
  line-height: 1.4;
  letter-spacing: -0.5px;
  font-style: italic;
  margin-bottom: 20px;
}
.quote-attr {
  font-size: 14px;
  color: var(--fg-muted);
}

/* FOOTER */
.site-footer {
  background: var(--green);
  padding: 48px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-brand {
  margin-bottom: 20px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.footer-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
  line-height: 1.5;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* MOBILE */
@media (max-width: 768px) {
  .header-inner { padding: 14px 20px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 20px; }
  .hero-visual { order: -1; }
  .hero-headline { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .hero-stats { gap: 0; flex-wrap: wrap; }
  .stat-item { padding-right: 20px; }
  .stat-divider { margin-right: 20px; }
  .features { padding: 64px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .features-inner { padding: 0 20px; }
  .proof { padding: 64px 0; }
  .proof-stats { flex-direction: column; gap: 32px; }
  .process-inner { padding: 0 20px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .closing { padding: 64px 0; }
  .footer-inner { padding: 0 20px; }
}