:root {
  --bg: #F7F4EF;
  --bg-alt: #EFEBE3;
  --fg: #1A1814;
  --fg-muted: #5C5650;
  --accent: #D4521A;
  --accent-warm: #F2C078;
  --accent-dark: #A03A0C;
  --border: #DDD9D1;
  --card-bg: #FFFFFF;

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --max-w: 1120px;
  --section-pad: 80px 24px;
  --radius: 12px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 14px;
  color: var(--fg-muted);
}

/* HERO */
.hero {
  padding: 80px 24px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(212, 82, 26, 0.1);
  border: 1px solid rgba(212, 82, 26, 0.25);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-stat {
  flex: 1;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.hero-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.hero-stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin: 0 12px;
  flex-shrink: 0;
}

/* Phone frame */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.phone-frame {
  background: #1A1814;
  border-radius: 40px;
  padding: 16px;
  width: 300px;
  box-shadow: 0 24px 60px rgba(26, 24, 20, 0.3), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.phone-screen {
  background: #111;
  border-radius: 28px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 320px;
}
.chat-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.5;
}
.chat-incoming {
  background: #2A2A2A;
  color: #E8E6E1;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-outgoing {
  background: var(--accent);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-booked {
  background: rgba(212, 82, 26, 0.15);
  color: #F2C078;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  font-size: 12px;
}
.phone-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: center;
}

/* PROBLEM */
.problem { background: var(--bg-alt); padding: var(--section-pad); }
.problem-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 32px;
}
.problem-statement {
  font-size: 20px;
  color: var(--fg);
  max-width: 640px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.problem-quote {
  margin: 40px 0;
  padding: 32px 40px;
  background: var(--card-bg);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.problem-quote blockquote {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
}
.problem-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--card-bg);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 16px;
}
.problem-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 82, 26, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

/* SERVICES */
.services { padding: var(--section-pad); }
.services-inner { max-width: var(--max-w); margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.service-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* PRICING */
.pricing { background: var(--bg-alt); padding: var(--section-pad); }
.pricing-inner { max-width: var(--max-w); margin: 0 auto; }
.pricing-card {
  background: var(--fg);
  color: #F7F4EF;
  border-radius: 20px;
  padding: 48px;
  max-width: 600px;
}
.pricing-header { margin-bottom: 32px; }
.pricing-tier {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-warm);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-per { font-size: 28px; font-weight: 600; }
.pricing-tagline { font-size: 16px; color: rgba(247, 244, 239, 0.6); }
.pricing-divider {
  height: 1px;
  background: rgba(247, 244, 239, 0.12);
  margin-bottom: 24px;
}
.pricing-setup {
  background: rgba(242, 192, 120, 0.12);
  border: 1px solid rgba(242, 192, 120, 0.2);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 15px;
}
.pricing-setup-label { color: var(--accent-warm); font-weight: 500; }
.pricing-setup-amount { color: #fff; font-weight: 700; }
.pricing-setup-note { color: rgba(247, 244, 239, 0.5); font-size: 13px; display: block; margin-top: 2px; }
.pricing-includes { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #F7F4EF;
}
.pricing-item svg { color: var(--accent-warm); flex-shrink: 0; }
.pricing-roi {
  background: rgba(212, 82, 26, 0.15);
  border: 1px solid rgba(212, 82, 26, 0.3);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.pricing-roi-inner { font-size: 14px; color: var(--accent-warm); line-height: 1.6; }

/* TESTIMONIAL */
.testimonial { padding: var(--section-pad); }
.testimonial-inner { max-width: var(--max-w); margin: 0 auto; }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-context { font-size: 13px; color: var(--fg-muted); }
.testimonial-stat {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.testimonial-stat-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.testimonial-detail { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* CLOSING */
.closing {
  background: var(--fg);
  padding: 100px 24px;
  text-align: center;
}
.closing-inner { max-width: 720px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: #F7F4EF;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: rgba(247, 244, 239, 0.55);
  margin-bottom: 48px;
}
.closing-cta {
  display: flex;
  justify-content: center;
}
.closing-cta-inner {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 20px 40px;
}
.cta-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

/* FOOTER */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 48px 24px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.footer-tagline { font-size: 14px; color: var(--fg-muted); margin-bottom: 24px; }
.footer-links { margin-bottom: 32px; font-size: 14px; color: var(--fg-muted); }
.footer-copy { font-size: 13px; color: var(--fg-muted); }

/* MOBILE */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 48px 20px; gap: 48px; }
  .hero-visual { display: none; }
  .hero-stats { flex-direction: column; gap: 8px; }
  .hero-stat-divider { display: none; }
  .problem-list { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 32px 24px; }
  .pricing-price { font-size: 52px; }
  .nav-tagline { display: none; }
}