/* ===== Corporate Hero Slider (ch-*) ===== */
.ch {
  position: relative;
  z-index: 1;
  padding: calc(var(--total-chrome, 122px) + 48px) 0 72px;
  overflow: hidden;
}

.ch::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 40%, rgba(37, 99, 235, 0.14), transparent 60%),
    radial-gradient(ellipse 45% 40% at 85% 30%, rgba(37, 99, 235, 0.08), transparent 55%);
  pointer-events: none;
}

.ch__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 40px 52px;
  align-items: center;
}

.ch__main { min-width: 0; }

.ch__viewport {
  position: relative;
  min-height: 260px;
}

.ch__slide { animation: ch-in 0.45s ease both; }
.ch__slide[hidden] { display: none !important; }

@keyframes ch-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.ch__title {
  margin: 0 0 1.1rem;
  font-family: var(--font-display, 'Plus Jakarta Sans', system-ui, sans-serif);
  font-size: clamp(2.05rem, 4vw, 3.1rem);
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: #f8fafc;
}

.ch__desc {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #94a3b8;
}

.ch__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1.75rem;
}

.ch__controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.75rem;
}

.ch__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #cbd5e1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ch__arrow:hover {
  color: #fff;
  background: rgba(37, 99, 235, 0.16);
  border-color: rgba(96, 165, 250, 0.35);
}

.ch__dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
}

.ch__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.35);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.ch__dot.is-active {
  width: 22px;
  background: #3b82f6;
}

.ch__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ch__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #94a3b8;
}

.ch__trust svg {
  width: 16px;
  height: 16px;
  color: #60a5fa;
  flex-shrink: 0;
}

/* Right stage */
.ch__stage {
  position: relative;
  min-height: 360px;
}

.ch__visual {
  animation: ch-in 0.45s ease both;
}

.ch__visual[hidden] { display: none !important; }

/* Shared visual card */
.hv {
  position: relative;
  padding: 1.35rem 1.3rem 1.25rem;
  border-radius: 20px;
  background:
    linear-gradient(165deg, rgba(17, 24, 39, 0.96), rgba(8, 12, 22, 0.99));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  min-height: 340px;
}

.hv::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.22), transparent 68%);
  pointer-events: none;
}

.hv__badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.16);
  border: 1px solid rgba(96, 165, 250, 0.28);
  font-family: var(--font-display, 'Plus Jakarta Sans', system-ui, sans-serif);
}

/* Software */
.hv--software .hv__browser {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0b1220;
  overflow: hidden;
}

.hv__browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.55rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hv__browser-bar span,
.hv__console-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #475569;
}

.hv__browser-bar span:nth-child(1),
.hv__console-bar span:nth-child(1) { background: #f87171; }
.hv__browser-bar span:nth-child(2),
.hv__console-bar span:nth-child(2) { background: #fbbf24; }
.hv__browser-bar span:nth-child(3),
.hv__console-bar span:nth-child(3) { background: #34d399; }

.hv__browser-bar em,
.hv__console-bar em {
  margin-left: 0.55rem;
  font-style: normal;
  font-size: 0.72rem;
  color: #64748b;
  font-family: ui-monospace, Consolas, monospace;
}

.hv__browser-body {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 88px;
  gap: 0.75rem;
  padding: 0.9rem;
  min-height: 170px;
}

.hv__code {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.72rem;
  line-height: 1.55;
  color: #cbd5e1;
  white-space: pre-wrap;
}

.hv__code .c-k { color: #c084fc; }
.hv__code .c-v { color: #93c5fd; }
.hv__code .c-s { color: #86efac; }

.hv__phone {
  align-self: end;
  width: 78px;
  border-radius: 14px;
  border: 2px solid rgba(148, 163, 184, 0.35);
  background: #020617;
  padding: 0.35rem 0.3rem 0.45rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.hv__phone-notch {
  width: 28px;
  height: 4px;
  margin: 0 auto 0.4rem;
  border-radius: 999px;
  background: #334155;
}

.hv__phone-screen {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.45rem;
  border-radius: 8px;
  background: linear-gradient(160deg, #1e3a8a, #0f172a);
  min-height: 96px;
}

.hv__phone-screen strong {
  font-size: 0.58rem;
  color: #e2e8f0;
  font-family: var(--font-display, 'Plus Jakarta Sans', system-ui, sans-serif);
}

.hv__phone-screen span {
  display: block;
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.18);
}

.hv__phone-screen span:nth-child(3) { width: 70%; }
.hv__phone-screen span:nth-child(4) { width: 45%; }

.hv__tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.9rem;
}

.hv__tags span {
  padding: 0.3rem 0.55rem;
  border-radius: 7px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Hosting */
.hv--hosting .hv__rack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.hv__unit {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.hv__led {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #64748b;
  box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.2);
}

.hv__unit.is-live .hv__led {
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.22);
  animation: hv-blink 2.2s ease-in-out infinite;
}

@keyframes hv-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.hv__unit strong {
  font-size: 0.88rem;
  color: #f1f5f9;
  font-family: ui-monospace, Consolas, monospace;
}

.hv__unit em {
  font-style: normal;
  font-size: 0.72rem;
  color: #64748b;
}

.hv__meters {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.hv__meters > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.55rem;
  align-items: center;
}

.hv__meters span {
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hv__meters b {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.hv__meters b::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--hv, 40%);
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
}

.hv__foot {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.78rem;
  color: #64748b;
}

.hv__foot strong { color: #e2e8f0; font-weight: 700; }

/* VDS */
.hv--vds .hv__console {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #020617;
  overflow: hidden;
  margin-bottom: 0.9rem;
}

.hv__console-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.55rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hv__term {
  margin: 0;
  padding: 0.9rem 0.95rem 1rem;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.74rem;
  line-height: 1.55;
  color: #cbd5e1;
  white-space: pre-wrap;
  min-height: 140px;
}

.hv__prompt { color: #38bdf8; }
.hv__ok { color: #86efac; }

.hv__specs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
}

.hv__specs > div {
  text-align: center;
  padding: 0.65rem 0.35rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.hv__specs span {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.25rem;
}

.hv__specs strong {
  font-family: var(--font-display, 'Plus Jakarta Sans', system-ui, sans-serif);
  font-size: 0.95rem;
  color: #f8fafc;
}

/* Domain */
.hv--domain .hv__domain-card {
  position: relative;
  z-index: 1;
  padding: 1.15rem 1.1rem;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(37, 99, 235, 0.18), rgba(15, 23, 42, 0.5));
  border: 1px solid rgba(96, 165, 250, 0.25);
  margin-bottom: 0.85rem;
}

.hv__www {
  margin: 0;
  font-size: 0.78rem;
  color: #64748b;
  font-family: ui-monospace, Consolas, monospace;
}

.hv__name {
  margin: 0.15rem 0 0.55rem;
  font-family: var(--font-display, 'Plus Jakarta Sans', system-ui, sans-serif);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f8fafc;
  word-break: break-all;
}

.hv__name span { color: #60a5fa; }

.hv__status {
  margin: 0;
  display: inline-flex;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(52, 211, 153, 0.12);
  color: #6ee7b7;
  border: 1px solid rgba(52, 211, 153, 0.25);
}

.hv__tlds {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.hv__tlds span {
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: ui-monospace, Consolas, monospace;
}

.hv__tlds span.is-hot {
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.16);
  border-color: rgba(96, 165, 250, 0.3);
}

.hv__dns {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.4rem;
}

.hv__dns > div {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.78rem;
}

.hv__dns span { color: #64748b; font-weight: 700; }
.hv__dns code { color: #e2e8f0; font-family: ui-monospace, Consolas, monospace; }

/* SEO */
.hv--seo .hv__chart {
  position: relative;
  z-index: 1;
  margin-bottom: 0.9rem;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.75rem 0.5rem 0.35rem;
}

.hv__chart svg { width: 100%; height: 110px; display: block; }

.hv__kpis {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}

.hv__kpis > div {
  text-align: center;
  padding: 0.7rem 0.35rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.hv__kpis span {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.25rem;
}

.hv__kpis strong {
  font-family: var(--font-display, 'Plus Jakarta Sans', system-ui, sans-serif);
  font-size: 1.05rem;
  color: #f8fafc;
}

@media (max-width: 960px) {
  .ch {
    padding: calc(var(--total-chrome, 56px) + 28px) 0 48px;
  }

  .ch__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ch__viewport { min-height: 0; }

  .ch__title {
    font-size: clamp(1.85rem, 7vw, 2.4rem);
  }

  .ch__stage {
    order: 2;
    min-height: 0;
  }

  .hv { min-height: 0; }
}

@media (max-width: 520px) {
  .hv__browser-body { grid-template-columns: 1fr; }
  .hv__phone { display: none; }
  .hv__specs { grid-template-columns: repeat(2, 1fr); }
}
