/* ============================================================
   VARIABLES & RESET
============================================================ */
:root {
  --clr-primary:   #ff6a00;
  --clr-secondary: #ff9d00;
  --clr-accent:    #ff4500;
  --grad:          linear-gradient(135deg, #ff6a00, #ff9d00);
  --grad-rev:      linear-gradient(135deg, #ff4500, #ff6a00);

  --bg:      #080808;
  --bg-alt:  #0f0f0f;
  --surface: #141414;
  --surface2:#1a1a1a;
  --border:  rgba(255,255,255,.07);
  --border-accent: rgba(255,106,0,.25);

  --text:    #f0ede8;
  --muted:   #888;
  --muted2:  #555;

  --radius:    12px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  --shadow:      0 4px 30px rgba(0,0,0,.4);
  --shadow-glow: 0 8px 40px rgba(255,106,0,.25);

  --font:      'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono: 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }


/* ============================================================
   UTILITIES
============================================================ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section      { padding: 6rem 0; }
.section--alt { background: var(--bg-alt); }

.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }

.section-header { margin-bottom: 3.5rem; }
.section-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--clr-primary);
  margin-bottom: .5rem;
  display: block;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.025em;
  margin-bottom: .75rem;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.75;
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: none;
}


/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .9rem;
  border-radius: var(--radius-sm);
  padding: .7rem 1.6rem;
  cursor: pointer;
  border: none;
  transition: all .22s ease;
  white-space: nowrap;
  letter-spacing: .02em;
}
.btn--primary         { background: var(--grad); color: #fff; box-shadow: 0 4px 20px rgba(255,106,0,.3); }
.btn--primary:hover   { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn--outline         { border: 1px solid var(--border-accent); color: var(--clr-secondary); background: transparent; }
.btn--outline:hover   { background: rgba(255,106,0,.08); border-color: var(--clr-primary); }
.btn--ghost           { color: var(--muted); background: transparent; }
.btn--ghost:hover     { color: var(--text); }
.btn--sm   { padding: .5rem 1.1rem; font-size: .82rem; }
.btn--lg   { padding: .95rem 2.2rem; font-size: 1rem; }
.btn--full { width: 100%; }


/* ============================================================
   BADGE
============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255,106,0,.08);
  border: 1px solid rgba(255,106,0,.28);
  color: var(--clr-secondary);
  padding: .38rem 1rem;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.5rem;
}
.badge__dot {
  width: 7px; height: 7px;
  background: var(--clr-primary);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,100% { opacity:1; box-shadow:0 0 0 0 rgba(255,106,0,.6); }
  50%      { opacity:.5; box-shadow:0 0 0 5px rgba(255,106,0,0); }
}


/* ============================================================
   HEADER
============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(8,8,8,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 2px 30px rgba(0,0,0,.5); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.logo__icon {
  width: 32px; height: 32px;
  background: var(--grad);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: #fff; font-weight: 900;
}
.logo__name em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}
.nav__item {
  padding: .45rem .85rem;
  font-size: .875rem;
  color: var(--muted);
  border-radius: 6px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
  transition: color .2s, background .2s;
}
.nav__item:hover   { color: var(--text); background: rgba(255,255,255,.05); }
.nav__item--active { color: var(--clr-secondary) !important; }
.nav__item--drop   { display: flex; align-items: center; gap: .3rem; }
.nav__arrow        { font-size: .65rem; transition: transform .2s; }

.header__actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .25rem;
  margin-left: auto;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: .25rem;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.mobile-menu.open { display: flex; }
.mobile-menu__link {
  padding: .7rem 0;
  color: var(--muted);
  font-size: .95rem;
  border-bottom: 1px solid var(--border);
  border-left: none; border-right: none; border-top: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: var(--font);
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu__link:hover { color: var(--clr-secondary); }
.mobile-menu__actions    { display: flex; flex-direction: column; gap: .5rem; margin-top: .75rem; }

/* Mobile submenu Servicios */
.mobile-menu__group   { display: flex; flex-direction: column; }
.mobile-menu__toggle  { justify-content: space-between; }
.mobile-menu__submenu {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius-sm);
  margin: .3rem 0 .5rem;
  overflow: hidden;
}
.mobile-submenu__label {
  font-size: .64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--clr-primary);
  padding: .6rem 1rem .3rem;
}
.mobile-submenu__link {
  display: block;
  padding: .55rem 1rem;
  font-size: .88rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color .2s, background .2s;
  text-decoration: none;
}
.mobile-submenu__link:last-child { border-bottom: none; }
.mobile-submenu__link:hover      { color: var(--clr-secondary); background: rgba(255,106,0,.05); }


/* ============================================================
   MEGA MENÚ
   — apertura controlada por JS (clase .open)
   — hover con delay de 120ms para evitar cierre accidental
============================================================ */
.nav__mega-group { position: static; }

.mega-menu {
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  z-index: 199;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease;
}
.mega-menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--grad);
}
/* Solo JS controla la apertura — sin :hover en CSS */
.mega-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mega-menu__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.mega-col__title {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--clr-primary);
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}

.mega-link {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .65rem .75rem;
  border-radius: var(--radius-sm);
  margin-bottom: .2rem;
  transition: background .18s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.mega-link:hover           { background: rgba(255,106,0,.07); }
.mega-link--active         { background: rgba(255,106,0,.05); }
.mega-link--disabled       { opacity: .55; cursor: default; }
.mega-link--disabled:hover { background: transparent; }

.mega-link__icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,106,0,.08);
  border: 1px solid rgba(255,106,0,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  font-weight: 900;
  color: var(--clr-secondary);
  flex-shrink: 0;
}
.mega-link strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .15rem;
  line-height: 1.2;
}
.mega-link > div > span {
  display: block;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.45;
}
.mega-link__badge {
  display: inline-block;
  background: var(--grad);
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  padding: .1rem .45rem;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: .3rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.mega-link__soon {
  display: inline-block;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--muted);
  font-size: .6rem;
  font-weight: 700;
  padding: .1rem .45rem;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: .3rem;
}

.mega-overlay {
  position: fixed;
  inset: 68px 0 0 0;
  background: rgba(0,0,0,.4);
  z-index: 198;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.mega-overlay.open { opacity: 1; pointer-events: all; }


/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero__bg        { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__orb       { position: absolute; border-radius: 50%; filter: blur(100px); }
.hero__orb--1    { width: 650px; height: 650px; background: rgba(255,106,0,.14); top: -200px; left: -200px; animation: floatA 11s ease-in-out infinite; }
.hero__orb--2    { width: 500px; height: 500px; background: rgba(255,157,0,.1);  bottom: -150px; right: -150px; animation: floatB 14s ease-in-out infinite; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-45px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-28px)} }

.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,106,0,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,106,0,.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 100%);
}
.hero__particles { position: absolute; inset: 0; overflow: hidden; }
.hero__particle  {
  position: absolute;
  border-radius: 50%;
  animation: riseUp linear infinite;
  opacity: 0;
}
@keyframes riseUp {
  0%  { transform:translateY(110vh); opacity:0; }
  10% { opacity:.8; }
  85% { opacity:.4; }
  100%{ transform:translateY(-5vh); opacity:0; }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 3rem;
}
.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 1.2rem;
}
.hero__sub {
  color: var(--muted);
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2.2rem;
}
.hero__ctas { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Server card */
.server-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 60px rgba(255,106,0,.08);
  max-width: 460px;
  margin-left: auto;
}
.server-card__bar    { background: var(--surface2); border-bottom: 1px solid var(--border); padding: .75rem 1.2rem; display: flex; align-items: center; gap: .5rem; }
.sc-dot              { width: 11px; height: 11px; border-radius: 50%; }
.sc-dot--r           { background: #ff5f56; }
.sc-dot--y           { background: #ffbd2e; }
.sc-dot--g           { background: #27c93f; }
.sc-card__title      { font-size: .72rem; color: var(--muted2); font-family: var(--font-mono); margin-left: .4rem; }
.server-card__body   { padding: 1.4rem 1.4rem 1rem; font-family: var(--font-mono); font-size: .82rem; }
.sc-row              { display: flex; align-items: baseline; gap: 1rem; padding: .32rem 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.sc-row:last-child   { border-bottom: none; }
.sc-key              { color: var(--muted2); min-width: 68px; font-size: .75rem; }
.sc-val              { color: var(--text); }
.sc-val--green       { color: #39ff14; }
.sc-sep              { height: 1px; background: var(--border); margin: .6rem 0; }
.sc-row--prompt      { gap: .5rem; }
.sc-prompt           { color: var(--clr-primary); font-size: .85rem; }
.sc-cmd              { color: #39ff14; }
.sc-cursor           { color: var(--clr-secondary); animation: blink-cur .8s steps(1) infinite; }
@keyframes blink-cur { 0%,100%{opacity:1} 50%{opacity:0} }
.server-card__stats  { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--border); }
.sc-stat             { padding: .9rem .5rem; text-align: center; border-right: 1px solid var(--border); }
.sc-stat:last-child  { border-right: none; }
.sc-stat__num        { display: block; font-size: 1.1rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sc-stat__lbl        { font-size: .65rem; color: var(--muted); margin-top: .1rem; display: block; }

/* Strip */
.hero__strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.strip__item            { flex: 1; min-width: 130px; text-align: center; padding: 1.2rem 1rem; border-right: 1px solid var(--border); }
.strip__item:last-child { border-right: none; }
.strip__item strong     { display: block; font-size: 1.5rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.strip__item span       { font-size: .72rem; color: var(--muted); display: block; margin-top: .2rem; }


/* ============================================================
   SMART STEPS
============================================================ */
.smart__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.smart__card { background: var(--bg); padding: 2.2rem 1.8rem; position: relative; transition: background .3s; }
.smart__card:hover { background: var(--surface); }
.smart__card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.smart__card:hover::after { transform: scaleX(1); }
.smart__num          { font-size: .7rem; font-weight: 700; color: var(--clr-primary); letter-spacing: .1em; margin-bottom: .75rem; font-family: var(--font-mono); }
.smart__icon         { font-size: 2rem; margin-bottom: 1rem; display: block; }
.smart__card h3      { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; }
.smart__card > p     { color: var(--muted); font-size: .86rem; line-height: 1.65; margin-bottom: 1.2rem; }
.smart__list         { display: flex; flex-direction: column; gap: .4rem; }
.smart__list li      { font-size: .82rem; color: var(--muted); padding-left: 1.1rem; position: relative; }
.smart__list li::before { content: '✓'; position: absolute; left: 0; color: var(--clr-primary); font-size: .75rem; }


/* ============================================================
   PRICING
============================================================ */
.pricing__period {
  display: flex;
  gap: .3rem;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .35rem;
  max-width: 420px;
  margin: 0 auto 1.5rem;
}
.period__btn {
  flex: 1;
  padding: .55rem 1rem;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: var(--font);
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}
.period__btn.active             { background: var(--grad); color: #fff; }
.period__btn:hover:not(.active) { color: var(--text); }
.period__badge                  { background: rgba(255,106,0,.2); color: var(--clr-secondary); font-size: .65rem; padding: .15rem .4rem; border-radius: 4px; font-weight: 700; }
.period__btn.active .period__badge { background: rgba(255,255,255,.2); color: #fff; }

.pricing__tabs { display: flex; gap: .3rem; justify-content: center; margin-bottom: 2.5rem; flex-wrap: wrap; }
.ptab {
  padding: .5rem 1.3rem;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-family: var(--font);
  transition: all .2s;
}
.ptab.active             { border-color: var(--clr-primary); color: var(--clr-secondary); background: rgba(255,106,0,.06); }
.ptab:hover:not(.active) { border-color: var(--border-accent); color: var(--text); }

.plans-grid         { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.plans-grid[hidden] { display: none; }
.plans-grid.active  { display: grid; }

.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  overflow: hidden;
}
.plan-card:hover        { transform: translateY(-6px); border-color: rgba(255,106,0,.3); box-shadow: 0 12px 40px rgba(255,106,0,.12); }
.plan-card--popular     { border-color: var(--clr-primary); background: linear-gradient(160deg, #1a0e02, #120a01); }
.plan-card__badge       { position: absolute; top: 0; right: 1.4rem; background: var(--grad); color: #fff; font-size: .65rem; font-weight: 800; padding: .28rem .85rem; border-radius: 0 0 8px 8px; letter-spacing: .1em; text-transform: uppercase; }
.plan-card__head        { padding: 2rem 1.8rem 1.5rem; }
.plan-card__name        { font-size: .72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem; }
.plan-card__price       { font-size: 2.6rem; font-weight: 900; line-height: 1; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: .25rem; }
.plan-card__price sup   { font-size: 1.1rem; vertical-align: top; margin-top: .5rem; display: inline-block; }
.plan-card__price small { font-size: .88rem; -webkit-text-fill-color: var(--muted); color: var(--muted); }
.plan-card__desc        { color: var(--muted); font-size: .82rem; margin-top: .4rem; }
.plan-card__body        { padding: 1.4rem 1.8rem 0; flex: 1; border-top: 1px solid var(--border); }
.plan-card__feats       { display: flex; flex-direction: column; gap: .55rem; }
.plan-card__feats li    { font-size: .85rem; display: flex; align-items: center; gap: .55rem; }
.plan-card__feats li::before {
  content: '';
  width: 17px; height: 17px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255,106,0,.12) url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23ff6a00' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 10px;
  border: 1px solid rgba(255,106,0,.25);
}
.plan-card__feats li.no::before {
  background: rgba(255,255,255,.04) url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='%23444' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 10px;
  border-color: rgba(255,255,255,.07);
}
.plan-card__feats li.no { color: var(--muted2); }
.plan-card__expand      { display: block; width: 100%; margin-top: 1rem; padding: .5rem; background: none; border: none; color: var(--clr-primary); font-size: .78rem; font-family: var(--font); cursor: pointer; text-align: left; transition: color .2s; }
.plan-card__expand:hover{ color: var(--clr-secondary); }
.plan-card__extra       { margin-top: .5rem; display: flex; flex-direction: column; gap: .5rem; }
.plan-card__foot        { padding: 1.5rem 1.8rem 2rem; }

.pricing__note         { text-align: center; margin-top: 2rem; font-size: .88rem; color: var(--muted); }
.pricing__note a       { color: var(--clr-primary); }
.pricing__note a:hover { text-decoration: underline; }


/* ============================================================
   TRUST / NOSOTROS
============================================================ */
.trust__grid      { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.trust__values    { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.4rem; }
.trust__val       { display: flex; align-items: flex-start; gap: 1rem; }
.trust__val-icon  { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,106,0,.07); border: 1px solid rgba(255,106,0,.18); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; }
.trust__val h4    { font-size: .9rem; font-weight: 700; margin-bottom: .25rem; }
.trust__val p     { color: var(--muted); font-size: .84rem; line-height: 1.6; }

.metrics__card          { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.8rem; position: relative; overflow: hidden; }
.metrics__card::before  { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad); }
.metrics__header        { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.metrics__live          { font-size: .68rem; font-weight: 700; color: #39ff14; letter-spacing: .08em; animation: blink 2s infinite; }
.metrics__label         { font-size: .8rem; color: var(--muted); }
.metrics__rows          { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 1.5rem; }
.metrics__row           { display: grid; grid-template-columns: 100px 1fr 44px; align-items: center; gap: .8rem; font-size: .82rem; color: var(--muted); }
.metrics__bar           { height: 6px; background: rgba(255,255,255,.06); border-radius: 3px; overflow: hidden; }
.metrics__fill          { height: 100%; width: var(--w); background: var(--grad); border-radius: 3px; }
.metrics__pct           { font-size: .78rem; font-weight: 700; text-align: right; }
.metrics__pct.green     { color: #39ff14; }
.metrics__uptime        { border-top: 1px solid var(--border); padding-top: 1.2rem; display: flex; justify-content: space-between; align-items: center; font-size: .82rem; color: var(--muted); }
.metrics__uptime strong { font-size: 1.3rem; font-weight: 900; }
.mini-metrics           { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-top: .8rem; }
.mini-metric            { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; text-align: center; }
.mini-metric__num            { display: block; font-size: 1.4rem; font-weight: 900; }
.mini-metric span:last-child { font-size: .7rem; color: var(--muted); }


/* ============================================================
   WORDPRESS BENEFITS
============================================================ */
.wp-grid        { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.wp-card        { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.8rem; transition: all .28s; }
.wp-card:hover  { border-color: var(--border-accent); transform: translateY(-5px); box-shadow: 0 8px 30px rgba(255,106,0,.1); }
.wp-card__icon  { font-size: 2rem; margin-bottom: 1rem; display: block; }
.wp-card h3     { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.wp-card p      { color: var(--muted); font-size: .86rem; line-height: 1.65; }
.wp-card--cta   { background: linear-gradient(135deg, #1a0d00, #0f0800); border-color: rgba(255,106,0,.3); display: flex; flex-direction: column; justify-content: center; gap: 1rem; }
.wp-card--cta:hover { transform: translateY(-5px); }
.wp-card__label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--clr-primary); }
.wp-card--cta h3{ font-size: 1.2rem; font-weight: 900; }


/* ============================================================
   DOMAINS
============================================================ */
.domain-search {
  display: flex;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s;
}
.domain-search:focus-within      { box-shadow: 0 0 0 3px rgba(255,106,0,.15); }
.domain-search input             { flex: 1; background: transparent; border: none; outline: none; padding: 1rem 1.4rem; color: var(--text); font-size: .97rem; font-family: var(--font); }
.domain-search input::placeholder{ color: var(--muted); }

.tld-grid       { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.tld-card       { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem 1.6rem; min-width: 120px; text-align: center; cursor: pointer; transition: all .25s; display: flex; flex-direction: column; gap: .2rem; }
.tld-card:hover { border-color: var(--border-accent); transform: translateY(-4px); background: var(--surface2); }
.tld-card__ext  { font-size: 1.25rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.tld-card__from { font-size: .65rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.tld-card__price{ font-size: .92rem; font-weight: 700; }
.tld-card__price small { font-size: .72rem; color: var(--muted); font-weight: 400; }


/* ============================================================
   TESTIMONIALS
============================================================ */
.testi-grid              { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.testi-card              { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.8rem; transition: all .25s; }
.testi-card:hover        { border-color: var(--border-accent); transform: translateY(-4px); }
.testi-card__stars       { color: var(--clr-secondary); font-size: .95rem; margin-bottom: .9rem; }
.testi-card__text        { color: var(--muted); font-size: .88rem; line-height: 1.75; margin-bottom: 1.3rem; }
.testi-card__author      { display: flex; align-items: center; gap: .8rem; }
.testi-card__avatar      { width: 38px; height: 38px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .8rem; color: #fff; flex-shrink: 0; }
.testi-card__author strong { display: block; font-size: .88rem; }
.testi-card__author span   { font-size: .74rem; color: var(--muted); }


/* ============================================================
   CTA BAND
============================================================ */
.cta-band { background: var(--bg-alt); }
.cta-band__inner {
  background: linear-gradient(135deg, #190d00, #100700);
  border: 1px solid rgba(255,106,0,.2);
  border-radius: var(--radius-lg);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band__inner::before     { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,106,0,.07), transparent); }
.cta-band__inner::after      { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--grad); }
.cta-band__inner .section-label { display: block; position: relative; }
.cta-band__inner h2          { position: relative; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 1rem; line-height: 1.2; }
.cta-band__inner > p         { position: relative; color: var(--muted); font-size: 1rem; margin-bottom: 2rem; }
.cta-band__btns              { position: relative; display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }


/* ============================================================
   FOOTER
============================================================ */
.footer          { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 4.5rem 0 0; }
.footer__grid    { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer__brand p { color: var(--muted); font-size: .84rem; line-height: 1.75; max-width: 240px; margin-top: 1rem; }
.footer__socials { display: flex; gap: .5rem; margin-top: 1.2rem; }
.social-btn      { width: 34px; height: 34px; border-radius: 8px; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .78rem; color: var(--muted); transition: all .2s; }
.social-btn:hover{ background: rgba(255,106,0,.1); border-color: var(--border-accent); color: var(--clr-secondary); }
.footer__col h4  { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--clr-primary); margin-bottom: 1.1rem; }
.footer__col a   { display: block; color: var(--muted); font-size: .85rem; margin-bottom: .5rem; transition: color .2s; }
.footer__col a:hover  { color: var(--clr-secondary); }
.footer__bottom  { border-top: 1px solid var(--border); padding: 1.4rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; }
.footer__bottom p{ color: var(--muted); font-size: .8rem; }


/* ============================================================
   DOMAIN SEARCH RESULTS
============================================================ */
.ds-results { max-width: 760px; margin: 0 auto 3rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; animation: fadeSlide .3s ease; }
@keyframes fadeSlide { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:none} }
.ds-results__header  { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); font-size: .85rem; color: var(--muted); }
.ds-results__header strong { color: var(--text); }
.ds-results__count   { background: rgba(255,106,0,.1); border: 1px solid rgba(255,106,0,.2); color: var(--clr-secondary); font-size: .72rem; font-weight: 700; padding: .2rem .7rem; border-radius: 20px; }
.ds-results__list    { display: flex; flex-direction: column; }
.ds-row              { display: grid; grid-template-columns: 1fr auto auto auto; align-items: center; gap: 1.2rem; padding: .95rem 1.5rem; border-bottom: 1px solid var(--border); transition: background .2s; }
.ds-row:last-child         { border-bottom: none; }
.ds-row--available:hover   { background: rgba(255,106,0,.04); }
.ds-row--taken             { opacity: .6; }
.ds-row__domain            { font-size: 1rem; font-weight: 600; }
.ds-row__name              { color: var(--text); }
.ds-row__tld               { color: var(--clr-primary); }
.ds-status                 { font-size: .72rem; font-weight: 700; padding: .25rem .75rem; border-radius: 20px; white-space: nowrap; }
.ds-status--ok             { background: rgba(57,255,20,.08);   border: 1px solid rgba(57,255,20,.25);  color: #39ff14; }
.ds-status--taken          { background: rgba(255,255,255,.05);  border: 1px solid var(--border);       color: var(--muted2); }
.ds-status--unknown        { background: rgba(255,189,0,.08);   border: 1px solid rgba(255,189,0,.2);   color: #ffbd00; }
.ds-row__price             { font-size: .9rem; font-weight: 700; color: var(--text); white-space: nowrap; text-align: right; min-width: 70px; }
.ds-row__price small       { font-size: .7rem; color: var(--muted); font-weight: 400; margin-left: .1rem; }
.ds-row__action            { min-width: 160px; text-align: right; }
.ds-cta--taken             { font-size: .78rem; color: var(--muted2); }
.ds-loading  { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 2.5rem; color: var(--muted); font-size: .9rem; }
.ds-spinner  { width: 36px; height: 36px; border: 3px solid var(--border); border-top-color: var(--clr-primary); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to{transform:rotate(360deg)} }
.ds-error    { padding: 1.5rem 2rem; color: #ff6b6b; font-size: .88rem; }


/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .footer__grid  { grid-template-columns: 2fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .smart__grid   { grid-template-columns: repeat(2,1fr); }
  .trust__grid   { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 920px) {
  .mega-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--border);
    transform: none;
    opacity: 1;
    pointer-events: all;
    display: none;
    background: var(--bg-alt);
  }
  .mega-menu.open   { display: block; }
  .mega-menu__inner { grid-template-columns: 1fr; gap: 1.2rem; padding: 1rem 0; }
  .mega-col__title  { margin-top: .5rem; }
  .mega-overlay     { display: none; }
}

@media (max-width: 900px) {
  .nav, .header__actions { display: none; }
  .hamburger   { display: flex; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__ctas  { justify-content: center; }
  .hero__sub   { margin: 0 auto 2rem; }
  .server-card { margin: 0 auto; }
  .plans-grid  { grid-template-columns: 1fr; max-width: 400px; }
  .wp-grid     { grid-template-columns: repeat(2,1fr); }
  .testi-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section         { padding: 4rem 0; }
  .smart__grid     { grid-template-columns: 1fr; }
  .wp-grid         { grid-template-columns: 1fr; }
  .footer__grid    { grid-template-columns: 1fr 1fr; }
  .footer__brand   { grid-column: 1 / -1; }
  .hero__strip     { flex-wrap: wrap; }
  .strip__item     { min-width: 50%; border-bottom: 1px solid var(--border); }
  .strip__item:last-child,
  .strip__item:nth-last-child(2) { border-bottom: none; }
  .cta-band__inner { padding: 3rem 1.5rem; }
  .footer__bottom  { flex-direction: column; text-align: center; }
  .ds-row          { grid-template-columns: 1fr auto; grid-template-rows: auto auto; gap: .5rem .75rem; padding: .85rem 1rem; }
  .ds-row__price   { display: none; }
  .ds-row__action  { grid-column: 2; grid-row: 1 / 3; }
}