/*
Theme Name: Piana Gru New
Template: pianagrutheme
Description: Child theme per Piana Gru S.r.l. - Design dark/gold
Author: Studio Web
Version: 1.0
*/

/* ===== PREVIEW BAR ===== */
.preview-bar {
  background: #d4a017;
  color: #0a0f1a;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 8px 0;
  width: 100%;
}
.preview-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.preview-bar span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.preview-bar strong { font-weight: 800; letter-spacing: 0.05em; }
.preview-bar a {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(10, 15, 26, 0.15);
  border: 1px solid rgba(10, 15, 26, 0.25);
  color: #0a0f1a;
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.78rem;
  white-space: nowrap;
  transition: background 0.2s;
}
.preview-bar a:hover { background: rgba(10, 15, 26, 0.28); }
@media (max-width: 600px) {
  .preview-bar-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ===== CSS VARIABLES ===== */
:root {
  --bg-primary: #0a0f1a;
  --bg-secondary: #0f1b2d;
  --bg-card: #141e30;
  --bg-elevated: #1a2744;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent-gold: #d4a017;
  --accent-gold-light: #e8b830;
  --accent-gold-dark: #b8890f;
  --potain-red: #c8102e;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-gold: rgba(212, 160, 23, 0.3);
  --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --container: 1200px;
  --nav-height: 80px;
}

/* ===== UTILITY ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100% !important; /* override parent theme media query max-device-width 649px */
}
.section-padding { padding: 100px 0; }
.accent { color: var(--accent-gold); }
.text-center { text-align: center; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--accent-gold);
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--accent-gold);
  color: var(--bg-primary);
}
.btn-primary:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}
.btn-icon { width: 20px; height: 20px; }
.btn-sm {
  padding: 12px 20px;
  font-size: 0.85rem;
  min-height: 44px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  min-height: var(--nav-height);
  z-index: 1000;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10, 15, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-subtle);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 10px 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  z-index: 1001;
  gap: 14px;
}
.nav-logo-text {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.06em;
  color: #c02b31;
  font-size: 55px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-logo img {
  height: 100px;
  width: auto;
  background: #fff;
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.navbar.scrolled .nav-logo img {
  height: 100px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent-gold); }
.nav-links a.active::after { width: 100%; }

/* WP menu integration */
.nav-links .menu { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
.nav-links .menu li { white-space: nowrap; }
.nav-links .menu li a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}
.nav-links .menu li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}
.nav-links .menu li a:hover { color: #fff; }
.nav-links .menu li a:hover::after { width: 100%; }
.nav-links .menu li.current-menu-item a,
.nav-links .menu li.current_page_item a { color: var(--accent-gold); }
.nav-links .menu li.current-menu-item a::after,
.nav-links .menu li.current_page_item a::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  padding: 8px;
  z-index: 1001;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile menu */
.mobile-menu {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 26, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  transition: color 0.3s, transform 0.3s;
}
.mobile-menu a:hover { color: var(--accent-gold); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video video,
.hero-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video img { display: none; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,15,26,0.5) 0%, rgba(10,15,26,0.3) 40%, rgba(10,15,26,0.7) 80%, rgba(10,15,26,1) 100%),
    linear-gradient(90deg, rgba(10,15,26,0.6) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero h1 { margin-bottom: 20px; }
.hero .section-subtitle {
  font-size: 1.15rem;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.75);
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
  animation: scroll-anim 2s ease infinite;
}
@keyframes scroll-anim {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ===== STATS BAND ===== */
.stats-band {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item {
  text-align: center;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border-subtle);
}
.stat-number {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===== ABOUT / CHI SIAMO ===== */
.about { background: var(--bg-primary); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-image:hover img { transform: scale(1.03); }
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  pointer-events: none;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.8;
}
.about-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.about-feature .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feature .check svg { width: 12px; height: 12px; color: var(--accent-gold); }

/* ===== SERVIZI ===== */
.services { background: var(--bg-secondary); }
.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.services-header h2 { margin-bottom: 16px; }
.services-header .section-subtitle { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all 0.4s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,15,26,0.92) 100%);
  z-index: 1;
}
.service-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.service-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-bg img { transform: scale(1.08); }
.service-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 0 40px rgba(212, 160, 23, 0.1);
}
.service-card-content {
  position: relative;
  z-index: 2;
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 24px; height: 24px; color: var(--accent-gold); }
.service-card h3 { font-size: 1.35rem; margin-bottom: 10px; color: #fff; }
.service-card p { font-size: 0.9rem; color: #cbd5e1; line-height: 1.7; }
.service-card .arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-gold);
  transition: gap 0.3s;
}
.service-card:hover .arrow-link { gap: 12px; }

/* ===== PARCO MACCHINE ===== */
.fleet {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.fleet-bg {
  position: absolute;
  inset: 0;
}
.fleet-bg img { width: 100%; height: 100%; object-fit: cover; }
.fleet-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,26,0.92) 0%, rgba(10,15,26,0.75) 100%);
}
.fleet-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.fleet-text h2 { margin-bottom: 20px; }
.fleet-text > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 1.02rem;
  line-height: 1.8;
}
.fleet-types {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fleet-type {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}
.fleet-type:hover {
  background: rgba(212, 160, 23, 0.06);
  border-color: var(--border-gold);
}
.fleet-type-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(212, 160, 23, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fleet-type-icon svg { width: 20px; height: 20px; color: var(--accent-gold); }
.fleet-type-text strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.fleet-type-text span { font-size: 0.82rem; color: var(--text-muted); }
.fleet-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.fleet-stat-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.3s ease;
}
.fleet-stat-card:hover {
  border-color: var(--border-gold);
  background: rgba(212, 160, 23, 0.04);
}
.fleet-stat-card .number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 6px;
}
.fleet-stat-card .label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===== POTAIN SECTION ===== */
.potain {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.potain::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.04), transparent 70%);
}
.potain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.potain-content .section-label { margin-bottom: 20px; }
.potain-content h2 { margin-bottom: 20px; }
.potain-content p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.potain-logo-inline { margin-top: 24px; margin-bottom: 16px; }
.potain-logo-inline img {
  height: 60px;
  width: auto;
  background: #fff;
  padding: 12px 24px;
  border-radius: 8px;
}
.potain-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 24px;
  background: rgba(200, 16, 46, 0.08);
  border: 1px solid rgba(200, 16, 46, 0.2);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
}
.potain-badge svg { color: var(--potain-red); width: 20px; height: 20px; }
.potain-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.potain-image img { width: 100%; height: 460px; object-fit: cover; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212,160,23,0.06), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(200,16,46,0.04), transparent 50%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 12px;
  line-height: 1.7;
}
.cta-contact-info {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 28px 0 36px;
  flex-wrap: wrap;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.cta-contact-item svg { width: 18px; height: 18px; color: var(--accent-gold); }
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
}
.footer-brand img {
  height: 100px;
  width: auto;
  background: #fff;
  padding: 0;
  border-radius: 8px;
  margin: 10px;
}
.footer h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 5px 0;
  transition: all 0.3s;
}
.footer-links a:hover { color: var(--accent-gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent-gold);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--accent-gold); }

/* ===== CATALOG HERO ===== */
.catalog-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.catalog-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.05), transparent 60%);
}
.catalog-hero h1 { margin-bottom: 16px; }
.catalog-hero .section-subtitle { margin: 0 auto 32px; }
.catalog-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.catalog-hero-stat {
  text-align: center;
}
.catalog-hero-stat .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}
.catalog-hero-stat .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== CATALOG FILTERS ===== */
.catalog-filters {
  background: var(--bg-secondary);
  padding: 40px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.catalog-filters form {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.catalog-filters form > input[type="hidden"] {
  display: none;
}

.catalog-filters .uwpqsf_class {
  flex: 1 1 calc(50% - 8px);
  min-width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.3s;
}
.catalog-filters .uwpqsf_class:hover {
  border-color: var(--border-gold);
}

.catalog-filters .uwpqsf_class > span[class^="taxolabel"] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
  background: rgba(212, 160, 23, 0.03);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s;
}
.catalog-filters .uwpqsf_class > span[class^="taxolabel"]:hover {
  background: rgba(212, 160, 23, 0.06);
}
.catalog-filters .uwpqsf_class > span[class^="taxolabel"]::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent-gold);
  border-bottom: 2px solid var(--accent-gold);
  transform: rotate(45deg);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
}
.catalog-filters .uwpqsf_class.filter-collapsed > span[class^="taxolabel"]::after {
  transform: rotate(-135deg);
}
.catalog-filters .uwpqsf_class.filter-collapsed > span[class^="taxolabel"] {
  border-bottom-color: transparent;
}

.catalog-filters .filter-options-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 20px;
  max-height: none;
  overflow: visible;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
}
.catalog-filters .uwpqsf_class.filter-collapsed .filter-options-wrap {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  overflow: hidden;
}

.catalog-filters .filter-options-wrap label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  min-height: 44px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  margin: 0;
  line-height: 1.4;
}
.catalog-filters .filter-options-wrap label:hover {
  background: rgba(212, 160, 23, 0.08);
  border-color: var(--border-gold);
  color: var(--text-primary);
}
.catalog-filters .filter-options-wrap label:has(input:checked) {
  background: rgba(212, 160, 23, 0.15);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  font-weight: 600;
}

.catalog-filters .filter-options-wrap label input[type="checkbox"],
.catalog-filters .filter-options-wrap label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.catalog-filters .filter-options-wrap label.filter-chip-all {
  background: rgba(212, 160, 23, 0.06);
  border-color: rgba(212, 160, 23, 0.2);
  color: var(--accent-gold);
  font-weight: 600;
}
.catalog-filters .filter-options-wrap label.filter-chip-all:has(input:checked) {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
}

.catalog-filters .uwpqsf_submit {
  flex: 1 1 100%;
  height: 0;
  overflow: hidden;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: transparent !important;
}

.catalog-filters .usfbtn,
.catalog-filters input[type="button"],
.catalog-filters input[type="submit"],
.catalog-filters button[type="submit"] {
  background: var(--accent-gold);
  color: var(--bg-primary);
  padding: 14px 56px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.catalog-filters .usfbtn:hover,
.catalog-filters input[type="button"]:hover,
.catalog-filters input[type="submit"]:hover,
.catalog-filters button[type="submit"]:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.25);
}

@media (max-width: 768px) {
  .nav-logo { gap: 10px; margin-left: 10px; }
  .nav-logo-text { font-size: 25px; letter-spacing: 0.05em; }
  .catalog-filters .uwpqsf_class { flex: 1 1 100%; }
}

/* Override parent theme: rimuove height fissa 130px su mobile */
@media (max-width: 649px) {
  .uwpqsf_class { height: auto !important; }
}

/* Override parent theme: rimuove width 50px fissa sui button */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  width: auto !important;
}

/* Override parent theme: padding laterale .menu li */
.menu li {
  padding-right: 10px !important;
  padding-left: 15px !important;
}

/* Scrollbar custom per filter-options-wrap */
.catalog-filters .filter-options-wrap::-webkit-scrollbar {
  width: 4px;
}
.catalog-filters .filter-options-wrap::-webkit-scrollbar-track {
  background: transparent;
}
.catalog-filters .filter-options-wrap::-webkit-scrollbar-thumb {
  background: var(--border-gold);
  border-radius: 4px;
}

/* ===== CATALOG GRID ===== */
.catalog-grid {
  padding: 60px 0 80px;
  background: var(--bg-primary);
}
.catalog-grid .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* AJAX filter results from ULWPQSF plugin */
.products_content_noleggio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.products_content_noleggio .products_box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.4s ease;
}
.products_content_noleggio .products_box:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.products_content_noleggio .products_box a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.products_content_noleggio .products_img {
  height: 200px;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
}
.products_content_noleggio .products_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.5s ease;
}
.products_content_noleggio .products_box:hover .products_img img {
  transform: scale(1.05);
}
.products_content_noleggio .products_title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  padding: 16px 20px 8px;
  margin: 0;
}
.products_content_noleggio .products_desc {
  padding: 0 20px 20px;
}
.products_content_noleggio .products_desc p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}
.products_content_noleggio .products_desc span {
  font-weight: 600;
  color: var(--text-primary);
}
.products_content_noleggio .umloading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: var(--accent-gold);
  font-size: 1rem;
}
.products_content_noleggio .umloading::after {
  content: 'Caricamento...';
}
.products_content_noleggio .uwpqsfpagi {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 24px;
}
.products_content_noleggio .uwpqsfpagi a {
  padding: 10px 16px;
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: all 0.3s;
}
.products_content_noleggio .uwpqsfpagi a:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}
.products_content_noleggio .uwpqsfpagi .upagicurrent {
  padding: 10px 16px;
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.4s ease;
}
.product-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.product-card a { display: block; color: inherit; }
.product-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body { padding: 20px; }
.product-card-badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.product-card-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.spec-row:last-child { border-bottom: none; }
.spec-label { font-size: 0.8rem; color: var(--text-muted); }
.spec-value { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); }

/* ===== PRODUCT SINGLE ===== */
.product-single {
  padding: 120px 0 80px;
  background: var(--bg-primary);
}
.breadcrumb {
  margin-bottom: 32px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--text-secondary);
  transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--accent-gold); }
.breadcrumb .sep { margin: 0 8px; color: var(--text-muted); }

.product-single-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.product-single-image {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 24px;
}
.product-single-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 500px;
}
.product-single-info h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 24px;
}
.product-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}
.product-specs-table tr {
  border-bottom: 1px solid var(--border-subtle);
}
.product-specs-table td {
  padding: 14px 0;
  vertical-align: middle;
}
.product-specs-table td:first-child {
  font-size: 0.9rem;
  color: var(--text-muted);
  width: 50%;
  padding-right: 16px;
}
.product-specs-table td:last-child {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}
.product-single-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.product-single-description p { margin-bottom: 12px; }
.product-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  margin-bottom: 28px;
}
.product-pdf-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
}
.product-pdf-btn svg { width: 20px; height: 20px; }

.product-single-cta {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 32px;
}
.product-single-cta h4 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.product-single-cta .cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}
.product-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.product-nav a:hover { color: var(--accent-gold); }
.product-nav a svg { width: 16px; height: 16px; }

/* ===== CONTACT PAGE ===== */
.contact-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.05), transparent 60%);
}
.contact-hero h1 { margin-bottom: 16px; }
.contact-hero .section-subtitle { margin: 0 auto; }

.contact-body {
  padding: 80px 0;
  background: var(--bg-primary);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.contact-directions {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 0;
  padding: 32px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}
.contact-directions h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.contact-directions p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.contact-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  transition: border-color 0.3s;
}
.contact-card:hover { border-color: var(--border-gold); }
.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 20px; height: 20px; color: var(--accent-gold); }
.contact-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
.contact-card a {
  color: var(--accent-gold);
  transition: color 0.3s;
}
.contact-card a:hover { color: var(--accent-gold-light); }
.contact-card-sub {
  font-size: 0.82rem !important;
  color: var(--text-muted) !important;
  margin-top: 4px !important;
}

.contact-directions {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-top: 8px;
}
.contact-directions h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-directions p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 40px;
}
.contact-form-wrap h3 {
  font-size: 1.3rem;
  margin-bottom: 28px;
  color: var(--text-primary);
}

/* CF7 form styling */
.contact-form-wrap .wpcf7-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.contact-form-wrap .wpcf7-form p {
  margin-bottom: 20px;
}
.contact-form-wrap .wpcf7-form input[type="text"],
.contact-form-wrap .wpcf7-form input[type="email"],
.contact-form-wrap .wpcf7-form textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s;
  resize: vertical;
}
.contact-form-wrap .wpcf7-form input[type="text"]:focus,
.contact-form-wrap .wpcf7-form input[type="email"]:focus,
.contact-form-wrap .wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
}
.contact-form-wrap .wpcf7-form textarea {
  min-height: 140px;
}
.contact-form-wrap .wpcf7-form input[type="submit"] {
  background: var(--accent-gold);
  color: var(--bg-primary);
  padding: 0 40px;
  height: 52px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form-wrap .wpcf7-form input[type="submit"]:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.25);
}
.contact-form-wrap .wpcf7-response-output {
  border-color: var(--border-gold) !important;
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
}
.contact-form-wrap .wpcf7-not-valid-tip {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 4px;
}

.contact-map {
  line-height: 0;
  filter: grayscale(0.5) contrast(1.1);
  transition: filter 0.5s;
}
.contact-map:hover { filter: grayscale(0) contrast(1); }
.contact-map iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== NEWS ARCHIVE ===== */
.news-archive { padding: 0 0 80px; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  border-left-color: var(--accent-gold);
  box-shadow: 0 12px 40px rgba(212, 160, 23, 0.12);
}
.news-card-inner { display: flex; flex-direction: column; height: 100%; }
.news-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}
.news-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.news-card-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.news-card-date svg { color: var(--accent-gold); flex-shrink: 0; }
.news-card-cat {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-gold);
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.2);
  padding: 2px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.news-card-body h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.news-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}
.news-card-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-top: auto;
  transition: gap 0.3s;
}
.news-card:hover .news-card-cta { gap: 10px; }
.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 60px;
}
.pagination-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.3s;
}
.pagination-btn:hover {
  border-color: var(--border-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}
.pagination-info {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ===== NEWS SINGLE ===== */
.news-single {
  padding: 120px 0 80px;
}
.news-single-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.news-single-meta {
  margin-bottom: 16px;
}
.news-single-content h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  line-height: 1.2;
}
.news-single-hero-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 36px;
  border: 1px solid var(--border-subtle);
}
.news-single-hero-img img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}
.news-single-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.news-single-body p { margin-bottom: 20px; }
.news-single-body h2, .news-single-body h3 {
  color: var(--text-primary);
  margin: 32px 0 12px;
  font-weight: 700;
}
.news-single-body h2 { font-size: 1.4rem; }
.news-single-body h3 { font-size: 1.15rem; }
.news-single-body ul, .news-single-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}
.news-single-body li { margin-bottom: 8px; line-height: 1.7; }
.news-single-body strong { color: var(--text-primary); font-weight: 600; }
.news-single-body a { color: var(--accent-gold); text-decoration: underline; }
.news-single-back { margin-top: 48px; }

/* Sidebar */
.news-sidebar { display: flex; flex-direction: column; gap: 24px; }
.news-sidebar-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
}
.news-sidebar-box h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}
.news-sidebar-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: color 0.3s;
}
.news-sidebar-item:last-child { border-bottom: none; padding-bottom: 0; }
.news-sidebar-item:hover .news-sidebar-item-title { color: var(--accent-gold); }
.news-sidebar-item-date {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.news-sidebar-item-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  transition: color 0.3s;
}
.news-sidebar-cta {
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px;
}
.news-sidebar-cta h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.news-sidebar-cta p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ===== LEGAL PAGES (Privacy, Cookie) ===== */
.legal-page { padding-top: 0; }
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}
.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 40px 0 16px;
  padding-left: 16px;
  border-left: 3px solid var(--accent-gold);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 28px 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.legal-content h3::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
  flex-shrink: 0;
}
.legal-content p { margin-bottom: 16px; }
.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content ul li {
  margin-bottom: 10px;
  list-style: disc;
}
.legal-content strong { color: var(--text-primary); font-weight: 600; }
.legal-content a { color: var(--accent-gold); text-decoration: underline; }
.legal-content a:hover { color: var(--accent-gold-light); }
.legal-content hr {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: 36px 0;
}
/* Cookie policy table */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 24px;
  font-size: 0.9rem;
}
.cookie-table th {
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-weight: 600;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 2px solid var(--accent-gold);
}
.cookie-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  vertical-align: top;
}
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table .badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}
.cookie-table .badge-required { background: rgba(192,43,49,0.15); color: #c02b31; }
.cookie-table .badge-optional { background: rgba(180,150,70,0.15); color: var(--accent-gold); }
/* Browser links grid */
.browser-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0 24px;
}
.browser-link-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  text-decoration: none !important;
  color: var(--text-secondary) !important;
  font-size: 0.9rem;
  transition: border-color 0.2s, color 0.2s;
}
.browser-link-item:hover {
  border-color: var(--accent-gold) !important;
  color: var(--text-primary) !important;
}
.browser-link-item svg { flex-shrink: 0; opacity: 0.7; }
@media (max-width: 480px) {
  .browser-links { grid-template-columns: 1fr; }
  .cookie-table th, .cookie-table td { padding: 8px 10px; }
}
.legal-updated {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* ===== HOVER GUARD — only apply hover effects on devices with hover ===== */
@media (hover: hover) {
  .product-card:hover { transform: translateY(-4px); }
  .service-card:hover .service-card-bg img { transform: scale(1.08); }
  .about-image:hover img { transform: scale(1.03); }
  .fleet-type:hover { background: rgba(212, 160, 23, 0.06); border-color: var(--border-gold); }
  .fleet-stat-card:hover { border-color: var(--border-gold); }
  .contact-card:hover { border-color: var(--border-gold); }
}
@media (hover: none) {
  .product-card:hover,
  .service-card:hover,
  .fleet-type:hover,
  .fleet-stat-card:hover,
  .contact-card:hover { transform: none; }
}

/* ===== NOLEGGIO DESCRIZIONE ===== */
.noleggio-desc { background: var(--bg-primary); }
.noleggio-desc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.noleggio-desc-block h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.noleggio-desc-block p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}
.noleggio-desc-block p:last-child { margin-bottom: 0; }

.noleggio-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.noleggio-section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.noleggio-section-header p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 1rem;
}
.noleggio-section-header p:last-child { margin-bottom: 0; }

/* ===== SCHEDE TECNICHE ===== */
.schede-hero { background: var(--bg-secondary); text-align: center; padding: 120px 0 60px; }
.schede-hero .section-subtitle { margin: 0 auto; }
.schede-brands { background: var(--bg-primary); padding: 60px 0 80px; }
.brand-section { margin-bottom: 40px; }
.brand-section:last-child { margin-bottom: 0; }
.brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
  user-select: none;
}
.brand-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}
.brand-header .brand-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--bg-secondary);
  padding: 4px 12px;
  border-radius: 20px;
}
.brand-header .brand-toggle {
  width: 24px; height: 24px;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}
.brand-section.collapsed .brand-toggle { transform: rotate(-90deg); }
.brand-section.collapsed .brand-list { display: none; }
.brand-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  padding: 20px 0;
}
.scheda-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text-primary);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.scheda-link:hover {
  border-color: var(--accent-gold);
  background: rgba(212, 160, 23, 0.05);
}
.scheda-link svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--accent-gold);
}
.scheda-link span {
  font-size: 0.92rem;
  font-weight: 500;
}

/* ===== VENDITA GRU INTRO ===== */
.vendita-intro { background: var(--bg-primary); padding: 0 0 40px; }
.vendita-intro-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.vendita-intro-text p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
  font-size: 1.05rem;
}
.vendita-intro-text p:last-child { margin-bottom: 0; }

/* ===== SERVIZI PAGE ===== */
.servizi-hero { background: var(--bg-secondary); text-align: center; padding: 120px 0 60px; }
.servizi-hero .section-subtitle { margin: 0 auto; }
.servizi-content { background: var(--bg-primary); padding: 60px 0 80px; }
.servizi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.servizio-block {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.3s;
}
.servizio-block:hover { border-color: var(--accent-gold); }
.servizio-block .servizio-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(212, 160, 23, 0.1);
  border-radius: 10px;
  margin-bottom: 20px;
  color: var(--accent-gold);
}
.servizio-block .servizio-icon svg { width: 24px; height: 24px; }
.servizio-block h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.servizio-block p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}
.servizio-block--compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
}
.servizio-block--compact h3 { margin-bottom: 0; }
.servizio-block--compact .servizio-icon {
  width: 56px; height: 56px;
  margin-bottom: 16px;
}
.servizio-block--compact .servizio-icon svg { width: 28px; height: 28px; }

/* ===== RESPONSIVE ===== */

/* --- Tablet landscape / small desktop (max 1024px) --- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .about-grid,
  .fleet-content,
  .potain-grid,
  .product-single-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-cards-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 2fr 1fr; }
  .fleet-stats { order: -1; }

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

  .potain-image img { height: 360px; }
}

/* --- Tablet portrait / large phone (max 768px) --- */
@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .container { padding: 0 16px; }
  .section-padding { padding: 60px 0; }

  /* Navbar */
  .nav-logo img {
    height: 60px;
    padding: 0;
  }
  .navbar.scrolled .nav-logo img {
    height: 54px;
    padding: 0;
  }

  /* Mobile menu */
  .mobile-menu a {
    font-size: 1.3rem;
    padding: 8px 0;
  }

  /* Hero */
  .hero {
    height: min(100svh, 100vh);
    min-height: 500px;
  }
  .hero-video img { display: none; }
  .hero-badge {
    font-size: 0.75rem;
    padding: 7px 14px;
    margin-bottom: 20px;
  }
  .hero h1 { margin-bottom: 16px; }
  .hero .section-subtitle {
    font-size: 1rem;
    margin-bottom: 28px;
  }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; width: 100%; }
  .scroll-indicator { display: none; }

  /* Stats band */
  .stats-band { padding: 32px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-label { font-size: 0.78rem; }

  /* About */
  .about-image img { height: 280px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; padding: 28px; }
  .service-card h3 { font-size: 1.15rem; }
  .service-card p { font-size: 0.85rem; }

  /* Fleet */
  .fleet { padding: 60px 0; }
  .fleet-type { padding: 12px 16px; gap: 12px; }
  .fleet-type-icon { width: 36px; height: 36px; }
  .fleet-type-icon svg { width: 18px; height: 18px; }
  .fleet-type-text strong { font-size: 0.88rem; }
  .fleet-type-text span { font-size: 0.78rem; }
  .fleet-stat-card { padding: 20px; }
  .fleet-stat-card .number { font-size: 1.8rem; }
  .fleet-stat-card .label { font-size: 0.75rem; }

  /* Potain */
  .potain-image img { height: 300px; }
  .potain-badge { padding: 12px 18px; font-size: 0.82rem; }
  .potain-logo-inline img { height: 50px; padding: 10px 20px; }

  /* CTA */
  .cta-contact-info { flex-direction: column; align-items: center; gap: 14px; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .cta-buttons .btn { width: 100%; justify-content: center; text-align: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-links a { padding: 8px 0; font-size: 0.88rem; }
  .footer-contact-item { margin-bottom: 12px; }
  .footer-brand img { height: 70px; padding: 0; margin: 10px; }
  .footer-bottom { padding: 16px 0; }

  /* News */
  .news-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .news-single { padding: 90px 0 50px; }
  .news-single-grid { grid-template-columns: 1fr; gap: 40px; }
  .news-sidebar { order: -1; flex-direction: row; flex-wrap: wrap; }
  .news-sidebar-box, .news-sidebar-cta { flex: 1 1 calc(50% - 12px); }

  /* Catalog hero + filters */
  .catalog-hero,
  .contact-hero { padding: 100px 0 36px; }
  .catalog-hero-stats { gap: 28px; }
  .catalog-hero-stat .number { font-size: 1.6rem; }
  .catalog-filters { padding: 28px 0; }
  .catalog-filters .filter-options-wrap label {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  .catalog-filters .filter-options-wrap { gap: 10px; padding: 14px 16px; }

  /* Product grid */
  .catalog-grid .container,
  .products_content_noleggio { grid-template-columns: 1fr; }
  .catalog-grid { padding: 40px 0 60px; }

  /* Product single */
  .product-single { padding: 90px 0 50px; }
  .product-single-image { padding: 16px; }
  .breadcrumb {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin-bottom: 24px;
    font-size: 0.8rem;
  }
  .product-nav { flex-direction: column; gap: 16px; align-items: stretch; text-align: center; }
  .product-nav > div { display: flex; justify-content: center; }
  .product-nav a {
    max-width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .product-pdf-btn { width: 100%; justify-content: center; }
  .product-single-cta .cta-row { flex-direction: column; }
  .product-single-cta .cta-row .btn { width: 100%; justify-content: center; }

  /* Contact */
  .contact-body { padding: 50px 0; }
  .contact-form-wrap { padding: 24px; }
  .contact-map iframe { height: 300px; }
  .contact-card { padding: 20px; gap: 16px; }
  .contact-card-icon { width: 40px; height: 40px; }
  .contact-cards-grid { grid-template-columns: 1fr; }

  /* Noleggio desc */
  .noleggio-desc-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Schede tecniche */
  .schede-hero { padding: 100px 0 40px; }
  .brand-list { grid-template-columns: 1fr; }

  /* Servizi page */
  .servizi-hero { padding: 100px 0 40px; }
  .servizi-grid { grid-template-columns: 1fr; }

  /* Animations — faster on mobile */
  .reveal { transition-duration: 0.45s; }
}

/* --- Small phone (max 480px) --- */
@media (max-width: 480px) {
  .nav-logo { gap: 8px; margin-left: 10px; }
  .nav-logo-text { font-size: 25px; letter-spacing: 0.04em; }
  :root { --nav-height: 60px; }
  .container { padding: 0 14px; }
  .section-padding { padding: 48px 0; }

  /* Navbar */
  .nav-logo img { height: 54px; padding: 0; }
  .navbar.scrolled .nav-logo img { padding: 0; }

  /* Mobile menu */
  .mobile-menu a { font-size: 1.15rem; gap: 24px; }
  .mobile-menu { gap: 24px; }

  /* Hero */
  .hero { min-height: 440px; }
  .hero-badge { font-size: 0.72rem; padding: 7px 14px; letter-spacing: 0.04em; }
  .hero .section-subtitle { font-size: 0.92rem; }

  /* Stats */
  .stats-band { padding: 24px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat-number { font-size: 1.8rem; }
  .stat-label { font-size: 0.78rem; }

  /* About */
  .about-image img { height: 220px; }
  .about-text p { font-size: 0.92rem; }
  .about-feature { font-size: 0.88rem; gap: 10px; }

  /* Services */
  .service-card { min-height: 220px; padding: 22px; }
  .service-icon { width: 40px; height: 40px; margin-bottom: 14px; }
  .service-icon svg { width: 20px; height: 20px; }
  .service-card h3 { font-size: 1.05rem; }
  .service-card p { font-size: 0.82rem; }

  /* Fleet */
  .fleet { padding: 48px 0; }
  .fleet-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .fleet-stat-card { padding: 16px; }
  .fleet-stat-card .number { font-size: 1.5rem; }
  .fleet-stat-card .label { font-size: 0.76rem; }
  .fleet-type { padding: 10px 14px; }

  /* Potain */
  .potain-image img { height: 220px; }
  .potain-badge { padding: 10px 14px; font-size: 0.78rem; flex-wrap: wrap; }
  .potain-logo-inline img { height: 44px; padding: 8px 18px; }

  /* CTA */
  .cta-inner p { font-size: 0.95rem; }

  /* Footer */
  .footer { padding: 40px 0 0; }
  .footer-grid { gap: 24px; }
  .footer-brand p { font-size: 0.85rem; }
  .footer h4 { font-size: 0.85rem; margin-bottom: 14px; }
  .footer-links a { font-size: 0.85rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-bottom p { font-size: 0.8rem; }

  /* News 480px */
  .news-grid { grid-template-columns: 1fr; gap: 20px; }
  .news-single-content h1 { font-size: 1.4rem; }
  .news-sidebar { flex-direction: column; }
  .news-sidebar-box, .news-sidebar-cta { flex: 1 1 100%; }

  /* Catalog */
  .catalog-hero,
  .contact-hero { padding: 86px 0 28px; }
  .catalog-hero-stats { gap: 20px; }
  .catalog-hero-stat .number { font-size: 1.4rem; }
  .catalog-hero-stat .label { font-size: 0.78rem; }
  .catalog-filters { padding: 20px 0; }
  .catalog-filters .filter-options-wrap label { padding: 10px 14px; min-height: 44px; }

  /* Product card */
  .product-card-img { height: 160px; }
  .product-card-body { padding: 16px; }
  .product-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
  .product-card-badge { font-size: 0.7rem; padding: 4px 9px; }
  .spec-label { font-size: 0.8rem; }
  .spec-value { font-size: 0.82rem; }

  /* Product single */
  .product-single { padding: 80px 0 40px; }
  .product-single-info h1 { font-size: 1.4rem; margin-bottom: 18px; }
  .product-specs-table td { padding: 10px 0; }
  .product-specs-table td:first-child { font-size: 0.82rem; }
  .product-specs-table td:last-child { font-size: 0.9rem; }
  .product-single-cta { padding: 18px; }
  .product-single-cta h4 { font-size: 0.88rem; }

  /* Contact */
  .contact-body { padding: 36px 0; }
  .contact-card { padding: 16px; gap: 12px; }
  .contact-card-icon { width: 36px; height: 36px; }
  .contact-card-icon svg { width: 16px; height: 16px; }
  .contact-card h4 { font-size: 0.78rem; }
  .contact-card p { font-size: 0.88rem; }
  .contact-directions { padding: 18px; }
  .contact-directions h4 { font-size: 0.78rem; }
  .contact-directions p { font-size: 0.85rem; }
  .contact-form-wrap { padding: 18px; }
  .contact-form-wrap h3 { font-size: 1.1rem; margin-bottom: 20px; }
  .contact-map iframe { height: 250px; }

  /* Tabella specs → layout stacked su schermi piccoli */
  .product-specs-table { width: 100%; }
  .product-specs-table tr { display: flex; flex-direction: column; padding: 10px 0; border-bottom: 1px solid var(--border-subtle); }
  .product-specs-table tr:last-child { border-bottom: none; }
  .product-specs-table td { padding: 2px 0; border: none; }
  .product-specs-table td:first-child { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
  .product-specs-table td:last-child { font-size: 0.92rem; color: var(--text-primary); }

  /* Animations — minimal on small screens */
  .reveal { transition-duration: 0.35s; transform: translateY(16px); }
}

/* --- Landscape phone (altezza ridotta, orientamento orizzontale) --- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100svh;
    height: 100svh;
  }
  .hero-content { padding-top: 20px; }
  .hero h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 10px; }
  .hero .section-subtitle { font-size: 0.9rem; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .hero-badge { margin-bottom: 12px; }
  .hero-buttons { flex-direction: row; gap: 10px; }
  .hero-buttons .btn { width: auto; padding: 10px 20px; font-size: 0.88rem; }
  .scroll-indicator { display: none; }

  /* Menu mobile scrollabile in landscape */
  .mobile-menu {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 80px 40px 40px;
    gap: 16px;
    justify-content: flex-start;
  }
  .mobile-menu a { font-size: 1.1rem; padding: 10px 0; }
}
