/* styles.css (shared for DE/EN/IT) */
:root{
  --bg:#0b0c0f;
  --text:#f5f4f1;
  --muted:#b9b6b0;
  --line:rgba(255,255,255,.10);
  --accent:#d7c9a7;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(215,201,167,.12), transparent 55%),
              radial-gradient(900px 450px at 85% 20%, rgba(255,255,255,.08), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{color:inherit;text-decoration:none}
.container{width:min(1080px, 92%); margin:0 auto}

.header{
  position:sticky; top:0;
  backdrop-filter: blur(10px);
  background: rgba(11,12,15,.70);
  border-bottom:1px solid var(--line);
  z-index:50;
}
.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}

.brand{display:flex; align-items:center; gap:12px}
.logo{
  width:36px;height:36px;border-radius:10px;
  display:grid;place-items:center;
  background: linear-gradient(145deg, rgba(215,201,167,.25), rgba(255,255,255,.05));
  border:1px solid var(--line);
  font-weight:600;
}
.brand-name{font-weight:600; letter-spacing:.2px}
.brand-sub{font-size:12px; color:var(--muted)}

.header-right{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav{display:flex; gap:18px}
.nav a{font-size:14px;color:var(--muted)}
.nav a:hover{color:var(--text)}

/* Language switch */
.lang{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-radius:999px;
}
.lang-link{
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-size:12.5px;
  color:rgba(245,244,241,.72);
  letter-spacing:.2px;
}
.lang-link:hover{color:var(--text)}
.lang-link.active{
  color:var(--text);
  font-weight:600;
}
.flag{font-size:14px; line-height:1}
.lang-sep{opacity:.35}

.hero{padding:70px 0 52px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .95fr;
  gap:26px;
  align-items:start;
}

h1{
  font-size:48px;
  line-height:1.05;
  margin:0 0 18px;
  letter-spacing:-.6px;
}

.hero-title{letter-spacing:-.6px; margin-bottom:18px}
.hero-title span{opacity:.9}

.lead{
  color:var(--muted);
  font-size:16px;
  margin:0 0 18px;
  max-width:58ch;
}

.pill-row{display:flex; gap:10px; flex-wrap:wrap; margin:0 0 22px}
.pill{
  padding:8px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  font-size:12.5px;
  letter-spacing:.2px;
  color:var(--muted);
}

.cta-row{
  display:flex; gap:12px; align-items:center; flex-wrap:wrap;
  margin-top:26px;
}
.btn{
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:500;
  font-size:14px;
}
.btn-primary{
  background: linear-gradient(145deg, rgba(215,201,167,.35), rgba(255,255,255,.06));
  border-color: rgba(215,201,167,.35);
}
.btn-primary:hover{filter:brightness(1.06)}
.btn-ghost{color:var(--muted); opacity:.7}
.btn-ghost:hover{color:var(--text); opacity:1}

.micro{margin:14px 0 0; color:rgba(245,244,241,.72); font-size:12px}

.hero-card .card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:18px;
  padding:22px;
  box-shadow: var(--shadow);
}
.card-title{font-weight:600; margin:0 0 10px}
.checklist{margin:0; padding:0 0 0 18px; color:var(--muted)}
.checklist li{margin:10px 0}
.card-note{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid var(--line);
  color:rgba(245,244,241,.78);
  font-size:13px;
}

.section{padding:64px 0}
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent 55%);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
h2{margin:0 0 10px; font-size:26px; letter-spacing:-.2px}
.section-lead{margin:0 0 28px; color:var(--muted); max-width:70ch}

.grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
}
.tile{
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
}
.tile h3{
  margin:0 0 6px;
  font-size:16px;
  font-weight:600;
  letter-spacing:-0.2px;
}
.tile p{margin:0; color:var(--muted); font-size:14px}

.steps{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:12px;
}
.steps li{
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-radius:16px;
  padding:14px 16px;
}
.step-title{font-weight:600; margin-bottom:6px}
.step-text{color:var(--muted); font-size:14px}

.contact{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}
.contact-card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius:18px;
  padding:18px;
}
.contact-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid var(--line);
}
.contact-row:last-of-type{border-bottom:none}
.label{color:var(--muted); font-size:13px}
.value{font-size:14px}
.value.muted{color:rgba(245,244,241,.65)}
.contact-cta{margin-top:14px}

.footer{
  padding:22px 0 30px;
  border-top:1px solid var(--line);
  background: rgba(11,12,15,.65);
}
.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.small{font-size:12px; color:rgba(245,244,241,.65)}
.right{display:flex; align-items:center; gap:10px}
.footer-link{color:rgba(245,244,241,.65)}
.footer-link:hover{color:var(--text)}
.dot{opacity:.6}

@media (max-width: 920px){
  .hero-grid, .contact{grid-template-columns:1fr}
  h1{font-size:38px}
  .grid{grid-template-columns:1fr}
  .header-right{justify-content:flex-start}
}

@media (max-width: 520px){
  h1{font-size:34px}
  .lead{font-size:15px}
  .cta-row{gap:10px}
  .nav{gap:14px}
}
