/* Univers HolyCloud v3 — Web / Cloud / Datacenter / Network */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap');

.uv {
  --uv-ink: #0b1220;
  --uv-muted: #64748b;
  --uv-line: #e2e8f0;
  --uv-surface: #f8fafc;
  --uv-white: #fff;
  --uv-blue: #2563eb;
  --uv-navy: #12264f;
  --uv-navy-deep: #0b1733;
  --uv-accent: #3b82f6;
  --uv-radius: 10px;
  --uv-font: "Source Sans 3", system-ui, sans-serif;
  --uv-display: "Outfit", system-ui, sans-serif;
  color: var(--uv-ink);
  font-family: var(--uv-font);
  background: var(--uv-white);
}

.uv * { box-sizing: border-box; }

/* ——— Hero ——— */
.uv-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 3.25rem 0 3.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(59, 130, 246, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(37, 99, 235, 0.2), transparent 50%),
    linear-gradient(145deg, var(--uv-navy-deep) 0%, var(--uv-navy) 48%, #18316a 100%);
  color: #fff;
}

.uv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 20%, transparent 75%);
  pointer-events: none;
  animation: uv-grid-drift 28s linear infinite;
}

.uv-hero::after {
  content: "";
  position: absolute;
  width: 42vmax;
  height: 42vmax;
  right: -12%;
  top: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.22), transparent 68%);
  pointer-events: none;
  animation: uv-glow 8s ease-in-out infinite alternate;
}

@keyframes uv-grid-drift {
  from { transform: translateY(0); }
  to { transform: translateY(48px); }
}

@keyframes uv-glow {
  from { transform: scale(1) translate(0, 0); opacity: 0.7; }
  to { transform: scale(1.08) translate(-2%, 3%); opacity: 1; }
}

.uv-hero .container {
  position: relative;
  z-index: 2;
}

.uv-hero__inner {
  max-width: 720px;
}

.uv-hero h1 {
  margin: 0 0 1rem;
  font-family: var(--uv-display);
  font-size: clamp(2.1rem, 4.5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  animation: uv-rise 0.75s ease 0.06s both;
}

.uv-hero__lead {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.9);
  animation: uv-rise 0.75s ease 0.12s both;
}

.uv-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  animation: uv-rise 0.75s ease 0.18s both;
}

@keyframes uv-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.uv-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 8px;
  font-family: var(--uv-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none !important;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s, border-color 0.15s;
}

.uv-btn:hover { transform: translateY(-1px); }

.uv-btn--primary {
  background: #fff;
  color: var(--uv-navy) !important;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.25);
}

.uv-btn--primary:hover {
  background: #eff6ff;
  color: var(--uv-blue) !important;
}

.uv-btn--ghost {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.uv-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.uv-btn--solid {
  background: var(--uv-blue);
  color: #fff !important;
}

.uv-btn--solid:hover {
  background: #1d4ed8;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.uv-btn--outline {
  background: #fff;
  color: var(--uv-blue) !important;
  border: 2px solid var(--uv-blue);
}

.uv-btn--outline:hover {
  background: var(--uv-blue);
  color: #fff !important;
}

/* ——— Metrics ——— */
.uv-metrics {
  margin-top: -2.25rem;
  position: relative;
  z-index: 3;
  padding: 0 0 0.5rem;
}

.uv-metrics__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--uv-line);
  border-radius: var(--uv-radius);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.uv-metrics__list li {
  background: #fff;
  padding: 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.uv-metrics__list strong {
  font-family: var(--uv-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--uv-navy);
  letter-spacing: -0.02em;
}

.uv-metrics__list span {
  font-size: 0.88rem;
  color: var(--uv-muted);
  font-weight: 500;
}

/* ——— Sections ——— */
.uv-section {
  padding: 4.5rem 0;
}

.uv-section--soft { background: var(--uv-surface); }

.uv-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.uv-head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--uv-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--uv-ink);
}

.uv-head p {
  margin: 0;
  color: var(--uv-muted);
  font-size: 1.02rem;
  line-height: 1.5;
}

/* ——— Offer cards ——— */
.uv-offers-grid {
  display: grid;
  gap: 1.25rem;
}

.uv-offers-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.uv-offers-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.uv-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--uv-line);
  border-radius: var(--uv-radius);
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
}

.uv-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.1);
  transform: translateY(-3px);
}

.uv-card.is-featured {
  border-color: var(--uv-blue);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.12);
}

.uv-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
}

.uv-card__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #eff6ff;
  color: var(--uv-blue);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.uv-card.is-featured .uv-card__icon {
  background: var(--uv-blue);
  color: #fff;
}

.uv-card h3 {
  margin: 0 0 1rem;
  font-family: var(--uv-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--uv-ink);
  padding-right: 4.5rem;
}

.uv-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.2rem 0.4rem;
  margin-bottom: 0.35rem;
  line-height: 1;
}

.uv-card__price-label {
  width: 100%;
  font-size: 0.78rem;
  color: var(--uv-muted);
  margin-bottom: 0.15rem;
}

.uv-card__currency {
  font-family: var(--uv-display);
  font-weight: 800;
  font-size: 1rem;
  color: #1e3a8a;
}

.uv-card__amount {
  font-family: var(--uv-display);
  font-size: 2.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--uv-ink);
}

.uv-card__period {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--uv-muted);
}

.uv-card__specs {
  list-style: none;
  margin: 1.1rem 0 1.25rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--uv-line);
  flex: 1;
}

.uv-card__specs li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.4;
}

.uv-card__specs li i {
  color: #60a5fa;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.uv-card .uv-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ——— Points / features ——— */
.uv-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.uv-point {
  padding: 0.25rem 0.5rem;
}

.uv-point__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #eff6ff;
  color: var(--uv-blue);
  margin-bottom: 1rem;
  font-size: 1.15rem;
  transition: background 0.2s, color 0.2s;
}

.uv-point:hover .uv-point__icon {
  background: var(--uv-blue);
  color: #fff;
}

.uv-point h3 {
  margin: 0 0 0.45rem;
  font-family: var(--uv-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--uv-ink);
}

.uv-point p {
  margin: 0;
  color: var(--uv-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ——— Partners ——— */
.uv-partners {
  padding: 2.5rem 0;
  border-top: 1px solid var(--uv-line);
  background: #fff;
}

.uv-partners__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
}

.uv-partners__row img {
  height: 28px;
  width: auto;
  opacity: 0.45;
  filter: grayscale(1);
  transition: opacity 0.2s, filter 0.2s;
}

.uv-partners__row img:hover {
  opacity: 0.9;
  filter: none;
}

/* ——— Theme accents ——— */
.uv[data-uv="network"] .uv-hero {
  background:
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(14, 165, 233, 0.28), transparent 55%),
    linear-gradient(145deg, #071526 0%, #0c2748 50%, #123a5c 100%);
}

.uv[data-uv="datacenter"] .uv-hero {
  background:
    radial-gradient(ellipse 70% 50% at 80% 15%, rgba(37, 99, 235, 0.3), transparent 55%),
    linear-gradient(145deg, #0a1020 0%, #152445 55%, #1a3358 100%);
}

.uv[data-uv="web"] .uv-hero {
  background:
    radial-gradient(ellipse 70% 55% at 15% 25%, rgba(59, 130, 246, 0.28), transparent 50%),
    linear-gradient(155deg, #0d1b3a 0%, #163057 45%, #1e4a8c 100%);
}

/* SEO guides (cloud) */
.uv .hc-seo-guides {
  padding: 3.5rem 0;
  background: var(--uv-surface);
  border-top: 1px solid var(--uv-line);
}
.uv .hc-seo-guides__head { text-align: center; margin-bottom: 1.35rem; }
.uv .hc-seo-guides__head h2 {
  margin: 0 0 0.45rem;
  font-family: var(--uv-display);
  font-size: 1.4rem;
  font-weight: 800;
}
.uv .hc-seo-guides__head p { margin: 0; color: var(--uv-muted); }
.uv .hc-seo-guides__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.uv .hc-seo-guides__links a {
  display: inline-flex;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--uv-line);
  border-radius: 999px;
  background: #fff;
  color: #1e3a8a;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: border-color .15s, color .15s, box-shadow .15s;
}
.uv .hc-seo-guides__links a:hover {
  border-color: #93c5fd;
  color: var(--uv-blue);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.1);
}

@media (max-width: 1100px) {
  .uv-offers-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .uv-offers-grid--3 { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .uv-points { grid-template-columns: 1fr; gap: 1.75rem; }
  .uv-metrics__list { grid-template-columns: 1fr; }
  .uv-hero { padding: 2.5rem 0 2.75rem; }
}

@media (max-width: 640px) {
  .uv-offers-grid--4 { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .uv-hero__cta { flex-direction: column; align-items: stretch; }
  .uv-btn { justify-content: center; }
}
