/* ==========================================================================
   MauTransport — design system
   ========================================================================== */

:root {
  /* Brand colors — sourced directly from official Mautransport business cards */
  --navy-950: #001531;
  --navy-900: #002147;
  --navy-800: #0a2e56;
  --navy-700: #163d68;
  --navy-100: #e6ebf1;
  --orange-500: #ea4d0a;
  --orange-600: #cc3f04;
  --orange-400: #ff7a3d;
  --orange-100: #fde3d5;
  --ink: #101825;
  --ink-soft: #4c5670;
  --paper: #ffffff;
  --paper-soft: #f5f7fa;
  --paper-warm: #faf9f6;
  --border-soft: #e1e5ee;
  --shadow-sm: 0 2px 12px rgba(0, 21, 49, 0.07);
  --shadow-md: 0 18px 40px rgba(0, 21, 49, 0.14);
  --shadow-lg: 0 34px 70px rgba(0, 21, 49, 0.22);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --font-heading: 'Manrope', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy-950);
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }

p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange-500);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: 12px;
}
.eyebrow-light { color: #ffb28a; }

.section { padding: 88px 0; }
@media (max-width: 720px) { .section { padding: 60px 0; } }

.section-heading { max-width: 720px; margin-bottom: 44px; }
.section-heading-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading-split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-end;
  max-width: none;
}
.section-heading-split h2 { margin-bottom: 0; }
.group-lead { max-width: 460px; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange-500);
  color: #fff;
  box-shadow: 0 10px 24px rgba(244, 105, 31, 0.32);
}
.btn-primary:hover { background: var(--orange-600); }
.btn-ghost {
  background: transparent;
  color: var(--navy-950);
  border-color: var(--border-soft);
}
.btn-ghost:hover { border-color: var(--navy-950); }
.btn-outline {
  background: transparent;
  color: var(--navy-950);
  border-color: var(--navy-950);
}
.btn-outline:hover { background: var(--navy-950); color: #fff; }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover { background: #fff; color: var(--navy-950); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-submit { width: 100%; margin-top: 8px; }

/* ==========================================================================
   Top bar
   ========================================================================== */
.top-bar {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}
.top-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.top-bar-tagline { display: inline-flex; align-items: center; gap: 8px; color: inherit; }
.top-bar-tagline i { color: var(--orange-500); font-size: 0.78rem; }

.site-switcher { display: flex; align-items: center; gap: 4px; }
.site-switcher-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  transition: background 0.15s ease, color 0.15s ease;
}
.site-switcher-item:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.site-switcher-item.is-current {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 600;
}
.site-switcher-code { font-size: 0.78rem; letter-spacing: 0.04em; }

@media (max-width: 720px) {
  .top-bar-tagline span { display: none; }
  .site-switcher { gap: 2px; }
  .site-switcher-item { padding: 4px 7px; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 1px 0 rgba(0,21,49,0.02);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { height: 24px; width: auto; }

.main-nav ul { display: flex; gap: 32px; }
.main-nav > ul > li { position: relative; display: flex; align-items: center; height: var(--header-height); }
.main-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-800);
  position: relative;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: var(--orange-500);
  transition: width 0.2s ease;
}
.main-nav a:hover::after,
.main-nav a.is-active::after { width: 100%; }
.main-nav a.is-active { color: var(--orange-600); }

.nav-caret { font-size: 0.62rem; color: var(--ink-soft); transition: transform 0.2s ease; }
.has-dropdown:hover .nav-caret,
.has-dropdown:focus-within .nav-caret { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 340px;
  background: var(--paper);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 600;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-dropdown-inner { padding: 10px; display: flex; flex-direction: column; gap: 2px; }
.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease;
}
.nav-dropdown-item:hover { background: var(--paper-soft); }
.nav-dropdown-item::after { display: none; }
.nav-dropdown-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--navy-100);
  color: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
}
.nav-dropdown-item:hover .nav-dropdown-icon { background: var(--orange-100); color: var(--orange-600); }
.nav-dropdown-text { display: flex; flex-direction: column; gap: 2px; }
.nav-dropdown-title { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; color: var(--navy-900); }
.nav-dropdown-desc { font-size: 0.8rem; color: var(--ink-soft); font-weight: 400; line-height: 1.35; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-cta { display: inline-flex; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy-950);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  max-height: 0;
  overflow: hidden;
  background: var(--paper);
  border-top: 1px solid var(--border-soft);
  transition: max-height 0.3s ease;
}
.mobile-nav.is-open { max-height: 80vh; overflow-y: auto; }
.mobile-nav ul { padding: 16px 24px 24px; display: flex; flex-direction: column; gap: 14px; }
.mobile-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy-900);
  display: block;
  padding: 6px 0;
}
.mobile-nav a.is-active { color: var(--orange-600); }
.mobile-nav .btn { width: 100%; margin-top: 8px; }

.mobile-nav-parent {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy-900);
  padding: 6px 0;
  cursor: pointer;
}
.mobile-nav-parent i { font-size: 0.75rem; color: var(--ink-soft); transition: transform 0.2s ease; }
.mobile-nav-parent[aria-expanded="true"] i { transform: rotate(180deg); }
.mobile-nav-children {
  max-height: 0;
  overflow: hidden;
  padding: 0 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: max-height 0.25s ease;
}
.mobile-has-children.is-open .mobile-nav-children { max-height: 600px; padding-top: 6px; }
.mobile-nav-children a { font-size: 0.95rem; font-weight: 500; color: var(--ink-soft); }
.mobile-nav-children a.is-active { color: var(--orange-600); }

@media (max-width: 860px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: block; }
}

/* ==========================================================================
   Hero (Home) — full-bleed photo with dark overlay
   ========================================================================== */
.hero-home {
  position: relative;
  color: #fff;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0,21,49,0.92) 0%, rgba(0,21,49,0.78) 38%, rgba(0,21,49,0.42) 68%, rgba(0,21,49,0.2) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 140px 24px 96px;
}
.hero-copy { max-width: 620px; }
.hero-copy .eyebrow { color: var(--orange-500); }
.hero-home h1 { color: #fff; }
.hero-lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  max-width: 480px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 12px; }
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

@media (max-width: 720px) {
  .hero-home { min-height: 560px; }
  .hero-inner { padding: 108px 24px 64px; }
}

/* ---------- About band (full-width dark statement) ---------- */
.about-band {
  background: var(--navy-950);
  color: #fff;
  padding: 88px 0;
  text-align: center;
}
.about-band-inner { max-width: 760px; margin: 0 auto; }
.about-band h2 { color: #fff; }
.about-band p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 0; }
@media (max-width: 720px) { .about-band { padding: 60px 0; } }

/* ---------- Services preview (uses shared .solution-row, see Servizi section) ---------- */
.services-cta { text-align: center; margin-top: 8px; }

/* ---------- Method (home) ---------- */
.method-section { background: var(--paper-soft); }
.method-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.method-intro { padding-top: 4px; }
.method-dot {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange-500);
  margin-bottom: 18px;
}
.method-intro h2 { margin-bottom: 14px; }
.method-intro p { color: var(--ink-soft); }

.method-list { display: flex; flex-direction: column; gap: 16px; }
.method-card {
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.method-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.method-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--orange-500);
  flex-shrink: 0;
  min-width: 56px;
}
.method-card-body h3 { margin-bottom: 4px; }
.method-card-body p { margin-bottom: 0; }

@media (max-width: 860px) {
  .method-inner { grid-template-columns: 1fr; gap: 28px; }
  .method-card { padding: 24px; gap: 16px; }
}

/* ---------- Why split (full-bleed image + testimonial overlay) ---------- */
.why-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 560px;
}
.why-split-copy { background: var(--navy-950); color: #fff; display: flex; align-items: center; }
.why-split-copy-inner { padding: 72px 56px; max-width: 460px; margin-left: auto; }
.why-split-copy .eyebrow { color: var(--orange-500); }
.why-split-copy h2 { color: #fff; }
.why-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.why-list li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,0.88); font-weight: 500; }
.why-list li i { color: var(--orange-500); margin-top: 3px; }

.why-split-media { position: relative; overflow: hidden; }
.why-split-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.why-split-testimonial {
  position: absolute;
  right: 32px;
  bottom: 32px;
  left: 32px;
  max-width: 460px;
  margin-left: auto;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-lg);
}
.why-split-testimonial p {
  color: var(--navy-900);
  font-style: italic;
  font-weight: 500;
  margin: 0 0 14px;
}
.why-split-testimonial-nav { display: flex; gap: 8px; }
.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-soft);
}
.testimonial-dot.is-active { background: var(--orange-500); }

@media (max-width: 900px) {
  .why-split { grid-template-columns: 1fr; min-height: 0; }
  .why-split-copy-inner { padding: 56px 24px; margin: 0 auto; max-width: 100%; }
  .why-split-media { height: 420px; }
  .why-split-testimonial { left: 20px; right: 20px; bottom: 20px; max-width: none; }
}
@media (max-width: 480px) {
  .why-split-media { height: 320px; }
}

/* ==========================================================================
   Page hero (secondary pages)
   ========================================================================== */
.page-hero {
  background: linear-gradient(180deg, var(--navy-950), var(--navy-800));
  color: #fff;
  padding: 96px 0 72px;
}
.page-hero-inner { max-width: 760px; }
.page-hero .eyebrow { color: var(--orange-500); }
.page-hero h1 { color: #fff; margin-bottom: 8px; }
.page-hero .hero-lead { color: rgba(255,255,255,0.75); }

.page-hero-servizi-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  max-width: none;
}
.page-hero-cards { display: flex; flex-direction: column; gap: 18px; }
.page-hero-cards .services-intro-card { padding: 24px 26px; }
.page-hero-cards .services-intro-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.page-hero-cards .services-intro-card p { font-size: 0.92rem; margin: 0; }
@media (max-width: 860px) {
  .page-hero-servizi-inner { grid-template-columns: 1fr; gap: 28px; }
}

.page-hero-media {
  width: 100%;
  height: 360px;
  overflow: hidden;
}
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 780px) { .page-hero-media { height: 220px; } }

/* ---------- Chi Siamo ---------- */
.intro-section {}
.intro-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.intro-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.intro-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 860px) { .intro-grid { grid-template-columns: 1fr; gap: 32px; } .intro-media { order: -1; } }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
}
.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.stat-label { display: block; font-size: 0.82rem; color: var(--ink-soft); line-height: 1.4; }
@media (max-width: 640px) { .stat-row { grid-template-columns: 1fr; gap: 16px; } }

.values-section { background: var(--paper-soft); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--navy-950);
  color: var(--orange-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
}
@media (max-width: 860px) { .values-grid { grid-template-columns: 1fr; } }

.group-section { background: var(--paper-soft); }
.group-note { max-width: 760px; margin-top: -12px; }
.group-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.group-gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 860px) {
  .group-gallery { grid-template-columns: repeat(2, 1fr); }
}

.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.who-card {
  text-align: center;
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}
.who-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--orange-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
@media (max-width: 860px) { .who-grid { grid-template-columns: 1fr; } }

.who-section-dark {
  background: linear-gradient(180deg, var(--navy-950), var(--navy-800));
  color: #fff;
}
.who-section-dark .section-heading h2 { color: #fff; }
.who-section-dark .section-heading p { color: rgba(255,255,255,0.7); }
.who-section-dark .who-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: none;
}
.who-section-dark .who-card h3 { color: #fff; }
.who-section-dark .who-card p { color: rgba(255,255,255,0.7); }
.who-section-dark .who-icon {
  background: transparent;
  border: 2px solid var(--orange-500);
  color: var(--orange-500);
}

.claim-section { background: var(--paper-soft); text-align: center; }
.claim-inner { max-width: 720px; margin: 0 auto; }
.claim-section-dark { background: var(--navy-950); color: #fff; }
.claim-section-dark h2 { color: #fff; }
.claim-section-dark p { color: rgba(255,255,255,0.75); }

/* ---------- Servizi ---------- */
.services-intro-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.services-intro-card {
  background: var(--paper-soft);
  border-radius: var(--radius-md);
  padding: 36px;
}
.services-intro-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--navy-950); color: var(--orange-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
}
.page-hero-cards .services-intro-card { box-shadow: var(--shadow-lg); }
.page-hero-cards .services-intro-icon { background: var(--orange-500); color: #fff; width: 44px; height: 44px; font-size: 1.1rem; border-radius: 12px; margin-bottom: 12px; }

.solution-media-dark {
  background: var(--navy-950);
  padding: 28px;
  aspect-ratio: auto;
}
.solution-media-dark img {
  position: static;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  display: block;
}
@media (max-width: 780px) { .services-intro-grid { grid-template-columns: 1fr; } }

.solution-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border-soft);
}
.solution-row:last-child { border-bottom: none; }
.solution-row-reverse { direction: rtl; }
.solution-row-reverse > * { direction: ltr; }
.solution-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--orange-600);
  background: var(--orange-100);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.solution-copy ul { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.solution-copy li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink); }
.solution-copy li i { color: var(--orange-500); margin-top: 4px; }
.solution-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.solution-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 860px) {
  .solution-row, .solution-row-reverse { grid-template-columns: 1fr; direction: ltr; gap: 24px; }
}

.routes-section { background: var(--paper-soft); }
.routes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.routes-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
}
.routes-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 860px) { .routes-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ==========================================================================
   Shipment form (shared)
   ========================================================================== */
.shipment-section { background: var(--paper-soft); padding: 96px 0; }
.shipment-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
}
.shipment-intro { align-self: start; padding-top: 8px; }
.shipment-points { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.shipment-points li { display: flex; gap: 10px; align-items: flex-start; color: var(--navy-900); font-weight: 500; }
.shipment-points li i { color: var(--orange-500); margin-top: 3px; }

.shipment-form {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.form-field label span { color: var(--orange-500); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--border-soft);
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(244, 105, 31, 0.15);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
  border-color: #e0512f;
}

.form-consents { display: flex; flex-direction: column; gap: 14px; margin: 8px 0 28px; }
.checkbox-field {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.checkbox-field input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--orange-500);
  flex-shrink: 0;
}
.checkbox-field a { color: var(--orange-600); text-decoration: underline; }

.form-feedback {
  margin: 14px 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 20px;
}
.form-feedback.is-success { color: #1c8a4c; }
.form-feedback.is-error { color: #d94a2c; }

@media (max-width: 940px) {
  .shipment-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .shipment-form { padding: 28px; }
}

/* ==========================================================================
   Contatti page
   ========================================================================== */
.contact-page { min-height: calc(100vh - var(--header-height)); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: calc(100vh - var(--header-height));
}
.contact-panel { padding: 72px 0; display: flex; align-items: center; }
.contact-panel-inner { max-width: 480px; margin: 0 auto; padding: 0 24px; width: 100%; }
.contact-lead { font-size: 1.02rem; }
.contact-info { display: flex; flex-direction: column; gap: 12px; margin: 20px 0 32px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--navy-900);
}
.contact-info-item i {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--orange-100);
  color: var(--orange-600);
  display: flex; align-items: center; justify-content: center;
}
.contact-form { box-shadow: none; border: 1px solid var(--border-soft); padding: 0; background: transparent; }
.contact-media { position: relative; overflow: hidden; }
.contact-media img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-media { height: 320px; order: -1; }
  .contact-panel { padding: 48px 0; }
}

/* ---------- Not found ---------- */
.not-found { padding: 140px 0; text-align: center; }
.not-found-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.7); }
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px 40px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 0.7fr 1fr;
  gap: 32px;
}
.footer-brand img { height: 22px; margin-bottom: 16px; }
.footer-desc { max-width: 320px; color: rgba(255,255,255,0.6); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.footer-contact p { margin: 0; color: rgba(255,255,255,0.7); font-size: 0.92rem; display: flex; gap: 8px; align-items: center; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--orange-500); }

.footer-col h3 {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.footer-col a:hover { color: var(--orange-500); }
.footer-newsletter p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.footer-sites a { display: inline-flex; align-items: center; }

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.82rem;
}
.footer-legal { display: flex; gap: 10px; }
.footer-legal a { color: rgba(255,255,255,0.6); }
.footer-legal a:hover { color: var(--orange-500); }

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

/* ==========================================================================
   Page hero — decorative variants per section (no extra images required)
   ========================================================================== */
.page-hero-settori,
.page-hero-rete,
.page-hero-sostenibilita,
.page-hero-qualita,
.page-hero-casi,
.page-hero-news,
.page-hero-lavoro,
.page-hero-flotta,
.page-hero-tecnologia,
.page-hero-faq {
  position: relative;
  overflow: hidden;
}
.page-hero-settori::before,
.page-hero-rete::before,
.page-hero-sostenibilita::before,
.page-hero-qualita::before,
.page-hero-casi::before,
.page-hero-news::before,
.page-hero-lavoro::before,
.page-hero-flotta::before,
.page-hero-tecnologia::before,
.page-hero-faq::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -160px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 105, 31, 0.22) 0%, rgba(244, 105, 31, 0) 68%);
  pointer-events: none;
}
.page-hero-rete::after,
.page-hero-qualita::after,
.page-hero-tecnologia::after {
  content: '';
  position: absolute;
  bottom: -140px;
  left: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }

/* ==========================================================================
   Chi Siamo — global stats band + timeline
   ========================================================================== */
.global-stats-band {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.global-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.global-stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.global-stat-item:last-child { border-right: none; }
.global-stat-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.9rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.global-stat-label {
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.global-stat-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 860px) {
  .global-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .global-stat-item:nth-child(2) { border-right: none; }
  .global-stat-item:nth-child(1),
  .global-stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
}
@media (max-width: 480px) {
  .global-stats-grid { grid-template-columns: 1fr; }
  .global-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .global-stat-item:last-child { border-bottom: none; }
}

.timeline-section { background: var(--paper-soft); }
.timeline-list {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
  position: relative;
  display: flex;
  justify-content: center;
}
.timeline-marker::before {
  content: '';
  position: absolute;
  top: 22px;
  bottom: -18px;
  width: 2px;
  background: var(--border-soft);
}
.timeline-item:last-child .timeline-marker::before { display: none; }
.timeline-dot {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--paper-soft);
  border: 3px solid var(--orange-500);
  margin-top: 4px;
}
.timeline-content { padding-top: 0; }
.timeline-period {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-600);
  background: var(--orange-100);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.timeline-content h3 { margin-bottom: 6px; }
.timeline-content p { margin-bottom: 0; }
@media (max-width: 640px) {
  .timeline-item { grid-template-columns: 26px 1fr; gap: 16px; }
  .timeline-dot { width: 14px; height: 14px; }
}

/* ==========================================================================
   Settori (Industries)
   ========================================================================== */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.sector-card {
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sector-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sector-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--navy-950);
  color: var(--orange-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
}
.sector-card ul { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.sector-card li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink); font-size: 0.92rem; }
.sector-card li i { color: var(--orange-500); margin-top: 4px; flex-shrink: 0; }
@media (max-width: 780px) { .sectors-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Rete e Copertura (Network coverage)
   ========================================================================== */
.network-section { background: var(--paper-soft); }
.network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.network-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.network-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.network-card-code {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy-950);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}
.network-card-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.network-card-body p { font-size: 0.88rem; margin-bottom: 10px; }
.network-card-transit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange-600);
}
@media (max-width: 940px) { .network-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .network-grid { grid-template-columns: 1fr; } }

.corridors-section {}
.corridors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.corridor-card {
  text-align: center;
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}
.corridor-icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--orange-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
@media (max-width: 860px) { .corridors-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Sostenibilità (Sustainability / ESG)
   ========================================================================== */
.pillars-section {}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar-card {
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--navy-950);
  color: var(--orange-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.pillar-card h3 { font-size: 1.08rem; }
.pillar-card p { font-size: 0.9rem; margin-bottom: 0; }
@media (max-width: 940px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillars-grid { grid-template-columns: 1fr; } }

.commitments-section { background: var(--paper-soft); }
.commitments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.commitments-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.commitments-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.commitments-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.commitments-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--navy-900); font-weight: 500; }
.commitments-list li i { color: var(--orange-500); margin-top: 4px; flex-shrink: 0; }
@media (max-width: 860px) {
  .commitments-grid { grid-template-columns: 1fr; gap: 32px; }
  .commitments-media { order: -1; }
}

/* ==========================================================================
   Qualità e Certificazioni (Quality & compliance)
   ========================================================================== */
.guarantees-section {}
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.guarantee-card {
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.guarantee-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.guarantee-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--orange-100);
  color: var(--orange-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
}
@media (max-width: 780px) { .guarantees-grid { grid-template-columns: 1fr; } }

.process-section-dark {
  background: linear-gradient(180deg, var(--navy-950), var(--navy-800));
  color: #fff;
}
.process-section-dark .section-heading h2 { color: #fff; }
.process-section-dark .section-heading p { color: rgba(255,255,255,0.7); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.process-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--orange-500);
  margin-bottom: 12px;
}
.process-card h3 { color: #fff; font-size: 1.02rem; }
.process-card p { color: rgba(255,255,255,0.68); font-size: 0.88rem; margin-bottom: 0; }
@media (max-width: 940px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Casi Studio (Case studies)
   ========================================================================== */
.cases-section {}
.case-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border-soft);
}
.case-row:first-child { padding-top: 0; }
.case-row:last-child { border-bottom: none; padding-bottom: 0; }
.case-row-reverse { direction: rtl; }
.case-row-reverse > * { direction: ltr; }
.case-copy h3 { margin-top: 12px; }
.case-block { margin-top: 22px; }
.case-block h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy-800);
  margin-bottom: 8px;
}
.case-block h4 i { color: var(--orange-500); }
.case-block p { margin-bottom: 0; font-size: 0.95rem; }
.case-block-result h4 { color: var(--orange-600); }
.case-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.case-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 860px) {
  .case-row, .case-row-reverse { grid-template-columns: 1fr; direction: ltr; gap: 24px; padding: 40px 0; }
}

/* ==========================================================================
   News / Newsroom
   ========================================================================== */
.news-section {}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
}
.news-card {
  padding: 32px 0;
  border-bottom: 1px solid var(--border-soft);
}
.news-list article:first-child { padding-top: 0; }
.news-list article:last-child { border-bottom: none; padding-bottom: 0; }
.news-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.news-card-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-600);
  background: var(--orange-100);
  padding: 4px 12px;
  border-radius: 999px;
}
.news-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.news-card p { margin-bottom: 0; }

/* ==========================================================================
   Lavora con Noi (Careers)
   ========================================================================== */
.benefits-section {}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}
.benefit-icon {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--orange-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.benefit-card h3 { font-size: 1rem; }
.benefit-card p { font-size: 0.88rem; margin-bottom: 0; }
@media (max-width: 940px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .benefits-grid { grid-template-columns: 1fr; } }

.openings-section-dark {
  background: linear-gradient(180deg, var(--navy-950), var(--navy-800));
  color: #fff;
}
.openings-section-dark .section-heading h2 { color: #fff; }
.openings-section-dark .section-heading p { color: rgba(255,255,255,0.7); }
.openings-list { display: flex; flex-direction: column; gap: 16px; }
.opening-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.opening-card-body h3 { color: #fff; font-size: 1.05rem; margin-bottom: 8px; }
.opening-card-meta { display: flex; gap: 18px; flex-wrap: wrap; }
.opening-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.68);
}
.opening-card-meta i { color: var(--orange-500); }
@media (max-width: 640px) {
  .opening-card { flex-direction: column; align-items: flex-start; }
  .opening-card .btn { width: 100%; }
}

/* ==========================================================================
   Reveal-on-scroll animation
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   FAQ / Centro Assistenza
   ========================================================================== */
.faq-container { max-width: 880px; margin: 0 auto; }
.faq-group { margin-bottom: 48px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy-950);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange-500);
  display: inline-block;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item:has(.faq-question[aria-expanded="true"]) {
  box-shadow: var(--shadow-sm);
  border-color: var(--orange-400);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  text-align: left;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-900);
}
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--paper-soft);
  color: var(--orange-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  transition: transform 0.2s ease, background 0.2s ease;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--orange-100);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}
.faq-item.is-open .faq-answer { max-height: 400px; }
@media (max-width: 560px) {
  .faq-question { padding: 16px 18px; font-size: 0.94rem; }
}
