/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0f;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: linear-gradient(135deg, #25D366, #00b4d8, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight { color: #25D366; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: #999; max-width: 600px; margin: 0 auto; }
.section-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}
.btn-outline {
  background: transparent;
  color: #e0e0e0;
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.3);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-nav { padding: 8px 20px; font-size: 0.85rem; }

/* ===== TRIAL BANNER ===== */
.trial-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.12), rgba(124, 58, 237, 0.12));
  border: 1px solid rgba(37, 211, 102, 0.25);
  margin-bottom: 32px;
  font-size: 1rem;
  color: #ccc;
  animation: trialPulse 3s ease-in-out infinite;
}
.trial-banner strong { color: #25D366; }
.trial-icon { font-size: 1.5rem; }
@keyframes trialPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(37, 211, 102, 0.1); }
  50% { box-shadow: 0 0 40px rgba(37, 211, 102, 0.25); }
}
.trial-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), rgba(0, 180, 216, 0.08));
  border: 1px solid rgba(37, 211, 102, 0.2);
  font-size: 0.95rem;
  color: #bbb;
}
.trial-highlight strong { color: #25D366; }
.trial-highlight-icon { font-size: 1.2rem; }
.trial-card-badge {
  background: linear-gradient(135deg, #25D366, #00b4d8);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.trial-card-badge.enterprise-trial {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20, 20, 30, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  z-index: 10000;
  animation: slideUp 0.5s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-content p { font-size: 0.9rem; color: #aaa; flex: 1; }
.cookie-content a { color: #25D366; text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; }
.btn-cookie-accept {
  padding: 10px 24px;
  background: #25D366;
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
}
.btn-cookie-accept:hover { background: #1db954; }
.btn-cookie-reject {
  padding: 10px 24px;
  background: transparent;
  color: #999;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
}
.btn-cookie-reject:hover { border-color: rgba(255,255,255,0.3); color: #fff; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.4rem; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.logo-icon { font-size: 1.6rem; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; color: #999; transition: color 0.3s; font-weight: 500; }
.nav-links a:hover { color: #fff; }
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}
.shape-1 { width: 600px; height: 600px; background: #25D366; top: -200px; right: -200px; }
.shape-2 { width: 400px; height: 400px; background: #7c3aed; bottom: -100px; left: -100px; }
.shape-3 { width: 300px; height: 300px; background: #00b4d8; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.hero-content { text-align: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(37, 211, 102, 0.2);
}
.hero h1 { font-size: 3.8rem; font-weight: 900; line-height: 1.1; margin-bottom: 24px; max-width: 800px; margin-left: auto; margin-right: auto; }
.hero-subtitle { font-size: 1.2rem; color: #999; max-width: 600px; margin: 0 auto 40px; line-height: 1.7; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; justify-content: center; gap: 60px; }
.stat { text-align: center; }
.stat-number { display: block; font-size: 2rem; font-weight: 800; color: #fff; }
.stat-label { font-size: 0.85rem; color: #666; }

/* ===== FEATURES ===== */
.features { padding: 120px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.4s ease;
}
.feature-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(37, 211, 102, 0.2);
  transform: translateY(-4px);
}
.feature-icon { font-size: 2.5rem; margin-bottom: 20px; }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.feature-card p { font-size: 0.9rem; color: #888; line-height: 1.6; }

/* ===== PRICING ===== */
.pricing { padding: 120px 0; background: rgba(255,255,255,0.01); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: #666;
  padding: 60px 0;
  font-size: 1rem;
}
.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.4s ease;
}
.pricing-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}
.pricing-card.popular {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.05);
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.1);
}
.pricing-card.enterprise {
  border-color: rgba(124, 58, 237, 0.4);
  background: rgba(124, 58, 237, 0.05);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #000;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}
.pricing-header { margin-bottom: 28px; }
.pricing-header h3 { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.pricing-desc { font-size: 0.85rem; color: #888; margin-bottom: 20px; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; }
.price { font-size: 2.8rem; font-weight: 900; color: #fff; }
.period { font-size: 0.9rem; color: #666; }
.pricing-features { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 0.85rem; padding: 4px 0; }
.pricing-features .included { color: #ccc; }
.pricing-features .not-included { color: #555; }
.pricing-features .info { color: #f59e0b; font-size: 0.8rem; }

/* ===== COMPARISON TABLE ===== */
.comparison { padding: 120px 0; }
.table-wrapper { overflow-x: auto; border-radius: 20px; border: 1px solid rgba(255,255,255,0.06); }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.comparison-table th {
  background: rgba(255,255,255,0.05);
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
  position: sticky;
  top: 0;
}
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: #ccc;
}
.comparison-table td { color: #999; }
.comparison-table .highlight-col {
  background: rgba(37, 211, 102, 0.05);
  color: #ccc;
}
.comparison-table th.highlight-col {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
}
.comparison-table tbody tr:hover { background: rgba(255,255,255,0.02); }

/* ===== FAQ ===== */
.faq { padding: 120px 0; background: rgba(255,255,255,0.01); }
.faq-list { max-width: 750px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(255,255,255,0.12); }
.faq-item.active { border-color: rgba(37, 211, 102, 0.3); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
}
.faq-icon {
  font-size: 1.4rem;
  color: #25D366;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 24px 20px; color: #888; font-size: 0.9rem; line-height: 1.7; }

/* ===== CTA FINAL ===== */
.cta-final {
  padding: 120px 0;
  text-align: center;
  position: relative;
}
.cta-final h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; }
.cta-final p { color: #888; font-size: 1.1rem; margin-bottom: 40px; }

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { color: #666; font-size: 0.9rem; margin-top: 16px; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links h4 { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.footer-links a { font-size: 0.85rem; color: #666; transition: color 0.3s; }
.footer-links a:hover { color: #25D366; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom p { font-size: 0.8rem; color: #555; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.8rem; }
}
@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links.active { display: flex; }
  .hero h1 { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-stats { gap: 30px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-header h2 { font-size: 1.8rem; }
  .cta-final h2 { font-size: 1.8rem; }
  .cookie-content { flex-direction: column; text-align: center; }
}

/* ===== LEGAL PAGES ===== */
.legal-page { padding: 120px 0 80px; }
.legal-page .container { max-width: 800px; }
.legal-page h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.legal-page .legal-date { color: #666; font-size: 0.9rem; margin-bottom: 48px; }
.legal-page h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-top: 48px;
  margin-bottom: 16px;
}
.legal-page h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ddd;
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-page p {
  color: #999;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-page ul li {
  color: #999;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 8px;
}
.legal-page a { color: #25D366; }
.legal-page .highlight-box {
  background: rgba(37, 211, 102, 0.05);
  border: 1px solid rgba(37, 211, 102, 0.15);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
}
.legal-page .highlight-box p { color: #bbb; }
.legal-page .warning-box {
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
}
.legal-page .warning-box p { color: #bbb; }
