/* SISGTO — refuerzo visual y hero creativo (complementa templatemo) */

:root {
  --sisgto-ink: #0c1222;
  --sisgto-ink-soft: #3d4a63;
  --sisgto-accent: #4b8ef1;
  --sisgto-accent-deep: #2563eb;
  --violet: #7c3aed;
  --cyan: #06b6d4;
  --hero-font: "Syne", "Roboto", sans-serif;
  --body-font: "Plus Jakarta Sans", "Roboto", sans-serif;
}

html {
  scroll-behavior: smooth;
  background-color: #f3f6fb;
  min-height: 100%;
}

body {
  font-family: var(--body-font);
  color: var(--sisgto-ink-soft);
  font-size: 16px;
  line-height: 1.65;
  background-color: transparent !important;
}

/* Contenido por encima de la capa full-screen */
.page-shell {
  position: relative;
  z-index: 1;
}

/* Animación / atmósfera a todo el viewport (fija, no intercepta clics) */
.viewport-ambient {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.viewport-ambient__inner {
  position: absolute;
  inset: -15%;
  width: 130%;
  height: 130%;
  will-change: transform;
}

.viewport-ambient__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(calc(60px + 3vw));
  opacity: 0.38;
  /* legible en fondos claros y oscuros */
  mix-blend-mode: soft-light;
  will-change: transform;
}

.viewport-ambient__glow--1 {
  width: min(120vw, 900px);
  height: min(120vw, 900px);
  top: -25%;
  left: -30%;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(75, 142, 241, 0.55) 0%,
    rgba(124, 58, 237, 0.22) 45%,
    transparent 70%
  );
}

.viewport-ambient__glow--2 {
  width: min(100vw, 760px);
  height: min(100vw, 760px);
  top: 35%;
  right: -28%;
  background: radial-gradient(
    circle at 60% 40%,
    rgba(6, 182, 212, 0.45) 0%,
    rgba(75, 142, 241, 0.25) 50%,
    transparent 68%
  );
  opacity: 0.38;
}

.viewport-ambient__glow--3 {
  width: min(90vw, 640px);
  height: min(90vw, 640px);
  bottom: -20%;
  left: 15%;
  background: radial-gradient(
    circle at 45% 55%,
    rgba(124, 58, 237, 0.35) 0%,
    rgba(75, 142, 241, 0.2) 55%,
    transparent 72%
  );
  opacity: 0.34;
}

.viewport-ambient__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 18, 34, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 18, 34, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.65;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 35%, black 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 35%, black 0%, transparent 72%);
}

.viewport-ambient__sheen {
  position: absolute;
  inset: -20%;
  background: linear-gradient(
    118deg,
    transparent 12%,
    rgba(255, 255, 255, 0.12) 44%,
    rgba(75, 142, 241, 0.08) 50%,
    rgba(255, 255, 255, 0.06) 56%,
    transparent 78%
  );
  background-size: 220% 220%;
  animation: viewportAmbientSheen 24s ease-in-out infinite alternate;
  opacity: 0.75;
}

@keyframes viewportAmbientSheen {
  0% {
    background-position: 0% 20%;
    transform: rotate(0deg) scale(1);
  }
  100% {
    background-position: 100% 80%;
    transform: rotate(-3deg) scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .viewport-ambient__sheen {
    animation: none;
    background-position: 50% 50%;
    transform: none;
    opacity: 0.4;
  }

  .viewport-ambient__inner {
    transform: none !important;
  }
}

/* Legibilidad: el template usa p muy fino (300) e interlineado fijo; aflojamos en todo el sitio */
body p {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--sisgto-ink-soft);
}

/* Titulares de sección (30px en template): más aire vertical */
.section-heading h4 {
  line-height: 1.45;
  letter-spacing: -0.012em;
}

.section-heading p {
  line-height: 1.75;
  margin-top: 0.85rem;
}

.service-item h4,
.box-item h4 {
  line-height: 1.48;
  letter-spacing: -0.006em;
}

.service-item p,
.box-item p {
  line-height: 1.7;
  font-size: 15px;
  font-weight: 400;
}

.pricing-item-regular ul li,
.pricing-item-pro ul li {
  line-height: 1.55;
}

h1, h2, h3, h4, .logo-serif {
  font-family: var(--hero-font);
}

/* Header — marca con imagen (sin recorte; legible sobre el hero) */
.header-area {
  overflow: visible !important;
}

.header-area .main-nav {
  overflow: visible !important;
}

.header-area .main-nav a.logo.logo-brand {
  display: inline-flex;
  align-items: center;
  align-self: center;
  line-height: 0;
  padding: 6px 10px;
  margin: 0;
  flex: 0 0 auto;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 2px 14px rgba(12, 18, 34, 0.08);
  position: relative;
  z-index: 1002;
}

.background-header .main-nav a.logo.logo-brand {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(12, 18, 34, 0.06);
}

.header-area .main-nav .logo-brand__img {
  height: auto;
  width: auto;
  max-height: 48px;
  max-width: min(200px, 46vw);
  object-fit: contain;
  object-position: left center;
  display: block;
  flex-shrink: 0;
  /* Evita mezcla visual con el fondo (PNG con transparencias) */
  filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 1px rgba(12, 18, 34, 0.04));
}

.background-header .main-nav .logo-brand__img {
  max-height: 42px;
  max-width: min(190px, 44vw);
}

@media (max-width: 767px) {
  .header-area .main-nav a.logo.logo-brand {
    padding: 5px 8px;
    margin-left: 0;
  }

  .header-area .main-nav .logo-brand__img {
    max-height: 44px;
  }
}

.hero-brand-mark {
  margin-bottom: 1.1rem;
}

.hero-brand-mark__img {
  height: clamp(44px, 7vw, 58px);
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(12, 18, 34, 0.12));
}

.header-area.header-glass.background-header {
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(12, 18, 34, 0.06);
  box-shadow: 0 8px 32px rgba(12, 18, 34, 0.06);
}

/* Hero creativo */
.hero-creative.main-banner {
  padding-top: 200px;
  padding-bottom: 120px;
  padding-left: 24px;
  padding-right: 24px;
  /* Deja ver un poco la capa viewport-ambient */
  background: linear-gradient(
    165deg,
    rgba(248, 250, 252, 0.86) 0%,
    rgba(238, 242, 255, 0.8) 45%,
    rgba(240, 249, 255, 0.86) 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-creative.main-banner:after {
  display: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: -40% -20%;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(75, 142, 241, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 85% 20%, rgba(124, 58, 237, 0.18), transparent 50%),
    radial-gradient(ellipse 50% 35% at 70% 85%, rgba(6, 182, 212, 0.14), transparent 45%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 18, 34, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 18, 34, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.85;
}

.hero-orb--1 {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  right: -5%;
  top: 10%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.9), rgba(75, 142, 241, 0.35) 45%, rgba(124, 58, 237, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-orb--2 {
  width: min(200px, 28vw);
  height: min(200px, 28vw);
  left: 8%;
  bottom: 18%;
  background: radial-gradient(circle at 30% 30%, rgba(6, 182, 212, 0.5), rgba(75, 142, 241, 0.15) 70%);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-creative .container {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.45;
  color: var(--sisgto-accent-deep);
  margin-bottom: 1.25rem;
}

.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--sisgto-accent), var(--violet));
  border-radius: 2px;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.26;
  letter-spacing: -0.012em;
  color: var(--sisgto-ink);
  margin-bottom: 1.35rem;
}

.hero-title .word-wrap {
  display: inline-block;
  overflow: hidden;
  margin-right: 0.4em;
  margin-bottom: 0.22em;
  padding-bottom: 0.1em;
}

.hero-title .word {
  display: inline-block;
  will-change: transform, opacity;
}

.hero-title .accent-bar {
  display: inline-block;
  height: 0.12em;
  width: 2.8em;
  margin-left: 0.15em;
  vertical-align: middle;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--sisgto-accent), var(--violet), var(--cyan));
  transform-origin: left center;
}

.hero-lead {
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--sisgto-ink-soft);
  max-width: 34rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.hero-actions .btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  background: linear-gradient(135deg, var(--sisgto-accent) 0%, var(--sisgto-accent-deep) 100%);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 12px 32px rgba(75, 142, 241, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-actions .btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(75, 142, 241, 0.45);
  color: #fff !important;
}

.hero-actions .btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(12, 18, 34, 0.12);
  color: var(--sisgto-ink) !important;
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.6);
  transition: border-color 0.2s, background 0.2s;
}

.hero-actions .btn-ghost-hero:hover {
  border-color: var(--sisgto-accent);
  background: #fff;
  color: var(--sisgto-accent-deep) !important;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-metric {
  position: relative;
}

.hero-metric strong {
  display: block;
  font-family: var(--hero-font);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--sisgto-ink);
  line-height: 1.32;
  margin-bottom: 0.35rem;
}

.hero-metric span {
  display: block;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--sisgto-ink-soft);
  font-weight: 400;
}

/* Visual abstracto derecha */
.hero-visual {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-card {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(238, 242, 255, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 24px 48px rgba(12, 18, 34, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 1.75rem;
  overflow: hidden;
}

.hero-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(75, 142, 241, 0.06) 100%);
  pointer-events: none;
}

.hero-stack-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.hero-stack-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-stack-pill {
  flex: 1;
  min-height: 48px;
  border-radius: 12px;
  background: rgba(12, 18, 34, 0.04);
  border: 1px solid rgba(12, 18, 34, 0.06);
  display: flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--sisgto-ink);
}

.hero-stack-pill i {
  margin-right: 8px;
  color: var(--sisgto-accent);
}

.hero-stack-pill.wide {
  flex: 2;
}

/* Mini-tarjetas alineadas con .service-item (misma jerarquía tipográfica) */
.hero-floating-badge {
  position: absolute;
  z-index: 2;
  max-width: 260px;
  padding: 22px 24px;
  border-radius: 10px;
  border-top-right-radius: 50px;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(12, 18, 34, 0.06);
}

.hero-floating-badge--1 {
  top: 8%;
  right: 0;
}

.hero-floating-badge--2 {
  bottom: 14%;
  left: 0;
}

.hero-floating-badge .hero-badge-title {
  margin: 0 0 12px 0;
  padding: 0;
  font-family: var(--hero-font);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.008em;
  color: #2a2a2a;
}

.hero-floating-badge .hero-badge-desc {
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: #afafaf;
}

.main-banner .left-content h1.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.26;
}

.main-banner .left-content.hero-copy {
  margin-right: 0;
  padding-right: 12px;
}

/* Banda tecnología */
.tech-section {
  position: relative;
  padding: 72px 0;
  background: var(--sisgto-ink);
  overflow: hidden;
}

.tech-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(75, 142, 241, 0.25), transparent 55%),
    radial-gradient(ellipse 40% 40% at 100% 50%, rgba(124, 58, 237, 0.15), transparent);
  pointer-events: none;
}

.tech-section .container {
  position: relative;
  z-index: 1;
}

.tech-section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.tech-section-head h3 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.38;
  margin-bottom: 0.75rem;
}

.tech-section-head p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.65;
}

.tech-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.tech-marquee {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: max-content;
  will-change: transform;
}

.tech-marquee-group {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.tech-pill {
  flex-shrink: 0;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.tech-pill i {
  margin-right: 8px;
  opacity: 0.85;
}

/* Metodología */
.method-section {
  padding: 120px 0 100px;
  background: rgba(255, 255, 255, 0.92);
  position: relative;
  overflow: visible;
  /* Por encima de .about-us: el ::after del template (imagen decorativa enorme)
     se posiciona hacia arriba y tapaba las tarjetas 03–04 del método */
  z-index: 2;
}

.method-section .section-heading h4 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.38;
  letter-spacing: -0.01em;
}

.method-grid {
  margin-top: 3rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 991px) {
  .method-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .method-grid {
    grid-template-columns: 1fr;
  }
}

.method-card {
  position: relative;
  padding: 1.75rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border: 1px solid rgba(12, 18, 34, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(12, 18, 34, 0.08);
}

.method-card .step-num {
  font-family: var(--hero-font);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--sisgto-accent), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.heading-accent-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--sisgto-accent), var(--violet));
  border-radius: 2px;
  margin-top: 12px;
  margin-bottom: 8px;
}

.services .section-heading .heading-accent-line {
  margin-left: auto;
  margin-right: auto;
}

.method-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: -0.01em;
  color: var(--sisgto-ink);
  margin-bottom: 0.55rem;
  font-family: var(--hero-font);
}

.method-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--sisgto-ink-soft);
  margin: 0;
}

/* Contenido tipo flyer / glosario digital */
.flyer-glossary {
  padding: 100px 0 90px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  position: relative;
  z-index: 1;
}

.flyer-glossary .section-heading p {
  color: var(--sisgto-ink-soft);
}

.flyer-glossary__card {
  height: 100%;
  padding: 1.5rem 1.35rem;
  border-radius: 16px;
  border: 1px solid rgba(12, 18, 34, 0.08);
  background: #fff;
  box-shadow: 0 4px 24px rgba(12, 18, 34, 0.05);
  margin-bottom: 1.25rem;
}

.flyer-glossary__card h5 {
  font-family: var(--hero-font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sisgto-ink);
  margin: 0 0 0.65rem 0;
}

.flyer-glossary__card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--sisgto-ink-soft);
}

.flyer-glossary__card--wide {
  min-height: auto;
}

.flyer-pricing-lead {
  font-size: 1.05rem;
  color: var(--sisgto-ink-soft);
  max-width: 32rem;
  margin-left: auto !important;
  margin-right: auto !important;
}

.pricing-tier-note {
  font-size: 14px;
  color: #475569;
  margin: -0.5rem 0 1rem 0;
  line-height: 1.5;
}

.pricing-item-pro .pricing-tier-note {
  color: #475569;
}

/* Nosotros: evitar que el decorativo ::after del theme tape secciones anteriores */
.about-us.section {
  position: relative;
  z-index: 1;
}

.about-us:after {
  display: none !important;
}

/* Servicios — decoración sutil (animada con GSAP) */
.services-block {
  position: relative;
  overflow: hidden;
}

.services-block > .container {
  position: relative;
  z-index: 1;
}

.services-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.services-deco__glow {
  position: absolute;
  top: 18%;
  right: clamp(12px, 6vw, 72px);
  width: min(220px, 40vw);
  height: min(220px, 40vw);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(75, 142, 241, 0.14) 0%,
    rgba(124, 58, 237, 0.06) 45%,
    transparent 68%
  );
  filter: blur(4px);
  opacity: 0.9;
  will-change: transform, opacity;
}

.services-deco__rail {
  position: absolute;
  left: clamp(16px, 3vw, 40px);
  top: 18%;
  width: 1px;
  height: min(42%, 320px);
  background: linear-gradient(
    180deg,
    transparent,
    rgba(75, 142, 241, 0.35) 20%,
    rgba(124, 58, 237, 0.2) 80%,
    transparent
  );
  transform-origin: top center;
  will-change: transform;
}

.services-deco__nodes {
  position: absolute;
  left: clamp(12px, 3vw, 36px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.services-deco__nodes span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(75, 142, 241, 0.45);
  box-shadow: 0 0 0 1px rgba(75, 142, 241, 0.15);
  will-change: transform, opacity;
}

.services-deco__tag {
  position: absolute;
  left: clamp(40px, 5vw, 56px);
  bottom: 26%;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sisgto-ink-soft);
  opacity: 0.55;
  max-width: 8rem;
  line-height: 1.4;
}

.services-deco__progress-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(12, 18, 34, 0.06);
}

.services-deco__progress {
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--sisgto-accent), var(--violet));
  opacity: 0.45;
  will-change: transform;
}

@media (max-width: 767px) {
  .services-deco__rail,
  .services-deco__nodes,
  .services-deco__tag {
    display: none;
  }

  .services-deco__glow {
    opacity: 0.5;
    top: 10%;
  }
}

/* Servicios — iconos FA en lugar de PNG */
.service-item .icon {
  background-image: none !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--sisgto-accent);
  background: rgba(75, 142, 241, 0.1);
  border-radius: 14px;
  width: 56px !important;
  height: 56px !important;
}

.service-item:hover .icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* About imagen opcional sin asset */
.about-visual {
  border-radius: 24px;
  background: linear-gradient(135deg, #eef2ff 0%, #e0f2fe 100%);
  border: 1px solid rgba(12, 18, 34, 0.06);
  padding: 3rem 2rem;
  text-align: center;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-visual .about-icon-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sisgto-accent), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 16px 40px rgba(75, 142, 241, 0.35);
}

.about-visual .about-icon-ring--logo {
  width: auto;
  height: auto;
  min-width: 0;
  padding: 1rem 1.25rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 18, 34, 0.07);
  box-shadow:
    0 16px 44px rgba(75, 142, 241, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.about-visual .about-icon-ring--logo img {
  display: block;
  width: min(210px, 100%);
  height: auto;
  object-fit: contain;
}

.about-visual h5 {
  font-family: var(--hero-font);
  font-weight: 800;
  color: var(--sisgto-ink);
  font-size: 1.25rem;
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin-bottom: 0.45rem;
}

.about-visual p {
  font-size: 0.9rem;
  color: var(--sisgto-ink-soft);
  max-width: 280px;
  margin: 0;
}

/* Footer CTA */
footer#newsletter {
  background: linear-gradient(180deg, #0c1222 0%, #151d33 100%);
  padding-bottom: 48px;
}

footer#newsletter .footer-brand {
  margin-bottom: 0.65rem;
}

footer#newsletter .footer-brand__logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  opacity: 0.98;
  filter: brightness(1.06) drop-shadow(0 4px 20px rgba(0, 0, 0, 0.25));
}

@media (max-width: 575px) {
  footer#newsletter .footer-brand__logo {
    height: 46px;
  }
}

footer#newsletter .section-heading h4 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.38;
  letter-spacing: -0.01em;
}

footer#newsletter .footer-widget h4 {
  color: #fff;
  line-height: 1.4;
}

/* Planes: legibilidad, color por tier y decoración animada */
.pricing-tables {
  position: relative;
  z-index: 1;
}

.pricing-block {
  overflow: hidden;
}

.pricing-block::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 50% -15%, rgba(75, 142, 241, 0.22), transparent 55%),
    radial-gradient(ellipse 55% 45% at 100% 45%, rgba(124, 58, 237, 0.14), transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 75%, rgba(6, 182, 212, 0.16), transparent 48%),
    linear-gradient(185deg, #e8f0ff 0%, #f5f8fc 38%, #f0f4ff 72%, #e9f2ff 100%);
}

.pricing-block__inner {
  position: relative;
  z-index: 2;
}

.pricing-deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.pricing-deco__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.55;
  will-change: transform;
}

.pricing-deco__blob--1 {
  width: min(340px, 55vw);
  height: min(340px, 55vw);
  top: 8%;
  left: -8%;
  background: radial-gradient(circle at 33% 33%, rgba(75, 142, 241, 0.75), transparent 62%);
  animation: pricing-blob-float-a 11s ease-in-out infinite;
}

.pricing-deco__blob--2 {
  width: min(280px, 48vw);
  height: min(280px, 48vw);
  top: 42%;
  right: -6%;
  background: radial-gradient(circle at 45% 45%, rgba(124, 58, 237, 0.55), transparent 58%);
  animation: pricing-blob-float-b 13s ease-in-out infinite;
}

.pricing-deco__blob--3 {
  width: min(220px, 40vw);
  height: min(220px, 40vw);
  bottom: 12%;
  left: 22%;
  background: radial-gradient(circle at 40% 60%, rgba(6, 182, 212, 0.55), transparent 60%);
  animation: pricing-blob-float-c 9s ease-in-out infinite;
}

.pricing-deco__ring {
  position: absolute;
  left: 50%;
  top: 38%;
  width: min(520px, 95vw);
  height: min(520px, 95vw);
  translate: -50% -50%;
  border-radius: 50%;
  border: 1px solid rgba(75, 142, 241, 0.14);
  box-shadow:
    0 0 0 1px rgba(124, 58, 237, 0.06) inset,
    0 0 80px rgba(75, 142, 241, 0.08);
  animation: pricing-ring-drift 38s linear infinite;
}

@keyframes pricing-blob-float-a {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(18px, -24px) scale(1.06);
  }
}

@keyframes pricing-blob-float-b {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-22px, 16px) scale(1.05);
  }
}

@keyframes pricing-blob-float-c {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(12px, 20px) scale(1.04);
  }
}

@keyframes pricing-ring-drift {
  to {
    rotate: 360deg;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-deco__blob,
  .pricing-deco__ring {
    animation: none;
  }
}

@media (max-width: 991px) {
  .pricing-deco__ring {
    top: 28%;
    opacity: 0.65;
  }
}

.pricing-tables .section-heading h4 {
  color: var(--sisgto-ink);
}

.pricing-tables .section-heading h4 em {
  background: linear-gradient(120deg, var(--sisgto-accent-deep), var(--violet), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.pricing-tables .pricing-item-regular,
.pricing-tables .pricing-item-pro {
  background-color: #ffffff;
  border: 1px solid rgba(12, 18, 34, 0.08);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.pricing-tables .pricing-tier--basic {
  border-top: 4px solid var(--sisgto-accent);
  box-shadow:
    0 12px 40px rgba(75, 142, 241, 0.16),
    0 0 0 1px rgba(75, 142, 241, 0.07);
}

.pricing-tables .pricing-tier--pro {
  border-top: 4px solid #7c3aed;
  box-shadow:
    0 18px 52px rgba(124, 58, 237, 0.22),
    0 0 0 1px rgba(124, 58, 237, 0.1);
}

.pricing-tables .pricing-tier--premium {
  border-top: 4px solid var(--cyan);
  box-shadow:
    0 14px 44px rgba(6, 182, 212, 0.18),
    0 0 0 1px rgba(6, 182, 212, 0.09);
}

.pricing-tables .pricing-item-regular::before,
.pricing-tables .pricing-item-regular::after,
.pricing-tables .pricing-item-pro::before,
.pricing-tables .pricing-item-pro::after {
  opacity: 0.28;
}

.pricing-tables .pricing-item-regular h4,
.pricing-tables .pricing-item-pro h4 {
  line-height: 1.48;
  letter-spacing: -0.01em;
  color: var(--sisgto-ink);
  position: relative;
  z-index: 1;
}

.pricing-tables .pricing-tier ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.pricing-tables .pricing-item-regular ul li,
.pricing-tables .pricing-item-pro ul li {
  color: var(--sisgto-ink-soft);
  font-weight: 500;
  position: relative;
  z-index: 1;
  padding-left: 1.35rem;
}

.pricing-tables .pricing-tier--basic ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sisgto-accent);
  box-shadow: 0 0 0 3px rgba(75, 142, 241, 0.22);
}

.pricing-tables .pricing-tier--pro ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #4b8ef1);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.pricing-tables .pricing-tier--premium ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--sisgto-accent-deep));
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
}

.pricing-tables .pricing-tier-note {
  position: relative;
  z-index: 1;
}

.pricing-tables .border-button {
  position: relative;
  z-index: 1;
}

.pricing-tables .pricing-tier .border-button a {
  background: linear-gradient(
    135deg,
    rgba(75, 142, 241, 0.1),
    rgba(124, 58, 237, 0.08)
  );
  border-width: 2px;
  font-weight: 600 !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease, color 0.25s ease, background-color 0.25s ease;
}

.pricing-tables .pricing-tier .border-button a:hover {
  background: linear-gradient(135deg, var(--sisgto-accent), var(--violet)) !important;
  border-color: transparent;
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(75, 142, 241, 0.4);
}

footer#newsletter .footer-widget p {
  color: rgba(255, 255, 255, 0.6);
}

.footer-cta-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer-cta-row a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sisgto-accent), var(--sisgto-accent-deep));
  color: #fff !important;
  font-weight: 600;
}

.footer-cta-row a.secondary-foot {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-cta-row a:hover {
  opacity: 0.92;
  color: #fff !important;
}

@media (max-width: 991px) {
  .hero-creative.main-banner {
    padding-top: 160px;
    min-height: auto;
  }

  .hero-visual {
    margin-top: 3rem;
    min-height: 300px;
  }

  .hero-metric strong {
    font-size: 1.5rem;
    line-height: 1.32;
  }
}
