/* ========================================
   BOOKEDPRO — LANDING PAGE STYLES
   ======================================== */

:root {
  --forest: #1B4332;
  --forest-light: #2D6A4F;
  --forest-dark: #0F2D1E;
  --amber: #F59E0B;
  --amber-light: #FCD34D;
  --cream: #F8F5F0;
  --cream-dark: #EDE8DF;
  --white: #FFFFFF;
  --text-primary: #111827;
  --text-secondary: #4B5563;
  --text-muted: #9CA3AF;
  --border: #E5E7EB;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --max-w: 1100px;
  --section-pad: 96px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--forest);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ---- HERO ---- */
.hero {
  background: var(--forest-dark);
  color: var(--white);
  padding: var(--section-pad) 32px;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 440px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--amber);
  letter-spacing: -0.04em;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* ---- PHONE MOCKUP ---- */
.phone-mockup {
  display: flex;
  justify-content: center;
}

.phone-screen {
  width: 280px;
  background: #0A0F0D;
  border-radius: 36px;
  border: 10px solid #1a1a1a;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 40px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.phone-header {
  background: #111A14;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.phone-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.phone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 8px rgba(34,197,94,0.6); }
  50% { box-shadow: 0 0 16px rgba(34,197,94,0.9); }
}

.call-log {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.call {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}

.call-incoming {
  border: 1px solid rgba(245,158,11,0.3);
  background: rgba(245,158,11,0.07);
}

.call-icon {
  color: var(--amber);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.call-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.call-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
}

.call-number {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
}

.call-time {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
}

.ai-response {
  padding: 0 4px;
}

.ai-bubble {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(45,106,79,0.35);
  border: 1px solid rgba(45,106,79,0.5);
  border-radius: 20px;
}

.ai-thinking {
  font-size: 0.65rem;
  color: #6EE7B7;
  font-weight: 500;
}

.call-booked {
  border: 1px solid rgba(34,197,94,0.25);
  background: rgba(34,197,94,0.06);
  padding: 10px 12px;
}

.booked-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.62rem;
  font-weight: 700;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(34,197,94,0.12);
  padding: 3px 7px;
  border-radius: 4px;
  flex-shrink: 0;
}

.phone-footer {
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: #0D1A12;
}

.calendar-sync {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
}

.calendar-sync svg { color: rgba(255,255,255,0.25); flex-shrink: 0; }

/* ---- SHARED SECTION STYLES ---- */
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--forest);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

/* ---- PROBLEM ---- */
.problem {
  background: var(--cream);
  padding: var(--section-pad) 32px;
}

.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.problem-header {
  max-width: 600px;
  margin-bottom: 56px;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.problem-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.problem-card-cta {
  background: var(--forest);
  border-color: var(--forest);
  grid-column: 1 / -1;
}

.problem-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  margin-bottom: 20px;
}

.problem-icon-light { background: rgba(255,255,255,0.1); color: var(--amber-light); }

.problem-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.light-text { color: var(--white) !important; }

/* ---- FLOW ---- */
.flow {
  background: var(--white);
  padding: var(--section-pad) 32px;
}

.flow-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.flow-header {
  max-width: 560px;
  margin-bottom: 64px;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.flow-step {
  padding-right: 24px;
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--cream-dark);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 20px;
}

.step-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.step-line {
  position: absolute;
  top: 24px;
  right: 0;
  width: 24px;
  height: 1px;
  background: var(--border);
}

.flow-step-last .step-line { display: none; }

.flow-note {
  margin-top: 56px;
  padding: 20px 24px;
  background: var(--forest);
  border-radius: 10px;
  max-width: 540px;
}

.flow-note p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
}

/* ---- OUTCOMES ---- */
.outcomes {
  background: var(--cream);
  padding: var(--section-pad) 32px;
}

.outcomes-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.outcomes-header {
  max-width: 500px;
  margin-bottom: 56px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.outcome-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}

.outcome-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--forest);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 8px;
}

.outcome-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.outcome-sub {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---- PRICING ---- */
.pricing {
  background: var(--forest-dark);
  padding: var(--section-pad) 32px;
  color: var(--white);
}

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

.pricing-header {
  margin-bottom: 48px;
}

.pricing-header .section-eyebrow { color: var(--amber); }
.pricing-header .section-headline { color: var(--white); }

.pricing-card {
  background: var(--forest);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 48px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(245,158,11,0.08);
  pointer-events: none;
}

.pricing-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-price span {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

.pricing-context {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 36px;
}

.pricing-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  margin-bottom: 40px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}

.pricing-features svg { color: var(--amber); flex-shrink: 0; }

.pricing-cta {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
}

.cta-overline {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 6px;
}

.pricing-cta p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}

.pricing-note {
  margin-top: 28px;
}

.guarantee {
  display: inline-flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  text-align: left;
}

.guarantee-icon { color: var(--amber); flex-shrink: 0; margin-top: 1px; }

.guarantee-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.guarantee-text strong { color: var(--white); }

/* ---- CLOSING ---- */
.closing {
  background: var(--cream);
  padding: 80px 32px;
}

.closing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  max-width: 720px;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 24px;
}

.closing p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.closing-statement {
  font-size: 1rem !important;
  font-weight: 600;
  color: var(--forest) !important;
  margin-top: 32px !important;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--forest-dark);
  padding: 40px 32px;
  color: var(--white);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }

  .flow-steps { grid-template-columns: 1fr; }
  .step-line { display: none; }

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

  .problem-grid { grid-template-columns: 1fr; }
  .problem-card-cta { grid-column: auto; }

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

@media (max-width: 600px) {
  :root { --section-pad: 64px; }
  .hero-stats { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 28px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}