/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BASE ===== */
body {
  font-family: 'Inter', sans-serif;
  background: #f5f7fb;
  color: #1a1a1a;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* ===== HEADER ===== */
.site-header {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #111;
}

.brand-mark {
  background: #0d47a1;
  color: white;
  padding: 8px 10px;
  border-radius: 6px;
  margin-right: 10px;
  font-weight: 700;
}

.brand-text small {
  display: block;
  font-size: 0.75rem;
  color: #666;
}

/* NAV */
.site-nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #444;
  font-weight: 500;
}

.site-nav a.active,
.site-nav a:hover {
  color: #0d47a1;
}

/* ===== HERO ===== */
.hero {
  background: #0a0a0a;
  color: white;
  padding: 140px 0;
}

.hero-inner {
  max-width: 800px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 20px 0;
}

.hero p {
  color: #aaa;
  font-size: 1.1rem;
  max-width: 600px;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: #3b82f6;
}

.btn-primary {
  background: #2563eb;
  color: white;
  padding: 14px 22px;
  border-radius: 8px;
}

.btn-ghost {
  border: 1px solid #444;
  color: white;
  padding: 14px 22px;
  border-radius: 8px;
}

/* BOTTONI */
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  margin-right: 10px;
}

.btn-primary {
  background: white;
  color: #0d47a1;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
}

.btn-secondary:hover {
  background: #eee;
}

/* LISTA HERO */
.hero-points {
  margin-top: 20px;
  list-style: none;
}

.hero-points li {
  margin-bottom: 8px;
}

/* ===== CARD HERO DESTRA ===== */
.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
}

.quick-info dt {
  font-weight: 600;
  font-size: 0.85rem;
  color: #777;
}

.quick-info dd {
  margin-bottom: 12px;
}

/* ===== SEZIONI ===== */
.section {
  padding: 100px 0;
}

.section-alt {
  background: #eef2f7;
}

.section-head {
  max-width: 600px;
  margin-bottom: 40px;
}

/* ===== CARDS ===== */
.cards {
  display: grid;
  gap: 20px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* ===== SPLIT ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

/* ===== CATALOGHI ===== */
.catalog-preview {
  display: flex;
  gap: 20px;
}

.catalog-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  text-align: center;
  border: 1px solid #ddd;
}

/* ===== INFO PANEL ===== */
.info-panel {
  background: white;
  padding: 25px;
  border-radius: 10px;
}

.info-panel ul {
  list-style: none;
}

.info-panel li {
  margin-bottom: 10px;
}

/* ===== CTA ===== */
.cta-section {
  padding: 60px 0;
}

.cta-box {
  background: linear-gradient(135deg, #0d47a1, #1e40af);
  box-shadow: 0 20px 50px rgba(13,71,161,0.3);
}

.cta-box p {
  color: #dbeafe;
}

.cta-actions a {
  margin-left: 10px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #111;
  color: #ccc;
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.site-footer a {
  color: #ccc;
  text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid,
  .split,
  .cards.three,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.nav-toggle {
  display: none;
}
