/* ============================================================
   PEZZOLI — inner page components (load after styles.css)
   ============================================================ */

/* ---------- Page banner (sub-hero) ---------- */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--blue-deep);
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg image-slot { width: 100%; height: 100%; }
.page-hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(0,34,87,.95) 0%, rgba(0,48,135,.84) 55%, rgba(0,48,135,.66) 100%);
}
.page-hero__inner { padding-top: 70px; padding-bottom: 76px; color: #fff; }
.page-hero__inner > * { max-width: 820px; }
.page-hero .eyebrow { color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 44px); line-height: 1.14; margin-bottom: 20px; }
.page-hero__lead { font-size: 18.5px; line-height: 1.6; color: rgba(255,255,255,.9); max-width: 720px; }
.page-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 13.5px; margin-bottom: 22px;
  font-family: var(--font-body);
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb .sep { color: rgba(255,255,255,.4); }
.breadcrumb .current { color: #fff; }
.breadcrumb--light a { color: var(--caption); }
.breadcrumb--light a:hover { color: var(--blue-primary); }
.breadcrumb--light .sep { color: var(--border-2); }
.breadcrumb--light .current { color: var(--title); }

/* ---------- Generic prose ---------- */
.prose { max-width: 760px; }
.prose > * + * { margin-top: 20px; }
.prose h2 { font-size: clamp(22px, 2.6vw, 30px); margin-top: 14px; }
.prose h3 { font-size: 20px; margin-top: 8px; }
.prose p { color: var(--body); }
.prose strong { color: var(--title); font-weight: 600; }
.prose ul { margin: 0; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.prose ul li { position: relative; padding-left: 30px; color: var(--body); }
.prose ul li::before {
  content: ""; position: absolute; left: 4px; top: 9px;
  width: 8px; height: 8px; border-radius: 2px; background: var(--gold);
}
.prose a:not(.btn) { color: var(--blue-secondary); text-decoration: underline; }

/* ---------- Intro lead block ---------- */
.intro-lead { max-width: 820px; }
.intro-lead h2 { font-size: clamp(22px, 2.8vw, 30px); margin-bottom: 18px; }
.intro-lead p { font-size: 18px; color: var(--body); line-height: 1.7; }
.intro-lead p + p { margin-top: 16px; }

/* ---------- Coverage grid (product coverages) ---------- */
.coverage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.coverage-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 28px 30px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.coverage-item:hover { border-color: var(--blue-secondary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.coverage-item__top { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.coverage-item__icon {
  width: 46px; height: 46px; flex: none;
  border-radius: var(--r-md);
  background: rgba(0,48,135,.07);
  display: grid; place-items: center; color: var(--blue-primary);
}
.coverage-item__icon svg { width: 24px; height: 24px; }
.coverage-item h3 { font-size: 18px; line-height: 1.25; }
.coverage-item p { font-size: 15px; color: var(--caption); }

/* ---------- Chips (who we serve / capability) ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  color: var(--blue-primary);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 11px 20px;
}
.chip--gold { color: #8a6a12; border-color: rgba(201,151,28,.4); background: rgba(201,151,28,.06); }

/* Chips in a fixed 3-column grid (2 rows of 3) */
.chips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}
.chips-grid .chip { text-align: center; }
@media (max-width: 600px) { .chips-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px;
  font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--title);
}
.faq__q::after {
  content: ""; flex: none;
  width: 12px; height: 12px;
  border-right: 2px solid var(--blue-primary);
  border-bottom: 2px solid var(--blue-primary);
  transform: rotate(45deg);
  transition: transform .25s var(--ease);
  margin-top: -4px;
}
.faq__item.is-open .faq__q::after { transform: rotate(-135deg); margin-top: 4px; }
.faq__a { max-height: 0; overflow: hidden; opacity: 0; transition: opacity .25s var(--ease); }
.faq__item.is-open .faq__a { max-height: none; opacity: 1; }
.faq__a p { padding: 0 4px 24px; font-size: 16px; color: var(--body); line-height: 1.65; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--blue-primary); color: #fff; }
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 36px;
  padding: 56px 0; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); max-width: 640px; }
.cta-band p { color: rgba(255,255,255,.82); margin-top: 10px; font-size: 17px; max-width: 560px; }
.cta-band .btn--ghost-white:hover { background: #fff; color: var(--blue-primary); }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Split media (text + photo) ---------- */
.split-media { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.split-media.reverse { grid-template-columns: 1fr 1.05fr; }
.split-media.reverse .split-media__text { order: 2; }
.split-media__photo { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-media__photo image-slot { width: 100%; height: 460px; }
.split-media__photo::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--gold); }
.split-media__text h2 { margin-bottom: 18px; }
.split-media__text p { margin-bottom: 16px; color: var(--body); }
.split-media__text .btn { margin-top: 8px; }

/* ---------- Fact card (editorial callout, replaces photo-strip pattern) ---------- */
.fact-card {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 44px 48px;
  display: flex; gap: 30px; align-items: flex-start;
}
.fact-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: linear-gradient(180deg, var(--gold), #e3b94e);
}
.fact-card__icon {
  flex: none; width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(150deg, rgba(201,151,28,.16), rgba(201,151,28,.08));
  color: var(--gold);
  display: grid; place-items: center;
}
.fact-card__icon svg { width: 30px; height: 30px; }
.fact-card__body .eyebrow { margin-bottom: 10px; }
.fact-card__body h2 { font-size: 25px; margin-bottom: 14px; line-height: 1.3; }
.fact-card__body p { color: var(--body); font-size: 16.5px; line-height: 1.65; margin: 0; }
@media (max-width: 640px) {
  .fact-card { flex-direction: column; padding: 32px 26px; gap: 20px; }
  .fact-card__body h2 { font-size: 22px; }
}
.photo-strip__overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg, rgba(0,28,72,.60) 0%, rgba(0,48,135,.30) 45%, rgba(0,48,135,.08) 100%);
}
.photo-strip__text {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding-left: max(var(--pad), calc((100vw - var(--container))/2 + var(--pad)));
  padding-right: var(--pad);
  max-width: min(700px, calc((100vw - var(--container))/2 + var(--pad) + 620px));
}
.photo-strip__text .eyebrow { color: rgba(255,255,255,.75); margin-bottom: 12px; }
.photo-strip__text h2 { color: #fff; font-size: clamp(22px, 2.8vw, 36px); margin-bottom: 16px; }
.photo-strip__text p { color: rgba(255,255,255,.82); font-size: 17px; line-height: 1.6; }
@media (max-width: 860px) {
  .split-media { grid-template-columns: 1fr; gap: 40px; }
  .split-media.reverse .split-media__text { order: 0; }
  .split-media__photo image-slot { height: 300px; }
  .photo-strip { height: 260px; }
  .photo-strip__text { padding: 0 24px; }
  .photo-strip__text h2 { font-size: 22px; }
}

/* ---------- Stat strip ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.stat-strip__item { text-align: center; padding: 24px 12px; border-right: 1px solid var(--line); }
.stat-strip__item:last-child { border-right: none; }
.stat-strip__num { font-family: var(--font-head); font-weight: 700; font-size: 30px; color: var(--blue-primary); line-height: 1; }
.stat-strip__lbl { font-size: 13.5px; color: var(--caption); margin-top: 8px; line-height: 1.4; }

/* ---------- Product index grid ---------- */
.pindex-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pindex-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 30px; display: flex; flex-direction: column;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.pindex-card:hover { border-color: var(--blue-secondary); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pindex-card__icon { width: 58px; height: 58px; border-radius: var(--r-md); background: rgba(0,48,135,.07); display: grid; place-items: center; color: var(--blue-primary); margin-bottom: 22px; transition: background .2s var(--ease), color .2s var(--ease); }
.pindex-card:hover .pindex-card__icon { background: var(--blue-primary); color: #fff; }
.pindex-card__icon svg { width: 30px; height: 30px; }
.pindex-card h3 { font-size: 20px; margin-bottom: 10px; }
.pindex-card p { font-size: 15px; color: var(--caption); margin-bottom: 22px; flex: 1; }
.pindex-card__link { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--blue-primary); display: inline-flex; align-items: center; gap: 8px; }
.pindex-card__link span { transition: transform .2s var(--ease); }
.pindex-card:hover .pindex-card__link span { transform: translateX(5px); }

/* ---------- Contact / sede cards & info ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; }
.contact-methods { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.contact-method {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-method:hover { border-color: var(--blue-secondary); box-shadow: var(--shadow-sm); }
.contact-method__icon { width: 44px; height: 44px; border-radius: var(--r-md); background: rgba(0,48,135,.07); display: grid; place-items: center; color: var(--blue-primary); }
.contact-method__icon svg { width: 22px; height: 22px; }
.contact-method .lbl { font-size: 13px; color: var(--caption); }
.contact-method .val { font-family: var(--font-head); font-weight: 600; font-size: 16px; color: var(--title); }

.sede-list { display: flex; flex-direction: column; gap: 18px; }
.sede-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px 26px;
}
.sede-row__badge { width: 46px; height: 46px; border-radius: 50% 50% 50% 0; background: var(--blue-primary); transform: rotate(-45deg); display: grid; place-items: center; flex: none; }
.sede-row__badge svg { width: 22px; height: 22px; color: #fff; transform: rotate(45deg); }
.sede-row__tag { font-family: var(--font-body); font-weight: 600; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.sede-row h3 { font-size: 18px; margin: 2px 0 4px; }
.sede-row .addr { font-size: 14.5px; color: var(--caption); }
.sede-row .addr-mail { display: inline-block; margin-top: 5px; font-size: 14px; color: var(--blue-secondary); font-weight: 500; white-space: nowrap; transition: color .16s var(--ease); }
@media (max-width: 480px) { .sede-row .addr-mail { font-size: 12px; } }
.sede-row .addr-mail:hover { color: var(--blue-primary); text-decoration: underline; }
.sede-row__hours { margin-top: 8px; font-size: 13.5px; color: var(--caption); line-height: 1.6; }
.sede-row__actions { display: flex; gap: 10px; }
.icon-btn { width: 44px; height: 44px; border-radius: var(--r-md); border: 1.5px solid var(--line); display: grid; place-items: center; color: var(--blue-primary); transition: all .16s var(--ease); }
.icon-btn:hover { background: var(--blue-primary); color: #fff; border-color: var(--blue-primary); }
.icon-btn.wa:hover { background: #1FA463; border-color: #1FA463; }
.icon-btn svg { width: 20px; height: 20px; }

/* ---------- Form card (contact / preventivi) ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: 36px; }
.form-card h3 { font-size: 20px; margin-bottom: 6px; }
.form-card .form-note { font-size: 14px; color: var(--caption); margin-bottom: 24px; }
.field select {
  font-family: var(--font-body); font-size: 15.5px; padding: 13px 15px;
  border: 1.5px solid var(--line); border-radius: var(--r-sm); background: #fff; color: var(--body);
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.field select:focus { outline: none; border-color: var(--blue-secondary); box-shadow: 0 0 0 3px rgba(0,85,184,.12); }
.radio-row { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; }
.radio-pill span {
  display: inline-block; padding: 10px 18px; border: 1.5px solid var(--line); border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--title); cursor: pointer; transition: all .15s var(--ease);
}
.radio-pill input:checked + span { background: var(--blue-primary); color: #fff; border-color: var(--blue-primary); }
.check-row { display: flex; flex-wrap: wrap; gap: 10px; }
.check-pill { position: relative; }
.check-pill input { position: absolute; opacity: 0; }
.check-pill span { display: inline-block; padding: 10px 18px; border: 1.5px solid var(--line); border-radius: var(--r-md); font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--title); cursor: pointer; transition: all .15s var(--ease); }
.check-pill input:checked + span { background: rgba(0,48,135,.08); color: var(--blue-primary); border-color: var(--blue-secondary); }
.upload-zone {
  border: 1.5px dashed var(--border-2); border-radius: var(--r-md); padding: 26px; text-align: center;
  color: var(--caption); font-size: 14.5px; background: var(--grey-bg); cursor: pointer; transition: border-color .15s var(--ease);
}
.upload-zone:hover { border-color: var(--blue-secondary); }
.upload-zone svg { width: 26px; height: 26px; color: var(--blue-secondary); margin-bottom: 8px; }

/* ---------- Map ---------- */
.map-embed { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-embed .map-placeholder { height: 100%; }

.map-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.map-grid__cell { position: relative; height: 280px; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-grid__cell iframe { display: block; }
.map-grid__label { position: absolute; top: 12px; left: 12px; z-index: 1; background: #fff; padding: 6px 14px; border-radius: 999px; font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--title); box-shadow: var(--shadow-sm); }
.map-grid, .sede-list, .offices-note { max-width: 1040px; margin-left: auto; margin-right: auto; }
@media (max-width: 900px) { .map-grid { grid-template-columns: 1fr; } .map-grid__cell { height: 260px; } }

/* ---------- Blog ---------- */
.blog-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.blog-filter { font-family: var(--font-head); font-weight: 600; font-size: 14px; padding: 10px 18px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; color: var(--title); cursor: pointer; transition: all .15s var(--ease); }
.blog-filter:hover { border-color: var(--blue-secondary); color: var(--blue-secondary); }
.blog-filter.is-active { background: var(--blue-primary); color: #fff; border-color: var(--blue-primary); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease); }
.blog-card:hover { border-color: var(--blue-secondary); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card__media { height: 190px; position: relative; }
.blog-card__media image-slot { width: 100%; height: 100%; }
.blog-card__cat { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: var(--font-body); font-weight: 600; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: var(--blue-primary); padding: 5px 11px; border-radius: 5px; }
.blog-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-card__date { font-size: 13px; color: var(--caption); margin-bottom: 10px; }
.blog-card h3 { font-size: 18.5px; line-height: 1.3; margin-bottom: 10px; }
.blog-card p { font-size: 14.5px; color: var(--caption); margin-bottom: 18px; flex: 1; }
.blog-card__link { font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--blue-primary); display: inline-flex; align-items: center; gap: 7px; }
.blog-card__link span { transition: transform .2s var(--ease); }
.blog-card:hover .blog-card__link span { transform: translateX(5px); }

/* Placeholder (skeleton) blog cards — articoli in arrivo */
.blog-card--placeholder { cursor: default; background: #fff; }
.blog-card--placeholder:hover { border-color: var(--line); box-shadow: none; transform: none; }
.blog-card--placeholder .blog-card__media { background: var(--grey-bg); }
.blog-card--placeholder .blog-card__media image-slot { opacity: .55; filter: grayscale(.3); }
.blog-card--placeholder .blog-card__media::after { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,.35); }
.blog-card__cat--ph { background: rgba(0,48,135,.16); color: rgba(255,255,255,.9); }
.ph-bar { background: var(--line); border-radius: 6px; position: relative; overflow: hidden; }
.ph-bar--date { width: 38%; height: 12px; margin-bottom: 16px; }
.ph-bar--title { width: 100%; height: 17px; margin-bottom: 9px; }
.ph-bar--title.ph-bar--short { width: 62%; margin-bottom: 16px; }
.ph-lines { display: flex; flex-direction: column; gap: 9px; flex: 1; margin-bottom: 20px; }
.ph-lines span { height: 10px; border-radius: 5px; background: var(--line-soft); }
.ph-lines span:nth-child(1) { width: 100%; }
.ph-lines span:nth-child(2) { width: 92%; }
.ph-lines span:nth-child(3) { width: 70%; }
.ph-bar--link { width: 44%; height: 13px; background: rgba(0,48,135,.14); }
/* gentle shimmer */
.blog-card--placeholder .ph-bar::after { content: ""; position: absolute; inset: 0; transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent); animation: ph-shimmer 1.8s var(--ease) infinite; }
@keyframes ph-shimmer { 100% { transform: translateX(100%); } }
@media (prefers-reduced-motion: reduce) { .blog-card--placeholder .ph-bar::after { animation: none; } }

.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 52px; }
.pagination a, .pagination span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: var(--r-md); border: 1.5px solid var(--line); font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--title); }
.pagination .is-active { background: var(--blue-primary); color: #fff; border-color: var(--blue-primary); }
.pagination a:hover { border-color: var(--blue-secondary); color: var(--blue-secondary); }

/* ---------- Article ---------- */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-size: 13.5px; color: var(--caption); margin-bottom: 18px; }
.article-meta .cat { font-weight: 600; color: #fff; background: var(--blue-primary); padding: 4px 11px; border-radius: 5px; text-transform: uppercase; letter-spacing: .05em; font-size: 11px; }
.article-cover { border-radius: var(--r-lg); overflow: hidden; margin: 28px 0 36px; box-shadow: var(--shadow-md); }
.article-cover image-slot { width: 100%; height: 420px; }
.article-body { max-width: 720px; }
.article-body > * + * { margin-top: 22px; }
.article-body h2 { font-size: 26px; margin-top: 16px; }
.article-body p { font-size: 17px; line-height: 1.75; color: var(--body); }
.article-cta { background: var(--blue-primary); color: #fff; border-radius: var(--r-lg); padding: 36px; margin-top: 40px; }
.article-cta h3 { color: #fff; font-size: 22px; margin-bottom: 10px; }
.article-cta p { color: rgba(255,255,255,.85); margin-bottom: 22px; }
.sidebar { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 24px; }
.sidebar__box { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; }
.sidebar__box h4 { font-family: var(--font-head); font-size: 15px; text-transform: uppercase; letter-spacing: .06em; color: var(--title); margin-bottom: 16px; }
.sidebar__box.dark { background: var(--blue-primary); }
.sidebar__box.dark h4, .sidebar__box.dark p { color: #fff; }
.sidebar__box ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.sidebar__box ul a { font-size: 14.5px; color: var(--body); line-height: 1.4; }
.sidebar__box ul a:hover { color: var(--blue-secondary); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }

/* ---------- Legal prose ---------- */
.legal { max-width: 800px; }
.legal h2 { font-size: 21px; margin: 36px 0 14px; color: var(--title); }
.legal h2:first-of-type { margin-top: 0; }
.legal p { color: var(--body); margin-bottom: 14px; line-height: 1.75; }
.legal p strong { color: var(--title); }
.legal a { color: var(--blue-secondary); text-decoration: underline; }
.legal .legal-meta { background: var(--grey-bg); border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px 24px; font-size: 15px; line-height: 1.8; margin-bottom: 28px; }
.legal .updated { font-size: 14px; color: var(--caption); font-style: italic; margin-top: 30px; }

.page-hero__overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(105deg, rgba(0,34,87,.95) 0%, rgba(0,48,135,.84) 55%, rgba(0,48,135,.66) 100%); }
.page-hero__overlay::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.07) 1px, transparent 0);
  background-size: 24px 24px; opacity: .6; pointer-events: none;
}
/* Hero trust points */
.hero-points { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 30px; }
.hero-point { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.92); font-family: var(--font-head); font-weight: 600; font-size: 14.5px; white-space: nowrap; }
.hero-point svg { width: 19px; height: 19px; color: var(--gold); flex: none; }
/* Reading progress */
.read-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--gold); z-index: 65; transition: width .1s linear; }
/* Related products strip */
.related-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.relprod {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px 20px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.relprod:hover { border-color: var(--blue-secondary); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.relprod__icon { width: 42px; height: 42px; flex: none; border-radius: var(--r-sm); background: rgba(0,48,135,.07); display: grid; place-items: center; color: var(--blue-primary); }
.relprod__icon svg { width: 22px; height: 22px; }
.relprod__t { font-family: var(--font-head); font-weight: 600; font-size: 15.5px; color: var(--title); }
.relprod__a { font-size: 13px; color: var(--blue-secondary); font-weight: 600; }
@media (max-width: 860px) { .related-products { grid-template-columns: 1fr; } }

/* ---------- Section header center variant ---------- */
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- White CTA button (on blue bands) ---------- */
.btn--white { background: #fff; color: var(--blue-primary); border-color: #fff; }
.btn--white:hover { background: var(--grey-bg); color: var(--blue-primary); border-color: var(--grey-bg); }

/* ---------- How-it-works steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 38px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step__n { width: 42px; height: 42px; flex: none; border-radius: 50%; background: var(--blue-primary); color: #fff; font-family: var(--font-head); font-weight: 700; display: grid; place-items: center; font-size: 17px; }
.step__t { font-family: var(--font-head); font-weight: 600; font-size: 16.5px; color: var(--title); margin-bottom: 4px; }
.step__d { font-size: 14.5px; color: var(--caption); line-height: 1.55; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; gap: 20px; } }

/* ---------- Form success ---------- */
.form-success {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid var(--line); border-left: 4px solid #2E9E5B;
  border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: 28px 30px;
  font-size: 16px; color: var(--body);
}
.form-success svg { width: 40px; height: 40px; color: #2E9E5B; flex: none; }
.form-success strong { color: var(--title); font-family: var(--font-head); }

/* ---------- Preventivi category tabs ---------- */
.pcat-btns { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; margin-bottom: 36px; }
.pcat-btn {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 22px 12px; background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-md);
  cursor: pointer; text-align: center;
  font-family: var(--font-head); font-weight: 600; font-size: 13.5px; line-height: 1.3; color: var(--title);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), transform .12s var(--ease);
}
.pcat-btn svg { width: 30px; height: 30px; color: var(--blue-primary); transition: color .18s var(--ease); }
.pcat-btn:hover { border-color: var(--blue-secondary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pcat-btn.is-active { background: var(--blue-primary); border-color: var(--blue-primary); color: #fff; }
.pcat-btn.is-active svg { color: #fff; }
.pcat-panel__intro {
  background: rgba(0,48,135,.05); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 20px 24px; margin-bottom: 26px; font-size: 15.5px; color: var(--body); line-height: 1.6;
}
.pcat-panel__intro ul { margin: 12px 0 0; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pcat-panel__intro li { position: relative; padding-left: 26px; }
.pcat-panel__intro li::before { content: ""; position: absolute; left: 4px; top: 8px; width: 7px; height: 7px; border-radius: 2px; background: var(--gold); }
@media (max-width: 1080px) { .pcat-btns { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .pcat-btns { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .stat-strip { grid-template-columns: repeat(5, 1fr); }
  .pindex-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .sidebar__box { flex: 1; min-width: 240px; }
}
@media (max-width: 860px) {
  .coverage-grid { grid-template-columns: 1fr; }
  .split-media, .split-media.reverse { grid-template-columns: 1fr; gap: 36px; }
  .split-media.reverse .split-media__text { order: 0; }
  .split-media__photo image-slot { height: 360px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-methods { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-strip__item { border-right: none; border-bottom: 1px solid var(--line); }
  .pindex-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .sede-row { grid-template-columns: auto 1fr; }
  .sede-row__actions { grid-column: 2; justify-content: flex-start; }
}
@media (max-width: 600px) {
  .page-hero__inner { padding-top: 48px; padding-bottom: 56px; }
  .form-card { padding: 24px 20px; }
}

/* ============================================================
   PREMIUM REFINEMENTS — depth, gold/cyan accents, colour rhythm
   (loaded last; refines existing components site-wide)
   ============================================================ */

/* --- Richer icon tiles: subtle gradient + cyan edge --- */
.coverage-item__icon, .pindex-card__icon, .product-card__icon,
.contact-method__icon, .relprod__icon, .prev-form__badge {
  background: linear-gradient(150deg, rgba(31,160,232,.14), rgba(0,48,135,.09));
  box-shadow: inset 0 0 0 1px rgba(0,48,135,.08);
}
.coverage-item:hover .coverage-item__icon,
.pindex-card:hover .pindex-card__icon,
.product-card:hover .product-card__icon {
  background: linear-gradient(150deg, var(--blue-secondary), var(--blue-primary));
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(0,48,135,.28);
}

/* --- Cards: soft resting lift + gold top-accent that reveals on hover --- */
.coverage-item, .pindex-card, .product-card, .contact-method, .blog-card {
  position: relative;
  box-shadow: var(--shadow-sm);
}
.coverage-item, .pindex-card, .product-card { overflow: hidden; }
.coverage-item::before, .pindex-card::before, .product-card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: linear-gradient(90deg, var(--gold), #e3b94e);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.coverage-item:hover::before, .pindex-card:hover::before, .product-card:hover::before {
  transform: scaleX(1);
}
.coverage-item:hover, .pindex-card:hover, .product-card:hover {
  border-color: rgba(0,48,135,.18);
}

/* --- Eyebrow: a touch more presence --- */
.eyebrow { display: inline-flex; align-items: center; }

/* --- Deep-blue feature section (one colour moment per page) --- */
.section--navy {
  position: relative; isolation: isolate; overflow: hidden;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-primary) 70%, #003a9e 100%);
  color: #fff;
}
.section--navy::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
  background-size: 26px 26px; opacity: .7;
}
.section--navy .eyebrow { color: #fff; }
.section--navy .eyebrow::before { background: var(--gold); }
.section--navy h2, .section--navy h3, .section--navy .h2 { color: #fff; }
.section--navy p { color: rgba(255,255,255,.82); }
.section--navy .stat-strip__item { border-right-color: rgba(255,255,255,.16); }
.section--navy .stat-strip__num { color: #fff; }
.section--navy .stat-strip__lbl { color: rgba(255,255,255,.66); }
/* Cards keep their own dark text when floating on a navy section */
.section--navy .coverage-item h3, .section--navy .pindex-card h3,
.section--navy .product-card h3 { color: var(--title); }
.section--navy .coverage-item p, .section--navy .pindex-card p,
.section--navy .product-card p { color: var(--caption); }
/* "Who/Chi siamo" block on a navy section (homepage) */
.section--navy .who__text p { color: rgba(255,255,255,.82); }
.section--navy .who__text strong { color: #fff; }
.section--navy .who__link { color: #fff; }
.section--navy .who__link:hover { color: var(--gold); }
.section--navy .who__stats { border-top-color: rgba(255,255,255,.16); }
.section--navy .who__stat .num { color: #fff; }
.section--navy .who__stat .lbl { color: rgba(255,255,255,.66); }
/* Inline links inside a navy section stay legible */
.section--navy a:not(.btn) { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.section--navy a:not(.btn):hover { color: var(--gold); }
/* Editorial gold underline on homepage stat numbers too */
.who__stat .num { position: relative; }
.who__stat .num::after {
  content: ""; display: block; width: 26px; height: 3px; margin: 12px auto 0;
  background: linear-gradient(90deg, var(--gold), #e3b94e); border-radius: 2px;
}

/* --- Stat strip: editorial numerals + gold underline accent --- */
.stat-strip__num {
  position: relative; display: inline-block;
  font-size: 38px; letter-spacing: -.01em;
}
.stat-strip__num::after {
  content: ""; display: block; width: 26px; height: 3px; margin: 12px auto 0;
  background: linear-gradient(90deg, var(--gold), #e3b94e); border-radius: 2px;
}
.section--navy .stat-strip__num::after { opacity: .95; }

/* --- Split-media photo frame: gradient overlay + refined accent edge --- */
.split-media__photo { box-shadow: var(--shadow-lg); }
.split-media__photo::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,34,87,0) 55%, rgba(0,34,87,.42) 100%);
}
.split-media__photo::after {
  width: 6px;
  background: linear-gradient(180deg, var(--gold), #e3b94e);
  z-index: 2;
}

/* --- Section-grey: warm it to read less clinical --- */
.section--grey { background: linear-gradient(180deg, #f3f5f9 0%, #eef1f6 100%); }

/* --- Page hero: refined gold hairline at the lower edge --- */
.page-hero { position: relative; }
.page-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; z-index: 1;
  background: linear-gradient(90deg, var(--gold) 0%, #e3b94e 22%, rgba(201,151,28,0) 70%);
}
/* Lighter directional overlay so the real hero photo reads on the right */
.page-hero__overlay {
  background:
    linear-gradient(100deg, rgba(0,28,72,0.93) 0%, rgba(0,40,110,0.76) 42%, rgba(0,48,135,0.40) 72%, rgba(0,48,135,0.16) 100%),
    linear-gradient(0deg, rgba(0,18,52,0.5) 0%, rgba(0,18,52,0) 44%);
}

/* ---------- Vehicle types row (Auto page) ---------- */
.vehicle-types {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
  margin-bottom: 36px;
}
.vehicle-type {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 22px 10px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  text-align: center;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}
.vehicle-type:hover { border-color: var(--blue-secondary); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.vehicle-type__ic {
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center; flex: none;
  background: linear-gradient(150deg, rgba(201,151,28,.16), rgba(201,151,28,.08));
  color: var(--gold);
}
.vehicle-type__ic svg { width: 28px; height: 28px; }
.vehicle-type span:last-child {
  font-family: var(--font-body); font-weight: 600; font-size: 12.5px;
  letter-spacing: .04em; text-transform: uppercase; color: var(--title);
}
/* clickable service cards (Non solo polizze) */
a.coverage-item { text-decoration: none; }
.coverage-item__link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 14px;
  font-weight: 600; font-size: 14.5px; color: var(--blue-secondary);
  transition: gap .18s var(--ease);
}
.coverage-item__link span { transition: transform .18s var(--ease); }
a.coverage-item:hover .coverage-item__link span { transform: translateX(4px); }
.section--navy a.coverage-item .coverage-item__link { color: var(--blue-secondary); }
@media (max-width: 860px) {
  .vehicle-types { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
  .vehicle-types { grid-template-columns: repeat(2, 1fr); }
}
