@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/oswald-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/oswald-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/oswald-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/oswald-700.woff2') format('woff2');
}

/* ============================================================
   FORD COUGAR CLUB ITALIA — Stylesheet
   Palette: #0a0a0a (bg), #E30613 (rosso), #ffffff (testo)
   Font Oswald caricato via <link> in ogni pagina HTML (head)
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:      #E30613;
  --red-text:  #f5222e;
  --red-dark: #b50010;
  --black:    #000000;
  --dark:     #111111;
  --card:     #181818;
  --border:   #2a2a2a;
  --white:    #ffffff;
  --gray:     #999999;
  --light:    #cccccc;
  --font-title: 'Oswald', sans-serif;
  --font-body: 'Trebuchet MS', 'Segoe UI', sans-serif;
  --radius:   4px;
  --shadow:   0 4px 24px rgba(0,0,0,0.5);
  --nav-height: 60px;
  --nav-height-mobile: 52px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-height);
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

/* ---------- Utility ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Banner storico ---------- */
.banner-wrap {
  text-align: center;
  padding: 32px 24px 16px;
}

.banner-img {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(255,255,255,0.15);
  overflow: hidden;
}

.banner-img img {
  width: 100%;
  display: block;
}

.banner-caption {
  font-size: 12px;
  font-style: italic;
  color: var(--gray);
  margin-top: 10px;
}

/* ---------- Navbar (fixed, dropdown raggruppati) ---------- */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(227,6,19,0.5);
  padding: 0 16px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
  height: 100%;
}

.main-nav li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.main-nav > ul > li > a,
.main-nav .nav-group-label {
  color: var(--light);
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 16px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.main-nav > ul > li > a.active,
.main-nav li:hover > .nav-group-label,
.main-nav li.open > .nav-group-label,
.main-nav li:hover > a {
  color: var(--white);
  background: var(--card);
}

.nav-group-label svg {
  width: 10px;
  transition: transform 0.2s;
}

.main-nav li:hover .nav-group-label svg,
.main-nav li.open .nav-group-label svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  z-index: 1001;
  box-shadow: var(--shadow);
}

.main-nav li:hover .nav-dropdown,
.main-nav li.open .nav-dropdown,
body > .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 13px 18px;
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--light);
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown a:last-child { border-bottom: none; }

.nav-dropdown a:hover {
  background: var(--card);
  color: var(--red-text);
}

.nav-dropdown a.active {
  color: var(--red-text);
  font-weight: 600;
}

/* ---------- Page content ---------- */
.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.page-content.page-content-no-top {
  padding-top: 0;
}

.page-title {
  font-family: var(--font-title);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  color: var(--red-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.15;
  text-align: center;
}

.page-title .subtitle {
  display: block;
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--white);
  font-weight: 400;
  letter-spacing: 3px;
  margin-top: 6px;
}

.title-divider {
  border: none;
  height: 1px;
  background: rgba(227,6,19,0.5);
  margin: 24px 0 48px;
}

.section-divider {
  border: none;
  height: 1px;
  background: rgba(227,6,19,0.5);
  margin: 48px 0;
}

/* ---------- Hero (index) ---------- */
.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4px 24px 0;
  text-align: center;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.hero-country {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.hero-country::before,
.hero-country::after {
  content: '';
  width: 140px;
  height: 3px;
  background: linear-gradient(to right, #009246 0%, #009246 33%, #ffffff 33%, #ffffff 66%, #ce2b37 66%, #ce2b37 100%);
}

.hero-country span {
  font-family: var(--font-title);
  font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--light);
  line-height: 1.7;
  margin-bottom: 8px;
}

.hero-badge {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid var(--white);
  border-radius: 6px;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.hero-note {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-contact-label {
  font-size: 14px;
  color: var(--light);
  margin-bottom: 14px;
}

.hero-contact-link {
  display: inline-block;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 6px;
  transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}

.hero-contact-link:hover {
  background-color: rgba(255,255,255,0.08);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ---------- Description blocks (layout: immagine fissa + colonna con tick) ---------- */
.description-block {
  margin-bottom: 0;
}

.description-image {
  float: left;
  width: 320px;
  margin: 0 28px 16px 0;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(255,255,255,0.15);
  overflow: hidden;
}

.description-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.description-image.description-image-tall img {
  height: 320px;
}

.description-image.description-image-logo img {
  height: 320px;
  object-fit: contain;
}

.description-image.description-image-wide {
  width: 460px;
}

/* Classe dedicata per immagini con testo scritto sopra (es. svt_home.jpg) */
.description-image.description-image-svt-home {
  width: 420px;
}

.description-image.description-image-svt-home img {
  height: auto;
  max-height: 340px;
  object-fit: contain;
}

/* Foto panoramica home (cougar_rossa.jpg con cornice integrata nel file) */
.description-image.description-image-panoramic {
  width: 520px;
  background: var(--black);
}

.description-image.description-image-panoramic img {
  height: auto;
  object-fit: contain;
}

.description-clearfix {
  clear: both;
}

/* Colonna centrale (decorazioni verticali rimosse) */
.text-column-wrap {
  max-width: 1020px;
  margin: 0 auto;
}

.text-column-inner {
  position: relative;
  padding: 36px 44px;
}

.description-text h2 {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  padding-left: 14px;
  position: relative;
  display: inline-block;
}

.description-text h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  background: var(--red);
}

.description-text p,
.description-text-full p {
  color: var(--light);
  font-size: 15px;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 13px;
}

.description-text-full {
  margin-top: 6px;
}

.description-text-full a {
  color: var(--red-text);
  text-decoration: underline;
  transition: color 0.2s;
}

.description-text-full a:hover {
  color: var(--white);
}

/* Link generico dentro testo narrativo (riusabile in tutte le pagine) */
.text-link {
  color: var(--red-text);
  text-decoration: underline;
  transition: color 0.2s;
}

.text-link:hover {
  color: var(--white);
}

/* ---------- Pagine legali (Privacy, Cookie, Note Legali) ---------- */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-updated {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 36px;
  text-align: center;
}

.legal-content h2 {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 40px;
  margin-bottom: 16px;
  border-left: 4px solid var(--red);
  padding-left: 14px;
}

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

.legal-content p {
  color: var(--light);
  font-size: 15px;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 0 0 14px;
  padding-left: 0;
  list-style: none;
}

.legal-content ul li {
  color: var(--light);
  font-size: 15px;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

/* Liste con trattino rosso dentro intro-text */
.intro-text ul.legal-content-ul {
  margin: 0 0 14px;
  padding-left: 0;
  list-style: none;
}

.intro-text ul.legal-content-ul li {
  color: var(--light);
  font-size: 15.5px;
  line-height: 1.75;
  padding-left: 22px;
  position: relative;
  margin-bottom: 6px;
}

.intro-text ul.legal-content-ul li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: var(--red-text);
  font-weight: 700;
}

/* Piccolo sottotitolo descrittivo sotto un H2 (kicker) */
.section-kicker {
  font-family: var(--font-title);
  font-size: 14px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: -8px;
  margin-bottom: 16px;
}

/* ---------- Galleria Evoluzione ---------- */
.evolution-series {
  margin-bottom: 48px;
}

.evolution-series-title {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-text);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(227,6,19,0.5);
}

.evolution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.evolution-item {
  display: block;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 6px;
  overflow: hidden;
  cursor: zoom-in;
  transition: box-shadow 0.2s;
}

.evolution-item:hover {
  box-shadow: 0 0 18px rgba(255,255,255,0.3);
}

.evolution-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.evolution-caption {
  background: rgba(0,0,0,0.75);
  color: var(--light);
  font-size: 12px;
  text-align: center;
  padding: 6px 8px;
  font-family: var(--font-title);
  letter-spacing: 0.5px;
  display: block;
}

/* ---------- Citazione fonte storica in fondo pagina ---------- */
.source-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  font-style: italic;
  margin-top: 32px;
}

/* Logo conclusivo a fine pagina (prima del footer) */
.closing-logo {
  text-align: center;
  margin: 48px auto 0;
}

.closing-logo img {
  max-width: 320px;
  width: 100%;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.85);
  box-shadow: 0 0 12px rgba(255,255,255,0.15);
  margin: 0 auto;
  opacity: 1;
}

/* Galleria a due foto per le versioni speciali */
.version-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.version-gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.85);
  box-shadow: 0 0 12px rgba(255,255,255,0.15);
}

/* ---------- Slider catalogo storico (autoplay + lightbox) ---------- */
.catalog-slider {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 24px auto 12px;
  position: relative;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(255,255,255,0.15);
  overflow: hidden;
  background: #111;
}

.catalog-slider-track {
  display: flex;
  width: 400%;
  animation: catalogSlide 16s infinite;
}

.catalog-slider-track img {
  width: 25%;
  height: 380px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  cursor: zoom-in;
  user-select: none;
  -webkit-user-drag: none;
}

@keyframes catalogSlide {
  0%, 21%   { transform: translateX(0%); }
  25%, 46%  { transform: translateX(-25%); }
  50%, 71%  { transform: translateX(-50%); }
  75%, 96%  { transform: translateX(-75%); }
  100%      { transform: translateX(0%); }
}

.catalog-slider-track.catalog-slider-track-6 {
  width: 600%;
  animation: catalogSlide6 24s infinite;
}

.catalog-slider-track.catalog-slider-track-6 img {
  width: 16.666%;
  height: 320px;
  object-fit: cover;
}

@keyframes catalogSlide6 {
  0%, 14.5%   { transform: translateX(0%); }
  16.66%, 31.16% { transform: translateX(-16.666%); }
  33.33%, 47.83% { transform: translateX(-33.333%); }
  50%, 64.5%  { transform: translateX(-50%); }
  66.66%, 81.16% { transform: translateX(-66.666%); }
  83.33%, 97.83% { transform: translateX(-83.333%); }
  100%        { transform: translateX(0%); }
}

.catalog-slider-track.catalog-slider-track-8 {
  width: 800%;
  animation: catalogSlide8 32s infinite;
}

.catalog-slider-track.catalog-slider-track-8 img {
  width: 12.5%;
  height: 320px;
  object-fit: cover;
}

@keyframes catalogSlide8 {
  0%, 10.75%   { transform: translateX(0%); }
  12.5%, 23.25% { transform: translateX(-12.5%); }
  25%, 35.75%  { transform: translateX(-25%); }
  37.5%, 48.25% { transform: translateX(-37.5%); }
  50%, 60.75%  { transform: translateX(-50%); }
  62.5%, 73.25% { transform: translateX(-62.5%); }
  75%, 85.75%  { transform: translateX(-75%); }
  87.5%, 98.25% { transform: translateX(-87.5%); }
  100%         { transform: translateX(0%); }
}

.catalog-slider-caption {
  text-align: center;
  font-size: 12px;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 40px;
}

/* Lightbox (CSS-only, via :target) */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox-overlay:target {
  display: flex;
}

.lightbox-overlay img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 4px;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: var(--white);
  font-size: 36px;
  line-height: 1;
  text-decoration: none;
  font-family: var(--font-title);
}

.lightbox-close:hover {
  color: var(--red-text);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 48px;
  line-height: 1;
  text-decoration: none;
  padding: 8px 16px;
  font-family: var(--font-title);
  transition: color 0.2s;
}

.lightbox-nav:hover {
  color: var(--red-text);
}

.lightbox-nav-prev { left: 8px; }
.lightbox-nav-next { right: 8px; }

/* ---------- Immagini inline dentro testo narrativo (foto piccole, no float) ---------- */
.inline-photo {
  max-width: 420px;
  margin: 24px auto;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(255,255,255,0.15);
  overflow: hidden;
}

.inline-photo.inline-photo-large {
  max-width: 600px;
}

.inline-photo.inline-photo-clickable {
  display: block;
  cursor: zoom-in;
  transition: box-shadow 0.2s;
}

.inline-photo.inline-photo-clickable:hover {
  box-shadow: 0 0 18px rgba(255,255,255,0.3);
}

.inline-photo img {
  width: 100%;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.inline-photo-caption {
  text-align: center;
  font-size: 12px;
  color: var(--gray);
  font-style: italic;
  margin: -16px auto 24px;
  max-width: 420px;
}

/* ---------- Galleria componenti SVT ---------- */
.svt-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 32px 0 48px;
}

.svt-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.85);
  box-shadow: 0 0 12px rgba(255,255,255,0.15);
  display: block;
}

/* ---------- Link video esterno (no embed: testo + pulsante verso YouTube) ---------- */
.video-link-wrap {
  max-width: 560px;
  margin: 0 auto 48px;
  text-align: center;
}

.video-link-highlight {
  color: var(--red-text);
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
}

.video-link-button-wrap {
  margin-top: 8px;
}

.video-link-button {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 14px 36px;
  border: 1px solid var(--red);
  border-radius: 6px;
  transition: background-color 0.2s, transform 0.2s;
}

.video-link-button:hover {
  background-color: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}

/* ---------- Scheda Tecnica (e pagine simili con intro + immagine + griglia pulsanti) ---------- */
.intro-text {
  max-width: 880px;
  margin: 0 auto 48px;
}

.intro-text.intro-text-center {
  text-align: center;
}

.intro-text.intro-text-center p {
  text-align: center;
}

.intro-text p {
  color: var(--light);
  font-size: 15.5px;
  line-height: 1.75;
  text-align: justify;
  margin-bottom: 14px;
}

.tech-diagram {
  max-width: 760px;
  margin: 0 auto 48px;
}

.tech-diagram img {
  width: 100%;
  display: block;
}

.model-grid {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.model-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.4;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.model-card:hover {
  border-color: var(--red-text);
  background: #1f1f1f;
  transform: translateY(-3px);
}

/* ---------- Scheda tecnica modello (tabelle dati + foto) ---------- */
.spec-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.spec-tables {
  flex: 1.3;
  min-width: 0;
}

.spec-photo {
  flex: 0 0 380px;
  max-width: 380px;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(255,255,255,0.15);
  overflow: hidden;
  align-self: flex-start;
  position: sticky;
  top: 80px;
}

.spec-photo img {
  width: 100%;
  display: block;
}

.spec-photo.spec-photo-small {
  flex: 0 0 260px;
  max-width: 260px;
}

.spec-section {
  margin-bottom: 32px;
}

.spec-section h2 {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  border-left: 4px solid var(--red);
  padding-left: 12px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

.spec-table tr {
  border-bottom: 1px solid var(--border);
}

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

.spec-table td {
  padding: 9px 4px;
  vertical-align: top;
}

.spec-table td.spec-label {
  color: var(--light);
  font-weight: 600;
  width: 45%;
  padding-right: 12px;
}

.spec-table td.spec-value {
  color: var(--gray);
}

.spec-table td.spec-value strong {
  color: var(--white);
  font-weight: 600;
}

.spec-highlight-red {
  color: var(--red-text) !important;
  font-weight: 700;
}

.spec-highlight-green {
  color: #3fb950 !important;
  font-weight: 600;
}

.spec-full-row {
  max-width: 1100px;
  margin: 0 auto;
}

/* Sotto-titolo rosso semplice per testi narrativi (es. pagina Motore) */
.inline-subtitle {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 700;
  color: var(--red-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.inline-subtitle.spaced-top {
  margin-top: 24px;
}

.inline-subtitle.inline-subtitle-center {
  text-align: center;
}

.tire-size {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 14px;
}

/* ---------- Pagina FAQ / Guida (es. GPL) ---------- */
.faq-logo {
  display: flex;
  justify-content: center;
  margin: 0 auto 28px;
}

.faq-logo img {
  height: 110px;
  width: auto;
}

.faq-hero {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.faq-hero-subtitle {
  font-family: var(--font-title);
  font-size: 16px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.faq-hero p {
  color: var(--light);
  font-size: 15.5px;
  line-height: 1.75;
}

.faq-main-image {
  max-width: 420px;
  margin: 0 auto 48px;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(255,255,255,0.15);
  overflow: hidden;
}

.faq-main-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto 48px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 36px 20px 4px;
  position: relative;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--white);
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--red-text);
  transition: transform 0.25s;
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item summary:hover {
  color: var(--red-text);
}

.faq-answer {
  padding: 0 4px 22px;
  color: var(--light);
  font-size: 15px;
  line-height: 1.7;
  text-align: justify;
}

.faq-note {
  max-width: 780px;
  margin: 0 auto;
  padding: 24px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
}

.faq-note p {
  color: var(--gray);
  font-size: 13.5px;
  line-height: 1.7;
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #060606;
  border-top: 1px solid rgba(227,6,19,0.5);
  padding: 40px 24px 32px;
  text-align: center;
}

.footer-disclaimer {
  max-width: 640px;
  margin: 0 auto 28px;
}

.footer-disclaimer p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 8px;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 24px;
}

.footer-signature img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  opacity: 0.85;
  flex-shrink: 0;
}

.footer-signature-text {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  max-width: 640px;
  margin: 0 auto 24px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.footer-social a {
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.2s;
}

.footer-social a svg {
  width: 22px;
  height: 22px;
}

.footer-social a:hover {
  color: var(--red-text);
  transform: translateY(-2px);
}

.footer-text {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 6px;
}

.footer-text strong {
  color: var(--light);
}

.footer-text a {
  color: var(--light);
  transition: color 0.2s;
}

.footer-text a:hover {
  color: var(--red-text);
}

.footer-legal {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(227,6,19,0.5);
  font-size: 12px;
}

.footer-legal a {
  color: var(--gray);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--red-text);
}

.footer-legal-sep {
  color: var(--border);
  margin: 0 10px;
}

/* ---------- Scroll reveal (riutilizzabile in tutto il sito) ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .text-column-inner {
    padding: 28px 28px;
  }
  .description-image {
    width: 260px;
    margin: 0 22px 14px 0;
  }
  .description-image img {
    height: 180px;
  }
  .description-image.description-image-tall img {
    height: 260px;
  }
  .description-image.description-image-logo img {
    height: 260px;
  }
  .description-image.description-image-wide {
    width: 100%;
    max-width: 420px;
    float: none;
    margin: 0 auto 24px;
  }
  .description-image.description-image-wide img {
    height: 260px;
    object-fit: contain;
  }
  .description-image.description-image-svt-home {
    width: 100%;
    max-width: 420px;
    float: none;
    margin: 0 auto 24px;
  }
  .description-image.description-image-panoramic {
    width: 100%;
    max-width: 560px;
    float: none;
    margin: 0 auto 24px;
  }
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-layout {
    flex-direction: column;
  }
  .spec-photo {
    position: static;
    flex: none;
    width: 100%;
    max-width: 380px;
    margin: 0 auto 8px;
    order: -1;
  }
  .spec-photo.spec-photo-small {
    max-width: 260px;
  }
}

@media (max-width: 640px) {
  body { padding-top: var(--nav-height-mobile); }
  .page-content { padding: 40px 16px 60px; }
  .description-image {
    float: none;
    width: 100%;
    max-width: 380px;
    margin: 0 auto 24px;
  }
  .description-image.description-image-wide {
    width: 100%;
    max-width: 380px;
  }
  .description-image.description-image-svt-home {
    width: 100%;
    max-width: 380px;
  }
  .description-image.description-image-panoramic {
    width: 100%;
    max-width: 100%;
  }
  .description-image.description-image-wide img {
    height: auto;
    object-fit: contain;
  }
  .description-image img { height: 240px; }
  .description-image.description-image-tall img { height: 340px; }
  .description-image.description-image-logo img { height: 280px; }
  .text-column-inner { padding: 24px 18px; }
  .footer-social { gap: 22px; }
  .footer-signature { flex-direction: column; gap: 10px; }
  .footer-signature-text { font-size: 14px; }

  .faq-main-image img { height: 200px; }
  .version-gallery { grid-template-columns: 1fr; }
  .version-gallery img { height: 220px; }
  .evolution-grid { grid-template-columns: repeat(2, 1fr); }
  .evolution-item img { height: 130px; }
  .svt-gallery { grid-template-columns: repeat(2, 1fr); }
  .svt-gallery img { height: 150px; }
  .inline-photo { max-width: 100%; }
  .catalog-slider { max-width: 100%; }
  .catalog-slider-track img { height: 280px; }
  .catalog-slider-track.catalog-slider-track-6 img { height: 220px; }
  .catalog-slider-track.catalog-slider-track-8 img { height: 220px; }
  .lightbox-close { top: 12px; right: 16px; font-size: 28px; }
  .lightbox-nav { font-size: 32px; padding: 6px 10px; }
  .faq-item summary { font-size: 14.5px; padding: 16px 32px 16px 0; }
  .faq-answer { font-size: 14px; }
  .faq-note { padding: 18px 18px; }

  .hero-content { padding: 8px 16px 0; }
  .hero-country { gap: 12px; }
  .hero-country::before,
  .hero-country::after { width: 60px; }
  .hero-country span { letter-spacing: 4px; }
  .hero-subtitle { font-size: 16px; }

  .model-grid { grid-template-columns: repeat(2, 1fr); }

  .main-nav {
    height: var(--nav-height-mobile);
    padding: 0 4px;
    overflow: visible;
    justify-content: flex-start;
  }
  .main-nav ul {
    flex-wrap: nowrap;
    height: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .main-nav li { height: 100%; }
  .main-nav > ul > li > a,
  .main-nav .nav-group-label {
    font-size: 12px;
    padding: 8px 10px;
  }
  .nav-dropdown {
    position: fixed;
    top: var(--nav-height-mobile);
    left: 0;
    right: 0;
    min-width: 0;
    border-radius: 0;
    max-height: 70vh;
    overflow-y: auto;
  }

  /* Su mobile il dropdown si apre SOLO via tap (classe .open), niente hover fantasma */
  .main-nav li:hover .nav-dropdown {
    display: none;
  }
  .main-nav li.open .nav-dropdown,
  body > .nav-dropdown {
    display: block;
  }
}

/* ---------- Pagina Recensioni ---------- */
.inline-subtitle.inline-subtitle-nocase {
  text-transform: none;
}

.review-heading {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 26px 0 12px;
}

.review-byline {
  color: var(--light);
  font-size: 15.5px;
  line-height: 1.75;
  margin-top: 24px;
}

.ratings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  margin: 6px 0 14px;
}

.ratings-grid ul.legal-content-ul {
  margin-bottom: 0;
}

.rating-stars {
  color: var(--red-text);
  font-weight: 700;
  letter-spacing: 2px;
}

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

/* ---------- Pagina Download ---------- */
.download-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px 26px;
  margin-bottom: 24px;
}

.download-item .inline-subtitle {
  margin-bottom: 10px;
}

.download-item p {
  margin-bottom: 10px;
}

.download-meta {
  font-size: 13px;
  color: var(--gray);
  font-style: italic;
}

.download-btn {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 12px 32px;
  border: 1px solid var(--red);
  border-radius: 6px;
  margin-top: 6px;
  text-decoration: none;
  transition: background-color 0.2s, border-color 0.2s;
}

.download-btn:hover {
  background-color: var(--red-dark);
  border-color: var(--red-dark);
}

.download-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.download-btn-row .download-btn {
  margin-top: 0;
}

/* ---------- Pagina Guida all'Acquisto ---------- */
.inline-subtitle-spaced {
  margin-top: 38px;
}

.guide-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 0 0 16px;
}

.intro-text .guide-box p {
  margin-bottom: 10px;
}

.intro-text .guide-box p:last-child {
  margin-bottom: 0;
}

.intro-text .guide-box-title {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  color: var(--red-text);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.club-box {
  background: var(--card);
  border: 1px solid var(--red);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin: 38px 0 8px;
  text-align: center;
}

.intro-text .club-box p {
  text-align: center;
}

.club-box .download-btn-row {
  justify-content: center;
  margin-top: 16px;
}

picture {
  display: contents;
}
