:root{
  --bg:#0b0f14;
  --panel:#101826;
  --text:#e8eef6;
  --muted:#a7b2c2;
  --line:#223049;
  --accent:#5eead4;
  --shadow:0 12px 40px rgba(0,0,0,.35);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}

body{
  font-family:Inter,system-ui,Arial,sans-serif;
  background: radial-gradient(900px 500px at 20% 10%, rgba(96,165,250,.12), transparent 60%),
              radial-gradient(900px 500px at 80% 20%, rgba(94,234,212,.10), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit;text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:0 18px}

/* HEADER */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(11,15,20,.8);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(34,48,73,.6);
}
.header__inner{
  display:flex;
  align-items:center;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
}
.brand__logo{
  width:34px;
  height:34px;
  object-fit:contain;
  border-radius:10px;
  background:#0b0f14;
  border:1px solid rgba(34,48,73,.7);
}

.nav{
  margin-left:auto;
  display:flex;
  gap:14px;
}
.nav a{
  padding:8px 10px;
  border-radius:12px;
}
.nav a:hover{
  background:rgba(34,48,73,.35);
}

.lang{display:flex;gap:8px}
.lang__btn{
  border:1px solid rgba(34,48,73,.8);
  background:rgba(16,24,38,.6);
  color:var(--text);
  padding:8px 10px;
  border-radius:12px;
  cursor:pointer;
  font-weight:600;
}
.lang__btn.is-active{
  border-color:rgba(94,234,212,.8);
  box-shadow:0 0 0 3px rgba(94,234,212,.12);
}

/* HERO */
.hero{padding:44px 0 30px}
.hero__grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
  align-items:start;
}

.pill{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(34,48,73,.8);
  background:rgba(16,24,38,.6);
  color:var(--muted);
  margin-bottom:12px;
}

h1{
  font-size:44px;
  line-height:1.08;
  margin:0 0 12px;
}

.lead{
  color:var(--muted);
  margin-bottom:18px;
}

.cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(34,48,73,.8);
  background:rgba(16,24,38,.6);
  font-weight:700;
}
.btn--primary{
  border-color:rgba(94,234,212,.75);
  background:linear-gradient(180deg, rgba(94,234,212,.22), rgba(16,24,38,.75));
}
.btn--ghost{
  background:rgba(16,24,38,.35);
}
.btn--small{padding:10px 12px}

.highlights{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
}
.highlights li{
  padding:10px 12px;
  border:1px solid rgba(34,48,73,.7);
  border-radius:14px;
  background:rgba(16,24,38,.35);
  color:var(--muted);
}

/* IMMAGINI – DEFINITIVO */
.hero__media{
  border:1px solid rgba(34,48,73,.7);
  border-radius:var(--radius);
  background:rgba(16,24,38,.35);
  overflow:hidden;
  box-shadow:var(--shadow);
}

.hero__img{
  display:block;
  width:100%;
  height:360px;
  object-fit:cover;
  object-position:25% center; /* FORZATO A SINISTRA */
  background:#0b0f14;
}

.hero__thumbs{
  display:flex;
  gap:10px;
  padding:12px;
}
.thumb{
  width:110px;
  height:70px;
  object-fit:cover;
  object-position:center;
  border-radius:14px;
  border:1px solid rgba(34,48,73,.7);
  cursor:pointer;
}

/* SEZIONI */
.section{padding:42px 0}
.section--alt{
  background:linear-gradient(180deg, rgba(16,24,38,.35), rgba(11,15,20,0));
  border-top:1px solid rgba(34,48,73,.45);
  border-bottom:1px solid rgba(34,48,73,.35);
}
h2{
  font-size:30px;
  margin-bottom:18px;
}

.cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.card{
  border:1px solid rgba(34,48,73,.7);
  border-radius:var(--radius);
  background:rgba(16,24,38,.35);
  padding:16px;
  box-shadow:var(--shadow);
}
.price{
  font-size:40px;
  font-weight:800;
}

.list{padding-left:18px;color:var(--muted)}
.list li{margin:8px 0}

.bar{
  margin-top:16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:16px;
  border:1px solid rgba(34,48,73,.7);
  border-radius:var(--radius);
  background:rgba(16,24,38,.35);
}

.grid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.faq{
  border:1px solid rgba(34,48,73,.7);
  border-radius:var(--radius);
  background:rgba(16,24,38,.35);
  padding:14px 16px;
  margin-bottom:12px;
}
.faq summary{font-weight:800;cursor:pointer}
.faq p{color:var(--muted)}

.contact{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.link{color:var(--accent)}

.footer{
  margin-top:18px;
  color:var(--muted);
  font-size:13px;
}

/* MOBILE */
@media (max-width:900px){
  .hero__grid{grid-template-columns:1fr}
  h1{font-size:34px}
  .cards,.grid2,.contact{grid-template-columns:1fr}
  .nav{display:none}
}