/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FAFAF7;
  --bg-alt: #F2EFE9;
  --fg: #111111;
  --fg-muted: #6B6B6B;
  --accent: #E8622A;
  --accent-green: #4A7C59;
  --border: #E2DDD6;
  --card: #FFFFFF;
  --radius: 12px;
  --font-head: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* === NAVBAR === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--fg);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* === SECTION SHARED === */
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--fg);
}

/* === HERO === */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
}

.hero-bg-shape {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,98,42,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-green);
  background: rgba(74,124,89,0.1);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 20px;
}

.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat { display: flex; flex-direction: column; }

.stat-number {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual { position: relative; }

.visual-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.vc-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.vc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-alt);
  font-size: 14px;
}

.vc-row:last-of-type { border-bottom: none; }

.vc-price {
  font-weight: 600;
  color: var(--fg);
}

.vc-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.vc-total {
  font-size: 14px;
  color: var(--fg-muted);
}

.vc-total strong { color: var(--accent); font-size: 16px; }

.visual-badge {
  position: absolute;
  bottom: -14px;
  left: 24px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

/* === INDUSTRIES === */
.industries {
  padding: 96px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.industries h2 {
  margin-bottom: 48px;
  max-width: 560px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.industry-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.industry-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(232,98,42,0.08);
}

.industry-icon {
  color: var(--accent);
  margin-bottom: 14px;
}

.industry-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.industry-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* === PROOF === */
.proof {
  padding: 80px 0;
  background: var(--fg);
  color: white;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}

.proof-stat {}

.proof-number {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}

.proof-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.proof-quote {
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}

.proof-quote blockquote {
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 12px;
}

.proof-quote cite {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-style: normal;
}

/* === HOW === */
.how {
  padding: 96px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.how h2 { margin-bottom: 56px; }

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.step:last-child { border-bottom: 1px solid var(--border); }

.step-number {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  padding-top: 4px;
}

.step h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 580px;
}

/* === FEATURES === */
.features {
  padding: 96px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.features h2 { margin-bottom: 48px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature {
  background: var(--card);
  padding: 36px 32px;
}

.feature-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232,98,42,0.08);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.feature h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.feature p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === CLOSING === */
.closing {
  padding: 96px 0;
  background: var(--accent);
  color: white;
  text-align: center;
}

.closing h2 {
  color: white;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.closing p {
  font-size: 17px;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 0;
  color: rgba(255,255,255,0.85);
}

.closing-emphasis {
  margin-top: 24px !important;
  font-family: var(--font-head);
  font-size: 20px !important;
  font-weight: 700;
  color: white !important;
}

/* === FOOTER === */
.footer {
  background: var(--fg);
  color: white;
  padding: 48px 0;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}

.footer-brand {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  max-width: 420px;
}

.footer-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .section-inner { padding: 0 24px; }
  .hero-inner { padding: 0 24px; }
  .hero { padding: 56px 0 64px; }
  .hero-stats { gap: 20px; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .feature-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 56px 1fr; gap: 20px; }
  .proof-number { font-size: 40px; }
  .footer-inner { padding: 0 24px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 34px; }
  .industry-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-number { font-size: 36px; }
}