/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:       #1A7EC4;
  --brand-dark:  #1261A0;
  --brand-light: #3A9EE0;
  --brand-pale:  #E8F4FC;

  --green:       #2E7D32;
  --green-bg:    rgba(46,125,50,0.1);
  --red:         #C62828;
  --red-bg:      rgba(198,40,40,0.1);
  --yellow:      #E8A000;
  --yellow-bg:   rgba(249,168,37,0.12);
  --blue-sign:   #1565C0;
  --blue-sign-bg:rgba(21,101,192,0.1);

  --deep:        #080E18;
  --deep-mid:    #0D1929;
  --deep-card:   #101E30;
  --white:       #FAFAFA;
  --off-white:   #F1F4F8;

  --txt-1:       #0A1628;
  --txt-2:       #3A4F6B;
  --txt-3:       #7A8EAB;

  --border:      rgba(10,22,40,0.09);
  --border-dark: rgba(255,255,255,0.07);

  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px; line-height: 1.6;
  color: var(--txt-1); background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--txt-1);
}

/* ── Scroll progress ── */
.progress-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; background: var(--brand);
  transform-origin: left; transform: scaleX(0);
  z-index: 200; transition: transform 0.1s linear;
  box-shadow: 0 0 8px rgba(26,126,196,0.5);
}

/* ── FAB WhatsApp ── */
.fab-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  display: flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 13px 18px; border-radius: 100px;
  text-decoration: none; font-size: 14px; font-weight: 600;
  box-shadow: 0 8px 28px rgba(37,211,102,0.35);
  transition: all 0.25s var(--ease);
}
.fab-wa:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 36px rgba(37,211,102,0.45);
}
.fab-wa:active { transform: scale(0.97); }
.fab-wa__label { font-weight: 600; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: var(--r-sm);
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.22s var(--ease);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 4px 18px rgba(26,126,196,0.32);
}
.btn--primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 6px 26px rgba(26,126,196,0.44);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.13); color: #fff;
  border-color: rgba(255,255,255,0.25);
}

.btn--whatsapp {
  background: #25D366; color: #fff;
  box-shadow: 0 4px 18px rgba(37,211,102,0.28);
}
.btn--whatsapp:hover { background: #1eb958; transform: translateY(-1px); }

.btn--outline {
  background: transparent; color: var(--brand);
  border: 1.5px solid rgba(26,126,196,0.35);
}
.btn--outline:hover { background: var(--brand-pale); border-color: var(--brand); }

.btn--glass {
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn--glass:hover { background: rgba(255,255,255,0.13); color: #fff; }

.btn--lg { padding: 15px 30px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: all 0.35s var(--ease);
}
.navbar.scrolled {
  background: rgba(250,250,250,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 24px rgba(10,22,40,0.05);
}

.nav__inner { display: flex; align-items: center; justify-content: space-between; }

.nav__logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.nav__diamond { flex-shrink: 0; }
.nav__brand {
  font-size: 15px; font-weight: 600; letter-spacing: 0.01em;
  color: #fff; transition: color 0.35s var(--ease);
}
.nav__brand em { font-style: normal; color: var(--brand-light); transition: color 0.35s var(--ease); }
.nav__brand strong { font-weight: 800; letter-spacing: 0.04em; }
.navbar.scrolled .nav__brand { color: var(--txt-1); }
.navbar.scrolled .nav__brand em { color: var(--brand); }

.nav__links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav__links a {
  text-decoration: none; color: rgba(255,255,255,0.7);
  font-size: 14px; font-weight: 500;
  padding: 7px 14px; border-radius: 8px;
  transition: all 0.18s;
}
.nav__links a:hover { color: #fff; background: rgba(255,255,255,0.09); }
.nav__links a.active { color: #fff; }
.navbar.scrolled .nav__links a { color: var(--txt-2); }
.navbar.scrolled .nav__links a:hover { color: var(--txt-1); background: var(--off-white); }
.navbar.scrolled .nav__links a.active { color: var(--brand); }

.nav__cta {
  background: var(--brand) !important; color: #fff !important;
  padding: 8px 18px !important; border-radius: 8px !important;
  font-weight: 600 !important; box-shadow: 0 3px 12px rgba(26,126,196,0.3) !important;
}
.nav__cta:hover { background: var(--brand-dark) !important; }

.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all 0.25s var(--ease), background 0.35s var(--ease);
}
.navbar.scrolled .nav__burger span { background: var(--txt-1); }

/* ── HERO ── */
.hero {
  min-height: 100dvh;
  display: flex; align-items: center;
  position: relative; background: var(--deep);
  overflow: hidden; padding: 130px 0 100px;
}

/* Mesh blobs */
.hero__blobs { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.18;
  animation: blob-drift 12s ease-in-out infinite alternate;
  will-change: transform;
}
.blob-1 {
  width: 600px; height: 600px; top: -150px; right: -100px;
  background: radial-gradient(circle, #1A7EC4, #0A3D6B);
  animation-duration: 14s;
}
.blob-2 {
  width: 400px; height: 400px; bottom: -100px; left: -80px;
  background: radial-gradient(circle, #1565C0, #0E4F8A);
  animation-duration: 18s; animation-delay: -6s;
}
.blob-3 {
  width: 300px; height: 300px; top: 40%; left: 35%;
  background: radial-gradient(circle, #2E7D32, #1B5E20);
  opacity: 0.08; animation-duration: 22s; animation-delay: -3s;
}
@keyframes blob-drift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(30px, -20px) scale(1.05); }
  66%  { transform: translate(-20px, 30px) scale(0.95); }
  100% { transform: translate(10px, -10px) scale(1.02); }
}

/* Grid overlay */
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,126,196,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,126,196,0.06) 1px, transparent 1px);
  background-size: 52px 52px;
}

/* Noise texture */
.hero__noise {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}

/* Hero badge */
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,126,196,0.12);
  border: 1px solid rgba(26,126,196,0.28);
  color: rgba(58,158,224,0.9);
  font-size: 11px; font-weight: 600;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 28px; letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.badge-pulse {
  width: 7px; height: 7px;
  background: var(--brand-light); border-radius: 50%;
  animation: pulse-dot 2.2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(58,158,224,0.5);
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(58,158,224,0.5); opacity:1; }
  70%  { box-shadow: 0 0 0 6px rgba(58,158,224,0); opacity:0.7; }
  100% { box-shadow: 0 0 0 0 rgba(58,158,224,0); opacity:1; }
}

/* Hero title with clip-path reveal */
.hero__title {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 900; color: #fff;
  letter-spacing: -0.035em; line-height: 1.04;
  margin-bottom: 22px;
  display: flex; flex-direction: column; gap: 2px;
}
.hero__title-line {
  display: block; overflow: hidden;
  clip-path: inset(0 0 100% 0);
  animation: clip-reveal 0.7s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
.hero__title-accent {
  color: var(--brand-light);
  position: relative; display: inline-block;
}
@keyframes clip-reveal {
  to { clip-path: inset(0 0 0% 0); }
}

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

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }

/* Stats with divider */
.hero__stats {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.stat { display: flex; flex-direction: column; gap: 3px; }
.stat__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px; font-weight: 600; color: #fff;
  letter-spacing: -0.03em; line-height: 1;
}
.stat__label {
  font-size: 11px; color: rgba(255,255,255,0.38);
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em;
}

/* ── Sign float grid (hero visual) ── */
.hero__visual { display: flex; justify-content: center; align-items: center; }

.sign-float-grid {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; padding: 8px;
}

.float-card {
  border-radius: var(--r-md);
  overflow: hidden;
  animation: float-anim 4s ease-in-out infinite alternate;
  animation-delay: var(--delay, 0s);
  transition: transform 0.25s var(--ease);
  cursor: default;
  will-change: transform;
}
.float-card:hover { transform: scale(1.04) translateY(-4px) !important; }

@keyframes float-anim {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.sf-card { padding: 20px 16px 14px; display: flex; flex-direction: column; gap: 8px; }
.sf-card__body { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.sf-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.18);
}
.sf-text {
  font-family: 'Outfit', sans-serif; font-size: 9.5px; font-weight: 800;
  letter-spacing: 0.09em; text-align: center; line-height: 1.3;
  color: #fff; text-transform: uppercase;
}
.sf-card__footer {
  font-family: 'JetBrains Mono', monospace; font-size: 9px;
  text-align: center; color: rgba(255,255,255,0.55); letter-spacing: 0.04em;
}

.sf-green   { background: linear-gradient(145deg, #2E7D32, #1B5E20); }
.sf-red     { background: linear-gradient(145deg, #C62828, #7F0000); }
.sf-yellow  { background: linear-gradient(145deg, #F9A825, #E65100); }
.sf-blue-sign { background: linear-gradient(145deg, #1565C0, #0D47A1); }

.sf-norm-badge {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: rgba(255,255,255,0.3); letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 0;
}
.sf-norm-dot { width: 6px; height: 6px; background: var(--brand-light); border-radius: 50%; opacity: 0.6; }

/* ── Scroll hint ── */
.hero__scroll-hint {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-pill {
  width: 26px; height: 42px;
  border: 1.5px solid rgba(255,255,255,0.18); border-radius: 13px;
  display: flex; align-items: flex-start; justify-content: center; padding-top: 6px;
}
.scroll-pill span {
  width: 3px; height: 9px; background: rgba(255,255,255,0.45); border-radius: 2px;
  animation: scroll-anim 2.2s ease-in-out infinite;
}
.hero__scroll-hint > span {
  font-size: 10px; color: rgba(255,255,255,0.25); letter-spacing: 0.12em; text-transform: uppercase;
}
@keyframes scroll-anim {
  0%  { opacity: 1; transform: translateY(0); }
  80% { opacity: 0; transform: translateY(12px); }
  100%{ opacity: 0; transform: translateY(0); }
}

/* ── Marquee ── */
.marquee-strip { background: var(--brand); padding: 12px 0; overflow: hidden; }
.marquee-track {
  display: flex; gap: 36px; white-space: nowrap;
  animation: marquee-scroll 34s linear infinite; width: max-content;
}
.marquee-track span {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.88); text-transform: uppercase;
}
.marquee-track .dot { color: rgba(255,255,255,0.4); font-size: 7px; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Section base ── */
.section { padding: 108px 0; }
.section:nth-child(even) { background: var(--off-white); }

.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 14px;
}

.section-title {
  font-size: clamp(30px, 3.8vw, 48px); font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 18px; line-height: 1.1;
}
.title-dim { color: var(--txt-3); font-weight: 700; }

.section-desc { font-size: 17px; color: var(--txt-3); line-height: 1.65; max-width: 600px; }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 72px; }
.section-header .section-desc { margin: 0 auto; }

/* ── Bento grid ── */
.catalogo { background: var(--white); }

.bento {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 14px;
}

.bento__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative; overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.bento__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10,22,40,0.1);
  border-color: rgba(26,126,196,0.18);
}

/* Spotlight glow */
.bento__card-glow {
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(380px circle at var(--mx,50%) var(--my,50%), rgba(26,126,196,0.08), transparent 70%);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.bento__card:hover .bento__card-glow { opacity: 1; }

/* Tilt cards — 3D perspective applied via JS */
.tilt-card { transform-style: preserve-3d; }
.bento__card-inner { position: relative; z-index: 1; }

.bento__card--featured {
  grid-row: 1 / 4;
  background: var(--deep-mid);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.bento__card--featured:hover { border-color: rgba(26,126,196,0.3); }
.bento__card--featured h3 { color: #fff; font-size: 22px; }
.bento__card--featured p { color: rgba(255,255,255,0.55); }
.bento__card--featured .bento__link { color: var(--brand-light); }

/* Animated gradient border on featured */
.bento__card--featured::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: conic-gradient(from 180deg at 50% 50%, var(--brand) 0deg, transparent 60deg, var(--brand-light) 180deg, transparent 240deg, var(--brand) 360deg);
  z-index: 0; opacity: 0; transition: opacity 0.4s;
  padding: 1px; mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out; mask-composite: exclude;
  animation: border-spin 4s linear infinite paused;
}
.bento__card--featured:hover::after { opacity: 1; animation-play-state: running; }
@keyframes border-spin { to { rotate: 360deg; } }

.bento__card--accent {
  background: linear-gradient(135deg, var(--brand-pale), #fff);
  border-color: rgba(26,126,196,0.15);
}

.bento__card--download {
  background: var(--off-white); border-style: dashed;
}
.bento__card-inner--center {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 12px; height: 100%;
}
.bento__card-inner--center p { font-size: 14px; color: var(--txt-3); }
.download-icon { color: var(--brand); }

/* Bento tags */
.bento__tag {
  display: inline-flex; align-items: center;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  font-weight: 600; letter-spacing: 0.08em;
  background: var(--brand-pale); color: var(--brand);
  padding: 3px 9px; border-radius: 5px; text-transform: uppercase;
  margin-bottom: 16px;
}
.bento__tag--red    { background: var(--red-bg);      color: var(--red); }
.bento__tag--yellow { background: var(--yellow-bg);   color: var(--yellow); }
.bento__tag--blue   { background: var(--blue-sign-bg); color: var(--blue-sign); }

/* Icons */
.bento__icon {
  width: 52px; height: 52px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; background: var(--brand-pale); color: var(--brand);
}
.bento__icon--green  { background: var(--green-bg);      color: var(--green); }
.bento__icon--red    { background: var(--red-bg);         color: var(--red); }
.bento__icon--yellow { background: var(--yellow-bg);      color: var(--yellow); }
.bento__icon--blue   { background: var(--blue-sign-bg);   color: var(--blue-sign); }
.bento__icon--brand  { background: var(--brand-pale);     color: var(--brand); }
.bento__card--featured .bento__icon { background: rgba(26,126,196,0.18); color: var(--brand-light); }

.bento__card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.bento__card p { font-size: 14px; color: var(--txt-3); line-height: 1.6; margin-bottom: 14px; }

.bento__norm {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: rgba(58,158,224,0.7); letter-spacing: 0.06em;
  margin-bottom: 12px; font-weight: 600;
}

.bento__sizes {
  display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 22px;
}
.bento__sizes span {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  font-weight: 500; color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
  padding: 2px 7px; border-radius: 4px;
}

.bento__link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 700; color: var(--brand);
  text-decoration: none; letter-spacing: 0.01em;
  transition: gap 0.2s var(--ease);
}
.bento__link:hover { gap: 9px; }
.bento__card--featured .bento__link { color: var(--brand-light); }

/* ── Servicios zig-zag ── */
.servicios { background: var(--off-white); }
.servicios__header { margin-bottom: 56px; }

.servicios__zigzag { display: flex; flex-direction: column; gap: 0; }

.zz-item {
  display: grid; grid-template-columns: 56px 1fr auto;
  align-items: center; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid var(--border);
  transition: all 0.2s;
}
.zz-item:last-child { border-bottom: none; padding-bottom: 0; }
.zz-item:first-child { padding-top: 0; }
.zz-item:hover .zz-bar-fill { filter: brightness(1.1); }

.zz-item__num {
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  font-weight: 600; color: var(--brand); opacity: 0.5;
  text-align: right;
}
.zz-item__content h4 { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.zz-item__content p  { font-size: 14px; color: var(--txt-3); line-height: 1.6; max-width: 500px; }

.zz-item__bar {
  width: 120px; height: 4px; background: var(--border);
  border-radius: 2px; overflow: hidden; flex-shrink: 0;
}
.zz-bar-fill {
  height: 100%; width: 0; background: var(--brand); border-radius: 2px;
  transition: width 1.2s var(--ease);
}
.zz-bar-fill.animated { width: var(--w, 0%); }

/* ── Proceso ── */
.proceso { background: var(--white); }
.proceso .section-label, .proceso .section-title { margin-bottom: 16px; }
.proceso .section-title { margin-bottom: 60px; }

.proceso__track { position: relative; }
.proceso__line {
  position: absolute; top: 20px; left: 20px; right: 20px; height: 2px;
  background: var(--border); z-index: 0;
}
.proceso__steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; position: relative; z-index: 1;
}

.proceso-step { display: flex; flex-direction: column; gap: 16px; }
.proceso-step__dot {
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; border: 2px solid var(--brand);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
  box-shadow: 0 0 0 4px rgba(26,126,196,0.1);
}
.proceso-step:hover .proceso-step__dot {
  background: var(--brand); box-shadow: 0 0 0 6px rgba(26,126,196,0.15);
}
.proceso-step:hover .step-num { color: #fff; }
.step-num {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  font-weight: 600; color: var(--brand); transition: color 0.3s;
}
.proceso-step__body h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.proceso-step__body p  { font-size: 13.5px; color: var(--txt-3); line-height: 1.6; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--deep); padding: 0;
  position: relative; overflow: hidden;
}
.cta-banner__inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 48px; padding-top: 80px; padding-bottom: 80px;
}
/* Subtle animated gradient bg */
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(26,126,196,0.15), transparent),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(21,101,192,0.1), transparent);
  animation: cta-shift 8s ease-in-out infinite alternate;
}
@keyframes cta-shift {
  0%   { opacity: 0.6; }
  100% { opacity: 1; }
}
.cta-banner::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,126,196,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,126,196,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-banner__text { position: relative; z-index: 2; }
.cta-banner__text h2 {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 800;
  color: #fff; letter-spacing: -0.03em; margin-bottom: 12px;
}
.cta-banner__text p { font-size: 16px; color: rgba(255,255,255,0.55); }
.cta-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 2; flex-shrink: 0; }

/* ── Contacto ── */
.contacto { background: var(--off-white); }
.contacto__grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 80px; align-items: start; }

.contacto__info .section-label { display: block; margin-bottom: 12px; }
.contacto__info h2 { margin-bottom: 14px; }
.contacto__info > p { font-size: 16px; color: var(--txt-3); margin-bottom: 40px; line-height: 1.7; }

.contact-list { display: flex; flex-direction: column; gap: 10px; }
.contact-chip {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; background: #fff;
  border: 1px solid var(--border); border-radius: var(--r-md);
  text-decoration: none;
  transition: all 0.2s var(--ease);
  box-shadow: 0 2px 8px rgba(10,22,40,0.04);
}
.contact-chip:hover {
  border-color: rgba(26,126,196,0.25);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(10,22,40,0.08);
}
.contact-chip__icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--brand-pale); color: var(--brand);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-chip__icon--wa { background: rgba(37,211,102,0.1); color: #25D366; }
.contact-chip__label { display: block; font-size: 11px; font-weight: 700; color: var(--txt-3); letter-spacing: 0.04em; text-transform: uppercase; }
.contact-chip__val { display: block; font-size: 14px; font-weight: 600; color: var(--txt-1); }

/* ── Form ── */
.form-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 40px;
  box-shadow: 0 8px 40px rgba(10,22,40,0.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 8px 40px rgba(10,22,40,0.07);
}
.form-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-row .form-group { margin-bottom: 0; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--txt-2); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1.5px solid var(--border); border-radius: 9px;
  font-family: 'Outfit', sans-serif; font-size: 14px; color: var(--txt-1);
  background: var(--off-white); outline: none; resize: vertical;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand); background: #fff;
  box-shadow: 0 0 0 3px rgba(26,126,196,0.1);
}
.form-group input.error, .form-group textarea.error { border-color: var(--red); }
.form-note { text-align: center; font-size: 12px; color: var(--txt-3); margin-top: 14px; line-height: 1.5; }

/* ── Footer ── */
.footer { background: var(--deep); padding: 64px 0 0; }
.footer__top {
  display: flex; gap: 72px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__brand { max-width: 260px; }
.footer__brand p { font-size: 14px; color: rgba(255,255,255,0.38); line-height: 1.75; margin-top: 4px; }
.footer__brand .nav__brand { color: #fff; }
.footer__brand .nav__brand em { color: var(--brand-light); }
.footer__cols { display: flex; gap: 56px; flex: 1; justify-content: flex-end; }
.footer__col h5 {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.85);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.18s; }
.footer__col a:hover { color: rgba(255,255,255,0.85); }
.footer__bottom {
  display: flex; justify-content: space-between; padding: 22px 0;
  font-size: 13px; color: rgba(255,255,255,0.22); flex-wrap: wrap; gap: 8px;
}

/* ── Scroll reveal animations ── */
.fade-up {
  opacity: 0; transform: translateY(20px);
  animation: fade-up-in 0.7s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes fade-up-in {
  to { opacity: 1; transform: translateY(0); }
}

.fade-up-el {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s var(--ease) calc(var(--i, 0) * 80ms),
              transform 0.65s var(--ease) calc(var(--i, 0) * 80ms);
}
.fade-up-el.in-view { opacity: 1; transform: translateY(0); }

.split-reveal {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease);
}
.split-reveal.in-view { clip-path: inset(0 0 0% 0); }

.reveal-label {
  opacity: 0; transform: translateX(-10px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.reveal-label.in-view { opacity: 1; transform: translateX(0); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__card--featured { grid-row: 1 / 3; }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .hero__visual { display: none; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { justify-content: center; }
  .contacto__grid { grid-template-columns: 1fr; gap: 56px; }
  .proceso__steps { grid-template-columns: 1fr 1fr; }
  .proceso__line { display: none; }
}

@media (max-width: 768px) {
  .bento { grid-template-columns: 1fr; }
  .bento__card--featured { grid-row: auto; }
  .footer__top { flex-direction: column; gap: 40px; }
  .footer__cols { flex-wrap: wrap; gap: 32px; justify-content: flex-start; }
  .footer__brand { max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .zz-item { grid-template-columns: 40px 1fr; }
  .zz-item__bar { display: none; }

  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 62px; left: 0; right: 0;
    background: rgba(8,14,24,0.97); backdrop-filter: blur(20px);
    padding: 20px; gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06); z-index: 99;
  }
  .nav__links.open a { color: rgba(255,255,255,0.7); padding: 12px 16px; border-radius: 8px; }
  .nav__links.open a:hover { background: rgba(255,255,255,0.06); color: #fff; }
  .nav__links.open .nav__cta { background: var(--brand) !important; color: #fff !important; }
}

@media (max-width: 560px) {
  .proceso__steps { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__stats { gap: 22px; }
  .form-card { padding: 26px; }
  .fab-wa__label { display: none; }
  .fab-wa { padding: 14px; }
}
