:root {
  --bg: #FDFAF6;
  --bg-alt: #F4EDE4;
  --fg: #1C1A17;
  --fg-muted: #6B6560;
  --accent: #C8521A;
  --accent-dark: #A03F12;
  --surface: #FFFFFF;
  --border: #E5DDD3;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, 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: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* --- HERO --- */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pill {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg);
}

/* --- PHONE MOCK --- */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-mock {
  background: #1C1A17;
  border-radius: 36px;
  padding: 16px;
  width: 260px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.05);
}
.phone-notch {
  width: 80px;
  height: 22px;
  background: #1C1A17;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 12px;
}
.phone-screen {
  background: #2A2723;
  border-radius: 24px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.msg {
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 0.78rem;
  line-height: 1.4;
  max-width: 85%;
}
.incoming {
  background: #3A3530;
  color: #E8E2D8;
  align-self: flex-start;
}
.outgoing {
  background: var(--accent);
  color: #fff;
  align-self: flex-end;
}
.system {
  background: rgba(200,82,26,0.2);
  color: #F4A97A;
  font-size: 0.7rem;
  text-align: center;
  align-self: center;
}

/* --- OVERLINE --- */
.overline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
}

/* --- PROBLEM --- */
.problem {
  background: var(--fg);
  color: var(--bg);
  padding: 5rem 2rem;
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.problem-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 3rem;
  max-width: 600px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.5;
}
.problem-callout {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 2rem;
  max-width: 520px;
  color: #C8BFB3;
}

/* --- HOW --- */
.how {
  background: var(--bg-alt);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.how-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 3rem;
  max-width: 600px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 1rem;
}
.step-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.step-content p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* --- SERVICES --- */
.services {
  padding: 5rem 2rem;
  background: var(--bg);
}
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.services-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 3rem;
  max-width: 600px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.service-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* --- PRICING --- */
.pricing {
  background: var(--bg-alt);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.pricing-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.pricing-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  margin-bottom: 3rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
  margin-bottom: 2.5rem;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,82,26,0.12);
}
.pricing-badge {
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.pricing-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--fg);
}
.pricing-period {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.pricing-features li {
  font-size: 0.88rem;
  color: var(--fg);
  padding-left: 1.2rem;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}
.pricing-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.pricing-cta {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--fg-muted);
}

/* --- TESTIMONIALS --- */
.testimonials {
  padding: 5rem 2rem;
  background: var(--bg);
}
.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.testimonials-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 3rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.testimonial p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial-attr {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* --- CLOSING --- */
.closing {
  background: var(--fg);
  color: var(--bg);
  padding: 5rem 2rem;
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.closing p {
  font-size: 1.05rem;
  color: #C8BFB3;
  margin-bottom: 1rem;
}
.closing-sub {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: #9C8E82;
}

/* --- FOOTER --- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--fg);
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-bottom: 0.8rem;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

/* --- MOBILE --- */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 1.5rem 2.5rem;
  }
  .hero-visual { order: -1; }
  .problem-grid,
  .steps,
  .services-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .nav-tagline { display: none; }
}
@media (max-width: 480px) {
  .phone-mock { width: 220px; }
  .pricing-grid { gap: 1rem; }
}