/* === BASE TOKENS === */
:root {
  --green-deep: #0d3d2e;
  --green-mid: #145a3a;
  --green-light: #1e7a50;
  --amber: #e8960c;
  --amber-light: #f5b93a;
  --cream: #f7f3ec;
  --cream-dark: #ede8df;
  --text-primary: #1a1a18;
  --text-secondary: #4a4a44;
  --text-muted: #7a7a72;
  --white: #ffffff;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* === NAVBAR === */
.navbar {
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--green-deep);
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* === HERO === */
.hero {
  padding: 80px 0 72px;
  background: var(--cream);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 58px;
  line-height: 1.1;
  color: var(--green-deep);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 12px;
}
.hero-sub.secondary { color: var(--text-muted); font-size: 15px; }

/* === FLOW CARD === */
.flow-card {
  background: var(--green-deep);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.flow-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}
.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.merchant-icon { background: rgba(232,150,12,0.15); color: var(--amber-light); }
.bridge-icon { background: rgba(255,255,255,0.1); color: #fff; }
.provider-icon { background: rgba(30,122,80,0.3); color: #6fcf9a; }
.step-info { display: flex; flex-direction: column; gap: 3px; }
.step-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; }
.step-detail { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.9); }
.flow-arrow { display: flex; justify-content: center; padding: 4px 0; }

/* === STATS === */
.stats { background: var(--green-deep); padding: 56px 0; }
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat-item { flex: 1; text-align: center; padding: 0 24px; }
.stat-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--amber);
  margin-bottom: 10px;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.stat-divider { width: 1px; height: 80px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* === SECTION SHARED === */
.section-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-header { margin-bottom: 48px; }
.section-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 38px;
  color: var(--green-deep);
  line-height: 1.2;
}

/* === HOW IT WORKS === */
.howitworks { padding: 88px 0; max-width: 1100px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-card { padding: 32px; background: var(--white); border-radius: 12px; border: 1px solid var(--cream-dark); }
.step-num { font-family: 'DM Serif Display', serif; font-size: 42px; color: var(--cream-dark); display: block; margin-bottom: 20px; }
.step-card h3 { font-size: 18px; font-weight: 600; color: var(--green-deep); margin-bottom: 12px; }
.step-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

/* === FEATURES === */
.features { padding: 88px 0; background: var(--white); }
.features-inner, .features { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.feature-card {
  padding: 32px;
  border-radius: 12px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
}
.feature-icon { color: var(--green-mid); margin-bottom: 20px; }
.feature-card h3 { font-size: 18px; font-weight: 600; color: var(--green-deep); margin-bottom: 10px; }
.feature-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

/* === INDUSTRIES === */
.industries { background: var(--green-deep); padding: 88px 0; }
.industries-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.industries-text .section-eyebrow { color: var(--amber); }
.industries-text h2 { font-family: 'DM Serif Display', serif; font-size: 36px; color: #fff; line-height: 1.2; margin-bottom: 20px; }
.industries-text p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.65; }
.industries-list { display: flex; flex-wrap: wrap; gap: 12px; }
.industry-tag {
  padding: 10px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

/* === CLOSING === */
.closing { padding: 88px 0; background: var(--cream); }
.closing-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; text-align: center; }
.closing-inner h2 { font-family: 'DM Serif Display', serif; font-size: 44px; color: var(--green-deep); line-height: 1.2; margin-bottom: 28px; max-width: 700px; margin-left: auto; margin-right: auto; }
.closing-inner p { font-size: 17px; color: var(--text-secondary); line-height: 1.7; max-width: 600px; margin-left: auto; margin-right: auto; }
.closing-vision { margin-top: 20px; font-style: italic; color: var(--text-muted) !important; }

/* === FOOTER === */
.footer { border-top: 1px solid var(--cream-dark); padding: 28px 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; gap: 20px; }
.footer-brand { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--green-deep); }
.footer-copy { font-size: 13px; color: var(--text-muted); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-text h1 { font-size: 42px; }
  .flow-card { padding: 20px; }
  .stats-inner { flex-direction: column; gap: 32px; }
  .stat-divider { width: 80px; height: 1px; }
  .stat-item { padding: 0; }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .industries-inner { grid-template-columns: 1fr; gap: 40px; }
  .closing-inner h2 { font-size: 32px; }
  .section-header h2 { font-size: 30px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}