/* Landing Page Styles - High Conversion */

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.8rem 5%;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.logo svg {
  height: 30px;
  width: 30px;
  margin-right: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ========================================
   GLOBAL SVG FIX - Prevent SVGs from exploding
   ======================================== */
section svg {
  max-width: 100%;
  height: auto;
}

.step-icon svg,
.feature-icon svg,
.benefit-icon svg {
  width: 26px !important;
  height: 26px !important;
  flex-shrink: 0;
}

.comparison-header svg {
  width: 24px !important;
  height: 24px !important;
  flex-shrink: 0;
}

.features li svg {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0;
}

.trust-item svg {
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0;
}

.faq-question svg {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0;
}

.step-connector svg {
  width: 24px !important;
  height: 24px !important;
}

.hero-buttons .btn svg {
  width: 20px !important;
  height: 20px !important;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 5%;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 999px;
  color: var(--success);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
  animation: pulse-border 3s ease-in-out infinite;
}

@keyframes pulse-border {
  0%, 100% { border-color: rgba(16, 185, 129, 0.3); box-shadow: none; }
  50% { border-color: rgba(16, 185, 129, 0.6); box-shadow: 0 0 15px rgba(16, 185, 129, 0.15); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.12;
  margin-bottom: 1.5rem;
  max-width: 800px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero p strong { color: var(--text-primary); }

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-xl {
  font-size: 1.05rem !important;
  padding: 0.95rem 2rem !important;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* ========================================
   SOCIAL PROOF BAR
   ======================================== */
.social-proof-bar {
  padding: 2.5rem 5%;
  background: rgba(0, 212, 255, 0.03);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.proof-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

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

.proof-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proof-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 4px;
  display: block;
}

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

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 6rem 5%;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   STEPS (Como Funciona)
   ======================================== */
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  flex: 1 1 240px;
  max-width: 300px;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-4px);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: white;
  line-height: 1;
}

.step-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--neon-blue);
  overflow: hidden;
}

.step-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.step-connector {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* ========================================
   FEATURES GRID
   ======================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  text-align: left;
  padding: 2rem !important;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.2);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--neon-blue);
  overflow: hidden;
  flex-shrink: 0;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ========================================
   COMPARISON
   ======================================== */
.comparison-grid {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.comparison-header {
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
}

.comparison-header.bad {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
  border-bottom: 1px solid rgba(239, 68, 68, 0.2);
}

.comparison-header.good {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.comparison-list {
  list-style: none;
  padding: 1.5rem;
  margin: 0;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.comparison-list li:last-child { margin-bottom: 0; }

.x-mark {
  color: var(--danger);
  font-weight: 700;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.check-mark {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.comparison-vs {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.comparison-good {
  border-color: rgba(16, 185, 129, 0.3) !important;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.08);
}

/* ========================================
   PRICING
   ======================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  padding: 2.5rem 2rem !important;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  transform: scale(1.04);
  border-color: var(--neon-purple) !important;
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.15);
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.08) 0%, rgba(10, 10, 15, 0) 100%);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--neon-purple);
  color: white;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.plan-icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.price {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0.8rem 0;
  letter-spacing: -0.02em;
}

.price span {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.price-savings {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.features {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  text-align: left;
  flex: 1;
}

.features li {
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
}

.features li svg { color: var(--success); }

.features li.feature-disabled { opacity: 0.4; }
.features li.feature-disabled svg { color: var(--text-secondary) !important; }

.plan-guarantee {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 0.8rem;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  text-align: left;
  padding: 2rem !important;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.author-avatar {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px;
  max-width: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.testimonial-author span {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

/* ========================================
   FAQ
   ======================================== */
.faq-container {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  padding: 0 !important;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.3rem 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  transition: all 0.3s ease;
}

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

.faq-question svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.5rem 1.3rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

/* ========================================
   CTA FINAL
   ======================================== */
.cta-final {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* ========================================
   MODAL (keep existing)
   ======================================== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  width: 100%;
  max-width: 400px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 15px; right: 15px;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1.5rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .features-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .pricing-card.popular { transform: scale(1); }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .hero-buttons { flex-direction: column; width: 100%; max-width: 320px; }
  .hero-trust { flex-direction: column; gap: 0.5rem; }
  .section-title { font-size: 1.8rem; }
  .steps-grid { flex-direction: column; }
  .step-connector { transform: rotate(90deg); }
  .comparison-grid { flex-direction: column; align-items: center; }
  .comparison-vs { margin: 0; }
  .proof-stats { gap: 1.5rem; }
  .proof-divider { display: none; }
}
