/* Nodo Informático — estilo corporativo IT (referencia: Northware, MTnet, Keptos, Tecnología IP) */

:root {
  --blue: #0066cc;
  --blue-dark: #004d99;
  --blue-light: #e8f2fc;
  --teal: #0d9488;
  --navy: #1e3a5f;
  --forest-dark: #1a3d32;
  --forest: #2f5d4a;
  --forest-mid: #3d6b58;
  --olive: #5c6b52;
  --olive-soft: #8fa38a;
  --orange: #ea580c;
  --orange-light: #fff7ed;
  --green-wa: #25d366;
  --white: #ffffff;
  --gray-50: #f6f8f5;
  --gray-100: #eef2eb;
  --gray-200: #dde5d8;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --text: #152a22;
  --text-secondary: #1e293b;
  --text-muted: #1e293b;
  --text-on-light: #152a22;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --shadow: 0 4px 24px rgba(26, 61, 50, 0.1);
  --shadow-lg: 0 18px 48px rgba(26, 61, 50, 0.14);
  --transition: all 0.3s ease;
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --max: 1140px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

img, video, svg {
  max-width: 100%;
  height: auto;
}

#precios,
#micrositio-express,
#soluciones,
#soporte-mensual,
#servicios,
#contacto {
  scroll-margin-top: calc(var(--header-h) + 1.25rem);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--gray-50);
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
  overflow-x: clip;
}

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Color de títulos solo en fondos claros (evitar h3 oscuro sobre cabecera azul/verde) */
.section-scene h2,
.section-head h2,
.contact-info h2,
.impact-block h2,
.pkg-category h3,
.pkg-body h3,
.service-card h3,
.support-box-text h3,
.step h3 {
  color: var(--gray-900);
}

.pkg-header,
.pkg-header h3,
.pkg-header .pkg-tier {
  color: #fff;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  padding: 0.75rem 1rem; background: var(--blue); color: #fff; border-radius: var(--radius);
}
.skip-link:focus { left: 1rem; top: 1rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

@media (max-width: 900px) {
  .site-header { position: sticky; }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 0.75rem;
  min-width: 0;
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-800);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.nav-toggle:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.brand {
  display: flex;
  align-items: center;
  color: var(--gray-900);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(268px, 58vw);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  min-width: 0;
}

.site-nav a:not(.btn) {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}

.site-nav a:not(.btn):hover { color: var(--blue); }

.site-nav-pricing {
  font-weight: 700;
  color: var(--gray-900);
}

.site-nav-pricing:hover {
  color: var(--blue-dark);
}

.btn-nav {
  padding: 0.55rem 1.25rem !important;
  font-size: 0.9rem !important;
  color: #fff !important;
  background: var(--blue) !important;
  border-radius: var(--radius);
}

.btn-nav:hover {
  background: var(--blue-dark) !important;
  color: #fff !important;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-4px);
}

.btn:active {
  transform: translateY(-1px);
}

.btn-lg {
  padding: 0.95rem 1.75rem;
  font-size: 1.0625rem;
  min-height: 3.25rem;
  border-radius: var(--radius-xl);
}

.btn-block { width: 100%; }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 102, 204, 0.35);
}

.btn-primary:hover {
  background: var(--blue-dark);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.btn-accent {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
}

.btn-accent:hover {
  background: #c2410c;
  color: #fff;
}

.btn-outline {
  background: var(--white);
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue-light);
  color: var(--blue-dark);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

/* ── Hero (Keptos / Northware style) ── */

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.65) 55%, rgba(0, 102, 204, 0.35) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  color: #fff;
}

.hero-kicker {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-lead {
  margin: 0 0 2rem;
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Banner cuestionario soporte técnico ── */

.dx-promo {
  padding: 0 0 0.5rem;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.dx-promo-wrap {
  padding: clamp(1.25rem, 3vw, 2rem) 0 clamp(1.75rem, 4vw, 2.75rem);
}

.dx-promo-card {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 4px);
  background: linear-gradient(125deg, #0c2340 0%, var(--navy) 38%, #004d99 100%);
  color: #fff;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.08),
    0 20px 40px rgba(0, 77, 153, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.dx-promo-glow {
  position: absolute;
  top: -35%;
  right: -10%;
  width: min(50vw, 400px);
  height: min(50vw, 400px);
  background: radial-gradient(circle, rgba(13, 148, 136, 0.28) 0%, transparent 70%);
  pointer-events: none;
}

.dx-promo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

@media (min-width: 768px) {
  .dx-promo-grid {
    grid-template-columns: 1.12fr 0.88fr;
    align-items: center;
    gap: 2rem;
    padding: clamp(2rem, 4vw, 2.75rem) clamp(2rem, 4vw, 3rem);
  }
}

.dx-promo-badge {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e0f2fe;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.dx-promo-main h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}

.dx-promo-lead {
  margin: 0 0 1.35rem;
  max-width: 46ch;
  font-size: clamp(1rem, 1.8vw, 1.08rem);
  line-height: 1.65;
  color: #f1f5f9;
}

.dx-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.btn-dx-primary {
  background: #fff;
  color: var(--navy);
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-dx-primary:hover {
  background: var(--blue-light);
  color: var(--blue-dark);
  transform: translateY(-1px);
}

.btn-dx-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.btn-dx-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.dx-promo-note {
  margin: 0;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.dx-promo-steps {
  padding: 1.25rem 1.35rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(6px);
}

.dx-promo-steps-title {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7dd3fc;
}

.dx-promo-step-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.dx-promo-step-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #f8fafc;
}

.dx-step-num {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--navy);
  background: #fff;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .dx-promo-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Banner «Crea una página web» ── */

.web-promo {
  padding: 0 0 clamp(2rem, 5vw, 3rem);
  background: var(--white);
}

.web-promo-wrap {
  padding-top: 0.25rem;
}

.web-promo-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 4px);
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 900px) {
  .web-promo-card {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 320px;
  }
}

.web-promo-copy {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-left: 5px solid var(--blue);
}

@media (min-width: 900px) {
  .web-promo-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.web-promo-badge {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.3rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: var(--blue-light);
  border-radius: 999px;
}

.web-promo-copy h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--gray-900);
}

.web-promo-lead {
  margin: 0 0 1.15rem;
  max-width: 48ch;
  font-size: clamp(1rem, 1.8vw, 1.08rem);
  line-height: 1.65;
  color: var(--text);
}

.web-promo-points {
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.web-promo-points li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.web-promo-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--teal);
}

.web-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 599px) {
  .web-promo-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.web-promo-media {
  position: relative;
  min-height: 220px;
  background: var(--gray-100);
}

.web-promo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 900px) {
  .web-promo-media {
    min-height: 100%;
  }
}

.web-promo-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, transparent 35%);
  pointer-events: none;
}

/* ── Impact hero (banner editorial de alto impacto) ── */

.impact-hero {
  padding: 2.5rem 0 4.5rem;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--gray-200);
}

.impact-hero-inner {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .impact-hero-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .impact-block-featured,
  .impact-block-cta {
    grid-column: 1 / -1;
  }
}

.impact-block {
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.impact-block h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.impact-block h2::before {
  content: "";
  display: block;
  width: 2.75rem;
  height: 4px;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.impact-block p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
}

.impact-block p:last-of-type {
  margin-bottom: 0;
}

.impact-block-featured {
  padding: 2.25rem 2rem;
  background: linear-gradient(135deg, var(--navy) 0%, #0f2744 100%);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.impact-block-featured h2 {
  color: #fff;
}

.impact-block-featured h2::before {
  background: linear-gradient(90deg, var(--orange), #fbbf24);
}

.impact-block-featured p {
  color: rgba(255, 255, 255, 0.92);
}

.impact-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .impact-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.impact-list li {
  padding: 1.15rem 1.1rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.impact-list li strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: clamp(0.92rem, 1.5vw, 0.98rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.impact-block-cta {
  padding: 2.25rem 2rem;
  background: var(--blue-light);
  border-color: rgba(0, 102, 204, 0.2);
}

.impact-block-cta h2::before {
  background: var(--blue);
}

.impact-block-cta p {
  max-width: 72ch;
}

.impact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

@media (max-width: 640px) {
  .impact-hero {
    padding: 3rem 0;
  }

  .impact-block {
    padding: 1.5rem 1.25rem;
  }

  .impact-block-featured,
  .impact-block-cta {
    padding: 1.75rem 1.35rem;
  }

  .impact-block p {
    font-size: 1rem;
  }

  .impact-hero-actions {
    flex-direction: column;
  }

  .impact-hero-actions .btn {
    width: 100%;
  }
}

/* ── Intro strip (Northware orange highlights) ── */

.intro-strip {
  padding: 2.25rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.intro-strip-inner p {
  margin: 0;
  font-size: clamp(1.05rem, 1.9vw, 1.15rem);
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
  font-weight: 500;
}

.intro-strip strong {
  color: var(--orange);
  font-weight: 700;
}

/* ── Sections ── */

.section { padding: 5rem 0; }
.section-light { background: var(--white); }
.section-gray { background: var(--gray-50); }

.section-head {
  margin-bottom: 3rem;
}

.section-head-center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.section-label {
  display: block;
  margin-bottom: 0.65rem;
  font-size: clamp(0.92rem, 1.8vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.section-head h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 3.6vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.section-intro {
  margin: 0;
  font-size: clamp(1.125rem, 1.8vw, 1.2rem);
  color: var(--text-on-light);
  line-height: 1.75;
  font-weight: 500;
}

/* ── Section scenes (paquetes, servicios, soporte) ── */

.section-scene {
  position: relative;
  overflow: hidden;
}

.section-scene-inner {
  position: relative;
  z-index: 1;
}

.section-scene-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.scene-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: micrositio-blob-float 22s ease-in-out infinite alternate;
}

.scene-blob--sky {
  width: min(380px, 50vw);
  height: min(380px, 50vw);
  background: #7dd3fc;
  top: -5%;
  right: 5%;
}

.scene-blob--mint {
  width: min(320px, 45vw);
  height: min(320px, 45vw);
  background: #5eead4;
  bottom: 0;
  left: -5%;
  animation-delay: -8s;
}

.scene-blob--navy {
  width: min(440px, 55vw);
  height: min(440px, 55vw);
  background: #93c5fd;
  top: -10%;
  left: -8%;
}

.scene-blob--forest {
  width: min(400px, 52vw);
  height: min(400px, 52vw);
  background: #93c5fd;
  top: 30%;
  right: -12%;
  animation-delay: -7s;
}

.scene-blob--sand {
  width: min(300px, 42vw);
  height: min(300px, 42vw);
  background: #fde68a;
  bottom: -8%;
  left: 35%;
  animation-delay: -14s;
  opacity: 0.35;
}

.scene-blob--blue {
  width: min(360px, 48vw);
  height: min(360px, 48vw);
  background: #60a5fa;
  top: 10%;
  left: -6%;
}

.scene-blob--teal {
  width: min(340px, 46vw);
  height: min(340px, 46vw);
  background: #2dd4bf;
  bottom: -5%;
  right: -4%;
  animation-delay: -11s;
}

.services-scene {
  background: linear-gradient(165deg, #f8fafc 0%, #eff6ff 45%, #f0fdfa 100%);
  padding-top: clamp(4rem, 8vw, 5.5rem);
  padding-bottom: clamp(4rem, 8vw, 5.5rem);
  box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.05);
}

.packages-scene {
  background: linear-gradient(168deg, #f0f4f8 0%, #fff 45%, #f8fafc 100%);
  padding-top: clamp(4rem, 8vw, 5.5rem);
  padding-bottom: clamp(4rem, 8vw, 5.5rem);
  box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.06);
}

.support-scene {
  background: linear-gradient(165deg, #f0f9ff 0%, #fff 50%, #f8fafc 100%);
  padding-top: clamp(4rem, 8vw, 5rem);
  padding-bottom: clamp(4rem, 8vw, 5rem);
}

.packages-scene-head {
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-label-pill {
  display: inline-block;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), #0891b2);
  color: #fff;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  box-shadow: 0 4px 14px rgba(0, 102, 204, 0.28);
}

.section-title-gradient {
  font-size: clamp(1.9rem, 3.8vw, 2.55rem);
  background: linear-gradient(120deg, #0f2744 0%, var(--blue) 50%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Package cards ── */

.packages {
  display: grid;
  gap: clamp(2rem, 4vw, 2.75rem);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .packages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(1.75rem, 3.5vw, 2.75rem);
    row-gap: clamp(2.25rem, 4vw, 3rem);
  }
}

/* Tarjetas pares: planas; impares y destacadas con relieve */
#paquete-2.pkg-card,
#paquete-6.pkg-card,
#paquete-8.pkg-card {
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(30, 58, 95, 0.12);
}

#paquete-2.pkg-card:hover,
#paquete-6.pkg-card:hover,
#paquete-8.pkg-card:hover {
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(30, 58, 95, 0.18);
}

.pkg-category {
  grid-column: 1 / -1;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0 0.5rem;
  padding: 1.1rem 1.35rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(30, 58, 95, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(6px);
}

.pkg-category:first-child {
  margin-top: 0;
}

.pkg-category h3 {
  margin: 0;
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  font-weight: 800;
  line-height: 1.4;
  color: var(--navy);
}

.pkg-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1px solid rgba(30, 58, 95, 0.12);
  border-radius: var(--radius-xl);
  box-shadow:
    0 4px 0 rgba(15, 23, 42, 0.07),
    0 18px 40px rgba(15, 23, 42, 0.1);
  overflow: hidden;
  transition: var(--transition);
}

.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 6px 0 rgba(15, 23, 42, 0.09),
    0 24px 48px rgba(15, 23, 42, 0.14);
  z-index: 2;
}

#paquete-1.pkg-card { box-shadow: 0 4px 0 #004d99, 0 20px 40px rgba(0, 102, 204, 0.12); }
#paquete-2.pkg-card { box-shadow: 0 4px 0 #0f766e, 0 20px 40px rgba(13, 148, 136, 0.12); }
#paquete-3.pkg-card { box-shadow: 0 4px 0 #0f2744, 0 20px 40px rgba(30, 58, 95, 0.12); }
#paquete-4.pkg-card { box-shadow: 0 4px 0 #3730a3, 0 24px 48px rgba(67, 56, 202, 0.16); }
#paquete-5.pkg-card { box-shadow: 0 4px 0 #5b21b6, 0 20px 40px rgba(124, 58, 237, 0.12); }
#paquete-6.pkg-card { box-shadow: 0 4px 0 #be123c, 0 20px 40px rgba(225, 29, 72, 0.12); }
#paquete-7.pkg-card { box-shadow: 0 4px 0 #b45309, 0 20px 40px rgba(217, 119, 6, 0.12); }
#paquete-8.pkg-card { box-shadow: 0 4px 0 #1e293b, 0 20px 40px rgba(71, 85, 105, 0.12); }

.pkg-card-featured {
  border-color: rgba(67, 56, 202, 0.28);
}

.pkg-popular {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 0.35rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(135deg, #ea580c, #f97316);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.35);
}

.pkg-card-featured { position: relative; }

.pkg-header {
  padding: 1.5rem 1.5rem 1.25rem;
  color: #fff;
}

.pkg-header-blue   { background: linear-gradient(135deg, #0066cc, #004d99); }
.pkg-header-teal   { background: linear-gradient(135deg, #0d9488, #0f766e); }
.pkg-header-navy   { background: linear-gradient(135deg, #1e3a5f, #0f2744); }
.pkg-header-indigo { background: linear-gradient(135deg, #4338ca, #3730a3); }
.pkg-header-purple { background: linear-gradient(135deg, #6d28d9, #5b21b6); }
.pkg-header-rose   { background: linear-gradient(135deg, #e11d48, #be123c); }
.pkg-header-amber  { background: linear-gradient(135deg, #d97706, #b45309); }
.pkg-header-slate  { background: linear-gradient(135deg, #475569, #1e293b); }

.pkg-tier {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}

.pkg-header h3 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.25rem, 2.4vw, 1.45rem);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.pkg-sub {
  margin: 0;
  font-size: clamp(1rem, 1.7vw, 1.0625rem);
  opacity: 0.96;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
}

.pkg-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.45rem 1.75rem;
  gap: 0.85rem;
  background: #fff;
}

.pkg-audience {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  color: var(--text-on-light);
  line-height: 1.75;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
  font-weight: 500;
}

.pkg-audience strong {
  color: var(--gray-900);
  font-weight: 800;
}

.pkg-audience em {
  font-style: normal;
  font-weight: 800;
  color: var(--gray-900);
}

.pkg-list {
  margin: 0 0 0.75rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.pkg-list li {
  padding: 0.75rem 0 0.75rem 1.6rem;
  font-size: 1.0625rem;
  color: var(--text-on-light);
  border-bottom: 1px solid var(--gray-100);
  position: relative;
  line-height: 1.7;
  font-weight: 500;
}

.pkg-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* Precios públicos ocultos mientras el diagnóstico web es la vía principal */
.prices-withheld .pkg-price,
.prices-withheld .support-plan-price,
.prices-withheld .btn-pay-online,
.prices-withheld .contact-pay-banner {
  display: none !important;
}

.prices-withheld .micrositio-price-visible,
.prices-withheld .express-btn {
  display: block !important;
}

.prices-withheld .micrositio-price-visible.pkg-price {
  display: block !important;
}

/* ── Pricing hub (menú Precios) ── */

.pricing-hub {
  padding: clamp(2.5rem, 5vw, 3.25rem) 0;
  background: linear-gradient(180deg, #fff 0%, #f0f4f8 100%);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

.pricing-hub-inner {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.pricing-hub-head {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.pricing-hub-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-900);
}

.pricing-hub-lead {
  margin: 0 auto;
  max-width: 40rem;
  font-size: clamp(1.0625rem, 1.8vw, 1.125rem);
  line-height: 1.75;
  color: var(--text-on-light);
  font-weight: 500;
}

.pricing-hub-lead strong {
  color: var(--gray-900);
  font-weight: 800;
}

.pricing-hub-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.pricing-hub-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  min-width: min(100%, 11.5rem);
  flex: 1 1 10rem;
  max-width: 16rem;
  padding: 1rem 1.15rem;
  text-decoration: none;
  background: #fff;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  box-shadow: 0 2px 0 rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: var(--transition);
}

.pricing-hub-tab:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 4px 0 var(--blue), 0 16px 36px rgba(0, 102, 204, 0.14);
}

.pricing-hub-tab-label {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.01em;
}

.pricing-hub-tab-price {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--blue-dark);
}

@media (max-width: 640px) {
  .pricing-hub-tab {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ── Micrositio Express (HTML vivo, sin imágenes de texto) ── */

.express-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: linear-gradient(165deg, #e8f4ef 0%, #f6f8f4 40%, #eef3ea 75%, #e0ede4 100%);
  border-block: 1px solid rgba(47, 93, 74, 0.1);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.6);
}

.express-section-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.express-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: express-blob-float 20s ease-in-out infinite alternate;
}

.express-blob--teal {
  width: min(400px, 52vw);
  height: min(400px, 52vw);
  background: #2dd4bf;
  top: -6%;
  left: -5%;
}

.express-blob--forest {
  width: min(460px, 58vw);
  height: min(460px, 58vw);
  background: #8fa38a;
  top: 25%;
  right: -8%;
  animation-delay: -7s;
}

.express-blob--blue {
  width: min(340px, 48vw);
  height: min(340px, 48vw);
  background: #38bdf8;
  bottom: -10%;
  left: 28%;
  animation-delay: -12s;
}

@keyframes express-blob-float {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(20px, -16px) scale(1.06); }
}

.express-section-inner {
  position: relative;
  z-index: 1;
}

.express-section-head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}

.express-section-title {
  margin: 0.85rem 0 0.75rem;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  background: linear-gradient(120deg, var(--forest-dark) 0%, var(--teal) 55%, var(--olive) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.express-section-lead {
  margin: 0;
  font-size: clamp(1.125rem, 1.9vw, 1.2rem);
  color: var(--text-on-light);
  line-height: 1.75;
  font-weight: 500;
}

.express-section-lead strong {
  color: var(--gray-900);
  font-weight: 800;
}

.express-grid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.express-grid-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(100%, 10rem);
  margin: 1.5rem auto;
}

.express-grid-divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(30, 58, 95, 0.3), transparent);
}

.express-grid-divider-text {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-on-light);
  padding: 0.4rem 0.85rem;
  background: #fff;
  border-radius: 999px;
  border: 1px solid rgba(30, 58, 95, 0.15);
  box-shadow: var(--shadow);
}

@media (min-width: 1024px) {
  .express-grid {
    flex-direction: row;
    align-items: stretch;
    gap: clamp(1.25rem, 2.5vw, 2rem);
  }

  .express-grid-divider {
    flex-direction: column;
    width: auto;
    margin: 0;
    align-self: center;
    min-height: 6rem;
  }

  .express-grid-divider-line {
    width: 2px;
    height: auto;
    flex: 1;
    background: linear-gradient(180deg, transparent, rgba(30, 58, 95, 0.25), transparent);
  }
}

.express-plan {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(30, 58, 95, 0.12);
  box-shadow: 0 4px 0 rgba(15, 23, 42, 0.06), 0 20px 48px rgba(15, 23, 42, 0.1);
  transition: var(--transition);
}

.express-plan:hover {
  transform: translateY(-4px);
  z-index: 2;
}

.express-plan--basic:hover {
  box-shadow: 0 6px 0 rgba(13, 148, 136, 0.35), 0 28px 56px rgba(13, 148, 136, 0.18);
}

.express-plan--premium {
  box-shadow: 0 4px 0 var(--forest), 0 24px 52px rgba(47, 93, 74, 0.2);
}

.express-plan--premium:hover {
  box-shadow: 0 6px 0 var(--forest-dark), 0 32px 60px rgba(47, 93, 74, 0.28);
}

.express-plan-hero {
  padding: clamp(1.75rem, 4vw, 2.25rem) clamp(1.5rem, 3vw, 2rem);
  color: #fff;
}

.express-plan-hero--basic {
  background: linear-gradient(145deg, #0d9488 0%, #0891b2 55%, #0f766e 100%);
}

.express-plan-hero--premium {
  background: linear-gradient(145deg, var(--forest-dark) 0%, var(--forest) 42%, var(--olive) 100%);
}

.express-plan-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.92;
}

.express-plan-headline {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.express-plan-tagline {
  margin: 0 0 1.25rem;
  font-size: clamp(1.0625rem, 1.8vw, 1.125rem);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}

.express-plan-tagline strong {
  font-weight: 800;
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.express-plan-price {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 0.85rem 1.35rem;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(6px);
}

.express-plan-price-label {
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
}

.express-plan-price-amount {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}

.express-plan-price-amount small {
  font-size: 0.55em;
  font-weight: 700;
}

.express-plan-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 3vw, 1.75rem);
  background: #fff;
}

.express-plan-features {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.express-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.express-plan:hover .express-feature {
  border-color: rgba(30, 58, 95, 0.14);
}

.express-feature-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1;
}

.express-feature-text strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--gray-900);
}

.express-feature-text p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-on-light);
  font-weight: 500;
}

.express-plan-includes {
  margin: 0 0 1.25rem;
  padding: 1.1rem 1.2rem 1.1rem 2.5rem;
  list-style: none;
  background: linear-gradient(135deg, #eef4eb, #e2ebe0);
  border: 1px solid rgba(47, 93, 74, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.express-plan-includes li {
  position: relative;
  margin-bottom: 0.7rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-on-light);
  font-weight: 500;
}

.express-plan-includes li:last-child {
  margin-bottom: 0;
}

.express-plan-includes li::before {
  content: "✓";
  position: absolute;
  left: -1.35rem;
  font-weight: 800;
  color: var(--forest);
}

.express-plan-includes strong {
  color: var(--gray-900);
  font-weight: 800;
}

.express-plan-disclaimer {
  margin: 0 0 1.25rem;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gray-900);
  background: #fef9c3;
  border: 1px solid #fde047;
  border-radius: var(--radius);
}

.express-plan-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.express-btn {
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.15);
}

.express-btn--basic {
  background: linear-gradient(135deg, #0d9488, #0891b2);
}

.express-btn--basic:hover {
  background: linear-gradient(135deg, #0f766e, #0d9488);
  color: #fff;
  box-shadow: 0 10px 28px rgba(13, 148, 136, 0.4);
}

.express-btn--premium {
  background: linear-gradient(135deg, var(--forest), var(--forest-mid));
}

.express-btn--premium:hover {
  background: linear-gradient(135deg, var(--forest-dark), var(--forest));
  color: #fff;
  box-shadow: 0 10px 28px rgba(47, 93, 74, 0.4);
}

.express-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.15rem;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-xl);
  border: 2px solid var(--gray-900);
  color: var(--gray-900);
  background: #fff;
  transition: var(--transition);
}

.express-btn-secondary:hover {
  transform: translateY(-4px);
  background: var(--gray-900);
  color: #fff;
}

.express-btn-secondary--premium {
  border-color: var(--forest);
  color: var(--forest-dark);
}

.express-btn-secondary--premium:hover {
  background: linear-gradient(135deg, var(--forest), var(--olive));
  border-color: transparent;
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .express-blob { animation: none; }
  .express-plan,
  .express-plan:hover,
  .express-btn-secondary:hover {
    transition: none;
    transform: none;
  }
}

.prices-withheld .pkg-quote-note {
  display: block;
  margin: 0 0 1rem;
  padding: 0.85rem 1.1rem;
  font-size: 1rem;
  color: var(--text-on-light);
  background: var(--gray-50);
  border-radius: var(--radius);
  border-left: 3px solid var(--teal);
  line-height: 1.6;
  font-weight: 500;
}

.pkg-quote-note {
  display: none;
}

.web-promo-actions--focus {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pkg-price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: var(--radius);
}

.pkg-price-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-700);
  margin-bottom: 0.25rem;
}

.pkg-price-amount {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
}

.pkg-price-amount small {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
}

.pkg-price-amount-sm {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
}

.pkg-price-amount-sm small {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray-600);
}

/* ── Support box ── */

.support-box {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 102, 204, 0.15);
  border-radius: 22px;
  box-shadow: 0 16px 48px rgba(0, 102, 204, 0.1);
  backdrop-filter: blur(8px);
}

@media (min-width: 768px) {
  .support-box {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    padding: 2.5rem;
  }
}

.support-box-text h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 800;
  color: var(--navy);
}

.support-box-text p {
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.6vw, 1.08rem);
  line-height: 1.65;
  font-weight: 500;
}

.support-box-plans {
  display: grid;
  gap: clamp(1.1rem, 2.5vw, 1.5rem);
}

@media (min-width: 480px) {
  .support-box-plans { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .support-box-plans { grid-template-columns: repeat(3, 1fr); }
}

.support-plan {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(30, 58, 95, 0.12);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: 0 4px 0 rgba(0, 102, 204, 0.1), 0 12px 32px rgba(15, 23, 42, 0.08);
  transition: var(--transition);
}

.support-plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 0 rgba(0, 102, 204, 0.14), 0 20px 40px rgba(15, 23, 42, 0.12);
}

.support-plan-best {
  border-color: rgba(0, 102, 204, 0.35);
  box-shadow:
    0 4px 0 var(--blue),
    0 18px 44px rgba(0, 102, 204, 0.18);
  transform: scale(1.03);
}

.support-plan-best:hover {
  transform: translateY(-5px) scale(1.03);
}

.support-plan .btn {
  margin-top: auto;
  border-radius: 12px;
  font-weight: 700;
}

.support-plan strong {
  display: block;
  font-size: clamp(1.05rem, 1.8vw, 1.12rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.support-plan-price {
  display: block;
  font-size: clamp(1.4rem, 2.5vw, 1.55rem);
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 1rem;
}

.support-plan-desc {
  display: block;
  margin: 0.4rem 0 0.85rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-on-light);
  font-weight: 500;
}

.monthly-support-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 3rem;
  max-width: 1180px;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .monthly-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .monthly-support-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
  }
}

/* Soporte: pares planos, impares e «Operación» con relieve */
.monthly-support-grid .support-plan:nth-child(even):not(.support-plan-best) {
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 0 0 1px rgba(30, 58, 95, 0.14);
  background: #fff;
}

.monthly-support-grid .support-plan:nth-child(even):not(.support-plan-best):hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(30, 58, 95, 0.16);
}

.monthly-support-grid .support-plan-best {
  transform: none;
}

.monthly-support-grid .support-plan-best:hover {
  transform: translateY(-5px) scale(1.02);
}

.monthly-support-grid .support-plan-price small {
  font-size: 0.65em;
  font-weight: 600;
}

/* ── Steps ── */

.process-scene {
  background: linear-gradient(168deg, #f8fafc 0%, #eef2ff 55%, #f0fdf4 100%);
  padding-top: clamp(4rem, 8vw, 5rem);
  padding-bottom: clamp(4rem, 8vw, 5rem);
}

.steps {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  max-width: 1180px;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
  }
}

.step {
  padding: clamp(1.5rem, 2.5vw, 1.85rem);
  background: #fff;
  border: 1px solid rgba(30, 58, 95, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 0 rgba(0, 102, 204, 0.1), 0 12px 32px rgba(15, 23, 42, 0.08);
  transition: var(--transition);
}

.step:nth-child(1) { box-shadow: 0 4px 0 #004d99, 0 18px 36px rgba(0, 102, 204, 0.12); }
.step:nth-child(3) { box-shadow: 0 4px 0 #3730a3, 0 18px 36px rgba(67, 56, 202, 0.12); }

.step:nth-child(2),
.step:nth-child(4) {
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 0 0 1px rgba(30, 58, 95, 0.14);
  background: #fff;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 0 rgba(0, 102, 204, 0.14), 0 20px 40px rgba(15, 23, 42, 0.12);
}

.step:nth-child(2):hover,
.step:nth-child(4):hover {
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(30, 58, 95, 0.16);
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #004d99);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
}

.step h3 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.05rem, 1.8vw, 1.15rem);
  font-weight: 800;
  color: var(--navy);
}

.step p {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--text-on-light);
  line-height: 1.75;
  font-weight: 500;
}

/* ── Contact ── */

.contact-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

.contact-info h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.75rem, 3.2vw, 2.15rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.025em;
}

.contact-info > p {
  margin: 0 0 1.75rem;
  color: var(--text-secondary);
  font-size: clamp(1.05rem, 1.8vw, 1.12rem);
  line-height: 1.65;
  font-weight: 500;
}

.contact-details {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-details li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: clamp(0.98rem, 1.5vw, 1.05rem);
  color: var(--text);
  line-height: 1.55;
}

.contact-details strong {
  display: block;
  font-size: clamp(0.85rem, 1.4vw, 0.92rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-dark);
  margin-bottom: 0.3rem;
}

.contact-form {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.field { margin-bottom: 1.15rem; }

.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-800);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.75rem 1rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%2394a3b8' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  min-height: 1.25rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
}

.form-status.success { color: #059669; }
.form-status.error { color: #dc2626; }

/* ── Footer ── */

.site-footer {
  padding: 1.75rem 0;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
}

.footer-inner p { margin: 0; }
.footer-inner nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-inner a { color: rgba(255, 255, 255, 0.85); }
.footer-inner a:hover { color: #fff; }

/* ── B2B Services grid ── */

.services-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 1180px;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.5vw, 1.85rem);
  background: #fff;
  border: 1px solid rgba(30, 58, 95, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 0 rgba(0, 102, 204, 0.1), 0 16px 40px rgba(15, 23, 42, 0.08);
  transition: var(--transition);
}

.service-card:nth-child(1),
.service-card:nth-child(3) {
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 0 0 1px rgba(30, 58, 95, 0.14);
  background: #fff;
}

.service-card:nth-child(2) {
  box-shadow: 0 4px 0 var(--blue), 0 22px 48px rgba(0, 102, 204, 0.18);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 0 rgba(0, 102, 204, 0.14), 0 22px 44px rgba(15, 23, 42, 0.12);
}

.service-card:nth-child(1):hover,
.service-card:nth-child(3):hover {
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(30, 58, 95, 0.16);
}

.service-card-featured {
  border-color: rgba(0, 102, 204, 0.35);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--blue);
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-card h3 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.12rem, 2.2vw, 1.28rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
}

.service-card .btn {
  margin-top: auto;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.98rem;
}

.service-pain,
.service-solution {
  margin: 0 0 0.85rem;
  font-size: 1.0625rem;
  color: var(--text-on-light);
  line-height: 1.75;
  font-weight: 500;
}

.service-pain strong,
.service-solution strong {
  color: var(--gray-900);
  font-weight: 800;
}

.service-list {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.service-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.35rem;
  font-size: 1.0625rem;
  border-bottom: 1px solid var(--gray-100);
  color: var(--text-on-light);
  line-height: 1.7;
  font-weight: 500;
}

.service-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ── CTA band ── */

.cta-band {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0f2744 100%);
  color: #fff;
}

.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-band-text {
  margin: 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--gray-200);
  margin-top: 0.5rem;
  box-shadow: none;
}

.btn-ghost:hover {
  background: var(--gray-50);
  color: var(--blue-dark);
  transform: none;
}

.contact-info .btn {
  margin-top: 1rem;
}

.pkg-body .btn-ghost,
.pkg-body .btn-outline {
  margin-top: 0.35rem;
  padding: 0.9rem 1.1rem;
  font-size: 1rem;
  font-weight: 700;
  border-width: 2px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.pkg-body .btn-ghost {
  border: 2px solid var(--gray-900);
  color: var(--gray-900);
  background: #fff;
}

.pkg-body .btn-ghost:hover {
  background: var(--gray-900);
  color: #fff;
  transform: translateY(-4px);
}

.pkg-body .btn-primary,
.pkg-body .btn-accent {
  border-radius: var(--radius-lg);
}

.pkg-body .btn + .btn {
  margin-top: 0.5rem;
}

.section { padding: 5.5rem 0; }

.section-head h2,
.contact-info h2 {
  line-height: 1.25;
}

/* ── WhatsApp float (Tecnología IP style) ── */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: var(--green-wa);
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float--hidden {
  display: none !important;
}

/* ── Mobile ── */

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    z-index: 99;
  }

  .site-header.is-nav-open .site-nav { display: flex; }

  .site-nav a {
    padding: 0.65rem 0.25rem;
    border-bottom: 1px solid var(--gray-100);
  }

  .site-nav a:last-child { border-bottom: 0; }

  .site-nav .btn-nav {
    margin-top: 0.35rem;
    text-align: center;
  }

  .brand-logo {
    max-width: min(200px, 52vw);
    height: 34px;
  }

  .container {
    width: min(100% - 1.25rem, var(--max));
  }
}

@media (max-width: 640px) {
  .hero { min-height: 460px; padding: 3rem 0; }
  .section { padding: 3.5rem 0; }
  .whatsapp-float {
    font-size: 0;
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

