:root{
  --bg:#070A12;
  --bg2:#0B1020;
  --card:#0E1630;
  --text:#EAF0FF;
  --muted:#A9B3D6;
  --line:rgba(255,255,255,.10);
  --brand:#7C5CFF;
  --brand2:#32D6FF;
  --ok:#2AE6A8;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 24px;
  --max: 1160px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 800px at 70% -10%, rgba(124,92,255,.20), transparent 60%),
              radial-gradient(900px 700px at 10% 0%, rgba(50,214,255,.14), transparent 55%),
              linear-gradient(180deg, var(--bg), #050712 60%);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
code{background:rgba(255,255,255,.06); padding:.15rem .35rem;border-radius:8px}

.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.skip{position:absolute;left:-9999px;top:auto}
.skip:focus{left:20px;top:20px;background:#fff;color:#000;padding:10px;border-radius:10px;z-index:9999}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(7,10,18,.65);
  border-bottom:1px solid var(--line);
}
.header__inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:14px}

.brand{display:flex; align-items:center; gap:12px}
.brand__mark{
  width:44px;height:44px;border-radius:14px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 10px 30px rgba(124,92,255,.25);
}
.brand__name{font-weight:800; letter-spacing:.2px}
.brand__tag{font-size:12px; color:var(--muted)}

.nav{display:flex; align-items:center; gap:10px}
.nav__toggle{
  display:none; border:1px solid var(--line); background:rgba(255,255,255,.04);
  border-radius:14px; padding:10px; cursor:pointer;
}
.nav__toggle span{display:block;width:22px;height:2px;background:var(--text);margin:4px 0;border-radius:2px}
.nav__menu{display:flex; align-items:center; gap:8px}
.nav__link{
  padding:10px 12px;border-radius:14px;color:var(--muted);
}
.nav__link:hover{background:rgba(255,255,255,.05); color:var(--text)}
.nav__link.is-active{background:rgba(124,92,255,.16); color:var(--text); border:1px solid rgba(124,92,255,.25)}
.nav__cta{margin-left:6px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:16px; border:1px solid var(--line);
  background:rgba(255,255,255,.04); color:var(--text);
  cursor:pointer; gap:10px;
}
.btn--primary{
  border:none;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 18px 45px rgba(124,92,255,.22);
}
.btn--ghost{background:rgba(255,255,255,.02)}
.btn--full{width:100%}

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px; border:1px solid var(--line); border-radius:999px;
  background:rgba(255,255,255,.03); color:var(--muted);
}

.hero{position:relative; overflow:hidden; padding:64px 0 18px}
.hero__grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:34px; align-items:center}
.hero h1{font-size: clamp(34px, 4vw, 54px); line-height:1.08; margin:12px 0 14px}
.lead{font-size:18px; color:rgba(234,240,255,.88); max-width:60ch}
.hero__actions{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}
.hero__art{filter: drop-shadow(0 30px 70px rgba(0,0,0,.35));}
.hero__bg{position:absolute; inset:auto 0 -220px 0; opacity:.22; pointer-events:none}
.hero__bg img{width:100%}

.hero__stats{display:flex; gap:10px; margin-top:22px; flex-wrap:wrap}
.stat{
  padding:12px 14px; border-radius:16px; border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  min-width: 150px;
}
.stat__kpi{font-weight:900; font-size:18px}
.stat__label{color:var(--muted); font-size:12px}

.section{padding:56px 0}
.section__head{margin-bottom:18px}
.section__head h2{margin:0 0 6px; font-size:28px}
.muted{color:var(--muted)}
.tiny{font-size:12px}

.cards3{display:grid; grid-template-columns: repeat(3,1fr); gap:16px; margin-top:14px}
.card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-radius: var(--radius2);
  padding:18px;
  box-shadow: var(--shadow);
}
.card__icon{width:42px;height:42px; margin-bottom:10px}
.card h3{margin:0 0 8px}
.card p{margin:0 0 10px; color:rgba(234,240,255,.84)}
.link{color:rgba(50,214,255,.95)}
.link:hover{text-decoration:underline}

.section--dark{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.split{display:grid; grid-template-columns: 1.1fr .9fr; gap:18px; align-items:start}

.panel{
  border-radius: var(--radius2);
  padding:18px;
  background: linear-gradient(135deg, rgba(124,92,255,.18), rgba(50,214,255,.10));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}
.panel__title{color:rgba(234,240,255,.92); font-weight:800}
.panel__price{font-size:22px; font-weight:900; margin-top:6px}
.panel__desc{color:rgba(234,240,255,.84); margin:6px 0 10px}
.panel__list{margin:0; padding-left:18px}
.panel__list li{margin:7px 0}

.bullets{list-style:none; padding:0; margin:14px 0 0}
.bullets li{display:flex; align-items:flex-start; gap:10px; margin:10px 0; color:rgba(234,240,255,.86)}
.bullets img{width:18px;height:18px; margin-top:2px; opacity:.9}

.pagehead{padding:46px 0 12px}
.pagehead h1{margin:10px 0 10px; font-size: clamp(30px, 4vw, 44px); line-height:1.12}

.pricing{display:grid; grid-template-columns: repeat(3,1fr); gap:16px}
.pricecard{
  position:relative;
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding:18px;
  background:rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.pricecard__price{font-size:22px; font-weight:900; margin:10px 0}
.checklist{margin:0; padding-left:18px}
.checklist li{margin:8px 0}
.pricecard--featured{
  background: linear-gradient(180deg, rgba(124,92,255,.18), rgba(255,255,255,.03));
  border:1px solid rgba(124,92,255,.35);
}
.badge{
  position:absolute; top:14px; right:14px;
  padding:6px 10px; border-radius:999px;
  background: rgba(42,230,168,.14);
  border:1px solid rgba(42,230,168,.35);
  color: rgba(234,240,255,.95);
  font-size:12px;
}

.note{
  margin-top:18px; padding:14px 16px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}

.domainbox{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius: var(--radius2);
  padding:18px;
  box-shadow: var(--shadow);
}
.domainform{display:flex; gap:10px; align-items:end; flex-wrap:wrap; margin-top:12px}
.field{display:flex; flex-direction:column; gap:6px; flex:1; min-width:220px}
.field span{font-size:12px; color:var(--muted)}
input, select, textarea{
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(5,7,18,.55);
  color:var(--text);
  padding:12px 12px;
  outline:none;
}
textarea{min-height:120px; resize:vertical}
input:focus,select:focus,textarea:focus{border-color:rgba(50,214,255,.45); box-shadow:0 0 0 4px rgba(50,214,255,.12)}

.result{margin-top:12px; padding:12px 14px; border:1px solid rgba(50,214,255,.28); border-radius:16px; background:rgba(50,214,255,.06)}
.formwrap{border:1px solid var(--line); background:rgba(255,255,255,.03); border-radius:var(--radius2); padding:18px; box-shadow:var(--shadow)}
.alert{padding:12px 14px; border-radius:16px; border:1px solid var(--line); margin-bottom:12px}
.alert--success{border-color:rgba(42,230,168,.35); background:rgba(42,230,168,.10)}
.alert--error{border-color:rgba(255,90,120,.35); background:rgba(255,90,120,.10)}

.map{
  margin-top:14px;
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
}
.map iframe{width:100%; height:340px; border:0}

.faq details{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 14px 16px;
  margin: 10px 0;
  background: rgba(255,255,255,.03);
}

.faq summary{
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker{
  display: none;
}

.faq details[open]{
  background: rgba(255,255,255,.05);
}

.faq p{
  margin-top: 10px;
  line-height: 1.6;
  opacity: .9;
}

.footer{
  border-top:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
  padding:34px 0 18px;
}
.footer__grid{display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap:16px}
.footer__name{font-weight:900; font-size:18px}
.footer__title{font-weight:800; margin-bottom:10px}
.footer__link{display:block; color:var(--muted); padding:6px 0}
.footer__link:hover{color:var(--text)}
.footer__badges{margin-top:10px; max-width:220px}
.footer__bottom{
  display:flex; justify-content:space-between; gap:10px;
  border-top:1px solid var(--line);
  padding-top:14px; margin-top:14px; flex-wrap:wrap;
}

.meta{display:flex; gap:10px; align-items:center; margin-top:10px; color:rgba(234,240,255,.86)}
.meta__icon{width:18px;height:18px; opacity:.9}
.dot{width:7px;height:7px;border-radius:999px;background:var(--ok);display:inline-block}

.wa{
  position:fixed; right:16px; bottom:16px;
  padding:12px 14px; border-radius:999px;
  background:rgba(10,16,32,.75);
  border:1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  display:flex; align-items:center; gap:10px;
}
.wa__dot{width:10px;height:10px;border-radius:999px;background:var(--ok); box-shadow:0 0 0 6px rgba(42,230,168,.12)}

@media (max-width: 980px){
  .hero__grid, .split{grid-template-columns: 1fr}
  .cards3, .pricing{grid-template-columns: 1fr}
  .footer__grid{grid-template-columns: 1fr 1fr}
  .nav__toggle{display:inline-flex}
  .nav__menu{
    position:absolute; right:20px; top:70px;
    display:none; flex-direction:column; align-items:stretch;
    background: rgba(7,10,18,.92);
    border:1px solid var(--line);
    border-radius: 18px;
    padding:10px;
    min-width: 220px;
  }
  .nav__menu.is-open{display:flex}
  .nav__link{padding:10px 12px}
}

/* ===============================
 *    FOOTER FEATURES (Ultrapremium)
 *       - Colores por categoría
 *          - Tooltip desktop-only
 *             - Animación stroke SVG
 *                =============================== */

.footer-features{
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:center;
}

.footer-feature{
  --accent: rgba(255,255,255,.85);
  position:relative;
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.85);
  cursor: default;
  transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}

.footer-feature svg{ width:20px; height:20px; }
.footer-feature .stroke{ transition: stroke .18s ease; }

/* Colores por categoría */
.footer-feature--uptime{ --accent: rgba(42,230,168,.95); }
.footer-feature--priority{ --accent: rgba(255,184,77,.98); }
.footer-feature--security{ --accent: rgba(120,180,255,.95); }

.footer-feature:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.24);
  color: var(--accent);
}

/* Tooltip (solo desktop) */
@media (hover:hover) and (pointer:fine){
  .footer-feature::after{
    content: attr(data-tip);
    position:absolute;
    bottom: calc(100% + 10px);
    left:50%;
    transform: translateX(-50%) translateY(2px);
    white-space: nowrap;
    padding:7px 11px;
    font-size:12px;
    border-radius:999px;
    background: rgba(0,0,0,.88);
    color:#fff;
    opacity:0;
    pointer-events:none;
    transition: opacity .18s ease, transform .18s ease;
    border: 1px solid rgba(255,255,255,.12);
  }

  .footer-feature::before{
    content:"";
    position:absolute;
    bottom: calc(100% + 3px);
    left:50%;
    transform: translateX(-50%);
    border:6px solid transparent;
    border-top-color: rgba(0,0,0,.88);
    opacity:0;
    transition: opacity .18s ease;
  }

  .footer-feature:hover::after,
  .footer-feature:hover::before{
    opacity:1;
  }

  .footer-feature:hover::after{
    transform: translateX(-50%) translateY(0);
  }
}

/* Animación "line draw" del trazo SVG (sobria) */
@media (hover:hover) and (pointer:fine){
  .footer-feature .stroke{
    stroke-dasharray: 120;
    stroke-dashoffset: 0;
  }
  .footer-feature:hover .stroke{
    animation: mswStroke 0.7s ease forwards;
    stroke: currentColor;
  }
  @keyframes mswStroke{
    0%{ stroke-dashoffset: 120; opacity:.85; }
    100%{ stroke-dashoffset: 0; opacity:1; }
  }
}

/* Accesibilidad / reduce motion */
@media (prefers-reduced-motion: reduce){
  .footer-feature{ transition:none; box-shadow:none; }
  .footer-feature:hover{ transform:none; }
  .footer-feature:hover .stroke{ animation:none; }
}

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

/* Botón ícono en navbar */
.navicon{
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.navicon .ico{
  width:20px;
  height:20px;
  opacity:.92;
}

/* Asegura que <a.footer-feature> se comporte igual que los <div.footer-feature> */
.footer-feature{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Tamaño del ícono WhatsApp para calzar con los otros SVG (24x24 aprox) */
.footer-feature--wa svg{
  width: 24px;
  height: 24px;
}

/* Color enterprise (sutil) */
.footer-feature--wa{
  color: rgba(42,230,168,.95);
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 14px 18px;
  text-align: center;
  font-size: 13px;
  opacity: .75;
}

