body.page-template-page-asus-php .wf-wrap{
  width: 100% !important;
}

.asus-lp {

  --asus-blue: #0B66F3;
  --asus-blue-light: #3B89F8;
  --asus-cyan: #0B66F3;
  --accent: #0B66F3;
  --accent2: #3B89F8;


  --bg: #0B0F1A;
  --bg2: #111827;
  --bg3: #1A2235;
  --bg-card: #151d2e;
  --border: rgba(255, 255, 255, 0.07);
  --text: #F0F4FF;
  --text-muted: #999999;
  --text-subtle: #666666;
  --nav-bg: rgba(11, 15, 26, 0.92);
  --hero-glow: rgba(11, 102, 243, 0.15);
  --pill-bg: rgba(11, 102, 243, 0.1);
  --pill-border: rgba(11, 102, 243, 0.3);
  --badge-bg: rgba(11, 102, 243, 0.15);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
  --reseller-bg: linear-gradient(135deg, #0B1A2E 0%, #0D2444 100%);
}

[data-theme="light"] .asus-lp {
  --bg: #F5F7FA;
  --bg2: #FFFFFF;
  --bg3: #EEF2F8;
  --bg-card: #FFFFFF;
  --border: rgba(0, 0, 0, 0.08);
  --text: #262626;
  --text-muted: #999999;
  --text-subtle: #BBBBBB;
  --nav-bg: rgba(245, 247, 250, 0.95);
  --hero-glow: rgba(11, 102, 243, 0.08);
  --pill-bg: rgba(11, 102, 243, 0.08);
  --pill-border: rgba(11, 102, 243, 0.2);
  --badge-bg: rgba(11, 102, 243, 0.08);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --reseller-bg: linear-gradient(135deg, #E8F0FA 0%, #D0E4F5 100%);
}


.asus-lp *,
.asus-lp *::before,
.asus-lp *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.asus-lp {
  scroll-behavior: smooth;
}

.asus-lp {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
}

.asus-lp a {
  text-decoration: none;
  color: inherit;
}

.asus-lp img {
  display: block;
  max-width: 100%;
}

.asus-lp ul {
  list-style: none;
}


.asus-lp .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.asus-lp .section-asus {
  padding: 96px 0;
}


.asus-lp .nav-asus {
  position: fixed;
  top: 130px; /* fallback inicial; el JS lo sincroniza al borde inferior del header de The7 */
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, transform 0.3s ease;
}

.asus-lp .nav-asus.is-hidden {
  transform: translateY(-120%);
}

.asus-lp .nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.asus-lp .nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.asus-lp .nav-logo img {
  height: 28px;
  filter: none;
}

[data-theme="dark"] .asus-lp .nav-logo img {
  filter: brightness(0) invert(1);
}

.asus-lp .nav-logo-sep {
  width: 1px;
  height: 22px;
  background: var(--border);
}

.asus-lp .nav-brand {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.asus-lp .nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.asus-lp .nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.asus-lp .nav-links a:hover {
  color: var(--text);
}

.asus-lp .nav-ia-btn {
  background: linear-gradient(135deg, var(--asus-blue), var(--asus-cyan));
  color: #fff !important;
  padding: 7px 16px;
  border-radius: 20px;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s !important;
  white-space: nowrap;
}

.asus-lp .nav-ia-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  color: #fff !important;
}

.asus-lp .nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.asus-lp .theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--text-muted);
  font-size: 18px;
}

.asus-lp .theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.asus-lp .nav-cta {
  padding: 9px 20px;
  background: var(--asus-blue);
  color: #fff !important;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.asus-lp .nav-cta:hover {
  background: var(--asus-blue-light);
  transform: translateY(-1px);
}

.asus-lp .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.asus-lp .hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}


.asus-lp .hero {
  padding-top: 200px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.asus-lp .hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, var(--hero-glow) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(11, 102, 243, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.asus-lp .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.asus-lp .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.asus-lp .hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.asus-lp .hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #fff;
}

.asus-lp .hero h1 span {
  background: linear-gradient(90deg, var(--asus-blue-light), var(--asus-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.asus-lp .hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.asus-lp .hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.asus-lp .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--asus-blue), var(--asus-blue-light));
  color: #fff;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(11, 102, 243, 0.35);
}

.asus-lp .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(11, 102, 243, 0.5);
}

.asus-lp .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
}

.asus-lp .btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.asus-lp .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.asus-lp .btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.asus-lp .hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.asus-lp .hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.asus-lp .hero-img-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(0, 196, 212, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.asus-lp .hero-img-wrap img {
  width: 100%;
  border-radius: 16px;
  filter: drop-shadow(0 20px 60px rgba(0, 196, 212, 0.2));
}

.asus-lp .hero-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
}

.asus-lp .hero-badge-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--asus-blue), var(--asus-cyan));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.asus-lp .hero-badge-text p {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.asus-lp .hero-badge-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.asus-lp .hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.asus-lp .hero-stat strong {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  display: block;
}

.asus-lp .hero-stat span {
  font-size: 13px;
  color: var(--text-muted);
}


.asus-lp .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.asus-lp .section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.asus-lp .section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #fff;
}

.asus-lp .section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.asus-lp .section-header {
  margin-bottom: 56px;
}


.asus-lp .features {
  background: var(--bg2);
}

.asus-lp .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.asus-lp .feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.asus-lp .feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.asus-lp .feature-icon {
  width: 52px;
  height: 52px;
  background: var(--badge-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.asus-lp .feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.asus-lp .feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}


.asus-lp .products {
  background: var(--bg);
}

.asus-lp .products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.asus-lp .tier-strip {
  padding: 6px 0;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.asus-lp .tier-entry {
  background: rgba(100, 120, 160, 0.15);
  color: #8899BB;
}

.asus-lp .tier-mid {
  background: rgba(11, 102, 243, 0.12);
  color: var(--asus-blue-light);
}

.asus-lp .tier-high {
  background: rgba(255, 107, 53, 0.12);
  color: #FF6B35;
}

.asus-lp .product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s;
}

.asus-lp .product-card:hover {
  border-color: var(--asus-blue-light);
}

.asus-lp .product-card.featured {
  border-color: rgba(0, 196, 212, 0.3);
}

.asus-lp .product-img-wrap {
  background: var(--bg3);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  position: relative;
}

.asus-lp .product-img-wrap img {
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 196, 212, 0.2));
  transition: transform 0.4s;
}

.asus-lp .product-card:hover .product-img-wrap img {
  transform: scale(1.02);
}

.asus-lp .product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.asus-lp .badge-new {
  background: rgba(0, 196, 212, 0.15);
  color: var(--accent);
  border: 1px solid var(--pill-border);
}

.asus-lp .badge-hot {
  background: rgba(255, 107, 53, 0.15);
  color: #FF6B35;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.asus-lp .product-body {
  padding: 28px 28px 24px;
  text-align: center;
}

.asus-lp .product-body .specs-list {
  text-align: left;
  margin-bottom: 0;
}

.asus-lp .product-form {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--asus-blue-light);
  margin-bottom: 10px;
}

.asus-lp .product-body h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: #fff;
}

.asus-lp .product-body>p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.65;
}

.asus-lp .specs-list {
  margin-bottom: 28px;
}

.asus-lp .product-card .specs-list {
  display: none;
  text-align: left;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 4px;
  margin-bottom: 16px;
}

.asus-lp .product-card .specs-list.open {
  display: block;
}

.asus-lp .spec-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}

.asus-lp .spec-row:last-child {
  border-bottom: none;
}

.asus-lp .spec-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.asus-lp .spec-label {
  color: var(--text-muted);
  min-width: 100px;
  flex-shrink: 0;
}

.asus-lp .spec-value {
  color: var(--text);
  font-weight: 600;
}

.asus-lp .product-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.asus-lp .product-card .product-actions {
  padding-top: 4px;
  justify-content: center;
}

.asus-lp .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
}

.asus-lp .btn-outline:hover {
  border-color: var(--asus-blue-light);
  color: var(--asus-blue-light);
}

.asus-lp .btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  background: var(--asus-blue);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  transition: all 0.2s;
}

.asus-lp .btn-solid:hover {
  background: var(--asus-blue-light);
  transform: translateY(-1px);
}


.asus-lp .comparison {
  background: var(--bg2);
}

.asus-lp .table-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.asus-lp table {
  width: 100%;
  border-collapse: collapse;
}

.asus-lp thead {
  background: var(--bg3);
}

.asus-lp th {
  padding: 16px 24px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.asus-lp th:first-child {
  color: var(--text);
}

.asus-lp td {
  padding: 16px 24px;
  font-size: 14px;
  border-top: 1px solid var(--border);
}

.asus-lp td:first-child {
  color: var(--text-muted);
  font-weight: 500;
}

.asus-lp td:not(:first-child) {
  color: var(--text);
  font-weight: 600;
}

.asus-lp tr:hover td {
  background: var(--bg3);
}

.asus-lp .highlight-col {
  color: var(--accent) !important;
}


.asus-lp .usecases {
  background: var(--bg);
}

.asus-lp .usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.asus-lp .usecase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
}

.asus-lp .usecase-card:hover {
  border-color: var(--asus-blue-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.asus-lp .usecase-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.asus-lp .usecase-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.asus-lp .usecase-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}


.asus-lp .soberania-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--asus-cyan);
  background: rgba(0, 196, 212, 0.1);
  border: 1px solid rgba(0, 196, 212, 0.25);
  border-radius: 20px;
  padding: 3px 10px;
  margin-top: 10px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}

.asus-lp .soberania-tag:hover {
  background: rgba(0, 196, 212, 0.2);
}

.asus-lp .soberania-tag .tooltip-box {
  display: none;
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  background: var(--bg-card);
  border: 1px solid rgba(0, 196, 212, 0.3);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 100;
  pointer-events: none;
}

.asus-lp .soberania-tag .tooltip-box::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: rgba(0, 196, 212, 0.3);
}

.asus-lp .soberania-tag:hover .tooltip-box {
  display: block;
}

.asus-lp .soberania-tag.copied {
  background: rgba(0, 196, 212, 0.3);
  border-color: var(--asus-cyan);
}


.asus-lp .howwework {
  background: var(--bg2);
}

.asus-lp .steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.asus-lp .steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--asus-blue), var(--asus-cyan));
  opacity: 0.3;
}

.asus-lp .step {
  text-align: center;
  position: relative;
}

.asus-lp .step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--asus-blue), var(--asus-blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(11, 102, 243, 0.4);
}

.asus-lp .step h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.asus-lp .step p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}


.asus-lp .reseller {
  background: var(--reseller-bg);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.asus-lp .reseller::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60L60 0M-10 10L10 -10M50 70L70 50' stroke='%2300539B' stroke-opacity='0.07' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}

.asus-lp .reseller-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.asus-lp .reseller-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.asus-lp .reseller-content p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.asus-lp .reseller-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.asus-lp .reseller-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.asus-lp .rb-icon {
  width: 26px;
  height: 26px;
  background: rgba(0, 196, 212, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.asus-lp .rb-text {
  font-size: 14px;
  color: var(--text-muted);
}

.asus-lp .rb-text strong {
  color: var(--text);
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}

.asus-lp .reseller-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.asus-lp .reseller-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.asus-lp .reseller-visual-icon {
  font-size: 72px;
  margin-bottom: 24px;
}

.asus-lp .reseller-visual h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.asus-lp .reseller-visual p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}


.asus-lp .contact {
  background: var(--bg);
  display: none;
}

.asus-lp .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.asus-lp .contact-info h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.asus-lp .contact-info p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.asus-lp .contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.asus-lp .contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.2s;
}

.asus-lp .contact-channel:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}

.asus-lp .cc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.asus-lp .cc-icon.green {
  background: rgba(37, 211, 102, 0.15);
}

.asus-lp .cc-icon.blue {
  background: rgba(11, 102, 243, 0.15);
}

.asus-lp .cc-text p {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 3px;
}

.asus-lp .cc-text strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.asus-lp .contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

.asus-lp .contact-form-wrap h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.asus-lp .form-group {
  margin-bottom: 18px;
}

.asus-lp .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 7px;
}

.asus-lp .form-group input,
.asus-lp .form-group select,
.asus-lp .form-group textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}

.asus-lp .form-group input:focus,
.asus-lp .form-group select:focus,
.asus-lp .form-group textarea:focus {
  border-color: var(--asus-blue-light);
}

.asus-lp .form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Placeholders: forzar color propio para que The7 (WP) no lo sobreescriba */
.asus-lp .form-group input::placeholder,
.asus-lp .form-group textarea::placeholder {
  color: var(--text-muted) !important;
  opacity: 1 !important; /* Firefox baja la opacidad por defecto */
}
.asus-lp .form-group input::-webkit-input-placeholder,
.asus-lp .form-group textarea::-webkit-input-placeholder {
  color: var(--text-muted) !important;
}
.asus-lp .form-group input::-moz-placeholder,
.asus-lp .form-group textarea::-moz-placeholder {
  color: var(--text-muted) !important;
  opacity: 1 !important;
}
.asus-lp .form-group input:-ms-input-placeholder,
.asus-lp .form-group textarea:-ms-input-placeholder {
  color: var(--text-muted) !important;
}

.asus-lp .form-group select option {
  background: var(--bg2);
}

.asus-lp .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.asus-lp .form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--asus-blue), var(--asus-blue-light));
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  margin-top: 8px;
}

.asus-lp .form-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}


.asus-lp .footer-asus {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 36px;
}

.asus-lp .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.asus-lp .footer-brand img {
  height: 26px;
  margin-bottom: 16px;
}

[data-theme="dark"] .asus-lp .footer-brand img {
  filter: brightness(0) invert(1);
}

.asus-lp .footer-brand p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.asus-lp .footer-social {
  display: flex;
  gap: 10px;
}

.asus-lp .social-btn {
  width: 36px;
  height: 36px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}

.asus-lp .social-btn:hover {
  border-color: var(--accent);
  background: var(--pill-bg);
}

.asus-lp .footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}

.asus-lp .footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.asus-lp .footer-col ul li a {
  font-size: 13.5px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.asus-lp .footer-col ul li a:hover {
  color: var(--text);
}

.asus-lp .footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.asus-lp .footer-bottom p {
  font-size: 12.5px;
  color: var(--text-subtle);
}

.asus-lp .footer-badges {
  display: flex;
  gap: 10px;
}

.asus-lp .footer-badge {
  padding: 4px 10px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}


.asus-lp .wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.asus-lp .wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.asus-lp .wa-float::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: wa-ring 2s infinite;
}

.asus-lp h2, .asus-lp h3, .asus-lp h4{
  color: #fff !important;
}

.asus_nvidia_img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

[data-theme="light"] .asus-lp h1,
[data-theme="light"] .asus-lp h2,
[data-theme="light"] .asus-lp h3,
[data-theme="light"] .asus-lp h4,
[data-theme="light"] .asus-lp .datacenter-experts p
{
  color: #000 !important;
}

@keyframes wa-ring {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}


@media (max-width: 1024px) {
  .asus-lp .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .asus-lp .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .asus-lp .usecases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .asus-lp .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .asus-lp .section-asus {
    padding: 64px 0;
  }

  .asus-lp .hero {
    padding-top: 170px;
  }

  .asus-lp .hero-grid {
    grid-template-columns: 1fr;
  }

  .asus-lp .hero-visual {
    order: -1;
  }

  .asus-lp .hero-stats {
    gap: 20px;
  }

  .asus-lp .nav-links {
    display: none;
  }

  .asus-lp .hamburger {
    display: flex;
  }

  .asus-lp .products-grid {
    grid-template-columns: 1fr;
  }

  .asus-lp .steps-row {
    grid-template-columns: 1fr 1fr;
  }

  .asus-lp .steps-row::before {
    display: none;
  }

  .asus-lp .reseller-grid {
    grid-template-columns: 1fr;
  }

  .asus-lp .contact-grid {
    grid-template-columns: 1fr;
  }

  .asus-lp .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .asus-lp .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .asus-lp .form-row {
    grid-template-columns: 1fr;
  }

  .asus-lp .hero-badge {
    bottom: -10px;
    right: 0;
  }
  .supercomputo-container, .cual-es-para-vos, .almacenamiento-empresarial, .servidores-virtualizar{
    grid-template-columns: auto !important;
  }
  .servidores-virtualizar-button-container, .supercomputo-container-button-container{
    justify-content: center;
  }
  .footer-cols{
    grid-template-columns: auto auto !important;
  }
  .hero-stats{
    flex-direction: column;
  }
  .hero-stats .hero-stat{
    text-align: center;
  }
  .hero-content .btn-secondary, .hero-content .btn-whatsapp, #comparativa .btn-secondary{
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .asus-lp .features-grid {
    grid-template-columns: 1fr;
  }

  .asus-lp .usecases-grid {
    grid-template-columns: 1fr;
  }

  .asus-lp .steps-row {
    grid-template-columns: 1fr;
  }
}


.asus-lp .mobile-menu {
  display: none;
  position: fixed;
  top: 130px; /* fallback inicial; el JS lo sincroniza al borde inferior de la navbar */
  left: 0;
  right: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
}

.asus-lp .mobile-menu.open {
  display: flex;
}

.asus-lp .mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.asus-lp .mobile-menu a:last-child {
  border-bottom: none;
}

.asus-lp .mobile-menu a:hover {
  color: var(--text);
}

/* ---- Guarda de tipografia: lo unico con !important, para que el tema no pise el texto ---- */
.asus-lp {
  font-family: 'Inter', system-ui, sans-serif !important;
  color: var(--text) !important;
  line-height: 1.6 !important;
}