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

:root {
  --bg: #0B3D2E;
  --bg-mid: #0D4A38;
  --bg-light: #F4EDE4;
  --ivory: #F4EDE4;
  --lime: #CAFD10;
  --lime-dim: #a8d00a;
  --text: #F4EDE4;
  --text-dark: #0B3D2E;
  --text-muted: rgba(244, 237, 228, 0.55);
  --surface: rgba(255,255,255,0.06);
  --border: rgba(202, 253, 16, 0.15);
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

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

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 61, 46, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--lime);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

/* === HERO === */
.hero {
  padding: 80px 24px 60px;
}

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

.hero-badge {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--lime);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-lime {
  background: var(--lime);
  color: var(--text-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}

.btn-lime:hover {
  background: var(--lime-dim);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: var(--lime);
  background: rgba(202, 253, 16, 0.05);
}

.hero-social-proof {}

.proof-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.proof-stat {
  padding: 16px 20px;
  flex: 1;
  text-align: center;
}

.proof-divider {
  width: 1px;
  background: var(--border);
}

.proof-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 4px;
}

.proof-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.4;
  text-align: center;
}

/* === HERO VISUAL === */
.hero-visual {
  position: relative;
}

.chat-widget {
  background: #0D2E22;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(202,253,16,0.1);
}

.widget-header {
  background: #0B3D2E;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.widget-dots {
  display: flex;
  gap: 5px;
}

.widget-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(244,237,228,0.2);
}

.widget-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  flex: 1;
  font-family: var(--font-head);
}

.widget-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  color: var(--lime);
  font-weight: 500;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.widget-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 340px;
  overflow-y: auto;
}

.msg {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 80%;
}

.msg-rest {
  align-self: flex-end;
}

.msg-rest span:first-child {
  background: var(--lime);
  color: var(--text-dark);
  padding: 10px 14px;
  border-radius: 12px 12px 4px 12px;
  font-size: 0.82rem;
  line-height: 1.5;
  font-weight: 500;
}

.msg-ai {
  align-self: flex-start;
}

.msg-ai span:first-child {
  background: rgba(244,237,228,0.08);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 12px 12px 12px 4px;
  font-size: 0.82rem;
  line-height: 1.5;
}

.msg-time {
  font-size: 0.68rem;
  color: var(--text-muted);
  padding: 0 4px;
}

.widget-input {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: #0B3D2E;
}

.input-placeholder {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* === FLOATING BADGES === */
.floating-badges {
  position: absolute;
  top: -16px;
  right: -16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  animation: float 4s ease-in-out infinite;
}

.badge-wa {
  background: rgba(37, 211, 102, 0.2);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25D366;
  animation-delay: 0s;
}

.badge-ig {
  background: rgba(131, 58, 180, 0.2);
  border: 1px solid rgba(131, 58, 180, 0.4);
  color: #E1306C;
  animation-delay: 0.5s;
}

.badge-web {
  background: rgba(202, 253, 16, 0.15);
  border: 1px solid rgba(202, 253, 16, 0.3);
  color: var(--lime);
  animation-delay: 1s;
}

.badge-review {
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: #FBB824;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.widget-channels {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.channel-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* === CHANNELS SECTION === */
.channels {
  padding: 60px 24px;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.channels-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.channels-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 20px;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.channel-icon {
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
}

.channels-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* === FEATURES === */
.features {
  padding: 100px 24px;
  background: var(--bg);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(202,253,16,0.1);
  border: 1px solid rgba(202,253,16,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: rgba(202,253,16,0.35);
  transform: translateY(-2px);
}

.feature-card--large {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(202,253,16,0.1);
  border: 1px solid rgba(202,253,16,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  margin-bottom: 16px;
}

.feature-card--large .feature-icon {
  margin-bottom: 0;
}

.feature-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.feature-card--large .feature-desc {
  grid-column: 2;
}

.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-bullets li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 4px;
}

.feature-bullets li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
}

/* === PRICING === */
.pricing {
  padding: 100px 24px;
  background: var(--bg-light);
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing .section-header .section-tag {
  color: var(--text-dark);
  background: rgba(11,61,46,0.08);
  border-color: rgba(11,61,46,0.15);
}

.pricing .section-title {
  color: var(--text-dark);
}

.pricing .section-sub {
  color: rgba(11,61,46,0.6);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}

.pricing-card {
  background: white;
  border: 1px solid rgba(11,61,46,0.1);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(11,61,46,0.12);
}

.pricing-card--featured {
  border: 2px solid var(--lime);
  box-shadow: 0 0 0 4px rgba(202,253,16,0.12), 0 24px 64px rgba(11,61,46,0.12);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
  font-family: var(--font-head);
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.price {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.per {
  font-size: 0.9rem;
  color: rgba(11,61,46,0.5);
  font-weight: 500;
}

.plan-desc {
  font-size: 0.9rem;
  color: rgba(11,61,46,0.6);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 500;
}

.plan-features li svg {
  color: var(--lime);
  flex-shrink: 0;
}

.plan-setup {
  font-size: 0.8rem;
  color: rgba(11,61,46,0.4);
  font-weight: 600;
  padding-top: 16px;
  border-top: 1px solid rgba(11,61,46,0.08);
}

/* === CLOSING === */
.closing {
  padding: 100px 24px;
  background: var(--bg);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.steps {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  justify-content: center;
}

.step {
  flex: 1;
  max-width: 280px;
}

.step-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(202,253,16,0.15);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.step-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-connector {
  width: 60px;
  flex-shrink: 0;
  height: 1px;
  background: var(--border);
  margin: 0 16px;
  margin-bottom: 40px;
}

.closing-cta {
  text-align: center;
  padding: 60px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
}

.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}

.closing-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* === FOOTER === */
.footer {
  padding: 48px 24px;
  background: #061F16;
  border-top: 1px solid var(--border);
}

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

.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--lime);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(244,237,228,0.25);
}

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

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

  .feature-card--large {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 0 24px;
  }

  .step-connector {
    width: 40px;
    height: 1px;
    margin: 0;
  }

  .proof-stats {
    flex-direction: column;
  }

  .proof-divider {
    width: auto;
    height: 1px;
  }

  .floating-badges {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 16px;
    justify-content: center;
  }

  .nav-links { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 16px 40px; }
  .closing-cta { padding: 40px 24px; }
  .feature-card { padding: 20px; }
  .pricing-card { padding: 24px; }
}