/* ==============================================================
   NEOTHEK · WEB HOSTING
   HERO + TRUST BAR · V4 FINAL

   Desktop:
   - Más aire entre navegación y Hero
   - Cierre compacto hacia Trust Bar
   - Un solo CTA dominante
   - Jerarquía precio / beneficios / confianza
================================================================ */


/* ============================================================
   01. OPEN SANS
============================================================ */
@font-face {
  font-family: "Open Sans";
  src: url("/libs17/fonts/open_sans/OpenSans/OpenSans-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/libs17/fonts/open_sans/OpenSans/OpenSans-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/libs17/fonts/open_sans/OpenSans/OpenSans-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/libs17/fonts/open_sans/OpenSans/OpenSans-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/libs17/fonts/open_sans/OpenSans/OpenSans-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/libs17/fonts/open_sans/OpenSans/OpenSans-SemiBoldItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/libs17/fonts/open_sans/OpenSans/OpenSans-BoldItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}

/* ============================================================
   OPEN SANS CONDENSED
============================================================ */
@font-face {
  font-family: "Open Sans Condensed";
  src: url("/libs17/fonts/open_sans/OpenSans_Condensed/OpenSans_Condensed-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans Condensed";
  src: url("/libs17/fonts/open_sans/OpenSans_Condensed/OpenSans_Condensed-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans Condensed";
  src: url("/libs17/fonts/open_sans/OpenSans_Condensed/OpenSans_Condensed-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

/* ============================================================
   02. TOKENS Y BASE
============================================================ */
:root {
  --hosting-navy-950: #071a35;
  --hosting-navy-900: #0d2850;
  --hosting-navy-800: #143c70;
  --hosting-blue-500: #3478f6;
  --hosting-blue-600: #2563eb;
  --hosting-blue-700: #1d4ed8;
  --hosting-blue-200: #b8d2ff;
  --hosting-blue-100: #eaf2ff;
  --hosting-green-500: #20a85a;
  --hosting-violet-500: #8064ed;
  --hosting-white: #ffffff;
  --hosting-text-on-dark: #d8e5f5;
  --hosting-container: 1240px;
  --hosting-shadow: 0 30px 80px rgba(2, 15, 37, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f3f7fd;
  color: #111827;
  font-family: "Open Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.hosting-shell {
  width: min(calc(100% - 48px), var(--hosting-container));
  margin-inline: auto;
}

/* ============================================================
   03. HERO
============================================================ */
.hosting-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 690px;
  padding: clamp(76px, 8vw, 118px) 0 clamp(92px, 9vw, 132px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 12% 5%, rgba(52, 120, 246, 0.22), transparent 31%),
    linear-gradient(135deg, var(--hosting-navy-950) 0%, var(--hosting-navy-900) 50%, #123865 100%);
  background-size: 56px 56px, 56px 56px, auto, auto;
}

.hosting-hero::after {
  position: absolute;
  z-index: -1;
  right: -9%;
  bottom: -45%;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(129, 178, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(63, 124, 226, 0.035),
    0 0 0 180px rgba(63, 124, 226, 0.025);
  content: "";
}

.hosting-hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hosting-hero__glow--one {
  top: -150px;
  left: 30%;
  width: 420px;
  height: 420px;
  background: rgba(45, 109, 225, 0.12);
}

.hosting-hero__glow--two {
  right: 5%;
  bottom: -160px;
  width: 360px;
  height: 360px;
  background: rgba(111, 81, 220, 0.12);
}

.hosting-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  align-items: center;
  gap: clamp(52px, 7vw, 92px);
}

.hosting-hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hosting-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: #a9c9ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hosting-eyebrow__dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6ca5ff;
  box-shadow: 0 0 0 6px rgba(108, 165, 255, 0.12);
}

.hosting-eyebrow__dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(108, 165, 255, 0.5);
  border-radius: inherit;
  content: "";
  animation: hosting-dot-pulse 2.8s ease-out infinite;
}

.hosting-hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--hosting-white);
  font-family: "Open Sans Condensed", "Open Sans", Arial, sans-serif;
  font-size: clamp(3.4rem, 5.5vw, 5.55rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.97;
}

.hosting-hero h1 span {
  display: block;
  color: #7fb1ff;
}

.hosting-hero__lead {
  max-width: 620px;
  margin: 27px 0 0;
  color: var(--hosting-text-on-dark);
  font-size: clamp(1.03rem, 1.25vw, 1.17rem);
  font-weight: 400;
  line-height: 1.75;
}

.hosting-hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 22px;
  margin: 27px 0 0;
  padding: 0;
  color: #f0f6ff;
  font-size: 0.9rem;
  font-weight: 600;
  list-style: none;
}

.hosting-hero__benefits li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hosting-hero__benefits svg {
  width: 18px;
  height: 18px;
  padding: 2px;
  border-radius: 50%;
  background: rgba(91, 217, 143, 0.12);
  fill: none;
  stroke: #65df99;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.hosting-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.hosting-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hosting-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.hosting-button--primary {
  background: var(--hosting-blue-600);
  box-shadow: 0 13px 34px rgba(37, 99, 235, 0.3);
  color: var(--hosting-white);
}

.hosting-button--primary:hover {
  background: var(--hosting-blue-700);
  box-shadow: 0 17px 38px rgba(37, 99, 235, 0.38);
  transform: translateY(-2px);
}

.hosting-button--primary:hover svg {
  transform: translateX(3px);
}

.hosting-button--secondary {
  border-color: rgba(190, 214, 247, 0.45);
  background: rgba(255, 255, 255, 0.035);
  color: #f4f8ff;
  backdrop-filter: blur(10px);
}

.hosting-button--secondary:hover {
  border-color: rgba(212, 228, 250, 0.78);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

.hosting-button:focus-visible,
.hosting-hero__proof a:focus-visible {
  outline: 3px solid #9ec4ff;
  outline-offset: 4px;
}

.hosting-hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 25px;
  color: #b8c9df;
  font-size: 0.8rem;
}

.hosting-hero__proof strong {
  color: #eef5ff;
  font-weight: 700;
}

.hosting-stars {
  color: #ffd166;
  font-size: 0.94rem;
  letter-spacing: 0.08em;
}

.hosting-hero__proof a {
  color: #b8d2ff;
  font-weight: 600;
  text-underline-offset: 3px;
}

/* ============================================================
   04. HERO VISUAL
============================================================ */
.hosting-visual {
  position: relative;
  width: 100%;
  max-width: 540px;
  min-height: 470px;
  margin-inline: auto;
  perspective: 1000px;
}

.hosting-visual__orbit {
  position: absolute;
  border: 1px solid rgba(139, 185, 255, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.hosting-visual__orbit--one {
  inset: 9% 2% 0 7%;
  animation: hosting-orbit 18s linear infinite;
}

.hosting-visual__orbit--two {
  inset: 18% 11% 9% 16%;
  border-style: dashed;
  animation: hosting-orbit 24s linear infinite reverse;
}

.hosting-browser {
  position: absolute;
  top: 52px;
  right: 0;
  left: 26px;
  overflow: hidden;
  border: 1px solid rgba(185, 211, 248, 0.22);
  border-radius: 20px;
  background: rgba(7, 26, 53, 0.86);
  box-shadow: var(--hosting-shadow);
  transform: rotateY(-3deg) rotateX(1deg);
  backdrop-filter: blur(18px);
  animation: hosting-float 7s ease-in-out infinite;
}

.hosting-browser::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: linear-gradient(118deg, transparent 27%, rgba(255, 255, 255, 0.045) 42%, transparent 57%);
  content: "";
  pointer-events: none;
  transform: translateX(-120%);
  animation: hosting-sheen 7s ease-in-out infinite 1s;
}

.hosting-browser__bar {
  display: grid;
  grid-template-columns: auto minmax(130px, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(190, 214, 247, 0.12);
  background: rgba(255, 255, 255, 0.045);
}

.hosting-browser__controls {
  display: flex;
  gap: 6px;
}

.hosting-browser__controls span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #49698f;
}

.hosting-browser__controls span:nth-child(2) { background: #5d7da3; }
.hosting-browser__controls span:nth-child(3) { background: #6e91b9; }

.hosting-browser__address {
  display: flex;
  min-height: 31px;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(190, 214, 247, 0.12);
  border-radius: 7px;
  background: rgba(3, 17, 37, 0.34);
  color: #c7d7ea;
  font-size: 0.72rem;
}

.hosting-browser__address svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #68dc98;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hosting-browser__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #98eab9;
  font-size: 0.67rem;
  font-weight: 700;
}

.hosting-browser__live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #46d681;
  box-shadow: 0 0 0 5px rgba(70, 214, 129, 0.1);
  animation: hosting-live 2.4s ease-in-out infinite;
}

.hosting-browser__canvas {
  position: relative;
  min-height: 326px;
  padding: 27px;
  background:
    radial-gradient(circle at 85% 16%, rgba(128, 100, 237, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(16, 52, 96, 0.92), rgba(7, 25, 51, 0.95));
}

.hosting-page-preview {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(0, 10, 28, 0.24);
}

.hosting-page-preview__logo {
  display: block;
  width: 48px;
  height: 9px;
  border-radius: 99px;
  background: var(--hosting-blue-600);
}

.hosting-page-preview__nav {
  position: absolute;
  top: 23px;
  right: 22px;
  display: flex;
  gap: 8px;
}

.hosting-page-preview__nav i {
  width: 24px;
  height: 5px;
  border-radius: 99px;
  background: #d7e1ef;
}

.hosting-page-preview__copy {
  display: flex;
  width: 54%;
  flex-direction: column;
  gap: 10px;
  margin-top: 45px;
}

.hosting-page-preview__copy span {
  display: block;
  width: 100%;
  height: 9px;
  border-radius: 99px;
  background: #152846;
}

.hosting-page-preview__copy span:nth-child(2) { width: 86%; }
.hosting-page-preview__copy span:nth-child(3) {
  width: 67%;
  height: 6px;
  margin-top: 5px;
  background: #b6c4d6;
}

.hosting-page-preview__copy b {
  width: 82px;
  height: 27px;
  margin-top: 8px;
  border-radius: 6px;
  background: var(--hosting-blue-600);
}

.hosting-page-preview__art {
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 35%;
  height: 115px;
  overflow: hidden;
  border-radius: 11px;
  background: linear-gradient(140deg, #dae8ff, #eeeaff);
}

.hosting-page-preview__art span {
  position: absolute;
  border-radius: 50%;
  background: rgba(52, 120, 246, 0.65);
}

.hosting-page-preview__art span:nth-child(1) { top: 21px; left: 28px; width: 52px; height: 52px; }
.hosting-page-preview__art span:nth-child(2) { right: -18px; bottom: -20px; width: 92px; height: 92px; background: rgba(128, 100, 237, 0.48); }
.hosting-page-preview__art span:nth-child(3) { right: 25px; top: 18px; width: 12px; height: 12px; background: #66d597; }

.hosting-metric {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 185px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  background: rgba(7, 26, 53, 0.88);
  box-shadow: 0 15px 30px rgba(1, 13, 31, 0.26);
  backdrop-filter: blur(10px);
}

.hosting-metric--speed { bottom: 35px; left: 5px; }
.hosting-metric--secure { right: 2px; bottom: 83px; }

.hosting-metric__icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 9px;
}

.hosting-metric__icon--blue { background: rgba(52, 120, 246, 0.14); color: #76aaff; }
.hosting-metric__icon--green { background: rgba(32, 168, 90, 0.14); color: #67dc98; }

.hosting-metric__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hosting-metric span:last-child,
.hosting-ai-chip span:last-child,
.hosting-backup-chip span {
  display: flex;
  flex-direction: column;
}

.hosting-metric small,
.hosting-ai-chip small,
.hosting-backup-chip small {
  color: #91a8c4;
  font-size: 0.61rem;
  line-height: 1.25;
}

.hosting-metric strong,
.hosting-ai-chip strong,
.hosting-backup-chip strong {
  margin-top: 3px;
  color: #f3f7ff;
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.25;
}

.hosting-pulse {
  position: absolute;
  right: 31px;
  bottom: 28px;
  display: flex;
  height: 29px;
  align-items: end;
  gap: 4px;
}

.hosting-pulse span {
  width: 4px;
  border-radius: 99px;
  background: #4b88f7;
  animation: hosting-bars 1.8s ease-in-out infinite;
}

.hosting-pulse span:nth-child(1) { height: 28%; }
.hosting-pulse span:nth-child(2) { height: 53%; animation-delay: 120ms; }
.hosting-pulse span:nth-child(3) { height: 78%; animation-delay: 240ms; }
.hosting-pulse span:nth-child(4) { height: 48%; animation-delay: 360ms; }
.hosting-pulse span:nth-child(5) { height: 94%; animation-delay: 480ms; }
.hosting-pulse span:nth-child(6) { height: 66%; animation-delay: 600ms; }

.hosting-ai-chip,
.hosting-backup-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(211, 220, 255, 0.18);
  background: rgba(12, 34, 67, 0.92);
  box-shadow: 0 18px 40px rgba(1, 12, 29, 0.28);
  backdrop-filter: blur(14px);
}

.hosting-ai-chip {
  top: 11px;
  right: -17px;
  padding: 11px 14px;
  border-radius: 12px;
  animation: hosting-chip-float 5.5s ease-in-out infinite 600ms;
}

.hosting-ai-chip__spark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #8064ed, #4a85f7);
  box-shadow: 0 8px 20px rgba(110, 83, 223, 0.3);
  color: #fff;
  font-size: 1.05rem;
}

.hosting-backup-chip {
  bottom: 12px;
  left: -13px;
  padding: 12px 15px;
  border-radius: 12px;
  animation: hosting-chip-float 6.5s ease-in-out infinite reverse;
}

.hosting-backup-chip > svg {
  width: 29px;
  height: 29px;
  padding: 6px;
  border-radius: 8px;
  background: rgba(32, 168, 90, 0.15);
  fill: none;
  stroke: #67dc98;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

/* ============================================================
   05. TRUST BAR
============================================================ */
.hosting-trust {
  position: relative;
  z-index: 8;
  margin-top: -34px;
  padding-bottom: 36px;
}

.hosting-trust__grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #dbe6f3;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(18, 49, 91, 0.11);
}

.hosting-trust__item {
  position: relative;
  display: flex;
  min-height: 114px;
  align-items: center;
  gap: 14px;
  padding: 24px;
}

.hosting-trust__item:not(:last-child)::after {
  position: absolute;
  top: 27px;
  right: 0;
  bottom: 27px;
  width: 1px;
  background: #e2eaf4;
  content: "";
}

.hosting-trust__icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 12px;
  background: #eaf2ff;
  color: #2563eb;
}

.hosting-trust__icon--green {
  background: #effaf3;
  color: #168a4a;
}

.hosting-trust__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hosting-trust__item > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.hosting-trust__item strong {
  color: #17233a;
  font-size: 0.91rem;
  font-weight: 700;
  line-height: 1.35;
}

.hosting-trust__item small {
  margin-top: 5px;
  color: #66768c;
  font-size: 0.72rem;
  line-height: 1.45;
}

/* ============================================================
   06. ANIMACIONES
============================================================ */
@keyframes hosting-float {
  0%, 100% { transform: rotateY(-3deg) rotateX(1deg) translateY(0); }
  50% { transform: rotateY(-3deg) rotateX(1deg) translateY(-8px); }
}

@keyframes hosting-chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes hosting-dot-pulse {
  0% { opacity: 0.9; transform: scale(0.65); }
  75%, 100% { opacity: 0; transform: scale(1.45); }
}

@keyframes hosting-live {
  0%, 100% { box-shadow: 0 0 0 4px rgba(70, 214, 129, 0.08); }
  50% { box-shadow: 0 0 0 7px rgba(70, 214, 129, 0.16); }
}

@keyframes hosting-bars {
  0%, 100% { opacity: 0.55; transform: scaleY(0.72); transform-origin: bottom; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
}

@keyframes hosting-sheen {
  0%, 35% { transform: translateX(-120%); }
  62%, 100% { transform: translateX(120%); }
}

@keyframes hosting-orbit {
  to { transform: rotate(360deg); }
}

/* ============================================================
   07. RESPONSIVE
============================================================ */
@media (max-width: 1080px) {
  .hosting-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.82fr);
    gap: 44px;
  }

  .hosting-hero h1 {
    font-size: clamp(3.1rem, 5.4vw, 4.35rem);
  }

  .hosting-trust__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hosting-trust__item:nth-child(2)::after { display: none; }
  .hosting-trust__item:nth-child(-n + 2) { border-bottom: 1px solid #e2eaf4; }
}

@media (max-width: 820px) {
  .hosting-shell {
    width: min(calc(100% - 36px), var(--hosting-container));
  }

  .hosting-hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 105px;
  }

  .hosting-hero__layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hosting-hero__content {
    max-width: 700px;
  }

  .hosting-visual {
    max-width: 590px;
    min-height: 440px;
  }
}

@media (max-width: 580px) {
  .hosting-shell {
    width: min(calc(100% - 28px), var(--hosting-container));
  }

  .hosting-hero {
    padding-top: 58px;
    padding-bottom: 85px;
  }

  .hosting-eyebrow {
    margin-bottom: 17px;
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  .hosting-hero h1 {
    font-size: clamp(2.8rem, 14vw, 3.7rem);
    letter-spacing: -0.035em;
    line-height: 0.99;
  }

  .hosting-hero__lead {
    margin-top: 22px;
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .hosting-hero__benefits {
    display: grid;
    gap: 12px;
    font-size: 0.84rem;
  }

  .hosting-hero__actions {
    display: grid;
  }

  .hosting-button {
    width: 100%;
  }

  .hosting-hero__proof {
    align-items: flex-start;
    font-size: 0.72rem;
  }

  .hosting-hero__proof a {
    flex-basis: 100%;
    margin-left: 0;
  }

  .hosting-visual {
    min-height: 363px;
  }

  .hosting-browser {
    top: 40px;
    left: 0;
    border-radius: 16px;
    transform: none;
    animation-name: hosting-float-mobile;
  }

  .hosting-browser__bar {
    grid-template-columns: auto 1fr;
    gap: 10px;
    min-height: 50px;
    padding: 0 13px;
  }

  .hosting-browser__live { display: none; }
  .hosting-browser__canvas { min-height: 255px; padding: 18px; }
  .hosting-page-preview { min-height: 173px; padding: 17px; }
  .hosting-page-preview__nav { top: 18px; right: 17px; }
  .hosting-page-preview__nav i { width: 18px; }
  .hosting-page-preview__copy { margin-top: 39px; }
  .hosting-page-preview__art { right: 17px; bottom: 19px; height: 92px; }
  .hosting-metric { min-width: 155px; padding: 8px 9px; }
  .hosting-metric--speed { bottom: 22px; left: 3px; }
  .hosting-metric--secure { right: 1px; bottom: 64px; }
  .hosting-metric__icon { width: 31px; height: 31px; flex-basis: 31px; }
  .hosting-metric strong { font-size: 0.64rem; }
  .hosting-metric small { font-size: 0.54rem; }
  .hosting-pulse { display: none; }

  .hosting-ai-chip {
    top: 0;
    right: 8px;
  }

  .hosting-backup-chip {
    bottom: 0;
    left: 9px;
  }

  .hosting-ai-chip strong,
  .hosting-backup-chip strong { font-size: 0.66rem; }

  .hosting-trust {
    margin-top: -28px;
  }

  .hosting-trust__grid {
    grid-template-columns: 1fr;
  }

  .hosting-trust__item {
    min-height: 95px;
    padding: 20px;
  }

  .hosting-trust__item:not(:last-child)::after {
    top: auto;
    right: 20px;
    bottom: 0;
    left: 20px;
    width: auto;
    height: 1px;
  }

  .hosting-trust__item:nth-child(-n + 2) { border-bottom: 0; }
}

@keyframes hosting-float-mobile {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   08. ESCALA AISLADA PARA INTEGRACIÓN EN NEOTHEK
   Usa px deliberadamente: evita que un font-size global en html
   reduzca el componente al integrarlo en el sitio existente.
============================================================ */
.hosting-hero,
.hosting-trust {
  font-size: 16px;
}

@media (min-width: 1081px) {
  :root {
    --hosting-container: 1360px;
  }

  .hosting-hero {
    min-height: 760px;
    padding: 98px 0 150px;
  }

  .hosting-hero__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(510px, 0.95fr);
    gap: clamp(58px, 6vw, 88px);
    margin-top: 6rem;
  }

  .hosting-hero__content,
  .hosting-hero h1 {
    max-width: 720px;
  }

  .hosting-eyebrow {
    margin-bottom: 24px;
    font-size: 13px;
  }

  .hosting-hero h1 {
    font-size: clamp(60px, 5.15vw, 84px);
  }

  .hosting-hero__lead {
    max-width: 680px;
    margin-top: 30px;
    font-size: 18px;
  }

  .hosting-hero__benefits {
    gap: 15px 25px;
    margin-top: 30px;
    font-size: 14px;
  }

  .hosting-hero__benefits svg {
    width: 21px;
    height: 21px;
  }

  .hosting-hero__actions {
    margin-top: 38px;
  }

  .hosting-button {
    min-height: 60px;
    padding-inline: 28px;
    font-size: 15px;
  }

  .hosting-hero__proof {
    margin-top: 28px;
    font-size: 13px;
  }

  .hosting-stars {
    font-size: 15px;
  }

  .hosting-visual {
    max-width: 610px;
    min-height: 535px;
  }

  .hosting-browser {
    top: 58px;
  }

  .hosting-browser__bar {
    min-height: 64px;
    padding-inline: 21px;
  }

  .hosting-browser__address {
    min-height: 36px;
    font-size: 12px;
  }

  .hosting-browser__live {
    font-size: 11px;
  }

  .hosting-browser__canvas {
    min-height: 370px;
    padding: 31px;
  }

  .hosting-page-preview {
    min-height: 235px;
    padding: 25px;
  }

  .hosting-page-preview__logo {
    width: 56px;
    height: 10px;
  }

  .hosting-page-preview__nav {
    top: 26px;
    right: 25px;
  }

  .hosting-page-preview__nav i {
    width: 28px;
    height: 6px;
  }

  .hosting-page-preview__copy {
    margin-top: 52px;
  }

  .hosting-page-preview__copy span {
    height: 10px;
  }

  .hosting-page-preview__copy span:nth-child(3) {
    height: 7px;
  }

  .hosting-page-preview__copy b {
    width: 94px;
    height: 32px;
  }

  .hosting-page-preview__art {
    right: 28px;
    bottom: 28px;
    height: 132px;
  }

  .hosting-metric {
    min-width: 215px;
    padding: 12px 14px;
  }

  .hosting-metric__icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .hosting-metric small,
  .hosting-ai-chip small,
  .hosting-backup-chip small {
    font-size: 10px;
  }

  .hosting-metric strong,
  .hosting-ai-chip strong,
  .hosting-backup-chip strong {
    font-size: 12px;
  }

  .hosting-ai-chip {
    padding: 13px 16px;
  }

  .hosting-ai-chip__spark {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }

  .hosting-backup-chip {
    padding: 14px 17px;
  }

  .hosting-trust {
    margin-top: -42px;
  }

  .hosting-trust__item {
    min-height: 132px;
    gap: 16px;
    padding: 28px 26px;
  }

  .hosting-trust__icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .hosting-trust__icon svg {
    width: 26px;
    height: 26px;
  }

  .hosting-trust__item strong {
    font-size: 15px;
  }

  .hosting-trust__item small {
    font-size: 12px;
  }
}

@media (min-width: 581px) and (max-width: 1080px) {
  .hosting-eyebrow { font-size: 12px; }
  .hosting-hero h1 { font-size: clamp(54px, 7vw, 70px); }
  .hosting-hero__lead { font-size: 17px; }
  .hosting-hero__benefits { font-size: 14px; }
  .hosting-button { font-size: 15px; }
  .hosting-hero__proof { font-size: 12px; }
  .hosting-metric small,
  .hosting-ai-chip small,
  .hosting-backup-chip small { font-size: 10px; }
  .hosting-metric strong,
  .hosting-ai-chip strong,
  .hosting-backup-chip strong { font-size: 12px; }
  .hosting-trust__item strong { font-size: 15px; }
  .hosting-trust__item small { font-size: 12px; }
}

/* ============================================================
   09. ESTADOS DE ENLACES Y BOTONES
   La especificidad protege el componente frente a reglas globales
   como a:hover { color: ...; text-decoration: underline; }.
============================================================ */
.hosting-hero a.hosting-button,
.hosting-hero a.hosting-button:link,
.hosting-hero a.hosting-button:visited,
.hosting-hero a.hosting-button:hover,
.hosting-hero a.hosting-button:active {
  text-decoration: none !important;
}

.hosting-hero a.hosting-button--primary,
.hosting-hero a.hosting-button--primary:link,
.hosting-hero a.hosting-button--primary:visited {
  border-color: transparent;
  background: linear-gradient(135deg, #3478f6 0%, #2563eb 100%);
  color: #ffffff !important;
}

.hosting-hero a.hosting-button--primary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #4385fa 0%, #1d4ed8 100%);
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.42);
  color: #ffffff !important;
  transform: translateY(-3px);
}

.hosting-hero a.hosting-button--primary:active {
  background: #1d4ed8;
  box-shadow: 0 9px 22px rgba(37, 99, 235, 0.3);
  color: #ffffff !important;
  transform: translateY(0);
}

.hosting-hero a.hosting-button--primary svg,
.hosting-hero a.hosting-button--primary:hover svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
}

.hosting-hero a.hosting-button--secondary,
.hosting-hero a.hosting-button--secondary:link,
.hosting-hero a.hosting-button--secondary:visited {
  border-color: rgba(190, 214, 247, 0.52);
  background: rgba(255, 255, 255, 0.035);
  color: #f4f8ff !important;
}

.hosting-hero a.hosting-button--secondary:hover {
  border-color: #ffffff;
  background: #ffffff;
  box-shadow: 0 15px 34px rgba(2, 15, 37, 0.22);
  color: #102e5c !important;
  transform: translateY(-3px);
}

.hosting-hero a.hosting-button--secondary:active {
  border-color: #dceaff;
  background: #eaf2ff;
  color: #102e5c !important;
  transform: translateY(0);
}

.hosting-hero .hosting-hero__proof a,
.hosting-hero .hosting-hero__proof a:link,
.hosting-hero .hosting-hero__proof a:visited {
  color: #b8d2ff !important;
  text-decoration-color: rgba(184, 210, 255, 0.48);
}

.hosting-hero .hosting-hero__proof a:hover {
  color: #ffffff !important;
  text-decoration-color: #ffffff;
}

@media (max-width: 580px) {
  .hosting-eyebrow { font-size: 11px; }
  .hosting-hero h1 { font-size: clamp(43px, 13vw, 58px); }
  .hosting-hero__lead { font-size: 16px; }
  .hosting-hero__benefits { font-size: 13px; }
  .hosting-button { min-height: 56px; font-size: 14px; }
  .hosting-hero__proof { font-size: 11px; }
  .hosting-stars { font-size: 14px; }
  .hosting-metric small,
  .hosting-ai-chip small,
  .hosting-backup-chip small { font-size: 9px; }
  .hosting-metric strong,
  .hosting-ai-chip strong,
  .hosting-backup-chip strong { font-size: 11px; }
  .hosting-trust__item strong { font-size: 14px; }
  .hosting-trust__item small { font-size: 12px; }
}




/*** CSS TABLAS puesto en otro archivo***/





/* ============================================================
   NEOTHEK · COMPARACIÓN DE PLANES
   REVISIÓN 5 · 20260922 · Prefijo exclusivo: nwhc2-
   Compatible con el HTML colapsable entregado
============================================================ */ .nwhc2-compare {
  --blue:#2563eb;
  --blue-dark:#1748bd;
  --navy:#102b55;
  --text:#263751;
  --muted:#75859b;
  --line:#d5e1ef;
  --soft:#f1f5fd;
  --green:#15924f;
  position:relative;
  isolation:isolate;
  padding:96px 0 104px;
  border-top:1px solid #dce6f2;
  color:var(--text);
  background:
    radial-gradient(circle at 50% 0%,rgba(37,99,235,.055),transparent 34rem),
    #fff;
  font-family:"Open Sans",sans-serif
}

/* Separador luminoso entre las tarjetas de precios y la comparativa. */
.nwhc2-compare::before {
  content:"";
  position:absolute;
  top:-1px;
  left:50%;
  z-index:-1;
  width:min(88%,1120px);
  height:1px;
  transform:translateX(-50%);
  background:linear-gradient(
    90deg,
    transparent,
    #bcd1ed 20%,
    #8fb4e8 50%,
    #bcd1ed 80%,
    transparent
  )
}

.nwhc2-compare * {
  box-sizing:border-box
}

.nwhc2-container {
  width:min(calc(100% - 28px),1160px);
  margin:auto
}

.nwhc2-compare-header {
  max-width:720px;
  margin:0 auto 34px;
  text-align:center
}

.nwhc2-compare-eyebrow {
  color:var(--blue);
  font-size:11px;
  font-weight:800;
  letter-spacing:.15em
}

.nwhc2-compare-header h2 {
  margin:10px 0 0;
  color:#0c1b33;
  font-family:"Open Sans Condensed","Open Sans",sans-serif;
  font-size:clamp(42px,6vw,60px);
  font-weight:700;
  line-height:1
}

.nwhc2-compare-header p {
  max-width:620px;
  margin:15px auto 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.65
}

.nwhc2-compare-box {
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:15px;
  background:#fff;
  box-shadow:0 18px 45px rgba(20,46,82,.07)
}

.nwhc2-mobile-hint {
  display:flex;
  gap:7px;
  margin:0;
  padding:11px 14px;
  color:var(--muted);
  background:#f8fbff;
  font-size:11px;
  font-weight:700
}

.nwhc2-compare-table-wrap {
  overflow-x:auto;
  scrollbar-width:thin;
  scrollbar-color:#adc1dc #eef3f9
}

.nwhc2-compare-table-wrap:focus-visible {
  outline:3px solid rgba(37,99,235,.3);
  outline-offset:-3px
}

.nwhc2-compare-table {
  width:100%;
  min-width:760px;
  margin:0;
  border-spacing:0;
  border-collapse:separate;
  table-layout:fixed;
  font-size:12px
}

.nwhc2-compare-table th,.nwhc2-compare-table td {
  padding:14px 16px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  text-align:center;
  vertical-align:middle
}

.nwhc2-compare-table tr>*:last-child {
  border-right:0
}

.nwhc2-compare-table tbody tr:last-child>* {
  border-bottom:0
}

.nwhc2-compare-table tbody th {
  color:var(--text);
  font-weight:600;
  text-align:left
}

.nwhc2-compare-main thead th {
  position:relative;
  height:104px;
  color:var(--navy);
  background:#fff
}

.nwhc2-compare-main thead th:first-child {
  width:43%;
  padding-left:32px;
  text-align:left
}

.nwhc2-compare-plan-name {
  display:block;
  color:var(--blue);
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em
}

.nwhc2-compare-main thead small {
  display:block;
  margin-top:5px;
  color:var(--muted);
  font-size:9px;
  font-weight:400
}

.nwhc2-compare-grow-head {
  border-top:3px solid var(--blue)!important;
  background:#eef4ff!important
}

.nwhc2-compare-recommended {
  position:absolute;
  top:11px;
  left:50%;
  padding:4px 8px;
  transform:translateX(-50%);
  border-radius:20px;
  color:#fff;
  background:var(--blue);
  font-size:8px;
  font-weight:800;
  letter-spacing:.08em;
  white-space:nowrap
}

.nwhc2-compare-main tbody th {
  display:flex;
  align-items:center;
  gap:12px;
  padding-left:32px;
  background:#fff
}

.nwhc2-compare-main tbody th>span:last-child {
  min-width:0
}

.nwhc2-compare-main tbody th strong,.nwhc2-compare-main tbody th small {
  display:block
}

.nwhc2-compare-main tbody th strong {
  font-size:12px
}

.nwhc2-compare-main tbody th small {
  margin-top:3px;
  color:var(--muted);
  font-size:9px;
  font-weight:400
}

.nwhc2-compare-row-icon {
  display:grid;
  width:34px;
  height:34px;
  flex:0 0 34px;
  place-items:center;
  border-radius:9px;
  color:var(--blue);
  background:#e8f1ff;
  font-size:11px
}

.nwhc2-icon-cyan {
  color:#087b94!important;
  background:#e6f8fb!important
}

.nwhc2-icon-green,.nwhc2-compare-row-icon-green {
  color:var(--green)!important;
  background:#e8f8ef!important
}

.nwhc2-icon-violet {
  color:#6d3fe0!important;
  background:#f0ebff!important
}

.nwhc2-compare-important td>strong {
  color:#0d1d35;
  font-size:14px
}

.nwhc2-compare-grow {
  background:var(--soft)!important
}

.nwhc2-value-note,.nwhc2-performance-label,.nwhc2-table-note {
  display:block;
  margin-top:4px;
  color:var(--muted);
  font-size:8px;
  font-weight:400;
  line-height:1.4
}

.nwhc2-compare-included {
  display:inline-flex;
  align-items:center;
  gap:4px;
  color:#128146;
  font-size:10px;
  font-weight:700
}

.nwhc2-renewal-value {
  display:inline-flex;
  padding:5px 10px;
  border-radius:20px;
  color:#117c43;
  background:#ddf6e7;
  font-size:9px;
  font-weight:800
}

.nwhc2-compare-renewal-row th,.nwhc2-compare-renewal-row td:not(.nwhc2-compare-grow) {
  background:#f5fbf7
}

.nwhc2-performance {
  display:grid;
  max-width:86px;
  grid-template-columns:repeat(3,1fr);
  gap:4px;
  margin:auto
}

.nwhc2-performance i {
  height:5px;
  border-radius:8px;
  background:#d0dbea
}

.nwhc2-performance i:first-child,.nwhc2-performance.is-grow i:nth-child(-n+2),.nwhc2-performance.is-scale i {
  background:var(--blue)
}

/* Franja común con diagonal */ .nwhc2-all-included {
  display:grid;
  background:#f7faff
}

.nwhc2-all-included-copy {
  position:relative;
  z-index:1;
  padding:34px 52px 34px 31px;
  background:#173b6a
}

.nwhc2-all-included-copy:after {
  content:"";
  position:absolute;
  top:0;
  right:-94px;
  width:96px;
  height:100%;
  background:#173b6a;
  clip-path:polygon(0 0,100% 0,0 100%)
}

.nwhc2-all-included-copy>span {
  color:#9fc5ff;
  font-size:8px;
  font-weight:800;
  letter-spacing:.12em
}

.nwhc2-all-included-copy>strong {
  display:block;
  max-width:210px;
  margin:9px 0;
  color:#fff;
  font-size:20px;
  line-height:1.2
}

.nwhc2-all-included-copy p {
  max-width:240px;
  margin:0;
  color:#c8d7e8;
  font-size:10px;
  line-height:1.55
}

.nwhc2-all-included-grid {
  position:relative;
  z-index:2;
  display:grid;
  gap:8px;
  align-content:center;
  padding:24px 22px 24px 74px;
  background:#f7faff
}

.nwhc2-included-item {
  display:flex;
  align-items:center;
  gap:9px;
  padding:6px
}

.nwhc2-included-item>span {
  display:grid;
  width:32px;
  height:32px;
  flex:0 0 32px;
  place-items:center;
  border-radius:8px;
  color:var(--blue);
  background:#e8f1ff;
  font-size:10px
}

.nwhc2-included-item strong,.nwhc2-included-item small {
  display:block
}

.nwhc2-included-item strong {
  font-size:10px
}

.nwhc2-included-item small {
  margin-top:2px;
  color:var(--muted);
  font-size:8px
}

/* Acordeones */ .nwhc2-details {
  padding:48px 31px 20px;
  background:#fff
}

.nwhc2-details-heading {
  margin-bottom:26px
}

.nwhc2-details-eyebrow {
  color:var(--blue);
  font-size:8px;
  font-weight:800;
  letter-spacing:.14em
}

.nwhc2-details-heading h3 {
  margin:9px 0 5px;
  color:#263751;
  font-family:"Open Sans Condensed","Open Sans",sans-serif;
  font-size:29px;
  font-weight:300;
  line-height:1.1
}

.nwhc2-details-heading p {
  margin:0;
  color:var(--muted);
  font-size:10px
}

.nwhc2-detail-group {
  margin:0 0 10px;
  overflow:hidden;
  border:1px solid #cfddec;
  border-radius:10px;
  background:#fff
}

.nwhc2-detail-group summary {
  display:flex;
  min-height:58px;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  cursor:pointer;
  list-style:none
}

.nwhc2-detail-group summary::-webkit-details-marker {
  display:none
}

.nwhc2-detail-group summary:focus-visible {
  outline:3px solid rgba(37,99,235,.25);
  outline-offset:-3px
}

.nwhc2-detail-summary-icon {
  display:grid;
  width:32px;
  height:32px;
  flex:0 0 32px;
  place-items:center;
  border-radius:8px;
  color:var(--blue);
  background:#e8f1ff;
  font-size:10px
}

.nwhc2-detail-summary-copy {
  min-width:0;
  flex:1
}

.nwhc2-detail-summary-copy strong,.nwhc2-detail-summary-copy small {
  display:block
}

.nwhc2-detail-summary-copy strong {
  font-size:12px
}

.nwhc2-detail-summary-copy small {
  margin-top:3px;
  color:var(--muted);
  font-size:8px
}

.nwhc2-detail-toggle {
  display:grid;
  width:28px;
  height:28px;
  place-items:center;
  border-radius:50%;
  color:#65758b;
  background:#edf3f9;
  font-size:8px
}

.nwhc2-detail-toggle i {
  transition:transform .2s
}

.nwhc2-detail-group[open] .nwhc2-detail-toggle i {
  transform:rotate(180deg)
}

.nwhc2-detail-content {
  border-top:1px solid var(--line);
  background:#fbfcfe
}

.nwhc2-detail-table {
  min-width:700px;
  font-size:10px
}

.nwhc2-detail-table thead th {
  height:34px;
  padding:9px 14px;
  color:#63748c;
  background:#f0f4f9;
  font-size:8px;
  font-weight:800;
  letter-spacing:.05em
}

.nwhc2-detail-table thead th:first-child {
  width:47%;
  text-align:left
}

.nwhc2-detail-table tbody th {
  height:38px;
  padding:10px 14px;
  color:#40516a;
  background:#fbfcfe;
  font-size:10px;
  font-weight:500
}

.nwhc2-detail-table td {
  height:38px;
  padding:9px 12px;
  color:#50617a
}

.nwhc2-detail-table .nwhc2-compare-grow {
  background:#f1f5fd!important
}

.nwhc2-check {
  color:#18a052
}

.nwhc2-detail-renewal td strong {
  display:inline-flex;
  padding:4px 9px;
  border-radius:20px;
  color:#117c43;
  background:#ddf6e7;
  font-size:9px
}

.nwhc2-detail-note {
  margin:0;
  padding:9px 14px;
  border-top:1px solid var(--line);
  color:var(--muted);
  background:#f7faff;
  font-size:9px
}

.nwhc2-detail-note i {
  margin-right:5px;
  color:var(--blue)
}

/* Cierre */ .nwhc2-compare-decision {
  display:grid;
  gap:16px;
  align-items:center;
  margin:17px 31px 30px;
  padding:18px 20px;
  border:1px solid #cbdcf1;
  border-radius:11px;
  background:#f4f8ff
}

.nwhc2-compare-decision>div {
  display:flex;
  align-items:center;
  gap:11px
}

.nwhc2-decision-icon {
  display:grid;
  width:38px;
  height:38px;
  place-items:center;
  border-radius:10px;
  color:#fff;
  background:var(--blue)
}

.nwhc2-compare-decision strong {
  display:block;
  font-size:12px
}

.nwhc2-compare-decision p {
  margin:3px 0 0;
  color:var(--muted);
  font-size:9px
}

.nwhc2-decision-button {
  display:inline-flex;
  min-height:42px;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 16px;
  border-radius:9px;
  color:#fff;
  background:var(--blue);
  font-size:11px;
  font-weight:800;
  text-decoration:none;
  transition:.18s
}

.nwhc2-decision-button:hover {
  color:#fff;
  background:var(--blue-dark);
  transform:translateY(-1px)
}

@media(min-width:700px) {
  .nwhc2-all-included {
    grid-template-columns:36% 64%;
    min-height:164px
  }

  .nwhc2-all-included-grid {
    grid-template-columns:repeat(3,1fr)
  }

  .nwhc2-compare-decision {
    grid-template-columns:1fr auto
  }

  .nwhc2-mobile-hint {
    display:none
  }
}

@media(max-width:699.98px) {
  .nwhc2-compare {
    padding:64px 0 76px
  }

  .nwhc2-all-included-copy {
    padding:28px 22px
  }

  .nwhc2-all-included-copy:after {
    display:none
  }

  .nwhc2-all-included-grid {
    grid-template-columns:repeat(2,1fr);
    padding:18px
  }

  .nwhc2-details {
    padding:38px 14px 18px
  }

  .nwhc2-compare-decision {
    margin:15px 14px 22px
  }

  .nwhc2-compare-main tbody th {
    padding-left:16px
  }
}

/* ============================================================
   REFINAMIENTO PREMIUM · FRANJA AZUL Y ESPECIFICACIONES
============================================================ */

/* Franja azul con mayor jerarquía y profundidad */
.nwhc2-all-included {
  position: relative;
  min-height: 250px;
  border-top: 1px solid rgba(37, 99, 235, 0.12);
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
  background:
    radial-gradient(circle at 72% 20%, rgba(37, 99, 235, 0.08), transparent 26rem),
    #f7faff;
}

.nwhc2-all-included-copy {
  isolation: isolate;
  overflow: hidden;
  padding: 52px 82px 52px 48px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, #173f75 0%, #102f5b 100%);
  background-size: 30px 30px, 30px 30px, auto;
}

.nwhc2-all-included-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 12%;
  bottom: -100px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(62, 133, 255, 0.18);
  filter: blur(10px);
}

.nwhc2-all-included-copy > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(143, 187, 255, 0.24);
  border-radius: 999px;
  color: #b9d5ff;
  background: rgba(105, 160, 255, 0.09);
  font-size: 11px;
  letter-spacing: 0.13em;
}

.nwhc2-all-included-copy > span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #62a2ff;
  box-shadow: 0 0 0 4px rgba(98, 162, 255, 0.12);
}

.nwhc2-all-included-copy > strong {
  max-width: 320px;
  margin: 18px 0 14px;
  color: #ffffff;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.nwhc2-all-included-copy p {
  max-width: 335px;
  color: #d6e3f4;
  font-size: 15px;
  line-height: 1.7;
}

.nwhc2-all-included-grid {
  gap: 14px 18px;
  padding: 38px 34px 38px 108px;
}

.nwhc2-included-item {
  gap: 14px;
  padding: 13px;
  border: 1px solid transparent;
  border-radius: 13px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.nwhc2-included-item:hover {
  border-color: #d6e4f7;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(25, 57, 101, 0.08);
  transform: translateY(-2px);
}

.nwhc2-included-item > span {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  border-radius: 13px;
  font-size: 15px;
}

.nwhc2-included-item strong {
  color: #1c2f4d;
  font-size: 15px;
  font-weight: 700;
}

.nwhc2-included-item small {
  margin-top: 4px;
  color: #71839c;
  font-size: 11px;
  line-height: 1.45;
}

/* Encabezado formal de especificaciones */
.nwhc2-details {
  padding: 72px 48px 34px;
}

.nwhc2-details-eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
}

.nwhc2-details-heading h3 {
  margin: 14px 0 9px;
  color: #122743;
  font-size: 43px;
  font-weight: 400;
}

.nwhc2-details-heading p {
  color: #64758c;
  font-size: 16px;
  line-height: 1.6;
}

/* Acordeones más claros y con respuesta visual */
.nwhc2-detail-group {
  margin-bottom: 16px;
  border-color: #c8d8eb;
  border-radius: 15px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.nwhc2-detail-group:hover {
  border-color: #a9c4e7;
}

.nwhc2-detail-group[open] {
  border-color: #9fbee8;
  box-shadow: 0 14px 34px rgba(23, 63, 117, 0.09);
}

.nwhc2-detail-group summary {
  min-height: 88px;
  padding: 18px 22px;
  background: #ffffff;
}

.nwhc2-detail-group summary:hover {
  background: #f8fbff;
}

.nwhc2-detail-summary-icon {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  border-radius: 13px;
  font-size: 15px;
  transition: transform 180ms ease;
}

.nwhc2-detail-group summary:hover .nwhc2-detail-summary-icon {
  transform: translateY(-2px);
}

.nwhc2-detail-summary-copy strong {
  color: #1b2f4c;
  font-size: 17px;
}

.nwhc2-detail-summary-copy small {
  margin-top: 5px;
  color: #718198;
  font-size: 12px;
}

.nwhc2-detail-toggle {
  width: 38px;
  height: 38px;
  color: #315781;
  background: #edf4fc;
  font-size: 11px;
}

.nwhc2-detail-group[open] .nwhc2-detail-content {
  animation: nwhc2-detail-enter 240ms ease-out both;
}

@keyframes nwhc2-detail-enter {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tabla técnica con mayor contraste y legibilidad */
.nwhc2-detail-table {
  color: #263a57;
  font-size: 15px;
}

.nwhc2-detail-table thead th {
  height: 58px;
  padding: 16px 21px;
  color: #405675;
  background: #eaf1f9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.075em;
}

.nwhc2-detail-table thead .nwhc2-compare-grow {
  color: #1748bd;
  background: #e3edfc !important;
}

.nwhc2-detail-table tbody th {
  height: 64px;
  padding: 18px 21px;
  color: #283d5b;
  background: #ffffff;
  font-size: 15px;
  font-weight: 600;
}

.nwhc2-detail-table td {
  height: 64px;
  padding: 17px 18px;
  color: #435979;
  background: #ffffff;
  font-size: 15px;
  font-weight: 500;
}

.nwhc2-detail-table tbody tr:nth-child(even) > th,
.nwhc2-detail-table tbody tr:nth-child(even) > td:not(.nwhc2-compare-grow) {
  background: #f7faff;
}

.nwhc2-detail-table .nwhc2-compare-grow {
  color: #263f66;
  background: #edf4ff !important;
}

.nwhc2-detail-table tbody tr > * {
  transition:
    background-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.nwhc2-detail-table tbody tr:hover > *:not(.nwhc2-compare-grow) {
  color: #122f59;
  background: #eef5ff;
  box-shadow: inset 0 1px 0 rgba(37, 99, 235, 0.08), inset 0 -1px 0 rgba(37, 99, 235, 0.08);
}

.nwhc2-detail-table tbody tr:hover > .nwhc2-compare-grow {
  color: #123c81;
  background: #dfebff !important;
}

.nwhc2-detail-table tbody tr:hover > th:first-child {
  box-shadow: inset 4px 0 0 #2563eb;
  transform: translateX(2px);
}

.nwhc2-detail-table td strong {
  color: #1d3558;
  font-weight: 800;
}

.nwhc2-detail-table .nwhc2-table-note {
  margin-top: 6px;
  color: #6a7d97;
  font-size: 11px;
}

.nwhc2-check {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #0b8748;
  background: #e3f7eb;
  font-size: 11px;
}

.nwhc2-detail-note {
  padding: 14px 20px;
  color: #596e8b;
  background: #f3f7fc;
  font-size: 12px;
  line-height: 1.55;
}

@media(max-width: 699.98px) {
  .nwhc2-all-included-copy {
    padding: 38px 26px;
  }

  .nwhc2-all-included-copy > strong {
    font-size: 28px;
  }

  .nwhc2-all-included-grid {
    padding: 24px 18px;
  }

  .nwhc2-details {
    padding: 50px 16px 24px;
  }

  .nwhc2-details-heading h3 {
    font-size: 35px;
  }

  .nwhc2-details-heading p {
    font-size: 14px;
  }

  .nwhc2-detail-table {
    min-width: 860px;
  }
}

/* ============================================================
   REVISIÓN 3 · JERARQUÍA DE ENCABEZADOS Y VALORES
============================================================ */

/* Nombres de planes más visibles dentro de todas las tablas */
.nwhc2-detail-table thead th:not(:first-child) {
  color: #243f64;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.nwhc2-detail-table thead th.nwhc2-compare-grow {
  color: #174fc5;
  font-size: 16px;
}

.nwhc2-detail-table thead th:first-child {
  font-size: 15px;
  letter-spacing: 0.055em;
}

/* Los valores destacados ya no compiten con el nombre de la característica */
.nwhc2-detail-table td strong {
  display: inline-block;
  max-width: 180px;
  color: #1b3558;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.nwhc2-detail-table tbody tr:hover > td strong {
  color: #123d7a;
}

/* Textos secundarios claros pero discretos */
.nwhc2-detail-table .nwhc2-table-note {
  max-width: 210px;
  margin: 6px auto 0;
  font-size: 12px;
  line-height: 1.4;
}

/* Evita saltos excesivos en valores comerciales de dos palabras */
.nwhc2-detail-table td {
  padding-right: 16px;
  padding-left: 16px;
}

@media(min-width: 1000px) {
  .nwhc2-detail-table thead th:not(:first-child) {
    font-size: 17px;
  }

  .nwhc2-detail-table td strong {
    max-width: 200px;
  }
}

/* R4 OVERRIDE DEFINITIVO */
.nwhc2-detail-table thead th:first-child {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.045em;
}

.nwhc2-detail-table thead th:not(:first-child),
.nwhc2-detail-table thead th.nwhc2-compare-grow {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.085em;
}

.nwhc2-detail-table td strong {
  max-width: 175px;
  color: #1f385a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.nwhc2-detail-table tbody tr:hover > td strong {
  color: #173d73;
  font-weight: 600;
}

@media(min-width: 1000px) {
  .nwhc2-detail-table thead th:not(:first-child),
  .nwhc2-detail-table thead th.nwhc2-compare-grow {
    font-size: 14px;
  }

  .nwhc2-detail-table td strong {
    max-width: 180px;
    font-size: 14px;
  }
}

/* ============================================================
   REVISIÓN 4 FINAL · ESCALA EQUILIBRADA
============================================================ */
.nwhc2-detail-table thead th:first-child {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.045em;
}

.nwhc2-detail-table thead th:not(:first-child),
.nwhc2-detail-table thead th.nwhc2-compare-grow {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.085em;
}

.nwhc2-detail-table td strong {
  max-width: 175px;
  color: #1f385a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.nwhc2-detail-table tbody tr:hover > td strong {
  color: #173d73;
  font-weight: 600;
}

@media(min-width: 1000px) {
  .nwhc2-detail-table thead th:not(:first-child),
  .nwhc2-detail-table thead th.nwhc2-compare-grow {
    font-size: 14px;
  }

  .nwhc2-detail-table td strong {
    max-width: 180px;
    font-size: 14px;
  }
}

@media(prefers-reduced-motion: reduce) {
  .nwhc2-detail-group[open] .nwhc2-detail-content {
    animation: none;
  }
}

/* ============================================================
   REVISIÓN 2 · LEGIBILIDAD Y SEPARACIÓN VISUAL
============================================================ */

/* Bloque azul diagonal: separa beneficios y especificaciones */
@media(min-width: 700px) {
  .nwhc2-all-included {
    grid-template-columns: 42% 58%;
    min-height: 272px;
  }

  .nwhc2-all-included-copy {
    z-index: 3;
    width: calc(100% + 108px);
    margin-right: -108px;
    padding: 54px 142px 54px 48px;
    clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
  }

  .nwhc2-all-included-copy::after {
    display: none;
  }

  .nwhc2-all-included-grid {
    z-index: 2;
    padding: 40px 36px 40px 112px;
  }
}

.nwhc2-all-included::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  height: 4px;
  background: linear-gradient(90deg, #2563eb 0%, #74a9ff 33%, #dce9fb 67%, transparent 100%);
  opacity: 0.65;
}

.nwhc2-included-item strong {
  font-size: 16px;
}

.nwhc2-included-item small {
  margin-top: 5px;
  color: #617590;
  font-size: 13px;
  line-height: 1.45;
}

/* Encabezados START / GROW / SCALE más visibles */
.nwhc2-detail-table thead th {
  height: 64px;
  padding: 18px 22px;
  color: #2d4668;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.085em;
}

.nwhc2-detail-table thead th:first-child {
  color: #243b5b;
  font-size: 14px;
}

/* Características y valores con escala comercial, no técnica */
.nwhc2-detail-table {
  font-size: 17px;
}

.nwhc2-detail-table tbody th {
  height: 74px;
  padding: 20px 22px;
  color: #203754;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
}

.nwhc2-detail-table td {
  height: 74px;
  padding: 19px 20px;
  color: #354e70;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
}

.nwhc2-detail-table td strong {
  color: #172f51;
  font-size: 17px;
  font-weight: 800;
}

.nwhc2-detail-table .nwhc2-table-note {
  margin-top: 7px;
  color: #60748f;
  font-size: 13px;
  line-height: 1.45;
}

/* Check perfectamente centrado dentro del círculo */
.nwhc2-check {
  display: inline-flex !important;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  color: #078444;
  background: #ddf5e7;
  font-size: 12px;
  line-height: 1 !important;
  vertical-align: middle;
}

.nwhc2-check::before {
  display: block;
  width: auto;
  height: auto;
  margin: 0;
  line-height: 1 !important;
  transform: translateY(0);
}

/* Estados incluidos dentro de las tablas secundarias */
.nwhc2-detail-table .nwhc2-compare-included {
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #087c43;
  background: #e2f7ea;
  font-size: 13px;
}

.nwhc2-detail-table .nwhc2-compare-included i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Más contraste al recorrer una fila */
.nwhc2-detail-table tbody tr:hover > th:first-child {
  padding-left: 26px;
  box-shadow: inset 5px 0 0 #2563eb;
  transform: none;
}

.nwhc2-detail-table tbody tr:hover > td {
  color: #173a6e;
  font-weight: 600;
}

@media(max-width: 699.98px) {
  .nwhc2-all-included-copy {
    width: auto;
    margin-right: 0;
    clip-path: none;
  }

  .nwhc2-included-item strong {
    font-size: 15px;
  }

  .nwhc2-included-item small {
    font-size: 12px;
  }

  .nwhc2-detail-table {
    min-width: 940px;
  }
}

@media(prefers-reduced-motion:reduce) {
  .nwhc2-compare * {
    transition:none!important
  }
}

/* Encabezado descriptivo de la primera columna */ .nwhc2-compare-feature-heading {
  color:var(--navy);
  font-weight:700
}

/* ============================================================
   ESCALA VISUAL AMPLIADA
   Igualada al peso y legibilidad de las tarjetas de precios
============================================================ */ .nwhc2-compare .visually-hidden {
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  padding:0!important;
  margin:-1px!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
  white-space:nowrap!important;
  border:0!important;
}

.nwhc2-container {
  width:min(calc(100% - 32px),1280px)!important;
  max-width:1280px!important;
}

.nwhc2-compare-header {
  max-width:780px;
  margin-bottom:42px
}

.nwhc2-compare-eyebrow {
  font-size:13px
}

.nwhc2-compare-header h2 {
  font-size:clamp(46px,6vw,68px)
}

.nwhc2-compare-header p {
  max-width:700px;
  font-size:18px
}

.nwhc2-compare-table {
  font-size:15px
}

.nwhc2-compare-table th,.nwhc2-compare-table td {
  padding:20px 22px
}

.nwhc2-compare-main thead th {
  height:142px
}

.nwhc2-compare-main thead th:first-child {
  padding-left:36px;
  font-size:16px
}

.nwhc2-compare-plan-name {
  font-size:14px
}

.nwhc2-compare-main thead small {
  margin-top:7px;
  font-size:11px
}

.nwhc2-compare-recommended {
  top:16px;
  padding:6px 11px;
  font-size:9px
}

.nwhc2-compare-main tbody th {
  gap:15px;
  padding-left:36px
}

.nwhc2-compare-main tbody th strong {
  font-size:15px
}

.nwhc2-compare-main tbody th small {
  margin-top:5px;
  font-size:11px;
  line-height:1.45
}

.nwhc2-compare-row-icon {
  width:44px;
  height:44px;
  flex-basis:44px;
  border-radius:12px;
  font-size:14px
}

.nwhc2-compare-important td>strong {
  font-size:18px
}

.nwhc2-value-note,.nwhc2-performance-label,.nwhc2-table-note {
  margin-top:6px;
  font-size:10px
}

.nwhc2-compare-included {
  font-size:12px
}

.nwhc2-renewal-value {
  padding:7px 13px;
  font-size:11px
}

.nwhc2-performance {
  max-width:112px;
  gap:6px
}

.nwhc2-performance i {
  height:7px
}

/* Franja de beneficios comunes */ .nwhc2-all-included {
  min-height:218px
}

.nwhc2-all-included-copy {
  padding:46px 68px 46px 40px
}

.nwhc2-all-included-copy>span {
  font-size:10px
}

.nwhc2-all-included-copy>strong {
  max-width:250px;
  margin:12px 0;
  font-size:25px
}

.nwhc2-all-included-copy p {
  max-width:285px;
  font-size:13px;
  line-height:1.6
}

.nwhc2-all-included-grid {
  gap:12px;
  padding:34px 30px 34px 92px
}

.nwhc2-included-item {
  gap:12px;
  padding:9px
}

.nwhc2-included-item>span {
  width:42px;
  height:42px;
  flex-basis:42px;
  border-radius:11px;
  font-size:13px
}

.nwhc2-included-item strong {
  font-size:13px
}

.nwhc2-included-item small {
  margin-top:3px;
  font-size:10px;
  line-height:1.35
}

/* Encabezado y filas colapsables */ .nwhc2-details {
  padding:62px 40px 28px
}

.nwhc2-details-heading {
  margin-bottom:34px
}

.nwhc2-details-eyebrow {
  font-size:10px
}

.nwhc2-details-heading h3 {
  margin:12px 0 7px;
  font-size:38px
}

.nwhc2-details-heading p {
  font-size:14px
}

.nwhc2-detail-group {
  margin-bottom:14px;
  border-radius:13px
}

.nwhc2-detail-group summary {
  min-height:78px;
  gap:14px;
  padding:15px 18px
}

.nwhc2-detail-summary-icon {
  width:42px;
  height:42px;
  flex-basis:42px;
  border-radius:11px;
  font-size:13px
}

.nwhc2-detail-summary-copy strong {
  font-size:15px
}

.nwhc2-detail-summary-copy small {
  margin-top:4px;
  font-size:11px
}

.nwhc2-detail-toggle {
  width:34px;
  height:34px;
  font-size:10px
}

.nwhc2-detail-table {
  font-size:13px
}

.nwhc2-detail-table thead th {
  height:46px;
  padding:13px 18px;
  font-size:10px
}

.nwhc2-detail-table tbody th {
  height:52px;
  padding:14px 18px;
  font-size:13px
}

.nwhc2-detail-table td {
  height:52px;
  padding:13px 16px;
  font-size:13px
}

.nwhc2-detail-table .nwhc2-table-note {
  font-size:10px
}

.nwhc2-detail-renewal td strong {
  padding:6px 11px;
  font-size:11px
}

.nwhc2-detail-note {
  padding:12px 18px;
  font-size:11px
}

/* Cierre de conversión */ .nwhc2-compare-decision {
  margin:22px 40px 38px;
  padding:24px 26px
}

.nwhc2-decision-icon {
  width:48px;
  height:48px;
  font-size:16px
}

.nwhc2-compare-decision strong {
  font-size:15px
}

.nwhc2-compare-decision p {
  margin-top:5px;
  font-size:12px
}

.nwhc2-decision-button {
  min-height:50px;
  padding:13px 20px;
  font-size:13px
}

@media(max-width:699.98px) {
  .nwhc2-container {
    width:min(calc(100% - 20px),1280px)!important
  }

  .nwhc2-compare-header h2 {
    font-size:42px
  }

  .nwhc2-compare-header p {
    font-size:16px
  }

  .nwhc2-compare-table {
    min-width:850px
  }

  .nwhc2-all-included {
    min-height:0
  }

  .nwhc2-all-included-copy {
    padding:32px 24px
  }

  .nwhc2-all-included-grid {
    padding:22px
  }

  .nwhc2-details {
    padding:44px 16px 22px
  }

  .nwhc2-details-heading h3 {
    font-size:32px
  }

  .nwhc2-detail-table {
    min-width:780px
  }

  .nwhc2-compare-decision {
    margin:18px 16px 26px;
    padding:20px
  }
}

/* ============================================================
   REVISIÓN 4 FINAL · ESCALA EQUILIBRADA
============================================================ */
.nwhc2-detail-table thead th:first-child {
  color: #243b5b;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.045em;
}

.nwhc2-detail-table thead th:not(:first-child) {
  color: #243f64;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.085em;
}

.nwhc2-detail-table thead th.nwhc2-compare-grow {
  color: #174fc5;
  font-size: 14px;
}

.nwhc2-detail-table td strong {
  display: inline-block;
  max-width: 175px;
  color: #1f385a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.nwhc2-detail-table tbody tr:hover > td strong {
  color: #173d73;
  font-weight: 600;
}

.nwhc2-detail-table .nwhc2-table-note {
  max-width: 210px;
  margin: 6px auto 0;
  font-size: 12px;
  line-height: 1.4;
}

.nwhc2-detail-table td {
  padding-right: 16px;
  padding-left: 16px;
}

@media(min-width: 1000px) {
  .nwhc2-detail-table thead th:not(:first-child) {
    font-size: 14px;
  }

  .nwhc2-detail-table td strong {
    max-width: 180px;
    font-size: 14px;
  }
}








/* ============================================================
   NEOTHEK · CONSTRUCTOR WORDPRESS CON IA
   V1 · 20260922 · Prefijo exclusivo: nwiai-
============================================================ */
.nwiai-section {
  --nwiai-blue: #2563eb;
  --nwiai-blue-dark: #174fc5;
  --nwiai-violet: #7657e8;
  --nwiai-violet-dark: #5f42cf;
  --nwiai-title: #172033;
  --nwiai-text: #475569;
  --nwiai-muted: #64748b;
  --nwiai-border: #ded8fa;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 112px 0 104px;
  color: var(--nwiai-text);
  background:
    radial-gradient(circle at 82% 22%, rgba(118, 87, 232, .13), transparent 29rem),
    radial-gradient(circle at 10% 95%, rgba(52, 120, 246, .08), transparent 25rem),
    #f3f0ff;
  font-family: "Open Sans", sans-serif;
}

.nwiai-section *,
.nwiai-section *::before,
.nwiai-section *::after {
  box-sizing: border-box;
}

.nwiai-container {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), 1280px);
  max-width: 1280px;
  margin-inline: auto;
}

.nwiai-orb {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
}

.nwiai-orb--one {
  top: 88px;
  right: -180px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(118, 87, 232, .17);
}

.nwiai-orb--two {
  top: 150px;
  right: -90px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(37, 99, 235, .13);
}

.nwiai-hero-row {
  --bs-gutter-x: 5rem;
}

.nwiai-content {
  max-width: 610px;
}

.nwiai-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--nwiai-violet-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nwiai-eyebrow__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(118, 87, 232, .18);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #7657e8, #3478f6);
  box-shadow: 0 10px 25px rgba(118, 87, 232, .2);
  font-size: 15px;
}

.nwiai-content h2 {
  max-width: 650px;
  margin: 0;
  color: var(--nwiai-title);
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  font-size: clamp(48px, 4.3vw, 64px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.025em;
}

.nwiai-content h2 span {
  display: block;
  color: var(--nwiai-violet);
}

.nwiai-lead {
  max-width: 600px;
  margin: 26px 0 0;
  color: var(--nwiai-text);
  font-size: 17px;
  line-height: 1.75;
}

.nwiai-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.nwiai-benefits li {
  display: flex;
  min-height: 92px;
  align-items: flex-start;
  gap: 13px;
  padding: 18px 0;
  border-top: 1px solid rgba(98, 77, 168, .14);
}

.nwiai-benefits li:nth-child(-n+2) {
  border-top: 0;
}

.nwiai-check {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  margin-top: 1px;
  place-items: center;
  border-radius: 50%;
  color: var(--nwiai-violet-dark);
  background: #e9e3ff;
  font-size: 12px;
}

.nwiai-benefits strong,
.nwiai-benefits small {
  display: block;
}

.nwiai-benefits strong {
  color: #21314a;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.nwiai-benefits small {
  margin-top: 5px;
  color: var(--nwiai-muted);
  font-size: 13px;
  line-height: 1.5;
}

.nwiai-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.nwiai-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 24px;
  border: 1px solid #2563eb;
  border-radius: 12px;
  color: #fff;
  background: #2563eb;
  box-shadow: 0 12px 26px rgba(37, 99, 235, .24);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.nwiai-button:hover {
  color: #fff;
  background: #174fc5;
  box-shadow: 0 16px 34px rgba(37, 99, 235, .3);
  transform: translateY(-2px);
}

.nwiai-button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .32);
  outline-offset: 4px;
}

.nwiai-button i {
  transition: transform .22s ease;
}

.nwiai-button:hover i {
  transform: translateX(4px);
}

.nwiai-action-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #46566d;
  font-size: 14px;
  font-weight: 600;
}

.nwiai-action-note i {
  color: #565d66;
  font-size: 23px;
}

/* ============================================================
   DEMOSTRACIÓN DEL CONSTRUCTOR
============================================================ */
.nwiai-visual {
  position: relative;
  width: 100%;
  max-width: 625px;
  margin-left: auto;
  padding: 40px 12px 44px;
}

.nwiai-visual__halo {
  position: absolute;
  top: 0;
  left: 50%;
  width: 510px;
  height: 510px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(118, 87, 232, .18), rgba(52, 120, 246, .1));
  transform: translateX(-50%);
  filter: blur(1px);
}

.nwiai-visual__halo::before,
.nwiai-visual__halo::after {
  content: "";
  position: absolute;
  inset: 38px;
  border: 1px solid rgba(118, 87, 232, .17);
  border-radius: inherit;
}

.nwiai-visual__halo::after {
  inset: 92px;
  border-color: rgba(37, 99, 235, .14);
}

.nwiai-builder {
  position: relative;
  z-index: 2;
  overflow: visible;
  border: 1px solid rgba(75, 64, 125, .2);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 32px 70px rgba(59, 45, 111, .18), 0 8px 24px rgba(50, 65, 100, .08);
}

.nwiai-builder__topbar {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid #e6e4ef;
  border-radius: 22px 22px 0 0;
  background: rgba(255, 255, 255, .97);
}

.nwiai-builder__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nwiai-builder__logo {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #7657e8, #3478f6);
  box-shadow: 0 9px 22px rgba(118, 87, 232, .24);
  font-size: 21px;
}

.nwiai-builder__brand strong,
.nwiai-builder__brand small {
  display: block;
}

.nwiai-builder__brand strong {
  color: #1d2b42;
  font-size: 15px;
  line-height: 1.3;
}

.nwiai-builder__brand small {
  margin-top: 3px;
  color: #718096;
  font-size: 12px;
}

.nwiai-builder__secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #347152;
  background: #eaf8f0;
  font-size: 11px;
  font-weight: 700;
}

.nwiai-builder__workspace {
  display: grid;
  min-height: 440px;
  grid-template-columns: 58px 1fr;
  overflow: hidden;
  border-radius: 0 0 22px 22px;
  background: #f7f8fc;
}

.nwiai-builder__sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  padding-top: 22px;
  border-right: 1px solid #e4e6ef;
  background: #fff;
}

.nwiai-builder__sidebar span {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 10px;
  color: #8290a5;
  font-size: 14px;
}

.nwiai-builder__sidebar span.is-active {
  color: #6949db;
  background: #ede8ff;
}

.nwiai-generator {
  position: relative;
  min-width: 0;
  padding: 22px;
}

.nwiai-prompt {
  position: relative;
  z-index: 3;
  padding: 18px;
  border: 1px solid #ded8fa;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(54, 52, 87, .07);
}

.nwiai-prompt__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nwiai-prompt__label span {
  color: #2b3850;
  font-size: 13px;
  font-weight: 700;
}

.nwiai-prompt__label span i {
  margin-right: 6px;
  color: #7657e8;
}

.nwiai-prompt__label small {
  color: #7d889a;
  font-size: 11px;
  font-weight: 600;
}

.nwiai-prompt__text {
  min-height: 62px;
  margin: 13px 0 0;
  padding: 12px 14px;
  border: 1px solid #e5e7ef;
  border-radius: 10px;
  color: #59687d;
  background: #fafbfe;
  font-size: 12px;
  line-height: 1.55;
}

.nwiai-caret {
  display: inline-block;
  width: 1px;
  height: 15px;
  margin-left: 2px;
  vertical-align: -3px;
  background: #7657e8;
  animation: nwiai-blink 1s step-end infinite;
}

.nwiai-prompt__options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 11px;
}

.nwiai-prompt__options span {
  padding: 5px 9px;
  border: 1px solid #e2def3;
  border-radius: 999px;
  color: #645c78;
  background: #faf9ff;
  font-size: 11px;
  font-weight: 600;
}

.nwiai-generate-button {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 13px;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(135deg, #7657e8, #3478f6);
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(105, 76, 214, .18);
}

.nwiai-progress {
  position: absolute;
  z-index: 6;
  top: 160px;
  right: 38px;
  left: 38px;
  display: grid;
  min-height: 78px;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 13px 15px 17px;
  border: 1px solid rgba(118, 87, 232, .2);
  border-radius: 13px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 36px rgba(50, 42, 98, .15);
  animation: nwiai-progress-card 12s ease-in-out infinite;
}

.nwiai-progress__spark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, #7657e8, #3478f6);
  font-size: 13px;
}

.nwiai-progress__copy strong,
.nwiai-progress__copy small {
  display: block;
}

.nwiai-progress__copy strong {
  color: #29374e;
  font-size: 12px;
}

.nwiai-progress__copy small {
  margin-top: 3px;
  color: #7b8799;
  font-size: 11px;
}

.nwiai-progress__percent {
  color: #6950cb;
  font-size: 11px;
  font-weight: 800;
}

.nwiai-progress__track {
  position: absolute;
  right: 15px;
  bottom: 10px;
  left: 63px;
  overflow: hidden;
  height: 4px;
  border-radius: 99px;
  background: #ece9f7;
}

.nwiai-progress__track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7657e8, #3478f6);
  animation: nwiai-loading 12s ease-in-out infinite;
}

.nwiai-preview {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid #dfe4ee;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(43, 57, 82, .08);
}

.nwiai-preview__browser {
  display: flex;
  height: 30px;
  align-items: center;
  gap: 5px;
  padding: 0 11px;
  border-bottom: 1px solid #e7eaf0;
  background: #f4f6fa;
}

.nwiai-preview__browser > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8cfda;
}

.nwiai-preview__browser small {
  margin-left: auto;
  color: #8792a3;
  font-size: 11px;
}

.nwiai-preview__page {
  min-height: 188px;
  padding: 14px;
  background: #fff;
}

.nwiai-preview__nav {
  display: flex;
  height: 18px;
  align-items: center;
  gap: 8px;
}

.nwiai-preview__nav b {
  width: 42px;
  height: 7px;
  margin-right: auto;
  border-radius: 99px;
  background: #2968e8;
}

.nwiai-preview__nav span {
  width: 23px;
  height: 4px;
  border-radius: 99px;
  background: #dbe1ea;
}

.nwiai-preview__hero {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 14px;
  margin-top: 13px;
  padding: 14px;
  border-radius: 10px;
  background: #f3f6ff;
}

.nwiai-preview__copy > * {
  display: block;
  opacity: 0;
  transform: translateY(5px);
  animation: nwiai-build-item 12s ease infinite;
}

.nwiai-preview__copy small {
  width: 38px;
  height: 4px;
  margin-bottom: 9px;
  border-radius: 99px;
  background: #7657e8;
  animation-delay: .6s;
}

.nwiai-preview__copy strong {
  width: 93%;
  height: 8px;
  margin-bottom: 5px;
  border-radius: 99px;
  background: #1d3152;
  animation-delay: 1s;
}

.nwiai-preview__copy strong:nth-of-type(2) {
  width: 71%;
  animation-delay: 1.25s;
}

.nwiai-preview__copy p {
  width: 100%;
  height: 4px;
  margin: 10px 0 0;
  border-radius: 99px;
  background: #b9c5d6;
  animation-delay: 1.6s;
}

.nwiai-preview__copy p:nth-of-type(2) {
  width: 79%;
  margin-top: 5px;
  animation-delay: 1.8s;
}

.nwiai-preview__copy button {
  width: 48px;
  height: 15px;
  margin-top: 12px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: #2563eb;
  animation-delay: 2.1s;
}

.nwiai-preview__image {
  position: relative;
  display: grid;
  min-height: 94px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  color: #7657e8;
  background: linear-gradient(145deg, #e9e3ff, #dbeaff);
  opacity: 0;
  transform: scale(.96);
  animation: nwiai-build-image 12s ease infinite;
  animation-delay: 2.25s;
}

.nwiai-preview__image i {
  position: relative;
  z-index: 2;
  font-size: 23px;
}

.nwiai-preview__image span {
  position: absolute;
  right: -13px;
  bottom: -21px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(118, 87, 232, .2);
}

.nwiai-preview__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 9px;
}

.nwiai-preview__cards > span {
  min-height: 42px;
  padding: 7px;
  border: 1px solid #e7ebf2;
  border-radius: 7px;
  opacity: 0;
  transform: translateY(6px);
  animation: nwiai-build-item 12s ease infinite;
  animation-delay: 2.6s;
}

.nwiai-preview__cards > span:nth-child(2) { animation-delay: 2.85s; }
.nwiai-preview__cards > span:nth-child(3) { animation-delay: 3.1s; }

.nwiai-preview__cards i,
.nwiai-preview__cards b,
.nwiai-preview__cards small {
  display: block;
  border-radius: 99px;
}

.nwiai-preview__cards i {
  width: 13px;
  height: 13px;
  border-radius: 4px;
  background: #e8e2ff;
}

.nwiai-preview__cards b {
  width: 72%;
  height: 4px;
  margin-top: 5px;
  background: #506079;
}

.nwiai-preview__cards small {
  width: 90%;
  height: 3px;
  margin-top: 4px;
  background: #d0d7e2;
}

.nwiai-ready {
  position: absolute;
  z-index: 8;
  right: 22px;
  bottom: -30px;
  left: 82px;
  display: grid;
  min-height: 74px;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid #cee8d8;
  border-radius: 14px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 38px rgba(29, 67, 50, .14);
  opacity: 0;
  transform: translateY(10px);
  animation: nwiai-ready-card 12s ease infinite;
}

.nwiai-ready__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #15814a;
  background: #e5f7ed;
  font-size: 15px;
}

.nwiai-ready strong,
.nwiai-ready small {
  display: block;
}

.nwiai-ready strong {
  color: #21354a;
  font-size: 13px;
}

.nwiai-ready small {
  margin-top: 3px;
  color: #6d7d90;
  font-size: 11px;
}

.nwiai-ready > i {
  color: #6f7e90;
  font-size: 13px;
}

.nwiai-floating-card {
  position: absolute;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(118, 87, 232, .17);
  border-radius: 13px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 15px 34px rgba(51, 43, 95, .14);
  backdrop-filter: blur(12px);
}

.nwiai-floating-card > i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: #684ad5;
  background: #ece6ff;
  font-size: 13px;
}

.nwiai-floating-card strong,
.nwiai-floating-card small {
  display: block;
}

.nwiai-floating-card strong {
  color: #2a3850;
  font-size: 12px;
}

.nwiai-floating-card small {
  margin-top: 2px;
  color: #778498;
  font-size: 11px;
}

.nwiai-floating-card--edit {
  top: 10px;
  right: -15px;
  animation: nwiai-float 5s ease-in-out infinite;
}

.nwiai-floating-card--included {
  bottom: 19px;
  left: -24px;
  animation: nwiai-float 5s ease-in-out -2.5s infinite;
}

/* ============================================================
   PROCESO EN TRES PASOS
============================================================ */
.nwiai-process {
  margin-top: 92px;
  padding: 38px;
  border: 1px solid var(--nwiai-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 48px rgba(70, 55, 127, .08);
  backdrop-filter: blur(10px);
}

.nwiai-process__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.nwiai-process__heading p {
  margin: 0 0 8px;
  color: var(--nwiai-violet);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
}

.nwiai-process__heading h3 {
  margin: 0;
  color: var(--nwiai-title);
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  font-size: clamp(34px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.05;
}

.nwiai-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  counter-reset: none;
  list-style: none;
}

.nwiai-step {
  position: relative;
  display: grid;
  min-height: 190px;
  grid-template-columns: 48px 1fr;
  align-content: start;
  gap: 18px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid #e2ddf6;
  border-radius: 17px;
  background: #fff;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.nwiai-step:hover {
  border-color: #c9bdf4;
  box-shadow: 0 16px 32px rgba(64, 48, 121, .1);
  transform: translateY(-4px);
}

.nwiai-step__number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: #ded8f4;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  font-size: 33px;
  font-weight: 700;
  line-height: 1;
}

.nwiai-step__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: #6849d7;
  background: #ece7ff;
  font-size: 17px;
}

.nwiai-step h4 {
  max-width: 215px;
  margin: 3px 0 0;
  color: #1e2e47;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.nwiai-step p {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: var(--nwiai-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ============================================================
   ANIMACIONES
============================================================ */
@keyframes nwiai-blink {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}

@keyframes nwiai-progress-card {
  0%, 12% { opacity: 0; transform: translateY(8px) scale(.98); }
  18%, 54% { opacity: 1; transform: translateY(0) scale(1); }
  62%, 100% { opacity: 0; transform: translateY(-5px) scale(.99); }
}

@keyframes nwiai-loading {
  0%, 14% { width: 0; }
  53%, 100% { width: 86%; }
}

@keyframes nwiai-build-item {
  0%, 20% { opacity: 0; transform: translateY(5px); }
  30%, 92% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(2px); }
}

@keyframes nwiai-build-image {
  0%, 30% { opacity: 0; transform: scale(.96); }
  38%, 92% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(.98); }
}

@keyframes nwiai-ready-card {
  0%, 56% { opacity: 0; transform: translateY(10px); }
  65%, 92% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(5px); }
}

@keyframes nwiai-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1199.98px) {
  .nwiai-hero-row { --bs-gutter-x: 3rem; }
  .nwiai-content h2 { font-size: clamp(46px, 5vw, 56px); }
  .nwiai-benefits { grid-template-columns: 1fr; }
  .nwiai-benefits li:nth-child(2) { border-top: 1px solid rgba(98, 77, 168, .14); }
  .nwiai-floating-card--edit { right: 0; }
  .nwiai-floating-card--included { left: 0; }
}

@media (max-width: 991.98px) {
  .nwiai-section { padding: 88px 0; }
  .nwiai-content { max-width: 780px; margin-inline: auto; text-align: center; }
  .nwiai-content h2, .nwiai-lead { margin-inline: auto; }
  .nwiai-benefits { max-width: 680px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-inline: auto; text-align: left; }
  .nwiai-benefits li:nth-child(2) { border-top: 0; }
  .nwiai-actions { justify-content: center; }
  .nwiai-visual { max-width: 670px; margin: 20px auto 0; }
  .nwiai-process { margin-top: 76px; }
  .nwiai-steps { grid-template-columns: 1fr; }
  .nwiai-step { min-height: 0; }
  .nwiai-step p { grid-column: 2; margin-top: -5px; }
}

@media (max-width: 767.98px) {
  .nwiai-section { padding: 76px 0; }
  .nwiai-container { width: min(calc(100% - 24px), 1280px); }
  .nwiai-content h2 { font-size: clamp(43px, 12vw, 54px); }
  .nwiai-lead { font-size: 16px; line-height: 1.7; }
  .nwiai-benefits { grid-template-columns: 1fr; }
  .nwiai-benefits li:nth-child(2) { border-top: 1px solid rgba(98, 77, 168, .14); }
  .nwiai-actions { flex-direction: column; gap: 16px; }
  .nwiai-button { width: 100%; max-width: 360px; }
  .nwiai-visual { padding: 36px 0 52px; }
  .nwiai-builder__workspace { grid-template-columns: 48px 1fr; min-height: 420px; }
  .nwiai-generator { padding: 16px; }
  .nwiai-progress { right: 25px; left: 25px; }
  .nwiai-ready { right: 12px; left: 58px; }
  .nwiai-floating-card--edit { right: -4px; }
  .nwiai-floating-card--included { bottom: 12px; left: -4px; }
  .nwiai-process { margin-top: 58px; padding: 28px 20px; }
  .nwiai-process__heading h3 { font-size: 34px; }
  .nwiai-step { padding: 24px; }
}

@media (max-width: 575.98px) {
  .nwiai-eyebrow { font-size: 11px; letter-spacing: .1em; }
  .nwiai-eyebrow__icon { width: 36px; height: 36px; }
  .nwiai-content h2 { font-size: 44px; }
  .nwiai-builder__topbar { min-height: 68px; padding: 12px 14px; }
  .nwiai-builder__brand small, .nwiai-builder__secure { display: none; }
  .nwiai-builder__workspace { grid-template-columns: 42px 1fr; }
  .nwiai-builder__sidebar span { width: 31px; height: 31px; }
  .nwiai-prompt { padding: 14px; }
  .nwiai-prompt__options span:last-child { display: none; }
  .nwiai-preview__hero { grid-template-columns: 1fr; }
  .nwiai-preview__image { display: none; }
  .nwiai-progress { top: 168px; right: 14px; left: 14px; }
  .nwiai-progress__copy small { display: none; }
  .nwiai-ready { left: 48px; padding: 10px 12px; }
  .nwiai-ready small { display: none; }
  .nwiai-floating-card { display: none; }
  .nwiai-process__heading h3 { font-size: 32px; }
  .nwiai-step { grid-template-columns: 44px 1fr; gap: 14px; }
  .nwiai-step__icon { width: 44px; height: 44px; }
  .nwiai-step p { grid-column: 1 / -1; margin-top: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  .nwiai-section *,
  .nwiai-section *::before,
  .nwiai-section *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .nwiai-preview__copy > *,
  .nwiai-preview__image,
  .nwiai-preview__cards > span,
  .nwiai-ready {
    opacity: 1;
    transform: none;
  }

  .nwiai-progress { display: none; }
  .nwiai-progress__track i { width: 86%; }
}









/* ============================================================
   NEOTHEK · CORREO PROFESIONAL CON DOMINIO
   V2 · 20260922 · Delimitación del correo incluido + acceso VPS
============================================================ */
.nwmail-section {
  --nwmail-blue: #2563eb;
  --nwmail-blue-dark: #174fc5;
  --nwmail-cyan: #0ea5e9;
  --nwmail-cyan-dark: #0369a1;
  --nwmail-title: #172033;
  --nwmail-text: #475569;
  --nwmail-muted: #64748b;
  --nwmail-line: #cfe8f7;
  --nwmail-green: #15924f;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 112px 0 104px;
  color: var(--nwmail-text);
  background:
    radial-gradient(circle at 10% 24%, rgba(14, 165, 233, .10), transparent 30rem),
    radial-gradient(circle at 92% 86%, rgba(37, 99, 235, .07), transparent 27rem),
    #eff8ff;
  font-family: "Open Sans", sans-serif;
}

.nwmail-section *,
.nwmail-section *::before,
.nwmail-section *::after {
  box-sizing: border-box;
}

.nwmail-container {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), 1280px);
  max-width: 1280px;
  margin-inline: auto;
}

.nwmail-main-row {
  --bs-gutter-x: 5rem;
}

.nwmail-decoration {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.nwmail-decoration--one {
  top: 105px;
  left: -190px;
  width: 490px;
  height: 490px;
  border: 1px solid rgba(14, 165, 233, .15);
}

.nwmail-decoration--two {
  top: 188px;
  left: -80px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(37, 99, 235, .12);
}

/* ============================================================
   CONTENIDO COMERCIAL
============================================================ */
.nwmail-content {
  max-width: 620px;
  margin-left: auto;
}

.nwmail-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--nwmail-cyan-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nwmail-eyebrow > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(14, 165, 233, .18);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  box-shadow: 0 10px 25px rgba(14, 165, 233, .20);
  font-size: 15px;
}

.nwmail-content h2 {
  margin: 0;
  color: var(--nwmail-title);
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  font-size: clamp(48px, 4.3vw, 64px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.025em;
}

.nwmail-content h2 span {
  display: block;
  color: var(--nwmail-cyan-dark);
}

.nwmail-lead {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--nwmail-text);
  font-size: 17px;
  line-height: 1.75;
}

.nwmail-example {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.nwmail-example span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid #cfe8f7;
  border-radius: 10px;
  color: #24506e;
  background: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 600;
}

.nwmail-example i {
  color: var(--nwmail-cyan);
  font-size: 12px;
}

.nwmail-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.nwmail-benefits li {
  display: flex;
  min-height: 102px;
  align-items: flex-start;
  gap: 13px;
  padding: 19px 0;
  border-top: 1px solid rgba(71, 137, 177, .18);
}

.nwmail-benefits li:nth-child(-n+2) {
  border-top: 0;
}

.nwmail-benefit-icon {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #d4ecfa;
  border-radius: 13px;
  color: var(--nwmail-cyan-dark);
  background: #fff;
  box-shadow: 0 8px 20px rgba(34, 113, 158, .08);
  font-size: 15px;
}

.nwmail-benefits strong,
.nwmail-benefits small {
  display: block;
}

.nwmail-benefits strong {
  color: #21314a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.nwmail-benefits small {
  margin-top: 5px;
  color: var(--nwmail-muted);
  font-size: 13px;
  line-height: 1.5;
}

.nwmail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.nwmail-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .22s ease, background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.nwmail-button--primary {
  color: #fff;
  border-color: var(--nwmail-blue);
  background: var(--nwmail-blue);
  box-shadow: 0 12px 26px rgba(37, 99, 235, .22);
}

.nwmail-button--primary:hover {
  color: #fff;
  border-color: var(--nwmail-blue-dark);
  background: var(--nwmail-blue-dark);
  box-shadow: 0 16px 34px rgba(37, 99, 235, .28);
  transform: translateY(-2px);
}

.nwmail-button--secondary {
  color: #244461;
  border-color: #a9cde4;
  background: rgba(255, 255, 255, .64);
}

.nwmail-button--secondary:hover {
  color: #123d5b;
  border-color: #65acd5;
  background: #fff;
  transform: translateY(-2px);
}

.nwmail-button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .30);
  outline-offset: 4px;
}

.nwmail-button--primary i {
  transition: transform .22s ease;
}

.nwmail-button--primary:hover i {
  transform: translateX(4px);
}

.nwmail-included-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  color: #386078;
  font-size: 13px;
  font-weight: 600;
}

.nwmail-included-note i {
  color: var(--nwmail-green);
}

/* ============================================================
   INTERFAZ VISUAL DE CORREO
============================================================ */
.nwmail-visual {
  position: relative;
  width: 100%;
  max-width: 630px;
  min-height: 590px;
  margin-right: auto;
  padding: 48px 14px 56px;
}

.nwmail-visual__backdrop {
  position: absolute;
  top: 0;
  left: 50%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(14, 165, 233, .17), rgba(37, 99, 235, .08));
  transform: translateX(-50%);
}

.nwmail-visual__backdrop::before,
.nwmail-visual__backdrop::after {
  content: "";
  position: absolute;
  inset: 45px;
  border: 1px solid rgba(14, 165, 233, .17);
  border-radius: inherit;
}

.nwmail-visual__backdrop::after {
  inset: 102px;
  border-color: rgba(37, 99, 235, .13);
}

.nwmail-client {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(73, 124, 157, .22);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 32px 70px rgba(31, 93, 128, .17), 0 8px 24px rgba(47, 73, 105, .08);
}

.nwmail-client__topbar {
  display: grid;
  min-height: 72px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 13px 18px;
  border-bottom: 1px solid #e4eaf0;
  background: #fff;
}

.nwmail-window-controls {
  display: flex;
  gap: 6px;
}

.nwmail-window-controls span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9d5df;
}

.nwmail-search {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid #e3e9ef;
  border-radius: 10px;
  color: #8090a2;
  background: #f7f9fb;
  font-size: 12px;
}

.nwmail-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  font-size: 12px;
  font-weight: 800;
}

.nwmail-client__body {
  display: grid;
  min-height: 420px;
  grid-template-columns: 190px 1fr;
}

.nwmail-sidebar {
  padding: 20px 15px;
  border-right: 1px solid #e4eaf0;
  background: #f7fbfe;
}

.nwmail-address {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 4px 18px;
}

.nwmail-address__icon {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: var(--nwmail-cyan-dark);
  background: #dff4ff;
  font-size: 12px;
}

.nwmail-address strong,
.nwmail-address small {
  display: block;
}

.nwmail-address strong {
  color: #263a50;
  font-size: 12px;
}

.nwmail-address small {
  margin-top: 2px;
  color: #75879a;
  font-size: 11px;
}

.nwmail-compose {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  color: #fff;
  background: #2563eb;
  box-shadow: 0 8px 18px rgba(37, 99, 235, .18);
  font-size: 12px;
  font-weight: 700;
}

.nwmail-folders {
  display: grid;
  gap: 5px;
  margin-top: 18px;
}

.nwmail-folders span {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 9px;
  padding: 0 10px;
  border-radius: 9px;
  color: #64778b;
  font-size: 11px;
  font-weight: 600;
}

.nwmail-folders span i {
  width: 16px;
  color: #7890a6;
  text-align: center;
}

.nwmail-folders span b {
  margin-left: auto;
  color: #1d66a0;
  font-size: 11px;
}

.nwmail-folders span.is-active {
  color: #155c91;
  background: #e3f4ff;
}

.nwmail-folders span.is-active i {
  color: var(--nwmail-cyan);
}

.nwmail-storage {
  margin-top: 42px;
  padding: 13px 10px;
  border: 1px solid #dceaf3;
  border-radius: 10px;
  background: #fff;
}

.nwmail-storage strong,
.nwmail-storage small {
  display: block;
}

.nwmail-storage strong {
  color: #42566b;
  font-size: 11px;
}

.nwmail-storage small {
  margin-top: 3px;
  color: #7a8b9e;
  font-size: 11px;
  line-height: 1.35;
}

.nwmail-storage > i {
  display: block;
  height: 5px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 99px;
  background: #e5edf3;
}

.nwmail-storage > i b {
  display: block;
  width: 38%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0ea5e9, #2563eb);
}

.nwmail-inbox {
  min-width: 0;
  background: #fff;
}

.nwmail-inbox__heading {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 19px;
  border-bottom: 1px solid #e6ecf1;
}

.nwmail-inbox__heading strong,
.nwmail-inbox__heading small {
  display: block;
}

.nwmail-inbox__heading strong {
  color: #26384f;
  font-size: 14px;
}

.nwmail-inbox__heading small {
  margin-top: 4px;
  color: #7c8b9e;
  font-size: 11px;
}

.nwmail-inbox__heading > div {
  display: flex;
  gap: 8px;
}

.nwmail-inbox__heading > div i {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid #e1e8ee;
  border-radius: 8px;
  color: #6e8195;
  font-size: 11px;
}

.nwmail-message {
  position: relative;
  display: grid;
  min-height: 76px;
  grid-template-columns: 7px 38px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 10px 16px;
  border-bottom: 1px solid #edf1f4;
  background: #fff;
  transition: background-color .25s ease;
}

.nwmail-message--new {
  background: #eef8ff;
  animation: nwmail-message-arrival 10s ease-in-out infinite;
}

.nwmail-message__status {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccd7e0;
}

.nwmail-message--new .nwmail-message__status {
  background: var(--nwmail-cyan);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, .11);
}

.nwmail-message__avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  color: #496174;
  background: #eaf0f4;
  font-size: 11px;
  font-weight: 800;
}

.nwmail-message__avatar--blue { color: #176ba1; background: #dcf2ff; }
.nwmail-message__avatar--violet { color: #7251c5; background: #eee8ff; }
.nwmail-message__avatar--green { color: #267654; background: #e3f7ed; }

.nwmail-message__copy {
  min-width: 0;
}

.nwmail-message__copy strong,
.nwmail-message__copy small {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.nwmail-message__copy strong {
  color: #32465c;
  font-size: 12px;
  font-weight: 700;
}

.nwmail-message__copy small {
  margin-top: 4px;
  color: #7a8a9d;
  font-size: 11px;
}

.nwmail-message time {
  align-self: start;
  margin-top: 5px;
  color: #8291a2;
  font-size: 11px;
}

.nwmail-delivery,
.nwmail-protection {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid rgba(70, 132, 164, .20);
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 17px 38px rgba(29, 82, 111, .15);
  backdrop-filter: blur(12px);
}

.nwmail-delivery {
  right: -4px;
  bottom: 13px;
  animation: nwmail-delivery 10s ease-in-out infinite;
}

.nwmail-protection {
  top: 15px;
  left: -10px;
  animation: nwmail-float 5s ease-in-out infinite;
}

.nwmail-delivery > span,
.nwmail-protection > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  font-size: 14px;
}

.nwmail-delivery > span {
  color: #14804a;
  background: #e4f7ec;
}

.nwmail-protection > span {
  color: #0874ad;
  background: #def3ff;
}

.nwmail-delivery strong,
.nwmail-delivery small,
.nwmail-protection strong,
.nwmail-protection small {
  display: block;
}

.nwmail-delivery strong,
.nwmail-protection strong {
  color: #294057;
  font-size: 12px;
}

.nwmail-delivery small,
.nwmail-protection small {
  margin-top: 3px;
  color: #728497;
  font-size: 11px;
}

/* ============================================================
   CAPACIDAD DE CORREO SEGÚN EL PLAN
============================================================ */
.nwmail-capacity {
  margin-top: 92px;
  padding: 38px;
  border: 1px solid #cfe8f7;
  border-radius: 22px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 48px rgba(28, 98, 138, .08);
  backdrop-filter: blur(10px);
  scroll-margin-top: 110px;
}

.nwmail-capacity__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.nwmail-capacity__heading p {
  margin: 0 0 8px;
  color: var(--nwmail-cyan-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
}

.nwmail-capacity__heading h3 {
  margin: 0;
  color: var(--nwmail-title);
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  font-size: clamp(34px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.05;
}

.nwmail-capacity__assistance {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border: 1px solid #d7ebf7;
  border-radius: 13px;
  background: #f8fcff;
}

.nwmail-capacity__assistance > i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #0876b1;
  background: #dff4ff;
  font-size: 15px;
}

.nwmail-capacity__assistance strong,
.nwmail-capacity__assistance small {
  display: block;
}

.nwmail-capacity__assistance strong {
  color: #2c4259;
  font-size: 13px;
}

.nwmail-capacity__assistance small {
  margin-top: 3px;
  color: #6f8295;
  font-size: 11px;
}

.nwmail-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.nwmail-plan {
  position: relative;
  min-height: 194px;
  padding: 26px;
  border: 1px solid #d8e8f2;
  border-radius: 17px;
  background: #fff;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.nwmail-plan:hover {
  border-color: #9fd1ec;
  box-shadow: 0 16px 32px rgba(30, 104, 145, .11);
  transform: translateY(-4px);
}

.nwmail-plan--featured {
  border-color: #7ebee4;
  background: linear-gradient(180deg, #f1f9ff, #fff 52%);
  box-shadow: 0 14px 30px rgba(26, 106, 151, .09);
}

.nwmail-plan__recommended {
  position: absolute;
  top: -13px;
  left: 50%;
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  color: #fff;
  background: #2563eb;
  box-shadow: 0 7px 16px rgba(37, 99, 235, .20);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.nwmail-plan__recommended i {
  font-size: 11px;
}

.nwmail-plan__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 19px;
  border-bottom: 1px solid #e5edf3;
}

.nwmail-plan__name {
  color: #176ea4;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
}

.nwmail-plan__tag {
  color: #6d8093;
  font-size: 12px;
  font-weight: 600;
  text-align: right;
}

.nwmail-plan__values {
  display: grid;
  min-height: 95px;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  gap: 18px;
  padding-top: 20px;
}

.nwmail-plan__values > i {
  width: 1px;
  height: 54px;
  background: #dce8ef;
}

.nwmail-plan__values strong,
.nwmail-plan__values small {
  display: block;
  text-align: center;
}

.nwmail-plan__values strong {
  color: #213b56;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.nwmail-plan__values small {
  margin-top: 5px;
  color: #6e8295;
  font-size: 13px;
  line-height: 1.4;
}

.nwmail-capacity__legal {
  display: flex;
  max-width: 890px;
  align-items: flex-start;
  gap: 9px;
  margin: 22px 0 0;
  color: #60778b;
  font-size: 13px;
  line-height: 1.6;
}

.nwmail-capacity__legal i {
  margin-top: 4px;
  color: var(--nwmail-cyan-dark);
}

/* ============================================================
   CORREO CORPORATIVO ADMINISTRADO · VENTA ASCENDENTE
   Visualmente secundario al CTA principal del hosting.
============================================================ */
.nwmail-upgrade {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(280px, 1.35fr) minmax(245px, .9fr) auto;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  margin-top: 30px;
  padding: 26px 28px;
  border: 1px solid #c9d9e7;
  border-radius: 17px;
  background:
    radial-gradient(circle at 0 50%, rgba(14, 165, 233, .10), transparent 20rem),
    #f8fbfe;
}

.nwmail-upgrade::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, #0ea5e9, #2563eb);
}

.nwmail-upgrade__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid #c9e5f5;
  border-radius: 15px;
  color: #075f91;
  background: #e3f5ff;
  font-size: 19px;
}

.nwmail-upgrade__content p {
  margin: 0 0 6px;
  color: #0874ad;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.nwmail-upgrade__content h4 {
  margin: 0;
  color: #1b3048;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.nwmail-upgrade__content > span {
  display: block;
  margin-top: 7px;
  color: #5e7387;
  font-size: 13px;
  line-height: 1.55;
}

.nwmail-upgrade__features {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nwmail-upgrade__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #425a70;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.nwmail-upgrade__features i {
  display: grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #147947;
  background: #e4f6eb;
  font-size: 11px;
}

.nwmail-upgrade__link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid #7898b4;
  border-radius: 11px;
  color: #173f61;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: color .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.nwmail-upgrade__link:hover {
  color: #0a5c91;
  border-color: #168dcc;
  box-shadow: 0 10px 24px rgba(24, 106, 151, .13);
  transform: translateY(-2px);
}

.nwmail-upgrade__link:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .28);
  outline-offset: 4px;
}

.nwmail-upgrade__link i {
  transition: transform .22s ease;
}

.nwmail-upgrade__link:hover i {
  transform: translateX(3px);
}

/* ============================================================
   ANIMACIONES
============================================================ */
@keyframes nwmail-message-arrival {
  0%, 8% { background: #fff; box-shadow: inset 4px 0 0 transparent; }
  16%, 72% { background: #eef8ff; box-shadow: inset 4px 0 0 #0ea5e9; }
  86%, 100% { background: #eef8ff; box-shadow: inset 4px 0 0 transparent; }
}

@keyframes nwmail-delivery {
  0%, 11% { opacity: 0; transform: translateY(12px) scale(.97); }
  20%, 72% { opacity: 1; transform: translateY(0) scale(1); }
  84%, 100% { opacity: 0; transform: translateY(5px) scale(.98); }
}

@keyframes nwmail-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1199.98px) {
  .nwmail-main-row { --bs-gutter-x: 3rem; }
  .nwmail-content h2 { font-size: clamp(46px, 5vw, 56px); }
  .nwmail-benefits { grid-template-columns: 1fr; }
  .nwmail-benefits li:nth-child(2) { border-top: 1px solid rgba(71, 137, 177, .18); }
  .nwmail-client__body { grid-template-columns: 165px 1fr; }
  .nwmail-sidebar { padding-inline: 12px; }
  .nwmail-upgrade { grid-template-columns: 56px 1fr auto; }
  .nwmail-upgrade__features { grid-column: 2; }
  .nwmail-upgrade__link { grid-column: 3; grid-row: 1 / span 2; }
}

@media (max-width: 991.98px) {
  .nwmail-section { padding: 88px 0; }
  .nwmail-content { max-width: 800px; margin-inline: auto; text-align: center; }
  .nwmail-content h2, .nwmail-lead { margin-inline: auto; }
  .nwmail-example, .nwmail-actions, .nwmail-included-note { justify-content: center; }
  .nwmail-benefits { max-width: 720px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-inline: auto; text-align: left; }
  .nwmail-benefits li:nth-child(2) { border-top: 0; }
  .nwmail-visual { max-width: 700px; margin: 24px auto 0; }
  .nwmail-capacity { margin-top: 72px; }
  .nwmail-capacity__heading { align-items: flex-start; flex-direction: column; }
  .nwmail-plan-grid { grid-template-columns: 1fr; }
  .nwmail-plan { min-height: 0; }
  .nwmail-upgrade { grid-template-columns: 56px 1fr; }
  .nwmail-upgrade__features { grid-column: 2; }
  .nwmail-upgrade__link { grid-column: 2; grid-row: auto; justify-self: start; }
}

@media (max-width: 767.98px) {
  .nwmail-section { padding: 76px 0; }
  .nwmail-container { width: min(calc(100% - 24px), 1280px); }
  .nwmail-content h2 { font-size: clamp(43px, 12vw, 54px); }
  .nwmail-lead { font-size: 16px; line-height: 1.7; }
  .nwmail-benefits { grid-template-columns: 1fr; }
  .nwmail-benefits li:nth-child(2) { border-top: 1px solid rgba(71, 137, 177, .18); }
  .nwmail-actions { flex-direction: column; align-items: center; }
  .nwmail-button { width: 100%; max-width: 370px; }
  .nwmail-visual { min-height: 540px; padding-inline: 0; }
  .nwmail-client__body { grid-template-columns: 140px 1fr; }
  .nwmail-address { align-items: flex-start; flex-direction: column; }
  .nwmail-message { grid-template-columns: 6px 34px 1fr; padding-inline: 11px; }
  .nwmail-message time { display: none; }
  .nwmail-capacity { margin-top: 56px; padding: 28px 20px; }
  .nwmail-capacity__heading h3 { font-size: 34px; }
  .nwmail-upgrade { padding: 24px 22px; }
}

@media (max-width: 575.98px) {
  .nwmail-eyebrow { font-size: 11px; letter-spacing: .1em; }
  .nwmail-content h2 { font-size: 44px; }
  .nwmail-example { flex-direction: column; align-items: center; }
  .nwmail-visual { min-height: 500px; padding-top: 38px; }
  .nwmail-client__topbar { grid-template-columns: auto 1fr auto; gap: 10px; padding-inline: 12px; }
  .nwmail-search span { display: none; }
  .nwmail-client__body { grid-template-columns: 52px 1fr; }
  .nwmail-sidebar { display: flex; align-items: center; flex-direction: column; padding: 15px 7px; }
  .nwmail-address > span:last-child, .nwmail-compose, .nwmail-storage { display: none; }
  .nwmail-folders span { width: 38px; min-height: 38px; justify-content: center; padding: 0; font-size: 0; }
  .nwmail-folders span i { width: auto; font-size: 13px; }
  .nwmail-folders span b { display: none; }
  .nwmail-inbox__heading { min-height: 66px; padding-inline: 13px; }
  .nwmail-inbox__heading > div { display: none; }
  .nwmail-message { min-height: 74px; grid-template-columns: 6px 34px 1fr; gap: 8px; }
  .nwmail-message:nth-of-type(5) { display: none; }
  .nwmail-delivery { right: 0; }
  .nwmail-protection { left: 0; }
  .nwmail-capacity__heading h3 { font-size: 32px; }
  .nwmail-capacity__assistance { width: 100%; }
  .nwmail-plan { padding: 24px 20px; }
  .nwmail-plan__top { align-items: flex-start; flex-direction: column; gap: 6px; }
  .nwmail-plan__tag { text-align: left; }
  .nwmail-upgrade { grid-template-columns: 1fr; gap: 18px; }
  .nwmail-upgrade__features,
  .nwmail-upgrade__link { grid-column: 1; }
  .nwmail-upgrade__link { width: 100%; justify-self: stretch; white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  .nwmail-section *,
  .nwmail-section *::before,
  .nwmail-section *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .nwmail-delivery {
    opacity: 1;
    transform: none;
  }
}








/* ============================================================
   NEOTHEK · MIGRACIÓN PROFESIONAL GRATUITA
   V1 · 20260922 · Prefijo exclusivo: nwmig-
============================================================ */
.nwmig-section {
  --nwmig-blue: #2563eb;
  --nwmig-blue-dark: #174fc5;
  --nwmig-navy: #172033;
  --nwmig-text: #475569;
  --nwmig-muted: #64748b;
  --nwmig-line: #d8e3f1;
  --nwmig-green: #168a4a;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 112px 0 104px;
  color: var(--nwmig-text);
  background:
    radial-gradient(circle at 88% 19%, rgba(37, 99, 235, .06), transparent 28rem),
    radial-gradient(circle at 8% 78%, rgba(22, 138, 74, .035), transparent 24rem),
    #fff;
  font-family: "Open Sans", sans-serif;
}

.nwmig-section *,
.nwmig-section *::before,
.nwmig-section *::after {
  box-sizing: border-box;
}

.nwmig-container {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), 1280px);
  max-width: 1280px;
  margin-inline: auto;
}

.nwmig-intro-row {
  --bs-gutter-x: 5rem;
}

.nwmig-decoration {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.nwmig-decoration--one {
  top: 120px;
  right: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(37, 99, 235, .09);
}

.nwmig-decoration--two {
  top: 210px;
  right: -85px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(37, 99, 235, .10);
}

/* ============================================================
   CONTENIDO PRINCIPAL
============================================================ */
.nwmig-content {
  max-width: 620px;
}

.nwmig-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: #1857b8;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nwmig-eyebrow > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #c8dcfb;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #4b8df8);
  box-shadow: 0 10px 24px rgba(37, 99, 235, .19);
  font-size: 15px;
}

.nwmig-content h2 {
  margin: 0;
  color: var(--nwmig-navy);
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  font-size: clamp(48px, 4.4vw, 64px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.025em;
}

.nwmig-content h2 span {
  display: block;
  color: var(--nwmig-blue);
}

.nwmig-lead {
  max-width: 600px;
  margin: 26px 0 0;
  color: var(--nwmig-text);
  font-size: 17px;
  line-height: 1.75;
}

.nwmig-reassurance {
  display: flex;
  max-width: 590px;
  align-items: center;
  gap: 14px;
  margin-top: 27px;
  padding: 17px 18px;
  border: 1px solid #d8e5f5;
  border-radius: 14px;
  background: #f7faff;
}

.nwmig-reassurance__icon {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 13px;
  color: #1764cd;
  background: #e4efff;
  font-size: 16px;
}

.nwmig-reassurance strong,
.nwmig-reassurance small {
  display: block;
}

.nwmig-reassurance strong {
  color: #21344e;
  font-size: 16px;
  font-weight: 700;
}

.nwmig-reassurance small {
  margin-top: 5px;
  color: #60748c;
  font-size: 13px;
  line-height: 1.5;
}

.nwmig-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.nwmig-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .22s ease, background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.nwmig-button--primary {
  color: #fff;
  border-color: var(--nwmig-blue);
  background: var(--nwmig-blue);
  box-shadow: 0 12px 26px rgba(37, 99, 235, .22);
}

.nwmig-button--primary:hover {
  color: #fff;
  border-color: var(--nwmig-blue-dark);
  background: var(--nwmig-blue-dark);
  box-shadow: 0 16px 34px rgba(37, 99, 235, .28);
  transform: translateY(-2px);
}

.nwmig-button--secondary {
  color: #213c5d;
  border-color: #afc5df;
  background: #fff;
}

.nwmig-button--secondary:hover {
  color: #123e73;
  border-color: #73a4e2;
  box-shadow: 0 10px 24px rgba(36, 77, 128, .10);
  transform: translateY(-2px);
}

.nwmig-button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .3);
  outline-offset: 4px;
}

.nwmig-button--primary i {
  transition: transform .22s ease;
}

.nwmig-button--primary:hover i {
  transform: translateX(4px);
}

.nwmig-plan-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  color: #4f667e;
  font-size: 13px;
  font-weight: 600;
}

.nwmig-plan-note i {
  color: var(--nwmig-green);
}

/* ============================================================
   VISUALIZACIÓN DE LA MIGRACIÓN
============================================================ */
.nwmig-transfer {
  position: relative;
  width: 100%;
  max-width: 640px;
  min-height: 600px;
  margin-left: auto;
  padding: 42px 28px;
}

.nwmig-transfer__glow {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, .11), rgba(22, 138, 74, .055));
  transform: translateX(-50%);
}

.nwmig-transfer__glow::before,
.nwmig-transfer__glow::after {
  content: "";
  position: absolute;
  inset: 46px;
  border: 1px solid rgba(37, 99, 235, .12);
  border-radius: inherit;
}

.nwmig-transfer__glow::after {
  inset: 102px;
  border-color: rgba(37, 99, 235, .08);
}

.nwmig-server {
  position: relative;
  z-index: 2;
  width: 72%;
  padding: 18px;
  border: 1px solid #d5e1ef;
  border-radius: 17px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 18px 42px rgba(31, 61, 101, .12);
}

.nwmig-server--origin {
  margin-right: auto;
}

.nwmig-server--destination {
  margin: 62px 0 0 auto;
  border-color: #bfe2cc;
  box-shadow: 0 18px 42px rgba(24, 100, 63, .11);
}

.nwmig-server__heading {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e6ecf3;
}

.nwmig-server__icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #245fae;
  background: #e7f0ff;
  font-size: 15px;
}

.nwmig-server--destination .nwmig-server__icon {
  color: #177d4b;
  background: #e4f7ec;
}

.nwmig-server__heading strong,
.nwmig-server__heading small {
  display: block;
}

.nwmig-server__heading strong {
  color: #253a54;
  font-size: 14px;
  font-weight: 700;
}

.nwmig-server__heading small {
  margin-bottom: 3px;
  color: #74869a;
  font-size: 11px;
}

.nwmig-server__heading > i {
  margin-left: auto;
  color: #8695a6;
  font-size: 13px;
}

.nwmig-server__online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 6px 9px;
  border-radius: 999px;
  color: #23734d;
  background: #e8f7ee;
  font-size: 11px;
  font-weight: 700;
}

.nwmig-server__online i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22a65f;
}

.nwmig-server__items {
  display: grid;
  gap: 8px;
  margin-top: 13px;
}

.nwmig-server__items span {
  display: grid;
  min-height: 38px;
  grid-template-columns: 25px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border-radius: 9px;
  color: #5f7287;
  background: #f7f9fc;
  font-size: 11px;
}

.nwmig-server__items i {
  color: #3979ca;
  text-align: center;
}

.nwmig-server__items b {
  color: #44586f;
  font-weight: 600;
}

.nwmig-server__items em {
  color: #6f8194;
  font-style: normal;
}

.nwmig-route {
  position: absolute;
  z-index: 4;
  top: 242px;
  right: 80px;
  left: 98px;
  height: 78px;
}

.nwmig-route__line {
  position: absolute;
  top: 25px;
  right: 0;
  left: 0;
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: #dce7f5;
  transform: rotate(9deg);
}

.nwmig-route__line::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 34%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, #3478f6, transparent);
  animation: nwmig-route-light 4.8s ease-in-out infinite;
}

.nwmig-packet {
  position: absolute;
  top: 4px;
  left: 0;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #cbdcf3;
  border-radius: 12px;
  color: #2769c4;
  background: #fff;
  box-shadow: 0 9px 20px rgba(32, 75, 132, .13);
  font-size: 13px;
  opacity: 0;
  animation: nwmig-packet-move 9s ease-in-out infinite;
}

.nwmig-packet--two { animation-delay: 2.2s; }
.nwmig-packet--three { animation-delay: 4.4s; }

.nwmig-route__label {
  position: absolute;
  top: 55px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid #d7e4f4;
  border-radius: 999px;
  color: #45617f;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 7px 18px rgba(33, 71, 119, .08);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  transform: translateX(-50%);
}

.nwmig-destination-status {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid #d8eee1;
  border-radius: 11px;
  background: #f3fbf6;
}

.nwmig-destination-status__check {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: #20a85a;
  font-size: 12px;
}

.nwmig-destination-status strong,
.nwmig-destination-status small {
  display: block;
}

.nwmig-destination-status strong {
  color: #28533c;
  font-size: 12px;
}

.nwmig-destination-status small {
  margin-top: 3px;
  color: #658273;
  font-size: 11px;
}

.nwmig-destination-bars {
  display: grid;
  gap: 7px;
  margin-top: 13px;
}

.nwmig-destination-bars span {
  display: block;
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  background: #e5edf0;
}

.nwmig-destination-bars i {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #30a966, #7ac99c);
}

.nwmig-destination-bars span:nth-child(2) i { width: 65%; }
.nwmig-destination-bars span:nth-child(3) i { width: 91%; }

.nwmig-specialist {
  position: absolute;
  z-index: 7;
  right: 0;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid #ccdfef;
  border-radius: 14px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 16px 36px rgba(28, 68, 111, .14);
  animation: nwmig-float 5s ease-in-out infinite;
}

.nwmig-specialist > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  color: #1e64bf;
  background: #e6f0ff;
  font-size: 14px;
}

.nwmig-specialist strong,
.nwmig-specialist small {
  display: block;
}

.nwmig-specialist strong {
  color: #2c425b;
  font-size: 12px;
}

.nwmig-specialist small {
  margin-bottom: 3px;
  color: #728499;
  font-size: 11px;
}

/* ============================================================
   ALCANCE DE LA MIGRACIÓN
============================================================ */
.nwmig-scope {
  margin-top: 76px;
  padding: 36px;
  border: 1px solid #dce6f1;
  border-radius: 22px;
  background: #f8fbff;
  box-shadow: 0 16px 42px rgba(31, 65, 105, .06);
}

.nwmig-scope__heading p,
.nwmig-process__header p {
  margin: 0 0 8px;
  color: #1d63c2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.nwmig-scope__heading h3,
.nwmig-process__header h3 {
  margin: 0;
  color: var(--nwmig-navy);
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  font-size: clamp(34px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.05;
}

.nwmig-scope__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 29px;
}

.nwmig-scope-card {
  display: flex;
  min-height: 152px;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
  border: 1px solid #dce6f1;
  border-radius: 15px;
  background: #fff;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.nwmig-scope-card:hover {
  border-color: #a9c7ec;
  box-shadow: 0 14px 28px rgba(30, 74, 126, .09);
  transform: translateY(-4px);
}

.nwmig-scope-card > span {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 13px;
  color: #1f65c2;
  background: #eaf2ff;
  font-size: 16px;
}

.nwmig-scope-card h4 {
  margin: 2px 0 0;
  color: #22364f;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.nwmig-scope-card p {
  margin: 7px 0 0;
  color: #667a90;
  font-size: 13px;
  line-height: 1.55;
}

/* ============================================================
   PROCESO EN TRES PASOS
============================================================ */
.nwmig-process {
  margin-top: 24px;
  padding: 38px;
  border: 1px solid #d8e3f1;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(30, 62, 100, .07);
}

.nwmig-process__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 31px;
}

.nwmig-process__badge {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid #d5e3f2;
  border-radius: 12px;
  color: #35516f;
  background: #f7faff;
  font-size: 13px;
  font-weight: 700;
}

.nwmig-process__badge i {
  color: #2563eb;
}

.nwmig-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nwmig-steps::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 39px;
  right: 15%;
  left: 15%;
  height: 2px;
  background: linear-gradient(90deg, #c7daf5, #8db9f2 66%, #b8e3c8);
}

.nwmig-step {
  position: relative;
  z-index: 1;
  min-height: 218px;
  padding: 25px;
  border: 1px solid #d8e4f2;
  border-radius: 17px;
  background: linear-gradient(180deg, #f5f9ff, #fff 58%);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.nwmig-step:nth-child(2) {
  border-color: #c7dafa;
  background: linear-gradient(180deg, #edf4ff, #fff 58%);
}

.nwmig-step--success {
  border-color: #cbe6d5;
  background: linear-gradient(180deg, #effaf3, #fff 58%);
}

.nwmig-step:hover {
  box-shadow: 0 15px 30px rgba(32, 73, 123, .09);
  transform: translateY(-4px);
}

.nwmig-step__number {
  position: absolute;
  top: 22px;
  right: 23px;
  color: #cfdcf0;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.nwmig-step--success .nwmig-step__number {
  color: #c9e7d3;
}

.nwmig-step__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: #2367c8;
  background: #e5efff;
  box-shadow: 0 0 0 8px #fff;
  font-size: 17px;
}

.nwmig-step:nth-child(2) .nwmig-step__icon {
  background: #dceaff;
}

.nwmig-step--success .nwmig-step__icon {
  color: #fff;
  background: #20a85a;
}

.nwmig-step h4 {
  margin: 25px 0 0;
  color: #21354e;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.nwmig-step p {
  margin: 9px 0 0;
  color: #63778d;
  font-size: 14px;
  line-height: 1.65;
}

.nwmig-conditions {
  display: flex;
  max-width: 950px;
  align-items: flex-start;
  gap: 9px;
  margin: 23px 0 0;
  color: #60758b;
  font-size: 13px;
  line-height: 1.6;
}

.nwmig-conditions i {
  margin-top: 4px;
  color: #2563eb;
}

/* ============================================================
   ANIMACIONES
============================================================ */
@keyframes nwmig-route-light {
  0% { left: -35%; }
  100% { left: 110%; }
}

@keyframes nwmig-packet-move {
  0%, 10% { left: 0; opacity: 0; transform: translateY(0) scale(.9); }
  18% { opacity: 1; }
  68% { opacity: 1; }
  78%, 100% { left: calc(100% - 42px); opacity: 0; transform: translateY(23px) scale(.96); }
}

@keyframes nwmig-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1199.98px) {
  .nwmig-intro-row { --bs-gutter-x: 3rem; }
  .nwmig-content h2 { font-size: clamp(46px, 5vw, 56px); }
  .nwmig-scope__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 991.98px) {
  .nwmig-section { padding: 88px 0; }
  .nwmig-content { max-width: 800px; margin-inline: auto; text-align: center; }
  .nwmig-content h2, .nwmig-lead, .nwmig-reassurance { margin-inline: auto; }
  .nwmig-actions, .nwmig-plan-note { justify-content: center; }
  .nwmig-transfer { max-width: 700px; margin: 24px auto 0; }
  .nwmig-scope { margin-top: 62px; }
  .nwmig-process__header { align-items: flex-start; flex-direction: column; }
  .nwmig-steps { grid-template-columns: 1fr; }
  .nwmig-steps::before { top: 48px; right: auto; bottom: 48px; left: 49px; width: 2px; height: auto; background: linear-gradient(180deg, #c7daf5, #8db9f2 66%, #b8e3c8); }
  .nwmig-step { min-height: 0; padding-left: 88px; }
  .nwmig-step__icon { position: absolute; top: 24px; left: 24px; }
  .nwmig-step h4 { margin-top: 3px; }
}

@media (max-width: 767.98px) {
  .nwmig-section { padding: 76px 0; }
  .nwmig-container { width: min(calc(100% - 24px), 1280px); }
  .nwmig-content h2 { font-size: clamp(43px, 12vw, 54px); }
  .nwmig-lead { font-size: 16px; line-height: 1.7; }
  .nwmig-actions { flex-direction: column; align-items: center; }
  .nwmig-button { width: 100%; max-width: 370px; }
  .nwmig-transfer { min-height: 580px; padding-inline: 8px; }
  .nwmig-server { width: 80%; }
  .nwmig-route { right: 55px; left: 55px; }
  .nwmig-scope, .nwmig-process { padding: 28px 20px; }
  .nwmig-scope__grid { grid-template-columns: 1fr; }
  .nwmig-scope__heading h3, .nwmig-process__header h3 { font-size: 34px; }
  .nwmig-scope-card { min-height: 0; }
}

@media (max-width: 575.98px) {
  .nwmig-eyebrow { font-size: 11px; letter-spacing: .1em; }
  .nwmig-content h2 { font-size: 44px; }
  .nwmig-reassurance { align-items: flex-start; text-align: left; }
  .nwmig-transfer { min-height: 540px; padding-top: 34px; }
  .nwmig-server { width: 88%; padding: 14px; }
  .nwmig-server--destination { margin-top: 66px; }
  .nwmig-route { top: 225px; right: 32px; left: 32px; }
  .nwmig-server__items span:nth-child(3) { display: none; }
  .nwmig-specialist { right: 0; bottom: 12px; }
  .nwmig-specialist small { display: none; }
  .nwmig-scope__heading h3, .nwmig-process__header h3 { font-size: 32px; }
  .nwmig-process__badge { width: 100%; justify-content: center; }
  .nwmig-step { padding: 24px 20px 24px 78px; }
  .nwmig-step__icon { left: 20px; width: 44px; height: 44px; }
  .nwmig-step__number { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .nwmig-section *,
  .nwmig-section *::before,
  .nwmig-section *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .nwmig-packet {
    left: calc(100% - 42px);
    opacity: 1;
    transform: translateY(23px);
  }
}










/* ============================================================
   NEOTHEK · RENDIMIENTO NVMe + LITESPEED
   V1 · 20260922 · Prefijo exclusivo: nwperf-
============================================================ */
.nwperf-section {
  --nwperf-blue: #74a9ff;
  --nwperf-blue-strong: #3e85ff;
  --nwperf-bg: #102e5c;
  --nwperf-bg-deep: #0b2448;
  --nwperf-white: #fff;
  --nwperf-text: #c7d6ea;
  --nwperf-muted: #9fb3cc;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 112px 0 104px;
  color: var(--nwperf-text);
  background: linear-gradient(145deg, #102e5c 0%, #0d2951 58%, #102f5b 100%);
  font-family: "Open Sans", sans-serif;
}

.nwperf-section *,
.nwperf-section *::before,
.nwperf-section *::after {
  box-sizing: border-box;
}

.nwperf-container {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 32px), 1280px);
  max-width: 1280px;
  margin-inline: auto;
}

.nwperf-intro-row {
  --bs-gutter-x: 5rem;
}

.nwperf-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .34;
  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: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
}

.nwperf-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(20px);
}

.nwperf-glow--one {
  top: -180px;
  right: -150px;
  width: 570px;
  height: 570px;
  background: rgba(50, 115, 220, .18);
}

.nwperf-glow--two {
  bottom: -260px;
  left: -180px;
  width: 580px;
  height: 580px;
  background: rgba(22, 105, 180, .12);
}

/* Contenido */
.nwperf-content {
  max-width: 620px;
}

.nwperf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: #9bc3ff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nwperf-eyebrow > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(141, 187, 255, .28);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #4f92ff);
  box-shadow: 0 10px 25px rgba(0, 21, 59, .24);
  font-size: 15px;
}

.nwperf-content h2 {
  margin: 0;
  color: #fff;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  font-size: clamp(48px, 4.4vw, 64px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.025em;
}

.nwperf-content h2 span {
  display: block;
  color: #7eb2ff;
}

.nwperf-lead {
  max-width: 610px;
  margin: 26px 0 0;
  color: #d2dff0;
  font-size: 17px;
  line-height: 1.75;
}

.nwperf-highlights {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.nwperf-highlights li {
  display: flex;
  min-height: 82px;
  align-items: flex-start;
  gap: 13px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.nwperf-highlights li:first-child {
  border-top: 0;
}

.nwperf-highlights > li > i {
  margin-top: 3px;
  color: #55d88a;
  font-size: 16px;
}

.nwperf-highlights strong,
.nwperf-highlights small {
  display: block;
}

.nwperf-highlights strong {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.nwperf-highlights small {
  margin-top: 5px;
  color: #aebfd5;
  font-size: 13px;
  line-height: 1.5;
}

.nwperf-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 29px;
}

.nwperf-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 15px 23px;
  border: 1px solid #4f8eff;
  border-radius: 12px;
  color: #fff;
  background: #2563eb;
  box-shadow: 0 13px 28px rgba(0, 17, 48, .26);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.nwperf-button:hover {
  color: #fff;
  background: #3478f6;
  box-shadow: 0 17px 35px rgba(0, 17, 48, .32);
  transform: translateY(-2px);
}

.nwperf-button:focus-visible {
  outline: 3px solid rgba(126, 178, 255, .55);
  outline-offset: 4px;
}

.nwperf-button i {
  transition: transform .22s ease;
}

.nwperf-button:hover i {
  transform: translateX(4px);
}

.nwperf-action-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c3d3e8;
  font-size: 13px;
  font-weight: 600;
}

.nwperf-action-note i {
  color: #7eb2ff;
  font-size: 18px;
}

/* Dashboard */
.nwperf-dashboard {
  position: relative;
  width: 100%;
  max-width: 625px;
  margin-left: auto;
  padding: 16px 14px 52px;
}

.nwperf-dashboard::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -20px;
  left: 50%;
  width: 510px;
  height: 510px;
  border: 1px solid rgba(116, 169, 255, .14);
  border-radius: 50%;
  transform: translateX(-50%);
}

.nwperf-dashboard__topbar,
.nwperf-dashboard__body {
  position: relative;
  z-index: 2;
  border-right: 1px solid rgba(255, 255, 255, .13);
  border-left: 1px solid rgba(255, 255, 255, .13);
  background: rgba(7, 28, 58, .78);
  box-shadow: 0 32px 70px rgba(0, 13, 36, .30);
  backdrop-filter: blur(14px);
}

.nwperf-dashboard__topbar {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  border-radius: 21px 21px 0 0;
}

.nwperf-dashboard__body {
  min-height: 465px;
  padding: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  border-radius: 0 0 21px 21px;
}

.nwperf-dashboard__brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.nwperf-dashboard__brand > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #4d93ff);
  font-size: 15px;
}

.nwperf-dashboard__brand strong,
.nwperf-dashboard__brand small {
  display: block;
}

.nwperf-dashboard__brand strong {
  color: #fff;
  font-size: 14px;
}

.nwperf-dashboard__brand small {
  margin-bottom: 3px;
  color: #91a8c4;
  font-size: 11px;
}

.nwperf-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #81e1a8;
  background: rgba(31, 151, 83, .14);
  font-size: 11px;
  font-weight: 700;
}

.nwperf-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #42d47f;
  box-shadow: 0 0 0 5px rgba(66, 212, 127, .09);
}

.nwperf-score {
  display: grid;
  grid-template-columns: 136px 1fr;
  align-items: center;
  gap: 22px;
}

.nwperf-score__ring {
  position: relative;
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#4f97ff 0 84%, rgba(255, 255, 255, .09) 84% 100%);
  animation: nwperf-ring 7s ease-in-out infinite;
}

.nwperf-score__ring::before {
  content: "";
  position: absolute;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: #0d2b55;
}

.nwperf-score__ring > span {
  position: relative;
  z-index: 2;
  text-align: center;
}

.nwperf-score__ring strong,
.nwperf-score__ring small {
  display: block;
}

.nwperf-score__ring strong {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.nwperf-score__ring small {
  margin-top: 3px;
  color: #9db4d0;
  font-size: 11px;
}

.nwperf-score__copy > small,
.nwperf-score__copy > strong {
  display: block;
}

.nwperf-score__copy > small {
  color: #78aaf5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.nwperf-score__copy > strong {
  margin-top: 5px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.nwperf-score__copy p {
  margin: 7px 0 0;
  color: #9fb3cc;
  font-size: 12px;
  line-height: 1.5;
}

.nwperf-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 23px;
}

.nwperf-metrics article {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 12px;
  background: rgba(255, 255, 255, .045);
}

.nwperf-metric-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: #7eb2ff;
  background: rgba(72, 139, 244, .14);
  font-size: 12px;
}

.nwperf-metrics small,
.nwperf-metrics strong {
  display: block;
}

.nwperf-metrics small {
  margin-top: 11px;
  color: #91a7c2;
  font-size: 11px;
}

.nwperf-metrics strong {
  margin-top: 3px;
  overflow: hidden;
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.nwperf-meter {
  display: block;
  height: 4px;
  margin-top: 11px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, .09);
}

.nwperf-meter i {
  display: block;
  width: var(--nwperf-level);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #3478f6, #7eb2ff);
  animation: nwperf-meter-load 6s ease-in-out infinite;
}

.nwperf-requests {
  margin-top: 15px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 13px;
  background: rgba(255, 255, 255, .04);
}

.nwperf-requests__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nwperf-requests__header strong,
.nwperf-requests__header small {
  display: block;
}

.nwperf-requests__header strong {
  color: #fff;
  font-size: 12px;
}

.nwperf-requests__header small {
  margin-top: 3px;
  color: #8fa5c0;
  font-size: 11px;
}

.nwperf-requests__header > i {
  color: #63d797;
  font-size: 15px;
}

.nwperf-bars {
  display: flex;
  height: 58px;
  align-items: flex-end;
  gap: 7px;
  margin-top: 12px;
}

.nwperf-bars i {
  flex: 1;
  height: 33%;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, #5e9cff, #285cae);
  opacity: .82;
  animation: nwperf-bars 5s ease-in-out infinite;
}

.nwperf-bars i:nth-child(2), .nwperf-bars i:nth-child(8) { height: 48%; animation-delay: -.7s; }
.nwperf-bars i:nth-child(3), .nwperf-bars i:nth-child(10) { height: 72%; animation-delay: -1.4s; }
.nwperf-bars i:nth-child(4), .nwperf-bars i:nth-child(9) { height: 58%; animation-delay: -2.1s; }
.nwperf-bars i:nth-child(5), .nwperf-bars i:nth-child(11) { height: 84%; animation-delay: -2.8s; }
.nwperf-bars i:nth-child(6), .nwperf-bars i:nth-child(12) { height: 67%; animation-delay: -3.5s; }
.nwperf-bars i:nth-child(7) { height: 92%; animation-delay: -4.2s; }

.nwperf-cache-chip,
.nwperf-control-chip {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(145, 184, 240, .24);
  border-radius: 13px;
  background: rgba(8, 31, 64, .95);
  box-shadow: 0 16px 36px rgba(0, 13, 35, .30);
  backdrop-filter: blur(12px);
}

.nwperf-cache-chip { top: -5px; right: -3px; animation: nwperf-float 5s ease-in-out infinite; }
.nwperf-control-chip { bottom: 20px; left: -7px; animation: nwperf-float 5s ease-in-out -2.5s infinite; }

.nwperf-cache-chip > span,
.nwperf-control-chip > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  color: #8cbaff;
  background: rgba(57, 126, 233, .15);
  font-size: 13px;
}

.nwperf-cache-chip strong,
.nwperf-cache-chip small,
.nwperf-control-chip strong,
.nwperf-control-chip small {
  display: block;
}

.nwperf-cache-chip strong,
.nwperf-control-chip strong { color: #fff; font-size: 12px; }
.nwperf-cache-chip small,
.nwperf-control-chip small { margin-bottom: 3px; color: #91a7c2; font-size: 11px; }

/* Beneficios */
.nwperf-benefits {
  margin-top: 84px;
}

.nwperf-benefits__heading p {
  margin: 0 0 8px;
  color: #8dbbff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
}

.nwperf-benefits__heading h3,
.nwperf-stack__intro h3 {
  margin: 0;
  color: #fff;
  font-family: "Open Sans Condensed", "Open Sans", sans-serif;
  font-size: clamp(34px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.05;
}

.nwperf-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.nwperf-card {
  display: flex;
  min-height: 178px;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .055);
  transition: transform .24s ease, border-color .24s ease, background-color .24s ease, box-shadow .24s ease;
}

.nwperf-card:hover {
  border-color: rgba(126, 178, 255, .36);
  background: rgba(255, 255, 255, .075);
  box-shadow: 0 18px 38px rgba(0, 14, 37, .18);
  transform: translateY(-4px);
}

.nwperf-card > span {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 13px;
  color: #8dbbff;
  background: rgba(69, 137, 240, .15);
  font-size: 16px;
}

.nwperf-card h4 {
  margin: 2px 0 0;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.nwperf-card p {
  margin: 7px 0 0;
  color: #aebfd5;
  font-size: 13px;
  line-height: 1.55;
}

/* Stack técnico */
.nwperf-stack {
  display: grid;
  grid-template-columns: minmax(310px, .9fr) minmax(0, 1.55fr);
  align-items: center;
  gap: 34px;
  margin-top: 24px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 20px;
  background: rgba(4, 20, 43, .32);
}

.nwperf-stack__intro {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
}

.nwperf-stack__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: #8dbbff;
  background: rgba(69, 137, 240, .15);
  font-size: 17px;
}

.nwperf-stack__intro p {
  margin: 0 0 7px;
  color: #8dbbff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
}

.nwperf-stack__intro h3 {
  font-size: 32px;
}

.nwperf-stack__intro > div > span {
  display: block;
  margin-top: 8px;
  color: #aebfd5;
  font-size: 13px;
  line-height: 1.55;
}

.nwperf-stack__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nwperf-stack__items li {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 12px;
  background: rgba(255, 255, 255, .045);
}

.nwperf-stack__items > li > i {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: #8dbbff;
  background: rgba(69, 137, 240, .13);
  font-size: 14px;
}

.nwperf-stack__items strong,
.nwperf-stack__items small {
  display: block;
}

.nwperf-stack__items strong {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.nwperf-stack__items small {
  margin-top: 3px;
  color: #94a9c3;
  font-size: 11px;
  line-height: 1.35;
}

.nwperf-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 18px 0 0;
  color: #9eb1c9;
  font-size: 13px;
  line-height: 1.55;
}

.nwperf-disclaimer i {
  margin-top: 4px;
  color: #78aaf5;
}

/* Animaciones */
@keyframes nwperf-ring {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(4deg); }
}

@keyframes nwperf-meter-load {
  0%, 12% { width: 16%; }
  42%, 100% { width: var(--nwperf-level); }
}

@keyframes nwperf-bars {
  0%, 100% { transform: scaleY(.72); opacity: .62; }
  50% { transform: scaleY(1); opacity: .95; }
}

@keyframes nwperf-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* Responsive */
@media (max-width: 1199.98px) {
  .nwperf-intro-row { --bs-gutter-x: 3rem; }
  .nwperf-content h2 { font-size: clamp(46px, 5vw, 56px); }
  .nwperf-benefits__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nwperf-stack { grid-template-columns: 1fr; }
}

@media (max-width: 991.98px) {
  .nwperf-section { padding: 88px 0; }
  .nwperf-content { max-width: 790px; margin-inline: auto; text-align: center; }
  .nwperf-content h2, .nwperf-lead { margin-inline: auto; }
  .nwperf-highlights { max-width: 680px; margin-inline: auto; text-align: left; }
  .nwperf-actions { justify-content: center; }
  .nwperf-dashboard { max-width: 690px; margin: 30px auto 0; }
  .nwperf-benefits { margin-top: 68px; }
}

@media (max-width: 767.98px) {
  .nwperf-section { padding: 76px 0; }
  .nwperf-container { width: min(calc(100% - 24px), 1280px); }
  .nwperf-content h2 { font-size: clamp(43px, 12vw, 54px); }
  .nwperf-lead { font-size: 16px; line-height: 1.7; }
  .nwperf-actions { flex-direction: column; }
  .nwperf-button { width: 100%; max-width: 370px; }
  .nwperf-dashboard { padding-inline: 0; }
  .nwperf-dashboard__body { padding: 18px; }
  .nwperf-metrics { grid-template-columns: 1fr; }
  .nwperf-metrics article { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 10px; }
  .nwperf-metrics small { margin-top: 0; }
  .nwperf-meter { grid-column: 1 / -1; }
  .nwperf-benefits__grid { grid-template-columns: 1fr; }
  .nwperf-card { min-height: 0; }
  .nwperf-stack { padding: 26px 20px; }
  .nwperf-stack__items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575.98px) {
  .nwperf-eyebrow { font-size: 11px; letter-spacing: .1em; }
  .nwperf-content h2 { font-size: 44px; }
  .nwperf-score { grid-template-columns: 110px 1fr; gap: 15px; }
  .nwperf-score__ring { width: 108px; height: 108px; }
  .nwperf-score__ring::before { width: 84px; height: 84px; }
  .nwperf-score__ring strong { font-size: 17px; }
  .nwperf-cache-chip { right: 0; }
  .nwperf-control-chip { left: 0; }
  .nwperf-benefits__heading h3 { font-size: 34px; }
  .nwperf-stack__intro { grid-template-columns: 44px 1fr; }
  .nwperf-stack__icon { width: 44px; height: 44px; }
  .nwperf-stack__intro h3 { font-size: 28px; }
  .nwperf-stack__items { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .nwperf-section *,
  .nwperf-section *::before,
  .nwperf-section *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .nwperf-meter i {
    width: var(--nwperf-level);
  }
}










/* ============================================================
   NEOTHEK · SEGURIDAD Y BACKUPS
   V2 · 20260922 · Contraste respecto a Rendimiento
============================================================ */
.nwsec-section {
  --nwsec-bg: #081f3d;
  --nwsec-blue: #74a9ff;
  --nwsec-green: #45d483;
  --nwsec-white: #fff;
  --nwsec-text: #d2dfef;
  --nwsec-muted: #a9bcd3;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 112px 0 104px;
  border-top: 1px solid rgba(116, 169, 255, .22);
  color: var(--nwsec-text);
  background:
    radial-gradient(circle at 82% 20%, rgba(69, 212, 131, .10), transparent 28rem),
    radial-gradient(circle at 15% 75%, rgba(37, 99, 235, .10), transparent 30rem),
    linear-gradient(145deg, #071b35 0%, #081f3d 52%, #0b294a 100%);
  font-family: "Open Sans", sans-serif;
}

.nwsec-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: min(88%, 1120px);
  height: 3px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    #3478f6 25%,
    #45d483 72%,
    transparent
  );
  opacity: .72;
}

.nwsec-section *, .nwsec-section *::before, .nwsec-section *::after { box-sizing: border-box; }
.nwsec-container { position: relative; z-index: 3; width: min(calc(100% - 32px), 1280px); max-width: 1280px; margin-inline: auto; }
.nwsec-grid-bg { position: absolute; inset: 0; z-index: -3; opacity: .25; background-image: linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to bottom,#000,transparent 78%); }
.nwsec-glow { position: absolute; z-index: -2; border-radius: 50%; filter: blur(24px); pointer-events: none; }
.nwsec-glow--one { top: -250px; left: 15%; width: 600px; height: 600px; background: rgba(37,99,235,.12); }
.nwsec-glow--two { right: -220px; bottom: -250px; width: 590px; height: 590px; background: rgba(25,145,80,.08); }

.nwsec-heading { max-width: 840px; margin: 0 auto; text-align: center; }
.nwsec-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 22px; color: #9bc3ff; font-size: 12px; font-weight: 800; line-height: 1.2; letter-spacing: .14em; text-transform: uppercase; }
.nwsec-eyebrow > span { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(141,187,255,.28); border-radius: 12px; color: #fff; background: linear-gradient(135deg,#2563eb,#4f92ff); box-shadow: 0 10px 25px rgba(0,13,35,.24); font-size: 15px; }
.nwsec-heading h2 { margin: 0; color: #fff; font-family: "Open Sans Condensed","Open Sans",sans-serif; font-size: clamp(48px,4.4vw,64px); font-weight: 700; line-height: .98; letter-spacing: -.025em; }
.nwsec-heading h2 span { display: block; color: #7eb2ff; }
.nwsec-lead { max-width: 760px; margin: 25px auto 0; color: #d2dfef; font-size: 17px; line-height: 1.75; }

.nwsec-feature-row { margin-top: 54px; }
.nwsec-feature-row > div { display: flex; }
.nwsec-panel { position: relative; width: 100%; min-height: 560px; overflow: hidden; padding: 30px; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: rgba(255,255,255,.055); box-shadow: 0 25px 60px rgba(0,12,31,.20); }
.nwsec-panel--backup { background: linear-gradient(160deg,rgba(40,105,188,.10),rgba(255,255,255,.045)); }
.nwsec-panel__heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.nwsec-panel__heading p, .nwsec-features__heading p { margin: 0 0 7px; color: #8dbbff; font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.nwsec-panel__heading h3, .nwsec-features__heading h3 { margin: 0; color: #fff; font-family: "Open Sans Condensed","Open Sans",sans-serif; font-size: clamp(34px,3vw,42px); font-weight: 700; line-height: 1.05; }
.nwsec-status, .nwsec-backup-done { display: inline-flex; flex: 0 0 auto; min-height: 34px; align-items: center; gap: 7px; padding: 7px 10px; border-radius: 999px; color: #79e5a6; background: rgba(38,164,91,.14); font-size: 11px; font-weight: 700; }
.nwsec-status i { width: 7px; height: 7px; border-radius: 50%; background: #45d483; box-shadow: 0 0 0 5px rgba(69,212,131,.09); }
.nwsec-backup-done i { display: grid; width: 18px; height: 18px; place-items: center; border-radius: 50%; color: #0b4428; background: #63dfa0; font-size: 11px; }

/* Escudo animado */
.nwsec-shield-visual { position: relative; width: 360px; height: 310px; margin: 28px auto 0; }
.nwsec-core { position: absolute; z-index: 5; top: 50%; left: 50%; display: grid; width: 126px; height: 126px; place-items: center; border: 1px solid rgba(126,178,255,.35); border-radius: 38px; color: #fff; background: linear-gradient(145deg,#1d5fbf,#123f7c); box-shadow: 0 24px 50px rgba(0,14,38,.34),inset 0 1px 0 rgba(255,255,255,.16); transform: translate(-50%,-50%) rotate(45deg); }
.nwsec-core i, .nwsec-core b { transform: rotate(-45deg); }
.nwsec-core i { margin-top: 18px; color: #fff; font-size: 35px; }
.nwsec-core b { margin-top: -31px; color: #dceaff; font-size: 12px; }
.nwsec-orbit { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(116,169,255,.18); border-radius: 50%; transform: translate(-50%,-50%); }
.nwsec-orbit--one { width: 235px; height: 235px; animation: nwsec-orbit 14s linear infinite; }
.nwsec-orbit--two { width: 315px; height: 315px; border-style: dashed; animation: nwsec-orbit 22s linear reverse infinite; }
.nwsec-layer { position: absolute; z-index: 6; display: flex; min-width: 92px; min-height: 42px; align-items: center; gap: 8px; padding: 9px 11px; border: 1px solid rgba(137,184,247,.24); border-radius: 11px; color: #fff; background: rgba(9,35,70,.94); box-shadow: 0 12px 27px rgba(0,12,33,.22); font-size: 12px; }
.nwsec-layer i { color: #8dbbff; }
.nwsec-layer b { font-weight: 700; }
.nwsec-layer--ssl { top: 12px; left: 50%; transform: translateX(-50%); }
.nwsec-layer--firewall { top: 53%; right: -5px; transform: translateY(-50%); }
.nwsec-layer--malware { bottom: 8px; left: 24px; }
.nwsec-threat { position: absolute; z-index: 3; display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid rgba(255,108,108,.26); border-radius: 50%; color: #ff8b8b; background: rgba(109,23,34,.55); font-size: 11px; opacity: 0; animation: nwsec-threat 6s ease-in-out infinite; }
.nwsec-threat--one { top: 72px; left: 2px; }
.nwsec-threat--two { right: 28px; bottom: 30px; animation-delay: 3s; }
.nwsec-panel__summary { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; margin-top: 12px; }
.nwsec-panel__summary span { display: flex; min-height: 56px; align-items: center; justify-content: center; gap: 8px; padding: 10px; border: 1px solid rgba(255,255,255,.09); border-radius: 10px; color: #c9d8ea; background: rgba(255,255,255,.04); font-size: 11px; text-align: center; }
.nwsec-panel__summary i { color: #45d483; }
.nwsec-panel__summary strong { font-weight: 700; }

/* Backups */
.nwsec-backup-visual { margin-top: 30px; padding: 18px; border: 1px solid rgba(255,255,255,.10); border-radius: 15px; background: rgba(4,21,44,.35); }
.nwsec-backup-calendar { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.09); }
.nwsec-backup-calendar__icon { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 13px; color: #8dbbff; background: rgba(55,126,232,.15); font-size: 16px; }
.nwsec-backup-calendar strong, .nwsec-backup-calendar small { display: block; }
.nwsec-backup-calendar strong { color: #fff; font-size: 14px; }
.nwsec-backup-calendar small { margin-bottom: 3px; color: #96abc5; font-size: 11px; }
.nwsec-backup-calendar > i { margin-left: auto; color: #6fdc9d; font-size: 20px; }
.nwsec-timeline { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 18px; }
.nwsec-timeline__line { position: absolute; top: 12px; right: 12%; left: 12%; height: 2px; overflow: hidden; background: rgba(255,255,255,.10); }
.nwsec-timeline__line i { display: block; width: 100%; height: 100%; background: linear-gradient(90deg,#3478f6,#45d483); animation: nwsec-backup-progress 7s ease-in-out infinite; }
.nwsec-timeline > span:not(.nwsec-timeline__line) { position: relative; z-index: 2; text-align: center; }
.nwsec-timeline > span > i { display: block; width: 24px; height: 24px; margin: 0 auto 8px; border: 6px solid #1f6bc5; border-radius: 50%; background: #dceaff; box-shadow: 0 0 0 5px #0d2d56; }
.nwsec-timeline > span:nth-child(4) > i { border-color: #23a65d; }
.nwsec-timeline b { color: #b8cae0; font-size: 11px; font-weight: 600; }
.nwsec-retention { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; margin-top: 20px; }
.nwsec-retention > div { min-height: 126px; padding: 17px 13px; border: 1px solid rgba(255,255,255,.10); border-radius: 13px; background: rgba(255,255,255,.04); text-align: center; }
.nwsec-retention__featured { border-color: rgba(116,169,255,.42)!important; background: rgba(52,120,246,.12)!important; }
.nwsec-retention__plan { display: block; color: #8dbbff; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.nwsec-retention strong { display: block; margin-top: 9px; color: #fff; font-size: 15px; font-weight: 700; }
.nwsec-retention small { display: block; margin-top: 6px; color: #a9bcd3; font-size: 11px; line-height: 1.4; }

/* Cards semánticas */
.nwsec-features { margin-top: 78px; }
.nwsec-features__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; margin-top: 30px; }
.nwsec-card { display: flex; min-height: 156px; align-items: flex-start; gap: 14px; padding: 23px; border: 1px solid rgba(255,255,255,.11); border-radius: 16px; background: rgba(255,255,255,.05); transition: transform .24s ease,border-color .24s ease,background-color .24s ease; }
.nwsec-card:hover { border-color: rgba(126,178,255,.34); background: rgba(255,255,255,.07); transform: translateY(-4px); }
.nwsec-card > span { display: grid; flex: 0 0 46px; width: 46px; height: 46px; place-items: center; border-radius: 13px; color: #8dbbff; background: rgba(61,131,236,.15); font-size: 16px; }
.nwsec-card h4 { margin: 2px 0 0; color: #fff; font-size: 17px; font-weight: 700; line-height: 1.35; }
.nwsec-card p { margin: 7px 0 0; color: #a9bcd3; font-size: 13px; line-height: 1.55; }

/* CTA */
.nwsec-cta { display: grid; grid-template-columns: 52px minmax(260px,1fr) auto; align-items: center; gap: 18px; margin-top: 24px; padding: 25px 27px; border: 1px solid rgba(126,178,255,.22); border-radius: 17px; background: linear-gradient(135deg,rgba(37,99,235,.14),rgba(255,255,255,.045)); }
.nwsec-cta__icon { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 15px; color: #fff; background: linear-gradient(135deg,#2563eb,#4f92ff); font-size: 18px; }
.nwsec-cta__copy strong { color: #fff; font-size: 17px; font-weight: 700; }
.nwsec-cta__copy p { margin: 6px 0 0; color: #afc1d7; font-size: 13px; line-height: 1.5; }
.nwsec-cta__actions { display: flex; gap: 10px; }
.nwsec-button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 9px; padding: 13px 18px; border: 1px solid transparent; border-radius: 11px; font-size: 14px; font-weight: 700; text-decoration: none; transition: transform .22s ease,background-color .22s ease,border-color .22s ease; }
.nwsec-button--primary { color: #fff; border-color: #4f8eff; background: #2563eb; }
.nwsec-button--primary:hover { color: #fff; background: #3478f6; transform: translateY(-2px); }
.nwsec-button--secondary { color: #d8e7f7; border-color: rgba(181,207,239,.42); background: rgba(255,255,255,.04); }
.nwsec-button--secondary:hover { color: #fff; border-color: #8dbbff; background: rgba(255,255,255,.08); transform: translateY(-2px); }
.nwsec-button:focus-visible { outline: 3px solid rgba(126,178,255,.52); outline-offset: 4px; }
.nwsec-note { display: flex; max-width: 1030px; align-items: flex-start; gap: 9px; margin: 19px 0 0; color: #9eb2ca; font-size: 13px; line-height: 1.6; }
.nwsec-note i { margin-top: 4px; color: #78aaf5; }

@keyframes nwsec-orbit { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes nwsec-threat { 0%,14% { opacity: 0; transform: translateX(-10px) scale(.8); } 28%,55% { opacity: 1; transform: translateX(0) scale(1); } 72%,100% { opacity: 0; transform: translateX(18px) scale(.75); } }
@keyframes nwsec-backup-progress { 0%,12% { width: 0; } 54%,100% { width: 100%; } }

@media (max-width:1199.98px) {
  .nwsec-panel { padding: 26px; }
  .nwsec-features__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .nwsec-cta { grid-template-columns: 52px 1fr; }
  .nwsec-cta__actions { grid-column: 2; }
}

@media (max-width:991.98px) {
  .nwsec-section { padding: 88px 0; }
  .nwsec-panel { min-height: 0; }
  .nwsec-shield-visual { margin-top: 34px; }
  .nwsec-features { margin-top: 66px; }
}

@media (max-width:767.98px) {
  .nwsec-section { padding: 76px 0; }
  .nwsec-container { width: min(calc(100% - 24px),1280px); }
  .nwsec-heading h2 { font-size: clamp(43px,12vw,54px); }
  .nwsec-lead { font-size: 16px; line-height: 1.7; }
  .nwsec-feature-row { margin-top: 44px; }
  .nwsec-panel { padding: 24px 20px; }
  .nwsec-panel__heading { flex-direction: column; }
  .nwsec-panel__heading h3,.nwsec-features__heading h3 { font-size: 34px; }
  .nwsec-features__grid { grid-template-columns: 1fr; }
  .nwsec-card { min-height: 0; }
  .nwsec-cta { grid-template-columns: 48px 1fr; padding: 22px 20px; }
  .nwsec-cta__actions { grid-column: 1/-1; flex-wrap: wrap; }
}

@media (max-width:575.98px) {
  .nwsec-eyebrow { font-size: 11px; letter-spacing: .1em; }
  .nwsec-heading h2 { font-size: 44px; }
  .nwsec-shield-visual { width: 290px; height: 290px; }
  .nwsec-orbit--one { width: 205px; height: 205px; }
  .nwsec-orbit--two { width: 275px; height: 275px; }
  .nwsec-layer--firewall { right: -3px; }
  .nwsec-layer--malware { left: 0; }
  .nwsec-panel__summary { grid-template-columns: 1fr; }
  .nwsec-retention { grid-template-columns: 1fr; }
  .nwsec-retention > div { min-height: 0; }
  .nwsec-features__heading h3 { font-size: 32px; }
  .nwsec-cta { grid-template-columns: 1fr; }
  .nwsec-cta__actions { grid-column: 1; flex-direction: column; }
  .nwsec-button { width: 100%; }
}

@media (prefers-reduced-motion:reduce) {
  .nwsec-section *, .nwsec-section *::before, .nwsec-section *::after { scroll-behavior:auto!important; animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; }
  .nwsec-threat { display:none; }
  .nwsec-timeline__line i { width:100%; }
}













/* ============================================================
   NEOTHEK · WEB HOSTING
   ¿POR QUÉ ELEGIR NEOTHEK? · VIDEO INSTITUCIONAL · V1
============================================================ */

.nw-why,
.nw-why * {
  box-sizing: border-box;
}

.nw-why {
  --nw-navy: #172033;
  --nw-blue: #2563eb;
  --nw-blue-dark: #1d4ed8;
  --nw-cyan: #0782c8;
  --nw-green: #0f9f62;
  --nw-violet: #7657e8;
  --nw-text: #475569;
  --nw-muted: #64748b;
  --nw-border: #d9e4f2;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(82px, 8vw, 124px) 24px;
  color: var(--nw-navy);
  background:
    linear-gradient(rgba(37, 99, 235, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, .022) 1px, transparent 1px),
    #f7fafe;
  background-size: 72px 72px;
  font-family: "Open Sans", Arial, sans-serif;
}

.nw-why__glow {
  position: absolute;
  z-index: -1;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(12px);
}

.nw-why__glow--blue {
  top: -320px;
  right: -120px;
  background: radial-gradient(circle, rgba(37, 99, 235, .13), transparent 68%);
}

.nw-why__glow--green {
  bottom: -360px;
  left: -180px;
  background: radial-gradient(circle, rgba(15, 159, 98, .08), transparent 68%);
}

.nw-why__container {
  width: min(100%, 1260px);
  margin-inline: auto;
}

.nw-why__header {
  max-width: 900px;
  margin: 0 auto clamp(48px, 5vw, 68px);
  text-align: center;
}

.nw-why__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--nw-blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .16em;
}

.nw-why__eyebrow span {
  width: 9px;
  height: 9px;
  border: 2px solid #a9c7ff;
  border-radius: 50%;
  background: var(--nw-blue);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, .08);
}

.nw-why__header h2 {
  max-width: 880px;
  margin: 0 auto 24px;
  color: var(--nw-navy);
  font-family: "Open Sans Condensed", "Open Sans", Arial, sans-serif;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.nw-why__header h2 span {
  display: block;
  color: var(--nw-blue);
}

.nw-why__intro {
  max-width: 790px;
  margin: 0 auto;
  color: var(--nw-text);
  font-size: 18px;
  line-height: 1.75;
}

.nw-why__layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(44px, 6vw, 76px);
}

.nw-why__features {
  display: grid;
  gap: 4px;
}

.nw-why__feature {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--nw-border);
  transition: transform .25s ease, border-color .25s ease;
}

.nw-why__feature:first-child {
  padding-top: 0;
}

.nw-why__feature:hover {
  transform: translateX(5px);
  border-color: #b8cdf0;
}

.nw-why__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid transparent;
  border-radius: 14px;
}

.nw-why__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nw-why__icon--blue {
  color: var(--nw-blue);
  border-color: #d8e6ff;
  background: #eaf2ff;
}

.nw-why__icon--cyan {
  color: var(--nw-cyan);
  border-color: #caeafb;
  background: #e9f8ff;
}

.nw-why__icon--violet {
  color: var(--nw-violet);
  border-color: #e1dcfb;
  background: #f1efff;
}

.nw-why__icon--green {
  color: var(--nw-green);
  border-color: #d0eddf;
  background: #eaf8f1;
}

.nw-why__feature h3 {
  margin: 0 0 6px;
  color: #20304a;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.nw-why__feature p {
  margin: 0;
  color: var(--nw-muted);
  font-size: 14px;
  line-height: 1.65;
}

.nw-why__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.nw-why__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.nw-why__button svg {
  width: 20px;
  height: 20px;
  margin-left: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

.nw-why__button:hover {
  transform: translateY(-2px);
}

.nw-why__button--primary {
  color: #fff;
  background: var(--nw-blue);
  box-shadow: 0 12px 28px rgba(37, 99, 235, .22);
}

.nw-why__button--primary:hover {
  color: #fff;
  background: var(--nw-blue-dark);
  box-shadow: 0 16px 34px rgba(37, 99, 235, .28);
}

.nw-why__button--primary:hover svg {
  transform: translateX(4px);
}

.nw-why__button--secondary {
  color: #223653;
  border-color: #b9cce5;
  background: rgba(255, 255, 255, .82);
}

.nw-why__button--secondary:hover {
  color: var(--nw-blue-dark);
  border-color: #8eb3ed;
  background: #fff;
}

.nw-why__button:focus-visible,
.nw-why__play:focus-visible,
.nw-why__video-footer a:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .35);
  outline-offset: 4px;
}

.nw-why__assurance {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 17px 0 0;
  color: #3f5b73;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.nw-why__assurance svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--nw-green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nw-why__video-card {
  overflow: hidden;
  border: 1px solid #cad9ec;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 65px rgba(26, 55, 96, .15);
}

.nw-why__video-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 116px;
  padding: 24px 28px;
  border-bottom: 1px solid #dfe8f4;
}

.nw-why__video-heading > div > span {
  display: block;
  margin-bottom: 7px;
  color: var(--nw-blue);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .14em;
}

.nw-why__video-heading h3 {
  max-width: 400px;
  margin: 0;
  color: #1d2b42;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.nw-why__video-badge {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid #d8e5f5;
  border-radius: 999px;
  color: #4b607b;
  background: #f7faff;
  font-size: 12px;
  font-weight: 700;
}

.nw-why__video-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nw-green);
  box-shadow: 0 0 0 4px rgba(15, 159, 98, .11);
}

.nw-why__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0d274d;
}

.nw-why__video img,
.nw-why__video iframe,
.nw-why__video-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nw-why__video img {
  display: block;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1), filter .5s ease;
}

.nw-why__video-overlay {
  background:
    linear-gradient(180deg, rgba(8, 31, 61, .05), rgba(8, 31, 61, .5)),
    linear-gradient(100deg, rgba(8, 31, 61, .25), transparent 58%);
  transition: background-color .3s ease;
}

.nw-why__video:hover img {
  transform: scale(1.035);
  filter: saturate(1.05);
}

.nw-why__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.nw-why__play span {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 50%;
  color: var(--nw-blue);
  background: #fff;
  box-shadow: 0 16px 35px rgba(8, 31, 61, .3);
  transition: transform .25s ease, box-shadow .25s ease;
}

.nw-why__play svg {
  width: 32px;
  height: 32px;
  margin-left: 3px;
  fill: currentColor;
  stroke: none;
}

.nw-why__play strong {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(8, 31, 61, .78);
  box-shadow: 0 8px 18px rgba(8, 31, 61, .18);
  font-size: 14px;
  font-weight: 700;
}

.nw-why__play:hover span {
  transform: scale(1.08);
  box-shadow: 0 20px 42px rgba(8, 31, 61, .36);
}

.nw-why__video iframe {
  border: 0;
}

.nw-why__video.is-playing {
  background: #000;
}

.nw-why__video-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 17px 28px;
}

.nw-why__video-footer p {
  margin: 0;
  color: var(--nw-muted);
  font-size: 14px;
  line-height: 1.55;
}

.nw-why__video-footer a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  color: var(--nw-blue);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nw-why__video-footer a:hover {
  color: var(--nw-blue-dark);
  text-decoration: underline;
}

.nw-why__video-footer svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nw-why__proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(54px, 6vw, 76px);
  overflow: hidden;
  border: 1px solid var(--nw-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 16px 42px rgba(31, 61, 102, .08);
}

.nw-why__proof div {
  position: relative;
  min-height: 105px;
  padding: 25px 26px;
}

.nw-why__proof div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 24px;
  width: 1px;
  background: var(--nw-border);
}

.nw-why__proof strong,
.nw-why__proof span {
  display: block;
}

.nw-why__proof strong {
  margin-bottom: 5px;
  color: #20304a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.nw-why__proof span {
  color: var(--nw-muted);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 1050px) {
  .nw-why__layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .nw-why__content {
    order: 1;
  }

  .nw-why__video-card {
    order: 2;
    width: min(100%, 820px);
    margin-inline: auto;
  }

  .nw-why__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 30px;
  }

  .nw-why__feature:nth-child(2) {
    padding-top: 0;
  }
}

@media (max-width: 820px) {
  .nw-why {
    padding: 76px 20px;
    background-size: 56px 56px;
  }

  .nw-why__header h2 {
    font-size: clamp(40px, 9vw, 52px);
  }

  .nw-why__proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nw-why__proof div:nth-child(2)::after {
    display: none;
  }

  .nw-why__proof div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--nw-border);
  }
}

@media (max-width: 640px) {
  .nw-why {
    padding: 66px 16px;
  }

  .nw-why__header {
    margin-bottom: 42px;
    text-align: left;
  }

  .nw-why__eyebrow {
    margin-bottom: 16px;
  }

  .nw-why__header h2 {
    margin-inline: 0;
    font-size: clamp(38px, 12vw, 48px);
    line-height: 1.04;
  }

  .nw-why__header h2 span {
    display: inline;
  }

  .nw-why__intro {
    font-size: 17px;
    line-height: 1.7;
  }

  .nw-why__features {
    grid-template-columns: 1fr;
  }

  .nw-why__feature,
  .nw-why__feature:nth-child(2) {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 15px;
    padding: 18px 0;
  }

  .nw-why__feature:first-child {
    padding-top: 0;
  }

  .nw-why__icon {
    width: 46px;
    height: 46px;
  }

  .nw-why__actions {
    display: grid;
  }

  .nw-why__button {
    width: 100%;
    min-height: 58px;
  }

  .nw-why__video-card {
    border-radius: 18px;
  }

  .nw-why__video-heading {
    align-items: flex-start;
    min-height: auto;
    padding: 22px;
  }

  .nw-why__video-badge {
    display: none;
  }

  .nw-why__video-heading h3 {
    font-size: 17px;
  }

  .nw-why__play span {
    width: 64px;
    height: 64px;
  }

  .nw-why__video-footer {
    display: block;
    padding: 18px 22px 20px;
  }

  .nw-why__video-footer a {
    margin-top: 10px;
  }

  .nw-why__proof {
    grid-template-columns: 1fr;
  }

  .nw-why__proof div {
    min-height: auto;
    padding: 21px 22px;
    border-bottom: 1px solid var(--nw-border);
  }

  .nw-why__proof div:last-child {
    border-bottom: 0;
  }

  .nw-why__proof div::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nw-why *,
  .nw-why *::before,
  .nw-why *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}











/* ============================================================
   NEOTHEK · WEB HOSTING
   COMIENCE EN TRES PASOS · V1
============================================================ */

.nwonboard,
.nwonboard * {
  box-sizing: border-box;
}

.nwonboard {
  --nwo-navy: #172033;
  --nwo-dark: #0f2f5e;
  --nwo-blue: #2563eb;
  --nwo-blue-dark: #1d4ed8;
  --nwo-violet: #7657e8;
  --nwo-green: #0f9f62;
  --nwo-text: #475569;
  --nwo-muted: #64748b;
  --nwo-border: #d8e3f1;
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 8vw, 124px) 24px;
  color: var(--nwo-navy);
  background: #fff;
  font-family: "Open Sans", Arial, sans-serif;
}

.nwonboard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(92%, 1120px);
  height: 1px;
  background: linear-gradient(90deg, transparent, #cfdded 18%, #cfdded 82%, transparent);
  transform: translateX(-50%);
}

.nwonboard__container {
  width: min(100%, 1260px);
  margin-inline: auto;
}

.nwonboard__header {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .72fr);
  align-items: end;
  gap: clamp(40px, 7vw, 100px);
  margin-bottom: clamp(52px, 6vw, 76px);
}

.nwonboard__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--nwo-blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .16em;
}

.nwonboard__eyebrow span {
  width: 9px;
  height: 9px;
  border: 2px solid #adc9ff;
  border-radius: 50%;
  background: var(--nwo-blue);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, .08);
}

.nwonboard__header h2 {
  margin: 0;
  color: var(--nwo-navy);
  font-family: "Open Sans Condensed", "Open Sans", Arial, sans-serif;
  font-size: clamp(46px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.nwonboard__header h2 span {
  display: block;
  color: var(--nwo-blue);
}

.nwonboard__intro {
  margin: 0 0 5px;
  color: var(--nwo-text);
  font-size: 18px;
  line-height: 1.75;
}

.nwonboard__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nwonboard__steps::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 58px;
  right: 15%;
  left: 15%;
  height: 2px;
  background: linear-gradient(90deg, #bdd2f3, #b7c6f2 50%, #b9dfce);
}

.nwonboard__step {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 30px 30px 28px;
  border: 1px solid var(--nwo-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(26, 55, 96, .08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.nwonboard__step:hover {
  transform: translateY(-6px);
  border-color: #adc8ee;
  box-shadow: 0 26px 55px rgba(26, 55, 96, .13);
}

.nwonboard__step--featured {
  border-color: #b9ccfb;
  background:
    radial-gradient(circle at 100% 0, rgba(118, 87, 232, .09), transparent 180px),
    linear-gradient(180deg, #fbfcff, #f7faff);
}

.nwonboard__step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.nwonboard__number {
  color: #afbdd0;
  font-family: "Open Sans Condensed", "Open Sans", Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
}

.nwonboard__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid transparent;
  border-radius: 14px;
}

.nwonboard__icon svg,
.nwonboard__support-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nwonboard__icon--blue {
  color: var(--nwo-blue);
  border-color: #d7e5ff;
  background: #eaf2ff;
}

.nwonboard__icon--violet {
  color: var(--nwo-violet);
  border-color: #e0dafa;
  background: #f0edff;
}

.nwonboard__icon--green {
  color: var(--nwo-green);
  border-color: #d0ebde;
  background: #e9f8f0;
}

.nwonboard__step-label {
  margin: 0 0 10px;
  color: var(--nwo-blue);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .14em;
}

.nwonboard__step h3 {
  margin: 0 0 14px;
  color: #1c2b43;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.nwonboard__step-copy > p:last-child {
  margin: 0;
  color: var(--nwo-muted);
  font-size: 15px;
  line-height: 1.7;
}

.nwonboard__step-link,
.nwonboard__included {
  margin-top: auto;
  padding-top: 24px;
}

.nwonboard__step-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  color: var(--nwo-blue);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nwonboard__step-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

.nwonboard__step-link:hover {
  color: var(--nwo-blue-dark);
  text-decoration: underline;
}

.nwonboard__step-link:hover svg {
  transform: translateX(4px);
}

.nwonboard__included {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #167847;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.nwonboard__included svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--nwo-green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nwonboard__support {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(230px, .72fr) auto;
  align-items: center;
  gap: clamp(28px, 4vw, 52px);
  margin-top: 34px;
  overflow: hidden;
  padding: clamp(32px, 4vw, 46px);
  border: 1px solid rgba(127, 166, 219, .25);
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 70% 0, rgba(52, 120, 246, .27), transparent 330px),
    linear-gradient(135deg, #0e2c56 0%, #123a70 58%, #0d315d 100%);
  box-shadow: 0 24px 58px rgba(16, 46, 92, .18);
}

.nwonboard__support::after {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -125px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(124, 169, 237, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(124, 169, 237, .035), 0 0 0 80px rgba(124, 169, 237, .025);
  pointer-events: none;
}

.nwonboard__support-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
}

.nwonboard__support-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(168, 204, 255, .24);
  border-radius: 14px;
  color: #a9caff;
  background: rgba(55, 116, 205, .25);
}

.nwonboard__support-label {
  margin: 0 0 8px;
  color: #9ec4ff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .14em;
}

.nwonboard__support h3 {
  margin: 0 0 9px;
  color: #fff;
  font-size: clamp(24px, 2.3vw, 31px);
  font-weight: 700;
  line-height: 1.25;
}

.nwonboard__support-copy > div > p:last-child {
  margin: 0;
  color: #c9d8eb;
  font-size: 15px;
  line-height: 1.65;
}

.nwonboard__support-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nwonboard__support-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e8f1fc;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.nwonboard__support-list span {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  color: #4ee094;
  background: rgba(29, 172, 98, .16);
  font-size: 13px;
  font-weight: 800;
}

.nwonboard__actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  min-width: 245px;
}

.nwonboard__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.nwonboard__button svg {
  width: 19px;
  height: 19px;
  margin-left: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

.nwonboard__button:hover {
  transform: translateY(-2px);
}

.nwonboard__button--primary {
  color: #fff;
  background: var(--nwo-blue);
  box-shadow: 0 12px 28px rgba(8, 24, 50, .28);
}

.nwonboard__button--primary:hover {
  color: #fff;
  background: #3478f6;
  box-shadow: 0 16px 34px rgba(8, 24, 50, .34);
}

.nwonboard__button--primary:hover svg {
  transform: translateX(4px);
}

.nwonboard__button--secondary {
  color: #eef5ff;
  border-color: rgba(185, 211, 248, .42);
  background: rgba(255, 255, 255, .055);
}

.nwonboard__button--secondary:hover {
  color: #fff;
  border-color: rgba(207, 225, 250, .65);
  background: rgba(255, 255, 255, .1);
}

.nwonboard__step-link:focus-visible,
.nwonboard__button:focus-visible {
  outline: 3px solid rgba(73, 135, 246, .4);
  outline-offset: 4px;
}

.nwonboard__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  max-width: 900px;
  margin: 20px auto 0;
  color: var(--nwo-muted);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.nwonboard__note svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--nwo-blue);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1100px) {
  .nwonboard__support {
    grid-template-columns: minmax(0, 1fr) minmax(220px, .65fr);
  }

  .nwonboard__actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .nwonboard__header {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .nwonboard__intro {
    max-width: 760px;
  }

  .nwonboard__steps {
    grid-template-columns: 1fr;
  }

  .nwonboard__steps::before {
    top: 70px;
    bottom: 70px;
    left: 54px;
    width: 2px;
    height: auto;
    background: linear-gradient(#bdd2f3, #b7c6f2 50%, #b9dfce);
  }

  .nwonboard__step {
    min-height: auto;
    padding-left: 90px;
  }

  .nwonboard__step-top {
    position: absolute;
    top: 28px;
    left: 29px;
    display: block;
  }

  .nwonboard__number {
    display: none;
  }

  .nwonboard__step-link,
  .nwonboard__included {
    margin-top: 22px;
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .nwonboard {
    padding: 74px 20px;
  }

  .nwonboard__header h2 {
    font-size: clamp(42px, 10vw, 54px);
  }

  .nwonboard__support {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .nwonboard__support-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nwonboard__actions {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .nwonboard {
    padding: 64px 16px;
  }

  .nwonboard__header h2 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .nwonboard__header h2 span {
    display: inline;
  }

  .nwonboard__intro {
    font-size: 17px;
  }

  .nwonboard__step {
    padding: 24px 22px;
  }

  .nwonboard__steps::before {
    display: none;
  }

  .nwonboard__step-top {
    position: static;
    display: flex;
    margin-bottom: 22px;
  }

  .nwonboard__number {
    display: block;
    font-size: 38px;
  }

  .nwonboard__step h3 {
    font-size: 19px;
  }

  .nwonboard__support {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .nwonboard__support-copy {
    grid-template-columns: 1fr;
  }

  .nwonboard__support h3 {
    font-size: 25px;
  }

  .nwonboard__support-list,
  .nwonboard__actions {
    grid-template-columns: 1fr;
  }

  .nwonboard__button {
    min-height: 58px;
  }

  .nwonboard__note {
    align-items: flex-start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nwonboard *,
  .nwonboard *::before,
  .nwonboard *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}








/* ============================================================
   NEOTHEK · WEB HOSTING
   OPINIONES VERIFICABLES EN TRUSTPILOT · V2
   Ajustes: scrollbar oculto y avatares centrados
============================================================ */

.nwreviews,
.nwreviews * {
  box-sizing: border-box;
}

.nwreviews {
  --nwr-navy: #172033;
  --nwr-blue: #2563eb;
  --nwr-blue-dark: #1d4ed8;
  --nwr-text: #475569;
  --nwr-muted: #64748b;
  --nwr-border: #d9e4f2;
  --nwr-trust: #00a878;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(82px, 8vw, 124px) 24px;
  color: var(--nwr-navy);
  background:
    linear-gradient(rgba(37, 99, 235, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, .022) 1px, transparent 1px),
    #f3f7fd;
  background-size: 76px 76px;
  font-family: "Open Sans", Arial, sans-serif;
}

.nwreviews__glow {
  position: absolute;
  z-index: -1;
  top: -340px;
  left: 50%;
  width: 760px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, .13), transparent 68%);
  filter: blur(14px);
  pointer-events: none;
  transform: translateX(-50%);
}

.nwreviews__container {
  width: min(100%, 1260px);
  margin-inline: auto;
}

.nwreviews__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .7fr);
  align-items: end;
  gap: clamp(42px, 7vw, 100px);
  margin-bottom: clamp(44px, 5vw, 64px);
}

.nwreviews__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--nwr-blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .16em;
}

.nwreviews__eyebrow span {
  width: 9px;
  height: 9px;
  border: 2px solid #abc7fb;
  border-radius: 50%;
  background: var(--nwr-blue);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, .08);
}

.nwreviews__header h2 {
  margin: 0;
  color: var(--nwr-navy);
  font-family: "Open Sans Condensed", "Open Sans", Arial, sans-serif;
  font-size: clamp(46px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.nwreviews__header h2 span {
  display: block;
  color: var(--nwr-blue);
}

.nwreviews__intro {
  margin: 0 0 5px;
  color: var(--nwr-text);
  font-size: 18px;
  line-height: 1.75;
}

.nwreviews__summary {
  display: grid;
  grid-template-columns: auto auto auto minmax(190px, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 112px;
  padding: 24px 28px;
  border: 1px solid #cbd9eb;
  border-radius: 20px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 45px rgba(26, 55, 96, .09);
}

.nwreviews__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-right: 24px;
  border-right: 1px solid var(--nwr-border);
}

.nwreviews__brand svg {
  width: 30px;
  height: 30px;
  fill: var(--nwr-trust);
}

.nwreviews__brand strong {
  color: #172033;
  font-size: 19px;
  font-weight: 700;
}

.nwreviews__rating {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.nwreviews__rating strong {
  color: #14233b;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.nwreviews__rating span {
  color: var(--nwr-muted);
  font-size: 14px;
  font-weight: 600;
}

.nwreviews__stars {
  display: flex;
  gap: 3px;
  color: #fff;
}

.nwreviews__stars span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  background: var(--nwr-trust);
  font-size: 17px;
  line-height: 1;
}

.nwreviews__count strong,
.nwreviews__count span {
  display: block;
}

.nwreviews__count strong {
  margin-bottom: 3px;
  color: #243650;
  font-size: 16px;
  font-weight: 700;
}

.nwreviews__count span {
  color: var(--nwr-muted);
  font-size: 13px;
  line-height: 1.5;
}

.nwreviews__source-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid #b9cce4;
  border-radius: 11px;
  color: #264361;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.nwreviews__source-link:hover {
  color: var(--nwr-blue-dark);
  border-color: #91b3e5;
  box-shadow: 0 9px 22px rgba(33, 73, 128, .1);
  transform: translateY(-2px);
}

.nwreviews__source-link svg,
.nwreviews__card > a svg,
.nwreviews__button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nwreviews__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 38px 0 20px;
}

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

.nwreviews__context-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #d7e5fa;
  border-radius: 14px;
  color: var(--nwr-blue);
  background: #eaf2ff;
}

.nwreviews__context-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nwreviews__context strong,
.nwreviews__context > div > span {
  display: block;
}

.nwreviews__context strong {
  margin-bottom: 3px;
  color: #20324c;
  font-size: 17px;
  font-weight: 700;
}

.nwreviews__context > div > span {
  color: var(--nwr-muted);
  font-size: 14px;
  line-height: 1.5;
}

.nwreviews__controls {
  display: flex;
  align-items: center;
  gap: 9px;
}

.nwreviews__status {
  min-width: 58px;
  color: var(--nwr-muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.nwreviews__arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid #b9cde7;
  border-radius: 50%;
  color: #24476d;
  background: #fff;
  cursor: pointer;
  transition: transform .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.nwreviews__arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nwreviews__arrow:hover:not(:disabled) {
  color: #fff;
  border-color: var(--nwr-blue);
  background: var(--nwr-blue);
  box-shadow: 0 10px 22px rgba(37, 99, 235, .22);
  transform: translateY(-2px);
}

.nwreviews__arrow:disabled {
  cursor: not-allowed;
  opacity: .42;
}

.nwreviews__viewport {
  overflow: hidden;
  margin-inline: -10px;
  padding: 10px;
}

.nwreviews__track {
  display: grid;
  grid-auto-columns: calc((100% - 48px) / 3);
  grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto;
  padding: 0 0 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.nwreviews__track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.nwreviews__card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid #d2deed;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(26, 55, 96, .08);
  scroll-snap-align: start;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.nwreviews__card:hover {
  border-color: #abc4e8;
  box-shadow: 0 24px 52px rgba(26, 55, 96, .13);
  transform: translateY(-5px);
}

.nwreviews__card--featured {
  border-color: #aac4f4;
  background:
    radial-gradient(circle at 100% 0, rgba(37, 99, 235, .09), transparent 190px),
    #fff;
}

.nwreviews__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 32px;
}

.nwreviews__card-stars {
  color: var(--nwr-trust);
  font-size: 21px;
  line-height: 1;
  letter-spacing: 2px;
}

.nwreviews__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
}

.nwreviews__tag--verified {
  color: #08744e;
  background: #e7f8f1;
}

.nwreviews__tag--story {
  color: #1f56bd;
  background: #eaf2ff;
}

.nwreviews__tag svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nwreviews__card blockquote {
  position: relative;
  flex: 1;
  margin: 32px 0 30px;
  padding: 0;
  color: #263851;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.75;
}

.nwreviews__card blockquote::before {
  content: "“";
  position: absolute;
  top: -28px;
  right: 0;
  color: rgba(37, 99, 235, .09);
  font-family: Georgia, serif;
  font-size: 92px;
  font-weight: 700;
  line-height: 1;
}

.nwreviews__author {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding-top: 23px;
  border-top: 1px solid #e0e8f2;
}

.nwreviews__avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #1d56be;
  background: #e8f1ff;
  font-size: 14px;
  font-weight: 800;
}

.nwreviews__avatar--blue {
  color: #075e93;
  background: #e3f5ff;
}

.nwreviews__avatar--violet {
  color: #6243cf;
  background: #efebff;
}

.nwreviews__avatar--green {
  color: #08744e;
  background: #e4f7ee;
}

.nwreviews__author strong,
.nwreviews__author span,
.nwreviews__author small {
  display: block;
}

/* Mantiene las iniciales centradas aunque el avatar sea un elemento <span>. */
.nwreviews__author .nwreviews__avatar {
  display: grid;
  place-items: center;
  line-height: 1;
  text-align: center;
}

.nwreviews__author strong {
  margin-bottom: 2px;
  color: #1d2f49;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.nwreviews__author span {
  color: #50637d;
  font-size: 13px;
  line-height: 1.45;
}

.nwreviews__author small {
  margin-top: 3px;
  color: var(--nwr-muted);
  font-size: 12px;
  line-height: 1.45;
}

.nwreviews__card > a {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 7px;
  margin-top: 20px;
  color: var(--nwr-blue);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.nwreviews__card > a:hover {
  color: var(--nwr-blue-dark);
  text-decoration: underline;
}

.nwreviews__closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid #cfddec;
}

.nwreviews__closing > p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #50647c;
  font-size: 14px;
  line-height: 1.55;
}

.nwreviews__closing > p svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--nwr-trust);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nwreviews__closing-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 11px;
}

.nwreviews__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.nwreviews__button:hover {
  transform: translateY(-2px);
}

.nwreviews__button--primary {
  gap: 10px;
  color: #fff;
  background: var(--nwr-blue);
  box-shadow: 0 12px 26px rgba(37, 99, 235, .2);
}

.nwreviews__button--primary:hover {
  color: #fff;
  background: var(--nwr-blue-dark);
  box-shadow: 0 16px 32px rgba(37, 99, 235, .27);
}

.nwreviews__button--secondary {
  color: #294766;
  border-color: #b9cde5;
  background: rgba(255, 255, 255, .8);
}

.nwreviews__button--secondary:hover {
  color: var(--nwr-blue-dark);
  border-color: #8fb2e3;
  background: #fff;
}

.nwreviews__source-link:focus-visible,
.nwreviews__arrow:focus-visible,
.nwreviews__track:focus-visible,
.nwreviews__card > a:focus-visible,
.nwreviews__button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .36);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .nwreviews__summary {
    grid-template-columns: auto auto minmax(180px, 1fr) auto;
  }

  .nwreviews__stars {
    grid-row: 2;
    grid-column: 1 / 3;
  }

  .nwreviews__track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }
}

@media (max-width: 860px) {
  .nwreviews {
    padding: 74px 20px;
  }

  .nwreviews__header {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .nwreviews__intro {
    max-width: 760px;
  }

  .nwreviews__summary {
    grid-template-columns: auto auto 1fr;
  }

  .nwreviews__source-link {
    grid-column: 1 / -1;
  }

  .nwreviews__closing {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .nwreviews {
    padding: 64px 16px;
    background-size: 56px 56px;
  }

  .nwreviews__header h2 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .nwreviews__header h2 span {
    display: inline;
  }

  .nwreviews__intro {
    font-size: 17px;
  }

  .nwreviews__summary {
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding: 22px;
  }

  .nwreviews__brand {
    padding: 0;
    border: 0;
  }

  .nwreviews__rating {
    justify-self: end;
  }

  .nwreviews__stars {
    grid-row: auto;
    grid-column: 1;
  }

  .nwreviews__count {
    grid-column: 2;
    text-align: right;
  }

  .nwreviews__source-link {
    grid-column: 1 / -1;
  }

  .nwreviews__toolbar {
    align-items: flex-end;
  }

  .nwreviews__context-icon,
  .nwreviews__context > div > span {
    display: none;
  }

  .nwreviews__context strong {
    font-size: 16px;
  }

  .nwreviews__status {
    display: none;
  }

  .nwreviews__arrow {
    width: 44px;
    height: 44px;
  }

  .nwreviews__track {
    grid-auto-columns: 88%;
    gap: 16px;
  }

  .nwreviews__card {
    min-height: 440px;
    padding: 24px;
  }

  .nwreviews__card blockquote {
    font-size: 16px;
  }

  .nwreviews__closing-actions {
    display: grid;
    width: 100%;
  }

  .nwreviews__button {
    width: 100%;
    min-height: 58px;
  }
}

@media (max-width: 430px) {
  .nwreviews__summary {
    grid-template-columns: 1fr;
  }

  .nwreviews__rating,
  .nwreviews__count {
    justify-self: start;
    grid-column: 1;
    text-align: left;
  }

  .nwreviews__stars span {
    width: 25px;
    height: 25px;
  }

  .nwreviews__card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .nwreviews__track {
    grid-auto-columns: 94%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nwreviews *,
  .nwreviews *::before,
  .nwreviews *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}










/* ============================================================
   NEOTHEK · WEB HOSTING
   SECCIÓN REGIONAL · MUNDO ABSTRACTO · V1
============================================================ */

.nwlocal,
.nwlocal * {
  box-sizing: border-box;
}

.nwlocal {
  --nwl-navy: #172033;
  --nwl-blue: #2563eb;
  --nwl-blue-dark: #1d4ed8;
  --nwl-green: #0f9f62;
  --nwl-text: #475569;
  --nwl-muted: #64748b;
  --nwl-border: #d8e3f1;
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 8vw, 124px) 24px;
  color: var(--nwl-navy);
  background: #fff;
  font-family: "Open Sans", Arial, sans-serif;
}

.nwlocal__container {
  width: min(100%, 1260px);
  margin-inline: auto;
}

.nwlocal__header {
  max-width: 930px;
  margin: 0 auto clamp(48px, 5vw, 68px);
  text-align: center;
}

.nwlocal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--nwl-blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .16em;
}

.nwlocal__eyebrow span {
  width: 9px;
  height: 9px;
  border: 2px solid #aecaff;
  border-radius: 50%;
  background: var(--nwl-blue);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, .08);
}

.nwlocal__header h2 {
  margin: 0 0 22px;
  color: var(--nwl-navy);
  font-family: "Open Sans Condensed", "Open Sans", Arial, sans-serif;
  font-size: clamp(46px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.nwlocal__header h2 span {
  display: block;
  color: var(--nwl-blue);
}

.nwlocal__header > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: var(--nwl-text);
  font-size: 18px;
  line-height: 1.75;
}

.nwlocal__stage {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr);
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--nwl-border);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(24, 57, 101, .14);
}

.nwlocal__world {
  position: relative;
  isolation: isolate;
  display: flex;
  min-width: 0;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  padding: 44px;
  color: #fff;
  background:
    linear-gradient(rgba(137, 184, 249, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(137, 184, 249, .07) 1px, transparent 1px),
    radial-gradient(circle at 72% 18%, rgba(52, 120, 246, .34), transparent 280px),
    linear-gradient(145deg, #0b2850 0%, #113a71 58%, #0d2c55 100%);
  background-size: 54px 54px, 54px 54px, auto, auto;
}

.nwlocal__world-glow {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 142, 247, .18), transparent 67%);
  transform: translate(-50%, -50%);
}

.nwlocal__globe {
  width: min(100%, 570px);
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 26px 38px rgba(2, 18, 42, .26));
  animation: nwlocal-float 7s ease-in-out infinite;
}

.nwlocal__globe-disc {
  fill: url(#nwlocal-globe-fill);
}

.nwlocal__globe-ring,
.nwlocal__globe-line {
  fill: none;
  stroke: rgba(142, 191, 255, .34);
  stroke-width: 1.5;
}

.nwlocal__land {
  fill: url(#nwlocal-land-fill);
  opacity: .72;
}

.nwlocal__route {
  fill: none;
  stroke: rgba(116, 179, 255, .72);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 5 9;
  animation: nwlocal-route 10s linear infinite;
}

.nwlocal__route--two {
  opacity: .58;
  animation-duration: 13s;
  animation-direction: reverse;
}

.nwlocal__marker {
  position: absolute;
  top: 39%;
  left: 43%;
}

.nwlocal__marker-dot {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 4px solid #e7f2ff;
  border-radius: 50%;
  background: #2f78f6;
  box-shadow: 0 0 0 7px rgba(47, 120, 246, .2);
}

.nwlocal__marker-radar {
  position: absolute;
  top: 9px;
  left: 9px;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(119, 183, 255, .55);
  border-radius: 50%;
  animation: nwlocal-radar 2.8s ease-out infinite;
}

.nwlocal__marker-label {
  position: absolute;
  z-index: 3;
  top: 31px;
  left: 26px;
  min-width: 150px;
  padding: 12px 15px;
  border: 1px solid rgba(175, 208, 251, .35);
  border-radius: 12px;
  background: rgba(7, 29, 60, .82);
  box-shadow: 0 14px 30px rgba(3, 18, 40, .28);
  backdrop-filter: blur(10px);
}

.nwlocal__marker-label small,
.nwlocal__marker-label strong {
  display: block;
}

.nwlocal__marker-label small {
  margin-bottom: 3px;
  color: #89b6f2;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .12em;
}

.nwlocal__marker-label strong {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.nwlocal__availability {
  position: absolute;
  top: 39px;
  right: 32px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 235px;
  padding: 13px 15px;
  border: 1px solid rgba(175, 208, 251, .3);
  border-radius: 14px;
  background: rgba(7, 29, 60, .72);
  box-shadow: 0 16px 35px rgba(3, 18, 40, .25);
  backdrop-filter: blur(11px);
}

.nwlocal__availability-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #4be092;
  background: rgba(33, 183, 107, .16);
}

.nwlocal__availability-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nwlocal__availability small,
.nwlocal__availability strong {
  display: block;
}

.nwlocal__availability small {
  margin-bottom: 3px;
  color: #a8c6ed;
  font-size: 12px;
  line-height: 1.4;
}

.nwlocal__availability strong {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.nwlocal__world-caption {
  position: absolute;
  right: 38px;
  bottom: 34px;
  left: 38px;
  padding-top: 18px;
  border-top: 1px solid rgba(151, 193, 249, .22);
}

.nwlocal__world-caption span,
.nwlocal__world-caption strong {
  display: block;
}

.nwlocal__world-caption span {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 5px;
  color: #a9c8ef;
  font-size: 12px;
  font-weight: 700;
}

.nwlocal__world-caption i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4be092;
  box-shadow: 0 0 0 5px rgba(75, 224, 146, .11);
}

.nwlocal__world-caption strong {
  color: #eef6ff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.nwlocal__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 5vw, 66px);
  background:
    radial-gradient(circle at 100% 0, rgba(37, 99, 235, .08), transparent 250px),
    linear-gradient(145deg, #fff, #f7faff);
}

.nwlocal__country {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 25px;
}

.nwlocal__country-code {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid #c9daf3;
  border-radius: 14px;
  color: var(--nwl-blue);
  background: #eaf2ff;
  font-family: "Open Sans Condensed", "Open Sans", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .06em;
}

.nwlocal__country small,
.nwlocal__country strong {
  display: block;
}

.nwlocal__country small {
  margin-bottom: 2px;
  color: var(--nwl-blue);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .13em;
}

.nwlocal__country strong {
  color: #20324b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.nwlocal__content h3 {
  margin: 0 0 18px;
  color: var(--nwl-navy);
  font-family: "Open Sans Condensed", "Open Sans", Arial, sans-serif;
  font-size: clamp(34px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.018em;
}

.nwlocal__lead,
.nwlocal__copy {
  margin: 0;
  color: var(--nwl-text);
  font-size: 17px;
  line-height: 1.72;
}

.nwlocal__copy {
  margin-top: 13px;
  color: var(--nwl-muted);
  font-size: 15px;
}

.nwlocal__benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.nwlocal__benefits > div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  padding: 15px;
  border: 1px solid #d8e4f2;
  border-radius: 14px;
  background: rgba(255, 255, 255, .78);
}

.nwlocal__benefit-icon,
.nwlocal__coverage-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #d7e5fa;
  border-radius: 12px;
  color: var(--nwl-blue);
  background: #eaf2ff;
}

.nwlocal__benefit-icon svg,
.nwlocal__coverage-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nwlocal__benefits strong,
.nwlocal__benefits small {
  display: block;
}

.nwlocal__benefits strong {
  margin-bottom: 3px;
  color: #263950;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.nwlocal__benefits small {
  color: var(--nwl-muted);
  font-size: 13px;
  line-height: 1.5;
}

.nwlocal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}

.nwlocal__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 55px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
}

.nwlocal__button svg {
  width: 19px;
  height: 19px;
  margin-left: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

.nwlocal__button:hover {
  transform: translateY(-2px);
}

.nwlocal__button--primary {
  color: #fff;
  background: var(--nwl-blue);
  box-shadow: 0 12px 26px rgba(37, 99, 235, .21);
}

.nwlocal__button--primary:hover {
  color: #fff;
  background: var(--nwl-blue-dark);
  box-shadow: 0 16px 34px rgba(37, 99, 235, .28);
}

.nwlocal__button--primary:hover svg {
  transform: translateX(4px);
}

.nwlocal__button--secondary {
  color: #294766;
  border-color: #b9cce4;
  background: #fff;
}

.nwlocal__button--secondary:hover {
  color: var(--nwl-blue-dark);
  border-color: #8fb2e3;
  background: #fff;
}

.nwlocal__button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .38);
  outline-offset: 4px;
}

.nwlocal__coverage {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 34px;
  margin-top: 28px;
  padding: 25px 28px;
  border: 1px solid var(--nwl-border);
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 17px 42px rgba(24, 57, 101, .08);
}

.nwlocal__coverage-heading {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
}

.nwlocal__coverage-heading strong,
.nwlocal__coverage-heading small {
  display: block;
}

.nwlocal__coverage-heading strong {
  margin-bottom: 3px;
  color: #22364f;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.nwlocal__coverage-heading small {
  color: var(--nwl-muted);
  font-size: 13px;
  line-height: 1.5;
}

.nwlocal__city-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.nwlocal__city-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #d3e0f0;
  border-radius: 999px;
  color: #314b69;
  background: #f5f9ff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.nwlocal__city-list span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--nwl-blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .08);
}

@keyframes nwlocal-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes nwlocal-radar {
  0% { opacity: .75; transform: translate(-50%, -50%) scale(.15); }
  85%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(1); }
}

@keyframes nwlocal-route {
  to { stroke-dashoffset: -140; }
}

@media (max-width: 1080px) {
  .nwlocal__stage {
    grid-template-columns: 1fr;
  }

  .nwlocal__world {
    min-height: 620px;
  }

  .nwlocal__content {
    padding: 56px;
  }
}

@media (max-width: 820px) {
  .nwlocal {
    padding: 74px 20px;
  }

  .nwlocal__header h2 {
    font-size: clamp(41px, 10vw, 54px);
  }

  .nwlocal__coverage {
    grid-template-columns: 1fr;
  }

  .nwlocal__city-list {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .nwlocal {
    padding: 64px 16px;
  }

  .nwlocal__header {
    text-align: left;
  }

  .nwlocal__header h2 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .nwlocal__header h2 span {
    display: inline;
  }

  .nwlocal__header > p:last-child {
    font-size: 17px;
  }

  .nwlocal__stage {
    border-radius: 20px;
  }

  .nwlocal__world {
    min-height: 540px;
    padding: 24px;
  }

  .nwlocal__globe {
    width: 115%;
    max-width: none;
  }

  .nwlocal__availability {
    top: 22px;
    right: 18px;
    min-width: 210px;
  }

  .nwlocal__marker {
    top: 41%;
    left: 35%;
  }

  .nwlocal__marker-label {
    min-width: 130px;
  }

  .nwlocal__world-caption {
    right: 22px;
    bottom: 24px;
    left: 22px;
  }

  .nwlocal__content {
    padding: 44px 23px;
  }

  .nwlocal__content h3 {
    font-size: 34px;
  }

  .nwlocal__benefits {
    grid-template-columns: 1fr;
  }

  .nwlocal__actions {
    display: grid;
  }

  .nwlocal__button {
    width: 100%;
    min-height: 58px;
  }

  .nwlocal__coverage {
    padding: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nwlocal *,
  .nwlocal *::before,
  .nwlocal *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}











/* ============================================================
   NEOTHEK · WEB HOSTING COMPARTIDO
   PREGUNTAS FRECUENTES · V2 REGIONAL
============================================================ */

.nhfaq,
.nhfaq * {
  box-sizing: border-box;
}

.nhfaq {
  --nhfaq-navy: #15233b;
  --nhfaq-navy-soft: #263b59;
  --nhfaq-blue: #2563eb;
  --nhfaq-blue-dark: #1d4ed8;
  --nhfaq-blue-pale: #edf4ff;
  --nhfaq-green: #119b61;
  --nhfaq-text: #465a76;
  --nhfaq-muted: #667994;
  --nhfaq-border: #cedcef;
  position: relative;
  padding: clamp(86px, 8vw, 126px) 24px;
  overflow: hidden;
  color: var(--nhfaq-navy);
  background:
    radial-gradient(circle at 12% 16%, rgba(37, 99, 235, .08), transparent 320px),
    linear-gradient(180deg, #f7faff 0%, #eef4fb 100%);
  font-family: "Open Sans", Arial, sans-serif;
}

.nhfaq::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background-image:
    linear-gradient(rgba(44, 91, 157, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 91, 157, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.nhfaq__container {
  position: relative;
  z-index: 1;
  width: min(100%, 1260px);
  margin-inline: auto;
}

/* Encabezado */
.nhfaq__header {
  max-width: 940px;
  margin: 0 auto 38px;
  text-align: center;
}

.nhfaq__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--nhfaq-blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .16em;
}

.nhfaq__eyebrow span {
  width: 9px;
  height: 9px;
  border: 2px solid #adcbff;
  border-radius: 50%;
  background: var(--nhfaq-blue);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, .08);
}

.nhfaq__header h2 {
  margin: 0 0 22px;
  color: var(--nhfaq-navy);
  font-family: "Open Sans Condensed", "Open Sans", Arial, sans-serif;
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.nhfaq__header h2 span {
  display: block;
  color: var(--nhfaq-blue);
}

.nhfaq__header > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: var(--nhfaq-text);
  font-size: 18px;
  line-height: 1.75;
}

/* Navegación interna */
.nhfaq__topics {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 36px;
}

.nhfaq__topics a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--nhfaq-border);
  border-radius: 14px;
  color: var(--nhfaq-navy-soft);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 8px 22px rgba(31, 60, 104, .055);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.nhfaq__topics a:hover {
  border-color: #9bbcf6;
  color: var(--nhfaq-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(31, 72, 137, .1);
}

.nhfaq__topics a:focus-visible,
.nhfaq__button:focus-visible,
.nhfaq__item summary:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .3);
  outline-offset: 3px;
}

.nhfaq__topics svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Grupos */
.nhfaq__group {
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid var(--nhfaq-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(29, 60, 105, .09);
}

.nhfaq__group-heading {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  min-height: 98px;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  border-bottom: 1px solid var(--nhfaq-border);
  background:
    linear-gradient(90deg, rgba(37, 99, 235, .09), transparent 44%),
    #f8fbff;
}

.nhfaq__group--commercial .nhfaq__group-heading {
  background:
    linear-gradient(90deg, rgba(17, 155, 97, .09), transparent 44%),
    #f8fbff;
}

.nhfaq__group-icon,
.nhfaq__footer-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #d4e4fc;
  border-radius: 14px;
  color: var(--nhfaq-blue);
  background: #e9f2ff;
}

.nhfaq__group-icon--green {
  border-color: #d5eee3;
  color: var(--nhfaq-green);
  background: #eaf8f1;
}

.nhfaq__group-icon svg,
.nhfaq__footer-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nhfaq__group-heading > span:nth-child(2) {
  min-width: 0;
}

.nhfaq__group-heading small,
.nhfaq__group-heading strong {
  display: block;
}

.nhfaq__group-heading small {
  margin-bottom: 4px;
  color: var(--nhfaq-blue);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .14em;
}

.nhfaq__group--commercial .nhfaq__group-heading small {
  color: var(--nhfaq-green);
}

.nhfaq__group-heading strong {
  color: var(--nhfaq-navy);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.nhfaq__count {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid #d5e3f8;
  border-radius: 999px;
  color: #46617f;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

/* Acordeón nativo */
.nhfaq__list {
  padding: 0 26px;
}

.nhfaq__item {
  border-bottom: 1px solid #dde6f1;
}

.nhfaq__item:last-child {
  border-bottom: 0;
}

.nhfaq__item summary {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  min-height: 82px;
  align-items: center;
  gap: 16px;
  padding: 16px 4px;
  color: var(--nhfaq-navy);
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
  transition: color .22s ease, padding-left .22s ease;
}

.nhfaq__item summary::-webkit-details-marker {
  display: none;
}

.nhfaq__item summary:hover {
  padding-left: 6px;
  color: var(--nhfaq-blue-dark);
}

.nhfaq__number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: var(--nhfaq-blue);
  background: var(--nhfaq-blue-pale);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
}

.nhfaq__toggle {
  position: relative;
  width: 38px;
  height: 38px;
  justify-self: end;
  border: 1px solid #d8e3f0;
  border-radius: 50%;
  background: #f2f6fb;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.nhfaq__toggle::before,
.nhfaq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: #3b5b82;
  transform: translate(-50%, -50%);
  transition: transform .25s ease, background .25s ease;
}

.nhfaq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.nhfaq__item[open] > summary {
  color: var(--nhfaq-blue-dark);
}

.nhfaq__item[open] .nhfaq__number {
  color: #fff;
  background: var(--nhfaq-blue);
}

.nhfaq__item[open] .nhfaq__toggle {
  border-color: var(--nhfaq-blue);
  background: var(--nhfaq-blue);
  transform: rotate(180deg);
}

.nhfaq__item[open] .nhfaq__toggle::before,
.nhfaq__item[open] .nhfaq__toggle::after {
  background: #fff;
}

.nhfaq__item[open] .nhfaq__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.nhfaq__answer {
  padding: 0 62px 26px;
  animation: nhfaq-answer-in .28s ease both;
}

.nhfaq__answer > div {
  padding: 22px 24px;
  border: 1px solid #dce7f4;
  border-left: 4px solid var(--nhfaq-blue);
  border-radius: 4px 16px 16px 4px;
  background: #f7faff;
}

.nhfaq__group--commercial .nhfaq__answer > div {
  border-left-color: var(--nhfaq-green);
}

.nhfaq__answer p,
.nhfaq__answer li {
  color: var(--nhfaq-text);
  font-size: 16px;
  line-height: 1.75;
}

.nhfaq__answer p {
  margin: 0;
}

.nhfaq__answer p + p,
.nhfaq__answer p + ul,
.nhfaq__answer ul + p {
  margin-top: 14px;
}

.nhfaq__answer strong {
  color: #243b5b;
  font-weight: 700;
}

.nhfaq__answer a {
  color: var(--nhfaq-blue-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #9dbaf0;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.nhfaq__answer a:hover {
  color: #143ca5;
  text-decoration-color: currentColor;
}

.nhfaq__specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.nhfaq__specs li {
  min-height: 86px;
  padding: 16px;
  border: 1px solid #d7e4f3;
  border-radius: 13px;
  background: #fff;
}

.nhfaq__specs strong {
  display: block;
  margin-bottom: 3px;
  color: var(--nhfaq-blue-dark);
}


/* Grupo regional dinámico */
.nhfaq__group--regional .nhfaq__group-heading {
  background:
    linear-gradient(90deg, rgba(109, 94, 231, .11), transparent 48%),
    #f8fbff;
}

.nhfaq__group-icon--regional {
  border-color: #ddd8fb;
  color: #6554d9;
  background: #f0edff;
}

.nhfaq__group--regional .nhfaq__group-heading small {
  color: #6554d9;
}

.nhfaq__group--regional .nhfaq__answer > div {
  border-left-color: #6d5ee7;
}

.nhfaq__regional-intro {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 14px;
  padding: 14px 30px;
  border-bottom: 1px solid #dde6f1;
  background: linear-gradient(90deg, #f5f3ff, #fbfcff 58%);
}

.nhfaq__regional-intro p {
  margin: 0;
  color: var(--nhfaq-text);
  font-size: 15px;
  line-height: 1.65;
}

.nhfaq__regional-flag {
  display: grid;
  width: 46px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #d8d2fa;
  border-radius: 10px;
  color: #5947cc;
  background: #fff;
  box-shadow: 0 6px 16px rgba(86, 69, 184, .1);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nhfaq__cities {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid #dce6f2;
}

.nhfaq__cities-label {
  margin-right: 2px;
  color: #344d6c;
  font-size: 14px;
  font-weight: 700;
}

.nhfaq__city {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid #d7d1fa;
  border-radius: 999px;
  color: #4e438e;
  background: #f4f2ff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.nhfaq .nhfaq__cities .nhfaq__cities-more {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 5px;
  color: #536781;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}

.nhfaq__trust-note {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #27684d !important;
  font-weight: 700;
}

.nhfaq__trust-note span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #08794a;
  background: #dcf5e8;
  font-size: 14px;
  font-weight: 800;
}

/* CTA de cierre */
.nhfaq__footer {
  display: flex;
  min-height: 124px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 30px;
  padding: 28px 30px;
  border: 1px solid #bfd3f0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(31, 62, 106, .08);
}

.nhfaq__footer > div:first-child {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nhfaq__footer strong,
.nhfaq__footer small {
  display: block;
}

.nhfaq__footer strong {
  margin-bottom: 4px;
  color: var(--nhfaq-navy);
  font-size: 18px;
  line-height: 1.4;
}

.nhfaq__footer small {
  color: var(--nhfaq-muted);
  font-size: 14px;
  line-height: 1.5;
}

.nhfaq__footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nhfaq__button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.nhfaq__button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nhfaq__button--primary {
  color: #fff;
  background: var(--nhfaq-blue);
  box-shadow: 0 12px 24px rgba(37, 99, 235, .21);
}

.nhfaq__button--primary:hover {
  color: #fff;
  background: var(--nhfaq-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(37, 99, 235, .28);
}

.nhfaq__button--secondary {
  border-color: #b9cce7;
  color: #29425f;
  background: #fff;
}

.nhfaq__button--secondary:hover {
  border-color: #82a9e7;
  color: var(--nhfaq-blue-dark);
  background: #f6f9ff;
  transform: translateY(-2px);
}

@keyframes nhfaq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 900px) {
  .nhfaq__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nhfaq__footer-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Móvil */
@media (max-width: 680px) {
  .nhfaq {
    padding: 76px 16px;
  }

  .nhfaq__header h2 {
    font-size: clamp(40px, 12vw, 50px);
  }

  .nhfaq__header > p:last-child {
    font-size: 17px;
  }

  .nhfaq__topics {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nhfaq__topics a {
    justify-content: center;
  }

  .nhfaq__group-heading {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 19px;
  }

  .nhfaq__count {
    display: none;
  }

  .nhfaq__list {
    padding: 0 18px;
  }

  .nhfaq__regional-intro {
    align-items: flex-start;
    padding: 17px 19px;
  }

  .nhfaq__cities {
    align-items: flex-start;
  }

  .nhfaq__cities-label {
    width: 100%;
  }

  .nhfaq__item summary {
    grid-template-columns: 38px minmax(0, 1fr) 36px;
    min-height: 88px;
    gap: 11px;
    font-size: 16px;
  }

  .nhfaq__number {
    width: 38px;
    height: 38px;
  }

  .nhfaq__toggle {
    width: 34px;
    height: 34px;
  }

  .nhfaq__answer {
    padding: 0 0 22px;
  }

  .nhfaq__answer > div {
    padding: 19px;
  }

  .nhfaq__answer p,
  .nhfaq__answer li {
    font-size: 16px;
    line-height: 1.7;
  }

  .nhfaq__specs {
    grid-template-columns: 1fr;
  }

  .nhfaq__specs li {
    min-height: 0;
  }

  .nhfaq__footer {
    padding: 24px 20px;
  }

  .nhfaq__footer-actions {
    display: grid;
  }

  .nhfaq__button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nhfaq *,
  .nhfaq *::before,
  .nhfaq *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}









/* ============================================================
   NEOTHEK · WEB HOSTING
   CTA FINAL REGIONAL · V1
============================================================ */

.nhfinal,
.nhfinal * {
  box-sizing: border-box;
}

.nhfinal {
  --nhf-white: #ffffff;
  --nhf-navy: #071a36;
  --nhf-navy-light: #0e2c58;
  --nhf-blue: #3478f6;
  --nhf-blue-light: #83afff;
  --nhf-green: #38d58a;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(88px, 8vw, 128px) 24px;
  color: var(--nhf-white);
  background:
    radial-gradient(circle at 88% 18%, rgba(52, 120, 246, .28), transparent 370px),
    radial-gradient(circle at 10% 90%, rgba(42, 104, 200, .19), transparent 390px),
    linear-gradient(135deg, #06162f 0%, #09244a 54%, #0a2b58 100%);
  font-family: "Open Sans", Arial, sans-serif;
}

.nhfinal__grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .55;
  background-image:
    linear-gradient(rgba(124, 173, 245, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 173, 245, .07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 15%, transparent 94%);
}

.nhfinal__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.nhfinal__glow--one {
  top: -220px;
  right: -120px;
  width: 580px;
  height: 580px;
  background: rgba(42, 109, 232, .13);
}

.nhfinal__glow--two {
  bottom: -280px;
  left: 7%;
  width: 560px;
  height: 560px;
  background: rgba(46, 111, 218, .09);
}

.nhfinal__world {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -85px;
  width: min(47vw, 620px);
  opacity: .18;
  fill: none;
  stroke: #8ab7ff;
  stroke-width: 1;
  transform: translateY(-50%);
  pointer-events: none;
}

.nhfinal__route {
  stroke: #68e4b2;
  stroke-width: 2;
  stroke-dasharray: 8 12;
  animation: nhfinal-route 18s linear infinite;
}

.nhfinal__container {
  width: min(100%, 1260px);
  margin-inline: auto;
}

.nhfinal__card {
  overflow: hidden;
  border: 1px solid rgba(151, 190, 247, .24);
  border-radius: 30px;
  background: rgba(8, 31, 64, .76);
  box-shadow: 0 38px 90px rgba(0, 10, 31, .38);
  backdrop-filter: blur(12px);
}

.nhfinal__main {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  gap: clamp(44px, 6vw, 78px);
  align-items: center;
  padding: clamp(48px, 6vw, 76px);
}

.nhfinal__content {
  min-width: 0;
}

.nhfinal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #a9c8ff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .16em;
}

.nhfinal__eyebrow span {
  width: 9px;
  height: 9px;
  border: 2px solid rgba(165, 201, 255, .62);
  border-radius: 50%;
  background: #5d98ff;
  box-shadow: 0 0 0 6px rgba(67, 132, 245, .11);
}

.nhfinal__content h2 {
  max-width: 750px;
  margin: 0 0 24px;
  color: #fff;
  font-family: "Open Sans Condensed", "Open Sans", Arial, sans-serif;
  font-size: clamp(48px, 5.2vw, 66px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.026em;
  text-wrap: balance;
}

.nhfinal__content h2 span {
  display: block;
  color: var(--nhf-blue-light);
}

.nhfinal__lead {
  max-width: 760px;
  margin: 0;
  color: #c7d7ec;
  font-size: 18px;
  line-height: 1.75;
}

.nhfinal__lead strong {
  color: #fff;
  font-weight: 700;
}

.nhfinal__regional {
  display: inline-flex;
  min-height: 68px;
  align-items: center;
  gap: 13px;
  margin-top: 28px;
  padding: 11px 16px 11px 12px;
  border: 1px solid rgba(128, 176, 246, .24);
  border-radius: 15px;
  background: rgba(43, 103, 198, .12);
}

.nhfinal__regional-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: #9fc5ff;
  background: rgba(75, 137, 239, .18);
}

.nhfinal__regional-icon svg,
.nhfinal__fiscal-check svg,
.nhfinal__action-icon svg,
.nhfinal__trust-icon svg,
.nhfinal__assistance svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nhfinal__regional-icon svg {
  width: 23px;
  height: 23px;
}

.nhfinal__regional small,
.nhfinal__regional strong {
  display: block;
}

.nhfinal__regional small {
  margin-bottom: 2px;
  color: #94b5e4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
}

.nhfinal__regional strong {
  color: #e8f1ff;
  font-size: 15px;
  line-height: 1.4;
}

.nhfinal__regional i {
  margin-left: 5px;
  color: #80aeff;
  font-style: normal;
}

.nhfinal__fiscal {
  display: flex;
  max-width: 560px;
  align-items: center;
  gap: 11px;
  margin-top: 14px;
  padding: 13px 15px;
  border: 1px solid rgba(65, 212, 144, .23);
  border-radius: 14px;
  background: rgba(18, 146, 90, .1);
}

.nhfinal__fiscal-check {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  color: #64e5a7;
  background: rgba(51, 207, 134, .13);
}

.nhfinal__fiscal-check svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.nhfinal__fiscal strong,
.nhfinal__fiscal small {
  display: block;
}

.nhfinal__fiscal strong {
  margin-bottom: 2px;
  color: #d8f8e9;
  font-size: 15px;
  line-height: 1.4;
}

.nhfinal__fiscal small {
  color: #9ccab6;
  font-size: 13px;
  line-height: 1.45;
}

/* Panel de conversión */
.nhfinal__action-panel {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(151, 193, 252, .26);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(32, 77, 143, .45), rgba(10, 37, 76, .76));
  box-shadow: 0 24px 55px rgba(0, 11, 34, .28);
}

.nhfinal__action-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 14px;
  color: #b8d1ff;
  background: linear-gradient(145deg, #2767db, #3a83fa);
  box-shadow: 0 12px 24px rgba(30, 96, 213, .3);
}

.nhfinal__action-icon svg {
  width: 25px;
  height: 25px;
}

.nhfinal__action-label {
  margin: 0 0 8px;
  color: #8db8fa;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .12em;
}

.nhfinal__action-panel h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.015em;
}

.nhfinal__action-panel > p:not(.nhfinal__action-label):not(.nhfinal__assistance) {
  margin: 0;
  color: #b7c9e2;
  font-size: 16px;
  line-height: 1.65;
}

.nhfinal__actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.nhfinal__button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.nhfinal__button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nhfinal__button--primary {
  color: #fff;
  background: #2f72ee;
  box-shadow: 0 13px 27px rgba(36, 102, 224, .29);
}

.nhfinal__button--primary:hover {
  color: #fff;
  background: #4283f5;
  transform: translateY(-2px);
  box-shadow: 0 17px 33px rgba(36, 102, 224, .38);
}

.nhfinal__button--secondary {
  border-color: rgba(171, 201, 243, .32);
  color: #e1ecfb;
  background: rgba(255, 255, 255, .045);
}

.nhfinal__button--secondary:hover {
  border-color: rgba(182, 213, 255, .58);
  color: #fff;
  background: rgba(255, 255, 255, .09);
  transform: translateY(-2px);
}

.nhfinal__button:focus-visible {
  outline: 3px solid rgba(133, 181, 255, .54);
  outline-offset: 3px;
}

.nhfinal__assistance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 0 !important;
  color: #9eb8da !important;
  font-size: 13px !important;
  font-weight: 600;
  line-height: 1.4 !important;
}

.nhfinal__assistance svg {
  width: 18px;
  height: 18px;
  color: #71a7fb;
}

/* Barra final de confianza */
.nhfinal__trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(145, 185, 241, .2);
  background: rgba(3, 18, 42, .38);
}

.nhfinal__trust-item {
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 13px;
  padding: 22px 24px;
  border-right: 1px solid rgba(145, 185, 241, .17);
}

.nhfinal__trust-item:last-child {
  border-right: 0;
}

.nhfinal__trust-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: #82aff8;
  background: rgba(57, 119, 218, .14);
}

.nhfinal__trust-icon--green {
  color: #58d99d;
  background: rgba(36, 175, 111, .12);
}

.nhfinal__trust-icon svg {
  width: 23px;
  height: 23px;
}

.nhfinal__trust-item strong,
.nhfinal__trust-item small {
  display: block;
}

.nhfinal__trust-item strong {
  margin-bottom: 3px;
  color: #e8f0fb;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.nhfinal__trust-item small {
  color: #8fa6c4;
  font-size: 13px;
  line-height: 1.45;
}

@keyframes nhfinal-route {
  to { stroke-dashoffset: -240; }
}

@media (max-width: 1040px) {
  .nhfinal__main {
    grid-template-columns: 1fr;
  }

  .nhfinal__action-panel {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 18px;
  }

  .nhfinal__action-icon {
    grid-row: 1 / span 3;
  }

  .nhfinal__actions,
  .nhfinal__assistance {
    grid-column: 1 / -1;
  }

  .nhfinal__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nhfinal__trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nhfinal__trust-item:nth-child(2) {
    border-right: 0;
  }

  .nhfinal__trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(145, 185, 241, .17);
  }
}

@media (max-width: 680px) {
  .nhfinal {
    padding: 76px 16px;
  }

  .nhfinal__card {
    border-radius: 24px;
  }

  .nhfinal__main {
    padding: 36px 22px;
  }

  .nhfinal__content h2 {
    font-size: clamp(41px, 12vw, 50px);
  }

  .nhfinal__lead {
    font-size: 17px;
  }

  .nhfinal__regional,
  .nhfinal__fiscal {
    width: 100%;
  }

  .nhfinal__action-panel {
    display: block;
    padding: 24px 20px;
  }

  .nhfinal__actions {
    grid-template-columns: 1fr;
  }

  .nhfinal__trust {
    grid-template-columns: 1fr;
  }

  .nhfinal__trust-item,
  .nhfinal__trust-item:nth-child(2) {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid rgba(145, 185, 241, .17);
  }

  .nhfinal__trust-item:last-child {
    border-bottom: 0;
  }

  .nhfinal__world {
    width: 590px;
    right: -330px;
    opacity: .11;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nhfinal *,
  .nhfinal *::before,
  .nhfinal *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
