/* ─── Variables ─── */
:root {
  --bg: #F8F5F0;
  --bg-alt: #F0EBE3;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --accent: #E8632A;
  --accent-light: #FDF0E8;
  --border: #D9D3CB;
  --card-bg: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

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

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ─── Manifesto ─── */
.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 80px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.manifesto-headline {
  font-size: clamp(40px, 5vw, 64px);
  color: var(--fg);
  margin-bottom: 28px;
}

.manifesto-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
}

.manifesto-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.manifesto-stat {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--accent);
}

.manifesto-desc {
  font-size: 13px;
  color: var(--fg-muted);
}

.manifesto-divider {
  color: var(--border);
}

/* ─── Phone Frame Visual ─── */
.manifesto-visual {
  display: flex;
  justify-content: center;
}

.phone-frame {
  background: var(--fg);
  border-radius: 40px;
  padding: 16px;
  width: 320px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);
  position: relative;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: var(--fg);
  border-radius: 12px;
  z-index: 2;
}

.phone-screen {
  background: #0F0F0F;
  border-radius: 28px;
  overflow: hidden;
  padding: 48px 20px 20px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.call-ringing {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1C1C1C;
  border-radius: 12px;
  padding: 12px;
}

.call-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-info { flex: 1; }
.call-name { font-size: 12px; color: #aaa; }
.call-number { font-size: 13px; color: #fff; font-weight: 500; }

.call-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #4ade80;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.call-thread {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.call-bubble {
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 12px;
  line-height: 1.4;
}

.call-bubble.ai {
  background: #2A2A2A;
  color: #ddd;
  border-bottom-left-radius: 4px;
}

.call-bubble.human {
  background: var(--accent);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.booking-confirmed {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #0a2e1a;
  color: #4ade80;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 500;
}

/* ─── Section Headers ─── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── How It Works ─── */
.how-it-works {
  padding: 80px 80px;
  background: var(--bg-alt);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  position: relative;
  padding: 32px;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.step-number {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 16px;
  line-height: 1;
}

.step-icon {
  margin-bottom: 20px;
}

.process-step h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.step-logos span {
  font-size: 11px;
  padding: 4px 10px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 20px;
  font-weight: 500;
}

/* ─── Pricing Tiers ─── */
.pricing-tiers {
  padding: 80px;
  background: var(--bg);
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.tier-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.2s ease;
}

.tier-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 24px 60px rgba(232,99,42,0.12);
  transform: scale(1.02);
}

.tier-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.tier-name {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.tier-badge {
  font-size: 10px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 20px;
  background: var(--accent-light);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tier-price {
  margin-bottom: 28px;
}

.tier-setup {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--fg);
}

.tier-setup-label {
  font-size: 14px;
  color: var(--fg-muted);
  margin-left: 6px;
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.tier-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}

.tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.tier-retainer {
  font-size: 13px;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  font-weight: 500;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
}

/* ─── Trust Signal ─── */
.trust-signal {
  padding: 80px;
  background: var(--fg);
  color: #fff;
}

.trust-quote {
  text-align: center;
  margin-bottom: 60px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.trust-quote blockquote {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

.trust-quote cite {
  font-size: 14px;
  color: #888;
  font-style: normal;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 48px auto 0;
}

.trust-callout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px 32px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.trust-callout-stat {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--accent);
  flex-shrink: 0;
}

.trust-callout-text {
  font-size: 16px;
  color: #aaa;
  line-height: 1.6;
}

.trust-metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 8px;
}

.metric-label {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
}

/* ─── Closing ─── */
.closing {
  padding: 100px 80px;
  background: var(--bg);
}

.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 28px;
}

.closing p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.closing-statement {
  font-size: 18px !important;
  color: var(--fg) !important;
  font-weight: 500;
  margin-top: 36px !important;
}

.closing-cta {
  margin-top: 40px;
}

.cta-button {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(232,99,42,0.3);
}

.cta-button:hover {
  background: #d4561e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,99,42,0.4);
}

/* ─── Footer ─── */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 48px 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-logo {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 800;
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}

.footer-meta {
  font-size: 13px;
  color: var(--fg-muted);
}

.footer-copy {
  font-size: 12px;
  color: var(--border);
  margin-top: 8px;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .manifesto {
    grid-template-columns: 1fr;
    padding: 60px 32px;
    gap: 48px;
  }

  .manifesto-visual {
    order: -1;
  }

  .phone-frame { width: 280px; }

  .how-it-works,
  .pricing-tiers,
  .trust-signal,
  .closing {
    padding: 60px 32px;
  }

  .process-grid,
  .tiers-grid,
  .trust-metrics {
    grid-template-columns: 1fr;
  }

  .tier-card.featured {
    transform: none;
  }

  .manifesto-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .manifesto-divider { display: none; }
}

@media (max-width: 480px) {
  .phone-frame { width: 260px; }
}