:root{
  --brand-900:#1A51B2;
  --brand-700:#3373D7;
  --brand-100:#E9F1FF;
  --ink:#0B1220;
  --muted:#58627A;
  --card:#FFFFFF;
  --border:rgba(13, 23, 43, .12);
  --shadow: 0 18px 45px rgba(8, 20, 45, .16);
  --radius:18px;
  --radius-sm:12px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:"IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.skip{
  position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden;
}
.skip:focus{left:16px;top:16px;width:auto;height:auto;background:#fff;padding:10px;border-radius:10px;z-index:9999}

.container{width:100%;max-width:1600px;margin:0 auto;padding:0 40px}

.header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.75);
  backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid var(--border);
}

.nav{display:flex;align-items:center;justify-content:space-between;gap:14px;min-height:70px}
.brand{display:flex;align-items:center;gap:10px;text-decoration:none;color:inherit}
.brand__name{
  font-family:"IBM Plex Serif", Georgia, serif;
  font-weight:700;
  letter-spacing:.2px;
  font-size:20px;
}
.brand__mark{display:block;filter: drop-shadow(0 8px 18px rgba(0,0,0,.18));}

.nav__menu{display:flex;align-items:center;gap:18px}
.nav__menu a{
  text-decoration:none;color:var(--ink);
  font-weight:500;
  opacity:.9;
}
.nav__menu a:hover{color:var(--brand-900)}
.nav__toggle{display:none;background:transparent;border:0;padding:10px;border-radius:12px}
.nav__toggle span{display:block;width:22px;height:2px;background:var(--ink);margin:5px 0;border-radius:2px}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:999px;border:1px solid transparent;
  background:linear-gradient(135deg, var(--brand-900), var(--brand-700));
  color:#fff;text-decoration:none;font-weight:600;
  box-shadow: 0 12px 28px rgba(26,81,178,.24);
}
.btn:hover{filter:brightness(1.02)}
.btn--ghost{background:transparent;border-color:rgba(26,81,178,.35);color:var(--brand-900);box-shadow:none}
.btn--ghost:hover{background:rgba(26,81,178,.06)}
.btn--small{padding:10px 14px;font-size:14px}

.hero{
  position:relative;
  padding:64px 0 48px;
  overflow:hidden;
}
.hero__bg{
  position:absolute;inset:-40% -20% auto -20%;
  height:520px;
  background: radial-gradient(closest-side, rgba(51,115,215,.30), rgba(51,115,215,0) 70%),
              radial-gradient(closest-side, rgba(26,81,178,.35), rgba(26,81,178,0) 68%);
  pointer-events:none;
}
.hero__grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:60px;
  align-items:stretch;
  width:100%;
}
.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border-radius:999px;
  background:rgba(26,81,178,.08);
  border:1px solid rgba(26,81,178,.18);
  color:var(--brand-900);
  font-weight:600;
}
.hero h1{
  font-family:"IBM Plex Serif", Georgia, serif;
  font-size:44px;line-height:1.05;margin:14px 0 12px;
}
.lead{font-size:18px;line-height:1.55;color:rgba(11,18,32,.88);max-width:56ch}
.hero__cta{display:flex;gap:12px;flex-wrap:wrap;margin:18px 0 18px}
.hero__trust{display:flex;gap:14px;flex-wrap:wrap;margin-top:14px}
.trust__item{
  background:#fff;border:1px solid var(--border);
  border-radius:14px;padding:10px 12px;
  min-width:140px;
}
.trust__item strong{display:block;font-size:18px;color:var(--brand-900)}
.trust__item span{display:block;font-size:13px;color:var(--muted)}

.hero__card{
  display:flex;flex-direction:column;gap:14px;
}
.hero__lockup{
  width:100%;height:auto;
  border-radius:var(--radius);
  border:1px solid rgba(26,81,178,.10);
  background: linear-gradient(135deg, rgba(26,81,178,.08), rgba(51,115,215,.04));
  padding:18px;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px 18px;
  box-shadow: var(--shadow);
}
.card__title{margin:0 0 10px;font-size:18px}
.check{margin:0;padding-left:18px}
.check li{margin:10px 0;color:rgba(11,18,32,.9)}
.check li::marker{color:var(--brand-900)}

.section{padding:60px 0}
.section--alt{background: linear-gradient(180deg, rgba(233,241,255,.65), rgba(255,255,255,0))}
.section__head{max-width:72ch;margin-bottom:18px}
.section__head h2{
  font-family:"IBM Plex Serif", Georgia, serif;
  font-size:30px;margin:0 0 8px;
}
.section__head p{margin:0;color:var(--muted);font-size:16px;line-height:1.6}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.feature{
  background:#fff;border:1px solid var(--border);
  border-radius:var(--radius-sm);
  padding:16px;
  min-height:132px;
}
.feature h3{margin:0 0 8px;font-size:16px}
.feature p{margin:0;color:var(--muted);line-height:1.6}

.steps{list-style:none;padding:0;margin:0;display:grid;gap:12px}
.steps li{
  display:flex;gap:12px;align-items:flex-start;
  background:#fff;border:1px solid var(--border);
  border-radius:var(--radius-sm);
  padding:14px 14px;
}
.steps__n{
  width:34px;height:34px;border-radius:12px;
  background:rgba(26,81,178,.10);
  color:var(--brand-900);display:flex;align-items:center;justify-content:center;
  font-weight:700;
}
.steps h3{margin:0 0 6px;font-size:16px}
.steps p{margin:0;color:var(--muted);line-height:1.6}

.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.price{
  background:#fff;border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: 0 10px 26px rgba(8, 20, 45, .10);
  position:relative;
}
.price--featured{
  border-color: rgba(26,81,178,.35);
  box-shadow: 0 18px 45px rgba(26,81,178,.18);
}
.badge{
  position:absolute;top:14px;right:14px;
  background:rgba(26,81,178,.10);
  color:var(--brand-900);
  border:1px solid rgba(26,81,178,.20);
  padding:6px 10px;border-radius:999px;
  font-size:12px;font-weight:700;
}
.price h3{margin:0 0 4px}
.price__tag{margin:0 0 12px;color:var(--muted)}
.price ul{margin:0 0 14px;padding-left:18px;color:rgba(11,18,32,.92)}
.price li{margin:10px 0}

.faq{display:grid;gap:10px}
details{
  background:#fff;border:1px solid var(--border);
  border-radius:var(--radius-sm);
  padding:12px 14px;
}
summary{cursor:pointer;font-weight:600}
details p{margin:10px 0 0;color:var(--muted);line-height:1.6}

.contact{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
  align-items:start;
}
.contact__cards{display:grid;gap:10px;margin-top:14px}
.mini{
  background:#fff;border:1px solid var(--border);
  border-radius:var(--radius-sm);
  padding:14px;
}
.mini h3{margin:0 0 6px;font-size:16px}
.mini p{margin:0;color:var(--muted);line-height:1.6}

.form{
  background:#fff;border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
label{display:block;font-weight:600;font-size:14px;margin-bottom:12px}
input,textarea{
  width:100%;
  margin-top:6px;
  border-radius:12px;
  border:1px solid rgba(13, 23, 43, .18);
  padding:12px 12px;
  font:inherit;
}
input:focus,textarea:focus{outline:2px solid rgba(26,81,178,.25);border-color:rgba(26,81,178,.45)}
.form__hint{margin:10px 0 0;color:var(--muted);font-size:12px}

.footer{
  border-top:1px solid var(--border);
  padding:26px 0;
  background:rgba(255,255,255,.8);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1fr auto auto;
  gap:14px;
  align-items:center;
}
.footer__links{display:flex;gap:14px;flex-wrap:wrap}
.footer__links a{text-decoration:none;color:var(--muted);font-weight:500}
.footer__links a:hover{color:var(--brand-900)}
.muted{color:var(--muted)}

@media (max-width: 980px){
  .hero__grid, .contact{grid-template-columns: 1fr}
  .grid3{grid-template-columns: 1fr 1fr}
  .pricing{grid-template-columns: 1fr}
  .footer__grid{grid-template-columns: 1fr; align-items:start}
  .brand__name{font-size:18px}
}

@media (max-width: 720px){
  .nav__toggle{display:inline-flex}
  .nav__menu{
    position:absolute; right:20px; top:70px;
    background:#fff;border:1px solid var(--border);
    border-radius:16px;padding:12px;
    display:none;flex-direction:column;align-items:stretch;
    min-width: 220px;
    box-shadow: 0 14px 36px rgba(8,20,45,.14);
  }
  .nav__menu.is-open{display:flex}
  .hero h1{font-size:36px}
  .grid3{grid-template-columns: 1fr}
}


/* ===== Brand requirements (v1 adjustments) ===== */
.brand--header{
  background: var(--brand-900);
  padding: 8px 14px;
  border-radius: 12px;
  gap: 10px;
}
.brand--header .brand__name,
.brand--header .brand__tagline{
  color: #fff;
}
.brand__stack{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand--header .brand__name{
  font-size: 24px;
}
.brand--header .brand__tagline{
  font-size: 13px;
  opacity: .92;
  font-weight: 600;
}

.hero__lockup--blue{
  display:flex;
  align-items:center;
  gap:14px;
  background: var(--brand-900);
  border-radius: var(--radius);
  padding: 18px 18px;
  border: 1px solid rgba(255,255,255,.16);
}
.hero__lockupMark{
  width: 72px;
  height: 72px;
  display:block;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.22));
}
.hero__lockupText{display:flex;flex-direction:column;gap:6px}
.hero__lockupName{
  font-family:"IBM Plex Serif", Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color:#fff;
  letter-spacing:.2px;
}
.hero__lockupOps{
  font-size: 18px;
  color:#fff;
  opacity:.95;
}
.hero__lockupSlogan{
  font-size: 18px;
  color:#fff;
  opacity:.92;
}
.hero__lockupName, .hero__lockupOps, .hero__lockupSlogan { text-shadow: 0 8px 22px rgba(0,0,0,.22); }


/* ===== Full-width responsive layout tweaks ===== */
@media (max-width: 1024px){
  .container{padding:0 24px}
  .hero__grid{grid-template-columns:1fr; gap:26px;}
  .grid3{grid-template-columns:1fr 1fr;}
  .contact{grid-template-columns:1fr;}
}

@media (max-width: 720px){
  .container{padding:0 18px}
  .hero{padding:52px 0 36px}
  .hero h1{font-size:34px}
}

@media (max-width: 600px){
  .container{padding:0 14px}
  .hero h1{font-size:30px}
  .lead{font-size:16px}
  .brand--header .brand__name{font-size:22px}
  .hero__lockupName{font-size:34px}
  .hero__lockupOps,.hero__lockupSlogan{font-size:16px}
}

.tech{
  padding-top: 30px;
  padding-bottom: 30px;
}

.tech__slider{
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 20px;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.tech__track{
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: techScroll 42s linear infinite;
}

.tech__track img{
  height: 50px;
  max-width: 225px;
  width: auto;
  object-fit: contain;
  flex: 0 0 auto;
  opacity: 0.68;
  filter: grayscale(100%);
  transition: transform .25s ease, opacity .25s ease, filter .25s ease;
}

.tech__track img:hover{
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.04);
}

@keyframes techScroll{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Ajustes individuales de logos */
.tech__track img[alt="Acronis"]{ height: 40px; max-width: 176px; }
.tech__track img[alt="AnyDesk"]{ height: 40px; max-width: 184px; }
.tech__track img[alt="Cisco"]{ height: 80px; max-width: 312px; }
.tech__track img[alt="Digi"]{ height: 40px; max-width: 144px; }
.tech__track img[alt="FileZilla"]{ height: 63px; max-width: 288px; }
.tech__track img[alt="Hostinger"]{ height: 54px; max-width: 288px; }
.tech__track img[alt="HP"]{ height: 48px; max-width: 68px; }
.tech__track img[alt="HPE"]{ height: 54px; max-width: 264px; }
.tech__track img[alt="Microsoft"]{ height: 72px; max-width: 368px; }
.tech__track img[alt="NordVPN"]{ height: 72px; max-width: 328px; }
.tech__track img[alt="QNAP"]{ height: 88px; max-width: 304px; }
.tech__track img[alt="Restic"]{ height: 44px; max-width: 156px; }
.tech__track img[alt="SentinelOne"]{ height: 68px; max-width: 400px; }
.tech__track img[alt="VMware"]{ height: 54px; max-width: 252px; }
.tech__track img[alt="Western Digital"]{ height: 36px; max-width: 200px; }
.tech__track img[alt="WireGuard"]{ height: 54px; max-width: 178px; }

@media (max-width: 768px){
  .tech__track{
    gap: 24px;
    animation-duration: 34s;
  }

  .tech__track img{
    height: 64px;
    max-width: 288px;
  }

  .tech__track img[alt="Acronis"]{ height: 30px; max-width: 132px; }
  .tech__track img[alt="AnyDesk"]{ height: 30px; max-width: 136px; }
  .tech__track img[alt="Cisco"]{ height: 60px; max-width: 232px; }
  .tech__track img[alt="Digi"]{ height: 30px; max-width: 104px; }
  .tech__track img[alt="FileZilla"]{ height: 50px; max-width: 278px; }
  .tech__track img[alt="Hostinger"]{ height: 46px; max-width: 278px; }
  .tech__track img[alt="HP"]{ height: 36px; max-width: 52px; }
  .tech__track img[alt="HPE"]{ height: 56px; max-width: 272px; }
  .tech__track img[alt="Microsoft"]{ height: 70px; max-width: 302px; }
  .tech__track img[alt="NordVPN"]{ height: 56px; max-width: 248px; }
  .tech__track img[alt="QNAP"]{ height: 64px; max-width: 232px; }
  .tech__track img[alt="Restic"]{ height: 32px; max-width: 120px; }
  .tech__track img[alt="SentinelOne"]{ height: 52px; max-width: 304px; }
  .tech__track img[alt="VMware"]{ height: 56px; max-width: 248px; }
  .tech__track img[alt="Western Digital"]{ height: 28px; max-width: 152px; }
  .tech__track img[alt="WireGuard"]{ height: 42px; max-width: 134px; }

}

.tech__slider:hover .tech__track{
  animation-play-state: paused;
}

/* ===== TECH PROVIDERS BACKGROUND ===== */

.tech{
  padding: 20px 0;
  margin-top: 40px;

  background: linear-gradient(
    180deg,
    rgba(26,81,178,0.03) 0%,
    rgba(26,81,178,0.06) 50%,
    rgba(26,81,178,0.03) 100%
  );

  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.tech .section__head{
  text-align:center;
  margin-bottom:25px;
}

.tech .section__head h2{
  color:#1A51B2;
}

/* suaviza bordes del slider */

.tech__slider{
  position:relative;
  overflow:hidden;
  margin-top:20px;

  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );

  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

/* pausa animación al pasar el ratón */

.tech__slider:hover .tech__track{
  animation-play-state: paused;
}
