/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* Variables */
:root {
  --bg: #0a1628;
  --bg-alt: #0f1f35;
  --fg: #f0f4f8;
  --fg-muted: #8b9ab4;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --red: #ef4444;
  --green: #22c55e;
  --border: rgba(240,244,248,0.08);
}

/* 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', sans-serif; font-weight: 700; line-height: 1.15; }

/* Layout */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Section structure */
section { padding: 80px 0; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-headline {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--fg);
  margin-bottom: 56px;
  max-width: 600px;
}

/* ===== HERO ===== */
.hero { padding: 100px 0 80px; position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Phone mockup */
.phone-mockup { position: relative; display: flex; flex-direction: column; align-items: center; }
.phone-frame {
  width: 220px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
}
.phone-screen { background: #0d1e33; border-radius: 20px; padding: 20px 16px; min-height: 280px; display: flex; flex-direction: column; gap: 16px; }

.call-incoming { display: flex; align-items: center; gap: 12px; }
.call-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #0a1628; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.call-name { font-size: 12px; color: var(--fg-muted); }
.call-number { font-size: 14px; font-weight: 600; color: var(--fg); font-family: 'Syne', sans-serif; }

.waveform { display: flex; align-items: center; gap: 3px; height: 32px; }
.waveform span { display: block; width: 3px; background: var(--accent); border-radius: 2px; animation: wave 1.2s ease-in-out infinite; }
.waveform span:nth-child(1){ height: 8px; animation-delay: 0s; }
.waveform span:nth-child(2){ height: 16px; animation-delay: 0.1s; }
.waveform span:nth-child(3){ height: 24px; animation-delay: 0.2s; }
.waveform span:nth-child(4){ height: 32px; animation-delay: 0.3s; }
.waveform span:nth-child(5){ height: 20px; animation-delay: 0.4s; }
.waveform span:nth-child(6){ height: 28px; animation-delay: 0.5s; }
.waveform span:nth-child(7){ height: 12px; animation-delay: 0.6s; }
.waveform span:nth-child(8){ height: 20px; animation-delay: 0.7s; }
.waveform span:nth-child(9){ height: 8px; animation-delay: 0.8s; }
.waveform span:nth-child(10){ height: 16px; animation-delay: 0.9s; }
.waveform span:nth-child(11){ height: 24px; animation-delay: 1.0s; }
.waveform span:nth-child(12){ height: 12px; animation-delay: 1.1s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.5); opacity: 0.6; }
  50% { transform: scaleY(1); opacity: 1; }
}

.booking-card { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2); border-radius: 10px; padding: 12px 14px; display: flex; align-items: center; gap: 10px; }
.booking-check { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.booking-text { font-size: 13px; font-weight: 600; color: var(--fg); }
.booking-detail { font-size: 11px; color: var(--fg-muted); }

.ai-badge { margin-top: 16px; display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; color: var(--accent); background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2); border-radius: 20px; padding: 6px 14px; }
.ai-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }

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

/* Hero right */
.hero-tag { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--fg-muted); margin-bottom: 20px; }
.tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero-headline { font-size: clamp(42px, 6vw, 72px); color: var(--fg); margin-bottom: 20px; font-weight: 800; }
.hero-sub { font-size: 18px; color: var(--fg-muted); margin-bottom: 40px; max-width: 460px; line-height: 1.65; }
.hero-stats { display: flex; align-items: center; gap: 32px; }
.stat { }
.stat-num { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-label { font-size: 12px; color: var(--fg-muted); max-width: 120px; margin-top: 4px; line-height: 1.4; }
.stat-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* ===== FEATURES ===== */
.features { background: var(--bg-alt); }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-card { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 32px; transition: border-color 0.2s; }
.feature-card:hover { border-color: rgba(245,158,11,0.3); }
.feature-icon { width: 48px; height: 48px; background: rgba(245,158,11,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-card h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--fg); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* ===== PROCESS ===== */
.process { }
.process-steps { display: flex; align-items: center; gap: 0; max-width: 800px; }
.step { flex: 1; padding: 32px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 16px; }
.step-number { font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800; color: var(--accent); opacity: 0.4; margin-bottom: 12px; }
.step h3 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--fg); margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }
.step-connector { width: 48px; height: 2px; background: linear-gradient(90deg, rgba(245,158,11,0.4), rgba(245,158,11,0.1)); flex-shrink: 0; }

/* ===== VERTICALS ===== */
.verticals { background: var(--bg-alt); }
.verticals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.vertical-card { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 28px 24px; transition: border-color 0.2s; }
.vertical-card:hover { border-color: rgba(245,158,11,0.3); }
.vertical-icon { width: 48px; height: 48px; background: rgba(245,158,11,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.vertical-card h3 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--fg); margin-bottom: 8px; }
.vertical-card p { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }

/* ===== PROOF ===== */
.proof { background: var(--bg); }
.proof-headline { font-family: 'Syne', sans-serif; font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--fg); text-align: center; margin-bottom: 48px; }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 900px; margin: 0 auto; }
.proof-before, .proof-after { border-radius: 20px; padding: 40px; }
.proof-before { background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.15); }
.proof-after { background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.15); }
.proof-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 16px; }
.proof-stat { font-family: 'Syne', sans-serif; font-size: 56px; font-weight: 800; line-height: 1; margin-bottom: 8px; }
.proof-before .proof-stat { color: var(--red); }
.proof-after .proof-stat { color: var(--green); }
.proof-detail { font-size: 14px; color: var(--fg-muted); margin-bottom: 28px; }
.proof-result { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; margin-bottom: 12px; }
.proof-result.miss { color: var(--red); opacity: 0.8; }
.proof-result.win { color: var(--green); }

/* ===== CLOSING ===== */
.closing { background: var(--bg-alt); }
.closing-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.closing-headline { font-family: 'Syne', sans-serif; font-size: clamp(30px, 4.5vw, 50px); font-weight: 800; color: var(--fg); margin-bottom: 24px; line-height: 1.2; }
.closing-body { font-size: 17px; color: var(--fg-muted); margin-bottom: 40px; line-height: 1.7; }
.closing-promise { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.promise-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--fg); }

/* ===== FOOTER ===== */
footer { padding: 32px 0; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-brand { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px; color: var(--fg); }
.footer-brand span { color: var(--accent); }
.footer-copy { font-size: 12px; color: var(--fg-muted); }

/* ===== SOCIAL PROOF ===== */
.social-proof { background: var(--bg); }
.sp-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); text-align: center; margin-bottom: 36px; }
.sp-logos { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; margin-bottom: 64px; }
.sp-logo-placeholder { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--fg-muted); opacity: 0.5; letter-spacing: 0.05em; text-transform: uppercase; }
.sp-testimonials { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 900px; margin: 0 auto; }
.testimonial { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; color: var(--fg); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-size: 13px; font-weight: 500; color: var(--fg-muted); }

/* ===== PRICING ===== */
.pricing { background: var(--bg-alt); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.pricing-card { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 36px 32px; display: flex; flex-direction: column; position: relative; }
.pricing-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px rgba(245,158,11,0.2), 0 20px 60px rgba(245,158,11,0.08); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #0a1628; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 16px; border-radius: 20px; white-space: nowrap; }
.pricing-tier { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.pricing-price { font-family: 'Syne', sans-serif; font-size: 44px; font-weight: 800; color: var(--fg); line-height: 1; margin-bottom: 8px; }
.pricing-price span { font-size: 18px; font-weight: 400; color: var(--fg-muted); }
.pricing-desc { font-size: 13px; color: var(--fg-muted); margin-bottom: 28px; line-height: 1.55; }
.pricing-features { list-style: none; flex: 1; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--fg); margin-bottom: 12px; }
.pricing-features li svg { flex-shrink: 0; margin-top: 2px; }
.pricing-cta { display: block; text-align: center; background: transparent; border: 1px solid rgba(245,158,11,0.4); color: var(--fg); font-weight: 600; font-size: 14px; padding: 14px; border-radius: 10px; text-decoration: none; transition: all 0.2s; }
.pricing-cta:hover { border-color: var(--accent); color: var(--accent); }
.pricing-cta.cta-primary { background: var(--accent); border-color: var(--accent); color: #0a1628; }
.pricing-cta.cta-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #0a1628; }

/* ===== CTA BUTTON ===== */
.cta-button { display: inline-block; background: var(--accent); color: #0a1628; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px; padding: 16px 40px; border-radius: 12px; text-decoration: none; transition: all 0.2s; margin-bottom: 40px; box-shadow: 0 4px 20px rgba(245,158,11,0.3); }
.cta-button:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,158,11,0.4); }

/* ===== FOOTER ===== */
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--fg); }
.footer-copy { font-size: 12px; color: var(--fg-muted); }
.footer-copy a { color: var(--fg-muted); text-decoration: none; }
.footer-copy a:hover { color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-left { order: -1; }
  .hero-right { text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-stats { justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .verticals-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-direction: column; gap: 16px; }
  .step-connector { width: 2px; height: 32px; }
  .proof-grid { grid-template-columns: 1fr; }
  .closing-promise { gap: 16px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .sp-testimonials { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .verticals-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .phone-frame { width: 180px; }
}