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

:root {
  --forest: #0d1f17;
  --forest-light: #1a3326;
  --cream: #f6f1ea;
  --cream-dark: #ece7de;
  --lime: #b4ff4a;
  --lime-dim: #8acc38;
  --white: #ffffff;
  --gray-100: #f4f4f4;
  --gray-200: #e0e0e0;
  --gray-400: #999999;
  --gray-600: #666666;
  --gray-800: #333333;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
}

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

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--forest); }
::-webkit-scrollbar-thumb { background: var(--forest-light); border-radius: 3px; }

/* === TYPOGRAPHY === */

h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.15;
  color: var(--cream);
}

p { color: var(--cream); opacity: 0.8; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(13, 31, 23, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(180, 255, 74, 0.08);
}
.nav-inner { max-width: 1200px; margin: 0 auto; }
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--lime);
  letter-spacing: -0.02em;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 120px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.hero-bg-grid {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(180,255,74,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,255,74,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(180,255,74,0.08) 0%, transparent 70%);
  top: -100px; right: 0;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(180,255,74,0.05) 0%, transparent 70%);
  bottom: 0; left: 20%;
}
.hero-content { position: relative; z-index: 1; }
.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(180,255,74,0.1);
  border: 1px solid rgba(180,255,74,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.125rem;
  color: rgba(246,241,234,0.65);
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero-proof-item { display: flex; flex-direction: column; gap: 4px; }
.hero-proof-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  color: var(--lime);
  line-height: 1;
}
.hero-proof-label { font-size: 0.75rem; color: rgba(246,241,234,0.5); text-transform: uppercase; letter-spacing: 0.05em; }
.hero-proof-divider { width: 1px; height: 40px; background: rgba(180,255,74,0.15); }

/* Hero Visual */
.hero-visual { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 20px; align-items: flex-end; }

/* Chat window */
.chat-window {
  width: 340px;
  background: var(--forest-light);
  border: 1px solid rgba(180,255,74,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(180,255,74,0.06);
  border-bottom: 1px solid rgba(180,255,74,0.1);
}
.chat-dots { display: flex; gap: 6px; }
.chat-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(180,255,74,0.3); }
.chat-dots span:first-child { background: #ff5f57; }
.chat-dots span:nth-child(2) { background: #febc2e; }
.chat-dots span:last-child { background: #28c840; }
.chat-title { font-size: 0.8rem; font-weight: 600; color: var(--cream); flex: 1; }
.chat-online { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 6px var(--lime); }
.chat-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.chat-msg {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.chat-msg-in { align-self: flex-start; background: rgba(180,255,74,0.08); border: 1px solid rgba(180,255,74,0.1); color: var(--cream); border-bottom-left-radius: 4px; }
.chat-msg-out { align-self: flex-end; background: rgba(180,255,74,0.15); border: 1px solid rgba(180,255,74,0.2); color: var(--lime); border-bottom-right-radius: 4px; }
.chat-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid rgba(180,255,74,0.08);
}
.chat-input { flex: 1; font-size: 0.8rem; color: rgba(246,241,234,0.3); }
.chat-send { color: var(--lime); opacity: 0.6; }

/* Call widget */
.call-widget {
  width: 340px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(180,255,74,0.06);
  border: 1px solid rgba(180,255,74,0.12);
  border-radius: var(--radius-md);
}
.call-widget-icon { color: var(--lime); flex-shrink: 0; }
.call-widget-text { flex: 1; }
.call-widget-label { font-size: 0.7rem; color: rgba(246,241,234,0.4); text-transform: uppercase; letter-spacing: 0.06em; }
.call-widget-name { font-size: 0.9rem; font-weight: 500; color: var(--cream); }
.call-widget-badge { font-size: 0.7rem; color: var(--lime); background: rgba(180,255,74,0.1); padding: 4px 10px; border-radius: 100px; white-space: nowrap; }

/* === PROBLEM === */
.problem { padding: 100px 40px; background: #091810; }
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem-label, .services-label, .outcomes-label, .pricing-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}
.problem-headline, .services-headline, .pricing-headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  max-width: 640px;
  margin-bottom: 60px;
  font-weight: 400;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.problem-card {
  padding: 32px;
  background: rgba(180,255,74,0.04);
  border: 1px solid rgba(180,255,74,0.08);
  border-radius: var(--radius-md);
  transition: border-color 0.2s;
}
.problem-card:hover { border-color: rgba(180,255,74,0.2); }
.problem-icon { color: var(--lime); margin-bottom: 20px; opacity: 0.7; }
.problem-card p { font-size: 0.95rem; line-height: 1.65; color: rgba(246,241,234,0.65); }

/* === SERVICES === */
.services { padding: 100px 40px; }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-header { max-width: 580px; margin-bottom: 60px; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  padding: 40px;
  background: var(--forest-light);
  border: 1px solid rgba(180,255,74,0.08);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover { border-color: rgba(180,255,74,0.2); transform: translateY(-2px); }
.service-card-accent { border-color: rgba(180,255,74,0.2); background: linear-gradient(135deg, rgba(180,255,74,0.06) 0%, var(--forest-light) 100%); }
.service-ico { color: var(--lime); margin-bottom: 20px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--cream); }
.service-card > p { font-size: 0.9rem; color: rgba(246,241,234,0.6); margin-bottom: 24px; line-height: 1.65; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-features li { font-size: 0.85rem; color: rgba(246,241,234,0.65); padding-left: 20px; position: relative; }
.service-features li::before { content: '→'; position: absolute; left: 0; color: var(--lime); font-size: 0.75rem; }

/* === OUTCOMES === */
.outcomes { padding: 80px 40px; background: rgba(180,255,74,0.04); }
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 32px;
}
.outcome-item { text-align: center; }
.outcome-stat {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 8px;
}
.outcome-label { font-size: 0.85rem; color: rgba(246,241,234,0.55); }
.outcomes-note { font-size: 0.8rem; color: rgba(246,241,234,0.3); text-align: center; }

/* === PRICING === */
.pricing { padding: 100px 40px; }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-sub { font-size: 1rem; color: rgba(246,241,234,0.6); max-width: 480px; margin-bottom: 60px; margin-top: 16px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  padding: 40px;
  background: var(--forest-light);
  border: 1px solid rgba(180,255,74,0.08);
  border-radius: var(--radius-lg);
  position: relative;
}
.pricing-card-featured { border-color: rgba(180,255,74,0.3); background: linear-gradient(160deg, rgba(180,255,74,0.08) 0%, var(--forest-light) 60%); }
.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--lime);
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-tier { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: var(--lime); margin-bottom: 12px; }
.pricing-price { font-family: 'DM Serif Display', serif; font-size: 3rem; color: var(--cream); line-height: 1; margin-bottom: 8px; }
.pricing-price span { font-size: 1rem; color: rgba(246,241,234,0.5); font-family: 'DM Sans', sans-serif; }
.pricing-desc { font-size: 0.85rem; color: rgba(246,241,234,0.55); margin-bottom: 28px; line-height: 1.5; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { font-size: 0.85rem; color: rgba(246,241,234,0.7); padding-left: 20px; position: relative; }
.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--lime); font-size: 0.75rem; }
.pricing-setup { font-size: 0.8rem; color: rgba(246,241,234,0.4); padding-top: 20px; border-top: 1px solid rgba(180,255,74,0.1); }
.pricing-cta { font-size: 0.85rem; color: rgba(246,241,234,0.4); text-align: center; margin-top: 48px; }

/* === CLOSING === */
.closing { padding: 120px 40px; position: relative; overflow: hidden; }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.closing-glow {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(180,255,74,0.06) 0%, transparent 70%);
  filter: blur(60px);
}
.closing-headline { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; margin-bottom: 24px; line-height: 1.25; }
.closing-sub { font-size: 1rem; color: rgba(246,241,234,0.55); max-width: 500px; margin: 0 auto; line-height: 1.7; }

/* === FOOTER === */
.footer { padding: 48px 40px; border-top: 1px solid rgba(180,255,74,0.08); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: var(--lime); margin-bottom: 6px; display: block; }
.footer-tagline { font-size: 0.8rem; color: rgba(246,241,234,0.35); max-width: 280px; }
.footer-meta { font-size: 0.8rem; color: rgba(246,241,234,0.2); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 60px; padding-top: 100px; }
  .hero-visual { align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .problem { padding: 60px 24px; }
  .problem-grid { grid-template-columns: 1fr; }
  .services { padding: 60px 24px; }
  .outcomes { padding: 60px 24px; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing { padding: 60px 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .chat-window, .call-widget { width: 100%; }
  .hero-proof { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-proof-divider { display: none; }
}