/* ===== VARIABLES ===== */
:root {
  --slate: #0f0f1a;
  --slate-light: #1a1a2e;
  --amber: #e8a020;
  --amber-dim: rgba(232, 160, 32, 0.12);
  --cream: #faf6ee;
  --cream-dark: #f0e8d8;
  --text: #f5f0e8;
  --text-muted: rgba(245, 240, 232, 0.55);
  --text-dim: rgba(245, 240, 232, 0.35);
  --green: #34d399;
  --border: rgba(245, 240, 232, 0.08);
  --border-hover: rgba(245, 240, 232, 0.15);
}

/* ===== RESET & BASE ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--slate);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.2;
  font-weight: 400;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 5vw 4rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(232, 160, 32, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-dim);
  border: 1px solid rgba(232, 160, 32, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--amber);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--text);
  margin-bottom: 1.5rem;
}

.hero-headline em {
  color: var(--amber);
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero-workflow {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--slate-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}

.arrow {
  color: var(--text-dim);
  flex-shrink: 0;
}

/* ===== HERO ART (CALL CARD) ===== */
.hero-art {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.call-card {
  background: var(--slate-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.call-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), rgba(232, 160, 32, 0.2));
}

.call-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.caller-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--amber-dim);
  border: 1px solid rgba(232, 160, 32, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--amber);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.caller-info {
  flex: 1;
}

.caller-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.caller-num {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.call-status-ring {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--green);
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.2);
  flex-shrink: 0;
}

.ring-incoming {
  animation: ring-pulse 1.5s ease-in-out infinite;
}

@keyframes ring-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.05); }
}

.call-transcript {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1rem;
}

.transcript-line {
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: 12px;
  line-height: 1.4;
}

.transcript-line.them {
  background: rgba(245, 240, 232, 0.06);
  color: var(--text-muted);
  align-self: flex-start;
  max-width: 80%;
}

.transcript-line.ai {
  background: rgba(232, 160, 32, 0.12);
  color: var(--text);
  align-self: flex-end;
  max-width: 80%;
  border: 1px solid rgba(232, 160, 32, 0.1);
}

.transcript-line.booking {
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.2);
  color: var(--green);
}

.call-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.tag.booked {
  background: rgba(52, 211, 153, 0.15);
  color: var(--green);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

/* ===== SMS CARD ===== */
.sms-card {
  background: var(--slate-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  margin-left: 2rem;
}

.sms-header {
  background: rgba(52, 211, 153, 0.08);
  padding: 8px 16px;
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 500;
  border-bottom: 1px solid rgba(52, 211, 153, 0.1);
}

.sms-body {
  padding: 14px 16px;
}

.sms-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== PROBLEM SECTION ===== */
.problem {
  background: var(--cream);
  color: var(--slate);
  padding: 6rem 5vw;
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.overline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.problem h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--slate);
  margin-bottom: 3.5rem;
  max-width: 600px;
}

.stats-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 180px;
}

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--slate);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(15, 15, 26, 0.6);
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(15, 15, 26, 0.1);
  flex-shrink: 0;
}

.problem-callout {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--slate-light);
  font-style: italic;
  max-width: 500px;
}

/* ===== HOW SECTION ===== */
.how {
  background: var(--slate);
  padding: 6rem 5vw;
  position: relative;
}

.how::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.how h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}

.how-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 3.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.feature-card {
  background: var(--slate);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}

.feature-card:hover {
  background: var(--slate-light);
}

.feature-num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  font-family: 'DM Serif Display', serif;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== WHO SECTION ===== */
.who {
  background: var(--slate-light);
  padding: 6rem 5vw;
}

.who-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.who h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}

.who-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 3.5rem;
  max-width: 600px;
}

.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.niche {
  background: var(--slate-light);
  padding: 2rem 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: background 0.2s;
}

.niche:hover {
  background: rgba(232, 160, 32, 0.04);
}

.niche-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--amber-dim);
  border: 1px solid rgba(232, 160, 32, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}

.niche-info h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.niche-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== PRICING SECTION ===== */
.pricing {
  background: var(--slate);
  padding: 6rem 5vw;
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}

.pricing-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 3.5rem;
  max-width: 500px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--slate-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.pricing-card.featured {
  border-color: rgba(232, 160, 32, 0.3);
  background: linear-gradient(180deg, rgba(232, 160, 32, 0.06) 0%, var(--slate-light) 100%);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--slate);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 0 0 8px 8px;
}

.pricing-tier {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.pricing-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.per-mo {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pricing-includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.include {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.include svg {
  color: var(--green);
  flex-shrink: 0;
}

/* ===== RESULTS SECTION ===== */
.results {
  background: var(--cream);
  padding: 6rem 5vw;
}

.results-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.results h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--slate);
  margin-bottom: 3.5rem;
  max-width: 600px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.result {
  border-left: 3px solid var(--amber);
  padding-left: 1.5rem;
}

.result-stat {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--slate);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.result-text {
  font-size: 0.9rem;
  color: rgba(15, 15, 26, 0.65);
  line-height: 1.5;
}

/* ===== CLOSING SECTION ===== */
.closing {
  background: var(--slate);
  padding: 8rem 5vw;
  text-align: center;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}

.closing-mark {
  font-size: 2rem;
  color: var(--amber);
  margin-bottom: 2rem;
  font-family: 'DM Serif Display', serif;
}

.closing-statement {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.closing-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
footer {
  background: var(--slate);
  border-top: 1px solid var(--border);
  padding: 4rem 5vw 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.link-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.link-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4px;
}

.link-group span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 4rem;
  }

  .hero-art {
    max-width: 480px;
  }

  .features-grid,
  .niche-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.4rem;
  }

  .features-grid,
  .niche-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    flex-direction: column;
    gap: 2rem;
  }

  .stat-divider {
    display: none;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .hero-workflow {
    justify-content: center;
  }

  .sms-card {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .problem, .how, .who, .pricing, .results, .closing {
    padding: 4rem 5vw;
  }
}