/* === BASE === */
:root {
  --bg: #faf8f0;
  --bg-alt: #f0ede4;
  --fg: #1a3a2a;
  --fg-muted: #5a7a6a;
  --accent: #f59e0b;
  --accent-light: rgba(245, 158, 11, 0.12);
  --green-muted: rgba(26, 58, 42, 0.08);
  --border: rgba(26, 58, 42, 0.12);
  --radius: 12px;
}

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

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

h1, h2, h3, strong { font-family: 'Syne', sans-serif; }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 240, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* === HERO === */
.hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 32px 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  padding-right: 24px;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
  line-height: 1.3;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 24px;
}

/* === PHONE MOCKUP === */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-mockup {
  position: relative;
}
.phone-bezel {
  width: 260px;
  background: #1a1a2e;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 32px 80px rgba(26, 58, 42, 0.18), 0 0 0 1px rgba(255,255,255,0.05);
}
.phone-notch {
  width: 80px;
  height: 24px;
  background: #1a1a2e;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 8px;
}
.phone-screen {
  background: #0f0f1a;
  border-radius: 28px;
  overflow: hidden;
  height: 400px;
  display: flex;
  flex-direction: column;
}
.chat-header {
  background: #1a1a2e;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.chat-dots {
  display: flex;
  gap: 4px;
}
.chat-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}
.chat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.chat-conversation {
  flex: 1;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.msg { display: flex; }
.msg.bot { justify-content: flex-start; }
.msg.user { justify-content: flex-end; }
.bubble {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.4;
}
.bot-bubble {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border-bottom-left-radius: 4px;
}
.user-bubble {
  background: var(--accent);
  color: #1a1a2e;
  font-weight: 600;
  border-bottom-right-radius: 4px;
}
.booking-confirm {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  padding: 8px;
  margin-top: 4px;
}
.confirm-icon { flex-shrink: 0; }
.confirm-text { font-size: 11px; color: #fff; line-height: 1.4; }
.typing-indicator {
  padding: 8px 14px;
  display: flex;
  gap: 5px;
  align-items: center;
}
.typing-indicator .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  animation: bounce 1.2s ease-in-out infinite;
}
.typing-indicator .dot:nth-child(2) { animation-delay: 0.15s; }
.typing-indicator .dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-4px); }
}
.phone-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.2) 0%, transparent 70%);
  filter: blur(10px);
}
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  background: white;
  padding: 8px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.04);
  font-size: 12px;
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
}
.badge-1 {
  top: 20px;
  right: -20px;
  animation: floatBadge 3s ease-in-out infinite;
}
.badge-2 {
  bottom: 60px;
  left: -30px;
  animation: floatBadge 3s ease-in-out infinite 1.5s;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* === PROOF === */
.proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.proof-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.proof-label {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.proof-scroll {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}
.proof-icon { font-size: 18px; }

/* === HOW === */
.how {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 32px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
}
.how-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.how-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 58, 42, 0.08);
}
.how-card--accent {
  border-color: rgba(245, 158, 11, 0.25);
  background: #fffbf0;
}
.card-num {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.card-icon { margin-bottom: 16px; }
.how-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.how-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === INDUSTRIES === */
.industries {
  background: var(--bg-alt);
  padding: 80px 32px;
}
.industries .section-header--left {
  text-align: left;
  margin-bottom: 40px;
}
.industries .section-title { font-size: clamp(28px, 3.5vw, 40px); }
.industries .section-sub { margin: 12px 0 0; }
.industries-left {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.industry-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.industry-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.industry-item:first-child { border-top: 1px solid var(--border); }
.industry-icon { font-size: 22px; flex-shrink: 0; width: 32px; text-align: center; }
.industry-content { display: flex; flex-direction: column; gap: 4px; }
.industry-content strong { font-size: 15px; font-weight: 600; }
.industry-content span { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }
.vertical-ticker {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 48px;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0.5;
}
.ticker-item:nth-child(1) { opacity: 0.85; }
.ticker-item:nth-child(2) { opacity: 0.72; }
.ticker-item:nth-child(3) { opacity: 0.6; }
.ticker-line {
  flex: 1;
  height: 1px;
  background: var(--fg);
  opacity: 0.15;
  max-width: 80px;
}
.ticker-item span {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--fg);
}

/* === PRICING === */
.pricing {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 32px;
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
}
.pricing-card--featured {
  background: var(--fg);
  border-color: var(--fg);
  color: var(--bg);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--accent);
  color: #1a1a2e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.pricing-header { margin-bottom: 28px; }
.pricing-plan {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.pricing-card--featured .pricing-plan { color: rgba(250,248,240,0.6); }
.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.pricing-card--featured .pricing-amount { color: var(--bg); }
.pricing-period {
  font-size: 16px;
  font-weight: 400;
}
.pricing-desc {
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 8px;
  line-height: 1.5;
}
.pricing-card--featured .pricing-desc { color: rgba(250,248,240,0.6); }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg);
}
.pricing-card--featured .pricing-features li { color: var(--bg); }
.pricing-math {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--green-muted);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 40px;
}
.math-item { text-align: center; }
.math-num {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--fg);
}
.math-label {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}
.math-eq {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--fg-muted);
}
.math-result { text-align: center; }
.math-big {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.math-sub {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* === OUTCOMES === */
.outcomes {
  background: var(--fg);
  padding: 80px 32px;
}
.outcomes .outcome-card { background: rgba(250,248,240,0.06); border-color: rgba(250,248,240,0.08); }
.outcomes .outcome-icon { background: rgba(250,248,240,0.1) !important; }
.outcomes .outcome-icon svg path,
.outcomes .outcome-icon svg circle { stroke: rgba(250,248,240,0.6) !important; }
.outcomes .outcome-text strong { color: var(--bg); }
.outcomes .outcome-text span { color: rgba(250,248,240,0.5); }
.outcomes-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.outcome-card {
  background: rgba(250,248,240,0.06);
  border: 1px solid rgba(250,248,240,0.08);
  border-radius: 16px;
  padding: 28px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.outcome-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.outcome-text { display: flex; flex-direction: column; gap: 6px; }
.outcome-text strong { font-size: 15px; font-weight: 600; }
.outcome-text span { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }

/* === CLOSING === */
.closing {
  max-width: 1160px;
  margin: 0 auto;
  padding: 96px 32px;
}
.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.closing-decoration { margin-bottom: 32px; }
.closing-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.closing-vibe {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.vibe-tag {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  background: var(--green-muted);
  color: var(--fg);
  border: 1px solid var(--border);
}

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

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-tagline { display: none; }
  .hero { padding: 48px 24px 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .phone-mockup { transform: scale(0.85); transform-origin: center; }
  .hero-headline { font-size: 36px; }
  .how { padding: 48px 24px; }
  .how-cards { grid-template-columns: 1fr; }
  .industries { padding: 48px 24px; }
  .industries-left { grid-template-columns: 1fr; gap: 32px; }
  .vertical-ticker { display: none; }
  .pricing { padding: 48px 24px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-math { flex-direction: column; gap: 12px; padding: 20px; }
  .math-eq { transform: rotate(90deg); }
  .outcomes { padding: 48px 24px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .closing { padding: 64px 24px; }
  .section-header { margin-bottom: 36px; }
  .proof-inner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .stat { padding-right: 0; }
}
