/* ============================================================
   NUBERONA — Design System
   Premium cloud-native tech. Brand blue #154DA2 + cloud gradient.
   ============================================================ */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ---- Tokens ---- */
:root {
  /* brand blue scale */
  --brand-900: #0B2A5B;
  --brand-800: #103a7d;
  --brand-700: #154DA2; /* exact brand */
  --brand-600: #1E5FBF;
  --brand-500: #2E72D2;
  --brand-400: #4A8AE0;
  --brand-300: #7DAEEC;
  --brand-200: #B6D2F5;
  --brand-100: #E2EDFB;
  --brand-50:  #F2F7FE;

  /* cloud gradient */
  --cloud-grad: linear-gradient(115deg, #5B8FD9 0%, #2E72D2 45%, #154DA2 100%);
  --cloud-grad-soft: linear-gradient(120deg, #6f9fe0 0%, #3f7ed6 100%);

  /* ink / neutrals (cool) */
  --ink-900: #0B1A30;
  --ink-800: #14253d;
  --ink-700: #33445C;
  --ink-600: #4a5b73;
  --ink-500: #6B7A90;
  --ink-400: #94a2b6;
  --line:    #E3E9F2;
  --line-2:  #D3DCE9;

  /* surfaces */
  --bg:      #F6F8FC;
  --bg-2:    #EDF2FA;
  --surface: #FFFFFF;

  /* dark navy section */
  --navy-900: #061121;
  --navy-800: #0A1A33;
  --navy-700: #0F2545;

  /* accent — luminous sky (from cloud light) */
  --accent: #5AA9FF;
  --accent-soft: #8cc4ff;

  /* radii — soft squared, echoes brick motif */
  --r-xs: 7px;
  --r-sm: 11px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* shadows — blue tinted */
  --sh-sm: 0 1px 2px rgba(11,42,91,.06), 0 2px 6px rgba(11,42,91,.05);
  --sh:    0 4px 16px rgba(11,42,91,.08), 0 1px 4px rgba(11,42,91,.05);
  --sh-lg: 0 18px 48px rgba(11,42,91,.13), 0 6px 16px rgba(11,42,91,.07);
  --sh-glow: 0 20px 60px rgba(46,114,210,.30);

  /* layout */
  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 56px);
  --nav-h: 76px;

  /* fonts */
  --f-display: 'Sora', system-ui, sans-serif;
  --f-body: 'Manrope', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink-800);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
::selection { background: var(--brand-200); color: var(--brand-900); }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--f-display); color: var(--ink-900); line-height: 1.08; font-weight: 700; letter-spacing: -.02em; text-wrap: balance; }
h1 { font-size: clamp(2.5rem, 5.6vw, 4.4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); letter-spacing: -.015em; }
h4 { font-size: 1.15rem; letter-spacing: -.01em; }
p { text-wrap: pretty; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-600);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 13px; height: 13px;
  border-radius: 4px;
  background: var(--cloud-grad);
  flex: none;
}
.eyebrow.on-dark { color: var(--accent-soft); }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--ink-600); line-height: 1.55; }
.muted { color: var(--ink-500); }
.text-grad {
  background: var(--cloud-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- Layout helpers ---- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.wrap-wide { max-width: 1340px; margin-inline: auto; padding-inline: var(--gut); }
section { position: relative; }
.section { padding-block: clamp(64px, 9vw, 130px); }
.section-sm { padding-block: clamp(48px, 6vw, 84px); }
.center { text-align: center; }
.stack-sm > * + * { margin-top: 14px; }
.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head p { margin-top: 18px; }

.grid { display: grid; gap: clamp(20px, 2.4vw, 30px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--f-display);
  font-weight: 600; font-size: .98rem; letter-spacing: -.01em;
  padding: 14px 26px;
  border-radius: var(--r-sm);
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--cloud-grad); color: #fff; box-shadow: var(--sh); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--sh-glow); }
.btn-dark { background: var(--ink-900); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-ghost { background: var(--surface); color: var(--ink-900); border: 1px solid var(--line-2); box-shadow: var(--sh-sm); }
.btn-ghost:hover { border-color: var(--brand-400); color: var(--brand-700); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-link { color: var(--brand-700); font-weight: 600; font-family: var(--f-display); display: inline-flex; align-items: center; gap: 7px; }
.btn-link svg { width: 17px; height: 17px; transition: transform .2s ease; }
.btn-link:hover svg { transform: translateX(4px); }

/* ---- Brick motif ---- */
.brick { display: inline-block; width: 14px; height: 14px; border-radius: 4px; background: var(--cloud-grad); }
.bricks { display: inline-flex; gap: 5px; }
.bricks .brick:nth-child(2) { opacity: .7; }
.bricks .brick:nth-child(3) { opacity: .4; }

/* ---- Cards ---- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--sh-sm);
  transition: transform .25s ease, box-shadow .3s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.card.hover:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: var(--brand-200); }
.card .ico {
  width: 56px; height: 56px; border-radius: var(--r-sm);
  display: grid; place-items: center;
  background: var(--brand-50);
  color: var(--brand-700);
  margin-bottom: 22px;
  border: 1px solid var(--brand-100);
}
.card .ico svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-600); font-size: 1rem; }

/* feature list with brick bullets */
.flist { display: grid; gap: 13px; margin-top: 6px; }
.flist li { position: relative; padding-left: 23px; color: var(--ink-700); font-size: 1rem; }
.flist li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 11px; height: 11px; border-radius: 3.5px;
  background: var(--cloud-grad);
}

/* ---- Tag / chip ---- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: .76rem; font-weight: 500;
  letter-spacing: .04em;
  padding: 6px 13px; border-radius: var(--r-pill);
  background: var(--brand-50); color: var(--brand-700);
  border: 1px solid var(--brand-100);
}
.chip.on-dark { background: rgba(255,255,255,.07); color: var(--accent-soft); border-color: rgba(255,255,255,.14); }

/* ---- Dark section ---- */
.dark {
  background: var(--navy-800);
  color: #cdd9ec;
  --line: rgba(255,255,255,.1);
  --line-2: rgba(255,255,255,.16);
}
.dark h1, .dark h2, .dark h3, .dark h4 { color: #fff; }
.dark .lead { color: #aebfd6; }
.dark .muted { color: #8195b1; }
.dark .card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.09); box-shadow: none; }
.dark .card.hover:hover { border-color: rgba(90,169,255,.4); background: rgba(255,255,255,.06); }
.dark .card p { color: #aebfd6; }
.dark .card .ico { background: rgba(90,169,255,.12); border-color: rgba(90,169,255,.2); color: var(--accent-soft); }
.dark .flist li { color: #b9c7dc; }

/* grid texture for dark */
.grid-texture::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
  pointer-events: none;
}

/* glow orb */
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; pointer-events: none; z-index: 0; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 100;
  display: flex; align-items: center;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(246,248,252,.82); backdrop-filter: blur(14px) saturate(1.4); border-bottom-color: var(--line); box-shadow: 0 1px 0 rgba(11,42,91,.03); }
.nav .wrap-wide { display: flex; align-items: center; gap: 24px; width: 100%; }
.nav-logo img { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 12px; }
.nav-links a {
  font-family: var(--f-display); font-weight: 500; font-size: .94rem;
  color: var(--ink-700); padding: 9px 14px; border-radius: var(--r-xs);
  transition: color .15s, background .15s; position: relative;
}
.nav-links a:hover { color: var(--brand-700); background: var(--brand-50); }
.nav-links a.active { color: var(--brand-700); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }

.lang-switch { display: inline-flex; align-items: center; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 3px; font-family: var(--f-mono); }
.lang-switch button { font-size: .76rem; font-weight: 600; padding: 5px 11px; border-radius: var(--r-pill); color: var(--ink-500); transition: all .18s; letter-spacing: .03em; }
.lang-switch button.active { background: var(--surface); color: var(--brand-700); box-shadow: var(--sh-sm); }

.nav-toggle { display: none; width: 42px; height: 42px; border-radius: var(--r-xs); align-items: center; justify-content: center; color: var(--ink-900); }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 1000px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta-desktop { display: none; }
}

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.drawer.open { visibility: visible; }
.drawer-scrim { position: absolute; inset: 0; background: rgba(6,17,33,.5); opacity: 0; transition: opacity .3s; backdrop-filter: blur(2px); }
.drawer.open .drawer-scrim { opacity: 1; }
.drawer-panel { position: absolute; top: 0; right: 0; height: 100%; width: min(360px, 88vw); background: var(--surface); box-shadow: var(--sh-lg); transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1); padding: 24px; display: flex; flex-direction: column; overflow-y: auto; }
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.drawer-head img { height: 28px; }
.drawer-close { width: 42px; height: 42px; display: grid; place-items: center; border-radius: var(--r-xs); color: var(--ink-700); }
.drawer-close svg { width: 24px; height: 24px; }
.drawer-links { display: flex; flex-direction: column; gap: 2px; }
.drawer-links a { font-family: var(--f-display); font-weight: 600; font-size: 1.25rem; color: var(--ink-900); padding: 13px 10px; border-radius: var(--r-xs); border-bottom: 1px solid var(--line); }
.drawer-links a:hover { color: var(--brand-700); }
.drawer-foot { margin-top: auto; padding-top: 24px; display: grid; gap: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-900); color: #9fb0ca; padding-block: clamp(56px, 7vw, 88px) 36px; position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; position: relative; z-index: 1; }
.footer-brand img { height: 30px; margin-bottom: 18px; }
.footer-brand p { color: #7d90af; font-size: .95rem; max-width: 320px; }
.footer h5 { font-family: var(--f-display); color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer-col a { display: block; color: #9fb0ca; font-size: .95rem; padding: 6px 0; transition: color .15s; }
.footer-col a:hover { color: var(--accent-soft); }
.footer-bottom { margin-top: 52px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.09); display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.footer-bottom p { font-size: .85rem; color: #6f83a3; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-legal a { font-size: .85rem; color: #8497b6; }
.footer-legal a:hover { color: var(--accent-soft); }
.footer-fiscal { font-family: var(--f-mono); font-size: .78rem; color: #5f7398; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: var(--r-xs); display: grid; place-items: center; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); color: #aebfd6; transition: all .2s; }
.footer-social a:hover { background: var(--cloud-grad); color: #fff; border-color: transparent; transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie {
  position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%) translateY(160%);
  z-index: 300; width: min(640px, calc(100vw - 32px));
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  padding: 22px 24px; transition: transform .45s cubic-bezier(.34,1.2,.5,1);
}
.cookie.show { transform: translateX(-50%) translateY(0); }
.cookie-head { display: flex; align-items: center; gap: 11px; margin-bottom: 10px; }
.cookie-head .brick { width: 16px; height: 16px; }
.cookie-head strong { font-family: var(--f-display); font-size: 1.05rem; color: var(--ink-900); }
.cookie p { font-size: .9rem; color: var(--ink-600); margin-bottom: 16px; }
.cookie p a { color: var(--brand-700); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions .btn { padding: 11px 20px; font-size: .9rem; }
.cookie-actions .btn-text { background: none; color: var(--ink-600); font-family: var(--f-display); font-weight: 600; padding: 11px 14px; }
.cookie-actions .btn-text:hover { color: var(--brand-700); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }
.reveal.d6 { transition-delay: .48s; }
/* directional / scale / blur reveal variants */
.reveal-l { opacity: 0; transform: translateX(-34px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal-r { opacity: 0; transform: translateX(34px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal-s { opacity: 0; transform: scale(.9); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.34,1.2,.5,1); }
.reveal-blur { opacity: 0; filter: blur(12px); transition: opacity .8s ease, filter .8s ease; }
.reveal-l.in, .reveal-r.in, .reveal-s.in { opacity: 1; transform: none; }
.reveal-blur.in { opacity: 1; filter: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-l, .reveal-r, .reveal-s, .reveal-blur { opacity: 1; transform: none; filter: none; transition: none; }
  html { scroll-behavior: auto; }
  .op-track { animation: none !important; }
  .text-grad { animation: none !important; background-position: 0 0 !important; }
  .sigbars i, .eq i, .scanbeam, .pulse-dot::after, .float-badge, .orb-drift { animation: none !important; }
}

/* ============================================================
   MOTION — keyframes & enhancements
   ============================================================ */
/* animated gradient text */
.text-grad { background-size: 220% 220%; animation: gradShift 7s ease-in-out infinite; }
@keyframes gradShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* drifting hero orbs */
.orb-drift { animation: orbDrift 16s ease-in-out infinite; }
.orb-drift.alt { animation-duration: 22s; animation-direction: reverse; }
@keyframes orbDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(26px,-22px) scale(1.06); }
  66% { transform: translate(-20px,18px) scale(.96); }
}

/* ---- logo marquee ---- */
.op-marquee { position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.op-track { display: flex; align-items: center; gap: clamp(34px,5vw,64px); width: max-content; animation: opMarquee 46s linear infinite; }
.op-marquee:hover .op-track { animation-play-state: paused; }
@keyframes opMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.op-marquee .op-logo { height: 30px; flex: none; }
.op-marquee .op-logo img { height: 26px; opacity: .42; }
.op-marquee .op-logo.sq img { height: 34px; }
.op-marquee .op-logo:hover img { opacity: .95; transform: translateY(-2px); }
@media (max-width: 540px) { .op-marquee .op-logo img { height: 22px; } .op-marquee .op-logo.sq img { height: 28px; } }

/* ---- count-up: avoid layout jitter ---- */
.count { font-variant-numeric: tabular-nums; }

/* ---- pulsing status dot ---- */
.pulse-dot { position: relative; }
.pulse-dot::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid currentColor; opacity: 0; animation: pulseRing 2.4s ease-out infinite; }
@keyframes pulseRing { 0% { transform: scale(.6); opacity: .55; } 80%,100% { transform: scale(1.6); opacity: 0; } }

/* ---- equalizer / live signal bars ---- */
.sigbars i { animation: eqBar 1.1s ease-in-out infinite; transform-origin: bottom; }
.sigbars i:nth-child(1){ animation-delay: 0s; } .sigbars i:nth-child(2){ animation-delay: .18s; }
.sigbars i:nth-child(3){ animation-delay: .36s; } .sigbars i:nth-child(4){ animation-delay: .54s; }
@keyframes eqBar { 0%,100% { transform: scaleY(.45); } 50% { transform: scaleY(1); } }

/* ---- console: sequential row sweep + scan beam ---- */
.console-card { position: relative; }
.scanbeam { position: absolute; left: 0; right: 0; height: 130px; top: -130px; z-index: 3; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(90,169,255,.16), transparent);
  animation: scanMove 5.5s ease-in-out infinite; }
@keyframes scanMove { 0% { top: -130px; opacity: 0; } 12% { opacity: 1; } 78% { opacity: 1; } 90%,100% { top: 100%; opacity: 0; } }
.console-body .svc-row { opacity: 0; transform: translateX(-10px); }
.console-card.lit .svc-row { animation: rowIn .5s cubic-bezier(.2,.7,.3,1) forwards; }
.console-card.lit .svc-row:nth-child(1){ animation-delay: .15s; } .console-card.lit .svc-row:nth-child(2){ animation-delay: .30s; }
.console-card.lit .svc-row:nth-child(3){ animation-delay: .45s; } .console-card.lit .svc-row:nth-child(4){ animation-delay: .60s; }
.console-card.lit .svc-row:nth-child(5){ animation-delay: .75s; }
@keyframes rowIn { to { opacity: 1; transform: none; } }
.svc-row .st { transition: color .2s; }
.svc-row .st::before { animation: blinkDot 2s ease-in-out infinite; }
@keyframes blinkDot { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@media (prefers-reduced-motion: reduce) {
  .console-body .svc-row { opacity: 1; transform: none; }
  .svc-row .st::before, .console-foot .blink { animation: none !important; }
}

/* blinking online label */
.console-foot .blink { animation: blinkDot 1.6s steps(1,end) infinite; }

/* ---- card icon micro-interaction ---- */
.card.hover .ico, .vp .vi { transition: transform .3s cubic-bezier(.34,1.4,.5,1), background .25s, color .25s, border-color .25s; }
.card.hover:hover .ico { transform: translateY(-3px) rotate(-6deg) scale(1.06); }
.vp:hover .vi { transform: rotate(-6deg) scale(1.08); }

/* ---- process step number pop + animated connector ---- */
.step .sn { transition: transform .3s cubic-bezier(.34,1.4,.5,1), box-shadow .3s; }
.reveal.in .sn { animation: snPop .5s cubic-bezier(.34,1.5,.5,1) both; }
@keyframes snPop { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.step:not(:last-child)::after { background-size: 200% 100%; animation: dashFlow 1.1s linear infinite; }
@keyframes dashFlow { to { background-position: -24px 0; } }

/* ---- compliance band ---- */
.compliance { padding-block: 30px; border-bottom: 1px solid var(--line); background: var(--bg-2); }
.compliance-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 26px; }
.compliance .ttl { font-family: var(--f-mono); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-500); }
.region-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.region-pill { display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--sh-sm);
  font-family: var(--f-display); font-weight: 600; font-size: .92rem; color: var(--ink-800);
  transition: transform .25s cubic-bezier(.34,1.3,.5,1), box-shadow .25s, border-color .25s; }
.region-pill .flag { font-size: 1.15rem; line-height: 1; }
.region-pill .law { font-family: var(--f-mono); font-size: .68rem; color: var(--ink-400); font-weight: 500; }
.region-pill:hover { transform: translateY(-3px); box-shadow: var(--sh); border-color: var(--brand-200); }
.reveal.in .region-pill { animation: pillPop .5s cubic-bezier(.34,1.5,.5,1) both; }
.reveal.in .region-pill:nth-child(2){ animation-delay:.08s } .reveal.in .region-pill:nth-child(3){ animation-delay:.16s } .reveal.in .region-pill:nth-child(4){ animation-delay:.24s }
@keyframes pillPop { from { opacity: 0; transform: translateY(14px) scale(.92); } to { opacity: 1; transform: none; } }
.dark .region-pill { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); color: #e6eefb; }
.dark .region-pill .law { color: #7d93b5; }

/* ---- breadcrumb / page hero ---- */
.page-hero { padding-top: calc(var(--nav-h) + clamp(40px, 7vw, 86px)); padding-bottom: clamp(34px, 5vw, 60px); position: relative; overflow: hidden; }
.crumb { font-family: var(--f-mono); font-size: .8rem; color: var(--ink-500); margin-bottom: 18px; display: flex; gap: 8px; align-items: center; }
.crumb a:hover { color: var(--brand-700); }
.crumb span { color: var(--brand-600); }

/* utility */
.hide { display: none !important; }
.mt-0 { margin-top: 0; }
.divider { height: 1px; background: var(--line); border: 0; }
[hidden] { display: none !important; }

/* ============================================================
   CTA BAND (shared across pages)
   ============================================================ */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(44px,6vw,80px); background: var(--cloud-grad); box-shadow: var(--sh-glow); }
.cta-band .orb { width: 360px; height: 360px; background: #fff; opacity: .14; top: -140px; right: -80px; }
.cta-band-inner { position: relative; z-index: 1; max-width: 640px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.86); margin-top: 16px; font-size: 1.15rem; }
.cta-band .hero-cta { margin-top: 32px; }
.brick-deco { display: flex; gap: 7px; margin-bottom: 26px; }
.brick-deco i { width: 16px; height: 16px; border-radius: 5px; background: rgba(255,255,255,.9); }
.brick-deco i:nth-child(2){opacity:.7} .brick-deco i:nth-child(3){opacity:.45} .brick-deco i:nth-child(4){opacity:.25}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero { padding-top: calc(var(--nav-h) + clamp(36px,6vw,64px)); padding-bottom: clamp(24px,4vw,40px); }
.legal-wrap { max-width: 880px; margin-inline: auto; padding-inline: var(--gut); }
.legal-layout { display: grid; grid-template-columns: 230px 1fr; gap: clamp(28px,4vw,52px); align-items: start; max-width: 1080px; margin-inline: auto; padding-inline: var(--gut); }
@media (max-width: 820px) { .legal-layout { grid-template-columns: 1fr; } .legal-toc { display: none; } }
.legal-toc { position: sticky; top: calc(var(--nav-h) + 24px); display: grid; gap: 2px; }
.legal-toc .toc-ttl { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-400); padding: 8px 12px; }
.legal-toc a { font-family: var(--f-body); font-size: .9rem; color: var(--ink-600); padding: 8px 12px; border-radius: var(--r-xs); border-left: 2px solid transparent; transition: all .15s; }
.legal-toc a:hover, .legal-toc a.active { color: var(--brand-700); background: var(--brand-50); border-left-color: var(--brand-500); }
.legal-prose { color: var(--ink-700); font-size: 1rem; line-height: 1.75; }
.legal-prose h2 { font-size: 1.45rem; margin: 38px 0 14px; scroll-margin-top: calc(var(--nav-h) + 20px); display: flex; align-items: center; gap: 11px; }
.legal-prose h2 .brick { width: 13px; height: 13px; }
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose h3 { font-size: 1.1rem; margin: 24px 0 8px; color: var(--ink-900); }
.legal-prose p { margin-bottom: 14px; }
.legal-prose ul { margin: 0 0 16px; padding-left: 0; display: grid; gap: 9px; }
.legal-prose ul li { display: flex; gap: 11px; align-items: flex-start; }
.legal-prose ul li::before { content: ""; width: 9px; height: 9px; border-radius: 3px; background: var(--cloud-grad); flex: none; margin-top: 8px; }
.legal-prose a { color: var(--brand-700); text-decoration: underline; text-underline-offset: 2px; }
.legal-prose strong { color: var(--ink-900); font-weight: 600; }
.legal-prose .data-box { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 22px 26px; margin: 18px 0; box-shadow: var(--sh-sm); }
.legal-prose .data-box p { margin: 4px 0; font-family: var(--f-mono); font-size: .88rem; color: var(--ink-700); }
.legal-prose .data-box p strong { font-family: var(--f-body); }
.legal-updated { font-family: var(--f-mono); font-size: .8rem; color: var(--ink-400); margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); }
.legal-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: .92rem; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.legal-table th, .legal-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.legal-table th { background: var(--bg); font-family: var(--f-display); font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-600); }
.legal-table tr:last-child td { border-bottom: none; }
.legal-disclaimer { background: #fff8ec; border: 1px solid #f0dcae; border-radius: var(--r); padding: 16px 20px; font-size: .88rem; color: #8a6d3b; margin-bottom: 28px; display: flex; gap: 12px; }
.legal-disclaimer svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }

/* ============================================================
   WP / Elementor full-bleed override (Nuberona is full-width;
   inner centering handled by .wrap-wide). Added for Elementor build.
   ============================================================ */
.elementor,
.elementor-section,
.elementor-container,
.e-con,
.e-con-inner,
.elementor-widget-wrap,
.elementor-widget,
.elementor-widget-html,
.elementor-widget-html > .elementor-widget-container {
  max-width: 100% !important;
  width: 100% !important;
}
.e-con, .e-con-inner { --content-width: 100%; --container-max-width: 100%; padding-left: 0 !important; padding-right: 0 !important; }
.e-con > .e-con-inner { margin-inline: 0 !important; }
html, body { overflow-x: hidden; max-width: 100%; }

/* WP admin bar offset for the fixed nav (logged-in only) */
body.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .nav { top: 46px; } }

/* Remove Elementor container flex-gap + widget margins so stacked HTML-widget
   sections sit flush (kills the ~40px top gap and inter-section gaps). */
.e-con { gap: 0 !important; --gap: 0px; --row-gap: 0px; --column-gap: 0px; --grid-gap: 0px; }
.e-con > .e-con-inner { gap: 0 !important; }
.elementor-widget { margin-block: 0 !important; margin-bottom: 0 !important; }
.elementor-element { margin-top: 0 !important; }

/* case-thumb images (used on home + portfolio) */
.case-thumb .shot { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:top center; transition:transform .6s cubic-bezier(.2,.6,.2,1); }
.case-card:hover .case-thumb .shot { transform:scale(1.04); }
.case-thumb .live-dot { position:absolute; top:12px; right:12px; font-family:var(--f-mono); font-size:.66rem; color:var(--brand-700); background:var(--surface); border:1px solid var(--brand-100); padding:4px 10px; border-radius:var(--r-pill); display:flex; align-items:center; gap:6px; }
.case-thumb .live-dot::before { content:""; width:6px; height:6px; border-radius:50%; background:#2ecc71; }

/* web-design mockup: live badge + skeleton shimmer (servicios) */
.media-panel .mp-live { display:inline-flex; align-items:center; gap:6px; }
.media-panel .mp-live i { width:7px; height:7px; border-radius:50%; background:#2ecc71; box-shadow:0 0 0 3px rgba(46,204,113,.18); animation:mpPulse 1.6s ease-in-out infinite; }
@keyframes mpPulse { 0%,100%{opacity:1} 50%{opacity:.35} }
.media-panel .skel { position:relative; overflow:hidden; }
.media-panel .skel::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg,transparent,rgba(255,255,255,.5),transparent); transform:translateX(-100%); animation:mpShimmer 2s infinite; }
@keyframes mpShimmer { 100%{transform:translateX(100%)} }

/* case cards: equal height + bottom-aligned metrics/links (#3) */
.grid.cols-3 > .case-card, .svc5 > .case-card { height:100%; }
.case-card { display:flex; flex-direction:column; }
.case-card .case-body { display:flex; flex-direction:column; flex:1 1 auto; }
.case-card .case-body .case-metrics { margin-top:auto; }
.case-card .case-body > .btn-link { margin-top:18px; }

/* ============ blog: single article (prose) + listing cards ============ */
.article-wrap { max-width: 760px; margin-inline: auto; padding-top: calc(var(--nav-h) + 48px); padding-bottom: 80px; }
.article-head { margin-bottom: 36px; }
.article-head .chip { margin-bottom: 18px; }
.article-head h1 { font-size: clamp(2rem,4vw,3rem); line-height: 1.08; letter-spacing: -.02em; }
.article-meta { margin-top: 18px; font-family: var(--f-mono); font-size: .82rem; color: var(--ink-500); display: flex; gap: 14px; flex-wrap: wrap; }
.article-body { font-size: 1.06rem; line-height: 1.75; color: var(--ink-700); }
.article-body h2 { font-size: 1.6rem; margin: 40px 0 14px; letter-spacing: -.01em; color: var(--ink-900); }
.article-body h3 { font-size: 1.25rem; margin: 30px 0 10px; color: var(--ink-900); }
.article-body p { margin: 0 0 18px; }
.article-body ul, .article-body ol { margin: 0 0 18px; padding-left: 22px; display: grid; gap: 8px; }
.article-body li { color: var(--ink-700); }
.article-body a { color: var(--brand-700); text-decoration: underline; text-underline-offset: 3px; }
.article-body strong { color: var(--ink-900); }
.article-body blockquote { margin: 24px 0; padding: 16px 22px; border-left: 3px solid var(--brand-500); background: var(--surface); border-radius: var(--r-sm); color: var(--ink-600); }
.article-cta { margin-top: 48px; padding: 32px; border-radius: var(--r-lg); background: var(--cloud-grad); color:#fff; box-shadow: var(--sh-glow); }
.article-cta h3 { color:#fff; font-size: 1.4rem; margin-bottom: 8px; }
.article-cta p { color: rgba(255,255,255,.88); margin-bottom: 18px; }

/* blog listing cards (dynamic) */
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
@media(max-width:900px){ .blog-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:620px){ .blog-grid{ grid-template-columns:1fr; } }
.blog-card{ display:flex; flex-direction:column; height:100%; overflow:hidden; }
.blog-card .bc-thumb{ aspect-ratio:16/9; background:var(--bg-2); border-bottom:1px solid var(--line); overflow:hidden; }
.blog-card .bc-thumb img{ width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.blog-card:hover .bc-thumb img{ transform:scale(1.04); }
.blog-card .bc-body{ padding:22px 24px 26px; display:flex; flex-direction:column; flex:1; }
.blog-card .bc-body .chip{ margin-bottom:12px; align-self:flex-start; }
.blog-card h3{ font-size:1.15rem; line-height:1.25; margin-bottom:10px; }
.blog-card p{ font-size:.92rem; color:var(--ink-600); flex:1; }
.blog-card .bc-more{ margin-top:16px; }


/* ==== home component system (promoted global for landings) ==== */
/* ---------- HERO ---------- */
  .hero { position: relative; padding-top: calc(var(--nav-h) + clamp(48px,8vw,96px)); padding-bottom: clamp(60px,9vw,120px); overflow: hidden; }
  .hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
  .hero-bg .orb1 { width: 620px; height: 620px; background: #7DAEEC; top: -240px; right: -180px; opacity: .35; }
  .hero-bg .orb2 { width: 460px; height: 460px; background: #B6D2F5; top: 120px; left: -200px; opacity: .5; }
  .hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px,5vw,72px); align-items: center; }
  .hero h1 { margin: 22px 0 0; }
  .hero h1 .text-grad { display: inline; }
  .hero .lead { margin-top: 24px; max-width: 540px; }
  .hero-cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }
  .hero-trust { margin-top: 40px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
  .hero-trust .dvd { width: 1px; height: 38px; background: var(--line-2); }
  .hero-stat { display: flex; flex-direction: column; }
  .hero-stat b { font-family: var(--f-display); font-size: 1.9rem; color: var(--ink-900); line-height: 1; letter-spacing: -.03em; }
  .hero-stat span { font-size: .82rem; color: var(--ink-500); margin-top: 5px; }
  @media (max-width: 940px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { order: -1; max-width: 460px; }
  }

  /* hero visual — service console */
  .console { position: relative; }
  .console-card { background: var(--navy-800); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); box-shadow: var(--sh-lg); overflow: hidden; }
  .console-bar { display: flex; align-items: center; gap: 7px; padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .console-bar .d { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.18); }
  .console-bar .ttl { font-family: var(--f-mono); font-size: .76rem; color: #7d93b5; margin-left: 8px; }
  .console-body { padding: 20px; display: grid; gap: 11px; }
  .svc-row { display: flex; align-items: center; gap: 14px; padding: 13px 15px; border-radius: var(--r-sm); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); }
  .svc-row .si { width: 38px; height: 38px; border-radius: 9px; display: grid; place-items: center; background: rgba(90,169,255,.14); color: var(--accent-soft); flex: none; }
  .svc-row .si svg { width: 20px; height: 20px; }
  .svc-row .sm { flex: 1; min-width: 0; }
  .svc-row .sm b { display: block; font-family: var(--f-display); font-size: .92rem; color: #fff; font-weight: 600; }
  .svc-row .sm span { font-family: var(--f-mono); font-size: .72rem; color: #7d93b5; }
  .svc-row .st { font-family: var(--f-mono); font-size: .68rem; color: #6fd99a; display: flex; align-items: center; gap: 6px; }
  .svc-row .st::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #6fd99a; box-shadow: 0 0 0 3px rgba(111,217,154,.18); }
  .console-foot { padding: 14px 20px; border-top: 1px solid rgba(255,255,255,.08); font-family: var(--f-mono); font-size: .74rem; color: #7d93b5; display: flex; justify-content: space-between; }
  .console-foot .blink { color: var(--accent-soft); }
  .float-badge { position: absolute; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-lg); padding: 13px 16px; display: flex; align-items: center; gap: 11px; z-index: 2; }
  .float-badge .bi { width: 34px; height: 34px; border-radius: 9px; background: var(--cloud-grad); display: grid; place-items: center; color: #fff; }
  .float-badge .bi svg { width: 18px; height: 18px; }
  .float-badge b { font-family: var(--f-display); font-size: .92rem; color: var(--ink-900); display: block; line-height: 1.1; }
  .float-badge span { font-size: .74rem; color: var(--ink-500); }
  .fb-1 { top: -22px; left: -26px; animation: floaty 5s ease-in-out infinite; }
  .fb-2 { bottom: 38px; right: -30px; animation: floaty 6s ease-in-out infinite .6s; }
  @media (max-width: 540px) { .fb-1 { left: -8px; } .fb-2 { right: -6px; } }
  @keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

  /* signal bars */
  .sigbars { display: flex; align-items: flex-end; gap: 3px; height: 22px; }
  .sigbars i { width: 5px; border-radius: 2px; background: var(--cloud-grad); }
  .sigbars i:nth-child(1){height:30%} .sigbars i:nth-child(2){height:55%} .sigbars i:nth-child(3){height:78%} .sigbars i:nth-child(4){height:100%}

  /* ---------- operator strip ---------- */
  .op-strip { padding-block: 38px; border-block: 1px solid var(--line); background: var(--surface); }
  .op-strip .lbl { text-align: center; font-family: var(--f-mono); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 22px; }
  .op-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(20px,3vw,40px); }
  .op-logo { display: grid; place-items: center; height: 30px; }
  .op-logo img { height: 24px; width: auto; max-width: 124px; object-fit: contain; opacity: .46; filter: saturate(0); transition: opacity .25s ease, transform .25s ease; }
  .op-logo.sq img { height: 34px; }
  .op-logo:hover img { opacity: .92; transform: translateY(-2px); }
  @media (max-width: 540px) { .op-logo img { height: 20px; max-width: 96px; } .op-logo.sq img { height: 28px; } .op-row { gap: 22px 26px; } }

  /* ---------- service detail mini ---------- */
  .svc-card .num { font-family: var(--f-mono); font-size: .8rem; color: var(--brand-400); position: absolute; top: 22px; right: 24px; }
  .svc-card { display: flex; flex-direction: column; }
  .svc-card .btn-link { margin-top: auto; padding-top: 18px; }
  /* 5-up service layout: 3 + 2 centered on wide */
  .svc5 { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(18px,2.2vw,26px); }
  .svc5 > * { flex: 1 1 300px; max-width: 360px; }
  @media (max-width: 700px) { .svc5 > * { max-width: none; } }

  /* ---------- value props ---------- */
  .value-row { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(36px,5vw,72px); align-items: center; }
  @media (max-width: 900px) { .value-row { grid-template-columns: 1fr; } }
  .vp-list { display: grid; gap: 18px; }
  .vp { display: flex; gap: 18px; padding: 22px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--sh-sm); transition: transform .22s, box-shadow .25s; }
  .vp:hover { transform: translateX(5px); box-shadow: var(--sh); }
  .vp .vi { width: 48px; height: 48px; flex: none; border-radius: var(--r-sm); display: grid; place-items: center; background: var(--brand-50); border: 1px solid var(--brand-100); color: var(--brand-700); }
  .vp .vi svg { width: 24px; height: 24px; }
  .vp h4 { margin-bottom: 4px; }
  .vp p { font-size: .94rem; color: var(--ink-600); }

  /* ---------- telecom band ---------- */
  .telecom { position: relative; overflow: hidden; }
  .telecom .orb1 { width: 520px; height: 520px; background: #2E72D2; top: -160px; right: -120px; opacity: .3; }
  .telecom-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(36px,5vw,64px); align-items: center; position: relative; z-index: 1; }
  @media (max-width: 900px) { .telecom-grid { grid-template-columns: 1fr; } }
  .tel-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
  .tel-stat { padding: 24px; border-radius: var(--r); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); }
  .tel-stat b { font-family: var(--f-display); font-size: 2.2rem; color: #fff; display: block; letter-spacing: -.03em; line-height: 1; }
  .tel-stat span { font-size: .88rem; color: #93a6c4; margin-top: 8px; display: block; }
  .es-flag { display: inline-flex; align-items: center; gap: 7px; font-family: var(--f-mono); font-size: .72rem; }

  /* ---------- process ---------- */
  .steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; counter-reset: st; position: relative; }
  @media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; gap: 36px 24px; } }
  @media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
  .step { padding: 0 24px; position: relative; }
  .step:not(:last-child)::after { content: ""; position: absolute; top: 26px; right: 0; width: 48px; height: 2px; background: repeating-linear-gradient(90deg,var(--brand-200) 0 6px,transparent 6px 12px); }
  @media (max-width: 860px) { .step::after { display: none; } .step { padding: 0; } }
  .step .sn { width: 54px; height: 54px; border-radius: var(--r-sm); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--sh-sm); display: grid; place-items: center; font-family: var(--f-display); font-weight: 700; font-size: 1.3rem; color: var(--brand-700); margin-bottom: 22px; }
  .step h4 { margin-bottom: 8px; }
  .step p { font-size: .94rem; color: var(--ink-600); }

  /* ---------- cases ---------- */
  .case-card { padding: 0; overflow: hidden; }
  .case-thumb { aspect-ratio: 16/10; position: relative; background: var(--bg-2); display: grid; place-items: center; border-bottom: 1px solid var(--line); overflow: hidden; }
  .case-thumb .ph-stripe { position: absolute; inset: 0; background: repeating-linear-gradient(135deg, var(--brand-50) 0 14px, var(--bg-2) 14px 28px); opacity: .9; }
  .case-thumb .ph-tag { position: relative; font-family: var(--f-mono); font-size: .76rem; color: var(--brand-500); background: var(--surface); padding: 7px 14px; border-radius: var(--r-pill); border: 1px solid var(--brand-100); }
  .case-body { padding: 24px 26px 28px; }
  .case-body .chip { margin-bottom: 14px; }
  .case-body h3 { font-size: 1.3rem; margin-bottom: 8px; }
  .case-body p { font-size: .95rem; color: var(--ink-600); }
  .case-metrics { display: flex; gap: 22px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
  .case-metrics b { font-family: var(--f-display); font-size: 1.3rem; color: var(--brand-700); display: block; line-height: 1; }
  .case-metrics span { font-size: .76rem; color: var(--ink-500); }

  /* ---------- FAQ ---------- */
  .faq-list { max-width: 820px; margin-inline: auto; }
  .faq-item { border-bottom: 1px solid var(--line); }
  .faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 4px; text-align: left; font-family: var(--f-display); font-weight: 600; font-size: 1.12rem; color: var(--ink-900); }
  .faq-q .pm { width: 26px; height: 26px; flex: none; position: relative; }
  .faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--brand-600); border-radius: 2px; transition: transform .28s ease, opacity .28s; }
  .faq-q .pm::before { top: 12px; left: 4px; width: 18px; height: 2px; }
  .faq-q .pm::after { top: 4px; left: 12px; width: 2px; height: 18px; }
  .faq-item.open .pm::after { transform: rotate(90deg); opacity: 0; }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
  .faq-a p { padding: 0 4px 24px; color: var(--ink-600); }

  /* ---------- CTA band ---------- */
  .cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(44px,6vw,80px); background: var(--cloud-grad); box-shadow: var(--sh-glow); }
  .cta-band .orb { width: 360px; height: 360px; background: #fff; opacity: .14; top: -140px; right: -80px; }
  .cta-band-inner { position: relative; z-index: 1; max-width: 640px; }
  .cta-band h2 { color: #fff; }
  .cta-band p { color: rgba(255,255,255,.86); margin-top: 16px; font-size: 1.15rem; }
  .cta-band .hero-cta { margin-top: 32px; }
  .brick-deco { display: flex; gap: 7px; margin-bottom: 26px; }
  .brick-deco i { width: 16px; height: 16px; border-radius: 5px; background: rgba(255,255,255,.9); }
  .brick-deco i:nth-child(2){opacity:.7} .brick-deco i:nth-child(3){opacity:.45} .brick-deco i:nth-child(4){opacity:.25}

/* landing diseño-web: clear fixed nav (offer-pill overlap) + cycling hero shot */
.lp .lp-hero { padding-top: calc(var(--nav-h) + clamp(24px,5vw,44px)) !important; }
.lp .shot-body { position: relative; overflow: hidden; }
.lp .shot-body .lp-shot { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: opacity .35s ease; }
.lp .shot-body .lp-shot.fade { opacity: 0; }

/* hide WPML's auto language switcher (we use our own in the nav) */
.wpml-ls, .wpml-ls-statics-footer, .wpml-ls-statics-post_translations, #lang_sel, #lang_sel_footer, .wpml-ls-legacy-dropdown, .wpml-ls-legacy-list-horizontal { display: none !important; }

/* CookieAdmin box: cap height on mobile so it doesn't cover the whole screen */
@media (max-width: 600px) {
  .cookieadmin_consent_inside { max-height: 80vh !important; overflow-y: auto !important; -webkit-overflow-scrolling: touch; }
}
