/* ===== VARIABLES ===== */
:root {
  --purple-900: #361943;
  --purple-800: #482159;
  --purple-700: #5c2b73;
  --purple-600: #71348d;
  --purple-500: #893fab;
  --purple-400: #a663c5;
  --purple-300: #c497d8;
  --purple-200: #ddc3e9;
  --purple-100: #f0e5f5;
  --purple-50:  #f9f4fb;
  --gray-900:  #111827;
  --gray-700:  #374151;
  --gray-600:  #4b5563;
  --gray-400:  #9ca3af;
  --gray-200:  #e5e7eb;
  --gray-100:  #f3f4f6;
  --white:     #ffffff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.10), 0 4px 16px rgba(0,0,0,.06);
  --shadow-purple: 0 8px 30px rgba(92,43,115,.20);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
.text-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--purple-700);
  background: var(--purple-50);
  border: 1px solid var(--purple-200);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.65;
}
.highlight {
  display: table;
  margin: 0 auto;
  color: var(--purple-700);
  white-space: nowrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--purple-700);
  color: var(--white);
  box-shadow: var(--shadow-purple);
}
.btn-primary:hover {
  background: var(--purple-800);
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(92,43,115,.30);
}
.btn-secondary {
  background: transparent;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
}
.btn-secondary:hover {
  border-color: var(--purple-400);
  color: var(--purple-700);
  background: var(--purple-50);
}
.btn-white {
  background: var(--white);
  color: var(--purple-700);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all .3s ease;
}
#navbar .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
#navbar.scrolled {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.nav-logo img { height: 52px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color .2s;
}
.nav-links a:hover { color: var(--purple-700); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 99px;
  transition: all .3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-700);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 12px; }
.mobile-close {
  position: absolute;
  top: 22px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: var(--gray-600);
}

/* ===== HERO ===== */
#inicio {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero-blob {
  position: absolute;
  top: -120px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--purple-100) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-blob-2 {
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--purple-50) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: center;
}
.hero-left {}
.hero-headline {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.stat-item {}
.stat-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--purple-700);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 13px;
  color: var(--gray-500, #6b7280);
  margin-top: 2px;
}
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.hero-img-wrap img {
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(92,43,115,.18));
  border-radius: var(--radius-xl);
}
.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  border: 1px solid var(--gray-100);
  animation: float 3s ease-in-out infinite;
}
.floating-card .fc-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.fc-green { background: #dcfce7; }
.fc-purple { background: var(--purple-100); }
.fc-blue { background: #dbeafe; }
.floating-card-1 { top: 10%; left: -8%; animation-delay: 0s; }
.floating-card-2 { top: 55%; right: -6%; animation-delay: 1s; }
.floating-card-3 { bottom: 5%; left: 2%; animation-delay: .5s; }

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

/* ===== SECTION: PROBLEMAS ===== */
#problemas {
  background: var(--purple-50);
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.problem-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border-left: 4px solid var(--purple-500);
  box-shadow: var(--shadow-sm);
  transition: all .25s ease;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--purple-700);
}
.problem-emoji { font-size: 32px; margin-bottom: 14px; }
.problem-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.problem-pain {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 14px;
  font-style: italic;
}
.problem-solution {
  font-size: 14px;
  color: var(--purple-700);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.problem-solution::before {
  content: '→';
  font-weight: 700;
}

/* ===== SECTION: SERVICIOS ===== */
#servicios { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all .25s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-600), var(--purple-400));
  transform: scaleX(0);
  transition: transform .3s ease;
}
.service-card:hover {
  border-color: var(--purple-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--purple-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; color: var(--purple-700); }
.service-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ===== SECTION: PROCESO ===== */
#proceso { background: var(--gray-100, #f9fafb); }
.proceso-layout {
  display: grid;
  grid-template-columns: 600px 460px;
  justify-content: center;
  gap: 8px;
  align-items: center;
  margin-top: 52px;
}
.proceso-img img {
  width: 100%;
  max-width: 600px;
  margin-top: 24px;
  filter: drop-shadow(0 16px 48px rgba(92,43,115,.15));
}
.proceso-steps { display: flex; flex-direction: column; gap: 32px; }
.step-item { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-700);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-content {}
.step-title { font-size: 17px; font-weight: 700; margin-bottom: 5px; }
.step-desc { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.connector {
  width: 2px;
  height: 28px;
  background: var(--purple-200);
  margin-left: 22px;
}

/* ===== SECTION: EQUIPO ===== */
#nosotras { background: var(--white); }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 52px;
}
.team-card {
  background: var(--purple-50);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--purple-100);
  position: relative;
  overflow: hidden;
}
.team-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: var(--purple-100);
  border-radius: 50%;
  z-index: 0;
}
.team-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--purple-300);
  box-shadow: 0 4px 20px rgba(92,43,115,.18);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.team-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}
.team-role {
  font-size: 14px;
  color: var(--purple-700);
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.team-quote {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.team-quote::before {
  content: '"';
  font-size: 56px;
  color: var(--purple-200);
  line-height: 0;
  vertical-align: -20px;
  margin-right: 4px;
  font-style: normal;
  font-weight: 800;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  background: var(--purple-700);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
}
.stat-col { border-right: 1px solid rgba(255,255,255,.15); }
.stat-col:last-child { border-right: none; }
.stat-col .sv { font-size: 36px; font-weight: 900; color: var(--white); letter-spacing: -0.02em; }
.stat-col .sl { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 4px; }

/* ===== SECTION: TESTIMONIOS ===== */
#testimonios { background: var(--purple-50); }
.testimonios-track {
  margin-top: 52px;
  position: relative;
  overflow: hidden;
}
.testimonios-inner {
  display: flex;
  gap: 24px;
  transition: transform .5s ease;
}
.testi-card {
  min-width: calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  flex-shrink: 0;
}
.testi-stars { color: #f59e0b; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--purple-700);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--gray-900); }
.testi-biz { font-size: 13px; color: var(--gray-500, #6b7280); }
.testi-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-200);
  cursor: pointer;
  border: none;
  transition: all .2s;
}
.testi-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--purple-700);
}

/* ===== SECTION: PRECIOS ===== */
#precios { background: var(--white); }
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 32px 0 52px;
}
.toggle-label { font-size: 15px; font-weight: 500; color: var(--gray-600); }
.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  background: var(--gray-200);
  border-radius: 99px;
  cursor: pointer;
  transition: background .2s;
  border: none;
}
.toggle-switch.active { background: var(--purple-700); }
.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: var(--white);
  border-radius: 50%;
  transition: transform .2s;
  box-shadow: var(--shadow-sm);
}
.toggle-switch.active::after { transform: translateX(24px); }
.discount-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--purple-700);
  background: var(--purple-100);
  padding: 2px 10px;
  border-radius: 99px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  transition: all .25s;
  position: relative;
}
.price-card.featured {
  border-color: var(--purple-500);
  background: var(--purple-50);
  box-shadow: 0 16px 60px rgba(92,43,115,.14);
  transform: scale(1.02);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple-700);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 99px;
  white-space: nowrap;
}
.price-plan-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--purple-700);
  margin-bottom: 8px;
}
.price-value {
  font-size: 36px;
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.price-note { font-size: 13px; color: var(--gray-500, #6b7280); margin-bottom: 16px; }
.price-desc { font-size: 14px; color: var(--gray-600); margin-bottom: 28px; line-height: 1.6; }
.price-divider { border: none; border-top: 1px solid var(--gray-200); margin-bottom: 24px; }
.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
}
.price-feature-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--purple-100);
  color: var(--purple-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  margin-top: 1px;
}
.price-card .btn { width: 100%; justify-content: center; }

/* ===== SECTION: CTA FINAL ===== */
#contacto {
  background: linear-gradient(135deg, var(--purple-800) 0%, var(--purple-600) 50%, var(--purple-500) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.cta-bg-circle-1 { width: 500px; height: 500px; top: -200px; right: -100px; }
.cta-bg-circle-2 { width: 300px; height: 300px; bottom: -100px; left: -50px; }
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,.80);
  margin-bottom: 44px;
  line-height: 1.65;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.cta-trust {
  font-size: 13px;
  color: rgba(255,255,255,.60);
  display: flex;
  justify-content: center;
  gap: 20px;
}
.cta-trust span::before { content: '✓ '; }

/* ===== FOOTER ===== */
footer {
  background: #180b1e;
  color: var(--white);
  padding: 72px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand {}
.footer-logo { height: 36px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 16px;
  transition: all .2s;
}
.social-btn:hover { background: var(--purple-700); color: var(--white); }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.40);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 36px rgba(37,211,102,.50);
}
.wa-float svg { width: 30px; height: 30px; color: var(--white); }

/* ===== AOS overrides ===== */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .hero-headline { font-size: 44px; }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .proceso-layout { grid-template-columns: 1fr; }
  .proceso-img { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-col { border: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .problems-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .testi-card { min-width: calc(80vw); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 34px; }
  .hero-stats { gap: 20px; }
  .section-title { font-size: 28px; }
}
