/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #7C3AED;
  --primary-dark: #5B21B6;
  --primary-light: #A78BFA;
  --accent: #10B981;
  --accent-dark: #059669;
  --dark: #0F0A1E;
  --dark-2: #1A1033;
  --dark-3: #241848;
  --text: #E2D9F3;
  --text-muted: #9D8EC7;
  --border: rgba(124,58,237,0.2);
  --white: #ffffff;
  --whatsapp: #25D366;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 20px 60px rgba(124,58,237,0.15);
  --shadow-lg: 0 30px 80px rgba(124,58,237,0.25);
}

html { scroll-behavior: smooth; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
.gradient-text {
  background: linear-gradient(135deg, #A78BFA 0%, #60A5FA 50%, #34D399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-light);
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-label.light { color: var(--accent); background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.3); }

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}

.section-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
}

.section { padding: 100px 0; text-align: center; }
.section-alt { padding: 100px 0; background: var(--dark-2); text-align: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(15,10,30,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
}

.logo strong { color: var(--primary-light); }
.logo-icon { font-size: 24px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

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

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #6D28D9 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,58,237,0.5); }

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.btn-nav {
  background: rgba(124,58,237,0.2);
  color: var(--primary-light);
  border: 1px solid rgba(124,58,237,0.4);
  padding: 8px 20px;
  font-size: 14px;
  border-radius: 8px;
}
.btn-nav:hover { background: rgba(124,58,237,0.35); }

.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; }
.btn-xl { padding: 18px 36px; font-size: 17px; border-radius: 14px; }
.btn-full { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #1da851);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.45); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

.pulse {
  animation: pulse-anim 2.5s infinite;
}
@keyframes pulse-anim {
  0%, 100% { box-shadow: 0 4px 20px rgba(124,58,237,0.4); }
  50% { box-shadow: 0 4px 40px rgba(124,58,237,0.7), 0 0 0 8px rgba(124,58,237,0.1); }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.shape-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; right: -100px; }
.shape-2 { width: 400px; height: 400px; background: #3B82F6; bottom: -100px; left: -100px; }
.shape-3 { width: 300px; height: 300px; background: var(--accent); top: 50%; left: 40%; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1 1 0;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-light);
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.3} }

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

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

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

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

.stat { text-align: left; }
.stat strong { display: block; font-size: 28px; font-weight: 800; color: var(--white); }
.stat span { font-size: 13px; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ===== PHONE MOCKUP ===== */
.hero-mockup {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.phone-mockup {
  width: 300px;
  background: var(--dark-3);
  border-radius: 28px;
  border: 2px solid rgba(124,58,237,0.3);
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(124,58,237,0.05);
  overflow: hidden;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.phone-screen { padding: 0; }

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #1F1640;
  border-bottom: 1px solid var(--border);
}

.chat-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  flex-shrink: 0;
}

.chat-name { font-weight: 600; font-size: 14px; color: var(--white); }
.chat-status { font-size: 11px; color: var(--accent); }

.chat-messages {
  padding: 16px;
  background: var(--dark-2);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  animation: fadeInMsg 0.3s ease;
}

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

.msg.bot {
  background: var(--dark-3);
  color: var(--text);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.msg.user {
  background: linear-gradient(135deg, var(--primary), #6D28D9);
  color: var(--white);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.msg.hidden { display: none; }

/* ===== PAIN ===== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.pain-card {
  background: var(--dark-3);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.2s;
}
.pain-card:hover { transform: translateY(-4px); }
.pain-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.pain-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.pain-solution {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  padding: 20px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius);
  display: inline-block;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  margin-top: 48px;
}

.service-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: rgba(124,58,237,0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(109,40,217,0.05));
  box-shadow: 0 0 0 1px var(--primary), var(--shadow);
}

.service-badge {
  position: absolute;
  top: -12px; right: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-icon { font-size: 40px; margin-bottom: 16px; display: block; }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }

.service-features { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.service-features li { font-size: 13px; color: var(--accent); font-weight: 500; }

/* ===== SECTORES ===== */
.sectores-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

.sector-item {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
  cursor: default;
}

.sector-item:hover {
  background: rgba(124,58,237,0.2);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== COMO FUNCIONA ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: left;
  margin: 48px 0;
  position: relative;
}

.step {
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50px;
  width: 1px; height: calc(100% - 100px);
  background: var(--border);
}

.step-number {
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary) 0%, transparent 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.step-content h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.step-content p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

.step-arrow {
  display: none;
  font-size: 24px;
  color: var(--primary-light);
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.steps-cta { margin-top: 16px; }

/* ===== BENEFICIOS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.benefit-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: transform 0.2s;
}
.benefit-card:hover { transform: translateY(-4px); }

.benefit-number {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
}

.benefit-card h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.benefit-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.guarantee {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}

.guarantee-icon { font-size: 48px; flex-shrink: 0; }
.guarantee strong { display: block; font-size: 18px; color: var(--white); margin-bottom: 4px; }
.guarantee p { font-size: 14px; color: var(--text-muted); }

/* ===== TESTIMONIOS ===== */
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  margin-top: 48px;
}

.testimonio-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s;
}

.testimonio-card:hover { transform: translateY(-4px); border-color: rgba(124,58,237,0.4); }

.testimonio-card.featured-t {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(109,40,217,0.04));
  transform: scale(1.02);
}

.stars { color: #FBBF24; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }

.testimonio-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  flex-shrink: 0;
}

.testimonio-author strong { display: block; font-size: 14px; color: var(--white); }
.testimonio-author span { font-size: 12px; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: rgba(124,58,237,0.5); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
  font-family: 'Inter', sans-serif;
}

.faq-question:hover { color: var(--primary-light); }
.faq-icon { font-size: 20px; font-weight: 400; flex-shrink: 0; transition: transform 0.3s; color: var(--primary-light); }
.faq-item.open .faq-icon { transform: rotate(45deg); }

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

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

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== CTA FINAL ===== */
.cta-final { padding: 100px 0; }

.cta-box {
  background: linear-gradient(135deg, rgba(124,58,237,0.2) 0%, rgba(59,130,246,0.1) 100%);
  border: 1px solid rgba(124,58,237,0.35);
  border-radius: 28px;
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.3), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-box p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 20px;
}

.cta-note {
  font-size: 13px;
  color: var(--text-muted);
  position: relative;
}

/* ===== CONTACTO ===== */
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  text-align: left;
  margin-top: 48px;
  align-items: start;
}

.contacto-info h3 { font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.contacto-info > p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }

.contact-items { display: flex; flex-direction: column; gap: 16px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s;
}

.contact-item:hover { border-color: rgba(124,58,237,0.5); transform: translateX(4px); }

.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.whatsapp-icon { background: rgba(37,211,102,0.15); color: var(--whatsapp); }
.email-icon { background: rgba(124,58,237,0.15); }
.clock-icon { background: rgba(251,191,36,0.15); }

.contact-label { display: block; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.contact-value { display: block; font-size: 15px; font-weight: 600; color: var(--white); }

/* ===== FORM ===== */
.contacto-form {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px; letter-spacing: 0.5px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--dark-2); }
.form-group textarea { resize: vertical; }

#otroNegocioGroup {
  animation: slideDown 0.25s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 12px; }

.form-success {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--accent);
  padding: 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  margin-top: 12px;
}

.hidden { display: none !important; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p { font-size: 14px; color: var(--text-muted); margin-top: 16px; max-width: 280px; line-height: 1.7; }
.footer-links h4,
.footer-contact h4 { font-size: 13px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }

.footer-links ul,
.footer-contact ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a,
.footer-contact a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--primary-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { flex-direction: column; }
  .hero-mockup { display: none; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonios-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section, .section-alt { padding: 64px 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(15,10,30,0.98); padding: 24px; gap: 16px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-cta { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .pain-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .contacto-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  .testimonio-card.featured-t { transform: none; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .contacto-form { padding: 24px; }
}
