/* fastecom Landing - Diseño moderno azul-púrpura */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --blue-dark: #2563eb;
  --purple-dark: #7c3aed;
  --gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  --gradient-hover: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --bg-dark: #0f172a;
  --bg-dark-gradient: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --radius: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  /* Mantener acento fastecom */
  --fastecom-glow: rgba(82, 113, 255, 0.5);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ========== Navbar ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar-brand a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.navbar .logo-img {
  height: 88px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px var(--fastecom-glow));
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.navbar-links a:hover {
  color: var(--blue);
}

.navbar-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
}

.btn-ghost {
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--blue);
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
  background: var(--gradient-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

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

.btn-secondary:hover {
  background: var(--bg-light);
  border-color: var(--text-muted);
}

/* ========== Hero ========== */
.hero {
  padding: 10rem 0 6rem;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse at 100% 100%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.08);
  color: var(--blue);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero h1 .gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-ctas .btn {
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-stats-avatars {
  display: flex;
}

.hero-stats-avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: -8px;
  border: 2px solid white;
}

.hero-stats-avatars span:first-child { margin-left: 0; }

.hero-stats-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.hero-stats-text .stars {
  color: #fbbf24;
  letter-spacing: 0.1em;
}

.hero-preview-wrap {
  display: flex;
  justify-content: center;
  align-items: start;
}

/* Hero - App preview card */
.hero-preview {
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.hero-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}

.hero-preview-dots {
  display: flex;
  gap: 6px;
}

.hero-preview-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.hero-preview-dots .d1 { background: #ef4444; }
.hero-preview-dots .d2 { background: #f59e0b; }
.hero-preview-dots .d3 { background: #22c55e; }

.hero-preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: #dcfce7;
  color: #166534;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-preview-body {
  padding: 1.5rem;
}

.hero-preview-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.hero-preview-input-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-preview-input-row input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: inherit;
}

.hero-preview-input-row input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.hero-preview-input-row .btn {
  flex-shrink: 0;
}

.hero-preview-detected {
  background: rgba(139, 92, 246, 0.08);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-preview-detected svg {
  width: 24px;
  height: 24px;
  color: var(--purple);
  flex-shrink: 0;
}

.hero-preview-detected strong {
  color: var(--text);
  font-size: 0.9375rem;
}

.hero-preview-detected span {
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.hero-preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.hero-preview-metric {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem;
  text-align: center;
}

.hero-preview-metric .num {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--purple);
}

.hero-preview-metric .label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-preview-metric.green .num { color: #16a34a; }

/* ========== Integraciones ========== */
.integrations {
  padding: 4rem 0;
  background: var(--bg-white);
}

.integrations h2 {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.integration-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  font-weight: 600;
  color: var(--text);
  font-size: 0.9375rem;
}

.integration-badge .icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
}

.integration-badge.shopify .icon { background: #96f550; color: #004c3f; }
.integration-badge.amazon .icon { background: #f59e0b; }
.integration-badge.temu .icon { background: #ea580c; }
.integration-badge.aliexpress .icon { background: #dc2626; }
.integration-badge.etsy .icon { background: #f59e0b; color: #78350f; }

/* ========== Cómo funciona ========== */
.how-it-works {
  padding: 5rem 0;
  background: var(--bg-light);
}

.section-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(59, 130, 246, 0.12);
  color: var(--blue);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 560px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  background: white;
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-card .step-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
}

.step-card .step-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.step-card .step-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.step-card .step-icon.blue { background: var(--blue); }
.step-card .step-icon.purple { background: var(--purple); }
.step-card .step-icon.green { background: #16a34a; }

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== Stats (fondo oscuro) ========== */
.stats-dark {
  padding: 5rem 0;
  background: var(--bg-dark-gradient);
  color: white;
}

.stats-dark .section-title {
  color: white;
  text-align: center;
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, #93c5fd 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.stat-item .label {
  font-size: 0.9375rem;
  color: var(--text-light);
}

/* ========== Características (8 cards) ========== */
.features {
  padding: 5rem 0;
  background: var(--bg-white);
}

.features .section-badge {
  display: block;
  text-align: center;
}

.features .section-title,
.features .section-desc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: white;
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card .icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.feature-card .icon.blue { background: var(--blue); }
.feature-card .icon.purple { background: var(--purple); }
.feature-card .icon.green { background: #16a34a; }
.feature-card .icon.orange { background: #ea580c; }
.feature-card .icon.cyan { background: #0891b2; }
.feature-card .icon.red { background: #dc2626; }
.feature-card .icon.yellow { background: #ca8a04; }
.feature-card .icon.lavender { background: #a78bfa; }

.feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========== Testimonios ========== */
.testimonials {
  padding: 5rem 0;
  background: var(--bg-light);
}

.testimonials .section-badge {
  background: #dcfce7;
  color: #166534;
  display: block;
  text-align: center;
}

.testimonials .section-title,
.testimonials .section-desc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.testimonial-card .stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial-card .quote {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-card .author-name {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9375rem;
}

.testimonial-card .author-role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ========== Precios ========== */
.pricing-back-link {
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.pricing-back-link a {
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
}

.pricing-back-link a:hover {
  color: #3b82f6;
}

.main-content.pricing-page .pricing-section {
  background: #f8fafc;
}

.pricing-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

.pricing-section .section-badge {
  display: block;
  text-align: center;
}

.pricing-section .section-title,
.pricing-section .section-desc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-2xl);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}

.pricing-card.featured {
  background: var(--gradient);
  border: none;
  color: white;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.pricing-card.featured .pricing-desc,
.pricing-card.featured .pricing-features li,
.pricing-card.featured .price-label {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-card .badge-popular {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: #fbbf24;
  color: #78350f;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.pricing-card .badge-popular.badge-popular-center {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.pricing-card .badge-coming {
  display: inline-block;
  background: rgba(0, 0, 0, 0.1);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}

.pricing-card.featured .badge-coming {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pricing-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-price {
  margin-bottom: 1.5rem;
}

.pricing-price .amount {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pricing-price .period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-card.featured .pricing-price .period {
  color: rgba(255, 255, 255, 0.85);
}

.pricing-features {
  list-style: none;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.pricing-features li::before {
  content: '✓';
  color: #16a34a;
  font-weight: 700;
}

.pricing-card.featured .pricing-features li::before {
  color: white;
}

.pricing-card .btn {
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.875rem;
}

.pricing-card .btn-disabled {
  background: var(--bg-light);
  color: var(--text-muted);
  cursor: not-allowed;
  box-shadow: none;
}

.pricing-card .btn-disabled:hover {
  transform: none;
}

.pricing-card.featured .btn-primary {
  background: white;
  color: var(--purple);
}

.pricing-card.featured .btn-primary:hover {
  background: rgba(255, 255, 255, 0.95);
}

/* ========== FAQ ========== */
.faq-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.faq-section .section-badge {
  background: #ffedd5;
  color: #c2410c;
  display: block;
  text-align: center;
}

.faq-section .section-title,
.faq-section .section-desc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  max-width: 720px;
  margin: 3rem auto 0;
}

.faq-item {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  color: var(--text);
  font-size: 0.9375rem;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question .icon {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-muted);
}

.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== CTA final ========== */
.cta-final {
  padding: 5rem 2rem;
  background: var(--gradient);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

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

.cta-final .cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-final h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
}

.cta-final-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cta-final .btn-white {
  background: white;
  color: var(--purple);
}

.cta-final .btn-white:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

.cta-final .btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.cta-final .btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
}

.cta-final .fine-print {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ========== Footer ========== */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-img {
  height: 72px;
  width: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 12px var(--fastecom-glow));
}

.footer-brand p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
  background: var(--blue);
  color: white;
}

.footer h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.footer ul {
  list-style: none;
}

.footer ul a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9375rem;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer ul a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--text-light);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-bottom-links a:hover {
  color: white;
}

/* ========== Animaciones (fade in on scroll) ========== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-preview {
    max-width: 480px;
    margin: 0 auto;
  }

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

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

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

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

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

@media (max-width: 768px) {
  .navbar-inner {
    padding: 0 1rem;
    gap: 1rem;
  }

  .navbar .logo-img {
    height: 64px;
  }

  .navbar-links {
    display: none;
  }

  .navbar-buttons {
    gap: 0.5rem;
  }

  .navbar-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero {
    padding: 6.5rem 0 3rem;
  }

  .hero h1 {
    font-size: 1.875rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 1.5rem;
  }

  .hero-ctas .btn {
    justify-content: center;
    padding: 0.875rem 1rem;
    min-height: 44px;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .hero-preview {
    max-width: 100%;
  }

  .hero-preview-body {
    padding: 1.25rem;
  }

  .hero-preview-input-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-preview-input-row .btn {
    width: 100%;
  }

  .hero-preview-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .hero-preview-metric .num {
    font-size: 1rem;
  }

  .integrations {
    padding: 3rem 0;
  }

  .integrations h2 {
    font-size: 0.8125rem;
    margin-bottom: 1.5rem;
  }

  .integrations-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .integration-badge {
    justify-content: center;
  }

  .how-it-works,
  .stats-dark,
  .features,
  .testimonials,
  .pricing-section,
  .faq-section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-desc {
    font-size: 0.9375rem;
    margin-bottom: 2rem;
  }

  .steps-grid {
    gap: 1.25rem;
  }

  .step-card {
    padding: 1.5rem;
  }

  .step-card .step-num {
    font-size: 2.25rem;
  }

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

  .stat-item .number {
    font-size: 1.75rem;
  }

  .stat-item .label {
    font-size: 0.8125rem;
  }

  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
    gap: 1rem;
  }

  .feature-card,
  .testimonial-card {
    padding: 1.25rem;
  }

  .pricing-grid {
    max-width: 100%;
    margin-top: 2rem;
    gap: 1rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-price .amount {
    font-size: 2rem;
  }

  .pricing-card .btn,
  .pricing-card .btn-disabled {
    min-height: 44px;
  }

  .faq-list {
    margin-top: 2rem;
  }

  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
  }

  .faq-answer-inner {
    padding: 0 1.25rem 1rem;
    font-size: 0.875rem;
  }

  .cta-final {
    padding: 3rem 1rem;
  }

  .cta-final h2 {
    font-size: 1.5rem;
  }

  .cta-final p {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .cta-final-buttons {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 1.25rem;
  }

  .cta-final-buttons .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-brand .logo-img {
    height: 56px;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.875rem;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding-top: 1.5rem;
  }

  .footer-bottom p,
  .footer-bottom-links a {
    font-size: 0.8125rem;
  }
}

/* Móvil muy pequeño */
@media (max-width: 380px) {
  .navbar .logo-img {
    height: 52px;
  }

  .hero h1 {
    font-size: 1.625rem;
  }

  .stats-grid {
    gap: 1rem;
  }

  .stat-item .number {
    font-size: 1.5rem;
  }
}
