  :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;
    --teal: #0e7490;
    --teal-soft: #e8f7fa;
  }

  * { 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%, #0e3460 60%, #1a4a8a 100%);
    color: var(--white);
    padding: 72px 24px 80px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 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");
  }
  .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;
  }

  /* ── SECTION BASE ── */
  section { padding: 72px 24px; }
  .container { max-width: 1100px; margin: 0 auto; }
  .container-narrow { max-width: 860px; 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: 720px;
    margin-bottom: 48px; line-height: 1.7;
  }

  /* ── NORMATIVA ── */
  .normativa-section { background: var(--light); }
  .norm-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
  .norm-card {
    background: var(--white); border: 1px solid var(--border);
    border-top: 3px solid var(--blue);
    padding: 24px 20px; border-radius: 4px;
  }
  .norm-card .norm-anno {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; color: var(--accent); margin-bottom: 8px;
  }
  .norm-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .norm-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
  .norm-nota {
    margin-top: 32px; background: var(--teal-soft);
    border-left: 4px solid var(--teal);
    padding: 18px 22px; border-radius: 0 4px 4px 0;
    font-size: 14px; color: #0e4a5a;
  }
  .norm-nota strong { color: var(--teal); }

  /* ── TIPOLOGIE ── */
  .tipologie-section { background: var(--white); }
  .micro-macro-bar {
    display: flex; gap: 0;
    background: var(--light); border: 1px solid var(--border);
    border-radius: 6px; padding: 4px;
    margin-bottom: 40px; width: fit-content;
  }
  .mm-tab {
    border: 0; background: transparent;
    padding: 10px 28px; border-radius: 4px;
    font-size: 14px; font-weight: 600; cursor: pointer;
    color: var(--text-muted); transition: all .2s;
  }
  .mm-tab.active { background: var(--navy); color: var(--white); }
  .mm-tab:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }

  .danno-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
  @media(max-width: 700px) { .danno-type-grid { grid-template-columns: 1fr; } }

  .danno-col-header {
    padding: 20px 24px;
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 700;
  }
  .col-pat { background: #f0f4fa; color: var(--navy); border-right: 1px solid var(--border); }
  .col-nonpat { background: #fdf4e7; color: var(--navy); }
  .danno-type-item {
    padding: 18px 24px; border-top: 1px solid var(--border);
    display: flex; gap: 14px; align-items: flex-start;
    opacity: 1; transform: translateY(0);
    transition: opacity .18s ease, transform .18s ease, background-color .2s ease;
  }
  .danno-type-item.is-exiting {
    opacity: 0;
    transform: translateY(8px);
  }
  .danno-type-item.is-hidden { display: none; }
  .col-pat-item { border-right: 1px solid var(--border); background: var(--white); }
  .col-nonpat-item { background: var(--white); }
  .danno-type-item:hover { background: var(--light); }
  .dt-icon {
    width: 34px; height: 34px; flex-shrink: 0;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 15px; margin-top: 2px;
  }
  .dt-icon-blue { background: #e8f0fb; }
  .dt-icon-gold { background: #fff3dc; }
  .danno-type-item h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .danno-type-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
  .dt-tag {
    display: inline-block; font-size: 11px; font-weight: 700;
    padding: 2px 8px; border-radius: 20px; margin-top: 6px;
    text-transform: uppercase; letter-spacing: .06em;
  }
  .tag-micro { background: #dcfce7; color: #166534; }
  .tag-macro { background: #fee2e2; color: #991b1b; }
  .tag-entrambi { background: #e8f0fb; color: var(--blue); }

  /* Personalizzazione box */
  .personaliz-box {
    margin-top: 32px;
    background: linear-gradient(135deg, #fdf4e7, #fff9f0);
    border: 1px solid #f0d090;
    border-radius: 6px; padding: 28px 32px;
    display: flex; gap: 20px; align-items: flex-start;
  }
  .personaliz-box .icon { font-size: 32px; flex-shrink: 0; }
  .personaliz-box h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .personaliz-box p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

  /* ── MEDICO LEGALE ── */
  .medicolegale-section { background: var(--light); }
  .ml-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  @media(max-width: 768px) { .ml-split { grid-template-columns: 1fr; } }
  .ml-visual {
    background: var(--navy);
    border-radius: 6px; padding: 40px 32px;
    color: var(--white);
  }
  .ml-visual h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px; margin-bottom: 24px; color: var(--accent-light);
  }
  .ml-row {
    display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start;
  }
  .ml-row:last-child { margin-bottom: 0; }
  .ml-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
  .ml-row p { font-size: 14px; color: #b8cce4; line-height: 1.65; }
  .ml-row strong { color: var(--white); }
  .ml-text h3 { font-size: 20px; color: var(--navy); margin-bottom: 16px; font-family: 'Playfair Display', serif; }
  .ml-text p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
  .ml-highlight {
    background: var(--success-soft); border-left: 4px solid var(--success);
    padding: 16px 20px; border-radius: 0 4px 4px 0; font-size: 14px; color: #0d3d26;
  }
  .ml-highlight strong { color: var(--success); }

  /* ── CRITERI CALCOLO ── */
  .calcolo-section { background: var(--white); }
  .calcolo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
  .calcolo-card {
    border: 1px solid var(--border); border-radius: 6px;
    padding: 28px 24px; position: relative; overflow: hidden;
  }
  .calcolo-card::before {
    content: attr(data-num);
    position: absolute; top: -10px; right: 16px;
    font-family: 'Playfair Display', serif;
    font-size: 80px; font-weight: 700;
    color: var(--light); line-height: 1;
    pointer-events: none;
  }
  .calcolo-card h3 { position: relative; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; z-index: 99999; }
  .calcolo-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
  .formula-box {
    margin-top: 32px; background: var(--navy);
    border-radius: 6px; padding: 28px 32px; color: var(--white);
    display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
  }
  .formula-box .formula-label { font-size: 12px; color: #7a9bc5; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
  .formula-box .formula-val { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--white); }
  .formula-op { font-size: 28px; color: var(--accent-light); font-weight: 300; }
  .formula-result { background: var(--accent); padding: 16px 24px; border-radius: 4px; }
  .formula-result .formula-label { color: rgba(255,255,255,.7); }
  .formula-result .formula-val { 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;
    padding: 2px 10px; border-radius: 20px; font-weight: 700;
    margin-top: 8px; text-transform: uppercase; letter-spacing: .06em;
  }
  .badge-urgente { background: #fee2e2; color: #991b1b; }
  .badge-importante { background: #fff3cd; color: #7a5c00; }
  .badge-chiave { background: #dcfce7; color: #166534; }

  .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; }

  /* ── 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(260px, 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;
  }
  .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: 8px; line-height: 1.5; }
  .caso-card p { font-size: 13px; color: #8aa5c4; line-height: 1.65; margin-bottom: 14px; }
  .caso-inv {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: #6a8aaa; margin-bottom: 12px;
  }
  .caso-inv strong { color: #c5d8ee; font-size: 13px; }
  .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; }

  /* ── STRUMENTI ── */
  .strumenti-section { background: var(--light); }
  .strumenti-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
  .strumento-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 6px; padding: 28px 24px;
    display: flex; flex-direction: column; gap: 12px;
    transition: box-shadow .2s, transform .2s;
  }
  .strumento-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); transform: translateY(-2px); }
  .strumento-icon { font-size: 32px; }
  .strumento-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); }
  .strumento-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; flex: 1; }
  .strumento-link { font-size: 13px; font-weight: 600; color: var(--accent); text-decoration: none; }
  .strumento-link:hover { color: var(--navy); }

  /* ── CTA ── */
  .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-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; }
  select { color: #6b8aaa; }
  select option { color: var(--text); background: var(--white); }
  input:focus, textarea:focus, select: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;
    transition: color .2s;
  }
  .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; }
    .formula-box { flex-direction: column; }
    .ml-split { gap: 32px; }
  }

  /* ── CTA INLINE (banner leggero) ── */
  .inline-cta {
    margin-top: 32px;
    background: var(--light);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 0 6px 6px 0;
    padding: 20px 28px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
  }
  .inline-cta-text { display: flex; flex-direction: column; gap: 4px; }
  .inline-cta-text strong { font-size: 15px; color: var(--navy); }
  .inline-cta-text span { font-size: 13px; color: var(--text-muted); }
  .btn-inline-cta {
    background: var(--accent); color: var(--white);
    padding: 11px 24px; border-radius: 4px;
    font-size: 14px; font-weight: 600; text-decoration: none;
    white-space: nowrap; transition: background .2s; flex-shrink: 0;
  }
  .btn-inline-cta:hover { background: var(--accent-light); }

  /* ── MINI CTA BOX (più prominente) ── */
  .mini-cta-box {
    background: var(--navy);
    border-radius: 6px;
    padding: 24px 32px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
  }
  .mini-cta-left { display: flex; align-items: center; gap: 16px; }
  .mini-cta-icon { font-size: 28px; flex-shrink: 0; }
  .mini-cta-title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
  .mini-cta-sub { font-size: 13px; color: #8aa5c4; }
  .mini-cta-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
  .mini-cta-tel {
    font-size: 14px; font-weight: 600;
    color: var(--accent-light); text-decoration: none;
    white-space: nowrap;
  }
  .mini-cta-tel:hover { color: var(--white); }

  /* ── VALUTAZIONE BOX (nelle sezioni scure) ── */
  .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; margin-top: 8px;
  }
  .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); }
