:root {
  --amber: #B45309;
  --amber-light: #FEF3C7;
  --red-light: #FEE2E2;
  --green-light: #D1FAE5;
  --bg: #FEFCF5;
  --bg-alt: #FEF8EE;
  --text: #1C1917;
  --text-muted: #78716C;
  --border: #E7E5E0;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
}

/* Navbar */
.navbar {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 14px;
  color: var(--text-muted);
}

/* Hero */
.hero {
  padding: 72px 40px 64px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.05;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-stat-card {
  background: var(--amber);
  color: #fff;
  border-radius: 16px;
  padding: 28px 32px;
}
.stat-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.stat-row + .stat-row {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.25);
}
.stat-label {
  font-size: 13px;
  opacity: 0.75;
}
.stat-highlight {
  flex-direction: row;
  align-items: flex-end;
}
.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}
.stat-unit {
  font-size: 15px;
  opacity: 0.8;
  line-height: 1.4;
}
.hero-proof-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
}

/* Proof */
.proof {
  padding: 48px 40px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.proof-item {
  padding: 0 32px;
}
.proof-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
}
.proof-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 6px;
}
.proof-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Services */
.services {
  padding: 80px 40px;
}
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 48px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.service-icon {
  margin-bottom: 20px;
}
.service-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Difference */
.difference {
  padding: 80px 40px;
  background: var(--text);
  color: #fff;
}
.difference-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.diff-left .section-title {
  color: #fff;
  margin-bottom: 20px;
}
.diff-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.diff-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.diff-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}
.diff-row.diff-header-row {
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.diff-row span:nth-child(2) { color: rgba(255,255,255,0.5); }
.diff-row span:nth-child(3) { color: #fff; }
.diff-win {
  color: #86EFAC !important;
  font-weight: 500;
}

/* Pricing */
.pricing {
  padding: 80px 40px;
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.pricing-card-featured {
  border-color: var(--amber);
  border-width: 2px;
}
.pricing-tier {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--amber);
  margin-bottom: 16px;
}
.pricing-price {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
}
.pricing-period {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin: 12px 0 24px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}
.pricing-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 20px;
  text-align: center;
}
.pricing-cta-featured {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
}
.pricing-note {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

/* Closing */
.closing {
  padding: 80px 40px 100px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.closing-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}
.closing-author {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.closing-sub {
  font-size: 16px;
  color: var(--amber);
  font-weight: 500;
}

/* Footer */
.footer {
  padding: 28px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--text);
}
.footer-sep { opacity: 0.4; }

/* Mobile */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .proof-inner { grid-template-columns: 1fr; gap: 32px; }
  .proof-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .difference-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .navbar { padding: 16px 20px; }
  .hero { padding: 48px 20px 40px; }
  .services, .difference, .pricing, .closing { padding: 56px 20px; }
  .proof { padding: 40px 20px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 40px; }
  .stat-value { font-size: 40px; }
}