:root {
  --bg: #F7F4EF;
  --fg: #1A1714;
  --accent: #D97706;
  --accent-light: #FEF3C7;
  --muted: #78716C;
  --light: #F7F4EF;
  --border: #E7E4DF;
  --card: #FFFFFF;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Figtree', sans-serif;
}

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

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

/* Nav */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* Hero */
.hero {
  padding: 80px 40px 60px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service-tag {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  background: var(--accent-light);
  color: #92400E;
  border-radius: 20px;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  align-items: center;
  gap: 20px;
}
.visual-phone {
  width: 140px;
  height: 200px;
  background: #1A1714;
  border-radius: 20px;
  padding: 16px;
  flex-shrink: 0;
}
.phone-screen {
  background: #fff;
  border-radius: 12px;
  height: 100%;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.review-stars {
  font-size: 16px;
  color: #F59E0B;
}
.review-count {
  font-size: 10px;
  color: var(--muted);
}
.review-biz {
  font-size: 11px;
  font-weight: 700;
  color: var(--fg);
  margin-top: 2px;
}
.no-web-badge {
  font-size: 9px;
  background: #FEE2E2;
  color: #991B1B;
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 600;
  margin-top: 6px;
}
.visual-arrow {
  flex-shrink: 0;
}
.visual-site {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.site-header {
  background: var(--fg);
  padding: 10px 16px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.site-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}
.site-content {
  padding: 20px;
}
.site-h1 {
  height: 20px;
  background: var(--fg);
  border-radius: 4px;
  width: 60%;
  margin-bottom: 12px;
}
.site-text {
  height: 10px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 8px;
}
.site-text.short { width: 75%; }
.site-cta {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

/* Problem */
.problem {
  background: var(--fg);
  color: var(--light);
  padding: 60px 40px;
}
.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.problem-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}
.stat {
  text-align: center;
  padding: 0 30px;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.15);
}
.problem-copy {
  text-align: center;
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

/* Services */
.services {
  padding: 80px 40px;
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 50px;
  max-width: 600px;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.card-icon {
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}
.service-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.card-price {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
}

/* Process */
.process {
  padding: 80px 40px;
  background: #F0EDE8;
}
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
}
.step-content h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}
.step-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
}

/* Testimonial */
.testimonial {
  padding: 80px 40px;
  background: var(--accent-light);
}
.testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 120px;
  color: var(--accent);
  line-height: 0.5;
  margin-bottom: 20px;
  opacity: 0.4;
}
blockquote {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 32px;
}
.testimonial-source { }
.source-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.source-meta {
  font-size: 13px;
  color: var(--muted);
}

/* Closing */
.closing {
  padding: 100px 40px;
  text-align: center;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
}
.footer-desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}
.footer-links {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}
.footer-legal {
  font-size: 12px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    justify-content: center;
  }
  .problem-stats {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .stat-divider { display: none; }
  .service-cards {
    grid-template-columns: 1fr;
  }
  .step {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }
  .step-num { font-size: 36px; }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav { padding: 16px 20px; }
  .hero { padding: 48px 20px 40px; }
  .services, .process, .closing { padding: 60px 20px; }
  .problem { padding: 48px 20px; }
  .testimonial { padding: 60px 20px; }
  .footer { padding: 24px 20px; }
}