:root {
      --blue: #0087E8;
      --blue2: #27A0F6;
      --blue-dk: #006ED1;
      --blue-lt: #58B8FF;
      --white: #fff;
      --bg: #F3F8FD;
      --bg2: #EAF4FD;
      --ink: #0F2138;
      --ink2: #34485F;
      --muted: #6E8298;
      --border: #D9E7F3;
      --border2: #C7DDEF;
      --f-disp: 'Sora', sans-serif;
      --f-body: 'DM Sans', sans-serif;
      --f-mono: 'DM Mono', monospace;
      --r: 10px;
      --r-lg: 18px;
      --r-xl: 26px;
      --r-2xl: 36px;
      --shadow-sm: 0 2px 10px rgba(4, 129, 247, .07);
      --shadow-md: 0 8px 32px rgba(4, 129, 247, .11);
      --shadow-lg: 0 20px 60px rgba(4, 129, 247, .15);
    }

    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden
    }

    ::selection {
      background: rgba(4, 129, 247, .15)
    }

    body {
      font-family: var(--f-body);
      background: var(--white);
      color: var(--ink);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased
    }

    /* ── CANVAS BG ── */
    #fiber-bg {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      opacity: .7
    }

    /* ── NAV ── */
    .fm-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 900;
      padding: 14px 0;
      transition: all .35s
    }

    .fm-nav.scrolled {
      background: rgba(255, 255, 255, .94);
      backdrop-filter: blur(24px);
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-sm)
    }

    .fm-nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px
    }

    .fm-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none !important;
      cursor: pointer
    }

    .brand-logo-mark {
      display: block;
      width: 56px;
      height: 56px;
      padding: 4px;
      border-radius: 18px;
      object-fit: cover;
      background: rgba(255,255,255,.92);
      border: 1px solid rgba(0,135,232,.12);
      box-shadow: 0 10px 22px rgba(0, 135, 232, .14)
    }

    .drawer-logo-mark {
      display: block;
      width: 48px;
      height: 48px;
      padding: 3px;
      border-radius: 16px;
      object-fit: cover;
      background: rgba(255,255,255,.95);
      border: 1px solid rgba(0,135,232,.14);
      box-shadow: 0 10px 20px rgba(0, 135, 232, .12)
    }

    .footer-logo-img {
      display: block;
      width: 110px;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 8px 18px rgba(0, 135, 232, .18))
    }

    .fm-logo-wrap {
      position: relative;
      width: 48px;
      height: 48px;
      flex-shrink: 0
    }

    .fm-logo-wrap svg {
      display: block;
      width: 48px;
      height: 48px
    }

    .ring-anim {
      position: absolute;
      inset: -5px;
      border-radius: 50%;
      border: 1.5px solid rgba(4, 129, 247, .4);
      animation: ringP 3.5s ease-in-out infinite
    }

    .ring-anim2 {
      position: absolute;
      inset: -12px;
      border-radius: 50%;
      border: 1px solid rgba(4, 129, 247, .12);
      animation: ringP 3.5s ease-in-out infinite .9s
    }

    @keyframes ringP {
      0%, 100% { transform: scale(1); opacity: .4 }
      50% { transform: scale(1.09); opacity: .85 }
    }

    .fm-brand-txt {
      display: flex;
      flex-direction: column;
      line-height: 1
    }

    .fm-brand-name {
      font-family: var(--f-disp);
      font-size: 20px;
      font-weight: 800;
      letter-spacing: -.5px;
      color: var(--ink)
    }

    .fm-brand-name span {
      color: var(--blue)
    }

    .fm-brand-sub {
      font-size: 9.5px;
      color: var(--muted);
      letter-spacing: 2.5px;
      text-transform: uppercase;
      margin-top: 4px;
      font-family: var(--f-mono)
    }

    .fm-nav-links {
      display: flex;
      align-items: center;
      gap: 2px
    }

    .fm-nav-link {
      font-size: 14px;
      font-weight: 500;
      color: var(--ink2) !important;
      text-decoration: none !important;
      padding: 8px 15px;
      border-radius: 9px;
      transition: background .2s, color .2s;
      cursor: pointer;
      border: none;
      background: none;
      font-family: var(--f-body)
    }

    .fm-nav-link:hover,
    .fm-nav-link.active {
      color: var(--blue) !important;
      background: rgba(4, 129, 247, .07)
    }

    .fm-nav-link.active {
      font-weight: 600
    }

    .btn-nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      padding: 9px 20px;
      border-radius: 10px;
      background: var(--blue);
      color: #fff !important;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none !important;
      transition: all .2s;
      box-shadow: 0 3px 14px rgba(4, 129, 247, .3)
    }

    .btn-nav-label {
      white-space: nowrap
    }

    .btn-nav-cta:hover {
      background: var(--blue-dk);
      color: #fff !important;
      box-shadow: 0 6px 22px rgba(4, 129, 247, .42);
      transform: translateY(-1px)
    }

    .fm-hamburger {
      background: none;
      border: 1.5px solid var(--border);
      color: var(--ink);
      font-size: 20px;
      cursor: pointer;
      padding: 7px 10px;
      border-radius: 9px;
      line-height: 1;
      transition: all .2s
    }

    .fm-hamburger:hover {
      border-color: var(--blue);
      color: var(--blue)
    }

    @media(max-width:991px) {
      .fm-nav-links {
        display: none !important
      }
    }

    @media(min-width:992px) {
      .fm-hamburger {
        display: none !important
      }
    }

    /* DRAWER */
    .fm-drawer {
      background: var(--white) !important;
      border-left: 1px solid var(--border) !important;
      max-width: 285px
    }

    .fm-drawer .offcanvas-header {
      border-bottom: 1px solid var(--border)
    }

    .drw-link {
      font-size: 16px;
      padding: 13px 16px;
      border-radius: 12px;
      display: block;
      color: var(--ink2) !important;
      text-decoration: none !important;
      cursor: pointer;
      transition: background .2s, color .2s;
      border: none;
      background: none;
      width: 100%;
      text-align: left;
      font-family: var(--f-body)
    }

    .drw-link:hover {
      color: var(--blue) !important;
      background: rgba(4, 129, 247, .06)
    }

    /* ── SHARED ── */
    .section {
      padding: 120px 0 90px;
      position: relative;
      z-index: 1
    }

    .section-sm {
      padding: 80px 0 70px;
      position: relative;
      z-index: 1
    }

    .eyebrow {
      font-family: var(--f-mono);
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 14px;
      display: block
    }

    .fm-title {
      font-family: var(--f-disp);
      font-size: clamp(26px, 4.2vw, 48px);
      font-weight: 800;
      letter-spacing: -1.5px;
      color: var(--ink);
      margin-bottom: 18px;
      line-height: 1.06
    }

    .fm-title em {
      font-style: normal;
      color: var(--blue)
    }

    .fm-body {
      font-size: 16px;
      color: var(--ink2);
      line-height: 1.78;
      font-weight: 300
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-family: var(--f-mono);
      font-size: 10.5px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--blue);
      padding: 7px 16px;
      background: rgba(4, 129, 247, .07);
      border: 1px solid rgba(4, 129, 247, .18);
      border-radius: 100px;
      margin-bottom: 26px
    }

    .dot-pulse {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--blue);
      animation: blink 2s ease-in-out infinite;
      flex-shrink: 0
    }

    @keyframes blink {
      0%, 100% { opacity: 1 }
      50% { opacity: .2 }
    }

    /* BUTTONS */
    .btn-p {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 28px;
      border-radius: 11px;
      background: var(--blue);
      color: #fff !important;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none !important;
      border: none;
      cursor: pointer;
      transition: all .22s;
      box-shadow: 0 4px 18px rgba(4, 129, 247, .28);
      font-family: var(--f-body);
      white-space: nowrap
    }

    .btn-p:hover {
      background: var(--blue-dk);
      color: #fff !important;
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(4, 129, 247, .38)
    }

    .btn-g {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 24px;
      border-radius: 11px;
      background: transparent;
      color: var(--ink) !important;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none !important;
      border: 1.5px solid var(--border2);
      cursor: pointer;
      transition: all .22s;
      font-family: var(--f-body);
      white-space: nowrap
    }

    .btn-g:hover {
      border-color: var(--blue);
      color: var(--blue) !important;
      background: rgba(4, 129, 247, .04)
    }

    .btn-lg {
      padding: 15px 32px !important;
      font-size: 15px !important
    }

    /* REVEAL ANIMATIONS */
    .rev {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1)
    }

    .rev.on {
      opacity: 1;
      transform: translateY(0)
    }

    .rev-l {
      opacity: 0;
      transform: translateX(-30px);
      transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1)
    }

    .rev-l.on {
      opacity: 1;
      transform: translateX(0)
    }

    .rev-r {
      opacity: 0;
      transform: translateX(30px);
      transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1)
    }

    .rev-r.on {
      opacity: 1;
      transform: translateX(0)
    }

    /* ══════════════
   HERO
══════════════ */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 130px 0 90px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(150deg, #F6F9FD 0%, #EDF4FB 55%, #E2EFF9 100%)
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 65% 40%, rgba(4, 129, 247, .055), transparent 68%)
    }

    .hero-title {
      font-family: var(--f-disp);
      font-size: clamp(36px, 5.8vw, 76px);
      font-weight: 800;
      line-height: 1.02;
      letter-spacing: -2.5px;
      color: var(--ink);
      margin-bottom: 22px
    }

    .hero-title em {
      font-style: normal;
      color: var(--blue)
    }

    .hero-lead {
      font-size: 17px;
      color: var(--ink2);
      line-height: 1.76;
      max-width: 460px;
      margin-bottom: 36px;
      font-weight: 300
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap
    }

    @media(max-width:480px) {
      .hero-actions>* {
        width: 100%;
        justify-content: center
      }
    }

    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 0;
      border-top: 1px solid var(--border);
      margin-top: 44px;
      padding-top: 26px
    }

    .hero-stat {
      flex: 1;
      min-width: 100px;
      padding-right: 20px;
      margin-bottom: 10px
    }

    .hero-stat-num {
      font-family: var(--f-disp);
      font-size: 26px;
      font-weight: 800;
      color: var(--ink);
      letter-spacing: -1px;
      display: block;
      margin-bottom: 3px
    }

    .hero-stat-num .u {
      font-size: .44em;
      color: var(--muted);
      font-weight: 400
    }

    .hero-stat-label {
      font-size: 10.5px;
      color: var(--muted);
      font-family: var(--f-mono);
      letter-spacing: .5px
    }

    /* HERO CARD */
    .hero-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-2xl);
      padding: 30px;
      box-shadow: var(--shadow-lg);
      position: relative
    }

    @media(max-width:991px) {
      .hero-card {
        margin-top: 40px
      }
    }

    .price-badge {
      position: absolute;
      top: -18px;
      right: 28px;
      background: var(--blue);
      color: #fff;
      padding: 10px 18px;
      border-radius: 13px;
      box-shadow: 0 8px 28px rgba(4, 129, 247, .42)
    }

    .price-badge-num {
      font-family: var(--f-disp);
      font-size: 20px;
      font-weight: 800;
      line-height: 1
    }

    .price-badge-sub {
      font-size: 9.5px;
      opacity: .7;
      margin-top: 2px;
      font-family: var(--f-mono)
    }

    @media(max-width:991px) {
      .price-badge {
        display: none
      }
    }

    .logo-showcase {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 26px 18px 20px;
      background: linear-gradient(145deg, #EDF7FF, #F8FBFF);
      border: 1px solid rgba(0, 135, 232, .12);
      border-radius: var(--r-xl);
      margin-bottom: 24px;
      position: relative;
      overflow: hidden
    }

    .logo-showcase::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(0, 135, 232, .09), transparent 68%)
    }

    .network-visual {
      position: relative;
      width: 100%;
      max-width: 320px;
      height: 150px;
      margin-bottom: 16px;
      z-index: 1
    }

    .network-hub {
      position: absolute;
      top: 28px;
      left: 50%;
      transform: translateX(-50%);
      width: 82px;
      height: 82px;
      border-radius: 24px;
      background: linear-gradient(145deg, var(--blue), var(--blue-dk));
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 35px;
      box-shadow: 0 18px 34px rgba(0, 135, 232, .26);
      z-index: 2
    }

    .network-hub::before,
    .network-hub::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      inset: -10px;
      border: 2px solid rgba(0, 135, 232, .18)
    }

    .network-hub::after {
      inset: -22px;
      border-width: 1px;
      border-color: rgba(0, 135, 232, .12)
    }

    .network-node {
      position: absolute;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.94);
      border: 1px solid var(--border);
      box-shadow: 0 10px 24px rgba(15, 33, 56, .08);
      font-size: 12px;
      font-weight: 700;
      color: var(--ink2)
    }

    .network-node i {
      color: var(--blue);
      animation: pulseIcon 2.4s ease-in-out infinite
    }

    .node-home {
      left: 0;
      top: 40px;
      animation-delay: .15s
    }

    .node-business {
      right: 0;
      top: 36px;
      animation-delay: .4s
    }

    /* node-stream debajo del hub, sin solaparse */
    .node-stream {
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      animation-delay: .8s;
      z-index: 1
    }

    .ls-name {
      font-family: var(--f-disp);
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -.5px;
      color: var(--ink);
      position: relative;
      z-index: 1;
      text-align: center
    }

    .ls-name span {
      color: var(--blue)
    }

    .ls-sub {
      font-size: 10px;
      color: var(--muted);
      letter-spacing: 1.6px;
      text-transform: uppercase;
      font-family: var(--f-mono);
      margin-top: 4px;
      position: relative;
      z-index: 1;
      text-align: center
    }

    .network-hub i {
      animation: pulseIcon 2.4s ease-in-out infinite
    }

    /* hub siempre al frente */
    .network-hub {
      z-index: 2
    }

    @keyframes pulseIcon {
      0%,100% { transform: scale(1); opacity: 1 }
      50% { transform: scale(1.12); opacity: .9 }
    }

    .panel-label {
      font-family: var(--f-mono);
      font-size: 9.5px;
      color: var(--muted);
      letter-spacing: 2.5px;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px
    }

    .panel-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border)
    }

    .speed-display {
      font-family: var(--f-disp);
      font-size: clamp(52px, 8vw, 80px);
      font-weight: 800;
      color: var(--ink);
      line-height: 1;
      letter-spacing: -3px;
      margin-bottom: 4px
    }

    .speed-display .u {
      font-size: .3em;
      color: var(--muted);
      font-weight: 400
    }

    .bar-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 9px
    }

    .bar-label {
      font-size: 10.5px;
      color: var(--muted);
      font-family: var(--f-mono);
      width: 56px
    }

    .bar-track {
      flex: 1;
      height: 3.5px;
      background: var(--bg2);
      border-radius: 4px;
      overflow: hidden
    }

    .bar-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--blue), var(--blue2));
      border-radius: 4px;
      animation: barLoad 1.2s cubic-bezier(.16, 1, .3, 1) both
    }

    @keyframes barLoad {
      from { width: 0 !important }
    }

    .bar-val {
      font-family: var(--f-mono);
      font-size: 10.5px;
      color: var(--ink2);
      width: 54px;
      text-align: right
    }

    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 15px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 100px;
      margin-top: 16px;
      font-family: var(--f-mono);
      font-size: 10.5px;
      color: var(--ink2)
    }

    .status-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #22c55e;
      animation: blink 2s ease-in-out infinite;
      flex-shrink: 0
    }

    /* ══════════════
   NOSOTROS
══════════════ */
    .about-section {
      background: var(--bg)
    }

    .about-visual {
      background: linear-gradient(140deg, #0A1B33, #0C2A52, #091E42);
      border-radius: var(--r-xl);
      min-height: 380px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(0, 135, 232, .18);
      box-shadow: var(--shadow-md)
    }

    .about-glow {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 45%, rgba(0, 135, 232, .18), transparent 62%)
    }

    .about-grid {
      position: absolute;
      inset: 0;
      opacity: .035;
      background-image: linear-gradient(rgba(0, 135, 232, 1)1px, transparent 1px), linear-gradient(90deg, rgba(0, 135, 232, 1)1px, transparent 1px);
      background-size: 38px 38px
    }

    .about-network-visual {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 340px;
      z-index: 2
    }

    .signal-wave {
      position: absolute;
      left: 50%;
      top: 40%;
      border-radius: 50%;
      border: 1px solid rgba(88, 184, 255, .16);
      transform: translate(-50%, -50%);
      animation: ringP 4s ease-in-out infinite
    }

    .sw1 { width: 130px; height: 130px }
    .sw2 { width: 200px; height: 200px; animation-delay: .6s }
    .sw3 { width: 280px; height: 280px; animation-delay: 1.2s }

    .router-device {
      position: absolute;
      left: 50%;
      top: 47%;
      transform: translate(-50%, -50%);
      width: 180px;
      height: 126px
    }

    .router-top {
      position: absolute;
      left: 50%;
      bottom: 26px;
      transform: translateX(-50%);
      width: 160px;
      height: 68px;
      border-radius: 22px;
      background: linear-gradient(145deg, #EAF5FF, #B8DDFF 70%, #8AC6FF);
      box-shadow: 0 24px 38px rgba(0,0,0,.18), inset 0 -12px 20px rgba(255,255,255,.32)
    }

    .router-front {
      position: absolute;
      left: 50%;
      bottom: 38px;
      transform: translateX(-50%);
      width: 110px;
      display: flex;
      justify-content: center;
      gap: 8px
    }

    .router-light {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #22c55e;
      box-shadow: 0 0 14px rgba(34,197,94,.7)
    }

    .router-ant {
      position: absolute;
      width: 8px;
      height: 64px;
      top: 4px;
      background: linear-gradient(180deg, #8AC6FF, #EAF5FF);
      border-radius: 999px
    }

    .ant-left { left: 34px; transform: rotate(-14deg) }
    .ant-right { right: 34px; transform: rotate(14deg) }

    .float-chip {
      position: absolute;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.12);
      backdrop-filter: blur(10px);
      color: #fff;
      font-weight: 700;
      box-shadow: 0 14px 26px rgba(0,0,0,.16)
    }

    .float-chip i {
      color: #8FD2FF;
      animation: pulseIcon 2.6s ease-in-out infinite
    }

    .chip-home { left: 22px; top: 34px }
    .chip-business { right: 20px; top: 66px; animation-delay: .4s }
    .chip-support { left: 50%; bottom: 56px; transform: translateX(-50%); animation-delay: .8s }

    .ab-badge-bl {
      position: absolute;
      bottom: 18px;
      left: 18px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .1);
      backdrop-filter: blur(12px);
      border-radius: 11px;
      padding: 10px 14px;
      display: flex;
      align-items: center;
      gap: 10px
    }

    .ab-badge-tr {
      position: absolute;
      top: 18px;
      right: 18px;
      background: var(--blue);
      border-radius: 10px;
      padding: 9px 13px;
      text-align: center
    }

    .about-feat {
      display: flex;
      align-items: flex-start;
      gap: 13px;
      padding: 16px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r);
      transition: all .3s
    }

    .about-feat:hover {
      border-color: rgba(4, 129, 247, .25);
      box-shadow: var(--shadow-sm);
      transform: translateX(5px)
    }

    .about-feat-icon {
      width: 38px;
      height: 38px;
      border-radius: 9px;
      background: rgba(4, 129, 247, .07);
      border: 1px solid rgba(4, 129, 247, .13);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0
    }

    .about-feat-title {
      font-family: var(--f-disp);
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 3px;
      color: var(--ink)
    }

    .about-feat-text {
      font-size: 12.5px;
      color: var(--muted);
      line-height: 1.6
    }

    /* ══════════════
   SERVICIOS
══════════════ */
    .svc-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      overflow: hidden;
      transition: all .35s;
      height: 100%
    }

    .svc-card:hover {
      border-color: rgba(4, 129, 247, .25);
      box-shadow: var(--shadow-md);
      transform: translateY(-5px)
    }

    .svc-icon {
      height: 140px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #EBF5FF, #F2F9FF);
      border-bottom: 1px solid var(--border);
      font-size: 48px;
      position: relative;
      overflow: hidden
    }

    .svc-icon::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 60%, rgba(4, 129, 247, .06), transparent 65%)
    }

    .svc-body {
      padding: 22px
    }

    .svc-body h4 {
      font-family: var(--f-disp);
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--ink)
    }

    .svc-body p {
      font-size: 13.5px;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 16px
    }

    .steps-wrap {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      overflow: hidden
    }

    .step {
      background: var(--white);
      padding: 32px 24px;
      transition: background .2s
    }

    .step:hover {
      background: var(--bg)
    }

    .step-num {
      font-family: var(--f-mono);
      font-size: 9.5px;
      color: var(--muted);
      letter-spacing: 2px;
      margin-bottom: 18px;
      display: block
    }

    .step h4 {
      font-family: var(--f-disp);
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--ink)
    }

    .step p {
      font-size: 13.5px;
      color: var(--muted);
      line-height: 1.68
    }

    @media(max-width:768px) {
      .steps-wrap {
        grid-template-columns: 1fr
      }
    }

    .stat-row {
      display: flex;
      align-items: center;
      gap: 13px;
      padding: 14px 18px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--r);
      transition: border-color .25s
    }

    .stat-row:hover {
      border-color: rgba(4, 129, 247, .25)
    }

    .stat-label {
      font-size: 9.5px;
      color: var(--muted);
      font-family: var(--f-mono);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 2px
    }

    .stat-val {
      font-family: var(--f-disp);
      font-size: 16px;
      font-weight: 800;
      color: var(--ink)
    }

    .tech-wrap {
      background: linear-gradient(135deg, #0A1B33, #0A1F3A);
      border-radius: var(--r-xl);
      overflow: hidden;
      border: 1px solid rgba(4, 129, 247, .16);
      position: relative
    }

    #tech-c {
      display: block;
      width: 100%;
      height: 280px
    }

    .tech-bdg-bl {
      position: absolute;
      bottom: 16px;
      left: 16px;
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .1);
      backdrop-filter: blur(10px);
      border-radius: 10px;
      padding: 8px 13px
    }

    .tech-bdg-bl-lbl {
      font-family: var(--f-mono);
      font-size: 8.5px;
      color: rgba(255, 255, 255, .35);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 2px
    }

    .tech-bdg-bl-val {
      font-family: var(--f-disp);
      font-size: 13px;
      font-weight: 700;
      color: #fff
    }

    .tech-bdg-tr {
      position: absolute;
      top: 16px;
      right: 16px;
      background: var(--blue);
      border-radius: 9px;
      padding: 8px 12px
    }

    .tech-bdg-tr-num {
      font-family: var(--f-disp);
      font-size: 16px;
      font-weight: 800;
      color: #fff;
      line-height: 1
    }

    .tech-bdg-tr-sub {
      font-size: 8.5px;
      color: rgba(255, 255, 255, .62);
      font-family: var(--f-mono)
    }

    /* ══════════════
   PLANES
══════════════ */
    .plans-section {
      background: var(--bg)
    }

    .plans-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      overflow: hidden
    }

    .plan-card {
      background: var(--white);
      padding: 26px 20px;
      display: flex;
      flex-direction: column;
      transition: background .2s;
      position: relative
    }

    .plan-card:hover {
      background: var(--bg)
    }

    .plan-card.featured {
      background: var(--ink);
      color: #fff
    }

    .plan-card.featured:hover {
      background: #1d2e3d
    }

    .plan-tier {
      font-family: var(--f-mono);
      font-size: 8.5px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 12px;
      display: block
    }

    .plan-card.featured .plan-tier {
      color: rgba(255, 255, 255, .34)
    }

    .plan-badge {
      font-family: var(--f-mono);
      font-size: 8.5px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .46);
      margin-bottom: 12px;
      display: block
    }

    .plan-speed {
      font-family: var(--f-disp);
      font-size: 46px;
      font-weight: 800;
      color: var(--ink);
      line-height: 1;
      letter-spacing: -2.5px
    }

    .plan-card.featured .plan-speed {
      color: #fff
    }

    .plan-speed sup {
      font-size: .24em;
      color: var(--muted);
      font-weight: 400;
      vertical-align: super
    }

    .plan-card.featured .plan-speed sup {
      color: rgba(255, 255, 255, .36)
    }

    .plan-price {
      font-family: var(--f-disp);
      font-size: 24px;
      font-weight: 700;
      color: var(--ink);
      margin-top: 10px;
      line-height: 1
    }

    .plan-card.featured .plan-price {
      color: #fff
    }

    .plan-price-curr {
      font-size: .5em;
      color: var(--muted);
      font-weight: 400
    }

    .plan-card.featured .plan-price-curr {
      color: rgba(255, 255, 255, .36)
    }

    .plan-price-period {
      font-size: .33em;
      color: var(--muted)
    }

    .plan-card.featured .plan-price-period {
      color: rgba(255, 255, 255, .26)
    }

    .plan-divider {
      height: 1px;
      background: var(--border);
      margin: 16px 0
    }

    .plan-card.featured .plan-divider {
      background: rgba(255, 255, 255, .09)
    }

    .plan-features {
      list-style: none;
      padding: 0;
      flex: 1;
      margin-bottom: 16px
    }

    .plan-features li {
      font-size: 11.5px;
      color: var(--ink2);
      padding: 5px 0;
      display: flex;
      align-items: center;
      gap: 8px;
      border-bottom: 1px solid var(--bg2)
    }

    .plan-features li:last-child {
      border-bottom: none
    }

    .plan-card.featured .plan-features li {
      color: rgba(255, 255, 255, .58);
      border-color: rgba(255, 255, 255, .07)
    }

    .plan-features li i {
      color: var(--blue);
      font-size: 11px;
      flex-shrink: 0
    }

    .plan-card.featured .plan-features li i {
      color: rgba(255, 255, 255, .4)
    }

    .plan-btn {
      display: block;
      text-align: center;
      padding: 11px 14px;
      border-radius: 9px;
      font-size: 12.5px;
      font-weight: 600;
      text-decoration: none !important;
      transition: all .22s;
      border: 1.5px solid var(--border);
      color: var(--ink) !important;
      background: transparent;
      cursor: pointer;
      width: 100%;
      font-family: var(--f-body)
    }

    .plan-btn:hover {
      background: var(--blue);
      color: #fff !important;
      border-color: var(--blue)
    }

    .plan-card.featured .plan-btn {
      background: #fff;
      color: var(--ink) !important;
      border-color: transparent
    }

    .plan-card.featured .plan-btn:hover {
      background: rgba(4, 129, 247, .12);
      color: var(--blue) !important
    }

    @media(max-width:768px) {
      .plans-grid {
        grid-template-columns: 1fr 1fr
      }
    }

    @media(max-width:480px) {
      .plans-grid {
        grid-template-columns: 1fr
      }
    }

    /* PROMO */
    .fm-promo {
      background: linear-gradient(135deg, #0A1B33, #0A2246, #0C2E52);
      border-radius: var(--r-xl);
      padding: 48px 44px;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(4, 129, 247, .17);
      box-shadow: var(--shadow-lg)
    }

    .promo-glow {
      position: absolute;
      left: -60px;
      bottom: -60px;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(4, 129, 247, .12), transparent 65%)
    }

    .fm-promo h2 {
      font-family: var(--f-disp);
      font-size: clamp(22px, 4.5vw, 46px);
      font-weight: 800;
      color: #fff;
      margin-bottom: 10px;
      line-height: 1.05;
      letter-spacing: -1.8px
    }

    .promo-tag {
      font-family: var(--f-mono);
      font-size: 9.5px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .36);
      margin-bottom: 11px;
      display: block
    }

    .promo-price {
      font-family: var(--f-disp);
      font-size: clamp(50px, 8vw, 80px);
      font-weight: 800;
      color: #fff;
      line-height: 1;
      letter-spacing: -3px
    }

    .promo-price sup {
      font-size: .3em;
      color: rgba(255, 255, 255, .36);
      font-weight: 400;
      vertical-align: super
    }

    .promo-price sub {
      font-size: .21em;
      color: rgba(255, 255, 255, .26)
    }

    .promo-note {
      font-size: 12.5px;
      color: rgba(255, 255, 255, .3);
      margin-top: 10px;
      font-family: var(--f-mono)
    }

    .btn-promo {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 13px 26px;
      background: #fff;
      color: var(--ink) !important;
      border-radius: 11px;
      font-weight: 700;
      font-size: 14px;
      text-decoration: none !important;
      transition: all .2s;
      font-family: var(--f-body)
    }

    .btn-promo:hover {
      background: rgba(4, 129, 247, .1);
      color: var(--blue) !important
    }

    @media(max-width:768px) {
      .fm-promo {
        padding: 32px 22px
      }
    }

    /* ══════════════
   VENTAJAS
══════════════ */
    .feat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      overflow: hidden
    }

    .feat-cell {
      background: var(--white);
      padding: 26px 22px;
      transition: background .2s
    }

    .feat-cell:hover {
      background: var(--bg)
    }

    .feat-num {
      font-family: var(--f-mono);
      font-size: 9.5px;
      color: var(--muted);
      letter-spacing: 1.5px;
      margin-bottom: 14px;
      display: block
    }

    .feat-icon {
      font-size: 24px;
      margin-bottom: 12px;
      display: block;
      line-height: 1
    }

    .feat-cell h4 {
      font-family: var(--f-disp);
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 7px;
      color: var(--ink)
    }

    .feat-cell p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.65
    }

    @media(max-width:768px) {
      .feat-grid {
        grid-template-columns: 1fr 1fr
      }
    }

    @media(max-width:480px) {
      .feat-grid {
        grid-template-columns: 1fr
      }
    }

    /* ══════════════
   TESTIMONIOS
══════════════ */
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
      gap: 18px
    }

    .testi-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 22px;
      transition: all .3s
    }

    .testi-card:hover {
      border-color: rgba(4, 129, 247, .25);
      box-shadow: var(--shadow-md);
      transform: translateY(-4px)
    }

    .testi-stars {
      color: #F59E0B;
      font-size: 12px;
      margin-bottom: 12px;
      letter-spacing: 2px
    }

    .testi-text {
      font-size: 13.5px;
      color: var(--ink2);
      line-height: 1.78;
      margin-bottom: 16px;
      font-style: italic
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 10px
    }

    .testi-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--blue2));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--f-disp);
      font-size: 12px;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0
    }

    .testi-name {
      font-family: var(--f-disp);
      font-size: 13px;
      font-weight: 700;
      color: var(--ink)
    }

    .testi-role {
      font-size: 10.5px;
      color: var(--muted);
      font-family: var(--f-mono)
    }

    /* ══════════════
   CONTACTO
══════════════ */
    .contact-section {
      background: linear-gradient(150deg, var(--bg) 0%, #EBF5FF 100%)
    }

    .contact-wrap {
      background: rgba(255, 255, 255, .78);
      border: 1px solid rgba(4, 129, 247, .10);
      border-radius: var(--r-2xl);
      padding: clamp(24px, 3.5vw, 38px);
      box-shadow: var(--shadow-md);
      backdrop-filter: blur(10px)
    }

    .contact-lead {
      max-width: 540px
    }

    .contact-panel {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      padding: 24px;
      box-shadow: var(--shadow-sm);
      height: 100%
    }

    .contact-panel-label {
      font-family: var(--f-mono);
      font-size: 9.5px;
      color: var(--muted);
      letter-spacing: 2.5px;
      text-transform: uppercase;
      margin-bottom: 16px;
      display: block
    }

    .contact-info-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none
    }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px 15px;
      border-radius: 14px;
      background: var(--bg);
      border: 1px solid var(--border)
    }

    .contact-info-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: rgba(4, 129, 247, .08);
      border: 1px solid rgba(4, 129, 247, .12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blue);
      font-size: 15px;
      flex-shrink: 0
    }

    .contact-info-item strong {
      display: block;
      font-family: var(--f-disp);
      font-size: 13.5px;
      color: var(--ink);
      margin-bottom: 3px
    }

    .contact-info-item span {
      font-size: 13px;
      color: var(--ink2);
      line-height: 1.65
    }

    .contact-cta {
      margin-top: 18px;
      padding: 20px;
      border-radius: var(--r-xl);
      background: linear-gradient(135deg, var(--blue), var(--blue-dk));
      color: #fff
    }

    .contact-cta-title {
      font-family: var(--f-disp);
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 6px
    }

    .contact-cta-text {
      font-size: 13px;
      line-height: 1.7;
      color: rgba(255, 255, 255, .78);
      margin-bottom: 14px
    }

    .contact-cta .btn-p {
      width: 100%;
      justify-content: center;
      background: #fff;
      color: var(--blue) !important;
      box-shadow: none
    }

    .contact-cta .btn-p:hover {
      background: #f4f8ff;
      color: var(--blue-dk) !important
    }

    @media(max-width:991px) {
      .contact-wrap {
        border-radius: var(--r-xl)
      }

      .contact-panel {
        margin-top: 10px
      }
    }

    @media(max-width:576px) {
      .contact-panel,
      .contact-wrap {
        padding: 20px
      }
    }

    /* ══════════════
   FOOTER
══════════════ */
    .fm-footer {
      padding: 52px 0 26px;
      background: linear-gradient(180deg, #09192D, #060F1C);
      color: rgba(255, 255, 255, .4);
      position: relative;
      z-index: 1
    }

    .footer-brand {
      font-family: var(--f-disp);
      font-size: 17px;
      font-weight: 800;
      letter-spacing: -.5px;
      color: #fff
    }

    .footer-brand span {
      color: var(--blue2)
    }

    .footer-col-title {
      font-family: var(--f-mono);
      font-size: 8.5px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .18);
      margin-bottom: 12px;
      display: block
    }

    .footer-link {
      display: block;
      font-size: 13px;
      color: rgba(255, 255, 255, .34) !important;
      text-decoration: none;
      padding: 4px 0;
      transition: color .2s;
      cursor: pointer;
      background: none;
      border: none;
      font-family: var(--f-body);
      text-align: left
    }

    .footer-link:hover {
      color: #fff !important
    }

    .fm-copy {
      font-size: 10.5px;
      color: rgba(255, 255, 255, .15);
      font-family: var(--f-mono)
    }

    .fm-staff-link {
      font-size: 10.5px;
      color: rgba(255, 255, 255, .1);
      text-decoration: none;
      transition: color .2s;
      font-family: var(--f-mono)
    }

    .fm-staff-link:hover {
      color: rgba(255, 255, 255, .24)
    }

    /* WA FLOAT */
    .fm-wa {
      position: fixed;
      bottom: 26px;
      right: 26px;
      z-index: 1000;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #25d366;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      text-decoration: none;
      box-shadow: 0 6px 22px rgba(0, 0, 0, .16);
      transition: transform .3s, box-shadow .3s;
      animation: fadeWa .5s 2s both
    }

    .fm-wa:hover {
      color: #fff;
      transform: scale(1.12);
      box-shadow: 0 10px 28px rgba(37, 211, 102, .38)
    }

    @keyframes fadeWa {
      from { opacity: 0; transform: scale(.7) }
      to { opacity: 1; transform: scale(1) }
    }

    @media(max-width:576px) {
      .fm-nav {
        padding: 10px 0
      }

      .fm-nav-inner {
        gap: 8px
      }

      .fm-brand {
        gap: 8px;
        min-width: 0;
        flex: 1
      }

      .brand-logo-mark {
        width: 48px;
        height: 48px
      }

      .drawer-logo-mark {
        width: 44px;
        height: 44px
      }

      .fm-brand-name {
        font-size: 17px
      }

      .fm-brand-sub {
        font-size: 8px;
        letter-spacing: 1.7px
      }

      .btn-nav-cta {
        padding: 8px 12px;
        font-size: 12px;
        gap: 6px;
        border-radius: 9px;
        white-space: nowrap;
        flex-shrink: 0
      }

      .hero {
        min-height: auto;
        padding: 112px 0 110px
      }

      .hero-title {
        font-size: clamp(30px, 11vw, 44px);
        letter-spacing: -1.4px;
        margin-bottom: 16px
      }

      .hero-lead {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 24px
      }

      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px
      }

      .hero-actions > * {
        width: 100%;
        justify-content: center
      }

      .fm-wa {
        width: 44px;
        height: 44px;
        font-size: 20px;
        right: 14px;
        bottom: calc(14px + env(safe-area-inset-bottom))
      }
    }

    @media(max-width:390px) {
      .fm-nav-inner {
        gap: 6px
      }

      .brand-logo-mark {
        width: 42px;
        height: 42px;
        border-radius: 14px
      }

      .fm-brand-name {
        font-size: 15px
      }

      .fm-brand-sub {
        font-size: 7px
      }

      .btn-nav-cta {
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 10px;
        flex-shrink: 0;
        gap: 0
      }

      .btn-nav-label {
        display: none
      }

      .btn-nav-cta i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        margin: 0
      }
    }

    @media(max-width:576px) {
      .network-visual {
        height: 158px
      }

      .network-node {
        font-size: 11px;
        padding: 8px 11px
      }

      .node-home { left: 4px; top: 36px }
      .node-business { right: 4px; top: 36px }
      .node-stream { bottom: 2px }

      .router-device {
        width: 150px;
        height: 110px
      }

      .router-top {
        width: 132px;
        height: 60px
      }

      .router-ant {
        height: 56px
      }

      .chip-home, .chip-business {
        top: 24px
      }

      .float-chip {
        font-size: 12px;
        padding: 8px 11px
      }
    }

    /* DIVIDER */
    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border), transparent);
      margin: 0
    }