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

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

  html { scroll-behavior: smooth; }

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

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

  /* ── HEADER ── */
  header {
    background: var(--white); border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
  }
  .header-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px;
  }
  .logo {
    font-family: 'Playfair Display', serif; font-size: 24px;
    color: var(--navy); font-weight: 700; text-decoration: none;
    letter-spacing: -0.02em;
  }
  .logo span { color: var(--accent); }
  nav { display: flex; align-items: center; gap: 4px; }
  nav a {
    font-size: 14px; font-weight: 500; color: var(--navy);
    text-decoration: none; padding: 8px 14px; border-radius: 4px;
    transition: all .2s;
  }
  nav a:hover { background: var(--light); color: var(--accent); }
  .btn-nav {
    background: var(--accent) !important; color: var(--white) !important;
    padding: 10px 22px !important; font-weight: 600 !important;
    border-radius: 4px; margin-left: 8px;
  }
  .btn-nav:hover { background: var(--accent-light) !important; }

  /* ── HERO ── */
  .hero {
    background: var(--navy);
    min-height: 88vh;
    display: grid; grid-template-columns: 1fr 480px;
    position: relative; overflow: hidden;
  }
  @media(max-width: 1024px) { .hero { grid-template-columns: 1fr; min-height: auto; } }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 70% 60% at 30% 50%, rgba(26,74,138,.6) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 80% 20%, rgba(200,144,42,.08) 0%, transparent 60%),
      linear-gradient(160deg, #091628 0%, #0d1f3c 40%, #162d52 100%);
  }
  .hero-texture {
    position: absolute; inset: 0; opacity: 1;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  /* Diagonal divider */
  .hero-left {
    position: relative; z-index: 2;
    padding: 80px 64px 80px 48px;
    display: flex; flex-direction: column; justify-content: center;
  }
  @media(max-width:1024px){ .hero-left { padding: 60px 24px 40px; } }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .14em; color: var(--accent-light);
    margin-bottom: 24px;
  }
  .hero-eyebrow::before {
    content: ''; width: 32px; height: 2px; background: var(--accent);
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 700; line-height: 1.15;
    color: var(--white); margin-bottom: 24px;
    letter-spacing: -0.02em;
  }
  .hero h1 em {
    font-style: italic; color: var(--accent-light);
  }
  .hero-desc {
    font-size: 18px; color: #a0b8d4; line-height: 1.75;
    max-width: 560px; margin-bottom: 40px;
  }

  .hero-pillars {
    display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px;
  }
  .hero-pill {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
    color: #c5d8ee; font-size: 13px; font-weight: 500;
    padding: 8px 16px; border-radius: 24px;
  }
  .hero-pill .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

  .hero-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
  .btn-hero {
    background: var(--accent); color: var(--white);
    padding: 16px 36px; border-radius: 4px;
    font-size: 16px; font-weight: 700; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all .2s; letter-spacing: .01em;
    box-shadow: 0 4px 20px rgba(200,144,42,.3);
  }
  .btn-hero:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: 0 6px 28px rgba(200,144,42,.4); }
  .hero-tel { color: #8aa5c4; font-size: 14px; }
  .hero-tel a { color: var(--white); font-size: 18px; font-weight: 700; text-decoration: none; display: block; }
  .hero-tel a:hover { color: var(--accent-light); }

  /* Hero form panel */
  .hero-right {
    position: relative; z-index: 2;
    background: rgba(255,255,255,.04);
    border-left: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    padding: 48px 40px;
    display: flex; flex-direction: column; justify-content: center;
  }
  @media(max-width:1024px){
    .hero-right {
      border-left: none; border-top: 1px solid rgba(255,255,255,.08);
      padding: 40px 24px;
    }
  }
  .form-panel-label {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .12em; color: var(--accent-light); margin-bottom: 8px;
  }
  .form-panel-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px; color: var(--white); margin-bottom: 24px; line-height: 1.35;
  }
  .form-field { margin-bottom: 14px; }
  .form-field label {
    display: block; font-size: 12px; font-weight: 600;
    color: #7a9bc5; text-transform: uppercase; letter-spacing: .08em;
    margin-bottom: 6px;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
    border-radius: 4px; padding: 12px 16px; color: var(--white);
    font-size: 14px; font-family: 'Source Sans 3', sans-serif;
    outline: none; transition: border .2s;
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder { color: #4a6a8a; }
  .form-field select { color: #4a6a8a; }
  .form-field select option { color: var(--text); background: var(--white); }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus { border-color: var(--accent-light); }
  .form-field textarea { resize: vertical; min-height: 80px; }
  .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .btn-form {
    width: 100%; background: var(--accent); color: var(--white); border: none;
    padding: 15px; border-radius: 4px; font-size: 15px; font-weight: 700;
    cursor: pointer; font-family: 'Source Sans 3', sans-serif; margin-top: 4px;
    transition: background .2s; letter-spacing: .01em;
  }
  .btn-form:hover { background: var(--accent-light); }
  .form-nota { font-size: 12px; color: #4a6a8a; margin-top: 10px; text-align: center; }

  /* ── NUMERI ── */
  .numeri-section {
    background: var(--accent);
    padding: 0;
  }
  .numeri-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  @media(max-width:768px){ .numeri-inner { grid-template-columns: 1fr 1fr; } }
  .numero-item {
    padding: 40px 32px; text-align: center;
    border-right: 1px solid rgba(255,255,255,.2);
    position: relative;
  }
  .numero-item:last-child { border-right: none; }
  .numero-val {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 52px); font-weight: 700;
    color: var(--white); line-height: 1; margin-bottom: 6px;
    display: flex; align-items: baseline; justify-content: center; gap: 4px;
  }
  .numero-val .suffix { font-size: 24px; }
  .numero-label { font-size: 14px; color: rgba(255,255,255,.8); font-weight: 500; }
  .numero-sub { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 4px; }

  /* ── SERVIZI ── */
  .servizi-section { background: var(--light); padding: 88px 24px; }
  .container { max-width: 1200px; 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(26px, 3vw, 38px); font-weight: 700; color: var(--navy); margin-bottom: 16px; line-height: 1.25; }
  .section-lead { font-size: 17px; color: var(--text-muted); max-width: 640px; margin-bottom: 56px; line-height: 1.7; }

  .servizi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  @media(max-width:900px){ .servizi-grid { grid-template-columns: 1fr; } }

  .servizio-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 8px; overflow: hidden;
    text-decoration: none; color: inherit;
    transition: all .3s; position: relative;
    display: flex; flex-direction: column;
  }
  .servizio-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.12); transform: translateY(-4px); }
  .servizio-card:hover .serv-arrow { transform: translateX(4px); }

  .serv-header {
    padding: 40px 32px 28px;
    background: var(--navy);
    position: relative; overflow: hidden;
  }
  .serv-header::after {
    content: '';
    position: absolute; bottom: -1px; left: 0; right: 0;
    height: 32px; background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
  }
  .serv-header.fisici { background: linear-gradient(135deg, #0e3460, #1a4a8a); }
  .serv-header.mortale { background: linear-gradient(135deg, #1a1a2e, #0d1f3c); }
  .serv-header.stradale { background: linear-gradient(135deg, #0d2a4a, #1e5090); }
  .serv-icon { font-size: 44px; margin-bottom: 16px; display: block; }
  .serv-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px; color: var(--white); font-weight: 700;
    line-height: 1.3; position: relative; z-index: 1;
  }
  .serv-body { padding: 28px 32px 32px; flex: 1; display: flex; flex-direction: column; }
  .serv-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; flex: 1; }
  .serv-voci { list-style: none; margin-bottom: 28px; }
  .serv-voci li {
    display: flex; gap: 10px; font-size: 14px; color: var(--text-muted);
    padding: 8px 0; border-bottom: 1px solid var(--border);
    align-items: flex-start;
  }
  .serv-voci li:last-child { border-bottom: none; }
  .serv-voci li::before { content: '→'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
  .serv-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 700; color: var(--navy);
    padding: 12px 0; border-top: 2px solid var(--border);
    transition: color .2s;
  }
  .serv-arrow { transition: transform .2s; }
  .servizio-card:hover .serv-link { color: var(--accent); }

  /* ── COME FUNZIONA ── */
  .come-section { padding: 88px 24px; background: var(--white); }
  .come-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  @media(max-width:900px){ .come-grid { grid-template-columns: 1fr; gap: 48px; } }

  .come-steps { }
  .come-step {
    display: flex; gap: 24px; margin-bottom: 40px;
    position: relative;
  }
  .come-step:not(:last-child)::after {
    content: '';
    position: absolute; left: 20px; top: 48px;
    width: 2px; height: calc(100% + 8px);
    background: linear-gradient(to bottom, var(--accent), transparent);
  }
  .come-num {
    width: 42px; height: 42px; flex-shrink: 0;
    border-radius: 50%; background: var(--accent);
    color: var(--white); font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(200,144,42,.3);
    position: relative; z-index: 1;
  }
  .come-step-body { padding-top: 8px; }
  .come-step-body h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
  .come-step-body p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

  .come-visual {
    background: var(--navy); border-radius: 12px;
    padding: 48px 40px; color: var(--white); position: relative; overflow: hidden;
  }
  .come-visual::before {
    content: '';
    position: absolute; top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(200,144,42,.15) 0%, transparent 70%);
  }
  .come-visual-title {
    font-family: 'Playfair Display', serif;
    font-size: 13px; text-transform: uppercase; letter-spacing: .12em;
    color: var(--accent-light); margin-bottom: 32px;
  }
  .garanzia-item {
    display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start;
  }
  .garanzia-item:last-child { margin-bottom: 0; }
  .gar-icon {
    width: 48px; height: 48px; flex-shrink: 0; border-radius: 10px;
    background: rgba(255,255,255,.08); display: flex;
    align-items: center; justify-content: center; font-size: 22px;
  }
  .garanzia-item h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
  .garanzia-item p { font-size: 14px; color: #8aa5c4; line-height: 1.6; }
  .come-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 28px 0; }
  .come-cta {
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  }
  .btn-come {
    background: var(--accent); color: var(--white);
    padding: 13px 28px; border-radius: 4px; font-size: 14px;
    font-weight: 700; text-decoration: none; transition: background .2s;
  }
  .btn-come:hover { background: var(--accent-light); }
  .come-tel { font-size: 14px; color: var(--accent-light); font-weight: 600; text-decoration: none; }

  /* ── PERCHÉ NOI ── */
  .perche-section { padding: 88px 24px; background: var(--light); }
  .perche-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  @media(max-width:900px){ .perche-grid { grid-template-columns: 1fr 1fr; } }
  @media(max-width:540px){ .perche-grid { grid-template-columns: 1fr; } }

  .perche-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 8px; padding: 32px 24px;
    text-align: center; transition: all .3s;
    position: relative; overflow: hidden;
  }
  .perche-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--accent);
    transform: scaleX(0); transition: transform .3s; transform-origin: left;
  }
  .perche-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); transform: translateY(-2px); }
  .perche-card:hover::before { transform: scaleX(1); }
  .perche-icon { font-size: 40px; margin-bottom: 16px; display: block; }
  .perche-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
  .perche-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

  /* ── TESTIMONIANZE ── */
  .testi-section { padding: 88px 24px; background: var(--navy); }
  .testi-section h2 { color: var(--white); }
  .testi-section .section-label { color: var(--accent-light); }
  .testi-section .section-lead { color: #8aa5c4; }

  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
  @media(max-width:900px){ .testi-grid { grid-template-columns: 1fr; } }

  .testi-card {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px; padding: 32px 28px;
    transition: background .2s;
  }
  .testi-card:hover { background: rgba(255,255,255,.09); }
  .testi-stars { color: var(--accent-light); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
  .testi-text {
    font-size: 16px; color: #c5d8ee; line-height: 1.75;
    font-style: italic; margin-bottom: 24px;
    border-left: 3px solid var(--accent); padding-left: 16px;
  }
  .testi-footer { display: flex; align-items: center; gap: 14px; }
  .testi-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(200,144,42,.2); border: 2px solid var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
  }
  .testi-name { font-size: 15px; font-weight: 700; color: var(--white); }
  .testi-meta { font-size: 12px; color: #6a8aaa; margin-top: 2px; }
  .testi-importo { font-size: 12px; color: var(--accent-light); font-weight: 700; margin-top: 3px; }

  .rating-box {
    background: rgba(200,144,42,.12); border: 1px solid rgba(200,144,42,.25);
    border-radius: 8px; padding: 32px 40px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
  }
  .rating-left { display: flex; align-items: center; gap: 24px; }
  .rating-num {
    font-family: 'Playfair Display', serif;
    font-size: 64px; font-weight: 700; color: var(--accent-light); line-height: 1;
  }
  .rating-details .stars { color: var(--accent-light); font-size: 22px; letter-spacing: 3px; }
  .rating-details .label { font-size: 14px; color: #8aa5c4; margin-top: 6px; }
  .rating-right { font-size: 15px; color: #8aa5c4; max-width: 360px; line-height: 1.7; }

  /* ── CTA FORM ── */
  .cta-section { padding: 88px 24px; background: linear-gradient(135deg, #162d52 0%, var(--navy) 100%); }
  .cta-inner { display: grid; grid-template-columns: 1fr 480px; gap: 80px; align-items: center; }
  @media(max-width:1024px){ .cta-inner { grid-template-columns: 1fr; gap: 48px; } }

  .cta-copy h2 { color: var(--white); margin-bottom: 16px; }
  .cta-copy .section-label { color: var(--accent-light); }
  .cta-copy p { font-size: 17px; color: #8aa5c4; line-height: 1.75; margin-bottom: 32px; }
  .cta-checklist { list-style: none; }
  .cta-checklist li {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 15px; color: #b8cce4; margin-bottom: 14px;
  }
  .cta-checklist li::before {
    content: '✓'; color: var(--accent-light); font-weight: 700;
    flex-shrink: 0; margin-top: 2px;
  }
  .cta-form-box {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px; padding: 40px 36px;
  }
  .cta-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px; color: var(--white); margin-bottom: 24px;
  }
  .cta-f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
  .cta-f-single { margin-bottom: 12px; }
  .cta-f-row input, .cta-f-single input,
  .cta-f-single select, .cta-f-single textarea {
    width: 100%; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.15);
    border-radius: 4px; padding: 13px 16px; color: var(--white);
    font-size: 14px; font-family: 'Source Sans 3', sans-serif;
    outline: none; transition: border .2s;
  }
  .cta-f-row input::placeholder, .cta-f-single input::placeholder,
  .cta-f-single textarea::placeholder { color: #4a6a8a; }
  .cta-f-single select { color: #4a6a8a; }
  .cta-f-single select option { color: var(--text); background: white; }
  .cta-f-row input:focus, .cta-f-single input:focus,
  .cta-f-single select:focus, .cta-f-single textarea:focus { border-color: var(--accent-light); }
  .cta-f-single textarea { resize: vertical; min-height: 80px; }
  .btn-cta {
    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;
    transition: background .2s; margin-top: 4px;
  }
  .btn-cta:hover { background: var(--accent-light); }
  .cta-nota { font-size: 12px; color: #4a6a8a; margin-top: 10px; text-align: center; }
  .cta-divider {
    margin: 28px 0 20px; display: flex; align-items: center; gap: 14px;
    color: #3a5a7a; font-size: 13px;
  }
  .cta-divider::before, .cta-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.1); }
  .cta-tel { text-align: center; }
  .cta-tel a {
    font-family: 'Playfair Display', serif;
    font-size: 28px; color: var(--white); text-decoration: none;
    display: block; transition: color .2s;
  }
  .cta-tel a:hover { color: var(--accent-light); }
  .cta-tel span { font-size: 13px; color: #5a7a9a; }

  /* ── FAQ ── */
  .faq-section { padding: 88px 24px; background: var(--white); }
  .faq-inner { display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start; }
  @media(max-width:900px){ .faq-inner { grid-template-columns: 1fr; gap: 40px; } }
  .faq-intro p { font-size: 16px; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
  .btn-faq {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--navy); color: var(--white);
    padding: 13px 24px; border-radius: 4px;
    font-size: 14px; font-weight: 600; text-decoration: none; transition: background .2s;
  }
  .btn-faq:hover { background: var(--blue); }
  .faq-list { }
  .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: 22px; 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; }

  /* ── BLOG ── */
  .blog-section { padding: 88px 24px; background: var(--light); }
  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  @media(max-width:900px){ .blog-grid { grid-template-columns: 1fr; } }
  .blog-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 8px; overflow: hidden; text-decoration: none;
    transition: all .3s; display: block;
  }
  .blog-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,.1); transform: translateY(-3px); }
  .blog-img {
    height: 180px; background: var(--navy-mid);
    display: flex; align-items: center; justify-content: center;
    font-size: 52px; position: relative; overflow: hidden;
  }
  .blog-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(13,31,60,.6));
  }
  .blog-cat {
    position: absolute; bottom: 12px; left: 16px; z-index: 1;
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; color: var(--white);
    background: var(--accent); padding: 3px 10px; border-radius: 20px;
  }
  .blog-body { padding: 24px; }
  .blog-date { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
  .blog-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px; color: var(--navy); font-weight: 700;
    line-height: 1.4; margin-bottom: 10px;
  }
  .blog-body p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
  .blog-link { font-size: 13px; font-weight: 700; color: var(--accent); }

  /* ── SEDI ── */
  .sedi-section { padding: 88px 24px; background: var(--navy); color: var(--white); }
  .sedi-section h2 { color: var(--white); }
  .sedi-section .section-label { color: var(--accent-light); }
  .sedi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
  @media(max-width:700px){ .sedi-grid { grid-template-columns: 1fr; } }
  .sede-card {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px; padding: 36px 32px; transition: background .2s;
  }
  .sede-card:hover { background: rgba(255,255,255,.09); }
  .sede-city {
    font-family: 'Playfair Display', serif;
    font-size: 28px; color: var(--accent-light); margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
  }
  .sede-row {
    display: flex; gap: 12px; margin-bottom: 14px;
    font-size: 15px; color: #b8cce4; align-items: flex-start;
  }
  .sede-row a { color: #b8cce4; text-decoration: none; }
  .sede-row a:hover { color: var(--accent-light); }
  .sede-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
  .sede-orari {
    margin-top: 24px; padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 14px; color: #6a8aaa;
  }
  .sede-orari strong { color: #b8cce4; }

  /* ── FOOTER ── */
  footer { background: #091628; color: #5a7a9a; padding: 56px 24px 28px; }
  .footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 48px;
    margin-bottom: 48px;
  }
  @media(max-width:900px){ .footer-inner { grid-template-columns: 1fr 1fr; } }
  .footer-brand .logo { font-size: 26px; display: block; margin-bottom: 14px; }
  .footer-desc { font-size: 14px; line-height: 1.75; margin-bottom: 20px; }
  .footer-social a {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; color: #5a7a9a; text-decoration: none; transition: color .2s;
  }
  .footer-social a:hover { color: var(--accent-light); }
  .footer-col h4 {
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .1em; color: #8aa5c4; margin-bottom: 16px;
  }
  .footer-col a { display: block; font-size: 14px; color: #5a7a9a; text-decoration: none; margin-bottom: 10px; transition: color .2s; }
  .footer-col a:hover { color: var(--accent-light); }
  .footer-bottom {
    max-width: 1200px; margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; flex-wrap: wrap; gap: 12px;
  }
  .footer-legal a { color: #5a7a9a; text-decoration: none; margin-left: 20px; transition: color .2s; }
  .footer-legal a:hover { color: var(--accent-light); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-left > * {
    animation: fadeUp .7s ease both;
  }
  .hero-eyebrow { animation-delay: .1s; }
  .hero h1 { animation-delay: .2s; }
  .hero-desc { animation-delay: .3s; }
  .hero-pillars { animation-delay: .4s; }
  .hero-cta-row { animation-delay: .5s; }
  .hero-right { animation: fadeUp .8s ease .3s both; }

  @media(max-width:768px) {
    nav { display: none; }
    .come-grid, .cta-inner { grid-template-columns: 1fr; }
    .numeri-inner { grid-template-columns: 1fr 1fr; }
  }
