/* ================================================
   ZapVox — Design System v2.0
   Modern SaaS aesthetic · WhatsApp Green palette
   ================================================ */

/* ---- Variables ---- */
:root {
  --green-500: #25D366;
  --green-600: #1ebe5d;
  --green-700: #128C7E;
  --green-800: #075E54;
  --green-900: #04403a;
  --green-light: #dcfce7;
  --green-glow: rgba(37, 211, 102, 0.25);

  --bg-primary: #f8fafb;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-dark: #0a1628;
  --bg-dark-2: #0f1f3a;
  --bg-dark-card: #162032;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-inverse: #ffffff;

  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.07);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.09);
  --shadow-green: 0 8px 32px rgba(37,211,102,.25);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
p { color: var(--text-secondary); }

/* ---- Layout ---- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-light); color: var(--green-700);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-full); margin-bottom: 16px;
}

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

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--gray-900);
  text-decoration: none;
}

.logo-img {
  display: block;
  flex-shrink: 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--gray-700);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

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

.btn-nav {
  background: var(--green) !important;
  color: white !important;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.btn-nav:hover { background: var(--green-dark) !important; }

/* ---- HERO ---- */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, #F0FFF4 0%, var(--white) 100%);
}

.hero-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  color: var(--gray-900);
}

.highlight {
  color: var(--green-dark);
  position: relative;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--green);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-large { padding: 16px 32px; font-size: 16px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  background: var(--white);
  color: var(--gray-700);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--gray-200);
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--green-dark);
}

.stat span { font-size: 12px; color: var(--gray-500); }

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--gray-200);
}

/* ---- HOW TO ---- */
.howto-section { padding: 60px 0; text-align: center; }
.howto-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.howto-step {
  background: white; border: 1px solid var(--gray-200); border-radius: 16px;
  padding: 28px 24px; max-width: 260px; text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.howto-step:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.howto-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green); color: white; font-weight: 800; font-size: 18px;
  margin-bottom: 12px;
}
.howto-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.howto-step p { font-size: 13px; color: var(--gray-500); line-height: 1.5; }
.howto-arrow { font-size: 28px; color: var(--green); font-weight: 700; }
@media (max-width: 768px) { .howto-arrow { display: none; } }

/* ---- PROBLEM ---- */
.problem-section {
  padding: 60px 0;
  background: var(--gray-900);
  color: white;
  text-align: center;
}

.problem-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.problem-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: left;
}

.problem-icon { font-size: 28px; display: block; margin-bottom: 8px; }
.problem-card p { font-size: 14px; color: #D1D5DB; line-height: 1.5; }

/* ---- FEATURES ---- */
.features-section {
  padding: 80px 0;
}

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

.section-header h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.section-header p { color: var(--gray-500); font-size: 16px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--gray-100);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.2s;
  position: relative;
}

.feature-card:hover { transform: translateY(-4px); }

.feature-primary {
  background: linear-gradient(135deg, #F0FFF4, #ECFDF5);
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.feature-icon { font-size: 32px; margin-bottom: 12px; display: block; }

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

.feature-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 8px;
  background: var(--green-light);
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.feature-tag-pro {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  color: #92400E;
}

/* ---- PERSONAS ---- */
.personas-section {
  padding: 60px 0;
  background: var(--gray-100);
  text-align: center;
}

.personas-section h2 { font-size: 28px; font-weight: 700; margin-bottom: 32px; }

.personas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.persona {
  background: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.persona-emoji { font-size: 32px; display: block; margin-bottom: 8px; }
.persona strong { display: block; font-size: 15px; margin-bottom: 4px; }
.persona p { font-size: 13px; color: var(--gray-500); }

/* ---- COMPARISON ---- */
.comparison-section { padding: 80px 0; text-align: center; }
.comparison-section h2 { font-size: 32px; font-weight: 800; margin-bottom: 32px; }

.comparison-table-wrapper { overflow-x: auto; }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table th,
.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-200);
  text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.comparison-table thead th { font-weight: 600; color: var(--gray-500); font-size: 13px; }

.highlight-col {
  background: #F0FFF4;
  font-weight: 700;
  color: var(--green-dark);
}

.check { color: #059669; }
.cross { color: #9CA3AF; }

/* ---- TRIAL BANNER ---- */
.trial-banner {
  background: linear-gradient(135deg, #F0FFF4, #ECFDF5);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 32px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.trial-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}

.trial-icon { font-size: 28px; flex-shrink: 0; }

.trial-content strong {
  display: block;
  font-size: 15px;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.trial-content p {
  font-size: 13px;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.5;
}

/* ---- PRICING ---- */
.pricing-section { padding: 80px 0; text-align: center; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 680px;
  margin: 0 auto 20px;
}

.pricing-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 28px;
  text-align: left;
  position: relative;
}

.pricing-card-featured {
  border-color: var(--green);
  box-shadow: 0 0 0 2px var(--green);
}

.plan-badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 12px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-500); color: #fff;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover { background: var(--green-600); transform: translateY(-1px); box-shadow: 0 12px 40px rgba(37,211,102,.35); }
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  background: transparent; color: var(--text-primary);
  border: 1.5px solid var(--border-medium);
}
.btn-outline:hover { border-color: var(--green-500); color: var(--green-600); background: var(--green-light); }
.btn-lg { padding: 16px 32px; font-size: 1.0625rem; }
.btn-sm { padding: 8px 18px; font-size: 0.875rem; }
.btn-ghost { background: rgba(255,255,255,0.08); color: #fff; backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); }

/* ---- Navigation ---- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,250,251,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.125rem; font-weight: 700; color: var(--text-primary);
}
.nav-logo img { width: 32px; height: 32px; }
.nav-logo .logo-badge {
  font-size: 0.625rem; font-weight: 700; letter-spacing: 0.05em;
  background: var(--green-500); color: #fff;
  padding: 2px 7px; border-radius: var(--radius-full); text-transform: uppercase;
}

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--gray-500);
  transition: transform 0.2s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ---- LANGS ---- */
.langs-section { padding: 60px 0; }

/* ---- BYOK ---- */
.byok-section { padding: 80px 0; background: var(--gray-100); }
.byok-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.byok-card {
  background: white; border-radius: 16px; padding: 28px; text-align: center;
  border: 1px solid var(--gray-200); transition: transform 0.2s;
}
.byok-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.byok-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.byok-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.byok-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }
.byok-card code {
  background: var(--gray-100); padding: 2px 8px; border-radius: 6px;
  font-size: 13px; color: var(--gray-700); font-family: 'Courier New', monospace;
}

/* ---- CTA FINAL ---- */
.cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--green-dark), #0A4C3E);
  color: white;
}

.cta-section h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.cta-section p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 28px; }

.cta-section .btn-primary {
  background: white;
  color: var(--green-dark);
}

.cta-section .btn-primary:hover { background: var(--green-light); transform: translateY(-2px); }

.cta-note { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 16px; margin-bottom: 0; }

/* ---- FOOTER ---- */
.footer {
  background: var(--gray-900);
  color: white;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.footer p { font-size: 14px; color: #9CA3AF; line-height: 1.6; }

.footer h4 { font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer ul li a { color: #9CA3AF; text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer ul li a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #6B7280;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}
.hero-title { animation: fadeInUp 0.6s ease-out; }
.hero-subtitle { animation: fadeInUp 0.6s ease-out 0.1s both; }
.hero-actions { animation: fadeInUp 0.6s ease-out 0.2s both; }
.hero-stats { animation: fadeInUp 0.6s ease-out 0.3s both; }
.btn-primary.btn-large { animation: pulse 2s ease-in-out infinite; }
.section-header { animation: fadeInUp 0.5s ease-out; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: flex; }
}

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, #0a1628 0%, #0f2040 50%, #0a2818 100%);
  padding: 120px 0 96px;
  position: relative; overflow: hidden;
  color: var(--text-inverse);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(37,211,102,.18), transparent);
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(37,211,102,.4), transparent);
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,211,102,.12); border: 1px solid rgba(37,211,102,.25);
  color: var(--green-500); font-size: 0.8125rem; font-weight: 600;
  padding: 6px 14px; border-radius: var(--radius-full); margin-bottom: 24px;
}
.hero-tag::before { content: '●'; font-size: 0.5rem; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { opacity:1 } 50% { opacity:.3 } }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 span { color: var(--green-500); }
.hero-desc { font-size: 1.125rem; color: rgba(255,255,255,.7); margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-social-proof { display: flex; align-items: center; gap: 10px; margin-top: 28px; }
.hero-avatars { display: flex; }
.hero-avatars span { width:32px;height:32px;border-radius:50%;background:linear-gradient(135deg,#25D366,#128C7E);border:2px solid #0a1628;margin-right:-8px;display:flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:700;color:#fff; }
.hero-social-proof p { font-size: 0.875rem; color: rgba(255,255,255,.6); }
.hero-social-proof strong { color: rgba(255,255,255,.9); }
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; } .hero-visual { display: none; } }

/* ---- Hero Visual / Mockup ---- */
.hero-visual { position: relative; }
.mockup-window {
  background: #1a2a3a; border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.04);
  overflow: hidden;
}
.mockup-bar {
  background: #0f1f30; padding: 12px 16px;
  display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }
.mockup-url { flex: 1; background: rgba(255,255,255,.06); border-radius: 6px; padding: 4px 10px; font-size: .75rem; color: rgba(255,255,255,.4); margin-left: 8px; }
.mockup-body { padding: 20px; }
.chat-bubble {
  background: rgba(255,255,255,.06); border-radius: 12px 12px 12px 4px;
  padding: 12px 16px; margin-bottom: 10px; max-width: 85%;
  font-size: .875rem; color: rgba(255,255,255,.75);
}
.chat-bubble.sent { background: rgba(37,211,102,.15); margin-left: auto; border-radius: 12px 12px 4px 12px; }
.chat-audio {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08); border-radius: 10px; padding: 10px 14px; margin-bottom: 8px;
}
.audio-icon { width:32px;height:32px;border-radius:50%;background:var(--green-500);display:flex;align-items:center;justify-content:center;flex-shrink:0; }
.audio-wave { flex:1;height:3px;background:linear-gradient(90deg,#25D366 40%,rgba(255,255,255,.2) 40%);border-radius:2px; }
.transcribe-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-500); color: #fff; font-size: .75rem; font-weight: 600;
  padding: 6px 14px; border-radius: var(--radius-full); margin-top: 6px;
  animation: glow-pulse 2.5s ease-in-out infinite;
}
@keyframes glow-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.4); } 50% { box-shadow: 0 0 16px 4px rgba(37,211,102,.3); } }
.transcript-card {
  background: rgba(37,211,102,.08); border: 1px solid rgba(37,211,102,.2);
  border-radius: 10px; padding: 12px; margin-top: 8px;
  font-size: .8125rem; color: rgba(255,255,255,.8); line-height: 1.5;
}
.transcript-card .tc-label { font-size: .7rem; font-weight: 600; color: var(--green-500); letter-spacing:.06em; text-transform: uppercase; margin-bottom: 4px; }

/* ---- Logos / Social Proof Bar ---- */
.logos-bar { background: var(--bg-secondary); border-top: 1px solid var(--border-light); padding: 28px 0; }
.logos-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.logos-inner span { font-size: .875rem; font-weight: 600; color: var(--text-muted); letter-spacing: .04em; opacity: .6; }
.logos-label { font-size: .75rem; color: var(--text-muted); text-align: center; margin-bottom: 16px; letter-spacing: .05em; text-transform: uppercase; }

/* ---- Stats ---- */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  padding: 32px; text-align: center; box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.stat-num { font-size: 2.5rem; font-weight: 800; color: var(--green-600); letter-spacing: -0.03em; }
.stat-label { font-size: .9375rem; color: var(--text-secondary); margin-top: 4px; }
@media (max-width: 640px) { .stats-grid { grid-template-columns: 1fr; } }

/* ---- Features Grid ---- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  padding: 32px; transition: var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::before { content:''; position:absolute;top:0;left:0;right:0;height:2px;background:linear-gradient(90deg,var(--green-500),var(--green-700));transform:scaleX(0);transform-origin:left;transition:var(--transition); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-500); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { width:52px;height:52px;border-radius:var(--radius-md);background:var(--green-light);display:flex;align-items:center;justify-content:center;font-size:1.5rem;margin-bottom:20px; }
.feature-card h3 { font-size: 1.0625rem; color: var(--text-primary); margin-bottom: 10px; }
.feature-card p { font-size: .9375rem; line-height: 1.65; }
.feature-tag { display: inline-block; background: var(--green-light); color: var(--green-700); font-size: .7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 3px 9px; border-radius: var(--radius-full); margin-bottom: 12px; }
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .features-grid { grid-template-columns: 1fr; } }

/* ---- How it Works ---- */
.how-section { background: var(--bg-secondary); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; position: relative; }
.steps-grid::before { content:''; position:absolute;top:28px;left:12%;right:12%;height:2px;background:linear-gradient(90deg,var(--green-light),var(--green-500),var(--green-light));z-index:0; }
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num-circle {
  width:56px;height:56px;border-radius:50%;background:var(--green-500);color:#fff;
  font-size:1.25rem;font-weight:800;display:flex;align-items:center;justify-content:center;
  margin:0 auto 16px;box-shadow:var(--shadow-green);
}
.step-item h4 { font-size:.9375rem; color:var(--text-primary); margin-bottom:8px; }
.step-item p { font-size:.875rem; }
@media (max-width:768px) { .steps-grid { grid-template-columns:repeat(2,1fr); } .steps-grid::before { display:none; } }
@media (max-width:480px) { .steps-grid { grid-template-columns:1fr; } }

/* ---- Comparison Table ---- */
.compare-table-wrap { margin-top: 56px; overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.compare-table { width: 100%; border-collapse: collapse; background: var(--bg-card); }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: center; font-size: .9375rem; border-bottom: 1px solid var(--border-light); }
.compare-table th { background: var(--bg-primary); font-weight: 700; color: var(--text-primary); font-size: .875rem; letter-spacing: .02em; }
.compare-table td:first-child, .compare-table th:first-child { text-align: left; font-weight: 500; color: var(--text-secondary); }
.compare-table th.highlight-col { background: var(--green-light); color: var(--green-700); }
.compare-table td.highlight-col { background: rgba(37,211,102,.04); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .check { color: var(--green-600); font-size: 1.1rem; }
.compare-table .cross { color: var(--text-muted); font-size: 1rem; }

/* ---- Pricing Cards ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; align-items: start; }
.pricing-card {
  background: var(--bg-card); border: 1.5px solid var(--border-light); border-radius: var(--radius-xl);
  padding: 36px 32px; position: relative; transition: var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.popular {
  border-color: var(--green-500); box-shadow: var(--shadow-green);
  transform: scale(1.04);
}
.pricing-card.popular:hover { transform: scale(1.04) translateY(-4px); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: #fff; font-size: .75rem; font-weight: 700; letter-spacing: .05em;
  padding: 5px 18px; border-radius: var(--radius-full); white-space: nowrap;
  text-transform: uppercase;
}
.plan-name { font-size: .875rem; font-weight: 700; color: var(--green-600); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.plan-price .amount { font-size: 3rem; font-weight: 800; color: var(--text-primary); letter-spacing: -0.04em; }
.plan-price .currency { font-size: 1.25rem; font-weight: 700; color: var(--text-secondary); margin-top: 8px; }
.plan-price .period { font-size: .9375rem; color: var(--text-muted); }
.plan-desc { font-size: .9rem; color: var(--text-secondary); margin-bottom: 24px; min-height: 42px; }
.plan-divider { height: 1px; background: var(--border-light); margin: 24px 0; }
.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.plan-feature { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--text-secondary); }
.plan-feature::before { content:'✓'; color:var(--green-600);font-weight:700;flex-shrink:0; }
.plan-feature.disabled { opacity: .45; }
.plan-feature.disabled::before { content:'–'; color:var(--text-muted); }
.plan-cta { width: 100%; justify-content: center; }
@media (max-width:900px) { .pricing-grid { grid-template-columns:1fr; max-width:420px; margin-left:auto; margin-right:auto; } .pricing-card.popular { transform:none; } }

/* ---- Testimonials ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  padding: 28px; transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: .9375rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width:40px;height:40px;border-radius:50%;background:linear-gradient(135deg,var(--green-500),var(--green-700));display:flex;align-items:center;justify-content:center;font-weight:700;color:#fff;font-size:.9375rem; }
.author-info .name { font-size: .875rem; font-weight: 700; color: var(--text-primary); }
.author-info .role { font-size: .8125rem; color: var(--text-muted); }
@media (max-width:900px) { .testimonials-grid { grid-template-columns:1fr; max-width:520px; margin:56px auto 0; } }

/* ---- FAQ ---- */
.faq-section { background: var(--bg-secondary); }
.faq-list { max-width: 720px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-md);
  overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: var(--green-500); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: none; font-size: .9375rem; font-weight: 600;
  color: var(--text-primary); text-align: left; cursor: pointer;
}
.faq-q .icon { width:22px;height:22px;border-radius:50%;background:var(--green-light);color:var(--green-700);display:flex;align-items:center;justify-content:center;font-size:1rem;flex-shrink:0;transition:var(--transition); }
.faq-a { padding: 0 22px 18px; font-size: .9375rem; color: var(--text-secondary); line-height: 1.7; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--green-500); color: #fff; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, #0a1628, #0f2040, #0a2818);
  border-radius: var(--radius-xl); padding: 72px 48px; text-align: center;
  position: relative; overflow: hidden; margin: 0 24px;
}
.cta-banner::before { content:''; position:absolute;top:-50%;left:-50%;width:200%;height:200%;background:radial-gradient(ellipse at center, rgba(37,211,102,.12) 0%, transparent 60%); }
.cta-banner h2 { color: #fff; margin-bottom: 16px; position: relative; }
.cta-banner p { color: rgba(255,255,255,.65); font-size: 1.125rem; max-width: 520px; margin: 0 auto 32px; position: relative; }
.cta-banner .actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* ---- Footer ---- */
.footer {
  background: var(--bg-dark); color: rgba(255,255,255,.6);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { display: flex; align-items: center; gap: 10px; font-size: 1.125rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 { font-size: .875rem; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: .03em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--green-500); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: gap; gap: 16px; }
.footer-bottom p { font-size: .875rem; }
.footer-bottom .links { display: flex; gap: 24px; }
.footer-bottom .links a { font-size: .875rem; transition: var(--transition); }
.footer-bottom .links a:hover { color: var(--green-500); }
@media (max-width:900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:580px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ---- Dashboard Page ---- */
.dash-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.dash-sidebar {
  background: var(--bg-dark); color: rgba(255,255,255,.75);
  padding: 24px 16px; display: flex; flex-direction: column; gap: 4px;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.dash-logo { display: flex; align-items: center; gap: 10px; font-size: 1.0625rem; font-weight: 700; color: #fff; padding: 8px 12px; margin-bottom: 16px; }
.dash-nav-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: var(--radius-md); font-size: .9375rem; font-weight: 500;
  transition: var(--transition); cursor: pointer; color: rgba(255,255,255,.6);
}
.dash-nav-item:hover { background: rgba(255,255,255,.06); color: rgba(255,255,255,.9); }
.dash-nav-item.active { background: rgba(37,211,102,.12); color: var(--green-500); }
.dash-nav-item .icon { font-size: 1.1rem; flex-shrink: 0; }
.dash-sidebar-spacer { flex: 1; }
.dash-user {
  display: flex; align-items: center; gap: 10px; padding: 12px;
  border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,.08); margin-top: 8px;
}
.dash-user-avatar { width:36px;height:36px;border-radius:50%;background:linear-gradient(135deg,var(--green-500),var(--green-700));display:flex;align-items:center;justify-content:center;font-weight:700;color:#fff;font-size:.875rem;flex-shrink:0; }
.dash-user-info .name { font-size: .875rem; font-weight: 600; color: rgba(255,255,255,.9); }
.dash-user-info .email { font-size: .75rem; color: rgba(255,255,255,.4); }

.dash-main { background: var(--bg-primary); padding: 32px; }
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.dash-header h1 { font-size: 1.5rem; color: var(--text-primary); }
.dash-header p { font-size: .9375rem; color: var(--text-secondary); margin-top: 4px; }
@media (max-width: 900px) { .dash-layout { grid-template-columns: 1fr; } .dash-sidebar { display: none; } .dash-main { padding: 24px 16px; } }

/* ---- Dashboard Cards ---- */
.dash-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }
.dash-card {
  background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  padding: 24px; transition: var(--transition);
}
.dash-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.dash-card-icon { width:44px;height:44px;border-radius:var(--radius-md);background:var(--green-light);display:flex;align-items:center;justify-content:center;font-size:1.25rem;margin-bottom:14px; }
.dash-card-num { font-size: 1.875rem; font-weight: 800; color: var(--text-primary); letter-spacing:-0.03em; }
.dash-card-label { font-size: .875rem; color: var(--text-secondary); margin-top: 2px; }
.dash-card-change { font-size: .8125rem; color: var(--green-600); font-weight: 600; margin-top: 8px; }
.dash-card-change.down { color: #ef4444; }
@media (max-width:900px) { .dash-cards-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:520px) { .dash-cards-grid { grid-template-columns: 1fr; } }

/* ---- Plan Card ---- */
.plan-card {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark-2));
  border-radius: var(--radius-lg); padding: 28px; color: #fff; position: relative; overflow: hidden;
  border: 1px solid rgba(37,211,102,.2);
}
.plan-card::before { content:''; position:absolute;top:-40%;right:-20%;width:300px;height:300px;border-radius:50%;background:radial-gradient(circle, rgba(37,211,102,.1) 0%, transparent 70%); }
.plan-card-row { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 16px; position: relative; }
.plan-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(37,211,102,.15); border: 1px solid rgba(37,211,102,.3); color: var(--green-500); font-size: .8125rem; font-weight: 700; padding: 5px 14px; border-radius: var(--radius-full); margin-bottom: 8px; }
.plan-title { font-size: 1.25rem; font-weight: 800; color: #fff; }
.plan-sub { font-size: .875rem; color: rgba(255,255,255,.5); margin-top: 4px; }
.plan-usage { margin-top: 20px; position: relative; }
.plan-usage-label { display: flex; justify-content: space-between; font-size: .875rem; margin-bottom: 8px; }
.plan-usage-label span { color: rgba(255,255,255,.7); }
.plan-usage-label strong { color: #fff; }
.usage-bar { height: 8px; background: rgba(255,255,255,.1); border-radius: var(--radius-full); overflow: hidden; }
.usage-fill { height: 100%; background: linear-gradient(90deg, var(--green-500), var(--green-700)); border-radius: var(--radius-full); transition: width .8s cubic-bezier(.4,0,.2,1); }

/* ---- Table (History) ---- */
.dash-table-wrap { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; }
.dash-table-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border-light); }
.dash-table-header h3 { font-size: 1rem; color: var(--text-primary); }
.dash-table { width: 100%; border-collapse: collapse; }
.dash-table th { background: var(--bg-primary); padding: 12px 24px; text-align: left; font-size: .8125rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--text-muted); }
.dash-table td { padding: 14px 24px; font-size: .9375rem; color: var(--text-secondary); border-bottom: 1px solid var(--border-light); }
.dash-table tr:last-child td { border-bottom: none; }
.dash-table tr:hover td { background: var(--bg-primary); }
.dash-table .status-pill { display: inline-flex; align-items: center; gap: 5px; font-size: .8125rem; font-weight: 600; padding: 3px 10px; border-radius: var(--radius-full); }
.status-pill.done { background: var(--green-light); color: var(--green-700); }
.status-pill.pending-s { background: #fef3c7; color: #d97706; }
.status-pill.failed { background: #fee2e2; color: #dc2626; }

/* ---- Alerts / Notices ---- */
.alert {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 20px; border-radius: var(--radius-md);
  font-size: .9375rem; margin-bottom: 20px;
}
.alert-info { background: #eff6ff; border: 1px solid #bfdbfe; color: #1d4ed8; }
.alert-warning { background: #fffbeb; border: 1px solid #fde68a; color: #d97706; }
.alert-success { background: var(--green-light); border: 1px solid #86efac; color: var(--green-700); }
.alert-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* ---- Trial Countdown ---- */
.trial-banner {
  background: linear-gradient(135deg, #0a1628, #0f2040);
  border: 1px solid rgba(37,211,102,.2); border-radius: var(--radius-lg);
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 24px;
}
.trial-info .trial-label { font-size: .8125rem; color: rgba(255,255,255,.5); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.trial-info .trial-days { font-size: 1.375rem; font-weight: 800; color: #fff; }
.trial-info .trial-days span { color: var(--green-500); }
.trial-info .trial-sub { font-size: .875rem; color: rgba(255,255,255,.5); margin-top: 2px; }

/* ---- Utility Classes ---- */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.w-full { width: 100%; }
.hidden { display: none !important; }

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.animate-up { animation: fadeInUp .55s ease both; }
.animate-up-2 { animation: fadeInUp .55s .12s ease both; }
.animate-up-3 { animation: fadeInUp .55s .24s ease both; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-medium); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ---- Pro Page specific ---- */
.pro-hero {
  background: linear-gradient(135deg, #0a1628 0%, #0f2040 100%);
  padding: 80px 0 64px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.pro-hero::before { content:''; position:absolute;inset:0;background:radial-gradient(ellipse 70% 50% at 50% 0%, rgba(37,211,102,.15), transparent); }
.pro-hero h1 { color: #fff; position: relative; }
.pro-hero p { color: rgba(255,255,255,.65); font-size: 1.125rem; max-width: 560px; margin: 16px auto 0; position: relative; }
.pro-toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 32px; position: relative; }
.pro-toggle { width: 52px; height: 28px; background: rgba(255,255,255,.15); border-radius: 14px; cursor: pointer; position: relative; transition: var(--transition); }
.pro-toggle.on { background: var(--green-500); }
.pro-toggle-knob { position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fff; transition: var(--transition); }
.pro-toggle.on .pro-toggle-knob { left: 27px; }
.toggle-label { font-size: .9375rem; color: rgba(255,255,255,.7); }
.toggle-label.active { color: #fff; font-weight: 600; }
.save-badge { background: var(--green-500); color: #fff; font-size: .7rem; font-weight: 700; padding: 3px 8px; border-radius: var(--radius-full); }
.money-back { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 48px; font-size: .875rem; color: var(--text-secondary); }
.money-back .icon { font-size: 1.25rem; }
