/* =========================================================
   Hosting WordPress — CSS COMPLETO (stile identico a VPS)
   Namespace: .vh-wp
   File: assets/css/hosting-wordpress.css
   ========================================================= */

html, body{
  background:#070A12;
  overflow-x:hidden;
}

:root{
  --vh-hero-top: 18px;
  --vh-hero-bottom: 26px;

  --vh-btn-pad-y: 10px;
  --vh-btn-pad-x: 14px;
  --vh-btn-radius: 12px;
  --vh-btn-bg: rgba(11,54,198,.18);
  --vh-btn-bg-hover: rgba(11,54,198,.24);
  --vh-btn-border: rgba(11,54,198,.26);
  --vh-btn-text: rgba(255,255,255,.92);

  --vh-card-bg: rgba(255,255,255,.04);
  --vh-card-border: rgba(255,255,255,.08);
  --vh-card-shadow: 0 22px 60px rgba(0,0,0,.35);

  --vh-wrap-max: 1180px;
  --vh-wrap-pad: 18px;
}

/* Background */
.vh-wp{
  position: relative;
  color:#fff;
  background:
    radial-gradient(900px 480px at 20% 10%, rgba(48, 86, 255, .25), transparent 60%),
    radial-gradient(700px 420px at 80% 30%, rgba(11, 54, 198, .22), transparent 60%),
    radial-gradient(900px 600px at 50% 90%, rgba(0,0,0,.75), transparent 60%),
    linear-gradient(#070A12, #05060C);
}

.vh-wp::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events:none;
  z-index: 0;
  opacity: .55;
  background-image: url("../img/home/clouds.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.vh-wp > *{ position: relative; z-index: 1; }

.vh-wp .vh-wrap{
  width: 100%;
  max-width: var(--vh-wrap-max);
  margin: 0 auto;
  padding-left: var(--vh-wrap-pad);
  padding-right: var(--vh-wrap-pad);
}

/* reset wrapper theme */
.vh-wp,
.vh-wp#content,
#content.vh-wp{
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.vh-wp .site-content,
.vh-wp .content-area,
.vh-wp #primary,
.vh-wp .site-main{
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Buttons */
.vh-wp .vh-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color: var(--vh-btn-text);
  text-decoration:none;
  font-weight:500;
  font-size:14px;
  line-height: 1;
  padding: var(--vh-btn-pad-y) var(--vh-btn-pad-x);
  border-radius: var(--vh-btn-radius);
  background: var(--vh-btn-bg);
  border: 1px solid var(--vh-btn-border);
  width: fit-content;
  white-space: nowrap;
}
.vh-wp .vh-btn--primary{
  background: var(--vh-btn-bg);
  border: 1px solid var(--vh-btn-border);
  box-shadow:none;
}
.vh-wp .vh-btn:hover{ background: var(--vh-btn-bg-hover); }

.vh-wp .vh-arrow{
  width: 10px;
  height: 10px;
  display:inline-block;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

/* Titles */
.vh-wp .vh-kicker{
  display:inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  font-weight: 800;
}
.vh-wp .vh-section__title{
  font-size: clamp(26px, 3.2vw, 40px);
  margin: 0 0 10px;
  letter-spacing: -0.6px;
  font-weight: 850;
}
.vh-wp .vh-section__subtitle{
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
}

/* Hero */
.vh-wp .vh-hero{ padding-top: 100px; }
@media (max-width: 1024px){
  .vh-wp .vh-hero{ padding-top: 30px; }
}
.vh-wp .vh-hero__inner{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items:center;
}
.vh-wp .vh-hero__title{
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -0.8px;
  font-weight: 800;
}
.vh-wp .vh-hero__lead{
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  max-width: 680px;
}
.vh-wp .vh-hero__cta{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
}
.vh-wp .vh-hero__art{
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  justify-self: end;
  max-width: 560px;
}
.vh-wp .vh-hero__art img{ width:100%; height:auto; display:block; }

/* Sections */
.vh-wp .vh-section{ padding: 28px 0 30px; }
.vh-wp .vh-section__head{
  text-align:center;
  margin: 0 auto 22px;
  max-width: 920px;
}

/* Toggle */
.vh-wp .vh-vps-toggle{
  margin-top: 16px;
  display:inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
}
.vh-wp .vh-vps-toggle__btn{
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: rgba(255,255,255,.82);
  background: transparent;
}
.vh-wp .vh-vps-toggle__btn.is-active{
  background: rgba(11,54,198,.18);
  border: 1px solid rgba(11,54,198,.26);
  color: rgba(255,255,255,.92);
}
.vh-wp .vh-vps-toggle__btn:focus-visible{
  outline: 2px solid rgba(11,54,198,.55);
  outline-offset: 2px;
}

/* Cards */
.vh-wp .vh-cards{ display:grid; gap: 16px; }
.vh-wp .vh-cards--3{ grid-template-columns: repeat(3, minmax(0,1fr)); }

.vh-wp .vh-card{
  border-radius: 18px;
  background: var(--vh-card-bg);
  border: 1px solid var(--vh-card-border);
  box-shadow: var(--vh-card-shadow);
  overflow:hidden;
  padding: 16px;
  backdrop-filter: blur(6px);
  display:flex;
  flex-direction: column;
  min-width: 0;
}

.vh-wp .vh-vps-card__head{ display:flex; flex-direction: column; gap: 8px; }

.vh-wp .vh-vps-card__price{
  display:flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.vh-wp .vh-vps-card__amount{ display:flex; align-items: baseline; gap: 6px; }
.vh-wp .vh-vps-card__currency{ font-size: 18px; font-weight: 800; opacity: .92; }
.vh-wp .vh-vps-card__num{ font-size: 42px; font-weight: 900; letter-spacing: -0.8px; line-height: 1; }
.vh-wp .vh-vps-card__meta{ display:flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.vh-wp .vh-vps-card__per{ color: rgba(255,255,255,.82); font-weight: 700; font-size: 14px; }
.vh-wp .vh-vps-card__note{ color: rgba(255,255,255,.62); font-size: 13px; }

.vh-wp .vh-vps-features{
  list-style: none;
  padding: 0;
  margin: 14px 0 16px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.vh-wp .vh-vps-features li{
  color: rgba(255,255,255,.74);
  line-height: 1.4;
  font-size: 14px;
  display:flex;
  gap: 10px;
}
.vh-wp .vh-vps-features li::before{
  content:"";
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 999px;
  background: rgba(11,54,198,.75);
  box-shadow: 0 0 0 3px rgba(11,54,198,.18);
  flex: 0 0 auto;
}

.vh-wp .vh-wp-card .vh-btn{ margin-top: auto; }

/* Featured */
.vh-wp .vh-vps-card--featured{
  border-color: rgba(11,54,198,.35);
  box-shadow: 0 28px 90px rgba(0,0,0,.45);
  position: relative;
}
.vh-wp .vh-vps-card__ribbon{
  position:absolute;
  top: 14px;
  right: 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(11,54,198,.18);
  border: 1px solid rgba(11,54,198,.26);
  color: rgba(255,255,255,.92);
}

/* Links row */
.vh-wp .vh-vps-links{
  display:flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* Table */
.vh-wp .vh-vps-table__wrap{
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 60px rgba(0,0,0,.30);
  overflow:auto;
  -webkit-overflow-scrolling: touch;
}
.vh-wp .vh-vps-compare{
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.vh-wp .vh-vps-compare th,
.vh-wp .vh-vps-compare td{
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: left;
  vertical-align: middle;
}
.vh-wp .vh-vps-compare thead th{
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.2px;
  color: rgba(255,255,255,.92);
  background: rgba(0,0,0,.18);
}
.vh-wp .vh-vps-compare tbody td{
  color: rgba(255,255,255,.78);
  font-size: 14px;
}
.vh-wp .vh-vps-compare tbody td:nth-child(n+2){
  font-weight: 900;
  color: rgba(255,255,255,.90);
}
.vh-wp .vh-vps-compare__muted{
  color: rgba(255,255,255,.62);
  font-size: 12.5px;
}

/* =========================================================
   RESPONSIVE + MOBILE "tutto centrato" + toggle come VPS
   ========================================================= */
@media (max-width: 1024px){
  .vh-wp .vh-hero__inner{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .vh-wp .vh-hero__art{
    justify-self: center;
    margin: 0 auto;
    max-width: 520px;
  }
  .vh-wp .vh-cards--3{ grid-template-columns: 1fr; }

  /* Bottoni full width */
  .vh-wp .vh-btn{ width: 100%; justify-content: center; }

  /* tutto centrato */
  .vh-wp .vh-hero__copy,
  .vh-wp .vh-section__head,
  .vh-wp .vh-card{
    text-align: center;
  }
  .vh-wp .vh-hero__lead{
    margin-left: auto;
    margin-right: auto;
  }
  .vh-wp .vh-hero__cta{ justify-content: center; }

  .vh-wp .vh-vps-card__price{ justify-content: center; text-align: center; }
  .vh-wp .vh-vps-card__meta{ align-items: center; text-align: center; }

  .vh-wp .vh-vps-features{ align-items: center; }
  .vh-wp .vh-vps-features li{
    justify-content: center;
    width: 100%;
    max-width: 520px;
    text-align: left;
  }

  .vh-wp .vh-vps-toggle{
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 520px){
  .vh-wp .vh-vps-toggle{
    width: 100%;
    justify-content: center;
  }
  .vh-wp .vh-vps-toggle__btn{
    flex: 1 1 0;
    text-align: center;
  }

  .vh-wp::before{
    background-position: center top;
    background-size: cover;
  }
}
