:root {
  --navy: #1F3864;
  --navy-dark: #16233D;
  --navy-ink: #2B3350;
  --gold: #BF9000;
  --gold-soft: #E8C560;
  --cream: #FAF8F4;
  --tint: #FBF3DF;
  --white: #FFFFFF;
  --font-display: "Fraunces", serif;
  --font-body: "Inter", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy-ink);
  background: var(--cream);
  line-height: 1.55;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

a { color: inherit; text-decoration: none; }

/* Focus visibility for keyboard nav */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---------- Header ---------- */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid rgba(31,56,100,0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--navy);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon-img {
  height: 42px;
  width: auto;
  display: block;
}

.spark {
  color: var(--gold);
  font-size: 0.7em;
  margin-left: 2px;
  vertical-align: super;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy-ink);
  white-space: nowrap;
}

.main-nav a:hover { color: var(--navy); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: flex;
  gap: 2px;
  background: rgba(31,56,100,0.07);
  border-radius: 999px;
  padding: 3px;
}

.lang-btn {
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 11px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--navy-ink);
  opacity: 0.55;
}

.lang-btn:hover { opacity: 0.9; }

.lang-btn.is-active {
  background: var(--white);
  color: var(--navy);
  opacity: 1;
  box-shadow: 0 1px 4px rgba(31,56,100,0.18);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(191,144,0,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(31,56,100,0.35);
}

.btn-ghost:hover {
  border-color: var(--navy);
}

.btn-lg { padding: 15px 32px; font-size: 1.02rem; }
.btn-nav { padding: 10px 22px; font-size: 0.9rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 96px 0 100px;
}

.hero-spark {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 320px;
  opacity: 0.9;
  pointer-events: none;
}

.hero-inner { position: relative; max-width: 680px; }

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 18px;
  font-weight: 600;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.12;
  margin: 0 0 22px;
}

.hero-sub {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 0 36px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.hero .btn-ghost:hover { border-color: var(--white); }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }

.section-tint { background: var(--tint); }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin: 0 0 44px;
  color: var(--navy);
}

.section-title-light { color: var(--white); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step-mark {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--navy);
}

.step p { margin: 0; color: var(--navy-ink); opacity: 0.85; }

.steps-detailed {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
  gap: 48px;
}

.steps-detailed .step h3 { font-size: 1.3rem; }
.steps-detailed .step p { font-size: 1.02rem; line-height: 1.65; }

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
}

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 8px;
}

.faq-item p { margin: 0; opacity: 0.85; }

/* ---------- Price cards ---------- */
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  background: var(--white);
  border: 1px solid rgba(31,56,100,0.1);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
}

.price-card-featured {
  border: 1.5px solid var(--gold);
  box-shadow: 0 8px 24px rgba(191,144,0,0.15);
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 8px;
  color: var(--navy-ink);
  font-weight: 500;
}

.price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 6px;
}

.price-note { font-size: 0.85rem; opacity: 0.6; margin: 0; }

.price-cards-4 { grid-template-columns: repeat(4, 1fr); }

.price-quote { font-size: 1.3rem; }

/* ---------- Contact cards (contatti.html) ---------- */
.contact-cards { grid-template-columns: repeat(2, 1fr); }

.contact-card { text-align: left; }

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 12px;
}

.contact-text {
  margin: 0 0 24px;
  opacity: 0.85;
}

.zones-text {
  max-width: 640px;
  margin: -24px 0 32px;
  opacity: 0.8;
}

.price-cta { text-align: center; margin: 40px 0 0; font-weight: 600; }
.price-cta a { color: var(--navy); }
.price-cta a:hover { color: var(--gold); }

/* ---------- Perché Splendo ---------- */
.section-navy {
  background: var(--navy-dark);
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}

.why-text {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-list li {
  padding-left: 28px;
  position: relative;
  font-weight: 500;
}

.why-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.9rem;
}

/* ---------- Map (zone-servite.html) ---------- */
.map-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(31,56,100,0.12);
  box-shadow: 0 12px 32px rgba(31,56,100,0.12);
}

/* ---------- Zone ---------- */
.zones {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.zones span {
  background: var(--white);
  border: 1px solid rgba(31,56,100,0.12);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
}

/* ---------- CTA finale ---------- */
.cta-final {
  text-align: center;
  padding: 100px 0 110px;
}

.cta-final h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin: 0 0 32px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  font-size: 1.1rem;
}

.footer-nav { display: flex; gap: 24px; }
.footer-nav a { margin-right: 24px; }
.footer-nav a:last-child { margin-right: 0; }
.footer-nav a:hover { color: var(--white); }
.footer-contact:hover { color: var(--white); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 64px 0 72px;
}

.page-hero .wrap { max-width: 760px; }

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height: 1.15;
  margin: 0 0 16px;
}

.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0;
}

/* ---------- Urgent badge ---------- */
.urgent-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  padding: 9px 18px;
  border-radius: 999px;
  margin: 0 0 22px;
}

.urgent-badge .spark { color: var(--navy-dark); font-size: 0.85em; }

/* ---------- Forms (booking) ---------- */
.booking-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}

.form-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 44px;
}

.form-fieldset legend {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy);
  padding: 0 0 18px;
  width: 100%;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.option-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--white);
  border: 1.5px solid rgba(31,56,100,0.14);
  border-radius: 14px;
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.option-card input { position: absolute; opacity: 0; }

.option-card:has(input:checked) {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(191,144,0,0.18);
}

.option-card:has(input:focus-visible) { outline: 2px solid var(--gold); outline-offset: 2px; }

.option-name {
  font-weight: 600;
  color: var(--navy);
}

.option-price {
  font-size: 0.88rem;
  opacity: 0.65;
}

.extras-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid rgba(31,56,100,0.1);
}

.extra-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(31,56,100,0.1);
}

.extra-check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 500;
}

.extra-check input { width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0; }

.extra-name small { display: block; font-weight: 400; opacity: 0.6; font-size: 0.82rem; margin-top: 2px; }

.extra-price {
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.extra-price-quote {
  font-weight: 500;
  color: var(--navy-ink);
  opacity: 0.85;
  font-size: 0.92rem;
}

.extra-price-quote a { color: var(--gold); font-weight: 600; text-decoration: underline; }

.counter {
  display: flex;
  align-items: center;
  gap: 14px;
}

.counter-btn {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1.5px solid rgba(31,56,100,0.25);
  background: var(--white);
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-btn:hover { border-color: var(--navy); }

.counter-value {
  min-width: 18px;
  text-align: center;
  font-weight: 600;
}

.urgent-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--tint);
  border: 1px solid rgba(191,144,0,0.3);
  border-radius: 14px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 500;
}

.urgent-toggle input { width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0; }
.urgent-toggle small { opacity: 0.7; font-weight: 400; }

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.field input, .field textarea, .field select {
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(31,56,100,0.16);
  background: var(--white);
  color: var(--navy-ink);
}

.field input:focus, .field textarea:focus, .field select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}

.field textarea { resize: vertical; min-height: 90px; }

.form-payment-note {
  background: var(--tint);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.92rem;
  color: var(--navy-ink);
  margin: 0 0 28px;
}

.form-status {
  margin: 16px 0 0;
  font-weight: 600;
}

.form-status.is-success { color: #2E7D32; }
.form-status.is-error { color: #B3261E; }

.btn-block { width: 100%; text-align: center; }

.booking-summary {
  background: var(--white);
  border: 1px solid rgba(31,56,100,0.1);
  border-radius: 16px;
  padding: 28px;
  position: sticky;
  top: 100px;
}

.booking-summary h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0 0 18px;
}

.summary-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 24px;
}

.summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.92rem;
}

.summary-list .summary-label { color: var(--navy-ink); }
.summary-list .summary-amount { font-weight: 600; color: var(--navy); white-space: nowrap; }

.summary-empty { opacity: 0.5; font-size: 0.9rem; }

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1.5px solid rgba(31,56,100,0.15);
  padding-top: 16px;
  margin-top: 4px;
}

.summary-total span { font-weight: 600; color: var(--navy-ink); }

.summary-total strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
}

.summary-note {
  font-size: 0.82rem;
  opacity: 0.6;
  margin: 14px 0 0;
}

.summary-total[hidden], .summary-recurring[hidden] { display: none; }

.summary-recurring {
  border-top: 1.5px solid rgba(31,56,100,0.15);
  padding-top: 16px;
  margin-top: 4px;
}

.summary-recurring p {
  font-size: 0.88rem;
  color: var(--navy-ink);
  margin: 0 0 14px;
}

/* ---------- Pricing table (preise.html) ---------- */
.table-scroll {
  overflow-x: auto;
  border-radius: 16px;
}

.price-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(31,56,100,0.1);
}

.price-table th, .price-table td {
  text-align: left;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(31,56,100,0.08);
}

.price-table th {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  background: var(--tint);
}

.price-table td:last-child, .price-table th:last-child { text-align: right; white-space: nowrap; }

.price-table tr:last-child td { border-bottom: none; }

.price-table-note { font-size: 0.85rem; opacity: 0.6; margin: 0; }

.product-toggle-card {
  background: var(--white);
  border: 1px solid rgba(31,56,100,0.1);
  border-radius: 16px;
  padding: 22px 26px;
  margin: 28px 0 0;
}

.product-toggle-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 8px;
}

.product-toggle-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  white-space: nowrap;
}

.product-toggle-card p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ---------- Legal pages ---------- */
.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.3rem;
  margin: 40px 0 14px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p { margin: 0 0 16px; }

.legal-placeholder {
  background: var(--tint);
  color: var(--navy-ink);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

.legal-note {
  background: var(--tint);
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 0.92rem;
  margin: 0 0 40px;
}

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.32);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

/* ---------- Team page ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.team-card {
  background: var(--white);
  border: 1px solid rgba(31,56,100,0.1);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
}

.team-avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--tint);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar svg {
  width: 46px;
  height: 46px;
  fill: var(--navy);
  opacity: 0.35;
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 10px;
}

.team-card p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.8;
}

/* ---------- Promo code field ---------- */
.promo-field {
  margin: 0 0 28px;
}

.promo-optional {
  font-weight: 400;
  opacity: 0.6;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .main-nav { display: none; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .price-cards { grid-template-columns: 1fr; }
  .price-cards-4 { grid-template-columns: 1fr 1fr; gap: 16px; }
  .contact-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-spark { width: 200px; }
  .section { padding: 64px 0; }
  .booking-layout { grid-template-columns: 1fr; gap: 32px; }
  .booking-summary { position: static; }
  .field-grid { grid-template-columns: 1fr; }
  .extra-row { flex-wrap: wrap; }
  .price-table { font-size: 0.9rem; }
  .price-table th, .price-table td { padding: 12px 14px; }
  .header-actions { gap: 8px; }
  .btn-nav { padding: 8px 14px; font-size: 0.82rem; }
  .lang-btn { padding: 5px 8px; font-size: 0.72rem; }
  .logo-icon-img { height: 34px; }
  .logo { font-size: 1.25rem; gap: 7px; }
  .whatsapp-float { width: 48px; height: 48px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

@media (max-width: 400px) {
  .logo span { display: none; }
}

/* =========================================================
   REDESIGN 2026 — nuovi componenti (basati su mockup approvati)
   Aggiunti in modo additivo: le classi vecchie restano finché
   ogni pagina non viene migrata singolarmente.
   ========================================================= */

/* ---------- Hero diagonale ---------- */
.hero-v2 {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hero-v2-diagonal {
  position: absolute;
  top: 0; right: 0;
  width: 46%; height: 100%;
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
}

.hero-v2-diagonal img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 15% center;
  display: block;
}

.hero-v2-content {
  position: relative; z-index: 2;
  width: 100%;
  padding: 88px 0;
}

.hero-v2-inner { max-width: 620px; }

.hero-v2 h1 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  line-height: 1.16;
  margin: 0 0 28px;
}

.checks-v2 {
  display: flex;
  gap: 26px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.check-v2-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--white);
  font-size: 0.9rem;
  max-width: 150px;
}

.check-v2-icon {
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}

.quickstart {
  background: var(--white);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  gap: 12px;
  max-width: 580px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.28);
  flex-wrap: wrap;
}

.qs-select, .qs-input {
  flex: 1;
  min-width: 140px;
  border: 1px solid rgba(31,56,100,0.18);
  border-radius: 8px;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy-ink);
  background: var(--white);
}

.qs-select:focus, .qs-input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.qs-btn {
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  border-radius: 8px;
  padding: 13px 24px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  cursor: pointer;
  font-family: var(--font-body);
}

.qs-btn:hover { box-shadow: 0 6px 16px rgba(191,144,0,0.35); }

.reviews-note-v2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.reviews-stars-v2 {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 2px;
}

.reviews-score-v2 {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}

.reviews-count-v2 {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}

/* ---------- Come funziona (preview con foto) ---------- */
.steps-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}

.step-v2 { position: relative; text-align: left; }

.step-v2-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.step-v2-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.step-v2-num {
  position: absolute;
  top: -18px; left: -6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.85;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(250,248,244,0.9), 0 0 4px rgba(250,248,244,0.9);
}

.step-v2 h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600;
  color: var(--navy);
  margin: 0 0 8px;
}

.step-v2 p { margin: 0; color: var(--navy-ink); opacity: 0.85; font-size: 0.95rem; }

.step-v2-arrow {
  position: absolute;
  top: 60px; right: -30px;
  color: var(--gold);
  font-size: 1.6rem;
  opacity: 0.6;
}

/* ---------- Perché Splendo v2 ---------- */
.why-v2 {
  background: var(--navy-dark);
  padding: 100px 0;
  overflow: hidden;
}

.why-v2-inner {
  display: flex;
  gap: 64px;
  align-items: center;
}

.why-v2-photo {
  flex: 1;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.why-v2-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.why-v2-text { flex: 1.1; }

.why-v2-text h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  color: var(--white);
  margin: 0 0 20px;
  line-height: 1.25;
}

.why-v2-text > p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 30px;
  max-width: 460px;
}

.why-v2-list { display: flex; flex-direction: column; gap: 18px; }

.why-v2-item { display: flex; gap: 14px; align-items: flex-start; }

.why-v2-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(191,144,0,0.15);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.why-v2-item-text strong { display: block; color: var(--white); font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; }
.why-v2-item-text span { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

/* ---------- Zone + mappa v2 ---------- */
.map-layout-v2 {
  display: flex;
  gap: 44px;
  align-items: center;
}

.map-box-v2 {
  position: relative;
  flex: 1.1;
  background: var(--white);
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(31,56,100,0.12);
}

.map-box-v2 .map-coverage-badge-v2 {
  top: 24px;
  left: 24px;
}

.map-box-v2 iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 14px;
  display: block;
}

.legend-v2 { flex: 1; display: flex; flex-direction: column; gap: 14px; }

.legend-v2-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid rgba(31,56,100,0.08);
}

.legend-v2-dot { width: 14px; height: 14px; border-radius: 4px; background: var(--gold); flex-shrink: 0; }
.legend-v2-item strong { color: var(--navy); font-size: 0.95rem; display: block; }
.legend-v2-item span { color: #667; font-size: 0.82rem; }

/* ---------- Lavora con noi ---------- */
.job-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid rgba(31,56,100,0.08);
  box-shadow: 0 20px 50px rgba(31,56,100,0.08);
  display: flex;
  overflow: hidden;
}

.job-photo { flex: 0.9; position: relative; min-height: 320px; }
.job-photo img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; }

.job-content { flex: 1.3; padding: 56px; }

.job-content h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1.25;
}

.job-content > p { color: #556; font-size: 0.95rem; margin: 0 0 26px; line-height: 1.6; }

.job-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.job-item { display: flex; align-items: center; gap: 12px; }
.job-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(191,144,0,0.12); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
}
.job-item span { font-size: 0.92rem; color: var(--navy); font-weight: 500; }

/* ---------- CTA finale glow ---------- */
.cta-glow {
  position: relative;
  background: var(--navy);
  padding: 110px 0;
  text-align: center;
  overflow: hidden;
}

.cta-glow::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(191,144,0,0.16), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(191,144,0,0.13), transparent 40%);
}

.cta-glow-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }

.cta-glow h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 2.8vw, 2.1rem);
  color: var(--white);
  margin: 0 0 18px;
  line-height: 1.2;
}

.cta-glow p { color: rgba(255,255,255,0.75); font-size: 1rem; margin: 0 0 34px; }

.cta-glow-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.trust-row-v2 {
  margin-top: 40px;
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
  color: rgba(255,255,255,0.55); font-size: 0.8rem;
}

/* ---------- Footer v2 ---------- */
.site-footer-v2 {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 30px;
}

.footer-v2-top {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 26px;
}

.footer-v2-brand { max-width: 280px; }
.footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-icon { height: 34px; width: auto; display: block; }
.footer-v2-brand .logo-word {
  font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; color: var(--white); margin-bottom: 0;
}
.footer-v2-brand p { font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.55); }

.footer-v2-cols { display: flex; gap: 56px; }
.footer-v2-col h4 {
  color: var(--white); font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 16px;
}
.footer-v2-col a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; margin-bottom: 10px; }
.footer-v2-col a:hover { color: var(--gold-soft); }

.footer-v2-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
}
.footer-v2-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; margin-left: 18px; }

@media (max-width: 860px) {
  .hero-v2 { min-height: auto; }
  .hero-v2-diagonal { display: none; }
  .hero-v2-content { padding: 56px 0; }
  .checks-v2 { gap: 18px; }
  .quickstart { flex-direction: column; }
  .steps-v2 { grid-template-columns: 1fr; gap: 40px; }
  .step-v2-arrow { display: none; }
  .why-v2-inner { flex-direction: column; }
  .why-v2-photo { width: 100%; height: 260px; order: 2; }
  .why-v2-text { order: 1; }
  .map-layout-v2 { flex-direction: column; }
  .job-card { flex-direction: column; }
  .job-photo { min-height: 220px; }
  .job-content { padding: 36px 28px; }
  .footer-v2-top { flex-direction: column; gap: 34px; }
  .footer-v2-cols { gap: 34px; flex-wrap: wrap; }
}

/* ---------- Page hero v2 (con breadcrumb + progress dots) ---------- */
.page-hero-v2 {
  background: var(--navy);
  padding: 56px 0 46px;
  text-align: center;
}

.breadcrumb-v2 {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  margin: 0 0 16px;
}

.breadcrumb-v2 a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb-v2 a:hover { color: var(--white); }

.page-hero-v2 h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  color: var(--white);
  margin: 0 0 12px;
}

.page-hero-v2 p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  max-width: 480px;
  margin: 0 auto;
}

.progress-strip {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.progress-dot {
  width: 32px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.25);
}

.progress-dot.active { background: var(--gold); }

/* ---------- Form card sollevata ---------- */
.form-card-wrap {
  max-width: 1120px;
  margin: -30px auto 0;
  padding: 0 28px 90px;
  position: relative;
  z-index: 2;
}

.form-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(31,56,100,0.15);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 860px) {
  .form-card { grid-template-columns: 1fr; padding: 28px 22px; gap: 32px; }
  .form-card-wrap { margin-top: -20px; padding: 0 16px 60px; }
}

/* ---------- Tier cards (preise.html) ---------- */
.section-head-v2 {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 44px;
}

.section-head-v2 .eyebrow { text-align: center; }
.section-head-v2 .section-title { text-align: center; margin-bottom: 8px; }
.section-head-v2 p { color: #667; font-size: 0.92rem; margin: 10px 0 0; }

.tiers {
  display: flex;
  gap: 20px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.tier-card {
  flex: 1;
  min-width: 220px;
  background: var(--white);
  border-radius: 18px;
  padding: 30px 24px;
  border: 1px solid rgba(31,56,100,0.08);
  text-align: center;
}

.tier-card.featured {
  border: 2px solid var(--gold);
  box-shadow: 0 16px 40px rgba(191,144,0,0.15);
  position: relative;
}

.tier-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}

.tier-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0 0 16px;
}

.tier-prices {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.tier-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #556;
  padding: 6px 0;
  border-bottom: 1px dashed #eee;
}

.tier-row strong { color: var(--navy); }
.tier-note { font-size: 0.75rem; color: #999; }

/* ---------- Extras grid (preise.html) ---------- */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.extra-item {
  background: var(--white);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(31,56,100,0.06);
  font-size: 0.9rem;
  color: var(--navy-ink);
}

.extra-item strong { color: var(--gold); white-space: nowrap; }

@media (max-width: 860px) {
  .tiers { flex-direction: column; }
  .extras-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .extras-grid { grid-template-columns: 1fr; }
}

/* ---------- Steps dettagliate (ablauf.html) ---------- */
.steps-detailed-v2 {
  max-width: 900px;
  margin: 0 auto;
}

.step-row-v2 {
  display: flex;
  gap: 44px;
  align-items: center;
  padding: 44px 0;
  border-bottom: 1px solid rgba(31,56,100,0.08);
}

.step-row-v2:last-child { border-bottom: none; }
.step-row-v2.reverse { flex-direction: row-reverse; }

.step-num-v2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.75rem;
  color: var(--gold);
  opacity: 0.9;
  flex-shrink: 0;
  width: 90px;
}

.step-photo-v2 {
  flex: 1;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
}

.step-photo-v2 img { width: 100%; height: 100%; object-fit: cover; display: block; }

.step-text-v2 { flex: 1.2; }

.step-text-v2 h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--navy);
  margin: 0 0 12px;
}

.step-text-v2 p { color: #556; font-size: 0.95rem; line-height: 1.65; margin: 0 0 14px; }
.step-text-v2 ul { padding-left: 18px; margin: 0; }
.step-text-v2 li { color: #556; font-size: 0.9rem; margin-bottom: 6px; }

.faq-teaser {
  background: var(--white);
  border-radius: 20px;
  padding: 44px;
  text-align: center;
  max-width: 700px;
  margin: 70px auto 0;
  border: 1px solid rgba(31,56,100,0.08);
}

.faq-teaser h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.25rem;
  margin: 0 0 10px;
}

.faq-teaser p { color: #667; font-size: 0.9rem; margin: 0 0 20px; }

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  padding: 11px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.btn-outline:hover { background: var(--navy); color: var(--white); }

@media (max-width: 700px) {
  .step-row-v2, .step-row-v2.reverse { flex-direction: column; }
  .step-num-v2 { width: auto; font-size: 2.5rem; }
  .step-photo-v2 { width: 100%; }
}

/* ---------- Storia + valori (ueber-uns.html) ---------- */
.story-section-v2 {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.story-photo-v2 {
  flex: 1;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.story-photo-v2 img { width: 100%; height: 100%; object-fit: cover; display: block; }

.story-text-v2 { flex: 1.1; }

.story-text-v2 h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.75rem;
  color: var(--navy);
  margin: 0 0 20px;
  line-height: 1.3;
}

.story-text-v2 p { color: #556; font-size: 0.95rem; line-height: 1.7; margin: 0 0 16px; }

.values-section-v2 {
  background: var(--navy-dark);
  padding: 80px 0;
}

.values-inner-v2 { max-width: 1000px; margin: 0 auto; }

.values-inner-v2 h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--white);
  text-align: center;
  margin: 0 0 50px;
}

.values-grid-v2 { display: flex; gap: 24px; }

.value-card-v2 { flex: 1; text-align: center; }

.value-icon-v2 {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(191,144,0,0.15);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 16px;
}

.value-card-v2 h4 {
  color: var(--white);
  font-size: 1rem;
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 600;
}

.value-card-v2 p { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.6; margin: 0; }

@media (max-width: 800px) {
  .story-section-v2 { flex-direction: column; }
  .story-photo-v2 { width: 100%; height: 260px; }
  .values-grid-v2 { flex-direction: column; gap: 32px; }
}

/* ---------- Team (team.html) ---------- */
.team-section-v2 { max-width: 1000px; margin: 0 auto; }

.team-grid-v2 {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}

.team-card-v2 {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  width: 260px;
  border: 1px solid rgba(31,56,100,0.08);
  box-shadow: 0 10px 30px rgba(31,56,100,0.06);
}

.team-photo-v2 {
  height: 220px;
  background: var(--tint);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid #eee;
}

.team-photo-v2 svg { width: 56px; height: 56px; fill: var(--navy); opacity: 0.3; }

.team-info-v2 { padding: 20px; text-align: center; }

.team-info-v2 h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0 0 4px;
}

.team-info-v2 .role {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.team-info-v2 p { color: #667; font-size: 0.85rem; line-height: 1.5; margin: 0; }

.team-card-v2.add-placeholder {
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  border: 2px dashed #ccc; background: transparent; box-shadow: none;
  color: #999; font-size: 0.85rem; text-align: center; padding: 30px;
}

.team-card-v2.add-placeholder .plus { font-size: 2.25rem; color: var(--gold); margin-bottom: 10px; }

.cta-join {
  text-align: center;
  margin-top: 60px;
  padding: 44px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(31,56,100,0.08);
}

.cta-join h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.25rem;
  margin: 0 0 10px;
}

.cta-join p { color: #667; font-size: 0.9rem; margin: 0 0 20px; }

/* ---------- Contatti (kontakt.html) ---------- */
.contact-section-v2 { max-width: 1000px; margin: 0 auto; }

.contact-grid-v2 {
  display: flex;
  gap: 24px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.contact-card-v2 {
  flex: 1;
  min-width: 220px;
  background: var(--white);
  border-radius: 18px;
  padding: 32px 26px;
  border: 1px solid rgba(31,56,100,0.08);
  text-align: center;
}

.contact-icon-v2 {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(191,144,0,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 16px;
}

.contact-card-v2 h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1rem;
  margin: 0 0 8px;
}

.contact-card-v2 p { color: #667; font-size: 0.85rem; margin: 0 0 14px; }
.contact-card-v2 a { color: var(--gold); font-weight: 600; font-size: 0.85rem; text-decoration: none; }
.contact-card-v2 a:hover { text-decoration: underline; }

.map-and-zones-v2 {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.contact-map-v2 {
  position: relative;
  flex: 1.1;
  min-width: 280px;
  border-radius: 18px;
  overflow: hidden;
  height: 320px;
}

.contact-map-v2 iframe { width: 100%; height: 100%; border: 0; display: block; }

.map-coverage-badge-v2 {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.zones-list-v2 { flex: 1; min-width: 260px; }

.zones-list-v2 h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.25rem;
  margin: 0 0 16px;
}

.zones-list-v2 p { color: #667; font-size: 0.9rem; margin: 0 0 20px; line-height: 1.6; }

.zone-tags-v2 { display: flex; flex-wrap: wrap; gap: 8px; }

.zone-tag-v2 {
  background: rgba(31,56,100,0.06);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
}

@media (max-width: 700px) {
  .contact-grid-v2 { flex-direction: column; }
  .map-and-zones-v2 { flex-direction: column; }
  .contact-map-v2 { width: 100%; }
}

/* ---------- FAQ (faq.html) ---------- */
.faq-section-v2 { max-width: 760px; margin: 0 auto; }

.faq-item-v2 {
  background: var(--white);
  border-radius: 14px;
  margin-bottom: 14px;
  border: 1px solid rgba(31,56,100,0.08);
  overflow: hidden;
}

.faq-q-v2 {
  padding: 20px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}

.faq-q-v2 .faq-icon { color: var(--gold); font-size: 1.15rem; flex-shrink: 0; line-height: 1; }

.faq-a-v2 {
  padding: 0 26px 20px;
  color: #556;
  font-size: 0.9rem;
  line-height: 1.65;
}

.faq-a-v2[hidden] { display: none; }

.contact-cta-v2 {
  text-align: center;
  margin-top: 50px;
  padding: 36px;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid rgba(31,56,100,0.08);
}

.contact-cta-v2 p { color: #667; font-size: 0.9rem; margin: 0 0 16px; }

/* ---------- Validazione CAP ---------- */
.plz-error {
  color: #B3261E;
  font-size: 0.8rem;
  margin-top: 8px;
  display: none;
  width: 100%;
}

.plz-error.visible { display: block; }

.qs-input.is-invalid, .field input.is-invalid {
  border-color: #B3261E !important;
}
