/* ============================================
   VELOX AI - UNIFIED DESIGN SYSTEM
   Modern Dark Premium Theme
   ============================================ */

:root {
  --bg: #050505;
  --bg-elevated: #0a0a0a;
  --bg-card: #111111;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --accent: #00ff88;
  --accent-dim: rgba(0, 255, 136, 0.1);
  --accent-glow: rgba(0, 255, 136, 0.3);
  --text: #ffffff;
  --text-dim: #888888;
  --text-muted: #555555;
  --danger: #ff3366;
  --warning: #ffaa00;
  --info: #00ccff;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-sm: 6px;
  --transition: 0.2s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #444; }

/* --- NAVIGATION --- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 16px 40px;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
  white-space: nowrap;
}

.logo-icon { 
  width: 36px; 
  height: 36px;
  min-width: 36px;
  min-height: 36px;
}

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

.nav-link {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  background: var(--text);
  color: var(--bg);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 20px var(--accent-glow);
}

/* Mobile menu toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 255, 136, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 100px;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

h1 {
  font-size: clamp(40px, 8vw, 80px);
  line-height: 1.1;
  letter-spacing: -3px;
  margin: 0 0 24px 0;
  background: linear-gradient(180deg, #fff 0%, #666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 8px;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  letter-spacing: -1px;
  margin: 0 0 16px 0;
  padding-bottom: 4px;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: #000;
}

.btn-primary:hover {
  background: #00e67a;
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.05);
}

.btn-white {
  background: var(--text);
  color: var(--bg);
}

.btn-white:hover {
  background: var(--accent);
}

.btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- SECTIONS --- */
section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

section:first-of-type {
  padding-top: 140px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 20px;
}

.section-header h2 {
  background: linear-gradient(180deg, #fff 0%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: var(--text-dim);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

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

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.card h3 { color: #fff; margin-bottom: 8px; }
.card p { color: var(--text-dim); font-size: 15px; margin: 0; }

/* --- PRICING --- */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(0, 255, 136, 0.03) 100%);
}

.pricing-card.featured::after {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.price {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin: 20px 0;
}

.price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dim);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.price-features li {
  padding: 8px 0;
  color: var(--text-dim);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

/* --- FORMS --- */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

input, textarea, select {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  transition: var(--transition);
}

input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px var(--accent-dim);
}

input::placeholder, textarea::placeholder {
  color: var(--text-muted);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  color: var(--danger);
  font-size: 13px;
  margin-top: 6px;
  display: none;
}

.form-success {
  background: var(--accent-dim);
  border: 1px solid rgba(0, 255, 136, 0.2);
  padding: 16px;
  border-radius: var(--radius-sm);
  color: var(--accent);
  text-align: center;
  display: none;
}

/* --- WHATSAPP MOCKUP --- */
.wa-mockup {
  max-width: 380px;
  margin: 40px auto;
  background: #0b141a;
  border: 1px solid #333;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.wa-header {
  background: #202c33;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #333;
}

.wa-avatar {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: 16px;
}

.wa-info h4 { margin: 0; font-size: 14px; color: #fff; }
.wa-info span { font-size: 12px; color: var(--accent); }

.wa-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 300px;
  background-image: radial-gradient(#1f2c34 1px, transparent 1px);
  background-size: 20px 20px;
}

.msg {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  max-width: 85%;
  position: relative;
  animation: msgIn 0.3s ease;
}

@keyframes msgIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.msg-in {
  background: #202c33;
  color: #fff;
  align-self: flex-start;
  border-top-left-radius: 0;
}

.msg-out {
  background: #005c4b;
  color: #fff;
  align-self: flex-end;
  border-top-right-radius: 0;
}

.msg-time {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  float: right;
  margin-left: 8px;
  margin-top: 2px;
}

/* --- STATS --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 60px 0;
}

.stat-item {
  text-align: center;
  padding: 24px;
}

.stat-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- TESTIMONIALS --- */
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.testimonial:hover {
  border-color: var(--border-hover);
}

.testimonial-text {
  font-size: 18px;
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--info));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
}

.testimonial-name {
  font-weight: 600;
  color: #fff;
}

.testimonial-role {
  font-size: 14px;
  color: var(--text-dim);
}

/* --- FAQ --- */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--text-dim);
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 16px;
}

/* --- FOOTER --- */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 40px 30px;
  background: var(--bg-elevated);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* --- INDUSTRY CARDS --- */
.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.industry-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.industry-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.industry-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.industry-card p {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 20px;
}

.industry-stats {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.industry-stat {
  text-align: center;
}

.industry-stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

.industry-stat-label {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- CASE STUDIES --- */
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.case-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.case-header {
  padding: 32px;
  border-bottom: 1px solid var(--border);
}

.case-header h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.case-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-dim);
  border-radius: 100px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.case-body {
  padding: 32px;
}

.case-metric {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.case-metric-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
}

.case-metric-label {
  font-size: 14px;
  color: var(--text-dim);
}

/* --- LEGAL PAGES --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 140px 20px 80px;
}

.legal-content h1 {
  font-size: 48px;
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 24px;
  margin: 40px 0 16px;
  color: #fff;
}

.legal-content p {
  color: var(--text-dim);
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul {
  color: var(--text-dim);
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* --- ANIMATIONS --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile: trust strip, voice, pillars */
@media (max-width: 1024px) {
  .voice-card {
    flex-direction: column;
    padding: 40px;
    text-align: center;
  }
  .voice-content > p {
    margin-left: auto;
    margin-right: auto;
  }
  .voice-features {
    text-align: left;
  }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  nav {
    padding: 12px 20px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    flex-direction: column;
    gap: 8px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 12px;
    width: 100%;
    text-align: center;
  }

  .nav-cta {
    margin-left: 0;
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }

  .mobile-menu-btn {
    display: block;
  }

  section {
    padding: 60px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .industry-stats {
    flex-direction: column;
    gap: 12px;
  }
}

/* --- TRUST STRIP --- */
.trust-strip {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: 900px;
}

.trust-item {
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* --- PROBLEM SECTION --- */
.problem-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

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

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.problem-card:hover {
  border-color: var(--danger);
  transform: translateY(-4px);
}

.problem-num {
  font-size: 56px;
  font-weight: 900;
  color: var(--danger);
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #ff3366 0%, #ff6699 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.problem-card p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
}

/* --- PILLARS --- */
.pillars-section {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  transition: var(--transition);
}

.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.pillar.featured-pillar {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(0, 255, 136, 0.04) 100%);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.05);
}

.pillar.featured-pillar::before {
  content: 'MOST COMPELLING';
  position: absolute;
  top: -12px;
  left: 40px;
  background: var(--accent);
  color: #000;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.pillar-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.pillar-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.pillar h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.pillar-pitch {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.5;
}

.pillar > p:last-of-type {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.pillar-stat {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.pillar-stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.pillar-stat-label {
  font-size: 13px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- VOICE SECTION --- */
.voice-section {
  padding: 100px 20px;
}

.voice-card {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 255, 136, 0.05) 100%);
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 60px;
  display: flex;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.voice-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.voice-icon {
  font-size: 120px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.voice-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.voice-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  background: var(--accent-dim);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.voice-content h3 {
  font-size: 36px;
  margin-bottom: 16px;
}

.voice-content > p {
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 600px;
}

.voice-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.voice-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.voice-feature-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.voice-feature strong {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
}

.voice-feature p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* --- DREAM SECTION --- */
.dream-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.dream-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.dream-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.dream-content h2 {
  margin-bottom: 60px;
}

.dream-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  text-align: left;
}

.dream-item {
  padding: 32px;
}

.dream-emoji {
  font-size: 48px;
  margin-bottom: 16px;
}

.dream-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text);
}

.dream-item p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
}

/* --- TESTIMONIAL DISCLAIMER --- */
.testimonial-disclaimer {
  max-width: 700px;
  margin: -20px auto 40px;
  padding: 16px 20px;
  background: rgba(255, 170, 0, 0.05);
  border: 1px solid rgba(255, 170, 0, 0.2);
  border-radius: var(--radius-sm);
  color: var(--warning);
  font-size: 13px;
  line-height: 1.6;
}

/* --- FAQ LIST --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

/* --- FINAL CTA --- */
.final-cta {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 40px;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

/* --- WA INPUT --- */
.wa-input {
  background: #202c33;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #333;
}

.wa-input-placeholder {
  flex: 1;
  color: #8696a0;
  font-size: 14px;
}

.wa-send {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: floatIn 0.5s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes floatIn {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 20px 40px;
  z-index: 10000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  color: var(--text-dim);
  font-size: 14px;
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner .btn {
  padding: 10px 24px;
  font-size: 13px;
}

@media (max-width: 480px) {
  h1 {
    letter-spacing: -1px;
  }

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

  .wa-mockup {
    max-width: 100%;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }

  .cookie-banner {
    padding: 16px 20px;
    flex-direction: column;
    text-align: center;
  }
}
