/* =========================================================
   SOLTIA — Design System Phosphor C (neo-brutal suave)
   Papel crema + tinta + rojo marca · hard shadows · Space Grotesk
   ========================================================= */

:root {
  /* Paleta */
  --bg: #f5f0ea;
  --bg-deep: #ebe3d8;
  --paper: #ffffff;
  --cream: #fff8ee;
  --ink: #171513;
  --ink-2: #4a423c;
  --muted: #8a7f73;
  --line: #d9cfc2;
  --brand: #d63a2f;
  --brand-deep: #a02a22;
  --brand-soft: #fce6dc;

  /* Tipografía */
  --font-display: 'Space Grotesk', 'Clash Display', -apple-system, system-ui, sans-serif;
  --font-sans: 'Space Grotesk', -apple-system, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  /* Espaciado */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  /* Sombras hard */
  --sh-2: 2px 2px 0 var(--ink);
  --sh-4: 4px 4px 0 var(--ink);
  --sh-5: 5px 5px 0 var(--ink);
  --sh-6: 6px 6px 0 var(--ink);
  --sh-8: 8px 8px 0 var(--ink);
  --sh-red-4: 4px 4px 0 var(--brand);
  --sh-red-6: 6px 6px 0 var(--brand);
  --sh-red-8: 8px 8px 0 var(--brand);

  --container: 1200px;
  --border: 2px solid var(--ink);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
html { overflow-x: hidden; }

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.display { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.035em; }
.mono { font-family: var(--font-mono); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* =========== BOTONES =========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  border: var(--border);
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translate(-2px, -2px); }
.btn-red { background: var(--brand); color: #fff; box-shadow: var(--sh-4); }
.btn-red:hover { box-shadow: var(--sh-6); }
.btn-ink { background: var(--ink); color: var(--cream); box-shadow: var(--sh-red-4); }
.btn-ink:hover { box-shadow: var(--sh-red-6); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: var(--sh-4); }
.btn-ghost:hover { box-shadow: var(--sh-6); }
.btn-cream { background: var(--cream); color: var(--ink); box-shadow: var(--sh-5); }
.btn-cream:hover { box-shadow: var(--sh-8); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }

/* =========== TAGS =========== */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: var(--border);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  background: var(--cream);
}

/* =========== CARDS =========== */
.card {
  background: var(--paper);
  border: var(--border);
  border-radius: var(--r-lg);
  position: relative;
}
.card-pop { box-shadow: var(--sh-6); transition: transform .18s, box-shadow .18s; }
.card-pop:hover { transform: translate(-2px, -2px); box-shadow: var(--sh-8); }

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--r);
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border);
  flex-shrink: 0;
}
.icon-box.dark { background: var(--ink); }

/* =========== NAV =========== */
.promo-bar {
  background: var(--ink);
  color: var(--cream);
  font-size: 14px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}
.promo-bar strong { color: var(--brand); }
.promo-bar a { font-weight: 600; border-bottom: 1px solid var(--brand); padding-bottom: 1px; }
.promo-close {
  background: transparent;
  color: var(--cream);
  border: 0;
  font-size: 22px;
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}

.nav {
  background: var(--bg);
  border-bottom: var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.035em;
}
.nav-brand-img img { height: 36px; width: auto; display: block; }
.footer-logo img { height: 38px; width: auto; display: block; filter: brightness(1.06); }
.nav-brand .brand-dot { color: var(--brand); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-menu > li > a .arrow { font-size: 10px; opacity: 0.6; }
.nav-menu > li:hover > a { color: var(--brand); }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -14px;
  background: var(--paper);
  border: var(--border);
  border-radius: var(--r-lg);
  padding: 12px;
  min-width: 260px;
  box-shadow: var(--sh-6);
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 60;
}
.nav-menu > li:hover .nav-dropdown,
.nav-menu > li:focus-within .nav-dropdown { display: flex; }
.nav-dropdown a {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  transition: background .12s;
}
.nav-dropdown a:hover { background: var(--cream); color: var(--brand); }
.nav-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  border: 1px solid var(--ink);
  letter-spacing: 0.04em;
}
.nav-badge.promo { background: var(--brand); color: #fff; border-color: var(--brand); }
.nav-badge.new { background: var(--cream); color: var(--ink); }

.nav-cta-group { display: flex; align-items: center; gap: 14px; }
.nav-link-muted { font-size: 14px; font-weight: 500; }

.nav-hamburger { display: none; background: transparent; border: 0; cursor: pointer; flex-direction: column; gap: 4px; padding: 8px; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--ink); display: block; }

/* =========== HERO =========== */
.hero {
  padding: 80px 0 96px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 28px 0 0;
}
.hero h1 .accent { color: var(--brand); }
.hero p.lead {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--ink-2);
  margin: 28px 0 0;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.trust-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
}
.trust-item svg { color: var(--brand); }

/* Hero collage (derecha) */
.hero-collage { position: relative; aspect-ratio: 1 / 1; }
.collage-bg {
  position: absolute;
  inset: 4% 0 0 4%;
  width: 92%;
  height: 92%;
  background: var(--brand);
  border-radius: 28px;
  border: var(--border);
}
.collage-chip {
  position: absolute;
  background: var(--paper);
  border: var(--border);
  border-radius: var(--r-lg);
  padding: 16px;
  box-shadow: var(--sh-5);
}
.collage-chip.price { top: 24px; left: 20px; padding: 20px 24px; background: var(--cream); }
.collage-chip.price .lbl { font-family: var(--font-mono); font-size: 10px; color: var(--muted); letter-spacing: .08em; }
.collage-chip.price .num { font-family: var(--font-display); font-size: 52px; line-height: 1; letter-spacing: -0.035em; }
.collage-chip.price .unit { font-size: 14px; color: var(--ink-2); margin-left: 4px; }

.collage-chip.stat { top: 60px; right: 14px; width: 158px; }
.collage-chip.stat .big { font-family: var(--font-display); font-size: 22px; margin-top: 6px; letter-spacing: -0.03em; }
.collage-chip.stat .lil { font-size: 12px; color: var(--ink-2); margin-top: 2px; }

.collage-center { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.collage-center .halo {
  width: 180px;
  height: 180px;
  background: var(--cream);
  border-radius: 50%;
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-6);
}

.collage-chip.reviews { bottom: 24px; left: 8px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; }
.stars { display: flex; gap: 2px; }
.collage-chip.reviews .num { font-size: 12px; font-weight: 600; }
.collage-chip.reviews .sub { font-size: 10px; color: var(--muted); }

.collage-chip.server {
  bottom: 60px; right: 0;
  padding: 14px;
  background: var(--ink); color: var(--cream);
  box-shadow: var(--sh-red-5, 5px 5px 0 var(--brand));
}
.collage-chip.server .lbl { font-size: 11px; font-weight: 600; letter-spacing: .05em; margin-top: 4px; }

/* =========== STATS BAND =========== */
.stats {
  background: var(--ink);
  color: var(--cream);
  border-top: var(--border);
  border-bottom: var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 48px 0;
}
.stat {
  position: relative;
  padding-left: 0;
}
.stat + .stat {
  padding-left: 32px;
  border-left: 2px dashed rgba(255, 248, 238, 0.2);
}
.stat .big {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.035em;
}
.stat .lbl { font-size: 14px; margin-top: 8px; color: #d4ccc0; }

/* =========== SECTION HEADINGS =========== */
.section { padding: 112px 0; }
.section-header { max-width: 680px; margin-bottom: 56px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  margin: 20px 0 16px;
  letter-spacing: -0.035em;
  font-weight: 700;
}
.section-header h2 .accent { color: var(--brand); }
.section-header p {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
}

/* =========== FEATURES =========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  padding: 32px;
  background: var(--paper);
  border: var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-6);
  transition: transform .18s, box-shadow .18s;
}
.feature:hover { transform: translate(-2px, -2px); box-shadow: var(--sh-8); }
.feature.alt { background: var(--cream); }
.feature.deep { background: var(--bg-deep); }
.feature .num { font-family: var(--font-mono); font-size: 11px; color: var(--muted); margin-top: 24px; letter-spacing: 0.1em; }
.feature h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 8px 0 12px;
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 700;
}
.feature p { font-size: 15px; line-height: 1.55; color: var(--ink-2); margin: 0; }

/* =========== PLANS =========== */
.plans-section {
  background: var(--bg-deep);
  border-top: var(--border);
  border-bottom: var(--border);
}
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan {
  padding: 36px;
  background: var(--paper);
  border: var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-6);
  transition: transform .18s, box-shadow .18s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan:hover { transform: translate(-2px, -2px); box-shadow: var(--sh-8); }
.plan.featured {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-12px);
  box-shadow: var(--sh-red-8);
}
.plan.featured:hover { transform: translateY(-14px) translate(-2px, -2px); }
.plan-badge {
  position: absolute;
  top: -18px;
  left: 24px;
  background: var(--brand);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  border: var(--border);
  letter-spacing: 0.04em;
}
.plan-head { display: flex; justify-content: space-between; align-items: flex-start; }
.plan h3 {
  font-family: var(--font-display);
  font-size: 32px;
  margin: 0;
  letter-spacing: -0.035em;
  font-weight: 700;
}
.plan-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  padding: 4px 8px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
}
.plan.featured .plan-num { color: #b0a89a; border-color: #5a524a; }
.plan-desc { font-size: 14px; line-height: 1.5; margin: 12px 0 28px; color: var(--ink-2); min-height: 42px; }
.plan.featured .plan-desc { color: #c4bcad; }
.plan-price { display: flex; align-items: baseline; gap: 6px; }
.plan-price .big {
  font-family: var(--font-display);
  font-size: 68px;
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 700;
}
.plan.featured .plan-price .big { color: var(--brand); }
.plan-price .unit { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.plan-price .iva { font-family: var(--font-mono); font-size: 10px; color: var(--muted); }
.plan.featured .plan-price .unit { color: #c4bcad; }
.plan.featured .plan-price .iva { color: #8a8272; }
.plan-old {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  text-decoration: line-through;
  margin: 6px 0 0;
}
.plan-discount {
  display: inline-block;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  margin-top: 8px;
  letter-spacing: 0.04em;
}
.plan.featured .plan-discount { background: rgba(214, 58, 47, 0.18); color: #ff8c82; }
.plan hr {
  border: 0;
  height: 2px;
  background: var(--line);
  margin: 24px 0;
  border-radius: 2px;
}
.plan.featured hr { background: #3a342e; }
.plan-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-specs li { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.plan-specs .tick {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.plan.featured .plan-specs .tick { background: var(--brand); }
.plan .btn { margin-top: auto; }

/* =========== DOMAIN SEARCH =========== */
.domains {
  padding: 96px 0;
  background: var(--bg);
}
.domains-wrap { text-align: center; max-width: 780px; margin: 0 auto; }
.domains h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  margin: 20px 0 12px;
  letter-spacing: -0.035em;
  font-weight: 700;
}
.domains h2 .accent { color: var(--brand); }
.domain-form {
  display: flex;
  gap: 0;
  margin: 32px 0 20px;
  background: var(--paper);
  border: var(--border);
  border-radius: var(--r-pill);
  overflow: hidden;
  box-shadow: var(--sh-6);
}
.domain-form input {
  flex: 1;
  padding: 18px 24px;
  border: 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 16px;
  outline: none;
  color: var(--ink);
}
.domain-form button {
  background: var(--brand);
  color: #fff;
  border: 0;
  padding: 0 28px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border-left: var(--border);
}
.tld-list { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 16px; }
.tld-chip {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 6px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--paper);
  color: var(--ink-2);
}

/* =========== DOMAIN SEARCH RESULTS =========== */
.results-card {
  background: var(--paper);
  border: var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-6);
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}
.s-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px;
  font-size: 15px;
  color: var(--ink-2);
  font-weight: 500;
}
.s-spinner {
  width: 20px;
  height: 20px;
  border: 2.5px solid var(--line);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: s-spin .8s linear infinite;
}
@keyframes s-spin { to { transform: rotate(360deg); } }

.s-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  border-bottom: 1.5px solid var(--line);
}
.s-result:last-child { border-bottom: 0; }

.s-result-info { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; }
.s-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-sans);
  flex-shrink: 0;
  border: 2px solid var(--ink);
}
.s-available .s-icon {
  background: #22c55e;
  color: #fff;
}
.s-unavailable .s-icon {
  background: var(--line);
  color: var(--muted);
}
.s-domain {
  font-size: 15px;
  line-height: 1.35;
  color: var(--ink-2);
  word-break: break-all;
  min-width: 0;
}
.s-domain strong {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-weight: 700;
  margin-right: 2px;
}
.s-available .s-domain strong { color: var(--ink); }
.s-unavailable .s-domain { opacity: 0.65; }

.s-result .btn, .s-result .btn-success {
  background: var(--brand);
  color: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-2);
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s, box-shadow .12s;
  white-space: nowrap;
  flex-shrink: 0;
}
.s-result .btn:hover, .s-result .btn-success:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--sh-4);
}

@media (max-width: 640px) {
  .s-result { flex-direction: column; align-items: stretch; padding: 14px 18px; gap: 12px; }
  .s-result-info { gap: 10px; }
  .s-icon { width: 28px; height: 28px; font-size: 13px; }
  .s-domain { font-size: 14px; }
  .s-domain strong { font-size: 16px; }
  .s-result .btn, .s-result .btn-success { width: 100%; text-align: center; justify-content: center; }
}

/* =========== TESTIMONIAL =========== */
.testimonial-card {
  padding: 48px;
  background: var(--cream);
  border: var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-red-8);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
.avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--brand);
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.25;
  margin: 20px 0 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.testimonial-author { font-size: 15px; font-weight: 600; }
.testimonial-role { font-size: 13px; color: var(--ink-2); margin-top: 2px; }

/* =========== FAQ =========== */
.faq-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 56px; align-items: start; }
.faq-side { position: sticky; top: 110px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--paper);
  border: var(--border);
  border-radius: var(--r-lg);
}
.faq-item[open] { background: var(--cream); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { display: flex; gap: 16px; align-items: center; }
.faq-num { font-family: var(--font-mono); font-size: 12px; color: var(--brand); font-weight: 600; }
.faq-q-text { font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: -0.02em; }
.faq-chev {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: var(--border);
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .2s;
  color: #fff;
}
.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-item p { padding: 0 28px 24px 58px; margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-2); }

/* =========== CTA FINAL =========== */
.cta-final {
  background: var(--brand);
  border-top: var(--border);
  border-bottom: var(--border);
  position: relative;
  overflow: hidden;
}
.cta-final .container { position: relative; z-index: 2; padding-top: 96px; padding-bottom: 96px; }
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.98;
  margin: 0;
  color: var(--cream);
  font-weight: 700;
  letter-spacing: -0.035em;
  max-width: 780px;
}
.cta-final p { font-size: 20px; margin: 24px 0 36px; color: var(--brand-soft); max-width: 640px; }
.cta-final-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-deco {
  position: absolute;
  opacity: 0.18;
  color: var(--ink);
  pointer-events: none;
}
.cta-deco.tr { top: -60px; right: 60px; }
.cta-deco.bl { bottom: -50px; left: 40px; opacity: 0.12; }

/* =========== FOOTER =========== */
.footer {
  background: var(--ink);
  color: var(--cream);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  padding: 72px 0 40px;
}
.footer-brand p { font-size: 14px; color: #bdb4a6; line-height: 1.55; margin: 18px 0 0; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--brand);
  letter-spacing: 0.1em;
  margin: 0 0 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 6px; }
.footer-col a { font-size: 14px; color: var(--cream); opacity: 0.8; padding: 4px 0; display: inline-block; }
.footer-col a:hover { opacity: 1; color: var(--brand); }
.social { display: flex; gap: 10px; margin-top: 14px; }
.social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,248,238,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--cream);
  opacity: 1;
}
.social a:hover { background: var(--brand); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,248,238,0.12);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #8a8272;
}
.footer-bottom p { margin: 0; }

/* =========== RESPONSIVE =========== */
@media (max-width: 1024px) {
  .hero { padding: 56px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-collage { max-width: 420px; margin: 0 auto; width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 32px; padding: 40px 0; }
  .stat + .stat { border-left: 0; padding-left: 0; }
  .stat:nth-child(2n+1) + .stat { border-left: 2px dashed rgba(255,248,238,0.2); padding-left: 32px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .plans-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; gap: 32px; }
  .plan.featured { transform: none; margin-top: 8px; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-side { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
}

@media (max-width: 768px) {
  /* Promo bar */
  .promo-bar {
    font-size: 12px;
    padding: 10px 40px 10px 16px;
    gap: 6px;
    text-align: center;
    justify-content: center;
    line-height: 1.35;
  }
  .promo-bar a { font-size: 13px; }
  .promo-close { right: 10px; font-size: 20px; padding: 4px 8px; }

  /* Nav */
  .nav-inner { padding: 14px 20px; gap: 12px; }
  .nav-brand-img img { height: 30px; }
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; order: 3; }
  .nav-cta-group { order: 2; gap: 8px; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-top: var(--border);
    border-bottom: var(--border);
    padding: 16px 20px;
    gap: 4px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .nav-menu.open > li { width: 100%; padding: 4px 0; }
  .nav-menu.open > li > a { font-size: 16px; font-weight: 600; padding: 10px 0; }
  .nav-menu.open .nav-dropdown {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 4px 0 8px 12px;
    min-width: 0;
    display: flex;
  }
  .nav-menu.open .nav-dropdown a { padding: 8px 10px; font-size: 14px; }
  .nav-cta-group .nav-link-muted { display: none; }
  .nav-cta-group .btn-sm { padding: 8px 14px; font-size: 13px; }

  /* Container */
  .container { padding: 0 20px; }

  /* Hero */
  .hero { padding: 44px 0 56px; }
  .hero-grid { gap: 40px; }
  .hero .tag { font-size: 12px; padding: 5px 12px; }
  .hero h1 { font-size: clamp(34px, 9.2vw, 52px); line-height: 1; margin-top: 20px; }
  .hero p.lead { font-size: 16px; margin-top: 20px; max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; margin-top: 28px; }
  .hero-ctas .btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: 15px; }
  .trust-list { margin-top: 28px; gap: 10px 20px; }
  .trust-item { font-size: 13px; }

  /* Hero collage — más compacto y centrado */
  .hero-collage { max-width: 340px; }
  .collage-chip.price { top: 14px; left: 12px; padding: 14px 18px; }
  .collage-chip.price .lbl { font-size: 9px; }
  .collage-chip.price .num { font-size: 36px; }
  .collage-chip.price .unit { font-size: 12px; }
  .collage-chip.stat { top: 44px; right: 8px; width: 120px; padding: 12px; }
  .collage-chip.stat .big { font-size: 17px; }
  .collage-chip.stat .lil { font-size: 10px; }
  .collage-center .halo { width: 110px; height: 110px; }
  .collage-center .halo svg { width: 70px; height: 70px; }
  .collage-chip.reviews { bottom: 14px; left: 6px; padding: 10px 12px; gap: 8px; }
  .collage-chip.reviews .num { font-size: 11px; }
  .collage-chip.reviews .sub { font-size: 9px; }
  .collage-chip.reviews .stars svg { width: 11px; height: 11px; }
  .collage-chip.server { bottom: 44px; right: 0; padding: 10px; }
  .collage-chip.server .lbl { font-size: 9px; }

  /* Stats */
  .stats-grid { padding: 36px 0; gap: 24px 20px; }
  .stat + .stat { padding-left: 0; }
  .stat:nth-child(2n+1) + .stat { padding-left: 20px; }
  .stat .big { font-size: 40px; }
  .stat .lbl { font-size: 12px; margin-top: 4px; }

  /* Sections */
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: clamp(30px, 7.5vw, 44px); margin: 12px 0 12px; }
  .section-header p { font-size: 15px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature { padding: 24px; }
  .feature .icon-box { width: 48px; height: 48px; border-radius: 14px; }
  .feature .icon-box svg { width: 26px; height: 26px; }
  .feature .num { margin-top: 18px; }
  .feature h3 { font-size: 21px; margin: 6px 0 10px; }
  .feature p { font-size: 14px; }

  /* Plans */
  .plans-section .section-header { text-align: center; }
  .plans-grid { gap: 36px; }
  .plan { padding: 28px 24px; }
  .plan-badge { top: -16px; font-size: 11px; padding: 6px 14px; left: 20px; }
  .plan h3 { font-size: 26px; }
  .plan-desc { font-size: 13px; min-height: 0; margin: 10px 0 20px; }
  .plan-price .big { font-size: 54px; }
  .plan-price .unit { font-size: 13px; }
  .plan-specs { gap: 10px; margin-bottom: 22px; }
  .plan-specs li { font-size: 13px; }

  /* Domain */
  .domains { padding: 64px 0; }
  .domains h2 { font-size: clamp(26px, 7vw, 36px); }
  .domain-form { flex-direction: column; border-radius: 20px; overflow: hidden; padding: 8px; gap: 8px; box-shadow: var(--sh-4); }
  .domain-form input { padding: 14px 16px; border-radius: var(--r-pill); background: var(--bg); text-align: center; }
  .domain-form button { padding: 14px 20px; border-radius: var(--r-pill); border-left: 0; width: 100%; }
  .tld-list { gap: 6px; }
  .tld-chip { font-size: 11px; padding: 4px 10px; }

  /* Testimonial */
  .testimonial-card { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; gap: 20px; }
  .avatar { margin: 0 auto; width: 88px; height: 88px; font-size: 32px; }
  .testimonial-card blockquote { font-size: 18px; line-height: 1.35; margin: 12px 0 20px; }
  .testimonial-card .stars { justify-content: center; }
  .testimonial-card .stars svg { width: 16px; height: 16px; }
  .testimonial-author { font-size: 14px; }
  .testimonial-role { font-size: 12px; }

  /* FAQ */
  .faq-side h2 { font-size: clamp(28px, 7vw, 40px) !important; }
  .faq-side .btn { width: 100%; justify-content: center; }
  .faq-list { gap: 10px; }
  .faq-item summary { padding: 18px 20px; gap: 12px; }
  .faq-q { gap: 10px; flex: 1; min-width: 0; }
  .faq-num { font-size: 11px; }
  .faq-q-text { font-size: 15px; line-height: 1.3; }
  .faq-chev { width: 32px; height: 32px; }
  .faq-chev svg { width: 12px; height: 12px; }
  .faq-item p { padding: 0 20px 20px 41px; font-size: 14px; }

  /* CTA final */
  .cta-final .container { padding-top: 64px; padding-bottom: 64px; }
  .cta-final h2 { font-size: clamp(34px, 8.2vw, 52px); }
  .cta-final p { font-size: 16px; margin: 18px 0 28px; }
  .cta-final-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-final-ctas .btn { width: 100%; justify-content: center; padding: 14px 20px; }
  .cta-deco.tr { top: -40px; right: 20px; }
  .cta-deco.tr svg { width: 180px; height: 180px; }
  .cta-deco.bl { bottom: -30px; left: 10px; }
  .cta-deco.bl svg { width: 140px; height: 140px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; padding: 48px 0 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: none; }
  .footer-col h4 { font-size: 10px; margin-bottom: 12px; }
  .footer-col a { font-size: 13px; padding: 3px 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; font-size: 11px; padding: 20px 0; }
}

/* =========== COMPONENTES ADICIONALES (subpáginas) =========== */

/* Hero simple — sin collage, texto + trust + CTAs */
.hero-simple { padding: 72px 0 88px; position: relative; overflow: hidden; }
.hero-simple::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -120px;
  width: 280px;
  height: 280px;
  background: var(--brand);
  opacity: 0.08;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-simple::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: -80px;
  width: 200px;
  height: 200px;
  background: var(--ink);
  opacity: 0.05;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-simple-wrap { position: relative; z-index: 1; max-width: 860px; }
.hero-simple h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 28px 0 0;
}
.hero-simple h1 .accent { color: var(--brand); }
.hero-simple p.lead {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--ink-2);
  margin: 28px 0 0;
  max-width: 680px;
}
.hero-simple .hero-ctas { margin-top: 36px; }
.hero-simple .trust-list { margin-top: 36px; }

/* Features-grid variantes de columnas */
.features-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.features-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

/* Plans grid 4 columnas (VPS) */
.plans-grid.plans-grid-4 { grid-template-columns: repeat(4, 1fr); max-width: none; gap: 20px; }
.plans-grid.plans-grid-4 .plan { padding: 28px 22px; }
.plans-grid.plans-grid-4 .plan h3 { font-size: 26px; }
.plans-grid.plans-grid-4 .plan-price .big { font-size: 56px; }
.plans-grid.plans-grid-4 .plan-specs li { font-size: 13px; }

/* CTA ghost sobre fondo rojo */
.btn.cta-ghost-on-red {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
  box-shadow: var(--sh-5);
}
.btn.cta-ghost-on-red:hover { box-shadow: var(--sh-8); }

/* Contacto - grid datos legales */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-item {
  padding: 24px;
  background: var(--paper);
  border: var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-4);
}
.contact-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.contact-value { font-size: 15px; font-weight: 500; line-height: 1.45; }
.contact-value a { color: var(--brand); font-weight: 600; }

/* SLA table */
.sla-table {
  background: var(--paper);
  border: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-6);
}
.sla-row {
  display: grid;
  grid-template-columns: 1fr 180px;
  padding: 18px 24px;
  border-bottom: 1.5px solid var(--line);
  align-items: center;
}
.sla-row:last-child { border-bottom: 0; }
.sla-row.sla-head {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 24px;
}
.sla-row .mono { color: var(--brand); font-weight: 600; font-size: 15px; }
.sla-row.sla-head .mono { color: var(--cream); }
.sla-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
}

/* KB grid (base-de-conocimiento) */
.kb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.kb-col {
  padding: 32px;
  background: var(--cream);
  border: var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-6);
}
.kb-col h3 {
  font-size: 24px;
  margin: 0 0 16px;
  letter-spacing: -0.035em;
  font-weight: 700;
}
.kb-list { list-style: none; padding: 0; margin: 0; }
.kb-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.kb-list li:last-child { border-bottom: 0; }
.kb-list a {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.kb-list a::before { content: "→"; color: var(--brand); font-weight: 700; }
.kb-list a:hover { color: var(--brand); }

/* Prose sections (legal) */
.prose-section { padding: 64px 0 88px; }
.prose-container { max-width: 840px; }
.prose-h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 40px;
  font-weight: 700;
}
.prose-block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1.5px solid var(--line);
}
.prose-block:last-child { border-bottom: 0; margin-bottom: 0; }
.prose-block h3 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.prose-block h4 {
  font-family: var(--font-display);
  font-size: 17px;
  margin: 20px 0 8px;
  font-weight: 600;
}
.prose-body p { font-size: 16px; line-height: 1.65; color: var(--ink-2); margin: 0 0 14px; }
.prose-body p:last-child { margin-bottom: 0; }
.prose-body a { color: var(--brand); font-weight: 600; border-bottom: 1px solid var(--brand); }
.prose-body a:hover { background: var(--brand-soft); }
.prose-body code {
  font-family: var(--font-mono);
  background: var(--cream);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 13px;
  border: 1px solid var(--line);
}
.prose-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prose-list li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
}
.prose-list li::before {
  content: "—";
  color: var(--brand);
  position: absolute;
  left: 0;
  font-weight: 700;
}
.legal-footer {
  margin-top: 24px;
  padding: 20px;
  background: var(--cream);
  border: var(--border);
  border-radius: var(--r);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-footer strong { font-weight: 600; }

/* Responsive de componentes adicionales */
@media (max-width: 1024px) {
  .plans-grid.plans-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .kb-grid { grid-template-columns: 1fr; }
  .features-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-simple { padding: 48px 0 56px; }
  .hero-simple h1 { font-size: clamp(34px, 9.2vw, 52px); }
  .hero-simple p.lead { font-size: 16px; }
  .hero-simple-wrap { max-width: 100%; }
  .hero-simple .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-simple .hero-ctas .btn { width: 100%; justify-content: center; }
  .plans-grid.plans-grid-4 { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 14px; }
  .contact-item { padding: 18px; }
  .sla-row { grid-template-columns: 1fr 100px; padding: 14px 18px; font-size: 14px; }
  .sla-row.sla-head { padding: 12px 18px; font-size: 11px; }
  .sla-row .mono { font-size: 13px; }
  .kb-col { padding: 24px; }
  .kb-col h3 { font-size: 21px; }
  .kb-list a { font-size: 14px; }
  .features-grid.cols-3 { grid-template-columns: 1fr; }
  .prose-section { padding: 40px 0 64px; }
  .prose-h1 { font-size: clamp(32px, 8vw, 52px); margin-bottom: 28px; }
  .prose-block { margin-bottom: 32px; padding-bottom: 32px; }
  .prose-block h3 { font-size: 20px; }
  .prose-body p, .prose-list li { font-size: 15px; }
  .legal-footer { font-size: 13px; padding: 16px; }
}
@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .promo-bar { padding: 9px 36px 9px 12px; font-size: 11px; }
  .promo-bar a { font-size: 12px; }
  .hero h1 { font-size: 32px; }
  .hero p.lead { font-size: 15px; }
  .stat .big { font-size: 34px; }
  .plan-price .big { font-size: 46px; }
  .feature h3 { font-size: 19px; }
  .cta-final h2 { font-size: 32px; }
  .testimonial-card blockquote { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-collage { max-width: 300px; }
  .collage-chip.price .num { font-size: 30px; }
  .collage-center .halo { width: 96px; height: 96px; }
  .collage-center .halo svg { width: 60px; height: 60px; }
  .collage-chip.stat { width: 108px; }
  .collage-chip.stat .big { font-size: 15px; }
}
