/* =========================================================
   CHI SIAMO — CSS COMPLETO (stile identico alla home)
   Namespace: .vh-about
   ========================================================= */

/* Base */
html, body{
  background:#070A12;
  overflow-x:hidden;
}
body{padding-top:0px !important;}
/* =========================
   VARIABILI
   ========================= */
:root{
  /* Spazio sopra HERO (tra header e titolo) */
  --vh-hero-top: 18px;      /* aumenta a 22/26 se vuoi più aria */
  --vh-hero-bottom: 26px;

  /* Bottoni */
  --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);

  /* Cards */
  --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);

  /* Wrap */
  --vh-wrap-max: 1180px;
  --vh-wrap-pad: 18px;
}

/* =========================
   LAYOUT / BACKGROUND
   ========================= */
.vh-about{
  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-about::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-about > *{
  position: relative;
  z-index: 1;
}

.vh-about .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);
}

/* =========================
   FIX: elimina spazi “strani” dei wrapper tema
   ========================= */
.vh-about,
.vh-about#content,
#content.vh-about{
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.vh-about .site-content,
.vh-about .content-area,
.vh-about #primary,
.vh-about .site-main{
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* =========================
   BOTTONI — tutti identici
   ========================= */
.vh-about .vh-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;

  color: var(--vh-btn-text);
  text-decoration:none;

  font-weight:500;
  font-size:14px;

  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;
  line-height: 1;
}

.vh-about .vh-btn--primary{
  background: var(--vh-btn-bg);
  border: 1px solid var(--vh-btn-border);
  box-shadow:none;
}

.vh-about .vh-btn:hover{
  background: var(--vh-btn-bg-hover);
}

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

/* =========================
   HERO
   ========================= */
.vh-about .vh-hero{
  /* QUI: spazio tra header e titolo hero */
  padding-top: 100px;
  padding-bottom: var(--vh-hero-bottom);
}

.vh-about .vh-hero__inner{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.vh-about .vh-hero__copy{
  min-width: 0;
}

.vh-about .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-about .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-about .vh-hero__lead{
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  max-width: 640px;
}

.vh-about .vh-hero__cta{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap: wrap;
}

/* HERO ART ordinata */
.vh-about .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-about .vh-hero__art img{
  width:100%;
  height:auto;
  display:block;
}

/* =========================
   SEZIONI
   ========================= */
.vh-about .vh-section{
  padding: 28px 0 30px;
}

.vh-about .vh-section__head{
  text-align:center;
  margin: 0 auto 22px;
  max-width: 820px;
}

.vh-about .vh-section__title{
  font-size: clamp(26px, 3.2vw, 40px);
  margin: 0 0 10px;
  letter-spacing: -0.6px;
  font-weight: 850;
}

.vh-about .vh-section__subtitle{
  margin:0;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
}

/* =========================
   CARDS (glass)
   ========================= */
.vh-about .vh-cards{
  display:grid;
  gap:16px;
}

.vh-about .vh-cards--2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.vh-about .vh-cards--3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vh-about .vh-cards--4{ grid-template-columns: repeat(4, minmax(0, 1fr)); }

.vh-about .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-about .vh-card__media{
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.28);
}

.vh-about .vh-card__media img{
  width:100%;
  height:auto;
  display:block;
}

.vh-about .vh-card__title{
  margin: 14px 0 8px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.vh-about .vh-card__text{
  margin: 0 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.72);
}

/* =========================
   SPLIT CARDS
   ========================= */
.vh-about .vh-split__grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:16px;
}

.vh-about .vh-splitcard{
  border-radius: 18px;
  background: var(--vh-card-bg);
  border: 1px solid var(--vh-card-border);
  box-shadow: var(--vh-card-shadow);
  padding: 18px;
  backdrop-filter: blur(6px);

  display:flex;
  flex-direction:column;
}

.vh-about .vh-splitcard__title{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.2px;
}

.vh-about .vh-splitcard__text{
  margin: 0 0 14px;
  color: rgba(255,255,255,.74);
  line-height: 1.7;
  font-size: 14.5px;
}

.vh-about .vh-splitcard .vh-btn{
  margin-top: auto; /* bottone in fondo */
}

/* =========================
   KPI (numeri)
   ========================= */
.vh-about .vh-kpi{
  text-align:center;
  padding: 18px;
}

.vh-about .vh-kpi__big{
  margin: 6px 0 6px;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  letter-spacing: -0.6px;
}

/* =========================
   CTA BOX finale
   ========================= */
.vh-about .vh-about-cta__box{
  text-align:center;
  padding: 22px;
}

.vh-about .vh-about-cta__actions{
  margin-top: 16px;
  justify-content: center;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1024px){
  .vh-about .vh-hero__inner{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* leggermente meno spazio sopra su tablet */
  .vh-about{ --vh-hero-top: 16px; }

  .vh-about .vh-hero__art{
    justify-self: center;
    margin: 0 auto;
    max-width: 520px;
  }

  .vh-about .vh-cards--4,
  .vh-about .vh-cards--3,
  .vh-about .vh-cards--2{
    grid-template-columns: 1fr;
  }

  .vh-about .vh-split__grid{
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px){
  /* meno spazio su mobile */
  .vh-about{ --vh-hero-top: 14px; }

  .vh-about .vh-hero__lead{
    font-size: 15px;
  }

  .vh-about .vh-hero__copy,
  .vh-about .vh-section__head,
  .vh-about .vh-card,
  .vh-about .vh-splitcard{
    text-align:center;
  }

  .vh-about .vh-hero__cta{
    justify-content:center;
  }

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