:root {
  --bg: #0D0D0D;
  --bg-2: #111111;
  --amber: #F5A623;
  --amber-dim: rgba(245, 166, 35, 0.15);
  --amber-glow: rgba(245, 166, 35, 0.08);
  --cream: #F9F4EC;
  --cream-dim: rgba(249, 244, 236, 0.6);
  --charcoal: #1A1A1A;
  --border: rgba(255,255,255,0.07);
  --section-pad: 100px 40px;
}

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

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav { border-bottom: 1px solid var(--border); padding: 20px 40px; }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600; color: var(--cream); }
.nav-tag { font-size: 13px; color: var(--cream-dim); letter-spacing: 0.05em; }
.nav-demo-links { display: flex; gap: 0; align-items: center; }
.nav-demo-link { font-size: 12px; font-weight: 500; padding: 5px 12px; border: 1px solid var(--border); border-radius: 20px; color: var(--cream-dim); text-decoration: none; transition: color 0.2s, border-color 0.2s; margin-left: 8px; white-space: nowrap; }
.nav-demo-link:first-child { margin-left: 0; }
.nav-demo-link:hover, .nav-demo-link.active { color: var(--amber); border-color: rgba(245,166,35,0.4); }

/* ── HERO ── */
.hero {
  position: relative;
  padding: var(--section-pad);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-headline em { font-style: italic; color: var(--amber); font-weight: 400; }
.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--cream-dim);
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-stat-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 700; color: var(--amber); line-height: 1; }
.stat-label { font-size: 12px; color: var(--cream-dim); line-height: 1.4; max-width: 120px; }
.stat-divider { width: 1px; height: 50px; background: var(--border); align-self: center; }

.hero-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-cta-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--bg);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease;
}
.hero-cta-primary:hover { background: #E8791A; transform: translateY(-1px); }
.hero-cta-secondary {
  display: inline-block;
  color: var(--cream-dim);
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid rgba(249,244,236,0.2);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.hero-cta-secondary:hover { color: var(--cream); border-color: var(--cream); }

/* ── CHAT WIDGET ── */
.chat-widget {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(245,166,35,0.06);
}
.chat-header {
  background: #1E1E1E;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), #E8791A);
  flex-shrink: 0;
}
.chat-header-text { display: flex; flex-direction: column; gap: 2px; }
.chat-title { font-weight: 600; font-size: 14px; color: var(--cream); }
.chat-status { font-size: 12px; color: #4CAF50; }
.chat-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; min-height: 240px; }
.chat-msg { max-width: 85%; font-size: 13.5px; line-height: 1.5; padding: 10px 14px; border-radius: 12px; }
.chat-msg-in { background: #252525; color: var(--cream-dim); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg-out { background: var(--amber-dim); color: var(--cream); align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-time { font-size: 11px; color: var(--cream-dim); margin-top: 4px; opacity: 0.6; }
.chat-booked-badge {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.chat-input-bar {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  background: #141414;
}
.chat-dots { display: flex; gap: 4px; }
.chat-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: dot-pulse 1.4s ease-in-out infinite;
}
.chat-dots span:nth-child(2) { animation-delay: 0.2s; }
.chat-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dot-pulse { 0%,60%,100%{opacity:0.3;transform:scale(1)} 30%{opacity:1;transform:scale(1.2)} }
.chat-input-hint { font-size: 12px; color: var(--cream-dim); }

/* ── PROBLEM ── */
.problem { padding: var(--section-pad); background: var(--bg-2); }
.problem-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 16px;
}
.problem-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 56px;
  max-width: 640px;
  letter-spacing: -0.01em;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.problem-card {
  background: var(--charcoal);
  padding: 40px;
  border: 1px solid var(--border);
}
.problem-icon { margin-bottom: 20px; }
.problem-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--cream);
}
.problem-card p { font-size: 15px; color: var(--cream-dim); line-height: 1.65; }

/* ── SOLUTION ── */
.solution { padding: var(--section-pad); }
.solution-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.solution-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.solution-desc { font-size: 16px; color: var(--cream-dim); line-height: 1.65; margin-bottom: 32px; }
.solution-features { display: flex; flex-direction: column; gap: 16px; }
.sf-item { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--cream-dim); }

/* ── FUNNEL WIDGET ── */
.funnel-widget {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.funnel-step { display: flex; align-items: center; gap: 16px; }
.funnel-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(245,166,35,0.5);
}
.funnel-step-success .funnel-dot { background: #4CAF50; box-shadow: 0 0 12px rgba(76,175,80,0.5); }
.funnel-content { display: flex; flex-direction: column; gap: 2px; padding: 16px 0; }
.funnel-label { font-size: 15px; font-weight: 500; color: var(--cream); }
.funnel-time { font-size: 12px; color: var(--cream-dim); }
.funnel-connector { width: 2px; height: 28px; background: var(--border); margin-left: 6px; }

/* ── HOW ── */
.how { padding: var(--section-pad); background: var(--bg-2); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 64px;
  letter-spacing: -0.01em;
}
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 64px; }
.how-step { border-left: 2px solid var(--amber); padding-left: 28px; }
.step-num { font-family: 'Fraunces', serif; font-size: 40px; font-weight: 700; color: var(--amber-dim); margin-bottom: 16px; line-height: 1; }
.how-step h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--cream);
}
.how-step p { font-size: 15px; color: var(--cream-dim); line-height: 1.65; }
.how-quote {
  border-left: 3px solid var(--amber);
  padding-left: 32px;
  max-width: 640px;
}
.how-quote blockquote {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--cream-dim);
  line-height: 1.6;
}

/* ── CLOSING ── */
.closing {
  position: relative;
  padding: 120px 40px;
  overflow: hidden;
  text-align: center;
}
.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.closing-sub { font-size: 17px; color: var(--cream-dim); line-height: 1.65; max-width: 560px; margin: 0 auto 40px; }
.closing-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.closing-tags span {
  font-size: 12px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--cream-dim);
  letter-spacing: 0.03em;
}

/* ── PRICING ── */
.pricing { padding: var(--section-pad); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  max-width: 600px;
}
.pricing-sub { font-size: 16px; color: var(--cream-dim); line-height: 1.65; max-width: 480px; margin-bottom: 56px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.pricing-card:hover { border-color: rgba(245,166,35,0.3); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.pricing-card-featured {
  border-color: rgba(245,166,35,0.5);
  background: linear-gradient(180deg, #1E1A10 0%, var(--charcoal) 100%);
  box-shadow: 0 0 40px rgba(245,166,35,0.08);
}
.pricing-tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}
.pricing-tier-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 12px;
}
.pricing-price {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.pricing-period { font-size: 18px; color: var(--cream-dim); font-weight: 400; }
.pricing-tagline { font-size: 14px; color: var(--cream-dim); line-height: 1.5; margin-bottom: 28px; min-height: 42px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--cream-dim);
  line-height: 1.4;
}
.pricing-features svg { flex-shrink: 0; }
.pricing-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: var(--amber-dim);
  color: var(--amber);
  border: 1px solid rgba(245,166,35,0.3);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.pricing-cta:hover { background: var(--amber); color: var(--bg); border-color: var(--amber); }
.pricing-cta-featured {
  background: var(--amber);
  color: var(--bg);
  border-color: var(--amber);
}
.pricing-cta-featured:hover { background: #E8791A; border-color: #E8791A; color: var(--bg); }
.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--cream-dim);
  max-width: 480px;
  line-height: 1.5;
}

/* ── LEAD FORM ── */
.lead-form-section { padding: var(--section-pad); background: var(--bg-2); }
.lead-form-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lead-form-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.lead-form-sub { font-size: 16px; color: var(--cream-dim); line-height: 1.65; margin-bottom: 36px; }
.lead-form-bullets { display: flex; flex-direction: column; gap: 16px; }
.lead-bullet { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--cream-dim); }
.lead-bullet svg { flex-shrink: 0; }
.inline-link { color: var(--amber); text-decoration: none; border-bottom: 1px solid rgba(245,166,35,0.3); }
.inline-link:hover { border-bottom-color: var(--amber); }

/* Form card */
.lead-capture-form {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--cream-dim); letter-spacing: 0.02em; }
.form-group input {
  background: #141414;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.form-group input::placeholder { color: rgba(249,244,236,0.3); }
.form-group input:focus { border-color: rgba(245,166,35,0.5); box-shadow: 0 0 0 3px rgba(245,166,35,0.08); }
.form-group input.error { border-color: rgba(255,80,80,0.5); }
.form-submit-btn {
  background: var(--amber);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s ease, transform 0.1s ease;
  width: 100%;
}
.form-submit-btn:hover { background: #E8791A; }
.form-submit-btn:active { transform: scale(0.99); }
.form-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.spin { animation: spin 0.8s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.form-privacy { font-size: 12px; color: rgba(255,255,255,0.25); text-align: center; }
.form-success {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(76,175,80,0.08);
  border: 1px solid rgba(76,175,80,0.2);
  border-radius: 8px;
  padding: 16px;
  color: var(--cream);
}
.form-success strong { font-size: 15px; display: block; margin-bottom: 4px; }
.form-success p { font-size: 13px; color: var(--cream-dim); margin: 0; }
.form-error {
  background: rgba(255,80,80,0.08);
  border: 1px solid rgba(255,80,80,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: #FF8080;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Fraunces', serif; font-size: 18px; font-weight: 600; color: var(--cream); margin-bottom: 12px; }
.footer-tagline { font-size: 13px; color: var(--cream-dim); margin-bottom: 8px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-content, .solution-inner, .lead-form-inner { grid-template-columns: 1fr; gap: 48px; }
  .problem-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero-stat-row { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .hero { padding: 60px 24px; }
  .problem, .solution, .how, .closing, .pricing, .lead-form-section { padding: 60px 24px; }
  .nav { padding: 16px 24px; }
  .footer { padding: 32px 24px; }
  .chat-widget { margin-top: 0; }
  .funnel-widget { margin-top: 0; }
  .closing { padding: 80px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .stat-num { font-size: 22px; }
  .problem-card { padding: 28px; }
  .how-step { padding-left: 20px; }
  .pricing-price { font-size: 36px; }
  .lead-capture-form { padding: 24px; }
}
