/* ── Huevohost — Landing Page Styles ─────────────────────────────────────── */

/* Hero — fondo específico de hosting */
.hh-hero .hbg {
  background:
    linear-gradient(135deg, rgba(7,18,29,.90) 0%, rgba(10,30,50,.72) 55%, rgba(15,40,60,.85) 100%),
    url('../img/fondo-hosting.png') center/cover no-repeat;
}

/* Accent azul para Huevohost */
:root { --hh-blue: #7eb8f7; --hh-blue-dim: rgba(126,184,247,.15); }

.hh-ey { color: var(--hh-blue) !important; }
.hh-tag {
  background: rgba(126,184,247,.1);
  border: 1px solid rgba(126,184,247,.25);
  color: var(--hh-blue);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-family: var(--fb);
  letter-spacing: .06em;
}

/* ── Feature cards grandes ── */
.hh-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.hh-card {
  background: var(--bg-surf);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  transition: border-color .2s, transform .2s;
}
.hh-card:hover { border-color: rgba(126,184,247,.4); transform: translateY(-3px); }
.hh-card-icon {
  width: 48px; height: 48px;
  background: var(--hh-blue-dim);
  border: 1px solid rgba(126,184,247,.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.hh-card-title { font-family: var(--fb); font-size: 16px; color: var(--text); margin-bottom: 8px; }
.hh-card-desc { color: var(--muted); font-size: 13px; line-height: 1.65; }

/* ── Stats bar ── */
.hh-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 48px;
}
.hh-stat {
  background: var(--bg-surf);
  padding: 28px 24px;
  text-align: center;
}
.hh-stat-num {
  font-family: var(--fb);
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--hh-blue);
  line-height: 1;
  margin-bottom: 6px;
}
.hh-stat-label { color: var(--muted); font-size: 12px; letter-spacing: .05em; }

/* ── Two-column ── */
.hh-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 768px) { .hh-two { grid-template-columns: 1fr; gap: 32px; } }

.hh-checklist { list-style: none; padding: 0; margin: 20px 0 0; }
.hh-checklist li {
  color: var(--muted);
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 10px;
}
.hh-checklist li:last-child { border-bottom: none; }
.hh-checklist li::before { content: '✓'; color: var(--hh-blue); font-weight: 700; flex-shrink: 0; }

/* ── Testimonios ── */
.hh-testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.hh-testimonial {
  background: #fff;
  border: 1px solid rgba(24,41,55,.1);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hh-testi-text {
  color: #4a6070;
  font-size: 13px;
  line-height: 1.75;
  flex: 1;
  position: relative;
  padding-left: 20px;
}
.hh-testi-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 32px;
  color: var(--hh-blue);
  font-family: var(--fs);
  line-height: 1;
  opacity: .5;
}
.hh-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hh-testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--hh-blue-dim);
  border: 1px solid rgba(126,184,247,.3);
  color: var(--hh-blue);
  font-family: var(--fb);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hh-testi-name { font-family: var(--fb); font-size: 13px; color: #1a2b38; }
.hh-testi-company { font-size: 12px; color: #7eb8f7; letter-spacing: .04em; }

/* ── Spec pill grid ── */
.hh-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hh-spec {
  background: var(--hh-blue-dim);
  border: 1px solid rgba(126,184,247,.2);
  color: var(--hh-blue);
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-family: var(--fb);
  letter-spacing: .04em;
}

/* ── Visual server card ── */
.hh-server-card {
  background: var(--bg-surf);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.hh-server-header {
  background: rgba(126,184,247,.06);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fb);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .06em;
}
.hh-server-dot { width: 8px; height: 8px; border-radius: 50%; }
.hh-server-body { padding: 24px 20px; display: flex; flex-direction: column; gap: 12px; }
.hh-server-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.hh-server-row:last-child { border-bottom: none; }
.hh-server-label { color: var(--muted); }
.hh-server-value { color: var(--text); font-family: var(--fm); font-size: 12px; }
.hh-server-ok {
  background: rgba(37,211,102,.12);
  border: 1px solid rgba(37,211,102,.25);
  color: #25D366;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-family: var(--fb);
}

/* ── CTA final ── */
.hh-cta {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(180deg, transparent, rgba(126,184,247,.04));
}
.hh-cta h2 {
  font-family: var(--fb);
  font-size: clamp(28px, 4vw, 52px);
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: .03em;
}
.hh-cta p { color: var(--muted); margin-bottom: 36px; max-width: 480px; margin-inline: auto; }
.hh-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hh-blue);
  color: #0a1c2e;
  font-family: var(--fb);
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
  font-weight: 700;
}
.hh-btn:hover { opacity: .9; transform: translateY(-1px); }
