/* ================================================
   PADRI D'ACCIAIO — Design System v2 (Ferro e Luce)
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Ferro e Luce — contesto chiaro (default) */
  --bg:           #F4F3F1;
  --surface:      #ECEAE6;
  --card:         #FFFFFF;
  --card-hover:   #F8F7F4;
  --border:       #E2E0DC;
  --border-bright:#C0BBB4;
  --text:         #181818;
  --muted:        #888888;

  /* Accento */
  --red:          #C0311F;
  --red-light:    #D94028;
  --green:        #27AE60;
  --orange:       #D4621A;

  /* Alias compat per inline styles */
  --gold:         #C0311F;
  --gold-light:   #D94028;
  --gold-dim:     #888888;
  --black:        #111111;
  --dark:         #111111;
}

/* ---- CONTESTO SCURO ---- */
.s-dark {
  background: #111111;
  --card:          #1C1C1C;
  --card-hover:    #242424;
  --border:        rgba(255,255,255,0.08);
  --border-bright: rgba(255,255,255,0.18);
  --text:          #FFFFFF;
  --muted:         #AAAAAA;
  --gold:          #C0311F;
  --gold-light:    #D94028;
  --gold-dim:      #888888;
  color: #FFFFFF;
}
.s-dark p            { color: #AAAAAA; }
.s-dark strong       { color: #FFFFFF; }
.s-dark em           { color: var(--red); font-style: normal; }
.s-dark h1, .s-dark h2, .s-dark h3, .s-dark h4 { color: #FFFFFF; }
.s-dark .section-title { color: #FFFFFF; }

/* ---- RESET ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
}

/* ---- TIPOGRAFIA ---- */
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.05;
  color: var(--text);
}
h1 { font-size: clamp(48px, 7vw, 88px); }
h2 { font-size: clamp(32px, 4.5vw, 56px); }
h3 { font-size: clamp(22px, 3vw, 32px); }

p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 14px;
}
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--text); }
em { color: var(--red); font-style: normal; }
a { color: var(--red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--red-light); }

/* ---- LAYOUT ---- */
.container        { max-width: 900px;  margin: 0 auto; padding: 0 28px; }
.container--narrow{ max-width: 680px;  margin: 0 auto; padding: 0 28px; }
.container--wide  { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
section { padding: 80px 0; }

/* ---- NAVIGAZIONE ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img { height: 32px; width: auto; }
.nav-wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2.5px;
  color: var(--text);
  line-height: 1;
}
.nav-wordmark span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  letter-spacing: 3.5px;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  font-weight: 500;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  background: var(--red);
  color: #fff !important;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-light); color: #fff !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 61px;
  left: 0; right: 0;
  background: rgba(255,255,255,0.99);
  padding: 20px 28px 28px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 99;
}
.nav-mobile.active { display: flex; flex-direction: column; gap: 16px; }
.nav-mobile a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.nav-mobile a:hover { color: var(--text); }
.nav-mobile .btn { margin-top: 8px; text-align: center; display: block; }

/* ---- DIVIDER ---- */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider-gem {
  width: 5px; height: 5px;
  background: var(--red);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ---- SECTION LABEL ---- */
.section-label {
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.section-label--center {
  justify-content: center;
  text-align: center;
}
.section-label--center::after { display: none; }

/* ---- CARD ---- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 40px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  border-top: 3px solid var(--red);
}
.card.visible { opacity: 1; transform: translateY(0); }
.card--static { opacity: 1; transform: none; }
.card h2 { margin-bottom: 16px; }
.card h2 em { color: var(--red); }

/* ---- BLOCKQUOTE ---- */
blockquote, .blockquote {
  border-left: 3px solid var(--red);
  padding: 16px 22px;
  background: rgba(192,49,31,0.04);
  margin: 24px 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
}
.s-dark blockquote, .s-dark .blockquote {
  background: rgba(192,49,31,0.08);
  color: #FFFFFF;
}

/* ---- BOTTONI ---- */
.btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 18px 48px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  cursor: pointer;
  border: none;
  outline: none;
  line-height: 1;
}
.btn:hover { background: var(--red-light); transform: translateY(-2px); color: #fff; }
.btn--outline {
  background: transparent;
  border: 1px solid var(--border-bright);
  color: var(--muted);
}
.btn--outline:hover { border-color: var(--red); color: var(--text); background: transparent; }
.s-dark .btn--outline {
  border-color: rgba(255,255,255,0.2);
  color: #AAAAAA;
}
.s-dark .btn--outline:hover { border-color: #fff; color: #fff; }
.btn--lg { padding: 22px 60px; font-size: 12px; }
.btn--sm { padding: 12px 28px; font-size: 10px; }
.btn--full { display: block; width: 100%; text-align: center; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(192,49,31,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-brand {
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeUp 0.7s ease both;
}
.hero-brand::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--red);
}
.hero h1 {
  color: #FFFFFF;
  font-size: clamp(28px, 4.2vw, 56px);
  margin-bottom: 20px;
  animation: fadeUp 0.85s 0.1s ease both;
}
.hero h1 em { color: var(--red); }
.hero-sub {
  font-size: 15px;
  color: #AAAAAA;
  max-width: 560px;
  margin-bottom: 40px;
  animation: fadeUp 0.9s 0.2s ease both;
  line-height: 1.8;
}
.hero-sub strong { color: #FFFFFF; }
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.3s ease both;
  align-items: center;
}
.hero-note {
  font-size: 11px;
  color: #555555;
  margin-top: 16px;
  letter-spacing: 0.5px;
  animation: fadeUp 1.1s 0.4s ease both;
}

/* TRUST BAR (dopo hero) */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-items {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-dot {
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- GRID ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ---- CHECKLIST ---- */
.checklist { list-style: none; margin: 20px 0; }
.checklist li {
  font-size: 14px;
  color: var(--muted);
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.s-dark .checklist li { border-bottom-color: rgba(255,255,255,0.04); }
.checklist li::before {
  content: attr(data-i);
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.checklist li:last-child { border-bottom: none; }

/* ---- VALUE ITEMS ---- */
.value-item {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px 24px;
  position: relative;
  border-top: 3px solid var(--red);
}
.value-item-label {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.value-item h3 { font-size: 20px; color: var(--text); margin-bottom: 8px; }
.s-dark .value-item h3 { color: #FFFFFF; }
.value-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--red);
  letter-spacing: 1px;
}

/* ---- FAQ ACCORDION ---- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}
.faq-question-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  text-align: left;
}
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-bright);
  color: var(--red);
  font-size: 18px;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding-bottom: 22px; }
.faq-answer-inner p { font-size: 14px; }

/* ---- PHASES ---- */
.phase {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.phase:last-child { border-bottom: none; }
.phase-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  font-weight: 400;
  color: var(--red);
  opacity: 0.2;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
}
.phase-content h3 { font-size: 26px; color: var(--text); margin-bottom: 6px; }
.phase-meta {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ---- TESTIMONIAL ---- */
.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 32px;
  position: relative;
}
.testimonial-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
}
.s-dark .testimonial-text { color: #FFFFFF; }
.testimonial-author {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}

/* ---- TAGS ---- */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.tag {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--border-bright);
  color: var(--muted);
  font-weight: 500;
}
.s-dark .tag { border-color: rgba(255,255,255,0.12); color: #888; }

/* ---- CTA BLOCK ---- */
.cta-block {
  background: #111111;
  border: 1px solid rgba(192,49,31,0.4);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.cta-block-label {
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
.cta-block h2 { color: #FFFFFF; margin-bottom: 16px; }
.cta-block h2 em { color: var(--red); }
.cta-block p { color: #AAAAAA; max-width: 480px; margin: 0 auto 32px; }
.cta-warning { font-size: 11px; color: #555555; margin-top: 16px; letter-spacing: 0.5px; }

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
  text-align: center;
  background: var(--surface);
}
.footer::before {
  content: '';
  display: block;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  margin: 0 auto 28px;
}
.footer-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 3px;
  color: var(--text);
  margin-bottom: 4px;
}
.footer-title {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 36px;
  font-weight: 500;
}
.footer-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-links a {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 500;
}
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 11px; color: var(--muted); opacity: 0.6; }

/* ---- BLOG CARDS ---- */
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 32px;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: block;
  color: inherit;
  border-top: 3px solid transparent;
}
.blog-card:hover { border-top-color: var(--red); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.blog-meta {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.blog-card h2 { font-size: 26px; color: var(--text); margin-bottom: 12px; line-height: 1.1; }
.blog-card p { font-size: 13px; margin-bottom: 20px; }
.read-more {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}
.read-more::after { content: ' →'; }

/* ---- ARTICLE ---- */
.article-header {
  padding: 120px 0 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
  background: var(--text);
}
.article-header h1 { color: #FFFFFF; margin-bottom: 20px; line-height: 1.1; }
.article-meta {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
.article-content h2 {
  font-size: 34px;
  color: var(--text);
  margin: 48px 0 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.article-content h3 { font-size: 22px; color: var(--text); margin: 28px 0 10px; }
.article-content p { font-size: 15px; color: var(--muted); line-height: 1.9; margin-bottom: 18px; }
.article-content ul, .article-content ol {
  margin: 16px 0 20px 24px;
  color: var(--muted);
  font-size: 15px;
}
.article-content li { margin-bottom: 8px; line-height: 1.7; }
.article-content strong { color: var(--text); font-weight: 600; }
.article-cta-box {
  background: var(--card);
  border: 1px solid var(--red);
  border-top: 3px solid var(--red);
  padding: 36px;
  margin: 52px 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.article-cta-box h3 { font-size: 28px; color: var(--text); margin-bottom: 12px; }
.article-cta-box p { color: var(--muted); margin-bottom: 22px; font-size: 14px; }

/* ---- FORM ---- */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--red); }
.form-input::placeholder { color: var(--muted); }
.form-note { font-size: 11px; color: var(--muted); margin-top: 8px; opacity: 0.7; }

/* ---- VALUE TABLE ---- */
.value-table { width: 100%; border-collapse: collapse; margin: 32px 0; }
.value-table th, .value-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.value-table th {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  background: var(--surface);
}
.s-dark .value-table th { background: var(--dark-surface, #191919); }
.value-table td { color: var(--muted); }
.value-table td:last-child {
  color: var(--red);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  text-align: right;
}
.value-table tr.total td {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  border-top: 1px solid var(--border-bright);
}
.s-dark .value-table tr.total td { color: #FFFFFF; }
.value-table tr.total td:last-child { font-size: 28px; color: var(--red); }

/* ---- RADAR ---- */
.radar-wrap { display: flex; justify-content: center; margin: 32px 0; }

/* ---- PILLAR ITEMS ---- */
.pillar {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 16px 20px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 6px;
}
.pillar:hover, .pillar.open {
  border-color: var(--red);
  box-shadow: 0 2px 12px rgba(192,49,31,0.08);
}
.pillar-top { display: flex; align-items: center; gap: 12px; }
.pdot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.pname { flex: 1; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); }
.pscore { font-family: 'Bebas Neue', sans-serif; font-size: 24px; font-weight: 400; letter-spacing: 1px; }
.pstatus { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; font-weight: 600; }
.pbar { height: 2px; background: rgba(0,0,0,0.06); margin-top: 10px; overflow: hidden; }
.s-dark .pbar { background: rgba(255,255,255,0.06); }
.pbar-fill { height: 100%; width: 0; transition: width 1.4s cubic-bezier(.16,1,.3,1); }
.pdesc {
  font-size: 12px; color: var(--muted); line-height: 1.75; margin-top: 12px;
  font-style: italic; display: none; border-top: 1px solid var(--border); padding-top: 12px;
}
.pillar.open .pdesc { display: block; }

/* ---- SCORE RING ---- */
.score-ring { display: inline-block; position: relative; }
.score-ring svg { transform: rotate(-90deg); }
.score-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.score-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  font-weight: 400;
  color: var(--red);
  line-height: 1;
  letter-spacing: 2px;
}
.score-den { font-size: 13px; color: var(--muted); }
.score-tag { font-size: 9px; letter-spacing: 3px; color: var(--red); text-transform: uppercase; margin-top: 4px; font-weight: 700; }

/* ---- PROFILE CARD ---- */
.profile-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 28px 32px;
  position: relative;
}
.profile-label { font-size: 10px; letter-spacing: 4px; color: var(--red); text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pitem { font-size: 12px; color: var(--muted); }
.pitem strong { display: block; color: var(--text); font-weight: 600; font-size: 13px; }

/* ---- QUIZ ---- */
.quiz-progress {
  width: 100%;
  height: 2px;
  background: rgba(192,49,31,0.1);
  margin-bottom: 40px;
}
.quiz-progress-fill {
  height: 100%;
  background: var(--red);
  transition: width 0.4s ease;
}
.quiz-screen { display: none; }
.quiz-screen.active { display: block; }
.quiz-question {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.1;
  letter-spacing: 1.5px;
}
.quiz-options { display: flex; flex-direction: column; gap: 12px; }
.quiz-option {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 18px 22px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}
.quiz-option:hover {
  border-color: var(--red);
  color: var(--text);
  box-shadow: 0 2px 12px rgba(192,49,31,0.08);
}
.quiz-option-letter {
  width: 22px; height: 22px;
  border: 1px solid var(--border-bright);
  text-align: center;
  line-height: 20px;
  font-size: 10px;
  letter-spacing: 0;
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}
.quiz-counter {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
.quiz-result-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ---- SEZIONE PER CHI / NON PER CHI ---- */
.s-dark .grid-2 > div[style*="rgba(39,174,96"] {
  border-color: rgba(39,174,96,0.3) !important;
}
.s-dark .grid-2 > div[style*="rgba(192,57,43"] {
  border-color: rgba(192,57,43,0.3) !important;
}

/* ---- ANIMAZIONI ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links, .nav-cta-desktop { display: none; }
  .nav-hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; }
  .cta-block { padding: 40px 22px; }
  .card { padding: 24px; }
  .phase { flex-direction: column; gap: 8px; }
  .phase-num { font-size: 48px; width: auto; }
  .hero-ctas { flex-direction: column; }
  .profile-grid { grid-template-columns: 1fr; }
  .trust-items { gap: 20px; }
  h1 { font-size: clamp(44px, 10vw, 72px); }
  .hero h1 { font-size: clamp(44px, 10vw, 72px); }
  p { font-size: 16px; line-height: 1.75; }
  .hero-sub { font-size: 17px; line-height: 1.8; }
}
@media (max-width: 480px) {
  .container, .container--narrow, .container--wide { padding: 0 18px; }
  .value-table { font-size: 12px; }
  .value-table th, .value-table td { padding: 10px 12px; }
}
