/* === VARIABLES === */
:root {
  --bg: #FAFAF5;
  --bg-alt: #F0EDE6;
  --fg: #1A1A18;
  --fg-muted: #5C5C55;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --green: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #95D5B2;
  --border: #D6D3CC;
  --card-bg: #FFFFFF;
}

/* === RESET & BASE === */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'DM Serif Display', serif; line-height: 1.2; }

/* === NAV === */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 16px 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-family: 'DM Serif Display', serif; font-size: 1.25rem; color: var(--green); }
.nav-tagline { font-size: 0.875rem; color: var(--fg-muted); }

/* === HERO === */
.hero { padding: 80px 40px 60px; }
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-eyebrow {
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent-dark); margin-bottom: 16px;
}
.hero-headline { font-size: clamp(2.25rem, 4vw, 3.25rem); color: var(--green); margin-bottom: 20px; }
.hero-sub { font-size: 1.0625rem; color: var(--fg-muted); max-width: 480px; margin-bottom: 40px; line-height: 1.7; }
.hero-stats { display: flex; flex-direction: column; gap: 16px; }
.hero-stat { display: flex; align-items: baseline; gap: 12px; }
.stat-number { font-family: 'DM Serif Display', serif; font-size: 1.75rem; color: var(--green); }
.stat-label { font-size: 0.875rem; color: var(--fg-muted); }

/* === HERO MOCKUP === */
.hero-mockup {
  background: #111110; border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.06);
}
.mockup-topbar {
  background: #1E1E1C; padding: 10px 16px;
  display: flex; align-items: center; gap: 6px;
}
.mockup-dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #28C840; }
.mockup-title { font-size: 0.75rem; color: #888; margin-left: 8px; font-family: 'DM Sans', sans-serif; }
.mockup-content { padding: 20px; }
.mockup-header-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.mockup-section-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #888; }
.mockup-badge { font-size: 0.6875rem; background: #1B4332; color: #95D5B2; padding: 2px 8px; border-radius: 20px; font-weight: 600; }
.mockup-job {
  display: grid; grid-template-columns: 60px 1fr 80px;
  gap: 12px; align-items: center;
  padding: 10px 12px; border-radius: 8px; margin-bottom: 8px;
  background: #1A1A18; border: 1px solid #2A2A26;
}
.mockup-job-muted { opacity: 0.45; }
.job-time { font-size: 0.6875rem; color: #888; font-weight: 600; }
.job-client { display: block; font-size: 0.8125rem; color: #F5F5F0; font-weight: 500; margin-bottom: 2px; }
.job-address { display: block; font-size: 0.6875rem; color: #888; }
.job-tag { display: inline-block; font-size: 0.5625rem; padding: 1px 6px; border-radius: 4px; margin-top: 3px; font-weight: 600; }
.job-tag-clean { background: #1B3A2A; color: #95D5B2; }
.job-status { font-size: 0.625rem; color: #888; text-align: right; }
.job-status-ai { color: #F59E0B; font-weight: 600; }
.mockup-ai-note {
  margin-top: 12px; padding: 8px 12px; background: #1B3A2A; border-radius: 6px;
  font-size: 0.6875rem; color: #95D5B2; display: flex; align-items: center; gap: 6px;
}
.ai-icon { font-size: 0.5rem; }

/* === PROBLEMS === */
.problems { padding: 80px 40px; background: var(--bg-alt); }
.problems-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 12px; }
.section-headline { font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--green); margin-bottom: 20px; max-width: 640px; }
.section-body { font-size: 1.0625rem; color: var(--fg-muted); max-width: 640px; margin-bottom: 48px; line-height: 1.7; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.problem-card {
  background: var(--card-bg); border-radius: 16px; padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.problem-icon { font-size: 1.5rem; display: block; margin-bottom: 16px; }
.problem-card h3 { font-size: 1.125rem; color: var(--green); margin-bottom: 10px; }
.problem-card p { font-size: 0.9375rem; color: var(--fg-muted); line-height: 1.65; }

/* === FEATURES === */
.features { padding: 80px 40px; background: var(--bg); }
.features-inner { max-width: 1200px; margin: 0 auto; }
.feature-list { display: flex; flex-direction: column; gap: 64px; margin-top: 48px; }
.feature-row {
  display: grid; grid-template-columns: 60px 1fr 300px;
  gap: 32px; align-items: start;
}
.feature-row-reverse { grid-template-columns: 60px 1fr 300px; }
.feature-number { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--border); line-height: 1; padding-top: 4px; }
.feature-title { font-size: 1.5rem; color: var(--green); margin-bottom: 12px; }
.feature-body { font-size: 1rem; color: var(--fg-muted); line-height: 1.7; }

/* Feature visuals */
.feature-visual { background: var(--bg-alt); border-radius: 12px; padding: 24px; border: 1px solid var(--border); }
.fv-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 16px; }
.fv-bar { margin-bottom: 8px; }
.fv-bar-fill { height: 8px; background: linear-gradient(90deg, #1B4332, #2D6A4F); border-radius: 4px; margin-bottom: 4px; }
.fv-bar-label { font-size: 0.75rem; color: var(--green); font-weight: 600; }
.fv-suggestion { background: #1B4332; color: #95D5B2; padding: 8px 12px; border-radius: 8px; font-size: 0.8125rem; margin-top: 8px; }
.fv-suggestion strong { color: #F59E0B; }
.fv-arrow { margin-right: 6px; }

.route-map svg { width: 100%; height: auto; }
.fv-route-stats { font-size: 0.75rem; color: var(--green); font-weight: 600; margin-top: 8px; }

.follow-steps { display: flex; flex-direction: column; gap: 10px; }
.follow-step { display: flex; align-items: center; gap: 10px; font-size: 0.8125rem; color: var(--fg-muted); }
.follow-step-done { color: var(--green); }
.follow-check { width: 18px; height: 18px; background: #1B4332; color: #95D5B2; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.625rem; flex-shrink: 0; }
.follow-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
.follow-step-active .follow-dot { background: var(--accent); }
.follow-step-active { color: var(--fg); font-weight: 500; }

/* === HOW === */
.how { padding: 80px 40px; background: var(--green); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how .section-eyebrow { color: var(--accent); }
.how .section-headline { color: #FAFAF5; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 48px; margin-bottom: 48px; }
.how-step { }
.how-num { font-family: 'DM Serif Display', serif; font-size: 3rem; color: rgba(255,255,255,0.15); line-height: 1; display: block; margin-bottom: 16px; }
.how-step h3 { font-size: 1.125rem; color: #FAFAF5; margin-bottom: 10px; }
.how-step p { font-size: 0.9375rem; color: rgba(250,250,245,0.6); line-height: 1.65; }

/* Pricing banner */
.pricing-banner { background: rgba(245, 158, 11, 0.12); border: 1px solid rgba(245, 158, 11, 0.3); border-radius: 16px; overflow: hidden; }
.pricing-banner-inner { padding: 32px 40px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.pricing-label { font-size: 1rem; font-weight: 700; color: #F59E0B; margin-bottom: 4px; }
.pricing-note { font-size: 0.875rem; color: rgba(250,250,245,0.6); }
.pricing-banner-right { display: flex; align-items: baseline; gap: 8px; }
.pricing-amount { font-family: 'DM Serif Display', serif; font-size: 2.5rem; color: #FAFAF5; }
.pricing-period { font-size: 1rem; color: rgba(250,250,245,0.6); }

/* === MANIFESTO === */
.manifesto { padding: 80px 40px; background: var(--bg-alt); }
.manifesto-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.manifesto-quote {
  font-family: 'DM Serif Display', serif; font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--green); line-height: 1.5; font-style: italic; margin-bottom: 24px;
}
.manifesto-attr { font-size: 0.875rem; color: var(--fg-muted); }

/* === CLOSING === */
.closing { padding: 100px 40px; background: var(--green); text-align: center; }
.closing-inner { max-width: 720px; margin: 0 auto; }
.closing-headline { font-family: 'DM Serif Display', serif; font-size: clamp(1.75rem, 3.5vw, 2.75rem); color: #FAFAF5; line-height: 1.25; margin-bottom: 24px; }
.closing-body { font-size: 1.0625rem; color: rgba(250,250,245,0.65); line-height: 1.7; }

/* === FOOTER === */
.footer { padding: 60px 40px 32px; background: #0F1A14; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.footer-logo { font-family: 'DM Serif Display', serif; font-size: 1.25rem; color: #FAFAF5; display: block; margin-bottom: 12px; }
.footer-desc { font-size: 0.875rem; color: rgba(250,250,245,0.45); max-width: 320px; line-height: 1.6; }
.footer-note { font-size: 0.875rem; color: rgba(250,250,245,0.45); font-style: italic; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom p { font-size: 0.75rem; color: rgba(250,250,245,0.25); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-mockup { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .feature-row, .feature-row-reverse { grid-template-columns: 60px 1fr; gap: 20px; }
  .feature-visual { grid-column: 1 / -1; }
  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { flex-direction: column; }
  .pricing-banner-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .hero, .problems, .features, .how, .manifesto, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .hero { padding-top: 48px; }
  .section-headline { font-size: 1.75rem; }
}