
/* ===== index.html ===== */
:root {
      --bg: #f8fafc;
      --surface: #ffffff;
      --surface-2: #f1f5f9;
      --text: #0f172a;
      --muted: #64748b;
      --border: #e2e8f0;
      --dark: #0f172a;
      --dark-2: #111827;
      --accent: #fbbf24;
      --accent-dark: #d97706;
      --radius-xl: 28px;
      --radius-lg: 20px;
      --shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
      --container: 1200px;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.55;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    .container {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }
    .section { margin-top: 36px; }
    .card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 16px;
      border-radius: 999px;
      background: rgba(255,255,255,0.13);
      border: 1px solid rgba(255,255,255,0.18);
      color: #fde68a;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.01em;
    }
    .badge::before {
      content: '';
      display: inline-block;
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #fbbf24;
    }
    .section-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--muted);
      font-weight: 700;
      margin-bottom: 10px;
    }
    .section-title {
      font-size: clamp(26px, 3vw, 40px);
      line-height: 1.1;
      margin: 0;
      letter-spacing: -0.025em;
    }
    .section-subtitle {
      margin-top: 10px;
      color: var(--muted);
      max-width: 680px;
      font-size: 16px;
    }

    /* ── HEADER ── */
    header.site-header { padding: 20px 0 6px; }
    .header-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .brand-wrap { display: flex; align-items: center; gap: 12px; }
    .brand-icon {
      width: 42px; height: 42px;
      border-radius: 12px;
      background: linear-gradient(135deg, #1e293b, #0f172a);
      display: flex; align-items: center; justify-content: center;
    }
    .brand-icon svg { width: 22px; height: 22px; }
    .brand-title {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.04em;
    }
    .brand-title span { color: var(--accent-dark); }
    .brand-subtitle { font-size: 13px; color: var(--muted); margin-top: 1px; }
    .header-nav {
      display: flex;
      gap: 24px;
      font-size: 14px;
      color: var(--muted);
      font-weight: 500;
    }
    .header-nav a:hover { color: var(--text); }

    /* ── HERO ── */
    .hero {
      margin-top: 16px;
      border-radius: 36px;
      overflow: hidden;
      background: linear-gradient(140deg, #020617 0%, #0f172a 50%, #1a2744 100%);
      color: white;
      position: relative;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 60% at 80% 50%, rgba(251,191,36,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(99,102,241,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-inner {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 24px;
      padding: 52px 48px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .hero h1 {
      font-size: clamp(36px, 4.5vw, 60px);
      line-height: 1.04;
      margin: 16px 0 14px;
      letter-spacing: -0.04em;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--accent);
    }
    .hero p {
      margin: 0;
      max-width: 600px;
      color: #94a3b8;
      font-size: 17px;
      line-height: 1.6;
    }
    .hero-form-wrap {
      margin-top: 28px;
      background: white;
      border-radius: 26px;
      padding: 10px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.3);
      max-width: 720px;
    }
    .hero-form {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .hero-form input {
      flex: 1 1 320px;
      height: 56px;
      border: 1px solid #e2e8f0;
      border-radius: 18px;
      padding: 0 18px;
      font-size: 16px;
      outline: none;
      color: var(--text);
      background: #f8fafc;
      transition: border-color .15s;
    }
    .hero-form input:focus { border-color: #fbbf24; background: #fff; }
    .hero-form button {
      height: 56px;
      border: 0;
      border-radius: 18px;
      background: var(--accent);
      color: #111827;
      font-weight: 800;
      font-size: 15px;
      padding: 0 26px;
      cursor: pointer;
      white-space: nowrap;
      transition: background .15s, transform .1s;
    }
    .hero-form button:hover { background: #f59e0b; }
    .hero-form button:active { transform: scale(0.97); }
    .quick-searches {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }
    .quick-chip {
      border-radius: 999px;
      padding: 9px 15px;
      font-size: 13px;
      font-weight: 500;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      color: #cbd5e1;
      cursor: pointer;
      transition: background .15s, color .15s;
    }
    .quick-chip:hover { background: rgba(255,255,255,0.16); color: #fff; }

    /* Hero image panel */
    .hero-image-panel {
      border-radius: 26px;
      overflow: hidden;
      position: relative;
      min-height: 380px;
      background: #1e293b;
    }
    .hero-image-panel img {
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0.85;
      min-height: 380px;
    }
    .hero-image-overlay {
      position: absolute;
      bottom: 20px; left: 20px; right: 20px;
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 18px;
      padding: 16px 20px;
    }
    .hero-image-overlay strong {
      display: block;
      font-size: 17px;
      color: #fff;
      margin-bottom: 4px;
    }
    .hero-image-overlay span { color: #cbd5e1; font-size: 13px; }

    /* ── STATS BAR ── */
    .stats-bar {
      margin-top: 18px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 20px 32px;
      display: flex;
      gap: 0;
      box-shadow: var(--shadow);
    }
    .stat-item {
      flex: 1;
      text-align: center;
      padding: 0 16px;
      border-right: 1px solid var(--border);
    }
    .stat-item:last-child { border-right: none; }
    .stat-number {
      font-size: 28px;
      font-weight: 800;
      letter-spacing: -0.04em;
      color: var(--dark);
    }
    .stat-label { font-size: 13px; color: var(--muted); margin-top: 2px; }

    /* ── CATEGORIES ROW ── */
    .categories-row {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 12px;
    }
    .category-pill {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 18px;
      text-align: center;
      padding: 16px 10px 14px;
      font-weight: 700;
      font-size: 14px;
      box-shadow: var(--shadow);
      cursor: pointer;
      transition: transform .15s, box-shadow .15s, border-color .15s;
    }
    .category-pill:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 36px rgba(15,23,42,0.1);
      border-color: #fbbf24;
    }
    .category-pill .cat-icon {
      font-size: 26px;
      margin-bottom: 8px;
      display: block;
    }

    /* ── OFFERS GRID ── */
    .offers-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .offer-card {
      padding: 0;
      overflow: hidden;
    }
    .offer-card-image {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
    }
    .offer-card-body { padding: 22px 22px 24px; }
    .mini-tag {
      display: inline-flex;
      align-items: center;
      padding: 6px 12px;
      border-radius: 999px;
      background: #fef3c7;
      color: #92400e;
      font-size: 12px;
      font-weight: 700;
    }
    .offer-card h3 {
      margin: 12px 0 8px;
      font-size: 20px;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }
    .offer-card p {
      color: var(--muted);
      font-size: 14px;
      margin: 0;
      line-height: 1.6;
    }

    /* ── CATEGORY CARDS ── */
    .category-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }
    .category-card {
      padding: 0;
      overflow: hidden;
      transition: transform .2s, box-shadow .2s;
    }
    .category-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 50px rgba(15,23,42,0.1);
    }
    .category-card-image {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
    }
    .category-card-body { padding: 18px 20px 20px; }
    .category-card h3 {
      margin: 0 0 8px;
      font-size: 19px;
      letter-spacing: -0.02em;
    }
    .category-card p {
      color: var(--muted);
      font-size: 14px;
      margin: 0;
      line-height: 1.6;
    }

    /* ── BANNER STRIP ── */
    .banner-strip {
      margin-top: 36px;
      border-radius: 28px;
      overflow: hidden;
      position: relative;
      background: linear-gradient(135deg, #1e293b, #0f172a);
      min-height: 220px;
      display: flex;
      align-items: center;
    }
    .banner-strip img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
    }
    .banner-strip-content {
      position: relative;
      z-index: 1;
      padding: 40px 48px;
      color: white;
      max-width: 600px;
    }
    .banner-strip-content h2 {
      font-size: clamp(26px, 3vw, 38px);
      margin: 0 0 10px;
      letter-spacing: -0.03em;
    }
    .banner-strip-content p {
      color: #94a3b8;
      font-size: 16px;
      margin: 0 0 22px;
    }
    .btn-accent {
      display: inline-flex;
      align-items: center;
      height: 50px;
      padding: 0 26px;
      border-radius: 16px;
      background: var(--accent);
      color: #111827;
      font-weight: 800;
      font-size: 15px;
      transition: background .15s;
      cursor: pointer;
      border: none;
    }
    .btn-accent:hover { background: #f59e0b; }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 20px;
      border-radius: 14px;
      font-weight: 700;
      font-size: 14px;
      transition: 0.15s ease;
      cursor: pointer;
      border: 1px solid transparent;
    }
    .btn-dark { background: var(--dark); color: white; }
    .btn-dark:hover { background: var(--dark-2); }
    .btn-light { background: white; color: var(--text); border-color: var(--border); }
    .btn-light:hover { background: #f8fafc; border-color: #cbd5e1; }
    .offer-card-body .btn,
    .category-card-body .btn { margin-top: 16px; }

    /* ── PARTNER ── */
    .sponsor-wrap {
      padding: 36px;
    }
    .sponsor-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 24px;
    }
    .sponsor-note {
      font-size: 12px;
      color: var(--muted);
      white-space: nowrap;
      background: var(--surface-2);
      border: 1px solid var(--border);
      padding: 6px 12px;
      border-radius: 999px;
    }
    .sponsor-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .sponsor-card {
      background: var(--surface-2);
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 24px;
      transition: border-color .15s, box-shadow .15s;
    }
    .sponsor-card:hover {
      border-color: #cbd5e1;
      box-shadow: 0 8px 24px rgba(15,23,42,0.07);
    }
    .sponsor-card-icon {
      width: 52px; height: 52px;
      border-radius: 16px;
      background: var(--surface);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 24px;
      margin-bottom: 16px;
    }
    .sponsor-card h3 {
      margin: 0 0 8px;
      font-size: 18px;
    }
    .sponsor-card p { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.6; }
    .sponsor-card .btn { margin-top: 18px; }

    /* ── FOOTER ── */
    footer.site-footer {
      margin: 48px 0 28px;
      border-top: 1px solid var(--border);
      padding-top: 24px;
      color: var(--muted);
      font-size: 13px;
    }
    .footer-row {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: center;
    }
    .footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
    .footer-links a:hover { color: var(--text); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .offers-grid, .category-grid, .sponsor-grid { grid-template-columns: 1fr 1fr; }
      .categories-row { grid-template-columns: repeat(3, 1fr); }
      .hero-inner { grid-template-columns: 1fr; }
      .hero-image-panel { min-height: 280px; }
    }
    @media (max-width: 700px) {
      .container { width: calc(100% - 24px); }
      .header-row, .sponsor-head, .footer-row { flex-direction: column; align-items: flex-start; }
      .header-nav { display: none; }
      .hero-inner { padding: 28px 24px; }
      .offers-grid, .category-grid, .sponsor-grid, .categories-row { grid-template-columns: 1fr; }
      .hero-form input, .hero-form button { width: 100%; flex: 1 1 auto; }
      .stats-bar { flex-direction: column; gap: 12px; }
      .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 12px; }
      .stat-item:last-child { border-bottom: none; }
      .banner-strip-content { padding: 28px 24px; }
    }


/* ===== privacy-policy.html ===== */
:root {
      --bg: #f8fafc;
      --surface: #ffffff;
      --surface-2: #f1f5f9;
      --text: #0f172a;
      --muted: #64748b;
      --border: #e2e8f0;
      --dark: #0f172a;
      --accent: #fbbf24;
      --accent-dark: #d97706;
      --radius-xl: 28px;
      --radius-lg: 20px;
      --shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
      --container: 860px;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }
    a { color: inherit; text-decoration: none; }
    .container {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    /* ── HEADER ── */
    header.site-header { padding: 20px 0 6px; }
    .header-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .brand-wrap { display: flex; align-items: center; gap: 12px; }
    .brand-icon {
      width: 42px; height: 42px;
      border-radius: 12px;
      background: linear-gradient(135deg, #1e293b, #0f172a);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .brand-icon svg { width: 22px; height: 22px; }
    .brand-title { font-size: 22px; font-weight: 800; letter-spacing: -0.04em; }
    .brand-title span { color: var(--accent-dark); }
    .brand-subtitle { font-size: 13px; color: var(--muted); margin-top: 1px; }
    .header-nav { display: flex; gap: 24px; font-size: 14px; color: var(--muted); font-weight: 500; }
    .header-nav a:hover { color: var(--text); }

    /* ── HERO MINI ── */
    .hero-mini {
      margin-top: 16px;
      border-radius: 30px;
      background: linear-gradient(140deg, #020617 0%, #0f172a 55%, #1a2744 100%);
      color: white;
      padding: 44px 48px;
      position: relative;
      overflow: hidden;
    }
    .hero-mini::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(251,191,36,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: #64748b;
      margin-bottom: 16px;
    }
    .breadcrumb a { color: #94a3b8; transition: color .15s; }
    .breadcrumb a:hover { color: #fbbf24; }
    .breadcrumb span { color: #475569; }
    .hero-mini h1 {
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.08;
      margin: 0 0 12px;
      letter-spacing: -0.04em;
    }
    .hero-mini h1 em { font-style: normal; color: var(--accent); }
    .hero-mini p { color: #94a3b8; font-size: 16px; margin: 0 0 6px; max-width: 560px; }
    .hero-mini .update-note {
      font-size: 13px;
      color: #475569;
      margin-top: 10px;
    }
    .btn-back {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      height: 46px;
      padding: 0 22px;
      border-radius: 14px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.18);
      color: #e2e8f0;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: background .15s, color .15s;
      margin-top: 24px;
    }
    .btn-back:hover { background: rgba(255,255,255,0.18); color: #fff; }
    .btn-back svg { width: 16px; height: 16px; }

    /* ── TOC ── */
    .toc-box {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 24px 28px;
      margin-bottom: 36px;
      box-shadow: var(--shadow);
    }
    .toc-box h3 {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--muted);
      font-weight: 700;
      margin: 0 0 14px;
    }
    .toc-list {
      list-style: none;
      padding: 0; margin: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px 24px;
    }
    .toc-list li a {
      font-size: 14px;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color .15s;
    }
    .toc-list li a:hover { color: var(--text); }
    .toc-list li a::before {
      content: '';
      width: 5px; height: 5px;
      border-radius: 50%;
      background: #fbbf24;
      flex-shrink: 0;
    }

    /* ── CONTENT ── */
    .content-wrap { margin-top: 32px; margin-bottom: 60px; }

    .intro-text {
      font-size: 16px;
      color: var(--muted);
      margin-bottom: 32px;
      padding-bottom: 28px;
      border-bottom: 1px solid var(--border);
      line-height: 1.7;
    }
    .intro-text strong { color: var(--text); }

    .info-section { margin-bottom: 40px; scroll-margin-top: 24px; }
    .info-section-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
    }
    .section-num {
      width: 36px; height: 36px;
      border-radius: 10px;
      background: var(--dark);
      color: var(--accent);
      display: flex; align-items: center; justify-content: center;
      font-size: 14px;
      font-weight: 800;
      flex-shrink: 0;
    }
    .info-section h2 {
      font-size: 20px;
      letter-spacing: -0.025em;
      margin: 0;
    }
    .info-section p {
      font-size: 15px;
      color: #334155;
      margin: 0 0 12px;
      line-height: 1.75;
    }
    .info-section p:last-child { margin: 0; }
    .info-section strong { color: var(--text); }

    /* Data list cards */
    .data-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 16px;
    }
    .data-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 18px 20px;
      box-shadow: var(--shadow);
    }
    .data-card .dc-icon { font-size: 22px; margin-bottom: 10px; }
    .data-card strong { display: block; font-size: 15px; margin-bottom: 6px; }
    .data-card span { font-size: 13px; color: var(--muted); line-height: 1.6; }

    /* Rights list */
    .rights-list {
      list-style: none;
      padding: 0; margin: 16px 0 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .rights-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      color: #334155;
      line-height: 1.6;
    }
    .rights-list li::before {
      content: '✓';
      width: 24px; height: 24px;
      border-radius: 50%;
      background: #dcfce7;
      color: #16a34a;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px;
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* Cookie table */
    .cookie-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 16px;
      font-size: 14px;
    }
    .cookie-table th {
      background: var(--surface-2);
      padding: 12px 16px;
      text-align: left;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--muted);
      font-weight: 700;
      border-bottom: 1px solid var(--border);
    }
    .cookie-table th:first-child { border-radius: 12px 0 0 0; }
    .cookie-table th:last-child { border-radius: 0 12px 0 0; }
    .cookie-table td {
      padding: 13px 16px;
      border-bottom: 1px solid var(--border);
      color: #334155;
      line-height: 1.5;
      vertical-align: top;
    }
    .cookie-table tr:last-child td { border-bottom: none; }
    .cookie-table tr:last-child td:first-child { border-radius: 0 0 0 12px; }
    .cookie-table tr:last-child td:last-child { border-radius: 0 0 12px 0; }
    .cookie-table-wrap {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .cookie-badge {
      display: inline-block;
      padding: 3px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 600;
    }
    .cookie-badge.tecnico { background: #dbeafe; color: #1e40af; }
    .cookie-badge.analitico { background: #fef3c7; color: #92400e; }
    .cookie-badge.terze { background: #f3e8ff; color: #6b21a8; }

    /* Contact card */
    .contact-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 24px 28px;
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .contact-card .cc-icon {
      width: 52px; height: 52px;
      border-radius: 14px;
      background: var(--surface-2);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 24px;
      flex-shrink: 0;
    }
    .contact-card strong { display: block; font-size: 16px; margin-bottom: 4px; }
    .contact-card span { font-size: 14px; color: var(--muted); }
    .contact-card a { color: var(--accent-dark); font-weight: 600; }
    .contact-card a:hover { text-decoration: underline; }

    /* Legal note */
    .legal-note {
      background: var(--surface-2);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 16px 20px;
      font-size: 13px;
      color: var(--muted);
      margin-top: 36px;
    }

    /* Bottom CTA */
    .back-cta {
      margin-top: 36px;
      padding-top: 28px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      height: 50px;
      padding: 0 26px;
      border-radius: 16px;
      background: var(--dark);
      color: white;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: background .15s;
    }
    .btn-primary:hover { background: #111827; }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      height: 50px;
      padding: 0 26px;
      border-radius: 16px;
      background: white;
      color: var(--text);
      font-size: 15px;
      font-weight: 700;
      border: 1px solid var(--border);
      cursor: pointer;
      transition: background .15s, border-color .15s;
    }
    .btn-secondary:hover { background: var(--bg); border-color: #cbd5e1; }

    /* ── FOOTER ── */
    footer.site-footer {
      border-top: 1px solid var(--border);
      padding: 24px 0;
      color: var(--muted);
      font-size: 13px;
    }
    .footer-row {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: center;
    }
    .footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
    .footer-links a:hover { color: var(--text); }

    @media (max-width: 700px) {
      .container { width: calc(100% - 24px); }
      .header-row { flex-direction: column; align-items: flex-start; }
      .header-nav { display: none; }
      .hero-mini { padding: 30px 24px; }
      .toc-list, .data-grid { grid-template-columns: 1fr; }
      .contact-card { flex-direction: column; align-items: flex-start; }
      .footer-row { flex-direction: column; align-items: flex-start; }
    }


/* ===== contatti.html ===== */
:root {
      --bg: #f8fafc;
      --surface: #ffffff;
      --surface-2: #f1f5f9;
      --text: #0f172a;
      --muted: #64748b;
      --border: #e2e8f0;
      --dark: #0f172a;
      --accent: #fbbf24;
      --accent-dark: #d97706;
      --radius-xl: 28px;
      --radius-lg: 20px;
      --shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
      --container: 860px;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }
    a { color: inherit; text-decoration: none; }
    .container {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    /* ── HEADER ── */
    header.site-header { padding: 20px 0 6px; }
    .header-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
    .brand-wrap { display: flex; align-items: center; gap: 12px; }
    .brand-icon {
      width: 42px; height: 42px; border-radius: 12px;
      background: linear-gradient(135deg, #1e293b, #0f172a);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .brand-icon svg { width: 22px; height: 22px; }
    .brand-title { font-size: 22px; font-weight: 800; letter-spacing: -0.04em; }
    .brand-title span { color: var(--accent-dark); }
    .brand-subtitle { font-size: 13px; color: var(--muted); margin-top: 1px; }
    .header-nav { display: flex; gap: 24px; font-size: 14px; color: var(--muted); font-weight: 500; }
    .header-nav a:hover { color: var(--text); }

    /* ── HERO MINI ── */
    .hero-mini {
      margin-top: 16px; border-radius: 30px;
      background: linear-gradient(140deg, #020617 0%, #0f172a 55%, #1a2744 100%);
      color: white; padding: 44px 48px; position: relative; overflow: hidden;
    }
    .hero-mini::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(251,191,36,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .breadcrumb {
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; color: #64748b; margin-bottom: 16px;
    }
    .breadcrumb a { color: #94a3b8; transition: color .15s; }
    .breadcrumb a:hover { color: #fbbf24; }
    .breadcrumb span { color: #475569; }
    .hero-mini h1 { font-size: clamp(28px, 4vw, 44px); line-height: 1.08; margin: 0 0 12px; letter-spacing: -0.04em; }
    .hero-mini h1 em { font-style: normal; color: var(--accent); }
    .hero-mini p { color: #94a3b8; font-size: 16px; margin: 0; max-width: 520px; }
    .btn-back {
      display: inline-flex; align-items: center; gap: 8px;
      height: 46px; padding: 0 22px; border-radius: 14px;
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
      color: #e2e8f0; font-size: 14px; font-weight: 600; cursor: pointer;
      transition: background .15s, color .15s; margin-top: 24px;
    }
    .btn-back:hover { background: rgba(255,255,255,0.18); color: #fff; }
    .btn-back svg { width: 16px; height: 16px; }

    /* ── MAIN LAYOUT ── */
    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 24px;
      margin-top: 32px;
      margin-bottom: 60px;
      align-items: start;
    }

    /* ── INFO CARDS ── */
    .info-cards { display: flex; flex-direction: column; gap: 14px; }
    .info-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 22px 24px;
      box-shadow: var(--shadow);
      display: flex; align-items: flex-start; gap: 16px;
    }
    .info-card .ic-icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: var(--surface-2); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; flex-shrink: 0;
    }
    .info-card strong { display: block; font-size: 15px; margin-bottom: 4px; }
    .info-card span { font-size: 14px; color: var(--muted); line-height: 1.6; }
    .info-card a { color: var(--accent-dark); font-weight: 600; }
    .info-card a:hover { text-decoration: underline; }

    /* Note box */
    .note-box {
      background: #fffbeb;
      border: 1px solid #fde68a;
      border-left: 4px solid #fbbf24;
      border-radius: var(--radius-lg);
      padding: 18px 22px;
      font-size: 14px;
      color: #78350f;
      line-height: 1.65;
    }
    .note-box strong { color: #92400e; }

    /* ── FORM ── */
    .form-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 32px 36px;
      box-shadow: var(--shadow);
    }
    .form-card h2 {
      font-size: 22px; letter-spacing: -0.025em;
      margin: 0 0 6px;
    }
    .form-card .form-subtitle {
      font-size: 14px; color: var(--muted); margin-bottom: 28px;
    }

    .form-group { margin-bottom: 18px; }
    .form-group label {
      display: block; font-size: 13px; font-weight: 700;
      color: var(--text); margin-bottom: 7px; letter-spacing: 0.01em;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 13px 16px;
      font-size: 15px;
      font-family: inherit;
      color: var(--text);
      background: var(--bg);
      outline: none;
      transition: border-color .15s, background .15s;
      resize: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: #fbbf24;
      background: #fff;
      box-shadow: 0 0 0 3px rgba(251,191,36,0.12);
    }
    .form-group textarea { height: 130px; line-height: 1.6; }
    .form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

    .form-privacy {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 13px; color: var(--muted); margin-bottom: 22px;
    }
    .form-privacy input[type="checkbox"] {
      width: 18px; height: 18px; flex-shrink: 0;
      margin-top: 1px; cursor: pointer; accent-color: #fbbf24;
    }
    .form-privacy a { color: var(--accent-dark); font-weight: 600; }

    .btn-submit {
      width: 100%; height: 54px;
      background: var(--dark); color: white;
      border: none; border-radius: 16px;
      font-size: 16px; font-weight: 800;
      cursor: pointer; transition: background .15s, transform .1s;
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .btn-submit:hover { background: #111827; }
    .btn-submit:active { transform: scale(0.98); }

    /* Success message */
    .form-success {
      display: none;
      background: #f0fdf4;
      border: 1px solid #bbf7d0;
      border-radius: 16px;
      padding: 20px 24px;
      text-align: center;
      margin-top: 16px;
    }
    .form-success .fs-icon { font-size: 32px; margin-bottom: 10px; }
    .form-success strong { display: block; font-size: 17px; color: #166534; margin-bottom: 4px; }
    .form-success span { font-size: 14px; color: #15803d; }

    /* ── FOOTER ── */
    footer.site-footer {
      border-top: 1px solid var(--border); padding: 24px 0;
      color: var(--muted); font-size: 13px;
    }
    .footer-row { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
    .footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
    .footer-links a:hover { color: var(--text); }

    @media (max-width: 760px) {
      .container { width: calc(100% - 24px); }
      .header-row { flex-direction: column; align-items: flex-start; }
      .header-nav { display: none; }
      .hero-mini { padding: 30px 24px; }
      .contact-layout { grid-template-columns: 1fr; }
      .form-card { padding: 24px 20px; }
      .form-row { grid-template-columns: 1fr; }
      .footer-row { flex-direction: column; align-items: flex-start; }
    }


/* ===== cookie.html ===== */
:root {
      --bg: #f8fafc;
      --surface: #ffffff;
      --surface-2: #f1f5f9;
      --text: #0f172a;
      --muted: #64748b;
      --border: #e2e8f0;
      --dark: #0f172a;
      --accent: #fbbf24;
      --accent-dark: #d97706;
      --radius-xl: 28px;
      --radius-lg: 20px;
      --shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
      --container: 860px;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }
    a { color: inherit; text-decoration: none; }
    .container {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    /* ── HEADER ── */
    header.site-header { padding: 20px 0 6px; }
    .header-row {
      display: flex; align-items: center;
      justify-content: space-between; gap: 20px;
    }
    .brand-wrap { display: flex; align-items: center; gap: 12px; }
    .brand-icon {
      width: 42px; height: 42px; border-radius: 12px;
      background: linear-gradient(135deg, #1e293b, #0f172a);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .brand-icon svg { width: 22px; height: 22px; }
    .brand-title { font-size: 22px; font-weight: 800; letter-spacing: -0.04em; }
    .brand-title span { color: var(--accent-dark); }
    .brand-subtitle { font-size: 13px; color: var(--muted); margin-top: 1px; }
    .header-nav { display: flex; gap: 24px; font-size: 14px; color: var(--muted); font-weight: 500; }
    .header-nav a:hover { color: var(--text); }

    /* ── HERO MINI ── */
    .hero-mini {
      margin-top: 16px; border-radius: 30px;
      background: linear-gradient(140deg, #020617 0%, #0f172a 55%, #1a2744 100%);
      color: white; padding: 44px 48px; position: relative; overflow: hidden;
    }
    .hero-mini::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(251,191,36,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .breadcrumb {
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; color: #64748b; margin-bottom: 16px;
    }
    .breadcrumb a { color: #94a3b8; transition: color .15s; }
    .breadcrumb a:hover { color: #fbbf24; }
    .breadcrumb span { color: #475569; }
    .hero-mini h1 {
      font-size: clamp(28px, 4vw, 44px); line-height: 1.08;
      margin: 0 0 12px; letter-spacing: -0.04em;
    }
    .hero-mini h1 em { font-style: normal; color: var(--accent); }
    .hero-mini p { color: #94a3b8; font-size: 16px; margin: 0 0 6px; max-width: 560px; }
    .hero-mini .update-note { font-size: 13px; color: #475569; margin-top: 10px; }
    .btn-back {
      display: inline-flex; align-items: center; gap: 8px;
      height: 46px; padding: 0 22px; border-radius: 14px;
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
      color: #e2e8f0; font-size: 14px; font-weight: 600; cursor: pointer;
      transition: background .15s, color .15s; margin-top: 24px;
    }
    .btn-back:hover { background: rgba(255,255,255,0.18); color: #fff; }
    .btn-back svg { width: 16px; height: 16px; }

    /* ── TOC ── */
    .toc-box {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: 24px 28px;
      margin-bottom: 36px; box-shadow: var(--shadow);
    }
    .toc-box h3 {
      font-size: 13px; text-transform: uppercase; letter-spacing: 0.18em;
      color: var(--muted); font-weight: 700; margin: 0 0 14px;
    }
    .toc-list {
      list-style: none; padding: 0; margin: 0;
      display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px;
    }
    .toc-list li a {
      font-size: 14px; color: var(--muted);
      display: flex; align-items: center; gap: 8px; transition: color .15s;
    }
    .toc-list li a:hover { color: var(--text); }
    .toc-list li a::before {
      content: ''; width: 5px; height: 5px; border-radius: 50%;
      background: #fbbf24; flex-shrink: 0;
    }

    /* ── CONTENT ── */
    .content-wrap { margin-top: 32px; margin-bottom: 60px; }
    .intro-text {
      font-size: 16px; color: var(--muted); margin-bottom: 32px;
      padding-bottom: 28px; border-bottom: 1px solid var(--border); line-height: 1.7;
    }
    .intro-text strong { color: var(--text); }

    .info-section { margin-bottom: 40px; scroll-margin-top: 24px; }
    .info-section-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
    .section-num {
      width: 36px; height: 36px; border-radius: 10px;
      background: var(--dark); color: var(--accent);
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; font-weight: 800; flex-shrink: 0;
    }
    .info-section h2 { font-size: 20px; letter-spacing: -0.025em; margin: 0; }
    .info-section p {
      font-size: 15px; color: #334155; margin: 0 0 12px; line-height: 1.75;
    }
    .info-section p:last-child { margin: 0; }
    .info-section strong { color: var(--text); }

    /* Cookie type cards */
    .cookie-types {
      display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px;
    }
    .cookie-type-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 16px; padding: 20px; box-shadow: var(--shadow);
    }
    .cookie-type-card .ct-header {
      display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
    }
    .cookie-type-card .ct-icon {
      width: 36px; height: 36px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
    }
    .ct-icon.tecnico { background: #dbeafe; }
    .ct-icon.statistiche { background: #fef3c7; }
    .ct-icon.pubblicita { background: #f3e8ff; }
    .ct-icon.marketing { background: #fce7f3; }
    .ct-icon.social { background: #dcfce7; }
    .cookie-type-card strong { font-size: 15px; }
    .cookie-type-card p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.6; }

    /* Placed cookies table */
    .cookie-service { margin-bottom: 20px; }
    .cookie-service-header {
      display: flex; align-items: center; gap: 12px;
      background: var(--surface-2); border: 1px solid var(--border);
      border-radius: 14px 14px 0 0; padding: 14px 18px;
      cursor: pointer; user-select: none;
    }
    .cookie-service-header .cs-icon {
      width: 32px; height: 32px; border-radius: 8px;
      background: var(--surface); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
    }
    .cookie-service-header strong { font-size: 15px; flex: 1; }
    .cookie-service-header .cs-badge {
      font-size: 11px; font-weight: 700; padding: 4px 10px;
      border-radius: 999px; white-space: nowrap;
    }
    .cs-badge.funzionale { background: #dbeafe; color: #1e40af; }
    .cs-badge.statistiche { background: #fef3c7; color: #92400e; }
    .cs-badge.pubblicita { background: #f3e8ff; color: #6b21a8; }
    .cs-badge.marketing { background: #fce7f3; color: #9d174d; }
    .cookie-service-header .cs-toggle { font-size: 12px; color: var(--muted); }

    .cookie-table-wrap {
      background: var(--surface); border: 1px solid var(--border);
      border-top: none; border-radius: 0 0 14px 14px; overflow: hidden;
    }
    .cookie-table {
      width: 100%; border-collapse: collapse; font-size: 13px;
    }
    .cookie-table th {
      background: #f8fafc; padding: 10px 16px; text-align: left;
      font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
      color: var(--muted); font-weight: 700; border-bottom: 1px solid var(--border);
    }
    .cookie-table td {
      padding: 11px 16px; border-bottom: 1px solid var(--border);
      color: #334155; vertical-align: top; line-height: 1.5;
    }
    .cookie-table tr:last-child td { border-bottom: none; }
    .cookie-table code {
      background: var(--surface-2); padding: 2px 6px; border-radius: 5px;
      font-size: 12px; color: #475569; font-family: monospace;
    }

    /* Rights list */
    .rights-list {
      list-style: none; padding: 0; margin: 14px 0 0;
      display: flex; flex-direction: column; gap: 10px;
    }
    .rights-list li {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 15px; color: #334155; line-height: 1.6;
    }
    .rights-list li::before {
      content: '✓'; width: 24px; height: 24px; border-radius: 50%;
      background: #dcfce7; color: #16a34a;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 2px;
    }

    /* Contact card */
    .contact-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: 24px 28px; box-shadow: var(--shadow);
      display: flex; align-items: center; gap: 20px;
    }
    .contact-card .cc-icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: var(--surface-2); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0;
    }
    .contact-card strong { display: block; font-size: 16px; margin-bottom: 4px; }
    .contact-card span { font-size: 14px; color: var(--muted); }
    .contact-card a { color: var(--accent-dark); font-weight: 600; }
    .contact-card a:hover { text-decoration: underline; }

    /* Highlight box */
    .highlight-box {
      background: #fffbeb; border: 1px solid #fde68a;
      border-left: 5px solid #fbbf24; border-radius: var(--radius-lg);
      padding: 22px 26px; margin-top: 16px;
    }
    .highlight-box p { color: #78350f; font-size: 14px; margin: 0; line-height: 1.7; }
    .highlight-box p + p { margin-top: 8px; }

    /* Browser links */
    .browser-list {
      display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px;
    }
    .browser-chip {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 999px; padding: 8px 16px;
      font-size: 13px; font-weight: 600; color: var(--muted);
      transition: border-color .15s, color .15s;
    }
    .browser-chip:hover { border-color: #fbbf24; color: var(--text); }

    /* Legal + CTA */
    .legal-note {
      background: var(--surface-2); border: 1px solid var(--border);
      border-radius: 14px; padding: 16px 20px;
      font-size: 13px; color: var(--muted); margin-top: 36px;
    }
    .back-cta {
      margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border);
      display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      height: 50px; padding: 0 26px; border-radius: 16px;
      background: var(--dark); color: white;
      font-size: 15px; font-weight: 700; cursor: pointer; border: none;
      transition: background .15s;
    }
    .btn-primary:hover { background: #111827; }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: 8px;
      height: 50px; padding: 0 26px; border-radius: 16px;
      background: white; color: var(--text);
      font-size: 15px; font-weight: 700; border: 1px solid var(--border);
      cursor: pointer; transition: background .15s, border-color .15s;
    }
    .btn-secondary:hover { background: var(--bg); border-color: #cbd5e1; }

    /* ── FOOTER ── */
    footer.site-footer {
      border-top: 1px solid var(--border); padding: 24px 0;
      color: var(--muted); font-size: 13px;
    }
    .footer-row { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
    .footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
    .footer-links a:hover { color: var(--text); }

    @media (max-width: 700px) {
      .container { width: calc(100% - 24px); }
      .header-row { flex-direction: column; align-items: flex-start; }
      .header-nav { display: none; }
      .hero-mini { padding: 30px 24px; }
      .toc-list, .cookie-types { grid-template-columns: 1fr; }
      .contact-card { flex-direction: column; align-items: flex-start; }
      .footer-row { flex-direction: column; align-items: flex-start; }
    }


/* ===== informativa.html ===== */
:root {
      --bg: #f8fafc;
      --surface: #ffffff;
      --surface-2: #f1f5f9;
      --text: #0f172a;
      --muted: #64748b;
      --border: #e2e8f0;
      --dark: #0f172a;
      --accent: #fbbf24;
      --accent-dark: #d97706;
      --radius-xl: 28px;
      --radius-lg: 20px;
      --shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
      --container: 860px;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }
    a { color: inherit; text-decoration: none; }
    .container {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    /* ── HEADER ── */
    header.site-header { padding: 20px 0 6px; }
    .header-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .brand-wrap { display: flex; align-items: center; gap: 12px; }
    .brand-icon {
      width: 42px; height: 42px;
      border-radius: 12px;
      background: linear-gradient(135deg, #1e293b, #0f172a);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .brand-icon svg { width: 22px; height: 22px; }
    .brand-title {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.04em;
    }
    .brand-title span { color: var(--accent-dark); }
    .brand-subtitle { font-size: 13px; color: var(--muted); margin-top: 1px; }
    .header-nav {
      display: flex;
      gap: 24px;
      font-size: 14px;
      color: var(--muted);
      font-weight: 500;
    }
    .header-nav a:hover { color: var(--text); }

    /* ── HERO MINI ── */
    .hero-mini {
      margin-top: 16px;
      border-radius: 30px;
      background: linear-gradient(140deg, #020617 0%, #0f172a 55%, #1a2744 100%);
      color: white;
      padding: 44px 48px;
      position: relative;
      overflow: hidden;
    }
    .hero-mini::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(251,191,36,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: #64748b;
      margin-bottom: 16px;
    }
    .breadcrumb a { color: #94a3b8; transition: color .15s; }
    .breadcrumb a:hover { color: #fbbf24; }
    .breadcrumb span { color: #475569; }
    .hero-mini h1 {
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.08;
      margin: 0 0 12px;
      letter-spacing: -0.04em;
    }
    .hero-mini h1 em { font-style: normal; color: var(--accent); }
    .hero-mini p {
      color: #94a3b8;
      font-size: 16px;
      margin: 0;
      max-width: 560px;
    }

    /* ── BACK BUTTON ── */
    .btn-back {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      height: 46px;
      padding: 0 22px;
      border-radius: 14px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.18);
      color: #e2e8f0;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: background .15s, color .15s;
      margin-top: 24px;
    }
    .btn-back:hover { background: rgba(255,255,255,0.18); color: #fff; }
    .btn-back svg { width: 16px; height: 16px; }

    /* ── CONTENT ── */
    .content-wrap {
      margin-top: 32px;
      margin-bottom: 60px;
    }

    /* Highlight box */
    .highlight-box {
      background: #fffbeb;
      border: 1px solid #fde68a;
      border-left: 5px solid #fbbf24;
      border-radius: var(--radius-lg);
      padding: 24px 28px;
      margin-bottom: 32px;
    }
    .highlight-box h2 {
      margin: 0 0 10px;
      font-size: 18px;
      letter-spacing: -0.02em;
      color: #92400e;
    }
    .highlight-box p { color: #78350f; font-size: 15px; margin: 0 0 8px; }
    .highlight-box p:last-child { margin: 0; }
    .highlight-box em { color: #b45309; font-style: normal; font-weight: 600; }

    /* Intro text */
    .intro-text {
      font-size: 16px;
      color: var(--muted);
      margin-bottom: 32px;
      padding-bottom: 28px;
      border-bottom: 1px solid var(--border);
    }
    .intro-text strong { color: var(--text); }

    /* Section blocks */
    .info-section { margin-bottom: 36px; }
    .info-section h2 {
      font-size: 20px;
      letter-spacing: -0.025em;
      margin: 0 0 14px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .info-section h2 .section-icon {
      width: 34px; height: 34px;
      border-radius: 10px;
      background: var(--surface-2);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }
    .info-section p {
      font-size: 15px;
      color: #334155;
      margin: 0 0 12px;
      line-height: 1.7;
    }

    /* Feature list */
    .feature-list {
      list-style: none;
      padding: 0; margin: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 18px 20px;
      box-shadow: var(--shadow);
    }
    .feature-list li .feat-icon {
      width: 38px; height: 38px;
      border-radius: 10px;
      background: var(--surface-2);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .feature-list li .feat-text strong {
      display: block;
      font-size: 15px;
      margin-bottom: 4px;
    }
    .feature-list li .feat-text span {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
    }

    /* Legal note */
    .legal-note {
      background: var(--surface-2);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 18px 22px;
      font-size: 13px;
      color: var(--muted);
      margin-top: 40px;
    }

    /* Bottom CTA */
    .back-cta {
      margin-top: 36px;
      padding-top: 28px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      height: 50px;
      padding: 0 26px;
      border-radius: 16px;
      background: var(--dark);
      color: white;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: background .15s;
    }
    .btn-primary:hover { background: #111827; }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      height: 50px;
      padding: 0 26px;
      border-radius: 16px;
      background: white;
      color: var(--text);
      font-size: 15px;
      font-weight: 700;
      border: 1px solid var(--border);
      cursor: pointer;
      transition: background .15s, border-color .15s;
    }
    .btn-secondary:hover { background: var(--bg); border-color: #cbd5e1; }

    /* ── FOOTER ── */
    footer.site-footer {
      border-top: 1px solid var(--border);
      padding: 24px 0;
      color: var(--muted);
      font-size: 13px;
    }
    .footer-row {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: center;
    }
    .footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
    .footer-links a:hover { color: var(--text); }

    @media (max-width: 700px) {
      .container { width: calc(100% - 24px); }
      .header-row { flex-direction: column; align-items: flex-start; }
      .header-nav { display: none; }
      .hero-mini { padding: 30px 24px; }
      .footer-row { flex-direction: column; align-items: flex-start; }
    }


/* ===== Cookie consent banner ===== */


/* ===== Fix larghezza homepage =====
   Le pagine legali usano container 860px; la homepage deve restare larga come nel design originale. */
body.page-home {
  --container: 1200px;
}
