:root{
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --primary: #6D4AFF;
  --secondary: #F5A300;
  --text: #222222;
  --muted: #5A5A5A;
  --ring: rgba(109, 74, 255, .22);
  --border: rgba(0, 0, 0, .10);
  --shadow: 0 18px 45px rgba(0, 0, 0, .10);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --font-heading: "Segoe UI", SegoeUI, "Segoe UI Variable", system-ui, -apple-system, Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --container: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
}
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display:block; }

.container{
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

/* NAV */
.nav{
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255,255,255,.72);
  border-bottom: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
  transition:
    background .25s ease,
    box-shadow .25s ease,
    padding .25s ease,
    border-color .25s ease;
}

.nav.nav--scrolled{
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.nav__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 18px;
  transition: padding .25s ease;
}

.nav.nav--scrolled .nav__inner{
  padding: 12px 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand__logo{
  height: 50px;
  width: auto;
  display: block;
  transition: transform .25s ease;
}

.nav.nav--scrolled .brand__logo{
  transform: scale(.96);
}

.nav__links{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav__links a:not(.nav__cta){
  font-size: 14px;
  font-weight: 600;
  color: #4E4E4E;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background .2s ease, color .2s ease;
}

.nav__links a:not(.nav__cta):hover{
  background: rgba(109,74,255,.08);
  color: var(--primary);
}

.nav__cta{
  margin-left: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(109,74,255,.20);
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  user-select: none;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn--primary{
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 30px rgba(109,74,255,.22);
}
.btn--primary:hover{
  background: color-mix(in srgb, var(--primary) 92%, #000);
}
.btn--ghost{
  background: rgba(255,255,255,.85);
  border-color: var(--border);
  color: var(--text);
}
.btn--ghost:hover{
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}

/* HERO - CORREGIDO CON GRID */
.hero{
  background: var(--primary);
  color: #fff;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  padding: 0;
}

.hero .btn--primary{
  background: var(--secondary);
  color: #000;
}

.hero .btn--ghost{
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  background: rgba(255,255,255,0.08);
}

/* SLIDER */
.hero-slider{
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease, visibility .6s ease;
}

.hero-slide.is-active{
  opacity: 1;
  visibility: visible;
}

.hero-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slider__dots{
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
}

.hero-dot.is-active{
  background: white;
}

/* MEDIA QUERY PARA MÓVIL */
@media (max-width: 980px){
  .hero__split{
    grid-template-columns: 1fr;
  }

  .hero__panel--left{
    clip-path: none;
    justify-content: center;
    padding: 60px 20px;
    min-height: auto;
  }

  .hero__content{
    max-width: 100%;
    padding: 0 20px;
  }

  .hero__panel--right{
    min-height: 400px;
  }

  .hero-slider{
    min-height: 400px;
  }

  .hero__panel{
    min-height: auto;
  }
}
/* SECTIONS */
section{ padding: 54px 0; }
.section__head{
  text-align:center;
  margin-bottom: 18px;
}
.section__head h2{
  margin: 0;
  font-size: clamp(24px, 2.3vw, 34px);
  letter-spacing: -0.5px;
}
.section__head p{
  margin: 10px auto 0;
  max-width: 68ch;
  color: var(--muted);
}

/* GRID / CARDS */

.card{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.85);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}
.card h3{
  margin: 10px 0 6px;
  font-size: 16px;
  letter-spacing: -0.2px;
}
.card p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* CONTACT */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}
.form{ display:grid; gap: 18px; }
.field{ display:grid; gap: 6px; }
label{
  font-size: 13px;
  color: var(--muted);
  font-weight: 800;
}
input, textarea{
  font-family: var(--font-body);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.92);
  border-radius: 14px;
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
  transition: box-shadow .12s ease, border-color .12s ease;
}
textarea{
  min-height: 92px;
  resize: vertical;
}
input:focus, textarea:focus{
  border-color: rgba(109,74,255,.35);
  box-shadow: 0 0 0 6px var(--ring);
}
.note{
  color: var(--muted);
  font-size: 12px;
  margin: 4px 0 0;
}
.actions{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.muted{ color: var(--muted); margin: 0; }
.mb-8{ margin: 0 0 8px; }
.mb-10{ margin: 0 0 10px; }

/* FOOTER */
footer{
  border-top: 1px solid var(--border);
  padding: 24px 0;
  color: var(--muted);
  font-size: 13px;
}
.footer{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__meta{ margin-top: 10px; }
.footer__copy{ margin-top: 4px; }
.social{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social a{
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.85);
}
.social a:hover{
  background: rgba(255,255,255,1);
}

/* =========================
   CÓMO FUNCIONA
========================= */
.how-it-works{
  padding: 82px 0;
  background: #1A1530;
  position: relative;
  overflow: hidden;
}

.how-it-works::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(109,74,255,.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(245,163,0,.12), transparent 35%);
  pointer-events:none;
}

.how-it-works .container{
  position: relative;
  z-index: 1;
}

.how-it-works__head{
  max-width: 980px;
  margin: 0 auto 42px;
  text-align: center;
}

.section__eyebrow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--secondary);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .2px;
}

.accent-secondary{
  color: var(--secondary);
}

.qr-underline{
  position: relative;
  display: inline-block;
  color: var(--secondary);
}

.qr-underline::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 3px;
  width: 0;
  background: var(--secondary);
  border-radius: 2px;
  transition: width .5s ease;
}

.how-it-works__head:hover .qr-underline::after{
  width: 100%;
}

.how-it-works__head h2{
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  color: #FFFFFF;
  white-space: nowrap;
}

.how-it-works__head p{
  margin: 18px auto 0;
  max-width: 60ch;
  font-size: 17px;
  line-height: 1.65;
  color: #FFFFFF;
}

.how-it-works::before{
  z-index: 0;
}

.how-it-works .section__head h2{
  color: #FFFFFF;
}

/* CÓMO FUNCIONA - CARDS */
.how-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.how-card{
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  opacity: 0;
  transform: translateX(-60px);
  will-change: transform, opacity;
  transition:
    opacity .7s ease,
    transform .7s ease,
    box-shadow .24s ease,
    border-color .24s ease;
}

.how-card.is-visible{
  opacity: 1;
  transform: translateX(0);
}

.how-card:nth-child(1).is-visible{ transition-delay: .06s; }
.how-card:nth-child(2).is-visible{ transition-delay: .18s; }
.how-card:nth-child(3).is-visible{ transition-delay: .30s; }
.how-card:nth-child(4).is-visible{ transition-delay: .42s; }

.how-card:hover{
  transform: translateY(-8px);
  box-shadow:
    0 24px 42px rgba(0,0,0,.24),
    0 0 0 1px rgba(109,74,255,.08),
    0 0 30px rgba(109,74,255,.10);
  border-color: rgba(109,74,255,.22);
}

.how-step{
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: uppercase;
  background: rgba(245,163,0,.12);
  color: var(--secondary);
  transition: transform .22s ease, background .22s ease, color .22s ease;
}

.how-card:hover .how-step{
  transform: translateY(-2px);
  background: var(--secondary);
  color: #111;
}

.how-card__image{
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, rgba(109,74,255,.04), rgba(245,163,0,.05));
  overflow: hidden;
}

.how-card__image img,
.how-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.how-card:hover .how-card__image img,
.how-card:hover .how-video{
  transform: scale(1.05);
}

.how-card__content{
  padding: 22px 20px 24px;
}

.how-card__content h3{
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.12;
  color: var(--text);
  transition: color .22s ease;
}

.how-card:hover .how-card__content h3{
  color: var(--secondary);
}

.how-card__content p{
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.how-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* MEDIA QUERIES */
@media (max-width: 1180px){
  .how-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px){
  .hero--split,
  .hero__split,
  .hero__panel,
  .hero-slider{
    min-height: auto;
  }

  .hero__split{
    flex-direction: column;
  }

  .hero__panel--left{
    clip-path: none;
    justify-content: center;
    padding: 60px 20px;
  }

  .hero__content{
    max-width: 100%;
    padding: 0 20px;
  }

  .hero__panel--right{
    min-height: 400px;
  }

  .hero-slider{
    min-height: 400px;
  }

  .devices{ grid-template-columns: 1fr; }
  .grid-4{ grid-template-columns: 1fr 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .nav__links a{ display:none; }
}

@media (max-width: 680px){
  .how-grid{
    grid-template-columns: 1fr;
  }
}

/* =========================
   HERO BLADE SLIDER
========================= */

.hero--blade{
  --hero-bg-start: #2D0247;
  --hero-bg-mid: #4F2FB3;
  --hero-bg-end: #6B56FF;

  --blade-cut-top: 45%;
  --blade-cut-bottom: 65%;

  background: linear-gradient(
    90deg,
    var(--hero-bg-start) 0%,
    var(--hero-bg-mid) 48%,
    var(--hero-bg-end) 100%
  );
  color: #fff;
  min-height: 87vh;
  padding: 0;
}

.blade-slider{
  position: relative;
  min-height: 87vh;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    var(--hero-bg-start) 0%,
    var(--hero-bg-mid) 48%,
    var(--hero-bg-end) 100%
  );
}

.blade-slider__media{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.blade-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity .85s ease, transform .85s ease;
}

.blade-slide.is-active{
  opacity: 1;
  transform: scale(1);
}

.blade-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* capa oscura suave sobre las imágenes, sin teñir todo del primario */
.blade-slide::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 5, 20, .14) 0%,
    rgba(8, 5, 20, .06) 45%,
    rgba(8, 5, 20, .22) 100%
  );
  pointer-events: none;
}

.blade-slider__panel{
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    var(--hero-bg-start) 0%,
    var(--hero-bg-mid) 48%,
    var(--hero-bg-end) 100%
  );
  clip-path: polygon(
    0 0,
    var(--blade-cut-top) 0,
    var(--blade-cut-bottom) 100%,
    0 100%
  );
  pointer-events: none;
}

.blade-text{
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px 0 64px;
  max-width: 64%;
  opacity: 0;
  pointer-events: none;
}

.blade-text.is-active{
  opacity: 1;
  pointer-events: auto;
}

.blade-eyebrow{
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 18px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(12px);
  transition: all .45s .1s ease;
}

.blade-title{
  font-size: clamp(52px, 7vw, 110px);
  line-height: .92;
  margin: 0 0 22px;
  letter-spacing: -.03em;
  color: #fff;
  opacity: 0;
  transform: translateY(16px);
  transition: all .55s .2s ease;
}

.blade-title span{
  color: var(--secondary);
  display: block;
  transform: scale(.82);
  transform-origin: left center;
  opacity: 0;
}

.blade-body{
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  max-width: 290px;
  margin: 0 0 28px;
  opacity: 0;
  transform: translateY(10px);
  transition: all .5s .35s ease;
}

.blade-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  transition: all .5s .45s ease;
}

.blade-text.is-active .blade-eyebrow,
.blade-text.is-active .blade-title,
.blade-text.is-active .blade-body,
.blade-text.is-active .blade-actions{
  opacity: 1;
  transform: translateY(0);
}

.blade-text.is-active .blade-title span{
  animation: bladeWordGrow .6s ease forwards;
}

@keyframes bladeWordGrow{
  0%{
    transform: scale(.82);
    opacity: 0;
  }
  60%{
    transform: scale(1.06);
    opacity: 1;
  }
  100%{
    transform: scale(1);
    opacity: 1;
  }
}

.blade-text.is-active .blade-title span{
  transform: scale(1);
  opacity: 1;
}

.blade-dots{
  position: absolute;
  left: 64px;
  bottom: 36px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.blade-dot{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  padding: 0;
  transition: all .3s ease;
}

.blade-dot.is-active{
  width: 24px;
  background: var(--secondary);
  box-shadow: 0 0 8px rgba(245,163,0,.45);
}

.blade-counter{
  position: absolute;
  right: 48px;
  bottom: 34px;
  z-index: 5;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  letter-spacing: .08em;
}

.blade-counter__current{
  font-size: 1.6rem;
  color: var(--secondary);
}

.blade-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245,163,0,.28);
  background: rgba(245,163,0,.08);
  color: var(--secondary);
  cursor: pointer;
  transition: .25s ease;
}

.blade-arrow:hover{
  background: rgba(245,163,0,.22);
  border-color: var(--secondary);
}

.blade-arrow--prev{ right: 100px; }
.blade-arrow--next{ right: 48px; }

.blade-progress{
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  z-index: 5;
  background: var(--secondary);
  box-shadow: 0 0 8px rgba(245,163,0,.55);
  transition: width linear;
}

.blade-big-number{
  position: absolute;
  top: 40px;
  right: 48px;
  z-index: 2;
  font-size: 7rem;
  line-height: 1;
  color: rgba(255,255,255,.04);
  font-weight: 900;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 980px){
  .blade-slider{
    min-height: auto;
  }

  .blade-slider__panel{
    clip-path: none;
    background: linear-gradient(
      to top,
      rgba(20, 10, 40, .88),
      rgba(20, 10, 40, .70)
    );
  }

  .blade-text{
    position: relative;
    max-width: 100%;
    padding: 88px 24px 120px;
  }

  .blade-title{
    font-size: clamp(42px, 12vw, 72px);
  }

  .blade-body{
    max-width: 100%;
  }

  .blade-dots{
    left: 24px;
    bottom: 26px;
  }

  .blade-counter{
    right: 24px;
    bottom: 24px;
  }

  .blade-arrow{
    display: none;
  }

  .blade-big-number{
    right: 24px;
    top: 24px;
    font-size: 4rem;
  }
}
/* ===== HERO SYSCHEF TEXT STRUCTURE ===== */

.blade-text--single{
  opacity: 1;
  pointer-events: auto;
}

.blade-eyebrow--bar{
  display: inline-block;
  padding: 0;
  border-radius: 0;
  background: none;
  color: var(--secondary);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 20px;
}

.blade-title--syschef{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 20px;
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: .96;
  letter-spacing: -.03em;
  color: #fff;
  opacity: 1;
  transform: none;
}

.blade-title--syschef .line-fixed,
.blade-title--syschef .line-rotating{
  display: block;
}

.blade-title--syschef .line-fixed{
  color: #fff;
}

.blade-title--syschef .line-rotating{
  color: var(--secondary);
}

.blade-body--wide{
  max-width: 720px;
  min-height: 3.6em;

  font-size: 1.08rem;
  line-height: 1.85;

  color: rgba(255,255,255,.88);
  letter-spacing: .01em;
}

@media (max-width: 980px){
  .blade-eyebrow--bar{
    font-size: .72rem;
    margin-bottom: 16px;
  }

  .blade-title--syschef{
    font-size: clamp(34px, 10vw, 58px);
    line-height: 1.02;
  }

  .blade-body--wide{
    max-width: 100%;
    min-height: auto;
  }

  .blade-body--wide{
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

}

/* ===== ROTATING TEXT SIZE ANIMATION ===== */

.rotate-anim{
  animation: rotateTextScale .45s ease;
}

@keyframes rotateTextScale{

  0%{
    transform: scale(1);
    opacity: 1;
  }

  40%{
    transform: scale(.85);
    opacity: .6;
  }

  60%{
    transform: scale(.85);
    opacity: .6;
  }

  100%{
    transform: scale(1);
    opacity: 1;
  }

}

/* ===== TIPOGRAFÍA UNIFICADA ===== */

/* Títulos principales */
h1,
h2,
.hero__title,
.blade-title,
.section__head h2,
.how-it-works__head h2{
  font-family: var(--font-heading);
}

/* Subtítulos y texto general */
h3,
h4,
h5,
h6,
p,
label,
input,
textarea,
button,
a,
span,
li,
small,
.note,
.muted,
.price__desc,
.price__value small,
.device__label b,
.device__label span,
.how-card__content h3,
.how-card__content p,
.card h3,
.card p{
  font-family: var(--font-body);
}

.blade-title--syschef{
  font-family: var(--font-heading);
}

.blade-eyebrow,
.blade-body,
.blade-body--wide,
.blade-actions .btn{
  font-family: var(--font-body);
}

/* =========================
   DIVISOR SYSCHEF INFINITO
========================= */
.syschef-divider{
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #1A1530;
  padding: 10px 0 12px;
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
  flex-shrink: 0;
  z-index: 3;
}

.syschef-divider::before,
.syschef-divider::after{
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  pointer-events: none;
}

.syschef-divider::before{
  top: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(245,163,0,.18) 50%,
    transparent 100%
  );
}

.syschef-divider::after{
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,.08) 50%,
    transparent 100%
  );
}

.syschef-divider__marquee{
  display: flex;
  align-items: center;
  width: max-content;
  animation: syschefMarquee 26s linear infinite;
  will-change: transform;
}

.syschef-divider__track{
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 0 0 auto;
  white-space: nowrap;
  padding-right: 20px;
}

.syschef-divider__track span{
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.14);
}

.syschef-divider__track span:nth-child(even){
  color: rgba(245,163,0,.22);
  letter-spacing: 0;
  font-size: 10px;
}

@keyframes syschefMarquee{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}
.benefits-block{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: #1A1530;
}

#beneficios{
  scroll-margin-top: 82px;
}

.benefits-showcase{
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: stretch;
  background-image: url("./imagenes/beneficios.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.benefits-showcase__overlay{
  position: absolute;
  inset: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  background: linear-gradient(
    90deg,
    rgba(10, 6, 25, .55) 0%,
    rgba(10, 6, 25, .35) 40%,
    rgba(10, 6, 25, .25) 60%,
    rgba(10, 6, 25, .55) 100%
  );

  pointer-events: none;
}

.benefits-showcase__content{
  position: relative;
  z-index: 2;
  flex: 1;
  width: min(1280px, calc(100% - 80px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-slider-texts{
  position: relative;
  width: 100%;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.benefit-slide{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.18em;
  width: 100%;
  padding: 0 24px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: #FFFFFF;
  text-shadow: 0 8px 24px rgba(0,0,0,.32);
  opacity: 0;
  transform: translateX(18%);
  animation: benefitSlideMove 20s ease-in-out infinite;
  z-index: 3;
  will-change: transform, opacity;
}

.benefit-slide--1{ animation-delay: 0s; }
.benefit-slide--2{ animation-delay: 4s; }
.benefit-slide--3{ animation-delay: 8s; }
.benefit-slide--4{ animation-delay: 12s; }
.benefit-slide--5{ animation-delay: 16s; }

.highlight{
  color: var(--secondary);
  font-weight: 600; /* 👈 más elegante, más “hero style” */
}

.benefit-slide span,
.benefit-slide .highlight{
  font-family: inherit;
}

.benefit-slide--1 .highlight{ animation-delay: 0s; }
.benefit-slide--2 .highlight{ animation-delay: 4s; }
.benefit-slide--3 .highlight{ animation-delay: 8s; }

@keyframes benefitSlideMove{
  0%{
    opacity: 0;
    transform: translateX(18%);
  }
  5%{
    opacity: 1;
    transform: translateX(0);
  }
  20%{
    opacity: 1;
    transform: translateX(0);
  }
  25%{
    opacity: 0;
    transform: translateX(-18%);
  }
  100%{
    opacity: 0;
    transform: translateX(-18%);
  }
}

@keyframes highlightReveal{
  0%{
    opacity: 0;
    filter: blur(6px);
    text-shadow: 0 0 0 rgba(245,163,0,0);
  }
  10%{
    opacity: 1;
    filter: blur(0);
    text-shadow: 0 0 12px rgba(245,163,0,.6);
  }
  28%{
    opacity: 1;
    filter: blur(0);
    text-shadow: 0 0 10px rgba(245,163,0,.4);
  }
  36%{
    opacity: 0;
    filter: blur(6px);
    text-shadow: 0 0 0 rgba(245,163,0,0);
  }
  100%{
    opacity: 0;
    filter: blur(6px);
    text-shadow: 0 0 0 rgba(245,163,0,0);
  }
}


/* =========================
   SCREENS PREMIUM SHOWCASE
========================= */
.screens-showcase{
  position: relative;
  padding: 60px 0; /* menos espacio abajo */
  background:
    radial-gradient(circle at top left, rgba(109,74,255,.08), transparent 34%),
    radial-gradient(circle at bottom right, rgba(245,163,0,.08), transparent 28%),
    #ffffff;
  overflow: hidden;
}

.screens-showcase__head{
  max-width: 900px;
  margin: 0 auto 42px;
}

.screens-premium-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}

.mockup-card{
  position: relative;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 26px;
  padding: 20px;
  box-shadow:
    0 18px 40px rgba(0,0,0,.07),
    0 4px 10px rgba(0,0,0,.03);
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}

.mockup-card:hover{
  transform: translateY(-8px);
  box-shadow:
    0 28px 60px rgba(0,0,0,.12),
    0 10px 24px rgba(109,74,255,.08);
  border-color: rgba(109,74,255,.18);
}

.mockup-card__top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.mockup-card__top h3{
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.12;
  color: var(--text);
}

.mockup-card__top p{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.mockup-chip{
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(109,74,255,.10); /* opcional mantener */
  /* mejor opción: */
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

.mockup-device{
  position: relative;
  background: linear-gradient(180deg, #fafafa, #f0f0f0);
  border: 1px solid rgba(0,0,0,.10);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.75),
    0 14px 28px rgba(0,0,0,.09);
  margin-bottom: 16px;
}

.mockup-device--desktop{
  border-radius: 22px;
}

.mockup-device--dark{
  background: linear-gradient(180deg, #1f1f1f, #141414);
  border-color: rgba(255,255,255,.08);
}

.mockup-device__bar{
  height: 38px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mockup-device--dark .mockup-device__bar{
  background: rgba(255,255,255,.06);
  border-bottom-color: rgba(255,255,255,.08);
}

.mockup-device__bar span{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(0,0,0,.20);
}

.mockup-device--dark .mockup-device__bar span{
  background: rgba(255,255,255,.20);
}

.mockup-device__screen{
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #fff;
}

.mockup-device--desktop .mockup-device__screen{
  aspect-ratio: 16 / 9;
}

.mockup-device--phone{
  width: min(100%, 300px);
  margin-left: auto;
  margin-right: auto;
  border-radius: 34px;
  padding: 10px;
  background: linear-gradient(180deg, #191919, #0e0e0e);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 18px 40px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.mockup-device--phone .mockup-device__screen{
  border-radius: 26px;
  aspect-ratio: 10 / 19;
  overflow: hidden;
}

.mockup-phone__notch{
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 22px;
  border-radius: 999px;
  background: #0b0b0b;
  z-index: 2;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.mockup-main-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform .45s ease,
    opacity .22s ease;
}

.mockup-card:hover .mockup-main-image{
  transform: scale(1.03);
}

.mockup-thumbs{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mockup-thumbs--center{
  justify-content: center;
}

.mockup-thumb{
  width: 78px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  opacity: .72;
  transition:
    transform .22s ease,
    opacity .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.mockup-thumb:hover{
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(109,74,255,.28);
  box-shadow: 0 8px 18px rgba(109,74,255,.12);
}

.mockup-thumb.is-active{
  opacity: 1;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(109,74,255,.12);
}

.mockup-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1180px){
  .screens-premium-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px){
  .screens-showcase{
    padding: 78px 0;
  }

  .screens-premium-grid{
    grid-template-columns: 1fr;
  }

  .mockup-card{
    padding: 18px;
  }

  .mockup-card__top{
    flex-direction: column;
    align-items: flex-start;
  }
}
/* =========================
   LIGHTBOX IMÁGENES SCREENS
========================= */

.mockup-main-image,
.mockup-thumb{
  cursor: zoom-in;
}

.lightbox{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}

.lightbox.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 18, .85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox__dialog{
  position: relative;
  z-index: 2;

  /* 🔥 clave */
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0;                /* sin padding */
  background: transparent;   /* sin fondo */
  border: none;
  box-shadow: none;

  transform: scale(.94);
  transition: transform .28s ease;
}

.lightbox.is-open .lightbox__dialog{
  transform: scale(1);
}

.lightbox__image{
  display: block;

  max-width: 92vw;
  max-height: 90vh;

  width: auto;
  height: auto;

  border-radius: 16px;
  background: transparent;   /* 🔥 clave */
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.lightbox__close{
  position: absolute;
  top: -14px;
  right: -14px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  transition: transform .18s ease, background .18s ease;
}

.lightbox__close:hover{
  transform: scale(1.06);
  background: #f7f7f7;
}

@media (max-width: 760px){
  .lightbox{
    padding: 18px;
  }

  .lightbox__dialog{
    width: 100%;
    padding: 12px;
    border-radius: 20px;
  }

  .lightbox__image{
    border-radius: 14px;
    max-height: 82vh;
  }

  .lightbox__close{
    top: -10px;
    right: -2px;
  }
}
/* =========================
   MOCKUPS DESKTOP MÁS REALES
========================= */

.mockup-device--desktop{
  position: relative;
  border-radius: 24px 24px 18px 18px;
  overflow: visible;
  padding-bottom: 26px;
  background: linear-gradient(180deg, #f7f7f9, #e8e8ec);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow:
    0 22px 44px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.82);
}

/* pantalla interna */
.mockup-device--desktop .mockup-device__screen{
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  background: #fff;
  border-top: none;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
}

/* barra superior más tipo desktop */
.mockup-device--desktop .mockup-device__bar{
  height: 40px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(240,240,244,.95));
  border-bottom: 1px solid rgba(0,0,0,.08);
}

/* base del monitor */
.mockup-device--desktop::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 34%;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d9d9df, #bdbdc7);
  box-shadow:
    0 8px 18px rgba(0,0,0,.14),
    inset 0 1px 0 rgba(255,255,255,.75);
}

/* pequeño soporte vertical */
.mockup-device--desktop::before{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 16%;
  height: 20px;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(180deg, #cfcfd7, #b7b7c2);
  z-index: -1;
}

/* versión oscura de la tarjeta 3 */
.mockup-device--dark.mockup-device--desktop{
  background: linear-gradient(180deg, #2a2a2f, #17171b);
  border-color: rgba(255,255,255,.08);
  box-shadow:
    0 24px 50px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.mockup-device--dark.mockup-device--desktop .mockup-device__bar{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border-bottom-color: rgba(255,255,255,.08);
}

.mockup-device--dark.mockup-device--desktop::before{
  background: linear-gradient(180deg, #4c4c56, #2f2f37);
}

.mockup-device--dark.mockup-device--desktop::after{
  background: linear-gradient(180deg, #5c5c66, #393943);
  box-shadow:
    0 10px 20px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.flujo-pro{
  padding: 60px 20px;
  background: linear-gradient(to bottom, #ffffff, #f8f7ff);

  border-top: 1px solid rgba(109,74,255,.15);
  border-bottom: 1px solid rgba(109,74,255,.15);
}

.flujo-pro-container{
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(460px, 0.95fr);
  align-items: center;
  gap: 42px;
}

/* VIDEO */
.flujo-video{
  position: relative;
  max-width: 920px; /* achica un poco el video */
  width: 100%;
}

.flujo-video video{
  width: 100%;
  display: block;
  border-radius: 22px;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.10),
    0 8px 24px rgba(109,74,255,0.08);
}

/* TEXTO */
.screens-video-text{
  width: 100%;
  max-width: none;
  align-self: center;
  display: flex;
  justify-content: flex-start;
}

.screens-video-title{
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #25324B;
  margin: 0;
  white-space: nowrap;
}

.screens-video-title .sys{
  color: var(--primary);
  display: inline-block;
  animation: sysFadeUp .7s ease both;
}

.screens-video-title .chef{
  color: var(--secondary);
  display: inline-block;
  animation: chefGlowPulse 2.8s ease-in-out .35s infinite;
}

@keyframes sysFadeUp{
  0%{
    opacity: 0;
    transform: translateY(10px);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes chefGlowPulse{
  0%, 100%{
    text-shadow: 0 0 0 rgba(245,163,0,0);
    transform: translateY(0);
  }
  50%{
    text-shadow: 0 0 14px rgba(245,163,0,.28);
    transform: translateY(-1px);
  }
}

/* RESPONSIVE */
@media (max-width: 900px){
  .flujo-pro{
    padding: 88px 20px;
  }

  .flujo-pro-container{
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .flujo-video{
    max-width: 100%;
  }

  .screens-video-text{
    justify-content: center;
  }

  .screens-video-title{
    white-space: normal;
    font-size: clamp(26px, 6vw, 38px);
  }
}

/* =========================
   PLANES NUEVO
========================= */

.planes-section{
  padding: 0;
  background: #F4F5F8;
}

/* BLOQUE SUPERIOR */

.planes-hero__content{
  max-width: 560px;
}

.planes-hero__eyebrow{
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--secondary);
}

.planes-hero__content h2{
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.04em;
  color: #fff;
}

.planes-hero__content p{
  margin: 0 0 26px;
  max-width: 48ch;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,.78);
}

.planes-hero__actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.planes-hero .btn--primary{
  background: var(--secondary);
  color: #111;
  box-shadow: 0 16px 34px rgba(245,163,0,.22);
}

.planes-hero .btn--ghost{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  color: #fff;
}

.planes-hero{
  background:
    radial-gradient(circle at 72% 30%, rgba(255,255,255,.08), transparent 18%),
    linear-gradient(90deg, #050505 0%, #0B0B0E 45%, #1A1B20 100%);
  color: #fff;
  padding: 0px 0 45px;
  overflow: hidden;
}

.planes-hero__inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center; /* 🔥 centra el contenido */
  gap: 56px;
  min-height: 420px; /* 🔥 define altura del hero */
}

.planes-hero__media{
  display: flex;
  justify-content: center;
  align-self: end; /* 🔥 baja solo la imagen */
}

.planes-hero__media img{
  width: 110%;
  max-width: none;
  display: block;
  transform: translate(30px, 28px);
  border-radius: 0;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.35));
}

#planes{
  scroll-margin-top: 105px;
}

/* BLOQUE INFERIOR */
.planes-cards-wrap{
  padding: 76px 0 96px;
  background: #F4F5F8;
}

.planes-head{
  margin-bottom: 34px;
}

.planes-head h3{
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: #25324B;
}

.planes-head p{
  margin-top: 10px;
  color: #5E677B;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .planes-hero__inner{
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .planes-hero__media{
  align-items: center;
  }

  .planes-hero__media img{
  width: 100%;
  transform: none;
  }
  .planes-hero__content{
    max-width: 100%;
  }

  .pricing--premium{
    grid-template-columns: 1fr;
  }

  .plan-card--featured{
    transform: none;
  }
}
/* =========================
   HERO TIPOGRAFÍA UNIFICADA
========================= */

/* TÍTULOS PRINCIPALES */
.blade-title,
.planes-hero__content h2{
  font-family: var(--font-heading);
  font-weight:500;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
/* SUBTÍTULOS / DESCRIPCIÓN */
.blade-body,
.blade-body--wide,
.planes-hero__content p{
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.92);
}
/* HERO PRINCIPAL (más protagonista) */
.blade-title{
  font-size: clamp(30px, 3.1vw, 50px);
}

/* HERO PLANES (un poco más contenido) */
.planes-hero__content h2{
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.blade-eyebrow,
.planes-hero__eyebrow{
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================
   TÍTULOS DE SECCIÓN UNIFICADOS
========================= */

.section__head h2,
.section__head h3{
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;

  font-size: clamp(28px, 3vw, 40px);
  color: #25324B;
}
.section__head p{
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: #5E677B;
}
/* SOLO sección Screens */
.screens-showcase .section__eyebrow{
  background: var(--primary);
}

.screens-showcase .accent-secondary{
  color: var(--primary);
}
/* =========================
   BASE PLANES / TARJETAS
========================= */

.pricing{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.plan-card{
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px 26px;
  border-radius: 24px;
  background: #fff;
}

.plan-card__top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.plan-card__name{
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.plan-card__subtitle{
  font-family: var(--font-body);
  font-size: .98rem;
  line-height: 1.6;
  max-width: 26ch;
}

.plan-card__price{
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: right;
  white-space: nowrap;
}

.plan-card__price small{
  display: block;
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 0;
}

.plan-card__list{
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 14px;
}

.plan-card__list li{
  position: relative;
  padding-left: 24px;
  font-family: var(--font-body);
  font-size: .98rem;
  line-height: 1.55;
}

.plan-card__list li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--primary);
  font-weight: 900;
}

.plan-card__btn{
  margin-top: auto;
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
}

.plan-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* responsive */
@media (max-width: 980px){
  .pricing{
    grid-template-columns: 1fr;
  }

  .plan-card{
    padding: 28px 22px;
  }

  .plan-card__top{
    flex-direction: column;
    align-items: flex-start;
  }

  .plan-card__price{
    text-align: left;
  }
}

/* =========================
   PLANES - OVERRIDE FINAL
========================= */

.pricing--premium{
  align-items: stretch;
  overflow: visible;
}

.plan-card{
  position: relative;
  z-index: 1;
  transform: none !important;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.plan-card:hover{
  transform: translateY(-8px) !important;
  z-index: 2;
}

/* -------------------------
   TIPOGRAFÍA UNIFICADA
------------------------- */
.plan-card__name,
.plan-card__subtitle,
.plan-card__price,
.plan-card__price small,
.plan-card__list,
.plan-card__list li{
  color: #25324B !important;
}

.plan-card__subtitle,
.plan-card__price small{
  color: #667085 !important;
}

/* -------------------------
   TARJETA 1 - DEMO
------------------------- */
.plan-card--demo{
  background: #FFFFFF !important;
  border: 1px solid rgba(0,0,0,.08) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.05) !important;
}

/* -------------------------
   TARJETA 2 - FULL
------------------------- */
.plan-card--full{
  background: var(--primary) !important;
  border: none !important;
  box-shadow:
    0 24px 54px rgba(109,74,255,.24),
    0 10px 26px rgba(0,0,0,.10) !important;
  padding-top: 72px !important; /* reserva espacio para badge */
}

/* Full conserva el mismo color de tipografía que las demás */
.plan-card--full .plan-card__name,
.plan-card--full .plan-card__subtitle,
.plan-card--full .plan-card__price,
.plan-card--full .plan-card__price small,
.plan-card--full .plan-card__list,
.plan-card--full .plan-card__list li{
  color: #25324B !important;
}

.plan-card--full .plan-card__subtitle,
.plan-card--full .plan-card__price small{
  color: rgba(37,50,75,.78) !important;
}

/* -------------------------
   TARJETA 3 - ESTÁNDAR
------------------------- */
.plan-card--standard{
  background: #FFFFFF !important;
  border: 1px solid rgba(0,0,0,.08) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.05) !important;
  padding-top: 30px !important;
}

/* -------------------------
   BADGE
------------------------- */
.plan-card--full .plan-badge{
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5 !important;
  background: var(--secondary);
  color: #111;
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
}

/* evitamos que el precio se acerque demasiado */
.plan-card__top{
  align-items: flex-start;
  gap: 18px;
}

/* -------------------------
   BOTONES
------------------------- */

/* Tarjetas 1 y 3: mismo color */
.plan-card--demo .btn,
.plan-card--standard .btn{
  background: #6B7280 !important;
  color: #111 !important;
  border: none !important;
}

/* mismo estilo tipográfico en los 3 */
.plan-card .btn{
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(0,0,0,.14);
}

.plan-card .btn:hover{
  color: #111 !important;
  filter: brightness(1.04);
}
/* =========================
   CARD CENTRAL EN PRIMER PLANO
========================= */

.plan-card--full{
  background: var(--primary) !important;
  border: none !important;
  box-shadow:
    0 30px 70px rgba(109,74,255,.28),
    0 12px 30px rgba(0,0,0,.12) !important;
  transform: translateY(-12px) scale(1.015) !important;
  z-index: 3 !important;
}

.plan-card--full:hover{
  transform: translateY(-22px) scale(1.03) !important;
  z-index: 4 !important;
}

/* =========================
   TIPOGRAFÍA BLANCA SOLO EN LA CARD CENTRAL
========================= */

.plan-card--full .plan-card__name,
.plan-card--full .plan-card__subtitle,
.plan-card--full .plan-card__price,
.plan-card--full .plan-card__price small,
.plan-card--full .plan-card__list,
.plan-card--full .plan-card__list li{
  color: #FFFFFF !important;
}

.plan-card--full .plan-card__subtitle,
.plan-card--full .plan-card__price small{
  color: rgba(255,255,255,.88) !important;
}

/* checks también en blanco */
.plan-card--full .plan-card__list li::before{
  color: #FFFFFF !important;
}

/* =========================
   BOTÓN DE LA CARD CENTRAL
========================= */

.plan-card--full .btn{
  background: #FFFFFF !important;
  color: #111 !important;
  border: none !important;
}

/* badge */
.plan-card--full .plan-badge{
  z-index: 5 !important;
}

#contacto{
  background: #1A1530;
  color: #FFFFFF;
}
#contacto .section__head h2{
  color: #FFFFFF;
}

#contacto .section__head p{
  color: rgba(255,255,255,.75);
}

/* tarjetas */
#contacto .card{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
}

/* textos dentro */
#contacto .card h3{
  color: #FFFFFF;
}

#contacto .card p,
#contacto label,
#contacto .note{
  color: rgba(255,255,255,.75);
}

/* inputs */
#contacto input,
#contacto textarea{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #FFFFFF;
}

#contacto input::placeholder{
  color: rgba(255,255,255,.5);
}
.contact-highlight{
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 10px;
}
#contacto .form label{
  font-size: 15px;
  font-weight: 700;
}

#contacto input,
#contacto select{
  font-size: 16px;
  padding: 14px 14px;
}
#contacto select{
  font-family: var(--font-body);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 14px 14px;
  font-size: 16px;
  color: #FFFFFF;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* flechita custom */
#contacto select{
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}
#contacto .contact-highlight{
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  color: #FFFFFF;
}

#contacto .field:first-of-type{
  margin-top: 4px;
}
#contacto select{
  font-family: var(--font-body);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 14px;
  padding-right: 42px;
  font-size: 16px;
  color: #FFFFFF;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
}

#contacto select option{
  color: #222222;
  background: #FFFFFF;
}

#contacto select:focus,
#contacto input:focus{
  border-color: rgba(109,74,255,.45);
  box-shadow: 0 0 0 6px rgba(109,74,255,.18);
}

/* ===== Honeypot anti-spam (invisible) ===== */
.hp-field{
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ===== Checkbox de términos ===== */
#contacto .field--checkbox{
  margin-top: 6px;
}
#contacto .checkbox-label{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  color: rgba(255,255,255,.82);
}
#contacto .checkbox-label input[type="checkbox"]{
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}
#contacto .checkbox-label a{
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(109,74,255,.5);
  transition: text-decoration-color .2s ease;
}
#contacto .checkbox-label a:hover{
  text-decoration-color: var(--primary);
}

/* ===== Feedback del form (success / error) ===== */
#contacto .form-feedback{
  margin: 4px 0 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  min-height: 20px;
  transition: color .2s ease;
}
#contacto .form-feedback--error{
  color: #ff7a7a;
}
#contacto .form-feedback--success{
  color: #7affa8;
}

/* ===== Botón con estado loading ===== */
#contacto #leadSubmit{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  transition: opacity .2s ease;
}
#contacto #leadSubmit .btn-spinner{
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: btn-spin 0.8s linear infinite;
}
#contacto #leadSubmit.is-loading{
  opacity: 0.75;
  cursor: wait;
}
#contacto #leadSubmit.is-loading .btn-spinner{
  display: inline-block;
}
#contacto #leadSubmit.is-loading .btn-label::after{
  content: "...";
}
@keyframes btn-spin{
  to { transform: rotate(360deg); }
}

.whatsapp-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 35px rgba(109,74,255,.34);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, box-shadow .25s ease;
}

.whatsapp-float.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp-float:hover{
  box-shadow: 0 22px 42px rgba(109,74,255,.42);
}

.whatsapp-float svg{
  width: 28px;
  height: 28px;
  fill: currentColor;
}

#contacto{
  background: #1A1530;
  color: #FFFFFF;
  scroll-margin-top: 70px;
}

#contacto .section__head h2{
  color: #FFFFFF;
}

#contacto .section__head p{
  color: rgba(255,255,255,.75);
}

#contacto .card{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
}
/* ===== FIX COLOR CARDS SCREENS ===== */

.screens-showcase .mockup-card{
  background: #eef0f3 !important;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow:
    0 18px 40px rgba(0,0,0,.06),
    0 4px 10px rgba(0,0,0,.025);
}

/* Hover más premium */
.screens-showcase .mockup-card:hover{
  transform: translateY(-8px);
  background: #f8f8fa !important;
  box-shadow:
    0 28px 60px rgba(0,0,0,.10),
    0 10px 24px rgba(109,74,255,.08);
  border-color: rgba(109,74,255,.18);
}
/* ===== CARD DESTACADA (la del medio) ===== */

.screens-premium-grid .mockup-card:nth-child(2){
  transform: scale(1.04);
  background: linear-gradient(180deg, #ffffff, #f4f5f9);
  border: 1px solid rgba(109,74,255,.25);
  box-shadow:
    0 30px 70px rgba(0,0,0,.12),
    0 10px 30px rgba(109,74,255,.12);
  z-index: 2;
}

/* Hover más fuerte que las otras */
.screens-premium-grid .mockup-card:nth-child(2):hover{
  transform: scale(1.06) translateY(-6px);
  box-shadow:
    0 40px 90px rgba(0,0,0,.16),
    0 15px 40px rgba(109,74,255,.18);
}
.screens-video-text{
  max-width: 520px;
  align-self: center;
}

.screens-video-title{
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.4vw, 50px);
  /* font-weight: 500; */
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #25324B;
  margin: 0;
}

.screens-video-title .title-underline{
  position: relative;
  display: inline-block;
  z-index: 1;
}

..screens-video-title{
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #25324B;
  margin: 0;

  /* 👇 clave para que NO corte línea */
  white-space: nowrap;

  /* animación de entrada */
  opacity: 0;
  transform: translateY(12px);
  animation: titleFadeIn .7s ease forwards;
}

/* SYS */
.screens-video-title .sys{
  color: var(--primary);
}

/* CHEF con glow sutil */
.screens-video-title .chef{
  color: var(--secondary);
  position: relative;
  animation: chefGlow 1.4s ease .4s forwards;
}

/* ANIMACIÓN ENTRADA */
@keyframes titleFadeIn{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* GLOW SUTIL (muy fino, no exagerado) */
@keyframes chefGlow{
  0%{
    text-shadow: 0 0 0 rgba(245,163,0,0);
  }
  40%{
    text-shadow: 0 0 12px rgba(245,163,0,.45);
  }
  100%{
    text-shadow: 0 0 6px rgba(245,163,0,.25);
  }
}
.screens-video-text{
  max-width: 100%;
}
/* =========================
   TOP CTA BAR
========================= */

.top-cta{
  width: 100%;
  background: #000; /* estilo tipo Adidas */
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  z-index: 50;
  transition: background .25s ease, color .25s ease;
}

.top-cta:hover{
  background: var(--secondary);
  color: #111;
}
.top-cta a{
  color: inherit;
  text-decoration: none;
  display: block;
}
/* =========================
   TOP CTA ANIMADO PRO
========================= */

.top-cta{
  width: 100%;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 50;
}

/* CONTENEDOR */
.top-cta__inner{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ICONO */
.top-cta__icon{
  font-size: 14px;
  animation: floatIcon 2.2s ease-in-out infinite;
}

/* TEXTO */
/* =========================
   TOP CTA BAR
========================= */

.top-cta{
  width: 100%;
  background: #000;
  color: #fff;
  position: relative;
  z-index: 60;
  overflow: hidden;
}

.top-cta__link{
  display: block;
  color: inherit;
  text-decoration: none;
}

.top-cta__inner{
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  text-align: center;
}

.top-cta__icon{
  font-size: 14px;
  line-height: 1;
  animation: topCtaFloat 2.2s ease-in-out infinite;
}

.top-cta__text-wrap{
  position: relative;
  min-width: 240px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.top-cta__text{
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .28s ease, transform .28s ease;
}

.top-cta__text.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.top-cta__arrow{
  font-size: 14px;
  line-height: 1;
  animation: topCtaArrowMove 1.2s ease-in-out infinite;
}

.top-cta:hover{
  background: var(--secondary);
  color: #111;
}

@keyframes topCtaFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-3px); }
}

@keyframes topCtaArrowMove{
  0%{ transform: translateX(0); opacity: 1; }
  50%{ transform: translateX(5px); opacity: .75; }
  100%{ transform: translateX(0); opacity: 1; }
}

@media (max-width: 640px){
  .top-cta__inner{
    min-height: 40px;
    padding: 9px 14px;
    gap: 8px;
  }

  .top-cta__text-wrap{
    min-width: 190px;
  }

  .top-cta__text{
    font-size: 11px;
    letter-spacing: .06em;
  }
}
  position: relative;
}

/* FLECHA */
.top-cta__arrow{
  font-size: 14px;
  animation: arrowMove 1.2s ease-in-out infinite;
}

/* HOVER */
.top-cta:hover{
  background: var(--secondary);
  color: #111;
}

/* ANIMACIONES */

/* icono flotando */
@keyframes floatIcon{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-3px); }
}

/* flecha que invita */
@keyframes arrowMove{
  0%{ transform: translateX(0); opacity: 1; }
  50%{ transform: translateX(6px); opacity: .7; }
  100%{ transform: translateX(0); opacity: 1; }
}

/* NUEVO LAYOUT CONTACTO */
.contact {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: start;
}

/* columna derecha */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* video */
.contact-video video {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

/* responsive */
@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr;
  }
}

#contacto{
  background: #1A1530;
  color: #FFFFFF;
  scroll-margin-top: 70px;
  padding: 50px 0; /* antes 82px */
}

.contacto-header{
  max-width: 980px;
  margin: 0 auto 28px; /* antes 42px */
  text-align: center;
}

.contacto-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px; /* menos separación */
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--secondary);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .2px;
}

.contacto-titulo{
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.2vw, 40px); /* más equilibrado */
  line-height: 1.1;
  font-weight: 500;
  color: #FFFFFF;
}

.contacto-subtitulo{
  margin: 18px auto 0;
  max-width: 60ch;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: #FFFFFF;
}
/* =========================
   FOOTER FINAL SYSCHEF
========================= */
.site-footer{
  background: #15111F;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.site-footer::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(109,74,255,0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(245,163,0,0.08), transparent 22%);
  pointer-events: none;
}

.site-footer__container{
  padding: 56px 0 36px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 34px;
}

.site-footer__col h4{
  margin: 0 0 18px;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.site-footer__logo{
  display: inline-block;
  margin-bottom: 16px;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #6D4AFF;
}

.site-footer__logo span{
  color: #F5A300;
}

.site-footer__desc{
  max-width: 320px;
  margin: 0;
  color: #b8b8c5;
  font-size: 0.98rem;
  line-height: 1.7;
}

.site-footer__links{
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__links li{
  margin-bottom: 12px;
}

.site-footer__links a,
.site-footer__links span{
  color: #b8b8c5;
  font-size: 0.96rem;
  line-height: 1.6;
  transition: color .25s ease, transform .25s ease;
}

.site-footer__links a:hover{
  color: #F5A300;
  transform: translateX(2px);
}

/* Redes */
.site-footer__social-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__social-list li{
  margin: 0 0 12px;
}

.site-footer__social-link{
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: #b8b8c5;
  font-size: 0.96rem;
  line-height: 1.6;
  transition: color .25s ease, transform .25s ease;
}

.site-footer__social-link:hover{
  color: #F5A300;
  transform: translateX(2px);
}

.site-footer__social-link svg{
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  max-width: 18px;
  max-height: 18px;
  display: block;
  flex: 0 0 18px;
  fill: currentColor;
}

.site-footer__social-link span{
  display: inline-block;
}

/* Subfooter legal */
.site-footer__bottom{
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.site-footer__bottom-inner{
  padding: 16px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer__bottom-links{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer__bottom-links a,
.site-footer__bottom-inner p{
  color: #9090a2;
  font-size: 0.92rem;
}

.site-footer__bottom-inner p{
  margin: 0;
}

.site-footer__bottom-links a:hover{
  color: #F5A300;
}

/* Responsive */
@media (max-width: 991px){
  .site-footer__container{
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .site-footer__desc{
    max-width: 100%;
  }
}

@media (max-width: 767px){
  .site-footer__container,
  .site-footer__bottom-inner{
    width: min(1280px, calc(100% - 32px));
  }

  .site-footer__container{
    grid-template-columns: 1fr;
    padding: 42px 0 28px;
    gap: 26px;
  }

  .site-footer__bottom-inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 0 20px;
  }
}
/* =========================
   LÍNEA SUTIL EN TÍTULOS FOOTER
========================= */
.site-footer__col h4{
  position: relative;
  padding-bottom: 8px;
}

.site-footer__col:not(.site-footer__brand) h4::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  border-radius: 2px;

  /* Línea sutil con identidad */
  background: linear-gradient(90deg, #6D4AFF, #F5A300);

  opacity: 0.6;
}
.site-footer__col:not(.site-footer__brand) h4::after{
  transition: width .3s ease;
}

.site-footer__col:hover h4::after{
  width: 40px;
}