/* ===========================================================
   CREDIFLEX — Landing pública
   =========================================================== */
:root {
  --brand: #5B2EBE;
  --brand-2: #7C3AED;
  --brand-3: #A78BFA;
  --brand-dark: #3B1A8C;
  --dark: #0f172a;
  --soft: #475569;
  --muted: #94a3b8;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f8f7fb;
  --bg-card: #ffffff;
  --green: #10b981;
  --red: #ef4444;
  --yellow: #f59e0b;
  --shadow-sm: 0 1px 2px rgba(91,46,190,0.06);
  --shadow-md: 0 4px 14px rgba(91,46,190,0.10);
  --shadow-lg: 0 24px 60px -10px rgba(91,46,190,0.20);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--dark); background: var(--bg);
  line-height: 1.55; font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', 'Inter', sans-serif; line-height: 1.15; margin: 0 0 12px; color: var(--dark); }
h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 700; letter-spacing: -1px; }
h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 700; letter-spacing: -0.5px; }
h3 { font-size: 18px; font-weight: 600; }
p { margin: 0 0 12px; color: var(--soft); }

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

/* ============ TOPBAR ============ */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 50px; height: 50px; border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(91,46,190,0.25);
  background: #fff;
}
.brand-logo-footer { background: rgba(255,255,255,0.95); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: 'Space Grotesk',sans-serif; font-weight: 700; font-size: 20px; color: var(--dark); letter-spacing: -0.3px; }
.brand-tag { font-size: 11.5px; color: var(--brand); font-weight: 600; letter-spacing: 0.2px; }
.nav-main { display: flex; gap: 28px; }
.nav-main a {
  font-weight: 500; font-size: 14px; color: var(--soft);
  position: relative; padding: 6px 0;
}
.nav-main a:hover { color: var(--brand); }
.nav-main a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--brand); transition: width 0.25s ease;
}
.nav-main a:hover::after { width: 100%; }
.nav-cta { gap: 8px; }

/* ============ BOTONES ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-family: inherit; font-weight: 600; font-size: 14px;
  padding: 11px 22px; border-radius: 999px; border: 1px solid transparent;
  transition: all 0.2s ease; text-decoration: none;
}
.btn i { width: 16px; height: 16px; }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; box-shadow: 0 8px 24px -8px rgba(91,46,190,0.5);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 30px -8px rgba(91,46,190,0.55); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--dark); }
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--brand); }
.btn-wa {
  background: #25d366; color: #fff;
  box-shadow: 0 8px 24px -8px rgba(37,211,102,0.55);
}
.btn-wa:hover { background: #1eb456; transform: translateY(-1px); }
.btn-lg { padding: 15px 30px; font-size: 15px; }

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden;
  padding: 80px 0 120px;
  background:
    radial-gradient(ellipse 60% 50% at 85% 30%, rgba(124,58,237,0.10), transparent 60%),
    radial-gradient(ellipse 70% 60% at 10% 80%, rgba(167,139,250,0.10), transparent 60%),
    linear-gradient(180deg, #fff, #faf9fc 70%, var(--bg-soft));
}
.hero::before {
  content:''; position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(circle, rgba(91,46,190,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--brand);
  padding: 8px 16px; border-radius: 999px; font-size: 12.5px; font-weight: 600;
  margin-bottom: 22px; border: 1px solid rgba(91,46,190,0.20);
  box-shadow: 0 2px 8px rgba(91,46,190,0.08);
}
.hero-eyebrow i { width: 14px; height: 14px; }
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #10b981;
  box-shadow: 0 0 0 0 rgba(16,185,129,0.6);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
  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(38px, 5.5vw, 64px); margin-bottom: 22px; }
.hero h1 span {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 60%, #c084fc 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead { font-size: 18px; color: var(--soft); max-width: 540px; margin-bottom: 32px; line-height: 1.6; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

/* Stats horizontales debajo del CTA */
.hero-stats {
  display: grid; grid-template-columns: repeat(3, auto); gap: 0;
  background: #fff; padding: 4px;
  border-radius: 18px; box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  max-width: 520px;
}
.hero-stat {
  padding: 14px 22px; text-align: center;
  border-right: 1px solid var(--line);
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong {
  display: block; font-family: 'Space Grotesk', sans-serif;
  font-size: 24px; font-weight: 800; color: var(--brand);
  letter-spacing: -0.5px;
}
.hero-stat span { font-size: 11.5px; color: var(--muted); font-weight: 500; letter-spacing: 0.3px; }

/* Visual del hero: logo + tarjeta + glowy */
.hero-visual { position: relative; aspect-ratio: 1/1; }
.hero-visual-glow {
  position: absolute; inset: 8%;
  background: radial-gradient(circle at center, rgba(124,58,237,0.35), transparent 65%);
  filter: blur(40px);
  z-index: 0;
}
.hero-card {
  position: absolute; inset: 0;
  display: grid; place-items: center; z-index: 2;
}
.hero-card-inner {
  width: 78%; aspect-ratio: 1/1;
  background: linear-gradient(135deg, #fff 0%, #faf9fc 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(91,46,190,0.10);
  display: grid; place-items: center;
  box-shadow: 0 40px 80px -20px rgba(91,46,190,0.30), inset 0 1px 0 #fff;
  position: relative;
  overflow: hidden;
}
.hero-card-inner::before {
  content:''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(124,58,237,0.10), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(167,139,250,0.10), transparent 50%);
}
.hero-logo {
  width: 60%; height: auto; position: relative; z-index: 1;
  filter: drop-shadow(0 12px 32px rgba(91,46,190,0.35));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Badges flotantes */
.hero-badge {
  position: absolute; background: #fff; padding: 14px 18px;
  border-radius: 16px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  z-index: 3; border: 1px solid var(--line);
  animation: float-badge 5s ease-in-out infinite;
}
@keyframes float-badge {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-badge-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center; flex-shrink: 0;
}
.hero-badge-icon i { width: 20px; height: 20px; }
.hero-badge strong { font-size: 13.5px; display: block; color: var(--dark); font-weight: 700; }
.hero-badge span { font-size: 11.5px; color: var(--muted); }
.hero-badge-1 {
  top: 8%; left: -30px;
  animation-delay: 0.5s;
}
.hero-badge-1 .hero-badge-icon { background: rgba(16,185,129,0.10); color: #10b981; }
.hero-badge-2 {
  bottom: 12%; right: -20px;
  animation-delay: 1.2s;
}
.hero-badge-2 .hero-badge-icon { background: rgba(91,46,190,0.10); color: var(--brand); }
.hero-badge-3 {
  top: 50%; right: -38px; transform: translateY(-50%);
  animation-delay: 2s;
}
.hero-badge-3 .hero-badge-icon { background: rgba(245,158,11,0.12); color: #f59e0b; }

/* Confianza debajo del hero */
.hero-trust-bar {
  margin-top: 70px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px; padding-top: 40px; border-top: 1px solid var(--line);
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(91,46,190,0.10); color: var(--brand);
  display: grid; place-items: center; flex-shrink: 0;
}
.trust-icon i { width: 22px; height: 22px; }
.trust-text { display: flex; flex-direction: column; line-height: 1.25; }
.trust-text strong { font-size: 14.5px; color: var(--dark); font-weight: 700; }
.trust-text span { font-size: 12px; color: var(--muted); }

/* ============ SECCIONES GENERALES ============ */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-eyebrow { color: var(--brand); font-weight: 700; font-size: 12.5px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }

/* ============ BENEFICIOS ============ */
.beneficios-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.beneficio {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px;
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.beneficio::before {
  content:''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.beneficio:hover {
  transform: translateY(-6px);
  border-color: rgba(91,46,190,0.25);
  box-shadow: 0 20px 40px -16px rgba(91,46,190,0.20);
}
.beneficio:hover::before { transform: scaleX(1); }
.beneficio-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(91,46,190,0.10), rgba(124,58,237,0.08));
  color: var(--brand);
  display: grid; place-items: center; margin-bottom: 18px;
}
.beneficio-icon i { width: 26px; height: 26px; }
.beneficio h3 { font-size: 18px; margin-bottom: 8px; }
.beneficio p { font-size: 14px; margin: 0; line-height: 1.55; }

/* ============ MARCAS ============ */
.marcas {
  background: var(--bg-soft);
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marcas-grid {
  display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; align-items: center;
}
.marca-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; font-weight: 600; font-size: 14px; color: var(--soft);
  transition: all 0.2s ease;
}
.marca-chip:hover { color: var(--brand); border-color: var(--brand); transform: translateY(-2px); }
.marca-chip .dot { width: 8px; height: 8px; border-radius: 50%; }

/* ============ GRID DE PRODUCTOS ============ */
.productos-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; transition: all 0.25s ease;
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px); border-color: var(--brand);
  box-shadow: 0 18px 40px -16px rgba(99,102,241,0.25);
}
.product-img {
  aspect-ratio: 4/3; background: var(--bg-soft);
  display: grid; place-items: center; overflow: hidden;
  position: relative;
}
.product-img img { width: 80%; height: 80%; object-fit: contain; }
.product-img .marca-tag {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; background: rgba(15,23,42,0.85);
  color: #fff; font-size: 10.5px; font-weight: 600;
  border-radius: 999px; text-transform: uppercase; letter-spacing: 0.5px;
}
.product-img.no-img {
  background: linear-gradient(135deg, var(--bg-soft), #eef2ff);
}
.product-img.no-img::after {
  content:'📱'; font-size: 48px; opacity: 0.4;
}
.product-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.product-name { font-size: 15px; font-weight: 600; color: var(--dark); margin: 0 0 8px; line-height: 1.3; min-height: 2.6em; }
.product-precios { margin-top: auto; }
.precio-contado { font-size: 12.5px; color: var(--muted); margin-bottom: 2px; }
.precio-contado strong { color: var(--soft); font-weight: 600; }
.cuota-credito {
  display: flex; align-items: baseline; gap: 6px; margin-top: 8px;
}
.cuota-credito .val { font-size: 22px; font-weight: 800; font-family: 'Space Grotesk', sans-serif; color: var(--brand); }
.cuota-credito .sub { font-size: 11px; color: var(--muted); }
.product-actions { display: flex; gap: 8px; margin-top: 14px; }
.product-actions .btn { flex: 1; justify-content: center; padding: 9px 14px; font-size: 13px; }

/* ============ COMO FUNCIONA / STEPS ============ */
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px; counter-reset: step;
}
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; position: relative; transition: all 0.25s;
}
.step:hover { border-color: var(--brand); transform: translateY(-3px); }
.step-num {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; font-family: 'Space Grotesk',sans-serif; font-weight: 700; font-size: 20px;
  display: grid; place-items: center; margin-bottom: 16px;
}
.step h3 { font-size: 17px; }
.step p { font-size: 14px; margin: 0; }

/* ============ CTA FINAL ============ */
.cta-final {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  padding: 70px 0; color: #fff; text-align: center;
}
.cta-final h2 { color: #fff; }
.cta-final p { color: rgba(255,255,255,0.85); max-width: 580px; margin: 0 auto 28px; font-size: 17px; }

/* ============ FOOTER ============ */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 60px 0 24px; }
.footer h4 { color: #fff; font-size: 14px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 60px; margin-bottom: 40px; }
.footer .brand-mark { background: linear-gradient(135deg, var(--brand-3), #fff); color: var(--dark); }
.footer .brand-name, .footer .brand-tag { color: #fff; }
.footer-about { font-size: 13.5px; color: rgba(255,255,255,0.6); margin-top: 14px; max-width: 380px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; font-size: 13.5px; display: flex; align-items: center; gap: 8px; }
.footer ul li i { width: 14px; height: 14px; color: var(--brand-3); }
.footer ul a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; color: rgba(255,255,255,0.4);
}

/* ============ WHATSAPP FLOTANTE ============ */
.wa-float {
  position: fixed; bottom: 22px; right: 22px;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px -6px rgba(37,211,102,0.55);
  z-index: 200; transition: transform 0.2s;
  animation: wa-pulse 2.5s ease-out infinite;
}
.wa-float i { width: 28px; height: 28px; }
.wa-float:hover { transform: scale(1.08); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 12px 28px -6px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 12px 28px -6px rgba(37,211,102,0.55), 0 0 0 14px rgba(37,211,102,0); }
}

/* ============ CATÁLOGO ============ */
.cat-header {
  padding: 60px 0 30px; border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, var(--bg-soft));
}
.cat-toolbar {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  padding: 18px 0; border-bottom: 1px solid var(--line); margin-bottom: 30px;
}
.cat-search {
  flex: 1; min-width: 220px; display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; background: #fff; border: 1px solid var(--line); border-radius: 999px;
}
.cat-search i { color: var(--muted); width: 18px; height: 18px; }
.cat-search input {
  flex: 1; border: none; outline: none; font-family: inherit; font-size: 14px; color: var(--dark);
  background: transparent;
}
.cat-filtros { display: flex; gap: 8px; flex-wrap: wrap; }
.cat-pill {
  padding: 8px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line);
  font-size: 13px; font-weight: 500; color: var(--soft); cursor: pointer; transition: all 0.2s;
}
.cat-pill:hover { border-color: var(--brand); color: var(--brand); }
.cat-pill.active { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ============ FICHA PRODUCTO ============ */
.ficha {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
  padding: 50px 0;
}
.ficha-img {
  aspect-ratio: 1/1; background: var(--bg-soft); border-radius: var(--radius-lg);
  display: grid; place-items: center; overflow: hidden;
}
.ficha-img img { width: 80%; height: 80%; object-fit: contain; }
.ficha-info h1 { font-size: 36px; margin-bottom: 14px; }
.ficha-marca {
  display: inline-block; padding: 4px 12px; background: rgba(99,102,241,0.1);
  color: var(--brand); font-size: 11.5px; font-weight: 700; text-transform: uppercase;
  border-radius: 999px; letter-spacing: 0.5px; margin-bottom: 16px;
}
.ficha-precios {
  background: var(--bg-soft); padding: 22px; border-radius: var(--radius);
  margin: 26px 0;
}
.ficha-precios .fila { display: flex; justify-content: space-between; align-items: baseline; padding: 6px 0; }
.ficha-precios .fila .lbl { font-size: 13.5px; color: var(--soft); }
.ficha-precios .fila .val { font-size: 16px; font-weight: 700; color: var(--dark); font-family: 'Space Grotesk', sans-serif; }
.ficha-precios .fila.destacada { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; }
.ficha-precios .fila.destacada .val { font-size: 26px; color: var(--brand); }
.ficha-acciones { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ FORM SOLICITUD ============ */
.form-card {
  max-width: 720px; margin: 60px auto; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark); }
.form-control {
  padding: 11px 14px; border: 1px solid var(--line); border-radius: 10px;
  background: #fff; font-family: inherit; font-size: 14px; color: var(--dark);
  outline: none; transition: border-color 0.2s;
}
.form-control:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(99,102,241,0.12); }
.tel-wrap { display: flex; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.tel-wrap:focus-within { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(99,102,241,0.12); }
.tel-prefix { display: grid; place-items: center; padding: 0 14px; background: var(--bg-soft); font-weight: 600; color: var(--soft); font-size: 14px; }
.tel-input { border: none !important; flex: 1; }

.form-resumen {
  background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(139,92,246,0.06));
  border: 1px solid rgba(99,102,241,0.18); border-radius: var(--radius);
  padding: 18px; margin-bottom: 24px;
}
.form-resumen .producto-name { font-weight: 700; color: var(--dark); font-size: 15px; margin-bottom: 4px; }
.form-resumen .producto-cuota { color: var(--brand); font-weight: 600; font-size: 14px; }

.alert-success {
  background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7;
  padding: 18px; border-radius: 12px; margin-bottom: 20px;
}
.alert-error {
  background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5;
  padding: 18px; border-radius: 12px; margin-bottom: 20px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero { padding: 50px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 380px; margin: 10px auto 0; }
  .hero-stats { max-width: 100%; }
  .hero-trust-bar { margin-top: 50px; padding-top: 30px; }
  .ficha { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; margin: 30px 16px; }
}
@media (max-width: 700px) {
  .nav-main { display: none; }
  .section { padding: 60px 0; }
  .hero-badge-1 { left: -10px; }
  .hero-badge-2 { right: -10px; }
  .hero-badge-3 { right: -10px; }
  .hero-badge { padding: 10px 14px; }
  .hero-badge strong { font-size: 12.5px; }
  .hero-badge span { font-size: 10.5px; }
  .hero-stat { padding: 12px 14px; }
  .hero-stat strong { font-size: 20px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 34px; }
  .hero-lead { font-size: 15px; }
  .hero-cta .btn { flex: 1; justify-content: center; }
  .nav-cta { display: none; }
  .brand-tag { display: none; }
  .brand-logo { width: 42px; height: 42px; }
}
