  :root {
    --navy: #0d1f3c;
    --navy-mid: #162d52;
    --blue: #1a4a8a;
    --accent: #c8902a;
    --accent-light: #e8b052;
    --light: #f4f6f9;
    --white: #ffffff;
    --text: #2a2a2a;
    --text-muted: #6b7280;
    --border: #dde3ee;
    --danger-soft: #fff5f5;
    --danger: #c0392b;
    --success: #1a6b4a;
    --success-soft: #f0faf5;
  }

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

  body {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--text);
    background: var(--white);
    font-size: 16px;
    line-height: 1.7;
  }

  /* ── TOPBAR ── */
  .topbar {
    background: var(--navy);
    color: #aab8cc;
    font-size: 13px;
    padding: 8px 0;
    text-align: center;
    letter-spacing: 0.02em;
  }
  .topbar span { margin: 0 16px; }
  .topbar a { color: var(--accent-light); text-decoration: none; }

  /* ── HEADER ── */
  header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
  }
  .header-inner {
    max-width: 1180px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 24px;
  }
  .logo { text-decoration: none; display: flex; align-items: center; }
  .logo span { color: var(--accent); }
  nav a {
    font-size: 14px; font-weight: 500; color: var(--navy);
    text-decoration: none; margin-left: 28px;
    transition: color .2s;
  }
  nav a:hover { color: var(--accent); }
  .btn-nav {
    background: var(--accent); color: var(--white) !important;
    padding: 9px 20px; border-radius: 4px; font-size: 13px !important;
    font-weight: 600 !important;
  }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3560 100%);
    color: var(--white);
    padding: 72px 24px 80px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
  }
  .hero-inner {
    max-width: 860px; margin: 0 auto; position: relative; z-index: 1;
  }
  .breadcrumb {
    font-size: 13px; color: #7a9bc5; margin-bottom: 20px;
    display: flex; align-items: center; gap: 6px;
  }
  .breadcrumb a { color: #7a9bc5; text-decoration: none; }
  .breadcrumb a:hover { color: var(--accent-light); }
  .breadcrumb span { color: #3a5f8a; }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }
  .hero h1 em { color: var(--accent-light); font-style: normal; }

  .hero-intro {
    font-size: 17px;
    color: #b8cce4;
    line-height: 1.75;
    max-width: 720px;
    margin-bottom: 32px;
  }

  .hero-cta-row {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: background .2s;
    letter-spacing: 0.01em;
  }
  .btn-primary:hover { background: var(--accent-light); }
  .hero-tel {
    color: #b8cce4; font-size: 14px;
  }
  .hero-tel strong { color: var(--white); font-size: 17px; }

  .trust-strip {
    margin-top: 48px;
    display: flex; gap: 24px; flex-wrap: wrap;
  }
  .trust-item {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    padding: 10px 16px; border-radius: 4px;
    font-size: 13px; color: #c5d8ee;
  }
  .trust-item svg { flex-shrink: 0; }

  /* ── SECTION BASE ── */
  section { padding: 72px 24px; }
  .container { max-width: 1100px; margin: 0 auto; }
  .section-label {
    font-size: 11px; font-weight: 700; letter-spacing: .12em;
    color: var(--accent); text-transform: uppercase; margin-bottom: 10px;
  }
  h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.3;
  }
  .section-lead {
    font-size: 17px; color: var(--text-muted); max-width: 680px;
    margin-bottom: 48px; line-height: 1.7;
  }

  /* ── SOGGETTI ── */
  .soggetti-section { background: var(--light); }
  .soggetti-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  .soggetto-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--blue);
    padding: 24px 20px;
    border-radius: 4px;
  }
  .soggetto-card h3 {
    font-size: 15px; font-weight: 700; color: var(--navy);
    margin-bottom: 8px;
  }
  .soggetto-card p {
    font-size: 14px; color: var(--text-muted); line-height: 1.6;
  }
  .soggetto-badge {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    padding: 2px 10px; border-radius: 20px;
    margin-bottom: 10px;
    background: #e8f0fb; color: var(--blue);
    text-transform: uppercase; letter-spacing: .07em;
  }
  .alert-box {
    background: #fff8ed;
    border-left: 4px solid var(--accent);
    padding: 18px 22px;
    border-radius: 0 4px 4px 0;
    margin-top: 32px;
    font-size: 14px;
    color: var(--text);
  }
  .alert-box strong { color: var(--navy); }

  /* ── DANNI ── */
  .danni-section { background: var(--white); }
  .danni-tabs {
    display: flex; gap: 0; border-bottom: 2px solid var(--border);
    margin-bottom: 40px;
  }
  .danni-tab {
    padding: 12px 28px;
    font-size: 15px; font-weight: 600;
    cursor: pointer; border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    color: var(--text-muted);
    transition: all .2s;
  }
  .danni-tab.active {
    border-bottom-color: var(--accent);
    color: var(--navy);
  }
  .danni-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  }
  @media(max-width: 700px) { .danni-grid { grid-template-columns: 1fr; } }

  .danno-col { }
  .danno-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px; color: var(--navy);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 24px;
  }
  .danno-item {
    display: flex; gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
  }
  .danno-item:last-child { border-bottom: none; }
  .danno-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: var(--light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    margin-top: 2px;
  }
  .danno-item h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
  .danno-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
  .danno-norm {
    font-size: 12px; color: var(--accent); font-weight: 600;
    margin-top: 4px; cursor: pointer;
  }

  /* ── ESEMPI ── */
  .esempi-section { background: var(--navy); color: var(--white); }
  .esempi-section h2 { color: var(--white); }
  .esempi-section .section-label { color: var(--accent-light); }
  .esempi-section .section-lead { color: #8aa5c4; }

  .casi-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px; margin-bottom: 48px;
  }
  .caso-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 4px;
    padding: 28px 24px;
    position: relative;
  }
  .caso-tag {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; color: var(--accent-light);
    margin-bottom: 12px;
  }
  .caso-card h3 {
    font-size: 15px; font-weight: 600; color: var(--white);
    margin-bottom: 10px; line-height: 1.5;
  }
  .caso-card p {
    font-size: 13px; color: #8aa5c4; line-height: 1.65;
    margin-bottom: 16px;
  }
  .caso-importo {
    font-family: 'Playfair Display', serif;
    font-size: 26px; font-weight: 700;
    color: var(--accent-light);
  }
  .caso-importo span { font-size: 13px; font-weight: 400; color: #8aa5c4; }

  .valutazione-box {
    background: rgba(200, 144, 42, .1);
    border: 1px solid rgba(200, 144, 42, .3);
    border-radius: 4px;
    padding: 36px 40px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
  }
  .valutazione-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px; color: var(--white); margin-bottom: 8px;
  }
  .valutazione-box p { font-size: 15px; color: #8aa5c4; max-width: 460px; }
  .btn-outline {
    background: transparent;
    color: var(--accent-light);
    border: 2px solid var(--accent-light);
    padding: 13px 28px;
    border-radius: 4px;
    font-size: 15px; font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all .2s;
  }
  .btn-outline:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
  }

  /* ── PROCEDURA ── */
  .procedura-section { background: var(--light); }
  .steps-wrapper { position: relative; }
  .step {
    display: flex; gap: 28px;
    margin-bottom: 36px;
    position: relative;
  }
  .step-number {
    width: 48px; height: 48px; flex-shrink: 0;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 19px; font-weight: 700;
    position: relative; z-index: 1;
  }
  .step-line {
    position: absolute;
    left: 23px; top: 48px; bottom: -36px;
    width: 2px; background: var(--border);
  }
  .step:last-child .step-line { display: none; }
  .step-body {
    padding-top: 10px;
    flex: 1;
  }
  .step-body h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
  .step-body p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
  .step-badge {
    display: inline-block; font-size: 11px;
    background: #fff3cd; color: #7a5c00;
    padding: 2px 10px; border-radius: 20px;
    font-weight: 700; margin-top: 8px;
    text-transform: uppercase; letter-spacing: .06em;
  }

  .prescrizione-alert {
    background: var(--danger-soft);
    border: 1px solid #f5c6cb;
    border-left: 4px solid var(--danger);
    border-radius: 0 4px 4px 0;
    padding: 20px 24px;
    margin-top: 40px;
    display: flex; gap: 16px; align-items: flex-start;
  }
  .prescrizione-alert .icon { font-size: 24px; flex-shrink: 0; }
  .prescrizione-alert h4 { font-size: 15px; font-weight: 700; color: var(--danger); margin-bottom: 4px; }
  .prescrizione-alert p { font-size: 14px; color: #721c24; line-height: 1.6; }

  /* ── CTA FORTE ── */
  .cta-section {
    background: linear-gradient(135deg, #1a4a8a 0%, var(--navy) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 24px;
  }
  .cta-section h2 {
    color: var(--white);
    font-size: clamp(26px, 3.5vw, 38px);
    margin-bottom: 12px;
  }
  .cta-section p { color: #8aa5c4; font-size: 17px; max-width: 600px; margin: 0 auto 40px; }
  .cta-features {
    display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
    margin-bottom: 48px;
  }
  .cta-feature {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: #b8cce4;
  }
  .cta-feature svg { color: var(--accent-light); }
  .cta-form {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 6px;
    padding: 36px 40px;
    max-width: 560px; margin: 0 auto;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
  .form-row.single { grid-template-columns: 1fr; }
  input, textarea, select {
    width: 100%;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 4px;
    padding: 12px 16px;
    color: var(--white);
    font-size: 14px;
    font-family: 'Source Sans 3', sans-serif;
    outline: none;
    transition: border .2s;
  }
  input::placeholder, textarea::placeholder { color: #6b8aaa; }
  input:focus, textarea:focus { border-color: var(--accent-light); }
  textarea { resize: vertical; min-height: 90px; }
  .btn-cta-submit {
    width: 100%;
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: 4px;
    font-size: 16px; font-weight: 700;
    cursor: pointer;
    font-family: 'Source Sans 3', sans-serif;
    letter-spacing: 0.01em;
    transition: background .2s;
    margin-top: 6px;
  }
  .btn-cta-submit:hover { background: var(--accent-light); }
  .form-privacy { font-size: 12px; color: #5a7a9a; margin-top: 12px; }
  .cta-divider {
    margin: 32px 0 24px;
    display: flex; align-items: center; gap: 16px;
    color: #4a6a8a; font-size: 13px;
  }
  .cta-divider::before, .cta-divider::after {
    content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.1);
  }
  .cta-tel-large {
    font-family: 'Playfair Display', serif;
    font-size: 30px; color: var(--white); text-decoration: none;
    display: block; margin-bottom: 6px;
  }
  .cta-tel-note { font-size: 13px; color: #6b8aaa; }

  /* ── FAQ ── */
  .faq-section { background: var(--white); }
  .faq-list { max-width: 780px; }
  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  .faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 0;
    cursor: pointer;
    font-size: 16px; font-weight: 600; color: var(--navy);
    gap: 16px;
  }
  .faq-question:hover { color: var(--blue); }
  .faq-arrow { color: var(--accent); font-size: 20px; flex-shrink: 0; transition: transform .2s; }
  .faq-question.open .faq-arrow { transform: rotate(45deg); }
  .faq-answer {
    font-size: 15px; color: var(--text-muted); line-height: 1.75;
    padding-bottom: 20px; display: none;
  }
  .faq-answer.open { display: block; }

  /* ── APPROFONDIMENTI ── */
  .approfondimenti-section { background: var(--light); }
  .correlati-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
  }
  .correlato-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow .2s, transform .2s;
  }
  .correlato-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    transform: translateY(-3px);
  }
  .correlato-img {
    height: 140px;
    background: var(--navy-mid);
    display: flex; align-items: center; justify-content: center;
    font-size: 40px;
  }
  .correlato-body { padding: 20px; }
  .correlato-body h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
  .correlato-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
  .correlato-link {
    font-size: 13px; color: var(--accent); font-weight: 600;
    display: inline-block; margin-top: 10px;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    color: #7a9bc5;
    padding: 48px 24px 24px;
  }
  .footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
    margin-bottom: 40px;
  }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px; color: var(--white); font-weight: 700; margin-bottom: 12px;
  }
  .footer-logo span { color: var(--accent-light); }
  .footer-desc { font-size: 14px; line-height: 1.7; }
  .footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--white); margin-bottom: 14px; }
  .footer-col a { display: block; font-size: 14px; color: #7a9bc5; text-decoration: none; margin-bottom: 8px; transition: color .2s; }
  .footer-col a:hover { color: var(--accent-light); }
  .footer-bottom {
    max-width: 1100px; margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 20px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; flex-wrap: wrap; gap: 10px;
  }

  @media(max-width: 768px) {
    nav { display: none; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .valutazione-box { flex-direction: column; }
  }
