/* ============================================================
   RapiPrestamos YA — Landing premium
   ============================================================ */

/* ============ REVEAL ON SCROLL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.21,.69,.36,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="80"]  { --reveal-delay: 80ms; }
.reveal[data-delay="100"] { --reveal-delay: 100ms; }
.reveal[data-delay="160"] { --reveal-delay: 160ms; }
.reveal[data-delay="240"] { --reveal-delay: 240ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ HERO PREMIUM ============ */
.hero {
  position: relative;
  padding: 64px 0 96px;
  overflow: hidden;
  isolation: isolate;
  min-height: 720px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(70% 60% at 80% 0%, rgba(99, 102, 241, 0.12) 0%, transparent 55%),
    radial-gradient(50% 50% at 0% 100%, rgba(16, 185, 129, 0.10) 0%, transparent 55%),
    radial-gradient(40% 40% at 100% 100%, rgba(139, 92, 246, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, #FAFBFD 0%, #FFFFFF 70%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}
.hero-orb-1 {
  width: 400px; height: 400px;
  top: -100px; right: 5%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.30) 0%, transparent 70%);
  animation: heroOrbDrift 18s ease-in-out infinite;
}
.hero-orb-2 {
  width: 320px; height: 320px;
  bottom: -100px; left: 5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, transparent 70%);
  animation: heroOrbDrift 22s ease-in-out infinite reverse;
}
@keyframes heroOrbDrift {
  0%, 100% { transform: translate(0, 0); }
  33%      { transform: translate(40px, -30px); }
  66%      { transform: translate(-30px, 40px); }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero-copy { max-width: 600px; }

/* Badge "live" */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-50);
  color: var(--primary-dark);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 22px;
  border: 1px solid var(--primary-100);
  box-shadow: 0 1px 2px rgba(37, 99, 235, 0.06);
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: var(--ink);
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--primary) 0%, #6366F1 50%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 6px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.30), transparent);
  border-radius: 999px;
  filter: blur(4px);
}
.hero-lead {
  font-size: 18px;
  color: var(--ink-2);
  margin-bottom: 28px;
  line-height: 1.55;
  max-width: 540px;
}
.hero-lead strong { color: var(--ink); font-weight: 700; }

/* Quick stats inline */
.hero-quick-stats {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 32px;
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  max-width: 540px;
}
.hero-quick-stat {
  flex: 1;
  text-align: center;
  padding: 0 8px;
}
.hero-quick-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-quick-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero-quick-divider {
  width: 1px;
  align-self: stretch;
  background: var(--line);
  margin: 4px 0;
}

.hero-actions {
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
  margin-bottom: 32px;
}
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-xl {
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 14px;
  letter-spacing: -0.005em;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.30);
}
.btn-xl:hover {
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.40);
}
.btn-link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.2s, color 0.15s;
}
.btn-link-arrow:hover {
  color: var(--primary-dark);
  gap: 10px;
}
.btn-link-arrow svg { transition: transform 0.2s; }
.btn-link-arrow:hover svg { transform: translateX(3px); }

/* Live activity (hero) */
.hero-live {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  max-width: 480px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}
.hero-live-avatars {
  display: flex;
  flex-shrink: 0;
}
.hero-live-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.005em;
  border: 2px solid white;
}
.hero-live-avatar + .hero-live-avatar { margin-left: -10px; }
.hero-live-text { flex: 1; min-width: 0; }
.hero-live-title {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.hero-live-title #hero-live-msg { transition: opacity 0.25s ease; }
.hero-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: dotPulse 2s infinite;
}
.hero-live-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.hero-live-meta strong { color: var(--ink); font-weight: 800; }

/* Hero visual: simulator + floating cards */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 540px;
}
.hero-float {
  position: absolute;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
  z-index: 5;
  animation: floatBob 6s ease-in-out infinite;
}
.hero-float-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.30);
}
.hero-float-notif {
  top: 24px;
  left: -28px;
  animation-delay: 0s;
}
.hero-float-score {
  bottom: 80px;
  right: -32px;
  padding: 14px 18px;
  animation-delay: -3s;
}
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hero-visual .simulator { width: 100%; max-width: 460px; }

.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-2);
  font-weight: 500;
}
.hero-trust span {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-trust svg {
  color: var(--accent);
  flex-shrink: 0;
  background: var(--accent-50);
  border-radius: 50%;
  padding: 4px;
  width: 22px; height: 22px;
}

/* ============ SIMULATOR ============ */
.simulator {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.simulator::before {
  content: '';
  position: absolute; inset: -1px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(99, 102, 241, 0.18), transparent 60%);
  border-radius: var(--radius-xl);
  z-index: -1;
  filter: blur(18px);
  opacity: 0.6;
}
.simulator-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 28px;
}
.simulator-title {
  font-size: 18px; font-weight: 800; letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.simulator-sub {
  font-size: 13px; color: var(--muted);
}
.simulator-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-50);
  color: var(--accent-700);
  font-size: 11px; font-weight: 700;
  padding: 5px 11px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); animation: dotPulse 2s infinite;
}

.field { margin-bottom: 22px; }
.field-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px;
  font-size: 13px;
}
.field-label { color: var(--muted); font-weight: 500; }
.field-value {
  color: var(--ink);
  font-weight: 800; font-size: 17px;
  font-variant-numeric: tabular-nums;
}
input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  background: var(--line); border-radius: 999px; outline: none;
  cursor: pointer;
  transition: background 0.1s;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: white;
  border: 3px solid var(--primary);
  cursor: grab;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  transition: transform 0.15s, box-shadow 0.15s;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"]::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.05); }
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: white;
  border: 3px solid var(--primary);
  cursor: grab;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}
.range-marks {
  display: flex; justify-content: space-between;
  margin-top: 6px;
  font-size: 11px; color: var(--muted);
  font-weight: 500;
}

.result-box {
  background: linear-gradient(135deg, var(--primary-50) 0%, #E0E7FF 100%);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin: 26px 0 14px;
  position: relative;
  overflow: hidden;
}
.result-box::after {
  content: '';
  position: absolute; top: -40%; right: -20%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  pointer-events: none;
}
.result-label {
  font-size: 11px;
  color: var(--primary-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.result-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.result-meta {
  display: flex; gap: 6px; align-items: center; flex-wrap: wrap;
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-2);
}
.result-meta strong { color: var(--ink); font-weight: 700; }
.dot-sep { color: var(--muted); }

.result-breakdown {
  margin-bottom: 16px;
  padding: 12px 14px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  font-size: 13px;
}
.breakdown-row {
  display: flex; justify-content: space-between;
  padding: 4px 0;
  color: var(--ink-2);
}
.breakdown-row strong { color: var(--ink); font-variant-numeric: tabular-nums; }

.simulator-cta { padding: 14px 24px; font-size: 15px; }
.simulator-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

/* ============ TRUST STRIP (premium con icons) ============ */
.trust-strip {
  background: linear-gradient(180deg, var(--bg-soft) 0%, white 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 44px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-stat {
  display: flex; align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.2s, box-shadow 0.25s, border-color 0.2s;
}
.trust-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  border-color: var(--primary-100);
}
.trust-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-value {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}
.trust-unit {
  font-size: 0.55em;
  color: var(--muted);
  font-weight: 700;
  margin-left: 1px;
}
.trust-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 600;
}
.stars-inline {
  color: #F59E0B;
  font-size: 12px;
  letter-spacing: 1px;
  vertical-align: middle;
}

/* ============ SECTIONS ============ */
.section { padding: 96px 0; }
.section-soft { background: var(--bg-soft); }
.section-head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 700px;
  margin-left: auto; margin-right: auto;
}
.section-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 12px; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  padding: 4px 12px;
  background: var(--primary-50);
  border-radius: 999px;
  border: 1px solid var(--primary-100);
}
.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--ink);
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ============ BENEFITS ============ */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), #6366F1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-100);
}
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.icon-blue-bg   { background: var(--primary-50);   color: var(--primary); }
.icon-green-bg  { background: var(--accent-50);    color: var(--accent-700); }
.icon-amber-bg  { background: #FEF3C7;             color: #B45309; }
.icon-purple-bg { background: #EDE9FE;             color: #6D28D9; }
.benefit-title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.benefit-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ============ STEPS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-number {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #6366F1 100%);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}
.step-icon-wrap {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--primary-50);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.step-title-l {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ============ COMPARE ============ */
.compare-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.compare-col {
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--line);
  background: white;
}
.compare-us {
  background: linear-gradient(180deg, white 0%, var(--primary-50) 100%);
  border-color: var(--primary-100);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.08);
  position: relative;
}
.compare-us::before {
  content: 'Recomendado';
  position: absolute; top: -12px; right: 24px;
  background: linear-gradient(135deg, var(--primary), #6366F1);
  color: white;
  padding: 4px 12px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.compare-them {
  background: white;
  opacity: 0.92;
}
.compare-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.compare-head .logo-mark { width: 36px; height: 36px; border-radius: 10px; }
.bank-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--bg-soft); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.compare-col ul { list-style: none; }
.compare-col li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.45;
}
.compare-col li svg { flex-shrink: 0; margin-top: 2px; }
.compare-us li svg {
  color: var(--accent);
  background: var(--accent-50);
  border-radius: 50%;
  padding: 3px;
  width: 22px; height: 22px;
}
.compare-them li svg {
  color: var(--danger);
  background: var(--danger-50);
  border-radius: 50%;
  padding: 3px;
  width: 22px; height: 22px;
}
.compare-col li strong { color: var(--ink); }

/* ============ TESTIMONIALS ============ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial::before {
  content: '"';
  position: absolute; top: 12px; right: 24px;
  font-size: 64px; line-height: 1;
  font-family: Georgia, serif;
  color: var(--primary-100);
  font-weight: 700;
}
.stars {
  color: #F59E0B;
  margin-bottom: 14px;
  letter-spacing: 2px;
  font-size: 16px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--ink-2);
  margin-bottom: 22px;
  line-height: 1.6;
  position: relative;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-50), #E0E7FF);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  flex-shrink: 0;
}
.author-name {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.005em;
}
.author-role {
  font-size: 13px;
  color: var(--muted);
}

/* ============ FAQ ============ */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] {
  border-color: var(--primary-100);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.06);
}
.faq-question {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--primary); }
.faq-icon {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.3s;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px 22px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.65;
}
.faq-answer strong { color: var(--ink); font-weight: 700; }

/* ============ CTA FINAL ============ */
.cta-final {
  padding: 64px 0 96px;
  background: var(--bg-soft);
}
.cta-card {
  background: linear-gradient(135deg, #1E293B 0%, var(--bg-dark) 50%, #1E1B4B 100%);
  border-radius: var(--radius-xl);
  padding: 56px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.cta-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 80% at 100% 0%, rgba(99, 102, 241, 0.30) 0%, transparent 60%),
    radial-gradient(60% 60% at 0% 100%, rgba(16, 185, 129, 0.16) 0%, transparent 60%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; max-width: 540px; }
.cta-content h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.cta-content p {
  font-size: 17px;
  color: rgba(226, 232, 240, 0.85);
  line-height: 1.5;
}
.cta-actions {
  position: relative; z-index: 1;
  display: flex; gap: 12px; flex-wrap: wrap;
  flex-shrink: 0;
}
.cta-actions .btn-primary {
  background: white;
  color: var(--primary);
}
.cta-actions .btn-primary:hover {
  background: white;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.2);
}
.btn-ghost-light {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-size: 16px; font-weight: 600;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  transition: all 0.2s;
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ============ HERO BADGES (multi) ============ */
.hero-badges {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 22px;
}
.badge.badge-gold {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border-color: #FCD34D;
  color: #92400E;
}
.badge.badge-gold svg {
  color: #B45309;
}

.breakdown-savings {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed var(--line);
  font-weight: 600;
}
.breakdown-savings small { font-weight: 500; opacity: 0.7; }

/* ============ PRESS STRIP ============ */
.press-strip {
  background: white;
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.press-label {
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 18px;
}
.press-logos {
  display: flex; justify-content: center; align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
.press-logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  opacity: 0.55;
  transition: opacity 0.2s;
  white-space: nowrap;
  user-select: none;
}
.press-logo small {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-left: 4px;
  vertical-align: middle;
}
.press-logo:hover { opacity: 1; }
@media (max-width: 720px) {
  .press-logos { gap: 28px; }
  .press-logo { font-size: 15px; }
}

/* ============ PRODUCTOS ============ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-100);
}
.product-card-featured {
  background: linear-gradient(180deg, white 0%, var(--primary-50) 100%);
  border-color: var(--primary-100);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.10);
}
.product-tag {
  position: absolute;
  top: -10px;
  right: 24px;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--primary), #6366F1);
  color: white;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.30);
}
.product-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.product-title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  color: var(--ink);
}
.product-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 18px;
}
.product-features {
  list-style: none; padding: 0; margin: 0 0 22px;
  flex: 1;
}
.product-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  color: var(--ink-2);
}
.product-features svg {
  flex-shrink: 0;
  color: var(--accent);
  background: var(--accent-50);
  border-radius: 50%;
  padding: 3px;
  width: 20px; height: 20px;
}
.product-features strong { color: var(--ink); font-weight: 700; }
.product-cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  background: white;
  color: var(--primary);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.product-cta:hover {
  border-color: var(--primary);
  background: var(--primary-50);
}
.product-cta-primary {
  background: linear-gradient(135deg, var(--primary), #4F46E5);
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}
.product-cta-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
}

/* ============ TECH SECTION (DARK) ============ */
.section-dark {
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(99, 102, 241, 0.30) 0%, transparent 60%),
    radial-gradient(50% 45% at 0% 100%, rgba(16, 185, 129, 0.18) 0%, transparent 60%),
    linear-gradient(135deg, #0F172A 0%, #1E1B4B 50%, #0B1A3A 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.section-dark::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 30%, transparent 80%);
  pointer-events: none;
}
.section-dark > .container { position: relative; z-index: 1; }

.tech-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.tech-copy { color: white; }
.tech-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.tech-title .accent {
  background: linear-gradient(135deg, #A5B4FC 0%, #6EE7B7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tech-desc {
  font-size: 16px;
  color: rgba(226, 232, 240, 0.78);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 540px;
}
.tech-desc strong { color: white; font-weight: 700; }

.tech-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.tech-feature {
  display: flex; gap: 12px; align-items: flex-start;
}
.tech-feature-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(110, 231, 183, 0.20), rgba(99, 102, 241, 0.20));
  border: 1px solid rgba(165, 180, 252, 0.20);
  color: #6EE7B7;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tech-feature-title {
  font-size: 14px;
  font-weight: 800;
  color: white;
  margin-bottom: 2px;
  letter-spacing: -0.005em;
}
.tech-feature-desc {
  font-size: 13px;
  color: rgba(226, 232, 240, 0.65);
  line-height: 1.45;
}

/* Tech mockup card */
.tech-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.tech-card::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(110, 231, 183, 0.25) 0%, transparent 70%);
}
.tech-card-header {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(110, 231, 183, 0.25);
  color: #6EE7B7;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.tech-mock { position: relative; z-index: 1; }
.tech-mock-row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}
.tech-mock-row > :first-child { color: rgba(226, 232, 240, 0.65); }
.tech-mock-row .tag-ok {
  color: #6EE7B7;
  font-weight: 800;
}
.tech-mock-row .mono {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: white;
  letter-spacing: 0.04em;
}

.tech-mock-bar { padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.tech-mock-bar-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(226, 232, 240, 0.65);
  margin-bottom: 8px;
}
.tech-mock-segments {
  display: flex; height: 8px;
  border-radius: 999px; overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 10px;
}
.tech-mock-legend {
  display: flex; gap: 14px;
  font-size: 11px;
  color: rgba(226, 232, 240, 0.85);
  flex-wrap: wrap;
}
.tech-mock-legend .dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: 4px;
}

.tech-mock-score {
  display: flex; gap: 24px; align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.score-label, .tier-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(226, 232, 240, 0.65);
}
.score-value {
  font-size: 36px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: 4px;
}
.tech-mock-tier {
  margin-left: auto;
  text-align: right;
}
.tier-badge {
  font-size: 22px;
  font-weight: 800;
  color: #6EE7B7;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.tech-mock-result {
  display: flex; align-items: center; gap: 10px;
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(110, 231, 183, 0.30);
  border-radius: var(--radius);
  color: #6EE7B7;
  font-size: 14px;
  font-weight: 700;
}
.tech-mock-result strong { color: white; font-size: 16px; }

/* ============ EQUIPO ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}
.team-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 26px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.10);
}
.team-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 2px;
}
.team-role {
  font-size: 13px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}
.team-bio {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* Awards strip */
.awards-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, var(--bg-soft) 0%, white 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
}
.award {
  display: flex; align-items: center; gap: 12px;
}
.award-icon {
  font-size: 28px;
  flex-shrink: 0;
}
.award-text strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.award-text span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* Section title color override for dark sections */
.section-dark .section-eyebrow {
  background: rgba(99, 102, 241, 0.18);
  color: #A5B4FC;
  border-color: rgba(165, 180, 252, 0.25);
}
.section-dark .section-title { color: white; }
.section-dark .section-sub { color: rgba(226, 232, 240, 0.7); }

/* ============ APP MOBILE SECTION ============ */
.app-section {
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 60%),
    radial-gradient(50% 45% at 0% 100%, rgba(16, 185, 129, 0.06) 0%, transparent 60%),
    var(--bg-soft);
}
.app-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.app-features {
  list-style: none;
  padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.app-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
}
.app-features svg {
  flex-shrink: 0;
  color: var(--accent);
  background: var(--accent-50);
  border-radius: 50%;
  padding: 4px;
  width: 24px; height: 24px;
  border: 1px solid #A7F3D0;
}
.app-features strong { color: var(--ink); font-weight: 700; }

.app-stores {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px;
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.15s, background 0.2s;
}
.store-btn:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
}
.store-btn small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  opacity: 0.7;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.store-btn strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 1px;
}

/* Phone mockup */
.app-mockup {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.phone-glow {
  position: absolute;
  width: 320px; height: 580px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(99, 102, 241, 0.30) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
.phone {
  position: relative;
  width: 280px;
  height: 580px;
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 30px 60px rgba(15, 23, 42, 0.30),
    0 0 0 8px rgba(0, 0, 0, 0.10),
    inset 0 0 0 2px rgba(255, 255, 255, 0.05);
  z-index: 1;
}
.phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 28px;
  background: #0F172A;
  border-radius: 0 0 18px 18px;
  z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #FAFBFC 0%, white 100%);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
}
.phone-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 26px 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.phone-icons { font-size: 11px; letter-spacing: 1px; }
.phone-app {
  flex: 1;
  padding: 14px 16px 0;
  overflow: hidden;
}
.phone-greet {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.phone-hello {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.phone-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
}
.phone-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #6366F1);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.30);
}

.phone-balance {
  background: linear-gradient(135deg, var(--primary) 0%, #4F46E5 100%);
  color: white;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.phone-balance::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
}
.phone-balance-label {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}
.phone-balance-value {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.phone-balance-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
}
.phone-progress {
  margin-top: 10px;
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  overflow: hidden;
}
.phone-progress > div {
  height: 100%;
  background: linear-gradient(90deg, #6EE7B7, #34D399);
  border-radius: 999px;
}

.phone-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.phone-action {
  display: flex; flex-direction: column; align-items: center;
  font-size: 10px;
  color: var(--ink-2);
  font-weight: 600;
}
.phone-action-icon {
  width: 38px; height: 38px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 4px;
}

.phone-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  margin-bottom: 14px;
}
.phone-card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.phone-tag-ok {
  background: var(--accent-50);
  color: var(--accent-700);
  font-size: 9px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.phone-card-row {
  display: flex; justify-content: space-between; align-items: center;
}
.phone-pay-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.phone-pay-btn:hover { background: var(--primary-dark); }

.phone-tabs {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px;
  display: flex; justify-content: space-around;
  font-size: 18px;
  box-shadow: 0 -4px 12px rgba(15, 23, 42, 0.04);
}
.phone-tabs span {
  opacity: 0.4;
  transition: opacity 0.2s;
}
.phone-tabs span.active {
  opacity: 1;
  position: relative;
}
.phone-tabs span.active::after {
  content: '';
  position: absolute;
  bottom: -10px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--primary);
  border-radius: 50%;
}

@media (max-width: 980px) {
  .app-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .app-features li { text-align: left; }
  .app-features { max-width: 480px; margin-left: auto; margin-right: auto; }
  .app-stores { justify-content: center; }
}

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 45;
  display: none;
  align-items: center; justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background: var(--primary);
  color: white;
  font-weight: 700; font-size: 15px;
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero { padding: 40px 0 56px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 100%; }
  .hero-visual { min-height: auto; }
  .hero-float-notif { left: 0; top: -16px; }
  .hero-float-score { right: 0; bottom: -16px; }
  .hero-quick-stats { padding: 14px; }
  .hero-quick-value { font-size: 18px; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .compare-table { grid-template-columns: 1fr; max-width: 560px; }
  .products-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .tech-grid { grid-template-columns: 1fr; gap: 40px; }
  .tech-features { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-strip { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 48px; }
  .cta-card { flex-direction: column; text-align: center; padding: 40px 32px; }
  .cta-content { max-width: 100%; }
  .cta-actions { width: 100%; justify-content: center; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .trust-stat + .trust-stat::before { display: none; }
}
@media (max-width: 640px) {
  .benefits { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions > * { width: 100%; }
  .simulator { padding: 24px; }
  .result-value { font-size: 30px; }
  .cta-card { padding: 32px 24px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions > * { width: 100%; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 64px; }
}
