/* Extracted page CSS from index.html. */

/* Inline supplemental for homepage specifics */
    .hero-eyebrow-wrap { margin-bottom: 1.75rem; }

    .trust-strip {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      padding: 1.25rem 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      margin: 0;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text-muted);
      font-size: 0.875rem;
      font-weight: 500;
    }
    .trust-item svg { color: var(--flame); }

    .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
    @media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }

    .glassy-card {
      background: rgba(22,27,39,0.6);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 2.5rem;
      backdrop-filter: blur(12px);
    }

    .testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
    @media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr; } }

    .checklist { display: flex; flex-direction: column; gap: 12px; }
    .checklist-item { display: flex; gap: 12px; align-items: flex-start; }
    .checklist-item svg { flex-shrink: 0; margin-top: 2px; color: var(--flame); }
    .checklist-item-text { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.5; }
    .checklist-item-text strong { color: var(--text-primary); }

    .hosted-on-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--text-dim);
      background: var(--bg-700);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 4px 12px;
    }

/* ─── Hero: SiteGround layout ─── */
.mhero {
  position: relative;
  height: calc(100vh - var(--header-h, 72px));
  min-height: 580px;
  margin-top: 0;
  background-color: #08111e;
  background-image: url('../../assets/team.jpg');
  background-size: cover;
  background-position: 50% 42%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* overlay: buio pesante a sx (testo leggibile), rivela la foto a dx */
.mhero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(8,17,30,0.97) 0%,
      rgba(8,17,30,0.94) 28%,
      rgba(8,17,30,0.78) 48%,
      rgba(8,17,30,0.45) 65%,
      rgba(8,17,30,0.18) 82%,
      rgba(8,17,30,0.05) 100%
    ),
    linear-gradient(to bottom,
      rgba(8,17,30,0.55) 0%,
      transparent 35%,
      transparent 60%,
      rgba(8,17,30,0.70) 100%
    );
  z-index: 2;
  pointer-events: none;
}

/* glow radiale blu a sinistra, dietro il testo */
.mhero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 65% at 0% 60%, rgba(0,133,202,0.2) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.mhero > * { position: relative; z-index: 3; }
.mhero-overlay { z-index: 2; }
.mhero::before { z-index: 1; }

/* grid principale */
.mhero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2rem;
  max-width: 1480px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem 1.5rem;
  align-items: center;
  width: 100%;
}

/* ── LEFT ── */
.mhero-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: clamp(0.72rem, 0.3vw + 0.65rem, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  margin-bottom: 1.75rem;
}
.mhero-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #0085ca;
  flex-shrink: 0;
  animation: mheroPulse 2s ease-out infinite;
}

.mhero-h1 {
  font-size: clamp(1.75rem, 2.5vw + 1rem, 5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 1.75rem;
}
.mhero-desc {
  font-size: clamp(1rem, 0.5vw + 0.85rem, 1.35rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: clamp(440px, 40vw, 640px);
  margin: 0 0 2rem;
}
.mhero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.mhero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.875rem 1.75rem;
  background: #0085ca;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s, transform 0.15s;
}
.mhero-btn-primary:hover { background: #006fa8; transform: translateY(-1px); }
.mhero-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border: 1.5px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.18s;
  white-space: nowrap;
}
.mhero-btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* trust row */
.mhero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.mhero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(0.78rem, 0.4vw + 0.7rem, 1rem);
  font-weight: 600;
  color: rgba(255,255,255,0.52);
}
.mhero-trust-item svg { color: rgba(255,255,255,0.35); }

/* ── RIGHT: cards ticker verticale ── */
.mhero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* finestra visibile: mostra ~3.5 card, poi fade */
.mhero-cards-wrap {
  width: 100%;
  max-width: 380px;
  overflow: hidden;
  height: 310px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
}

/* track che scorre su */
.mhero-cards-track {
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: cardsScrollUp 14s linear infinite;
}
.mhero-cards-wrap:hover .mhero-cards-track {
  animation-play-state: paused;
}

@keyframes cardsScrollUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

/* glassmorphism pill card */
.mhero-card {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 16px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.mhero-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.22);
}
.mhero-card-active {
  background: rgba(0,133,202,0.16);
  border-color: rgba(0,133,202,0.45);
  box-shadow: 0 0 24px rgba(0,133,202,0.18);
}
.mhero-card-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mhero-card-body {
  flex: 1;
  min-width: 0;
}
.mhero-card-body span {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mhero-card-body small {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  font-weight: 500;
  line-height: 1.4;
  display: block;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mhero-card-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #0085ca;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

/* ── BOTTOM ── */
.mhero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  gap: 2rem;
  max-width: 100%;
}
.mhero-stats { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.mhero-stat {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding-right: 1.5rem;
}
.mhero-stat strong {
  font-size: clamp(1.25rem, 0.8vw + 1rem, 1.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}
.mhero-stat span {
  font-size: clamp(0.62rem, 0.25vw + 0.55rem, 0.85rem);
  color: rgba(255,255,255,0.38);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mhero-sdiv {
  width: 1px; height: 24px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  margin-right: 1.5rem;
}
.mhero-stat-green { flex-direction: row; align-items: center; gap: 5px; }
.mhero-stat-green svg { color: #22c55e; }
.mhero-stat-green strong { color: #22c55e; font-size: clamp(1rem, 0.8vw + 0.75rem, 1.5rem); }
.mhero-stat-green span { color: rgba(34,197,94,0.6); }
.mhero-team-label a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: clamp(0.7rem, 0.3vw + 0.62rem, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s;
}
.mhero-team-label a:hover { color: rgba(255,255,255,0.7); }

/* ── Large screens / 4K ── */
@media (min-width: 1600px) {
  .mhero-grid {
    max-width: 1680px;
    grid-template-columns: 1fr 460px;
    gap: 3rem;
    padding: 4rem 3rem 2rem;
  }
  .mhero-btn-primary,
  .mhero-btn-ghost {
    font-size: 1rem;
    padding: 1rem 2rem;
  }
  .mhero-trust-item svg { width: 16px; height: 16px; }
  .mhero-cards-wrap {
    max-width: 420px;
    height: 340px;
  }
  .mhero-card-body span { font-size: 1rem; }
  .mhero-card-body small { font-size: 0.8rem; }
}
@media (min-width: 2200px) {
  .mhero-grid {
    max-width: 1920px;
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .mhero { background-position: 52% 40%; }
  .mhero-grid { grid-template-columns: 1fr; padding-top: 3rem; }
  .mhero-right { display: none; }
  .mhero-h1 { font-size: clamp(2.5rem, 9vw, 4rem); }
}
@media (max-width: 560px) {
  .mhero-grid { padding: 2.5rem 1.25rem 1rem; }
  .mhero-bottom { padding: 0.75rem 1.25rem; gap: 1rem; flex-direction: column; align-items: flex-start; }
  .mhero-ctas { flex-direction: column; }
  .mhero-btn-primary, .mhero-btn-ghost { justify-content: center; }
  .mhero-trust { gap: 1rem; }
}

/* ── SERVIZI BENTO ── */
.sb-section { background:#eef1f7; padding:3rem 0 5rem; }
.sb-inner { max-width:1480px; margin:0 auto; padding:0 2rem; }
.sb-head { margin-bottom:2.25rem; }
.sb-eyebrow {
  display:block; font-size:.7rem; font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; color:#0085ca; margin-bottom:.6rem;
}
.sb-title {
  font-size:clamp(1.75rem,3.5vw,2.5rem); font-weight:900;
  letter-spacing:-.04em; color:#0f172a; line-height:1.1;
}
.sb-grid {
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:1rem;
}
.sb-a { grid-column:span 7; }
.sb-b { grid-column:span 5; }
.sb-c,.sb-d,.sb-e { grid-column:span 4; }
@media(max-width:960px){
  .sb-a,.sb-b { grid-column:span 12; }
  .sb-c,.sb-d { grid-column:span 6; }
  .sb-e { grid-column:span 12; }
}
@media(max-width:600px){ .sb-c,.sb-d { grid-column:span 12; } }

.sb-card {
  border-radius:24px; padding:2rem 2rem 0; overflow:hidden;
  position:relative; display:flex; flex-direction:column;
  transition:transform .25s ease, box-shadow .25s ease;
  cursor:pointer; text-decoration:none; color:inherit;
  min-height:300px;
  box-shadow:0 2px 8px rgba(0,0,0,.07), 0 0 0 1px rgba(0,0,0,.04);
}
.sb-a,.sb-b { min-height:340px; }
.sb-card:hover { transform:translateY(-3px); box-shadow:0 16px 48px rgba(0,0,0,.12); }

.sb-card-text { flex:0 0 auto; padding-bottom:1.25rem; }
.sb-card-tag {
  display:block; font-size:.68rem; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; color:#0085ca; margin-bottom:.5rem;
}
.sb-card-title {
  font-size:1.25rem; font-weight:800; letter-spacing:-.025em;
  color:#0f172a; margin-bottom:.375rem; line-height:1.2;
}
.sb-card-sub {
  font-size:.84rem; color:#64748b; line-height:1.55;
  max-width:340px; margin-bottom:1rem;
}
.sb-cta {
  display:inline-flex; align-items:center; gap:5px;
  font-size:.8125rem; font-weight:700; color:#0f172a;
  text-decoration:none; transition:color .2s;
}
.sb-cta svg { transition:transform .2s; }
.sb-card:hover .sb-cta { color:#0085ca; }
.sb-card:hover .sb-cta svg { transform:translateX(3px); }

/* dark card */
.sb-dark .sb-card-tag { color:#5cc8ff; }
.sb-dark .sb-card-title { color:#fff; }
.sb-dark .sb-card-sub { color:rgba(255,255,255,.45); }
.sb-dark .sb-cta { color:#5cc8ff; }

/* visual area */
.sb-visual { flex:1; position:relative; margin:0 -2rem; overflow:hidden; min-height:160px; }
.sb-a .sb-visual,.sb-b .sb-visual { min-height:195px; }

/* ── BROWSER MOCKUP (Web Hosting) ── */
.smb-browser {
  position:absolute; bottom:0; left:1.5rem;
  width:calc(100% - 1rem);
  background:#fff; border-radius:12px 12px 0 0;
  box-shadow:0 -4px 32px rgba(0,0,0,.1); overflow:hidden;
}
.smb-bar {
  background:#f1f5f9; padding:8px 12px;
  display:flex; align-items:center; gap:10px;
  border-bottom:1px solid #e2e8f0;
}
.smb-dots { display:flex; gap:5px; }
.smb-dot { width:8px; height:8px; border-radius:50%; }
.smb-url {
  flex:1; background:#fff; border-radius:5px;
  padding:3px 10px; font-size:.7rem; color:#94a3b8;
  border:1px solid #e2e8f0;
}
.smb-body { display:grid; grid-template-columns:76px 1fr; height:155px; }
.smb-sidebar { background:#0085ca; padding:10px 8px; }
.smb-si {
  height:8px; border-radius:4px; background:rgba(255,255,255,.22);
  margin-bottom:8px;
}
.smb-si:first-child { background:rgba(255,255,255,.7); width:70%; }
.smb-main { padding:12px; background:#f8faff; }
.smb-main-head {
  height:10px; width:55%; background:#cbd5e1;
  border-radius:3px; margin-bottom:11px;
}
.smb-cards-row { display:grid; grid-template-columns:repeat(3,1fr); gap:6px; margin-bottom:8px; }
.smb-kpi {
  height:42px; border-radius:7px;
  background:#fff; border:1px solid #e2e8f0;
}
.smb-kpi:nth-child(1){ border-top:3px solid #0085ca; }
.smb-kpi:nth-child(2){ border-top:3px solid #22c55e; }
.smb-kpi:nth-child(3){ border-top:3px solid #f59e0b; }
.smb-line { height:6px; border-radius:3px; background:#e2e8f0; margin-bottom:5px; }

/* ── TERMINAL (VPS dark) ── */
.smb-term {
  position:absolute; bottom:0; left:1.5rem;
  width:calc(100% - 2.5rem);
  background:#111827; border-radius:12px 12px 0 0;
  overflow:hidden; box-shadow:0 -4px 32px rgba(0,0,0,.5);
  font-family:'JetBrains Mono','Fira Code','Cascadia Code',monospace;
}
.smb-term-bar {
  background:#1f2937; padding:8px 12px;
  display:flex; align-items:center; gap:6px;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.smb-term-title {
  flex:1; text-align:center; font-size:.7rem;
  color:rgba(255,255,255,.35); font-family:system-ui,sans-serif;
}
.smb-term-body { padding:12px 14px; }
.smb-term-body p { font-size:.72rem; line-height:1.85; color:rgba(255,255,255,.3); margin:0; }
.tg{ color:#4ade80!important; } .tb{ color:#60a5fa!important; }
.ty{ color:#fbbf24!important; } .tc{ color:#22d3ee!important; }

/* ── DOMAIN MOCKUP ── */
.smb-domain {
  position:absolute; bottom:1.25rem; left:1.25rem; right:1.25rem;
}
.smb-d-input {
  background:#fff; border:2px solid #0085ca; border-radius:12px;
  padding:9px 12px; display:flex; align-items:center; gap:8px;
  box-shadow:0 4px 20px rgba(0,133,202,.12); margin-bottom:8px;
}
.smb-d-text { font-size:.8125rem; font-weight:600; color:#0f172a; flex:1; }
.smb-d-btn {
  background:#0085ca; color:#fff; border-radius:7px;
  padding:5px 12px; font-size:.71rem; font-weight:700;
}
.smb-d-result {
  display:flex; align-items:center; justify-content:space-between;
  background:rgba(34,197,94,.08); border:1px solid rgba(34,197,94,.2);
  border-radius:10px; padding:8px 12px;
}
.smb-d-avail {
  display:flex; align-items:center; gap:5px;
  font-size:.78rem; font-weight:700; color:#16a34a;
}
.smb-d-price { font-size:.78rem; font-weight:700; color:#0f172a; }

/* ── EMAIL MOCKUP ── */
.smb-email {
  position:absolute; bottom:0; left:1rem; right:1rem;
  background:#fff; border-radius:12px 12px 0 0;
  overflow:hidden; box-shadow:0 -4px 24px rgba(0,0,0,.07);
}
.smb-email-header {
  background:#0085ca; padding:7px 12px;
  display:flex; align-items:center; justify-content:space-between;
}
.smb-email-htitle { font-size:.72rem; font-weight:700; color:#fff; }
.smb-email-row {
  display:flex; align-items:center; gap:9px;
  padding:7px 12px; border-bottom:1px solid #f1f5f9;
}
.smb-av {
  width:27px; height:27px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-size:.64rem; font-weight:700; color:#fff;
}
.smb-ei { flex:1; }
.smb-from { font-size:.71rem; font-weight:700; color:#0f172a; }
.smb-subj { font-size:.67rem; color:#94a3b8; }
.smb-time { font-size:.64rem; color:#cbd5e1; }
.smb-unread { width:7px; height:7px; border-radius:50%; background:#0085ca; flex-shrink:0; }

/* ── RACK MOCKUP (Dedicati) ── */
/* CMS strip */
.sb-cms-strip {
  margin-top:2rem;
  padding:1rem 1.5rem;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(0,133,202,.12);
  border-radius:14px;
  display:flex; align-items:center; gap:1.25rem; flex-wrap:wrap;
  backdrop-filter:blur(6px);
}
.sb-cms-label {
  font-size:.7rem; font-weight:700; letter-spacing:.09em;
  text-transform:uppercase; color:#94a3b8; white-space:nowrap;
}
.sb-cms-list { display:flex; gap:.5rem; flex-wrap:wrap; align-items:center; }
.sb-cms-badge {
  padding:4px 11px; border-radius:7px; font-size:.78rem; font-weight:700;
  border:1.5px solid currentColor; opacity:.7; transition:opacity .2s;
}
.sb-cms-badge:hover { opacity:1; }
.sb-cms-wp  { color:#21759b; border-color:rgba(33,117,155,.3);  background:rgba(33,117,155,.07); }
.sb-cms-woo { color:#96588a; border-color:rgba(150,88,138,.3);  background:rgba(150,88,138,.07); }
.sb-cms-ps  { color:#df0067; border-color:rgba(223,0,103,.25);  background:rgba(223,0,103,.05); }
.sb-cms-mg  { color:#f26322; border-color:rgba(242,99,34,.25);  background:rgba(242,99,34,.06); }
.sb-cms-joo { color:#1a6496; border-color:rgba(26,100,150,.3);  background:rgba(26,100,150,.07); }
.sb-cms-dru { color:#0678be; border-color:rgba(6,120,190,.3);   background:rgba(6,120,190,.06); }
.sb-cms-note { margin-left:auto; font-size:.8rem; color:#94a3b8; }
@media(max-width:700px){ .sb-cms-note { display:none; } }

.smb-rack { position:absolute; bottom:1.25rem; left:1.25rem; right:1.25rem; }
.smb-rack-u {
  background:#1e293b; border-radius:8px;
  padding:9px 12px; display:flex; align-items:center;
  gap:10px; margin-bottom:6px;
}
.smb-leds { display:flex; gap:4px; }
.smb-led {
  width:7px; height:7px; border-radius:50%; background:#22c55e;
  box-shadow:0 0 5px rgba(34,197,94,.6);
  animation:led-pulse 2s ease-in-out infinite;
}
@keyframes led-pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.smb-led.blue { background:#60a5fa; box-shadow:0 0 5px rgba(96,165,250,.6); animation-delay:.5s; }
.smb-rbar { flex:1; height:4px; background:rgba(255,255,255,.08); border-radius:2px; overflow:hidden; }
.smb-rbar-fill { height:100%; border-radius:2px; background:linear-gradient(90deg,#0085ca,#22c55e); }
.smb-rlabel { font-size:.65rem; color:rgba(255,255,255,.35); font-family:monospace; }
@media(prefers-reduced-motion:reduce){ .smb-led,.sb-cta svg{ animation:none; transition:none; } }

/* ── CI HANNO SCELTO ── */
.chs-section {
  background: #f8fafc;
  padding: 5rem 0;
  border-top: 1px solid #f1f5f9;
}
.chs-inner { max-width: 1480px; margin: 0 auto; padding: 0 2.5rem; }
.chs-eyebrow {
  display: block;
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #0085ca; margin: 0 0 1.75rem;
}

/* Grid — card separate con gap */
@keyframes chs-reveal {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .625rem;
  margin-bottom: 3.5rem;
}
.chs-item {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 14px;
  padding: 1.75rem;
  min-height: 108px;
  display: flex; flex-direction: column;
  justify-content: space-between; gap: 1rem;
  cursor: default;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  transition: border-color .2s, box-shadow .2s, opacity .22s;
  animation: chs-reveal .45s ease both;
}
.chs-item:nth-child(1)  { animation-delay: .04s; }
.chs-item:nth-child(2)  { animation-delay: .09s; }
.chs-item:nth-child(3)  { animation-delay: .14s; }
.chs-item:nth-child(4)  { animation-delay: .19s; }
.chs-item:nth-child(5)  { animation-delay: .24s; }
.chs-item:nth-child(6)  { animation-delay: .29s; }
.chs-item:nth-child(7)  { animation-delay: .34s; }
.chs-item:nth-child(8)  { animation-delay: .39s; }
.chs-item:nth-child(9)  { animation-delay: .44s; }
.chs-item:nth-child(10) { animation-delay: .49s; }
.chs-item:nth-child(11) { animation-delay: .54s; }
.chs-item:nth-child(12) { animation-delay: .59s; }

.chs-item:hover {
  border-color: #b8d4f0;
  box-shadow: 0 4px 18px rgba(0,133,202,.1);
}
/* Logo reale — piena nitidezza, nessun filtro */
.chs-logo-img {
  display: block;
  max-height: 36px; max-width: 140px;
  width: auto; height: auto;
  object-fit: contain; object-position: left center;
}

/* Wordmark */
.chs-wordmark {
  font-size: 1.05rem; font-weight: 800;
  letter-spacing: -.03em; line-height: 1.2;
  color: #1e293b;
}

.chs-cat {
  font-size: .66rem; font-weight: 600;
  color: #94a3b8; text-transform: uppercase; letter-spacing: .08em;
  margin-top: auto;
}

/* Cella "500+" */
.chs-item-more {
  background: linear-gradient(135deg, #eef6ff 0%, #f0f9ff 100%);
  border-color: #c8dff5;
  justify-content: center; align-items: flex-start;
}
.chs-item-more:hover {
  background: linear-gradient(135deg, #dbeffe 0%, #e8f5ff 100%);
  border-color: #0085ca;
  box-shadow: 0 4px 18px rgba(0,133,202,.13);
  opacity: 1 !important;
}
.chs-more-num {
  font-size: 2.125rem; font-weight: 900;
  letter-spacing: -.06em; line-height: 1; color: #0085ca;
}

/* Footer */
.chs-footer {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 4rem;
  padding-top: 2.5rem; border-top: 1px solid #e8edf5;
}
.chs-title {
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.08;
  color: #0f172a; margin: 0 0 1.25rem;
}
.chs-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .875rem; font-weight: 700; color: #0085ca;
  text-decoration: none; transition: gap .2s;
}
.chs-link:hover { gap: 10px; }
.chs-stats { display: flex; align-items: center; gap: 0; flex-wrap: wrap; flex-shrink: 0; }
.chs-stat {
  display: flex; flex-direction: column; gap: 3px;
  padding: 0 1.75rem; text-align: center;
}
.chs-stat strong {
  font-size: 1.75rem; font-weight: 900; letter-spacing: -.05em;
  color: #0f172a; line-height: 1;
}
.chs-stat span {
  font-size: .68rem; color: #94a3b8; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
}
.chs-sdiv { width: 1px; height: 32px; background: #e8edf5; flex-shrink: 0; }

@media (prefers-reduced-motion: reduce) {
  .chs-item { animation: none; }
}
@media (max-width: 1024px) {
  .chs-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .chs-footer { grid-template-columns: 1fr; gap: 2rem; }
  .chs-stats { justify-content: flex-start; }
}
@media (max-width: 600px) {
  .chs-grid { grid-template-columns: repeat(2, 1fr); }
  .chs-stat { padding: 0 1rem; }
  .chs-stat strong { font-size: 1.375rem; }
}

.bento-section { background: #fff; }
.bento-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.bento-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text-primary);
  flex-shrink: 0;
}
.bento-subtitle {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 380px;
  line-height: 1.65;
  text-align: right;
}
@media (max-width: 700px) {
  .bento-header { flex-direction: column; gap: 0.75rem; }
  .bento-subtitle { text-align: left; max-width: 100%; }
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
  gap: 1rem;
}
@media (max-width: 900px) { .bento-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .bento-grid { grid-template-columns: 1fr; } }
.bento-card {
  position: relative;
  background: #fff;
  border: 1.5px dashed #d4d4d8;
  border-radius: 12px;
  overflow: visible;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.bento-card:hover {
  border-color: rgba(0,133,202,0.4);
  box-shadow: 0 4px 24px rgba(0,133,202,0.08);
}
.bento-corners span {
  position: absolute;
  width: 16px;
  height: 16px;
  display: block;
}
.bento-corners span::before,
.bento-corners span::after {
  content: '';
  position: absolute;
  background: #9ca3af;
  border-radius: 1px;
}
.bento-corners span::before { width: 1.5px; height: 100%; left: 50%; transform: translateX(-50%); }
.bento-corners span::after  { height: 1.5px; width: 100%;  top: 50%;  transform: translateY(-50%); }
.bento-corners span:nth-child(1) { top: -8px; left: -8px; }
.bento-corners span:nth-child(2) { top: -8px; right: -8px; }
.bento-corners span:nth-child(3) { bottom: -8px; left: -8px; }
.bento-corners span:nth-child(4) { bottom: -8px; right: -8px; }
.bento-card-inner { padding: 1.75rem; height: 100%; box-sizing: border-box; }
.bento-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0085ca;
  margin-bottom: 0.5rem;
}
.bento-big-num {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--text-primary);
  line-height: 1;
  margin: 0.5rem 0 0.75rem;
}
.bento-stat-num {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--text-primary);
  line-height: 1;
  margin: 0.25rem 0 0.5rem;
}
.bento-stat-unit { font-size: 0.55em; font-weight: 700; }
.bento-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}
.bento-card-desc {
  font-size: 0.8375rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.bento-uptime-bar {
  width: 100%;
  height: 6px;
  background: rgba(0,133,202,0.12);
  border-radius: 3px;
  margin: 0.75rem 0 0.5rem;
  overflow: hidden;
}
.bento-uptime-fill {
  width: 99.9%;
  height: 100%;
  background: linear-gradient(90deg, #0085ca, #1a9de0);
  border-radius: 3px;
}
.bento-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,133,202,0.08);
  border: 1px solid rgba(0,133,202,0.2);
  color: #0085ca;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.bento-a { grid-column: span 2; grid-row: span 2; }
.bento-b { grid-column: span 2; }
.bento-c { grid-column: span 2; }
.bento-d { grid-column: span 4; }
.bento-e { grid-column: span 3; }
.bento-f { grid-column: span 3; }
.bento-d-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; }
.bento-d-stat { flex-shrink: 0; text-align: center; }
@media (max-width: 900px) {
  .bento-a, .bento-b, .bento-c, .bento-d, .bento-e, .bento-f { grid-column: span 1; grid-row: span 1; }
  .bento-a { grid-column: span 2; }
  .bento-d { grid-column: span 2; }
  .bento-d-inner { flex-direction: column; gap: 1rem; }
}
@media (max-width: 540px) {
  .bento-a, .bento-b, .bento-c, .bento-d, .bento-e, .bento-f { grid-column: span 1; grid-row: span 1; }
}

.testi-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 860px) {
  .testi-layout { grid-template-columns: 1fr; gap: 2rem; }
  .testi-col-mid, .testi-col-last { display: none; }
}

.testi-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--flame);
  margin-bottom: 0.75rem;
}
.testi-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.testi-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.testi-columns-wrap { overflow: hidden; }
.testi-columns-mask {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-height: 520px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
}

.testi-col { overflow: hidden; }
.testi-col-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: testiScroll linear infinite;
}

@keyframes testiScroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  flex-shrink: 0;
}
.testi-quote {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--flame);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.testi-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.testi-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1px;
}

/* ── PRICING SECTION — home override (scoped to #piani) ── */
#piani {
  background:linear-gradient(180deg,#f0f6ff 0%,#fff 45%);
  padding-top:5.5rem; padding-bottom:5.5rem;
}
#piani .section-badge {
  background:rgba(0,133,202,.08); color:#0085ca;
  border:1px solid rgba(0,133,202,.18);
}
/* Tabs: pill style */
#piani .pricing-tabs {
  background:#f1f5f9; border:1.5px solid #e2e8f0;
  border-radius:100px; padding:5px;
}
#piani .tab-btn { border-radius:100px; color:#64748b; padding:8px 24px; }
#piani .tab-btn.active {
  background:#0085ca; color:#fff;
  box-shadow:0 2px 14px rgba(0,133,202,.3);
}
#piani .tab-btn:hover:not(.active) { background:rgba(0,133,202,.06); color:#0085ca; }

/* Grid */
#piani .pricing-grid { gap:1.25rem; align-items:stretch; }

/* Base card */
#piani .plan-card {
  background:#fff; border:1.5px solid #e2e8f0;
  border-radius:22px; box-shadow:0 2px 10px rgba(0,0,0,.05);
  transition:transform .25s,box-shadow .25s,border-color .25s;
}
#piani .plan-card:hover {
  border-color:rgba(0,133,202,.28);
  box-shadow:0 8px 36px rgba(0,133,202,.1);
  transform:translateY(-3px);
}
/* Base card text colors */
#piani .plan-price .currency { color:#0085ca; }
#piani .plan-price .amount { color:#0f172a; }
#piani .plan-spec { background:#f0f6ff; border-color:#dbeafe; color:#0369a1; font-weight:600; }
#piani .plan-divider { background:#e2e8f0; }
#piani .plan-feature { color:#334155; }
#piani .plan-feature svg { stroke:#0085ca; }

/* Featured card — full blue */
#piani .plan-card.featured {
  background:linear-gradient(150deg,#0085ca 0%,#006aab 100%);
  border-color:transparent;
  box-shadow:0 20px 64px rgba(0,133,202,.32);
  transform:translateY(-10px);
}
#piani .plan-card.featured:hover {
  transform:translateY(-13px);
  box-shadow:0 28px 72px rgba(0,133,202,.4);
}
#piani .plan-card.featured .plan-name { color:rgba(255,255,255,.8); }
#piani .plan-card.featured .plan-price .amount { color:#fff; }
#piani .plan-card.featured .plan-price .currency { color:rgba(255,255,255,.65); }
#piani .plan-card.featured .plan-price .period { color:rgba(255,255,255,.5); }
#piani .plan-card.featured .plan-spec { background:rgba(255,255,255,.18); border-color:rgba(255,255,255,.22); color:#fff; }
#piani .plan-card.featured .plan-divider { background:rgba(255,255,255,.18); }
#piani .plan-card.featured .plan-feature { color:rgba(255,255,255,.88); }
#piani .plan-card.featured .plan-feature svg { stroke:rgba(255,255,255,.95); }

/* Badge on featured card */
#piani .plan-badge {
  background:rgba(255,255,255,.22); color:#fff;
  font-size:.68rem; font-weight:800; letter-spacing:.1em;
  padding:5px 16px; border-radius:0 0 12px 12px;
  backdrop-filter:blur(6px);
}

/* CTAs inside featured card */
#piani .plan-card.featured .btn-primary {
  background:#fff; color:#0085ca;
  box-shadow:0 4px 20px rgba(0,0,0,.12);
}
#piani .plan-card.featured .btn-primary:hover { background:#f0f6ff; }

/* Bottom SSL note */
#piani [style*="0.8125rem"] { color:#94a3b8; }

/* ── VPS MANAGED HIGHLIGHT ── */
.vps-hl {
  background: linear-gradient(160deg,#0d1827 0%,#0e2038 60%,#091629 100%);
  padding: 6rem 0;
  overflow: hidden;
  position: relative;
}
.vps-hl::before {
  content:'';
  position:absolute; top:-150px; left:-100px;
  width:600px; height:500px;
  background:radial-gradient(ellipse,rgba(0,133,202,.15) 0%,transparent 65%);
  pointer-events:none;
}
.vps-hl::after {
  content:'';
  position:absolute; bottom:-120px; right:-80px;
  width:400px; height:400px;
  background:radial-gradient(ellipse,rgba(0,133,202,.08) 0%,transparent 60%);
  pointer-events:none;
}
.vps-hl-inner {
  max-width:1480px; margin:0 auto; padding:0 2.5rem;
  display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center;
  position:relative; z-index:1;
}
@media(max-width:900px){ .vps-hl-inner{grid-template-columns:1fr;gap:3rem;} }

/* Left */
.vps-hl-eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(0,133,202,.12); border:1px solid rgba(0,133,202,.28);
  border-radius:100px; padding:5px 14px;
  font-size:.72rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:#5cc8ff; margin-bottom:1.5rem;
}
.vps-hl-eyebrow::before {
  content:''; width:6px; height:6px; border-radius:50%;
  background:#0085ca; box-shadow:0 0 8px rgba(0,133,202,.9);
  animation:pulse 2s infinite;
}
.vps-hl-title {
  font-size:clamp(2rem,4vw,3.25rem); font-weight:900;
  color:#fff; letter-spacing:-.04em; line-height:1.05; margin-bottom:1.25rem;
}
.vps-hl-title em { font-style:normal; color:#0085ca; }
.vps-hl-sub {
  font-size:1rem; color:rgba(255,255,255,.5); line-height:1.7;
  margin-bottom:2rem; max-width:440px;
}
.vps-hl-feats { display:flex; flex-direction:column; gap:10px; margin-bottom:2.5rem; }
.vps-hl-feat {
  display:flex; align-items:center; gap:10px;
  font-size:.9rem; color:rgba(255,255,255,.7); font-weight:500;
}
.vps-hl-feat::before {
  content:''; width:18px; height:18px; min-width:18px;
  background:rgba(0,133,202,.15); border:1px solid rgba(0,133,202,.3);
  border-radius:50%;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%230085ca' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size:10px; background-repeat:no-repeat; background-position:center;
}
.vps-hl-pricing {
  display:flex; align-items:center; gap:1.5rem; flex-wrap:wrap; margin-bottom:2rem;
}
.vps-hl-plan { display:flex; flex-direction:column; }
.vps-hl-plan-label {
  font-size:.65rem; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; color:rgba(255,255,255,.28); margin-bottom:3px;
}
.vps-hl-plan-price { font-size:1.5rem; font-weight:900; color:#fff; letter-spacing:-.04em; }
.vps-hl-plan-price span { font-size:.8rem; font-weight:500; color:rgba(255,255,255,.35); }
.vps-hl-pdiv { width:1px; height:36px; background:rgba(255,255,255,.1); }
.vps-hl-ctas { display:flex; gap:1rem; flex-wrap:wrap; }
.vps-hl-btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:12px 22px; border-radius:10px;
  font-size:.9rem; font-weight:700; text-decoration:none; transition:all .2s;
}
.vps-hl-btn-primary { background:#0085ca; color:#fff; }
.vps-hl-btn-primary:hover { background:#0070aa; transform:translateY(-1px); }
.vps-hl-btn-ghost { border:1.5px solid rgba(255,255,255,.16); color:rgba(255,255,255,.6); }
.vps-hl-btn-ghost:hover { border-color:rgba(255,255,255,.35); color:#fff; }

/* Right: floating visual */
.vps-hl-visual { position:relative; height:460px; }

/* Dashboard card */
.vps-dash {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:320px;
  background:rgba(12,22,42,.92);
  border:1px solid rgba(255,255,255,.1);
  border-radius:18px;
  backdrop-filter:blur(14px);
  box-shadow:0 32px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(0,133,202,.08);
  overflow:hidden; z-index:2;
}
.vps-dash-bar {
  display:flex; align-items:center; gap:6px;
  padding:11px 14px;
  background:rgba(255,255,255,.04); border-bottom:1px solid rgba(255,255,255,.07);
}
.vps-dash-dot { width:9px; height:9px; border-radius:50%; }
.vps-dash-dot:nth-child(1){background:#ff5f56;}
.vps-dash-dot:nth-child(2){background:#febc2e;}
.vps-dash-dot:nth-child(3){background:#28c840;}
.vps-dash-title { margin-left:6px; font-size:.7rem; font-weight:600; color:rgba(255,255,255,.38); letter-spacing:.04em; font-family:monospace; }
.vps-dash-body { padding:1.25rem 1.25rem .75rem; }

/* Resource bars */
.vps-res-row { display:flex; flex-direction:column; gap:11px; margin-bottom:1.125rem; }
.vps-res-item { display:flex; flex-direction:column; gap:5px; }
.vps-res-head { display:flex; justify-content:space-between; }
.vps-res-label { font-size:.7rem; font-weight:600; color:rgba(255,255,255,.38); font-family:monospace; }
.vps-res-val { font-size:.7rem; font-weight:700; color:rgba(255,255,255,.65); font-family:monospace; }
.vps-res-bar { height:5px; background:rgba(255,255,255,.07); border-radius:3px; overflow:hidden; }
.vps-res-fill { height:100%; border-radius:3px; }
.vps-res-fill.cpu  { background:linear-gradient(90deg,#0085ca,#38bdf8); width:38%; animation:resFill 1.6s ease-out forwards; }
.vps-res-fill.ram  { background:linear-gradient(90deg,#8b5cf6,#a78bfa); width:51%; animation:resFill 1.9s ease-out forwards .1s; }
.vps-res-fill.disk { background:linear-gradient(90deg,#0085ca,#22d3ee); width:24%; animation:resFill 2.1s ease-out forwards .2s; }
@keyframes resFill { from{width:0;} }

/* Network chart */
.vps-net-row { border-top:1px solid rgba(255,255,255,.06); padding-top:.875rem; }
.vps-net-label { font-size:.65rem; font-weight:600; color:rgba(255,255,255,.3); margin-bottom:7px; letter-spacing:.08em; text-transform:uppercase; font-family:monospace; }
.vps-net-chart { height:40px; display:flex; align-items:flex-end; gap:3px; }
.vps-net-bar {
  flex:1; border-radius:2px 2px 0 0;
  background:rgba(0,133,202,.28);
  animation:netBar .5s ease-out forwards;
  transform-origin:bottom;
}
@keyframes netBar { from{transform:scaleY(0);} }

/* Status row */
.vps-status-row {
  display:flex; align-items:center; justify-content:space-between;
  padding:.625rem 1.25rem;
  background:rgba(0,133,202,.06); border-top:1px solid rgba(0,133,202,.12);
}
.vps-status-dot {
  display:flex; align-items:center; gap:6px;
  font-size:.7rem; font-weight:600; color:#34d399; font-family:monospace;
}
.vps-status-pulse { width:7px; height:7px; border-radius:50%; background:#34d399; animation:pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(52,211,153,.5);} 60%{box-shadow:0 0 0 5px rgba(52,211,153,0);} }
.vps-status-ip { font-size:.65rem; color:rgba(255,255,255,.22); font-family:monospace; }

/* Floating badges */
.vps-badge {
  position:absolute;
  background:rgba(10,20,40,.9);
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px; padding:.7rem 1rem;
  backdrop-filter:blur(12px);
  box-shadow:0 8px 32px rgba(0,0,0,.45);
  z-index:4;
}
.vps-badge-val { font-size:1rem; font-weight:800; color:#fff; letter-spacing:-.02em; line-height:1.2; }
.vps-badge-key { font-size:.62rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.35); margin-top:2px; }
.vps-badge-accent { color:#0085ca; }
.vps-badge-green  { color:#34d399; }

@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes floatC { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-11px)} }
@keyframes floatD { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

.vps-badge-a { top:5%;   left:-8%;  animation:floatA 4s   ease-in-out infinite; }
.vps-badge-b { top:8%;   right:-8%; animation:floatB 5s   ease-in-out infinite .8s; }
.vps-badge-c { bottom:20%; left:-6%;  animation:floatC 4.5s ease-in-out infinite .4s; }
.vps-badge-d { bottom:14%; right:-8%; animation:floatD 5.5s ease-in-out infinite 1.2s; }
@media(max-width:900px){
  .vps-hl-visual { height:320px; }
  .vps-badge-a,.vps-badge-b { top:2%; }
  .vps-badge-a { left:0; } .vps-badge-b { right:0; }
  .vps-badge-c { left:0; } .vps-badge-d { right:0; }
}

.testi-stars {
  display: flex; align-items: center; gap: 6px;
  color: #f59e0b; font-size: .875rem; letter-spacing: 2px; margin-bottom: .625rem;
}
.testi-google-badge {
  display: inline-flex; align-items: center;
  margin-left: 2px; opacity: .85;
}
.testi-section .section-inner { max-width: 1480px; }

/* ── PARTNER SECTION — dark marquee ── */
.eco-section {
  background: #f5f7fa;
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.eco-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.eco-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media(max-width:700px) { .eco-header { grid-template-columns: 1fr; } }
.eco-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #0085ca;
  margin-bottom: .875rem;
}
.eco-eyebrow::before { content:''; width:22px; height:1.5px; background:#0085ca; display:block; }
.eco-h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -.035em;
  line-height: 1.08;
}
.eco-desc {
  font-size: .9375rem;
  color: #64748b;
  line-height: 1.7;
  align-self: end;
}
/* Marquee */
.eco-reel {
  overflow: hidden;
  margin: 0 -2.5rem;
  padding: .375rem 0;
  mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent);
  background: #f5f7fa;
}
.eco-track {
  display: flex;
  width: max-content;
  gap: .75rem;
  padding: .375rem 0;
  animation: ecoReel 38s linear infinite;
}
.eco-track:hover { animation-play-state: paused; }
@keyframes ecoReel {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.eco-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 100px;
  white-space: nowrap;
  cursor: default;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
  transition: background .2s, border-color .2s, box-shadow .2s;
}
.eco-chip:hover { background:#f0f6ff; border-color:rgba(0,133,202,.3); box-shadow:0 4px 16px rgba(0,133,202,.1); }
.eco-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.eco-dot.b { background:#0085ca; box-shadow:0 0 5px rgba(0,133,202,.6); }
.eco-dot.g { background:#34d399; box-shadow:0 0 5px rgba(52,211,153,.6); }
.eco-dot.t { background:#06b6d4; box-shadow:0 0 5px rgba(6,182,212,.6); }
.eco-chip-name {
  font-size: .875rem;
  font-weight: 600;
  color: #475569;
}
.eco-chip:hover .eco-chip-name { color: #0085ca; }
/* Client strip */
.eco-divider { margin:3rem 0 2.5rem; height:1px; background:#e2e8f0; }
.eco-clients-label {
  text-align: center;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 1.25rem;
}
.eco-clients-row { display:flex; justify-content:center; gap:.625rem; flex-wrap:wrap; }
.eco-client {
  padding: 7px 16px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 100px;
  font-size: .8125rem;
  font-weight: 600;
  color: #64748b;
}

/* ── UPTIME HISTORY ── */
.upt-section {
  background: #0a0f1e;
  padding: 5rem 0;
  overflow: hidden;
}
.upt-inner {
  max-width: 1480px; margin: 0 auto; padding: 0 2.5rem;
  display: flex; flex-direction: column; gap: 3rem;
}
.upt-header {
  display: grid; grid-template-columns: 1fr auto;
  align-items: start; gap: 3rem;
}
@media(max-width:700px) { .upt-header { grid-template-columns: 1fr; gap: 1.5rem; } }

.upt-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #5cc8ff; margin-bottom: .875rem;
}
.upt-eyebrow::before { content:''; width:20px; height:1.5px; background:#0085ca; display:block; }
.upt-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.1;
  color: #fff; margin: 0 0 .875rem;
}
.upt-desc { font-size: .9rem; color: rgba(255,255,255,.45); line-height: 1.7; }

.upt-legend { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }
.upt-leg-item { display: flex; align-items: center; gap: 9px; font-size: .8rem; color: rgba(255,255,255,.4); font-weight: 500; }

/* Grid */
.upt-grid-wrap { display: flex; flex-direction: column; gap: 6px; }
.upt-week-labels {
  display: grid; grid-template-rows: repeat(7,1fr);
  gap: 4px; grid-template-columns: 36px;
  float: left; height: 7*16px;
  /* ponytail: row labels rotated 90deg, positioned left of grid */
}
.upt-week-labels { display: none; } /* skip on first pass, grid is enough */
.upt-grid {
  display: grid;
  grid-template-rows: repeat(7, 14px);
  grid-auto-flow: column;
  gap: 4px;
}
.upt-sq {
  width: 14px; height: 14px;
  border-radius: 3px;
  display: block;
  transition: transform .15s;
  cursor: default;
}
.upt-sq:hover { transform: scale(1.3); }
.upt-green { background: #22c55e; box-shadow: 0 0 4px rgba(34,197,94,.3); }
.upt-amber { background: #f59e0b; box-shadow: 0 0 4px rgba(245,158,11,.3); }
.upt-gray  { background: rgba(255,255,255,.08); }
.upt-today { outline: 2px solid #5cc8ff; outline-offset: 2px; }

.upt-months {
  display: flex; justify-content: space-between;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.2);
  padding-top: 6px;
}

/* Datacenter live status */
.upt-dc-row {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.upt-dc-head { display: flex; align-items: center; gap: .5rem; }
.upt-dc-label {
  display: flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
}
.upt-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}
.upt-dc-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .875rem;
}
@media(max-width:900px) { .upt-dc-cards { grid-template-columns: repeat(2,1fr); } }
@media(max-width:500px) { .upt-dc-cards { grid-template-columns: 1fr; } }

.upt-dc-card {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  transition: background .2s, border-color .2s;
}
.upt-dc-card:hover { background: rgba(255,255,255,.07); border-color: rgba(0,133,202,.25); }
.upt-dc-status {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.upt-dc-ok {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,.6);
  animation: pulse 2.5s ease infinite;
}
.upt-dc-info { flex: 1; }
.upt-dc-info strong { display: block; font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.85); line-height: 1.2; }
.upt-dc-info span { font-size: .72rem; color: rgba(255,255,255,.3); font-weight: 500; }
.upt-dc-time {
  font-size: .78rem; font-weight: 700; font-family: 'JetBrains Mono', monospace;
  color: rgba(0,133,202,.8); letter-spacing: .04em; flex-shrink: 0;
}

body.page-home .fn-home-inline-01 { background:rgba(99,102,241,0.18);border-color:rgba(99,102,241,0.3); }
body.page-home .fn-home-inline-02 { background:rgba(0,133,202,0.18);border-color:rgba(0,133,202,0.3); }
body.page-home .fn-home-inline-03 { background:rgba(0,133,202,0.25);border-color:rgba(0,133,202,0.5); }
body.page-home .fn-home-inline-04 { background:rgba(34,197,94,0.14);border-color:rgba(34,197,94,0.28); }
body.page-home .fn-home-inline-05 { background:rgba(251,146,60,0.14);border-color:rgba(251,146,60,0.28); }
body.page-home .fn-home-inline-06 { color:#4ade80; }
body.page-home .fn-home-inline-07 { background:#eef4ff; }
body.page-home .fn-home-inline-08 { background:#ff5f57; }
body.page-home .fn-home-inline-09 { background:#febc2e; }
body.page-home .fn-home-inline-10 { background:#28c840; }
body.page-home .fn-home-inline-11 { width:85%; }
body.page-home .fn-home-inline-12 { width:60%; }
body.page-home .fn-home-inline-13 { width:80%; }
body.page-home .fn-home-inline-14 { width:50%; }
body.page-home .fn-home-inline-15 { width:90%; }
body.page-home .fn-home-inline-16 { width:70%; }
body.page-home .fn-home-inline-17 { background:#0a0f1e; }
body.page-home .fn-home-inline-18 { color:rgba(255,255,255,.1); }
body.page-home .fn-home-inline-19 { color:rgba(255,255,255,.18); }
body.page-home .fn-home-inline-20 { background:#f0fdf6; }
body.page-home .fn-home-inline-21 { min-height:120px; }
body.page-home .fn-home-inline-22 { background:#fff8f3; }
body.page-home .fn-home-inline-23 { background:#0085ca; }
body.page-home .fn-home-inline-24 { background:#8b5cf6; }
body.page-home .fn-home-inline-25 { background:#f59e0b; }
body.page-home .fn-home-inline-26 { background:#f4f7fb; }
body.page-home .fn-home-inline-27 { animation-delay:.3s; }
body.page-home .fn-home-inline-28 { width:23%; }
body.page-home .fn-home-inline-29 { animation-delay:.1s; }
body.page-home .fn-home-inline-30 { animation-delay:.4s; }
body.page-home .fn-home-inline-31 { animation-delay:.7s; }
body.page-home .fn-home-inline-32 { width:61%; }
body.page-home .fn-home-inline-33 { animation-delay:.2s; }
body.page-home .fn-home-inline-34 { animation-delay:.5s; }
body.page-home .fn-home-inline-35 { animation-delay:.8s; }
body.page-home .fn-home-inline-36 { width:44%; }
body.page-home .fn-home-inline-37 { max-width:1480px;margin:0 auto;padding:0 2.5rem; }
body.page-home .fn-home-inline-38 { border:none;border-top:1px solid #e8edf5;margin:0; }
body.page-home .fn-home-inline-39 { font-size:0.8rem; }
body.page-home .fn-home-inline-40 { margin-top:0.75rem; }
body.page-home .fn-home-inline-41 { font-size:2.5rem;font-weight:900;letter-spacing:-0.04em;color:#0085ca;line-height:1; }
body.page-home .fn-home-inline-42 { font-size:0.75rem;color:var(--text-muted);font-weight:500;margin-top:2px; }
body.page-home .fn-home-inline-43 { display:flex;align-items:baseline;gap:8px;margin:0.5rem 0; }
body.page-home .fn-home-inline-44 { font-size:3rem;font-weight:900;letter-spacing:-0.05em;color:var(--text-primary);line-height:1; }
body.page-home .fn-home-inline-45 { font-size:1rem;font-weight:700;color:var(--text-muted); }
body.page-home .fn-home-inline-46 { height:100%;display:flex;flex-direction:column;justify-content:space-between; }
body.page-home .fn-home-inline-47 { color:#16a34a; }
body.page-home .fn-home-inline-48 { margin-top:0.5rem; }
body.page-home .fn-home-inline-49 { display:flex;align-items:center;gap:8px;margin-top:1rem; }
body.page-home .fn-home-inline-50 { width:36px;height:36px;border-radius:50%;background:rgba(22,163,74,0.1);border:1px solid rgba(22,163,74,0.25);display:flex;align-items:center;justify-content:center; }
body.page-home .fn-home-inline-51 { font-size:0.8rem;font-weight:600;color:#16a34a; }
body.page-home .fn-home-inline-52 { font-size:1.15rem; }
body.page-home .fn-home-inline-53 { height:35%;animation-delay:.05s; }
body.page-home .fn-home-inline-54 { height:55%;animation-delay:.10s; }
body.page-home .fn-home-inline-55 { height:42%;animation-delay:.15s; }
body.page-home .fn-home-inline-56 { height:70%;animation-delay:.20s; }
body.page-home .fn-home-inline-57 { height:48%;animation-delay:.25s; }
body.page-home .fn-home-inline-58 { height:88%;animation-delay:.30s;background:rgba(0,133,202,.55); }
body.page-home .fn-home-inline-59 { height:62%;animation-delay:.35s; }
body.page-home .fn-home-inline-60 { height:75%;animation-delay:.40s;background:rgba(0,133,202,.45); }
body.page-home .fn-home-inline-61 { height:50%;animation-delay:.45s; }
body.page-home .fn-home-inline-62 { height:65%;animation-delay:.50s; }
body.page-home .fn-home-inline-63 { height:80%;animation-delay:.55s;background:rgba(0,133,202,.5); }
body.page-home .fn-home-inline-64 { height:70%;animation-delay:.60s; }
body.page-home .fn-home-inline-65 { background:#f8fafc;padding:5rem 0; }
body.page-home .fn-home-inline-66 { margin-top:1.75rem; }
body.page-home .fn-home-inline-67 { animation-duration:28s; }
body.page-home .fn-home-inline-68 { background:#6366f1; }
body.page-home .fn-home-inline-69 { animation-duration:34s;animation-delay:-12s; }
body.page-home .fn-home-inline-70 { background:#22c55e; }
body.page-home .fn-home-inline-71 { animation-duration:22s;animation-delay:-7s; }
body.page-home .fn-home-inline-72 { background:#f97316; }
body.page-home .fn-home-inline-73 { display:flex;justify-content:center;margin-bottom:2rem; }
body.page-home .fn-home-inline-74 { justify-content:center;margin-top:0.5rem; }
body.page-home .fn-home-inline-75 { text-align:center;margin-top:1.5rem; }
body.page-home .fn-home-inline-76 { text-align:center;padding:3rem 1rem; }
body.page-home .fn-home-inline-77 { display:inline-flex;max-width:500px; }
body.page-home .fn-home-inline-78 { margin-top:2rem; }
body.page-home .fn-home-inline-79 { margin-top:2rem;text-align:center; }
body.page-home .fn-home-inline-80 { font-size:0.8125rem;color:var(--text-dim); }
body.page-home .fn-home-inline-81 { display:inline;vertical-align:middle;margin-right:4px; }
body.page-home .fn-home-inline-82 { color:var(--text-muted); }
body.page-home .fn-home-inline-83 { background:var(--bg-800); }
body.page-home .fn-home-inline-84 { margin-bottom:1.25rem; }
body.page-home .fn-home-inline-85 { color:var(--text-muted);margin-bottom:2rem;line-height:1.75; }
body.page-home .fn-home-inline-86 { font-size:1.125rem;font-weight:700;margin-bottom:1.5rem; }
body.page-home .fn-home-inline-87 { display:flex;flex-direction:column;gap:1rem; }
body.page-home .fn-home-inline-88 { display:flex;gap:1rem;align-items:flex-start;padding:1rem;background:var(--bg-600);border-radius:var(--radius-md); }
body.page-home .fn-home-inline-89 { width:38px;height:38px;flex-shrink:0; }
body.page-home .fn-home-inline-90 { font-weight:700;font-size:0.9rem;margin-bottom:3px; }
body.page-home .fn-home-inline-91 { font-size:0.8125rem;color:var(--text-muted); }
body.page-home .fn-home-inline-92 { width:38px;height:38px;flex-shrink:0;background:rgba(34,197,94,0.08);border-color:rgba(34,197,94,0.2);color:#4ade80; }
body.page-home .fn-home-inline-93 { display:flex;gap:1rem;align-items:flex-start;padding:1rem;background:rgba(249,115,22,0.06);border:1px solid rgba(249,115,22,0.15);border-radius:var(--radius-md); }
body.page-home .fn-home-inline-94 { font-weight:700;font-size:0.9rem;margin-bottom:3px;color:var(--flame); }
body.page-home .fn-home-inline-95 { margin-top:2rem;display:flex;align-items:center;justify-content:center;gap:1.5rem;flex-wrap:wrap; }
