/* ============================================================
   Ingeniería CJ — Sistema visual (main.css)
   Consultoría tecnológica · Guadalajara, MX
   ============================================================ */

:root{
  /* Paleta */
  --bg:            #ffffff;
  --bg-soft:       #f6f5fb;
  --bg-card:       #ffffff;
  --ink:           #16121f;
  --ink-2:         #1c1a26;
  --muted:         #6b6a7a;
  --muted-2:       #8d8c9a;
  --line:          #ecebf3;
  --line-2:        #e2e0ec;

  --navy:          #1a0e3d;
  --navy-2:        #221055;
  --purple:        #5b2fdb;
  --purple-600:    #4a1ec2;
  --purple-700:    #3d17a3;
  --purple-050:    #f1ecfd;
  --purple-100:    #e5dcfb;

  --shadow-card:        0 1px 2px rgba(22,18,31,.04), 0 8px 24px rgba(22,18,31,.04);
  --shadow-card-hover:  0 4px 10px rgba(22,18,31,.06), 0 24px 40px rgba(60,20,140,.10);
  --shadow-cta:         0 10px 24px rgba(91,47,219,.35);

  --radius-sm:     10px;
  --radius:        16px;
  --radius-lg:     22px;
  --radius-xl:     28px;
  --radius-pill:   999px;

  --container:     1200px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{ scroll-behavior:smooth }
body{
  font-family:'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color:var(--ink);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  font-size:15px;
  line-height:1.55;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button{font-family:inherit;cursor:pointer;border:0;background:none}

.container{max-width:var(--container);margin:0 auto;padding:0 32px}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(140%) blur(10px);
  -webkit-backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid transparent;
  transition:border-color .2s ease, background .2s ease;
}
.nav.scrolled{border-bottom-color:var(--line)}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  height:104px;
}
.brand{display:flex; align-items:center; gap:14px}
.brand-logo{ display:block; height:72px; width:auto; }
.foot-brand .brand-logo{
  height:84px;
  filter: brightness(0) invert(1);
  opacity:.95;
}

.nav-links{display:flex; gap:26px}
.nav-links a{
  font-size:14.5px; font-weight:500; color:var(--ink-2);
  position:relative; padding:8px 0;
  transition: color .2s ease;
}
.nav-links a.active{color:var(--purple)}
.nav-links a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:0;
  height:2px; background:var(--purple); border-radius:2px;
}
.nav-links a:hover{color:var(--purple)}
.nav-links .has-caret{display:inline-flex; align-items:center; gap:6px}
.caret{width:10px;height:10px;display:inline-block;border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;transform:rotate(45deg) translate(-2px,-2px)}

.nav-cta{display:flex; align-items:center; gap:14px}

/* ------------- Botones ------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  font-weight:600; font-size:14.5px;
  padding:14px 26px;
  border-radius:var(--radius-pill);
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn-primary{background:var(--purple); color:#fff; box-shadow:var(--shadow-cta)}
.btn-primary:hover{background:var(--purple-600); transform:translateY(-1px)}
.btn-ghost{background:transparent; color:var(--ink); border:1.5px solid var(--line-2)}
.btn-ghost:hover{border-color:var(--purple); color:var(--purple)}
.btn-wa{background:#25d366; color:#fff; box-shadow:0 10px 24px rgba(37,211,102,.30)}
.btn-wa:hover{background:#1fbd5b; transform:translateY(-1px)}
.btn-white{background:#fff; color:var(--purple); box-shadow:0 10px 24px rgba(0,0,0,.25)}
.btn-white:hover{background:#f4efff; color:var(--purple-600); transform:translateY(-1px)}
.btn-white .ico-circle{background:var(--purple-050); color:var(--purple)}

.btn .ico-circle{
  width:26px; height:26px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.16);
}
.btn-ghost .ico-circle{background:var(--purple-050); color:var(--purple)}
.btn .arrow{width:12px;height:12px;stroke:currentColor;stroke-width:2;fill:none}

/* mobile nav toggle */
.nav-toggle{ display:none; width:44px; height:44px; align-items:center; justify-content:center; color:var(--ink); border-radius:12px; }
.nav-toggle svg{width:22px;height:22px;stroke:currentColor;stroke-width:1.8;fill:none;stroke-linecap:round}

/* ============================================================
   HERO
   ============================================================ */
.hero{padding:36px 0 72px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 1.15fr;
  gap:48px;
  align-items:center;
}
.hero-left{padding-top:12px}
.kicker{
  display:inline-flex; align-items:center; gap:14px;
  font-size:12.5px; font-weight:600; letter-spacing:.22em;
  color:var(--purple); text-transform:uppercase;
  margin-bottom:28px;
}
.kicker .line{width:44px; height:1px; background:var(--purple); opacity:.5}
.kicker .dot{width:6px;height:6px;border-radius:50%;background:var(--purple); opacity:.5}

h1.hero-title{
  font-size:60px;
  line-height:1.05;
  letter-spacing:-.02em;
  font-weight:700;
  margin:0 0 26px;
  color:var(--ink);
  text-wrap:balance;
}
h1.hero-title .accent{color:var(--purple); font-style:italic; font-weight:600}

.hero-lead{
  font-size:16.5px;
  color:var(--muted);
  max-width:540px;
  margin:0 0 40px;
  line-height:1.65;
}
.hero-ctas{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:44px}

/* Stats (landing) */
.stats{
  display:grid; grid-template-columns:repeat(4, 1fr);
  gap:20px; max-width:640px;
}
.stat{ display:flex; align-items:center; gap:12px; }
.stat-ico{
  width:38px;height:38px; border-radius:50%;
  background:var(--purple-050); color:var(--purple);
  display:inline-flex; align-items:center; justify-content:center;
  flex:none;
}
.stat-ico svg{width:18px;height:18px}
.stat-val{font-weight:700; font-size:18px; color:var(--ink); line-height:1}
.stat-lbl{font-size:12px; color:var(--muted); margin-top:4px; line-height:1.35}

/* Hero mini-stats (empresas) */
.hero-mini-stats{
  display:flex; gap:32px; flex-wrap:wrap;
  padding-top:24px; border-top:1px solid var(--line);
}
.mini-stat .mv{font-weight:700; font-size:22px; color:var(--ink); line-height:1; letter-spacing:-.01em}
.mini-stat .mv em{color:var(--purple); font-style:normal}
.mini-stat .ml{font-size:12px; color:var(--muted); margin-top:6px; letter-spacing:.02em}

.hero-right{
  position:relative;
  border-radius:var(--radius-xl);
  overflow:hidden;
  min-height:560px;
  background:#f4f2fb;
  box-shadow:0 30px 60px -25px rgba(60,20,140,.20);
}
.hero-right img{
  width:100%; height:100%; object-fit:cover; position:absolute; inset:0;
}
.hero-right.dark{ background:#1a1226; box-shadow:0 30px 60px -25px rgba(60,20,140,.35); }
.hero-right.dark::after{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(120% 90% at 100% 100%, rgba(91,47,219,.22), transparent 55%),
    linear-gradient(180deg, rgba(22,18,31,.02) 0%, rgba(22,18,31,.10) 100%);
  pointer-events:none;
}
.hero-right:not(.dark)::after{
  content:""; position:absolute; inset:0;
  background: radial-gradient(120% 90% at 100% 100%, rgba(91,47,219,.06), transparent 55%);
  pointer-events:none;
}

/* Floating badges on hero (empresas) */
.float-badge{
  position:absolute; background:#fff; color:var(--ink);
  padding:12px 16px; border-radius:14px;
  box-shadow:0 12px 26px rgba(0,0,0,.10);
  display:flex; align-items:center; gap:12px;
  font-size:12.5px; font-weight:600; line-height:1.25;
  z-index:2;
}
.float-badge .bi{
  width:32px;height:32px; border-radius:10px;
  color:#fff;
  display:inline-flex;align-items:center;justify-content:center;
  flex:none;
}
.float-badge .bi svg{width:16px;height:16px;stroke:currentColor;stroke-width:2;fill:none;stroke-linecap:round;stroke-linejoin:round}
.float-badge .bt{display:block; font-weight:700}
.float-badge .bs{color:var(--muted); font-weight:500; font-size:11px; margin-top:2px; display:block}
.fb-top{ top:22px; left:22px; }
.fb-bot{ bottom:22px; right:22px; }
.fb-top .bi{background:linear-gradient(135deg,#6f47e6,#4a1ec2)}
.fb-bot .bi{background:linear-gradient(135deg,#3fd1c7,#0e9c8f)}

/* ============================================================
   SECTIONS shared
   ============================================================ */
.section{padding:80px 0}
.section-tight{padding:56px 0}

.sec-head{ text-align:center; max-width:780px; margin:0 auto 56px; }
.sec-eyebrow{
  display:inline-block;
  font-size:12px; font-weight:700; letter-spacing:.24em; text-transform:uppercase;
  color:var(--purple);
  background:var(--purple-050);
  padding:6px 14px; border-radius:var(--radius-pill);
  margin-bottom:20px;
}
.sec-head h2{
  margin:0 0 18px;
  font-size:40px; font-weight:700; letter-spacing:-.02em; line-height:1.15;
  color:var(--ink); text-wrap:balance;
}
.sec-head h2 em{color:var(--purple); font-style:italic; font-weight:700}
.sec-head p{
  margin:0 auto; max-width:640px;
  color:var(--muted); font-size:16px; line-height:1.65;
  text-wrap:pretty;
}

/* Gradient chips utility */
.grad-purple  {background:linear-gradient(135deg,#6f47e6 0%,#4a1ec2 100%)}
.grad-violet  {background:linear-gradient(135deg,#8f6bff 0%,#5b2fdb 100%)}
.grad-cyan    {background:linear-gradient(135deg,#4fb1ff 0%,#2b6bd9 100%)}
.grad-magenta {background:linear-gradient(135deg,#c86bff 0%,#7a2fdb 100%)}
.grad-teal    {background:linear-gradient(135deg,#3fd1c7 0%,#0e9c8f 100%)}
.grad-green   {background:linear-gradient(135deg,#5cd67a 0%,#1fa74a 100%)}
.grad-orange  {background:linear-gradient(135deg,#ff9a3d 0%,#e5661a 100%)}
.grad-rose    {background:linear-gradient(135deg,#ff5f8f 0%,#d63a68 100%)}

/* ============================================================
   Landing — Retos band (challenges strip)
   ============================================================ */
.band{
  background:var(--bg-soft);
  border-radius:var(--radius-xl);
  padding:56px 40px;
}
.band h2{
  text-align:center; margin:0 0 44px;
  font-size:30px; font-weight:700; letter-spacing:-.01em;
  color:var(--ink);
}
.challenges{
  display:grid; grid-template-columns:repeat(8, 1fr); gap:8px;
}
.challenge{ text-align:center; padding:16px 8px; }
.challenge .ci{
  width:52px;height:52px; border-radius:50%;
  background:#fff; border:1px solid var(--line);
  color:var(--purple);
  display:inline-flex;align-items:center;justify-content:center;
  margin-bottom:14px;
}
.challenge .ci svg{width:22px;height:22px;stroke:currentColor;stroke-width:1.6;fill:none;stroke-linecap:round;stroke-linejoin:round}
.challenge p{margin:0; font-size:13.5px; font-weight:500; color:var(--ink-2); line-height:1.35}

/* ============================================================
   Landing — Soluciones grid
   ============================================================ */
.solutions-grid{
  display:grid;
  grid-template-columns: 0.8fr 2.4fr;
  gap:40px;
  align-items:start;
}
.sol-intro .eyebrow{
  font-size:12.5px; font-weight:600; letter-spacing:.22em;
  color:var(--purple); text-transform:uppercase;
  margin-bottom:22px;
}
.sol-intro h2{
  font-size:36px; font-weight:700; letter-spacing:-.015em;
  line-height:1.15; margin:0 0 22px; color:var(--ink);
}
.sol-intro h2 em{color:var(--purple); font-style:italic; font-weight:700}
.sol-intro p{color:var(--muted); font-size:15px; line-height:1.65; margin:0 0 24px; max-width:340px}
.sol-link{
  display:inline-flex; align-items:center; gap:10px;
  color:var(--purple); font-weight:600; font-size:14.5px;
  border-bottom:1.5px solid var(--purple-100);
  padding-bottom:4px;
}
.sol-link:hover{border-color:var(--purple)}
.sol-link svg{width:14px;height:14px;stroke:currentColor;stroke-width:2;fill:none}

.sol-values{ display:flex; flex-direction:column; gap:16px; margin:8px 0 28px; }
.sol-value{display:flex; gap:14px; align-items:flex-start}
.sol-value .vi{
  width:36px;height:36px; border-radius:50%;
  background:var(--purple-050); color:var(--purple);
  display:inline-flex;align-items:center;justify-content:center;
  flex:none;
}
.sol-value .vi svg{width:16px;height:16px;stroke:currentColor;stroke-width:1.7;fill:none;stroke-linecap:round;stroke-linejoin:round}
.sol-value h4{margin:0 0 3px; font-size:14px; font-weight:700; color:var(--ink); line-height:1.3}
.sol-value p{margin:0; font-size:12.5px; color:var(--muted); line-height:1.45}

.sol-tag{
  margin-top:24px;
  font-family: 'Caveat', 'Kalam', cursive, sans-serif;
  font-size:22px; color:var(--purple-600);
  display:inline-flex; align-items:center; gap:10px;
  transform:rotate(-2deg); transform-origin:left center;
}
.sol-tag svg{width:80px;height:22px;stroke:currentColor;stroke-width:1.8;fill:none;stroke-linecap:round;flex:none}

.sol-cards{ display:grid; grid-template-columns:repeat(4, 1fr); gap:16px; }
.sol-card{
  position:relative;
  background:var(--bg-card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px 22px 52px;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.sol-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-card);
  border-color:var(--purple-100);
}
.sol-card .ci{
  width:52px;height:52px; border-radius:14px;
  color:#fff;
  display:inline-flex;align-items:center;justify-content:center;
  margin-bottom:20px;
  box-shadow:0 6px 16px -6px rgba(22,18,31,.25);
}
.sol-card .ci svg{width:24px;height:24px;stroke:currentColor;stroke-width:1.7;fill:none;stroke-linecap:round;stroke-linejoin:round}
.sol-card h3{margin:0 0 10px; font-size:16.5px; font-weight:700; color:var(--ink); line-height:1.25}
.sol-card p{margin:0; font-size:13px; color:var(--muted); line-height:1.55}
.sol-card .card-arrow{
  position:absolute; right:20px; bottom:18px;
  width:32px;height:32px; border-radius:50%;
  background:var(--purple-050); color:var(--purple);
  display:inline-flex;align-items:center;justify-content:center;
  transition:background .2s ease, color .2s ease, transform .2s ease;
}
.sol-card:hover .card-arrow{background:var(--purple); color:#fff; transform:translateX(2px)}
.sol-card .card-arrow svg{width:14px;height:14px;stroke:currentColor;stroke-width:2;fill:none;stroke-linecap:round;stroke-linejoin:round}

/* ============================================================
   Retos grid (Empresas) — 3 columnas
   ============================================================ */
.retos-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:20px;
}
.reto{
  background:var(--bg-card);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:28px 26px 26px;
  position:relative;
  transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease, border-color .28s ease;
  overflow:hidden;
}
.reto::before{
  content:""; position:absolute; inset:0;
  background:radial-gradient(120% 100% at 100% 0%, rgba(91,47,219,.06), transparent 55%);
  opacity:0; transition:opacity .3s ease;
  pointer-events:none;
}
.reto:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-card-hover);
  border-color:var(--purple-100);
}
.reto:hover::before{opacity:1}
.reto:hover .reto-ico{transform:scale(1.06) rotate(-3deg)}
.reto:hover .reto-ico::after{opacity:1}

.reto-ico{
  position:relative;
  width:56px; height:56px; border-radius:16px;
  color:#fff;
  display:inline-flex; align-items:center; justify-content:center;
  margin-bottom:22px;
  box-shadow:0 8px 20px -6px rgba(91,47,219,.35);
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.reto-ico::after{
  content:""; position:absolute; inset:-6px; border-radius:20px;
  background:var(--purple-050); z-index:-1;
  opacity:0; transition:opacity .3s ease;
}
.reto-ico svg{width:26px;height:26px;stroke:currentColor;stroke-width:1.7;fill:none;stroke-linecap:round;stroke-linejoin:round}
.reto h3{
  margin:0 0 10px;
  font-size:17.5px; font-weight:700; color:var(--ink);
  line-height:1.3; letter-spacing:-.005em;
}
.reto p{ margin:0; color:var(--muted); font-size:14px; line-height:1.6; }

/* ============================================================
   Industrias
   ============================================================ */
.industries-grid{
  display:grid; grid-template-columns:repeat(2, 1fr); gap:26px;
}
.industry{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-xl);
  overflow:hidden;
  display:flex; flex-direction:column;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.industry:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-card-hover);
  border-color:var(--purple-100);
}
.industry:hover .industry-media img{transform:scale(1.05)}
.industry:hover .industry-arrow{background:var(--purple); color:#fff; padding-right:22px}
.industry:hover .industry-arrow svg{transform:translateX(3px)}

.industry-media{
  position:relative;
  aspect-ratio: 16/9;
  background:#eaeaf1;
  overflow:hidden;
}
.industry-media img{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.industry-media::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(22,18,31,0) 40%, rgba(22,18,31,.35) 100%);
  pointer-events:none;
}
.industry-chip{
  position:absolute; top:20px; left:20px; z-index:2;
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.95);
  color:var(--ink); font-size:12px; font-weight:700; letter-spacing:.06em;
  padding:8px 14px; border-radius:var(--radius-pill);
  box-shadow:0 4px 10px rgba(0,0,0,.10);
  text-transform:uppercase;
}
.industry-chip .ci-dot{width:8px;height:8px;border-radius:50%;background:var(--purple)}

.industry-body{
  padding:26px 28px 26px;
  display:flex; flex-direction:column; gap:12px; flex:1;
}
.industry-body h3{
  margin:0;
  font-size:22px; font-weight:700; color:var(--ink);
  line-height:1.25; letter-spacing:-.01em;
  display:flex; align-items:center; gap:12px;
}
.industry-body h3 .emoji{font-size:22px; line-height:1}
.industry-body p{ margin:0; font-size:14.5px; color:var(--muted); line-height:1.6; flex:1; }
.industry-arrow{
  align-self:flex-start;
  display:inline-flex; align-items:center; gap:10px;
  color:var(--purple); font-weight:600; font-size:14px;
  padding:10px 16px; border-radius:var(--radius-pill);
  background:var(--purple-050);
  transition:background .25s ease, color .25s ease, padding .25s ease;
  margin-top:6px;
}
.industry-arrow svg{width:14px;height:14px;stroke:currentColor;stroke-width:2;fill:none;stroke-linecap:round;stroke-linejoin:round; transition: transform .25s ease}

/* ============================================================
   Software administrativo (banda oscura)
   ============================================================ */
.admin-section{ padding:56px 0 88px; }
.admin-band{
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(143,107,255,.22), transparent 55%),
    radial-gradient(80% 80% at 100% 100%, rgba(91,47,219,.35), transparent 60%),
    linear-gradient(120deg,#160a35 0%,#221055 45%,#33167f 100%);
  border-radius:var(--radius-xl);
  padding:64px 56px;
  color:#fff;
  position:relative; overflow:hidden;
}
.admin-band::before{
  content:""; position:absolute; left:-40px; top:-40px; width:280px; height:280px;
  background:radial-gradient(closest-side, rgba(255,255,255,.10), transparent 70%);
  pointer-events:none;
}
.admin-band::after{
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: -1px -1px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events:none;
}
.admin-inner{position:relative; z-index:1}
.admin-head{
  display:grid; grid-template-columns: 1.05fr 1.15fr;
  gap:44px; align-items:center; margin-bottom:44px;
}
.admin-copy .admin-eyebrow{
  display:inline-block;
  font-size:11.5px; font-weight:700; letter-spacing:.24em; text-transform:uppercase;
  color:#fff;
  padding:8px 14px; border-radius:var(--radius-pill);
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  margin-bottom:22px;
}
.admin-copy h2{
  margin:0 0 18px;
  font-size:38px; font-weight:700; line-height:1.15; letter-spacing:-.015em;
  text-wrap:balance;
}
.admin-copy h2 em{color:#c9b5ff; font-style:italic; font-weight:700}
.admin-copy p{
  margin:0 0 22px;
  color:#c9c2e0; font-size:15.5px; line-height:1.65;
  max-width:480px;
}

/* módulos chips */
.admin-modules{
  display:flex; flex-wrap:wrap; gap:8px; margin-bottom:12px;
  max-width:520px;
}
.admin-mod{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.14);
  color:#e6dcff; font-size:12.5px; font-weight:600;
  padding:8px 14px; border-radius:var(--radius-pill);
  transition: background .2s ease, transform .2s ease;
}
.admin-mod:hover{background:rgba(255,255,255,.13); transform:translateY(-1px)}
.admin-mod .dot{width:6px;height:6px;border-radius:50%;background:#c9b5ff}

.admin-mockup{ position:relative; }
.admin-mockup img{
  width:100%; height:auto; display:block;
  border-radius:var(--radius-lg);
  filter:drop-shadow(0 30px 40px rgba(0,0,0,.35));
}
.admin-badge{
  position:absolute; top:-14px; right:-8px;
  background:#fff; color:var(--ink);
  padding:10px 14px 10px 12px;
  border-radius:14px;
  box-shadow:0 12px 26px rgba(0,0,0,.22);
  display:flex; align-items:center; gap:10px;
  font-size:12.5px; font-weight:600; line-height:1.25;
  max-width:200px;
}
.admin-badge .bi{
  width:26px;height:26px; border-radius:50%;
  background:var(--purple-050); color:var(--purple);
  display:inline-flex;align-items:center;justify-content:center;
  flex:none;
}
.admin-badge .bi svg{width:14px;height:14px;stroke:currentColor;stroke-width:2;fill:none;stroke-linecap:round;stroke-linejoin:round}
.admin-badge .bt{font-weight:700; display:block; color:var(--purple)}
.admin-badge .bs{color:var(--muted); font-weight:500; font-size:11.5px; display:block}

.admin-benefits{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:16px;
  margin-bottom:36px;
}
.abn{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius);
  padding:22px;
  color:#fff;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.abn:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.18);
  transform:translateY(-3px);
}
.abn .abi{
  width:44px; height:44px; border-radius:12px;
  background:linear-gradient(135deg, rgba(201,181,255,.28), rgba(143,107,255,.22));
  border:1px solid rgba(255,255,255,.14);
  color:#e6dcff;
  display:inline-flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.abn .abi svg{width:20px;height:20px;stroke:currentColor;stroke-width:1.7;fill:none;stroke-linecap:round;stroke-linejoin:round}
.abn h4{margin:0 0 6px; font-size:15px; font-weight:700; color:#fff; letter-spacing:-.005em}
.abn p{margin:0; font-size:13px; color:#c9c2e0; line-height:1.55}

.admin-cta-row{
  display:flex; align-items:center; gap:14px; flex-wrap:wrap;
  justify-content:center;
}
.admin-cta{
  display:inline-flex; align-items:center; gap:10px;
  background:#3d17a3; color:#fff;
  padding:14px 24px; border-radius:var(--radius-pill);
  font-weight:600; font-size:14px;
  box-shadow:0 8px 22px rgba(61,23,163,.55);
  transition:background .2s ease, transform .15s ease;
}
.admin-cta:hover{background:#4a1ec2; transform:translateY(-1px)}
.admin-cta .ico-circle{width:24px;height:24px;background:rgba(255,255,255,.14);border-radius:50%;display:inline-flex;align-items:center;justify-content:center}
.admin-cta .arrow{width:12px;height:12px;stroke:#fff;stroke-width:2;fill:none;stroke-linecap:round;stroke-linejoin:round}

/* ============================================================
   Metodología (landing)
   ============================================================ */
.method{
  background:var(--bg-soft);
  border-radius:var(--radius-xl);
  padding:56px 40px 60px;
}
.method h2{
  text-align:center; margin:0 0 56px;
  font-size:30px; font-weight:700; color:var(--ink);
}
.steps{
  display:grid; grid-template-columns:repeat(5, 1fr); gap:8px;
  position:relative;
}
.steps::before{
  content:"";
  position:absolute;
  top:44px; left:10%; right:10%;
  border-top:1.5px dashed var(--purple-100);
  z-index:0;
}
.step{ text-align:center; position:relative; z-index:1; padding:0 8px; }
.step .sc{
  width:88px;height:88px; border-radius:50%;
  background:#fff; border:1.5px solid var(--line);
  color:var(--purple);
  display:inline-flex;align-items:center;justify-content:center;
  margin-bottom:22px;
  box-shadow:0 4px 10px rgba(91,47,219,.04);
}
.step .sc svg{width:30px;height:30px;stroke:currentColor;stroke-width:1.5;fill:none;stroke-linecap:round;stroke-linejoin:round}
.step h4{margin:0 0 8px; font-size:15px; font-weight:700; color:var(--ink)}
.step p{margin:0 auto; font-size:13px; color:var(--muted); max-width:180px; line-height:1.55}

/* ============================================================
   CTA banner (landing)
   ============================================================ */
.cta-banner{
  margin:24px 0 0;
  background:linear-gradient(105deg, #3d17a3 0%, #5b2fdb 55%, #6f47e6 100%);
  border-radius:var(--radius-xl);
  padding:38px 44px;
  color:#fff;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  position:relative; overflow:hidden;
}
.cta-banner::before{
  content:""; position:absolute; left:-40px; top:-30px; bottom:-30px; width:280px;
  background:
    radial-gradient(closest-side, rgba(255,255,255,.08), transparent 70%),
    radial-gradient(closest-side, rgba(255,255,255,.05), transparent 70%);
  background-position: 0 0, 60px 40px;
  background-size: 160px 160px, 160px 160px;
  opacity:.8;
}
.cta-banner::after{
  content:""; position:absolute; right:-60px; top:-40px; bottom:-40px; width:320px;
  background: radial-gradient(closest-side, rgba(255,255,255,.10), transparent 70%);
  opacity:.4;
}
.cta-banner .cta-copy{position:relative; z-index:1}
.cta-banner h3{margin:0; font-size:24px; font-weight:700; line-height:1.25; max-width:640px; letter-spacing:-.01em}
.cta-banner .btn{position:relative; z-index:1; background:#fff; color:var(--purple); box-shadow:none}
.cta-banner .btn:hover{background:#f4efff; color:var(--purple-600)}
.cta-banner .btn .ico-circle{background:var(--purple-050); color:var(--purple)}
.cta-nodes{
  position:absolute; inset:0; z-index:0; pointer-events:none;
  opacity:.35;
}

/* ============================================================
   Final CTA (empresas / contacto)
   ============================================================ */
.final-cta{ padding:64px 0 96px; }
.final-inner{
  background:var(--bg-soft);
  border-radius:var(--radius-xl);
  padding:64px 56px;
  text-align:center;
  position:relative; overflow:hidden;
}
.final-inner::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(80% 100% at 0% 0%, rgba(91,47,219,.10), transparent 55%),
    radial-gradient(80% 100% at 100% 100%, rgba(91,47,219,.06), transparent 55%);
  pointer-events:none;
}
.final-inner > *{position:relative}
.final-inner .sec-eyebrow{background:#fff}
.final-inner h2{
  margin:0 0 18px;
  font-size:40px; font-weight:700; letter-spacing:-.02em; line-height:1.15;
  color:var(--ink); text-wrap:balance;
  max-width:800px; margin-left:auto; margin-right:auto;
}
.final-inner h2 em{color:var(--purple); font-style:italic; font-weight:700}
.final-inner p{
  max-width:640px; margin:0 auto 32px;
  color:var(--muted); font-size:16px; line-height:1.65; text-wrap:pretty;
}
.final-ctas{ display:flex; gap:14px; flex-wrap:wrap; justify-content:center; }
.final-trust{
  margin-top:36px;
  display:inline-flex; align-items:center; gap:10px;
  font-size:13px; color:var(--muted-2); font-weight:500;
}
.final-trust .dot{width:6px;height:6px;border-radius:50%;background:#25d366; box-shadow:0 0 0 4px rgba(37,211,102,.14)}

/* ============================================================
   Nosotros
   ============================================================ */
.about-hero{ padding:32px 0 40px; }
.about-hero h1{
  font-size:56px; line-height:1.05; letter-spacing:-.02em; font-weight:700;
  margin:0 0 22px; color:var(--ink); text-wrap:balance; max-width:820px;
}
.about-hero h1 em{color:var(--purple); font-style:italic; font-weight:600}
.about-hero p{
  color:var(--muted); font-size:17px; line-height:1.65; margin:0; max-width:640px;
}

.values-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:20px;
}
.value-card{
  background:#fff; border:1px solid var(--line);
  border-radius:var(--radius-lg); padding:30px 28px;
  transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease, border-color .28s ease;
}
.value-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-card-hover);
  border-color:var(--purple-100);
}
.value-card .vi-lg{
  width:52px;height:52px;border-radius:14px;
  color:#fff; display:inline-flex; align-items:center; justify-content:center;
  margin-bottom:20px; box-shadow:0 8px 20px -6px rgba(91,47,219,.30);
}
.value-card .vi-lg svg{width:24px;height:24px;stroke:currentColor;stroke-width:1.7;fill:none;stroke-linecap:round;stroke-linejoin:round}
.value-card h3{margin:0 0 8px; font-size:18px; font-weight:700; color:var(--ink)}
.value-card p{margin:0; color:var(--muted); font-size:14px; line-height:1.6}

/* Metrics strip */
.metrics-strip{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:20px;
  background:var(--bg-soft);
  border-radius:var(--radius-xl);
  padding:44px 40px;
}
.mstrip{ text-align:center; }
.mstrip .num{font-size:44px; font-weight:800; color:var(--purple); line-height:1; letter-spacing:-.02em}
.mstrip .lbl{font-size:13px; color:var(--muted); margin-top:10px; line-height:1.4}

/* ============================================================
   Contacto — form + info
   ============================================================ */
.contact-grid{
  display:grid; grid-template-columns: 1.1fr 1fr; gap:40px; align-items:stretch;
}
.contact-info{
  background: linear-gradient(160deg, #221055 0%, #33167f 100%);
  color:#fff;
  border-radius:var(--radius-xl);
  padding:44px 40px;
  position:relative; overflow:hidden;
}
.contact-info::before{
  content:""; position:absolute; right:-60px; top:-60px; width:260px; height:260px;
  background: radial-gradient(closest-side, rgba(143,107,255,.35), transparent 70%);
  pointer-events:none;
}
.contact-info h2{
  margin:0 0 14px; font-size:30px; font-weight:700; letter-spacing:-.01em;
  position:relative;
}
.contact-info h2 em{color:#c9b5ff; font-style:italic}
.contact-info > p{
  color:#c9c2e0; font-size:15px; line-height:1.65; margin:0 0 32px; max-width:420px;
  position:relative;
}
.ci-line{
  display:flex; align-items:flex-start; gap:14px;
  padding:14px 0; border-top:1px solid rgba(255,255,255,.10);
  position:relative;
}
.ci-line:last-child{border-bottom:1px solid rgba(255,255,255,.10)}
.ci-line .ico{
  width:38px;height:38px; border-radius:12px;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12);
  color:#e6dcff; flex:none;
  display:inline-flex;align-items:center;justify-content:center;
}
.ci-line .ico svg{width:16px;height:16px;stroke:currentColor;stroke-width:1.7;fill:none;stroke-linecap:round;stroke-linejoin:round}
.ci-line .lbl{font-size:11.5px; letter-spacing:.14em; text-transform:uppercase; color:#a8a2c8; font-weight:600}
.ci-line .val{font-size:15px; font-weight:600; color:#fff; margin-top:3px; display:block}
.ci-line .val a:hover{color:#c9b5ff}
.contact-socials{ display:flex; gap:10px; margin-top:24px; position:relative; }
.contact-socials .soc{ box-shadow:0 4px 12px rgba(0,0,0,.20); }

.contact-form{
  background:#fff; border:1px solid var(--line);
  border-radius:var(--radius-xl);
  padding:44px 40px;
  box-shadow: 0 12px 40px -20px rgba(60,20,140,.15);
}
.contact-form h2{
  margin:0 0 8px; font-size:26px; font-weight:700; color:var(--ink); letter-spacing:-.01em;
}
.contact-form > p{
  margin:0 0 26px; color:var(--muted); font-size:14.5px; line-height:1.6;
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px; }
.form-field{ display:flex; flex-direction:column; gap:6px; }
.form-field label{ font-size:12.5px; font-weight:600; color:var(--ink-2); letter-spacing:.02em; }
.form-field input, .form-field select, .form-field textarea{
  font-family:inherit; font-size:14.5px; color:var(--ink);
  background:#fff; border:1.5px solid var(--line-2);
  border-radius:12px; padding:12px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
  outline:none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  border-color:var(--purple);
  box-shadow: 0 0 0 4px rgba(91,47,219,.10);
}
.form-field textarea{ min-height:120px; resize:vertical; }
.form-consent{ font-size:12.5px; color:var(--muted); margin:8px 0 20px; line-height:1.55; }
.form-consent input{ margin-right:8px; accent-color: var(--purple); }
.form-submit{ display:flex; gap:12px; align-items:center; flex-wrap:wrap; }

/* ============================================================
   Blog (placeholder simple)
   ============================================================ */
.blog-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:22px;
}
.blog-card{
  background:#fff; border:1px solid var(--line);
  border-radius:var(--radius-lg); overflow:hidden;
  display:flex; flex-direction:column;
  transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease, border-color .28s ease;
}
.blog-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-card-hover);
  border-color:var(--purple-100);
}
.blog-media{
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #f1ecfd 0%, #e5dcfb 100%);
  position:relative;
  display:flex; align-items:center; justify-content:center;
}
.blog-media .bg-icon{ opacity:.4; color:var(--purple); }
.blog-media .bg-icon svg{ width:60px; height:60px; stroke:currentColor; stroke-width:1.4; fill:none; }
.blog-body{padding:22px 24px 24px}
.blog-tag{
  font-size:11.5px; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  color:var(--purple); margin-bottom:10px;
}
.blog-card h3{margin:0 0 8px; font-size:17px; font-weight:700; color:var(--ink); line-height:1.3; letter-spacing:-.005em}
.blog-excerpt{margin:0 0 14px; font-size:13.5px; color:var(--muted); line-height:1.55}
.blog-meta{
  display:flex; justify-content:space-between; align-items:center;
  padding-top:14px; border-top:1px solid var(--line);
  font-size:12px; color:var(--muted-2);
}
.blog-meta .read-link{ color:var(--purple); font-weight:600; }

.blog-empty{
  text-align:center; padding:60px 20px;
  background:var(--bg-soft); border-radius:var(--radius-xl);
  color:var(--muted);
}
.blog-empty h3{ margin:0 0 10px; color:var(--ink); font-size:22px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer{
  margin-top:0;
  background:#0f0b1c;
  color:#c8c6d4;
  padding:56px 0 28px;
}
.foot-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap:40px;
}
.foot-brand p{margin:16px 0 0; font-size:13px; color:#8f8ba7; max-width:280px; line-height:1.6}
.foot h5{ color:#fff; margin:6px 0 18px; font-size:13px; font-weight:700; letter-spacing:.02em; }
.foot ul{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px}
.foot ul a{color:#c8c6d4; font-size:13.5px}
.foot ul a:hover{color:#fff}
.foot .contact-line{display:flex; align-items:center; gap:12px; font-size:13.5px; margin-bottom:10px}
.foot .contact-line svg{width:16px;height:16px;stroke:#a8a4c1;stroke-width:1.6;fill:none;flex:none}
.socials{display:flex; gap:10px; margin-top:6px}
.soc{
  width:34px;height:34px; border-radius:50%;
  background:#5b2fdb; color:#fff;
  display:inline-flex; align-items:center; justify-content:center;
  transition: transform .2s ease, background .2s ease;
}
.soc:hover{ transform:translateY(-2px); background:#4a1ec2; }
.soc svg{width:16px;height:16px;fill:currentColor}
.soc.wa{background:#25d366}
.soc.wa:hover{background:#1fbd5b}
.foot-bottom{
  margin-top:44px; padding-top:22px;
  border-top:1px solid #241d3a;
  display:flex; justify-content:space-between; align-items:center;
  font-size:12.5px; color:#7b7898;
  flex-wrap:wrap; gap:14px;
}
.foot-bottom a{margin-left:24px}
.foot-bottom a:hover{color:#fff}

/* Floating WhatsApp */
.fab{
  position:fixed; right:22px; bottom:22px; z-index:60;
  width:56px;height:56px; border-radius:50%;
  background:#25d366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 26px rgba(37,211,102,.35);
  cursor:pointer;
  transition: transform .2s ease;
}
.fab:hover{transform:scale(1.06)}
.fab svg{width:28px;height:28px;fill:currentColor}

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal{
  opacity:0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in{ opacity:1; transform: translateY(0); }
.reveal.delay-1{transition-delay:.08s}
.reveal.delay-2{transition-delay:.16s}
.reveal.delay-3{transition-delay:.24s}
.reveal.delay-4{transition-delay:.32s}
.reveal.delay-5{transition-delay:.40s}
.reveal.delay-6{transition-delay:.48s}

@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none; transition:none}
  html{scroll-behavior:auto}
}

/* ============================================================
   PILARES (Hero support band)
   ============================================================ */
.pillars-section{
  padding: 72px 0 24px;
}
.pillars-grid{
  display:grid; grid-template-columns:repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:#fff;
}
.pillar{
  position:relative;
  padding: 44px 32px 40px;
  display:flex; flex-direction:column;
  gap: 14px;
  border-right: 1px solid var(--line);
  transition: background .35s ease, transform .35s cubic-bezier(.2,.7,.2,1);
  overflow:hidden;
}
.pillar:last-child{ border-right: 0; }

/* barra superior morada revelada en hover */
.pillar::before{
  content:"";
  position:absolute; top:0; left:0; right:0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple) 0%, #8f6bff 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.pillar:hover::before{ transform: scaleX(1); }
.pillar:hover{
  background: #fafafd;
}
.pillar:hover .pillar-ico{
  color: var(--purple);
  transform: translateY(-3px);
}
.pillar:hover .pillar-num{
  color: var(--purple);
  opacity: 1;
}

.pillar-num{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--muted-2);
  opacity: .7;
  font-family: 'Manrope', ui-monospace, monospace;
  transition: color .35s ease, opacity .35s ease;
}
.pillar-ico{
  display:inline-flex;
  align-items:center; justify-content:center;
  width: 44px; height: 44px;
  color: var(--ink);
  transition: color .35s ease, transform .35s cubic-bezier(.2,.7,.2,1);
  margin-bottom: 2px;
}
.pillar-ico svg{
  width: 32px; height: 32px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pillar h3{
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.005em;
  line-height: 1.3;
}
.pillar p{
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   QUOTE BAND (frase destacada)
   ============================================================ */
.quote-band-section{
  padding: 56px 0 96px;
}
.quote-band{
  position: relative;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(143,107,255,.14), transparent 60%),
    radial-gradient(120% 100% at 100% 100%, rgba(91,47,219,.10), transparent 60%),
    linear-gradient(135deg, #f7f3ff 0%, #efe8ff 100%);
  border: 1px solid var(--purple-100);
  border-radius: var(--radius-xl);
  padding: 56px 72px;
  overflow: hidden;
  text-align: center;
}
.quote-band::before{
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--purple) 0%, #8f6bff 100%);
}
.quote-mark{
  width: 44px; height: 36px;
  fill: var(--purple);
  opacity: .22;
  margin-bottom: 20px;
}
.quote-band p{
  margin: 0 auto;
  max-width: 880px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -.01em;
  text-wrap: balance;
  font-family: 'Manrope', system-ui, sans-serif;
}
.quote-em{
  color: var(--purple);
  font-weight: 700;
  font-style: italic;
}

/* Segundo párrafo del hero — separación */
.hero-lead-2{ margin-top: -16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px){
  h1.hero-title, .about-hero h1{font-size:48px}
  .hero-grid{grid-template-columns:1fr; gap:36px}
  .hero-right{min-height:420px}
  .pillars-grid{grid-template-columns:repeat(2, 1fr)}
  .pillar{border-right: 1px solid var(--line)}
  .pillar:nth-child(2n){border-right: 0}
  .pillar:nth-child(-n+2){border-bottom: 1px solid var(--line)}
  .quote-band{padding: 44px 40px}
  .quote-band p{font-size: 22px}
  .challenges{grid-template-columns:repeat(4, 1fr)}
  .solutions-grid{grid-template-columns:1fr}
  .sol-cards{grid-template-columns:repeat(2, 1fr)}
  .retos-grid{grid-template-columns:repeat(2, 1fr)}
  .industries-grid{grid-template-columns:1fr}
  .steps{grid-template-columns:repeat(5, 1fr); gap:4px}
  .admin-head{grid-template-columns:1fr; gap:30px}
  .admin-benefits{grid-template-columns:repeat(2, 1fr)}
  .admin-band{padding:44px 28px}
  .metrics-strip{grid-template-columns:repeat(2, 1fr)}
  .contact-grid{grid-template-columns:1fr}
  .blog-grid{grid-template-columns:repeat(2, 1fr)}
  .foot-grid{grid-template-columns:1fr 1fr}
  .values-grid{grid-template-columns:1fr}
  .nav-links{display:none}
  .nav-toggle{display:inline-flex}
  .nav.open .nav-links{
    display:flex; position:absolute; top:100%; left:0; right:0;
    flex-direction:column; gap:0;
    background:#fff; border-bottom:1px solid var(--line);
    padding:12px 24px 20px;
  }
  .nav.open .nav-links a{padding:14px 0; border-bottom:1px solid var(--line)}
  .nav.open .nav-links a:last-child{border-bottom:0}
  .sec-head h2, .final-inner h2{font-size:32px}
  .admin-copy h2{font-size:30px}
  .section{padding:64px 0}
  .final-inner{padding:44px 28px}
}

@media (max-width: 640px){
  .container{padding:0 20px}
  .nav-inner{height:80px}
  .brand-logo{height:52px}
  h1.hero-title, .about-hero h1{font-size:34px; margin-bottom:20px}
  .pillars-grid{grid-template-columns:1fr}
  .pillar{border-right: 0 !important; border-bottom: 1px solid var(--line); padding: 32px 24px}
  .pillar:last-child{border-bottom: 0}
  .pillars-section{padding: 48px 0 12px}
  .quote-band-section{padding: 40px 0 64px}
  .quote-band{padding: 36px 24px}
  .quote-band p{font-size: 18px; line-height: 1.5}
  .quote-mark{width:32px; height:26px; margin-bottom:14px}
  .hero-lead-2{margin-top: -12px}
  .hero-lead, .about-hero p{font-size:15px}
  .hero-lead{margin-bottom:28px}
  .hero{padding:20px 0 48px}
  .hero-mini-stats{gap:20px}
  .mini-stat .mv{font-size:18px}
  .retos-grid, .sol-cards{grid-template-columns:1fr}
  .admin-band{padding:36px 22px}
  .admin-copy h2{font-size:26px}
  .admin-benefits{grid-template-columns:1fr}
  .sec-head h2, .final-inner h2{font-size:28px}
  .final-inner{padding:36px 22px}
  .metrics-strip{grid-template-columns:1fr; padding:32px 20px}
  .mstrip .num{font-size:36px}
  .blog-grid{grid-template-columns:1fr}
  .contact-info, .contact-form{padding:32px 26px}
  .contact-info h2, .contact-form h2{font-size:22px}
  .form-row{grid-template-columns:1fr}
  .foot-grid{grid-template-columns:1fr; gap:32px}
  .foot-bottom{flex-direction:column; align-items:flex-start; gap:10px}
  .foot-bottom a{margin-left:0; margin-right:20px}
  .nav-cta .btn:not(.nav-toggle){display:none}
  .float-badge{display:none}
  .industry-body{padding:22px 22px}
  .industry-body h3{font-size:19px}
  .challenges{grid-template-columns:repeat(2, 1fr)}
  .steps{grid-template-columns:1fr; gap:24px}
  .steps::before{display:none}
  .cta-banner{flex-direction:column; align-items:flex-start; padding:28px 24px}
  .cta-banner h3{font-size:20px}
}
