@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --gold: #F5C300;
  --gold-dark: #C9A000;
  --black: #0D0D0D;
  --black2: #161616;
  --black3: #1E1E1E;
  --gray: #2A2A2A;
  --gray-light: #F2F2F2;
  --white: #FFFFFF;
  --font: 'Montserrat', sans-serif;
  --nav-h: 72px;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.15);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--white); color: var(--black); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; outline: none; }

/* ═══════════════════════════════════
   SCROLLBAR
═══════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ═══════════════════════════════════
   NAVIGATION
═══════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245,195,0,0.12);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text {
  font-size: 18px; font-weight: 800;
  color: var(--gold); letter-spacing: 2px;
}

.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--gold); }

.nav-btn {
  background: var(--gold); color: var(--black);
  padding: 10px 22px; border-radius: var(--radius);
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  transition: all 0.2s; text-transform: uppercase;
}
.nav-btn:hover { background: var(--gold-dark); }

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

/* ═══════════════════════════════════
   BANNER STRIP
═══════════════════════════════════ */
.banner-strip {
  margin-top: var(--nav-h);
  background: var(--gold);
  height: 160px;
  display: flex; align-items: center;
  padding: 0 5%;
  overflow: hidden; position: relative;
}

.banner-strip-content {
  display: flex; align-items: center; gap: 20px; z-index: 2;
}

.banner-logo-img {
  height: 100px; width: auto;
  filter: brightness(0);
}

.banner-title {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900; color: var(--black);
  letter-spacing: 4px; line-height: 1;
  text-transform: uppercase;
}

.banner-robot {
  position: absolute; right: 3%; bottom: 0;
  height: 190px; width: auto;
  object-fit: contain; object-position: bottom;
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  background: var(--black);
  min-height: 90vh;
  display: flex; align-items: center;
  padding: 60px 5%;
  position: relative; overflow: hidden;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,195,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,195,0,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-glow {
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,195,0,0.07) 0%, transparent 65%);
  border-radius: 50%;
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,195,0,0.08);
  border: 1px solid rgba(245,195,0,0.25);
  border-radius: 2px; padding: 6px 16px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 4px; color: var(--gold);
  margin-bottom: 24px; text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 900; line-height: 0.95;
  color: var(--white); margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero h1 em { color: var(--gold); font-style: normal; }

.hero-sub {
  font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px; max-width: 480px;
  font-weight: 400;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-gold {
  background: var(--gold); color: var(--black);
  padding: 15px 32px; border-radius: var(--radius);
  font-size: 14px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  transition: all 0.2s; display: inline-block;
  border: 2px solid var(--gold);
}
.btn-gold:hover { background: transparent; color: var(--gold); }

.btn-outline {
  background: transparent; color: rgba(255,255,255,0.6);
  padding: 15px 32px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  transition: all 0.2s; display: inline-block;
  border: 2px solid rgba(255,255,255,0.15);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 12px;
}
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 20px;
  text-align: center;
}
.stat-num {
  font-size: 36px; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 12px; color: rgba(255,255,255,0.4);
  margin-top: 4px; font-weight: 500; letter-spacing: 1px;
}

/* ═══════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════ */
section { padding: 90px 5%; }
.container { max-width: 1200px; margin: 0 auto; }

.tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 4px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 10px;
  display: block;
}

.sec-title {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 900; line-height: 1.05;
  margin-bottom: 14px; letter-spacing: -0.5px;
}

.sec-sub {
  font-size: 16px; color: #666;
  line-height: 1.7; max-width: 540px;
  margin-bottom: 52px; font-weight: 400;
}

/* ═══════════════════════════════════
   PROBLEMAS
═══════════════════════════════════ */
.problemas { background: var(--gray-light); }
.prob-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.prob-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; border-left: 3px solid var(--gold);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.prob-icon { font-size: 28px; margin-bottom: 14px; }
.prob-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.prob-card p { font-size: 14px; color: #666; line-height: 1.6; }
.prob-sol {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--gray-light);
  font-size: 12px; color: var(--gold-dark);
  font-weight: 700; letter-spacing: 0.5px;
}

/* ═══════════════════════════════════
   SERVICIOS
═══════════════════════════════════ */
.servicios { background: var(--white); }
.servicios-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px;
}
.srv-card {
  background: var(--black);
  border-radius: var(--radius); padding: 26px 22px;
  border: 1px solid rgba(245,195,0,0.08);
  transition: all 0.25s; display: block;
}
.srv-card:hover {
  border-color: rgba(245,195,0,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.srv-icon {
  font-size: 28px; margin-bottom: 14px;
  color: var(--gold); font-weight: 300;
}
.srv-card h3 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.srv-card p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 14px; }
.srv-result { font-size: 11px; color: var(--gold); font-weight: 700; letter-spacing: 1px; }

/* ═══════════════════════════════════
   AGENTES
═══════════════════════════════════ */
.agentes { background: var(--black); }
.agentes .sec-title { color: var(--white); }
.agentes .sec-sub { color: rgba(255,255,255,0.45); }

.agentes-filter {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 18px; border-radius: 20px;
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.4);
  transition: all 0.2s; text-transform: uppercase;
}
.filter-btn.active, .filter-btn:hover {
  background: rgba(245,195,0,0.15);
  border-color: var(--gold); color: var(--gold);
}

.agentes-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
}
.agente-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 22px;
  transition: all 0.25s;
}
.agente-card:hover {
  border-color: rgba(245,195,0,0.3);
  background: rgba(245,195,0,0.04);
}
.agente-emoji {
  font-size: 22px; color: var(--gold);
  margin-bottom: 12px; font-weight: 300;
  font-style: normal;
}
.agente-card h3 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.agente-card p { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* ═══════════════════════════════════
   SCANNER TEASER
═══════════════════════════════════ */
.scanner-sec { background: var(--black2); }
.scanner-sec .sec-title { color: var(--white); }
.scanner-sec .sec-sub { color: rgba(255,255,255,0.45); }

.scanner-preview {
  max-width: 680px; margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(245,195,0,0.18);
  border-radius: 12px; padding: 32px;
}
.scan-bar { margin-bottom: 14px; }
.scan-bar-top { display: flex; justify-content: space-between; margin-bottom: 6px; }
.scan-bar-label { font-size: 13px; color: rgba(255,255,255,0.55); }
.scan-bar-val { font-size: 13px; font-weight: 700; color: var(--gold); }
.scan-bar-track { height: 5px; background: rgba(255,255,255,0.07); border-radius: 3px; overflow: hidden; }
.scan-bar-fill { height: 100%; background: var(--gold); border-radius: 3px; }

/* ═══════════════════════════════════
   PAQUETES
═══════════════════════════════════ */
.paquetes { background: var(--gray-light); }
.paquetes-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px;
  align-items: start;
}
.paq-card {
  background: var(--white); border-radius: 10px;
  padding: 30px 22px; border: 2px solid transparent;
  position: relative; transition: all 0.2s;
}
.paq-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.paq-card.featured {
  background: var(--black); border-color: var(--gold);
  transform: scale(1.03);
}
.paq-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--black);
  font-size: 10px; font-weight: 800; letter-spacing: 2px;
  padding: 4px 14px; border-radius: 20px; text-transform: uppercase;
  white-space: nowrap;
}
.paq-tier {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 6px;
}
.paq-card h3 {
  font-size: 26px; font-weight: 900; margin-bottom: 4px;
}
.paq-card.featured h3 { color: var(--white); }
.paq-tagline { font-size: 13px; color: #888; margin-bottom: 22px; }
.paq-card.featured .paq-tagline { color: rgba(255,255,255,0.45); }
.paq-list { margin-bottom: 24px; }
.paq-list li {
  font-size: 13px; padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex; gap: 8px;
}
.paq-card.featured .paq-list li {
  border-color: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
}
.paq-list li::before { content: "✓"; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.paq-btn {
  display: block; text-align: center;
  padding: 13px; border-radius: var(--radius);
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; transition: all 0.2s;
}
.paq-card .paq-btn { background: var(--black); color: var(--white); }
.paq-card .paq-btn:hover { background: var(--gold); color: var(--black); }
.paq-card.featured .paq-btn { background: var(--gold); color: var(--black); }
.paq-card.featured .paq-btn:hover { background: var(--gold-dark); }

/* ═══════════════════════════════════
   PRODUCTOS / SPAI
═══════════════════════════════════ */
.productos { background: var(--black); }
.productos .sec-title { color: var(--white); }
.productos .sec-sub { color: rgba(255,255,255,0.45); }
.productos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.prod-card {
  border-radius: var(--radius); padding: 28px;
  border: 1px solid rgba(245,195,0,0.12);
  transition: all 0.25s;
  background: rgba(255,255,255,0.03);
}
.prod-card:hover { border-color: rgba(245,195,0,0.4); }
.prod-card .prod-icon { font-size: 32px; margin-bottom: 14px; }
.prod-card h3 { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.prod-card p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 18px; }
.prod-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--gold);
  letter-spacing: 1px; text-transform: uppercase;
  transition: gap 0.2s;
}
.prod-link:hover { gap: 10px; }

/* ═══════════════════════════════════
   GENERADOR
═══════════════════════════════════ */
.generador { background: var(--white); }
.gen-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.gen-form {
  background: var(--black); border-radius: 12px;
  padding: 32px; border: 1px solid rgba(245,195,0,0.15);
}
.gen-form h3 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 22px; }
.form-g { margin-bottom: 14px; }
.form-g label {
  display: block; font-size: 11px; letter-spacing: 2px;
  color: rgba(255,255,255,0.35); margin-bottom: 6px;
  text-transform: uppercase; font-weight: 600;
}
.form-g input, .form-g textarea, .form-g select {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 11px 14px;
  color: var(--white); font-size: 14px;
  font-family: var(--font); outline: none;
  transition: border-color 0.2s;
}
.form-g input:focus, .form-g textarea:focus { border-color: var(--gold); }
.color-row { display: flex; gap: 14px; }
.color-field { flex: 1; }
.color-field input[type="color"] { height: 42px; cursor: pointer; padding: 3px; }
.btn-generar {
  width: 100%; background: var(--gold); color: var(--black);
  padding: 14px; border-radius: var(--radius);
  font-size: 14px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; transition: all 0.2s; margin-top: 6px;
}
.btn-generar:hover { background: var(--gold-dark); }

.gen-preview {
  background: var(--gray-light); border-radius: 12px;
  padding: 24px; display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.phone-mock {
  width: 180px; height: 340px; background: var(--black);
  border-radius: 24px; border: 3px solid #333;
  overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.phone-head {
  height: 80px; padding: 14px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
}
.phone-body { padding: 12px; }
.phone-line { height: 7px; background: rgba(255,255,255,0.1); border-radius: 4px; margin-bottom: 7px; }
.phone-line.short { width: 60%; }

/* ═══════════════════════════════════
   CTA FINAL
═══════════════════════════════════ */
.cta-sec {
  background: var(--gold); padding: 90px 5%; text-align: center;
}
.cta-sec h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900; color: var(--black); margin-bottom: 14px;
}
.cta-sec p { font-size: 17px; color: rgba(13,13,13,0.65); margin-bottom: 32px; }
.btn-black {
  background: var(--black); color: var(--gold);
  padding: 16px 40px; border-radius: var(--radius);
  font-size: 15px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; display: inline-block;
  transition: all 0.2s;
}
.btn-black:hover { background: #111; }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer {
  background: var(--black); padding: 60px 5% 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand img { height: 44px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; }
.footer-col h4 {
  font-size: 11px; letter-spacing: 3px; color: var(--gold);
  font-weight: 700; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 13px; color: rgba(255,255,255,0.35);
  margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 22px; display: flex;
  justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════
   FLUX WIDGET
═══════════════════════════════════ */
#flux-widget { position: fixed; bottom: 24px; right: 24px; z-index: 9999; }
#flux-btn {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--gold); border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(245,195,0,0.4);
  transition: transform 0.2s; font-size: 22px;
}
#flux-btn:hover { transform: scale(1.1); }
#flux-bubble {
  display: none; flex-direction: column;
  position: absolute; bottom: 68px; right: 0;
  width: 320px; background: var(--black);
  border: 1px solid rgba(245,195,0,0.25);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
#flux-bubble.open { display: flex; }
.flux-head {
  background: var(--gold); padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
}
.flux-head-info h4 { font-size: 14px; font-weight: 700; color: var(--black); }
.flux-head-info p { font-size: 11px; color: rgba(13,13,13,0.55); }
.flux-msgs {
  flex: 1; padding: 14px; overflow-y: auto;
  max-height: 270px; display: flex; flex-direction: column; gap: 10px;
}
.fmsg { max-width: 88%; }
.fmsg.bot { align-self: flex-start; }
.fmsg.user { align-self: flex-end; }
.fmsg-b {
  padding: 10px 13px; border-radius: 10px;
  font-size: 13px; line-height: 1.5;
}
.fmsg.bot .fmsg-b { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.8); border-radius: 2px 10px 10px 10px; }
.fmsg.user .fmsg-b { background: var(--gold); color: var(--black); font-weight: 600; border-radius: 10px 10px 2px 10px; }
.flux-inp {
  display: flex; gap: 8px; padding: 10px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.flux-inp input {
  flex: 1; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 9px 12px;
  color: var(--white); font-size: 13px;
  font-family: var(--font); outline: none;
}
.flux-inp input:focus { border-color: var(--gold); }
.flux-inp button {
  background: var(--gold); border-radius: 6px;
  padding: 9px 13px; font-size: 14px;
  transition: background 0.2s;
}
.flux-inp button:hover { background: var(--gold-dark); }
.typing-dots { display: flex; gap: 4px; padding: 4px 0; }
.typing-dots span {
  width: 6px; height: 6px; background: rgba(255,255,255,0.3);
  border-radius: 50%; animation: blink 1.2s infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%,100%{opacity:.2} 50%{opacity:1} }

/* ═══════════════════════════════════
   ADMIN PANEL
═══════════════════════════════════ */
.admin-login {
  min-height: 100vh; background: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.admin-login-box {
  background: var(--black2); border: 1px solid rgba(245,195,0,0.2);
  border-radius: 12px; padding: 40px; width: 360px; text-align: center;
}
.admin-login-box img { height: 52px; margin: 0 auto 20px; }
.admin-login-box h2 { color: var(--white); font-size: 22px; font-weight: 800; margin-bottom: 24px; }
.admin-login-box input {
  width: 100%; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 13px 16px;
  color: var(--white); font-size: 15px; font-family: var(--font);
  outline: none; margin-bottom: 14px;
}
.admin-login-box input:focus { border-color: var(--gold); }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1200px) {
  .servicios-grid { grid-template-columns: repeat(3,1fr); }
  .agentes-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 1024px) {
  .servicios-grid { grid-template-columns: repeat(2,1fr); }
  .agentes-grid { grid-template-columns: repeat(2,1fr); }
  .paquetes-grid { grid-template-columns: repeat(2,1fr); }
  .paq-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gen-wrap { grid-template-columns: 1fr; }
  .productos-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .prob-grid { grid-template-columns: 1fr; }
  .servicios-grid { grid-template-columns: 1fr; }
  .agentes-grid { grid-template-columns: repeat(2,1fr); }
  .paquetes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .productos-grid { grid-template-columns: 1fr; }
  .banner-strip { height: 100px; }
  .banner-title { font-size: clamp(28px,8vw,48px); }
  .banner-robot { height: 120px; }
  .banner-logo-img { height: 64px; }
}

@media (max-width: 480px) {
  section { padding: 60px 5%; }
  .agentes-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
}
