:root {
  --bg: #F7F6F3;
  --bg-alt: #EDECE8;
  --fg: #1C2B3A;
  --fg-muted: #5C6B7A;
  --accent: #E85D2C;
  --accent-dark: #C44E22;
  --navy: #1C2B3A;
  --white: #FFFFFF;
  --problem-red: #D94F3D;
  --problem-bg: #FDF4F2;
  --solution-bg: #EDF7F0;
}

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

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

h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.15;
}

/* NAV */
.nav {
  background: var(--navy);
  padding: 16px 40px;
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--white);
  letter-spacing: -0.3px;
}
.nav-tag {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}

/* HERO */
.hero {
  background: var(--navy);
  padding: 72px 40px 80px;
  color: var(--white);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.hero-headline {
  font-size: clamp(36px, 4vw, 54px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-number { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--white); }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* PROBLEM BOARD */
.problem-board {
  background: var(--problem-bg);
  border-radius: 16px;
  border: 1px solid rgba(217,79,61,0.15);
  overflow: hidden;
  margin-bottom: 12px;
}
.solution-board {
  background: var(--solution-bg);
  border-radius: 16px;
  border: 1px solid rgba(38,166,65,0.15);
  overflow: hidden;
}
.problem-header, .solution-header {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.problem-header { background: rgba(217,79,61,0.08); color: var(--problem-red); }
.solution-header { background: rgba(38,166,65,0.08); color: #26A641; }
.problem-items { padding: 16px 20px; display: flex; flex-direction: column; gap: 12px; }
.solution-items { padding: 14px 20px; display: flex; flex-direction: column; gap: 10px; }
.problem-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: #8B4D45; font-weight: 500; }
.problem-icon { width: 32px; height: 32px; background: rgba(217,79,61,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--problem-red); flex-shrink: 0; }
.solution-item { font-size: 14px; color: #1A5C2A; font-weight: 500; display: flex; align-items: center; gap: 10px; }
.check { color: #26A641; font-weight: 700; font-size: 16px; }
.problem-footer { padding: 10px 20px; font-size: 12px; color: #8B4D45; font-style: italic; border-top: 1px solid rgba(0,0,0,0.06); }

/* SECTIONS shared */
.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-size: clamp(28px, 3vw, 42px);
  color: var(--fg);
  margin-bottom: 20px;
}
.section-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 680px;
}
.section-body + .section-body { margin-top: 16px; }

/* PROBLEM SECTION */
.problem-section { padding: 72px 40px; background: var(--bg); }
.problem-content { max-width: 1200px; margin: 0 auto; }

/* FEATURES */
.features-section { padding: 72px 40px; background: var(--navy); }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-headline { font-size: clamp(28px, 3vw, 42px); color: var(--white); margin-bottom: 48px; }
.section-label.features-label { color: var(--accent); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(232,93,44,0.4); }
.feature-icon { color: var(--accent); margin-bottom: 16px; }
.feature-card h3 { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--white); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* HOW IT WORKS */
.howitworks-section { padding: 72px 40px; background: var(--bg-alt); }
.howitworks-inner { max-width: 1200px; margin: 0 auto; }
.howitworks-headline { font-size: clamp(28px, 3vw, 42px); color: var(--fg); margin-bottom: 48px; }
.steps { display: flex; align-items: flex-start; gap: 0; }
.step { flex: 1; padding: 0 32px 0 0; }
.step:first-child { padding-left: 0; }
.step-number { font-family: 'DM Serif Display', serif; font-size: 48px; color: var(--accent); opacity: 0.4; margin-bottom: 12px; line-height: 1; }
.step h3 { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--fg); margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }
.step-connector { width: 60px; height: 1px; background: var(--fg-muted); opacity: 0.2; margin-top: 36px; flex-shrink: 0; }

/* INDUSTRIES */
.industries-section { padding: 72px 40px; background: var(--bg); }
.industries-inner { max-width: 1200px; margin: 0 auto; }
.industries-headline { font-size: clamp(28px, 3vw, 42px); color: var(--fg); margin-bottom: 40px; }
.industries-list { display: flex; gap: 20px; flex-wrap: wrap; }
.industry-item { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid rgba(0,0,0,0.08); border-radius: 40px; padding: 12px 20px; font-size: 15px; font-weight: 500; color: var(--fg); }
.industry-icon { color: var(--accent); }

/* CLOSING */
.closing-section { padding: 80px 40px; background: var(--navy); text-align: center; }
.closing-inner { max-width: 760px; margin: 0 auto; }
.closing-statement { font-family: 'DM Serif Display', serif; font-size: clamp(24px, 2.5vw, 34px); color: var(--white); line-height: 1.4; }

/* FOOTER */
.footer { background: #111C27; padding: 40px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--white); display: block; margin-bottom: 4px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-note { font-size: 12px; color: rgba(255,255,255,0.2); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-connector { width: 40px; height: 1px; margin: 16px 0; }
  .hero { padding: 48px 24px 56px; }
  .nav { padding: 14px 24px; }
  .problem-section, .features-section, .howitworks-section, .industries-section, .closing-section, .footer { padding-left: 24px; padding-right: 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .hero-stats { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .industries-list { gap: 10px; }
  .industry-item { font-size: 13px; padding: 10px 16px; }
}