/* ============================
   PALETTE BRAND SYNERGISTIC
   ============================ */
:root {
  --bg-dark: #0B1F3A;
  --bg-darker: #071426;
  --bg-light: #F4F6FA;

  --accent: #1F6FEB;
  --accent-soft: #4FA3FF;
  --highlight: #F2C94C;

  --text-main: #0B1F3A;
  --text-light: #E5ECF5;
}

/* ============================
   GLOBAL
   ============================ */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-main);
  background: var(--bg-light);
  line-height: 1.7;
  font-size: 1.1rem; /* AUMENTATO */
}

/* ============================
   HERO – VERSIONE BALANCED
   ============================ */
.hero {
  background: linear-gradient(135deg, #0B1F3A 0%, #0F2A52 40%, #1F6FEB 100%);
  color: var(--text-light);
  padding: 50px 16px 70px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  width: 200px;
  max-width: 45%;
  height: auto;
  margin-bottom: 26px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35));
}

.hero h1 {
  font-family: "Inter Tight", sans-serif;
  font-size: 3rem; /* AUMENTATO */
  margin-bottom: 8px;
}

.hero h2 {
  font-size: 1.6rem; /* AUMENTATO */
  font-weight: 300;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.25rem; /* AUMENTATO */
  margin-bottom: 28px;
}

.cta-button {
  display: inline-block;
  background: var(--highlight);
  color: var(--bg-dark);
  padding: 14px 28px; /* AUMENTATO */
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem; /* AUMENTATO */
  text-decoration: none;
  transition: all 0.25s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* ============================
   SEZIONI – VERSIONE ULTRA WIDE
   ============================ */
.section {
  max-width: 1400px; /* ANCORA PIÙ LARGA */
  margin: 80px auto;
  padding: 50px 60px; /* PIÙ SPAZIO */
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0, 32, 64, 0.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--highlight));
  border-radius: 18px;
  opacity: 0.9;
}

.section h2 {
  font-family: "Inter Tight", sans-serif;
  font-size: 2.2rem; /* AUMENTATO */
  margin-bottom: 28px;
  color: var(--bg-dark);
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .section h2 {
    white-space: normal;
    font-size: 1.8rem;
  }
}

.section-subtitle,
.section-question {
  font-size: 1.35rem; /* AUMENTATO */
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 18px;
}

.bullet-list {
  padding-left: 20px;
  margin: 0;
}

.bullet-list li {
  margin-bottom: 20px;
  line-height: 1.7;
  padding-left: 14px;
  border-left: 3px solid var(--accent);
  font-size: 1.2rem; /* AUMENTATO */
}

/* ============================
   FOUNDER CARDS
   ============================ */
.founders-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
}

.founder-card {
  background: #f8f9fc;
  border-radius: 12px;
  padding: 20px 24px;
  border-left: 4px solid var(--accent);
  transition: all 0.25s ease;
  font-size: 1.15rem; /* AUMENTATO */
}

.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

.founder-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.35rem; /* AUMENTATO */
}

.highlight-text {
  font-weight: 600;
  color: var(--bg-dark);
}

/* ============================
   MODULI
   ============================ */
.modules-list {
  padding-left: 20px;
  margin-bottom: 20px;
}

.modules-list li {
  margin-bottom: 12px;
  font-size: 1.15rem; /* AUMENTATO */
}

.module-box {
  background: #f8f9fc;
  border-radius: 12px;
  padding: 18px 22px;
  border-left: 4px solid var(--highlight);
  transition: all 0.25s ease;
  font-size: 1.15rem; /* AUMENTATO */
}

.module-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--bg-darker);
  color: var(--text-light);
  text-align: center;
  padding: 30px 10px;
  font-size: 1rem; /* AUMENTATO */
}

.footer-logo img {
  width: 160px;
  max-width: 45%;
  height: auto;
  margin-bottom: 12px;
  opacity: 0.95;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .hero h2 {
    font-size: 1.7rem;
  }

  .section {
    padding: 60px 70px;
  }

  .founders-grid {
    grid-template-columns: 1fr 1fr;
  }
}