/* ============================================================
   A.C. RENT CAR — Site Stylesheet
   Tokens da Claude Design (gold/black/white, Cormorant, Great Vibes,
   Barlow Condensed, Barlow). Layout ispirato al sito SosaWorldRent.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Great+Vibes&family=Barlow+Condensed:wght@400;500;600;700;800&family=Barlow:wght@300;400;500;600;700&display=swap');

/* ───── TOKENS ───── */
:root {
  --gold-light: #F0E0B8;
  --gold:       #C9A86C;
  --gold-mid:   #B8935A;
  --gold-dark:  #8B6B3D;

  --black:      #0A0A0A;
  --bg:         #0D0D0D;
  --bg-2:       #111111;
  --bg-3:       #161616;
  --bg-4:       #1E1E1E;
  --bg-card:    #181818;
  --line:       #1F1F1F;
  --line-2:     #2A2A2A;
  --gray:       #888888;
  --gray-2:     #555555;
  --gray-3:     #444444;
  --off-white:  #F5F2ED;
  --white:      #FFFFFF;

  --text:        #FFFFFF;
  --text-mute:   rgba(255,255,255,0.6);
  --text-soft:   rgba(255,255,255,0.45);
  --text-faint:  rgba(255,255,255,0.28);
  --text-dark:   #111111;
  --text-dark-2: #333333;

  --accent: var(--gold);
  --accent-hover: var(--gold-light);

  --radius-sm: 2px;
  --radius:    4px;
  --radius-lg: 8px;
  --radius-pill: 9999px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.18);
  --shadow:    0 6px 24px rgba(0,0,0,0.35);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 24px rgba(201,168,108,0.28);

  --f-display:  'Cormorant Garamond', 'Georgia', serif;
  --f-script:   'Great Vibes', cursive;
  --f-headline: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --f-body:     'Barlow', 'Helvetica Neue', Arial, sans-serif;

  --container: 1180px;
  --nav-h: 72px;
}

/* ───── RESET ───── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--gold); color: var(--bg); }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ───── LAYOUT ───── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
section { padding: 96px 0; }
@media (max-width: 768px) { section { padding: 72px 0; } }

/* ───── TYPOGRAPHY ───── */
h1,h2,h3,h4,h5 {
  font-family: var(--f-headline);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--text);
}
h1 { font-size: clamp(40px, 6vw, 76px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); }
h4 { font-size: 18px; }
p  { font-size: 15px; color: var(--text-mute); line-height: 1.75; }

.section-label {
  font-family: var(--f-headline);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title { margin-bottom: 18px; text-wrap: balance; }
.section-sub {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 640px;
  line-height: 1.7;
}
.section-header { text-align: center; margin: 0 auto 56px; max-width: 760px; }
.section-header.left { text-align: left; margin: 0 0 48px; max-width: none; }
.section-header.left .section-sub { margin-left: 0; }

.gradient-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-mid) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.script {
  font-family: var(--f-script);
  font-weight: 400;
  color: var(--gold);
  text-transform: none;
  letter-spacing: 0;
}

/* ───── BUTTONS ───── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--f-headline);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold); color: var(--bg);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; color: var(--text);
  border-color: rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark {
  background: var(--bg-2); color: var(--gold);
  border-color: var(--bg-2);
}
.btn-dark:hover { background: var(--black); border-color: var(--gold); }
.btn-ghost {
  background: rgba(255,255,255,0.04); color: var(--text);
  border-color: rgba(255,255,255,0.1);
}
.btn-ghost:hover { background: rgba(201,168,108,0.1); border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 17px 36px; font-size: 14px; }
.btn-sm { padding: 10px 18px; font-size: 11px; letter-spacing: 0.12em; }

/* ───── NAVBAR ───── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  height: var(--nav-h);
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; flex-direction: column; align-items: flex-start; line-height: 1;
}
.nav-logo .ac {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light) 60%, var(--gold-mid));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}
.nav-logo .rc {
  font-family: var(--f-script);
  font-size: 17px; color: var(--gold);
  margin-top: -4px; line-height: 1.2;
}
.nav-logo .underline {
  width: 40px; height: 1px; background: var(--gold); margin-top: 2px;
}
.nav-logo.sm .ac { font-size: 24px; }
.nav-logo.sm .rc { font-size: 14px; }
.nav-logo.sm .underline { width: 32px; }
.nav-links {
  display: flex; align-items: center; gap: 26px;
  list-style: none;
}
.nav-links a {
  font-family: var(--f-headline);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-links a.btn { border-bottom: 1.5px solid var(--gold); padding: 11px 22px; }
.nav-links a.btn:hover { border-bottom-color: var(--gold-light); }
/* Prevent JS auto-active from making btn text invisible (gold on gold) */
.nav-links a.btn-primary.active { color: var(--bg); }

.hamburger {
  display: none;
  background: none; border: none;
  width: 32px; height: 32px;
  flex-direction: column; justify-content: center; align-items: flex-end; gap: 5px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--gold);
  transition: all 0.25s ease;
}

@media (max-width: 980px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); right: 0;
    width: 320px; max-width: 90vw; height: calc(100vh - var(--nav-h));
    background: var(--bg-2);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 32px 28px;
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a.btn { margin-top: 18px; width: 100%; }
}

/* ───── HERO ───── */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + 40px); padding-bottom: 80px;
  background: linear-gradient(160deg, #0a0a0a 0%, #161616 60%, #1a1a1a 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 35%, rgba(201,168,108,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,108,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 60px; align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(201,168,108,0.4);
  background: rgba(201,168,108,0.06);
  font-family: var(--f-headline);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.55; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.0;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.hero p {
  font-size: 17px;
  color: var(--text-soft);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.feature-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 40px; }
.feature-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; color: var(--text-mute);
  letter-spacing: 0.04em;
}
.feature-pill-dot { width: 5px; height: 5px; background: var(--gold); }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  pointer-events: none;
}
.hero-scroll-line { width: 1px; height: 32px; background: rgba(201,168,108,0.4); }
.hero-scroll span {
  font-family: var(--f-body);
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-faint);
}

/* ───── HERO TACHOMETER (canvas) ───── */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px; width: 100%;
  margin-left: auto;
}
.hero-tach {
  width: 100%; height: 100%;
  display: block;
  cursor: crosshair;
}
.hero-tach-wrap {
  position: relative; width: 100%; aspect-ratio: 1;
  background: radial-gradient(ellipse at center, rgba(201,168,108,0.06) 0%, transparent 70%);
}
.hero-tach-hint {
  position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%);
  font-family: var(--f-headline);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
}

/* ───── STATS BAR ───── */
.stats-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center;
}
.stat-number {
  font-family: var(--f-headline);
  font-weight: 800; font-size: clamp(28px, 3.6vw, 44px);
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 12px; color: var(--text-mute);
  letter-spacing: 0.06em; text-transform: uppercase;
}
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }

/* ───── SERVIZI CARD ───── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--line);
}
.service-card {
  background: var(--bg-2);
  padding: 40px 32px;
  position: relative;
  transition: background 0.3s, transform 0.3s;
}
.service-card:hover { background: var(--bg-3); transform: translateY(-2px); }
.service-card.priority::before {
  content: 'Priorità';
  position: absolute; top: 14px; right: 14px;
  background: var(--gold); color: var(--bg);
  font-family: var(--f-headline);
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 10px;
}
.service-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,108,0.1);
  border: 1px solid rgba(201,168,108,0.3);
  font-size: 22px;
  margin-bottom: 22px;
}
.service-card h3 { margin-bottom: 12px; font-size: 22px; }
.service-card p { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-headline);
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: gap 0.2s, border-color 0.2s;
}
.service-link:hover { gap: 12px; border-bottom-color: var(--gold); }
@media (max-width: 980px) { .services-grid { grid-template-columns: 1fr; } }

/* ───── TWO-COL ───── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
@media (max-width: 980px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

.highlight-box {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 36px;
}
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-dot {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--gold); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
}
.why-item h4 {
  font-family: var(--f-headline);
  font-size: 14px; color: var(--text);
  margin-bottom: 4px;
  letter-spacing: 0.06em;
}
.why-item p { font-size: 13px; color: var(--text-mute); line-height: 1.6; }

/* ───── FLOTTA ───── */
.flotta-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 980px) { .flotta-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .flotta-grid { grid-template-columns: 1fr; } }

.car-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.car-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,108,0.4);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}
.car-img-placeholder {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #f5f5f3;
  overflow: hidden;
}
.car-img-placeholder img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 8px 4px;
  filter: brightness(0.97);
  transition: transform 0.4s;
}
.car-card:hover .car-img-placeholder img { transform: scale(1.04); }
.car-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--gold); color: var(--bg);
  font-family: var(--f-headline);
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 10px;
}
.car-price-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 64px; height: 64px;
  background: var(--bg);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.car-price-badge .num {
  font-family: var(--f-headline);
  font-weight: 800; font-size: 16px;
  color: var(--white); line-height: 1;
}
.car-price-badge .lbl {
  font-family: var(--f-headline);
  font-weight: 700; font-size: 8px;
  color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase;
  margin-top: 2px;
}
.car-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.car-name {
  font-family: var(--f-headline);
  font-weight: 800; font-size: 18px;
  text-transform: uppercase; color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.car-desc { font-size: 13px; color: var(--text-soft); margin-bottom: 14px; line-height: 1.55; }
.car-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.spec-pill {
  font-size: 11px; color: var(--text-mute);
  padding: 3px 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 0.04em;
}
.spec-pill.highlight { background: rgba(201,168,108,0.12); border-color: rgba(201,168,108,0.5); color: var(--gold); }
.car-footer { display: flex; gap: 8px; margin-top: auto; }

/* ───── OFFERTE ───── */
.offerte-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 980px) { .offerte-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .offerte-grid { grid-template-columns: 1fr; } }
.offer-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.offer-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.offer-card .offer-tag {
  position: absolute; top: 0; right: 0; z-index: 2;
  background: var(--gold); color: var(--bg);
  font-family: var(--f-headline);
  font-weight: 800; font-size: 9px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 12px;
}
.offer-img {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #161616, #1e1e1e);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.offer-img img { width: 100%; height: 100%; object-fit: cover; }
.offer-body { padding: 22px 22px 24px; }
.offer-cat {
  font-family: var(--f-headline);
  font-weight: 700; font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.offer-name {
  font-family: var(--f-headline);
  font-weight: 800; font-size: 19px;
  text-transform: uppercase; color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.offer-sub { font-size: 12px; color: var(--text-soft); margin-bottom: 16px; }
.offer-features { display: grid; gap: 8px; margin-bottom: 16px; }
.offer-feature { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-mute); }
.offer-feature::before { content: ''; width: 4px; height: 4px; background: var(--gold); flex-shrink: 0; }
.offer-meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 12px; margin-bottom: 12px;
  font-size: 11px; color: var(--text-soft);
  letter-spacing: 0.04em;
}
.offer-price-row {
  display: flex; justify-content: space-between; align-items: center;
}
.offer-price {
  font-family: var(--f-headline);
  font-weight: 800; font-size: 26px;
  color: var(--gold); letter-spacing: 0.02em;
}
.offer-price-iva { font-size: 11px; color: var(--text-soft); margin-left: 4px; }
.offer-tag-green { background: #1c8a4f; }
.offer-img.img-error::after {
  content: attr(data-model);
  font-family: var(--f-headline);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.12);
}

/* ───── CTA BAND ───── */
.cta-band {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-band .section-label { color: var(--gold-dark); }
.cta-band h2 { color: var(--bg); margin-bottom: 14px; }
.cta-band p { color: rgba(20,15,5,0.75); font-size: 16px; max-width: 560px; margin: 0 auto 32px; }
.cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-primary { background: var(--bg); color: var(--gold); border-color: var(--bg); }
.cta-band .btn-primary:hover { background: #1c1c1c; }
.cta-band .btn-outline { color: var(--bg); border-color: var(--bg); }
.cta-band .btn-outline:hover { background: var(--bg); color: var(--gold); }

/* ───── FAQ ───── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-family: var(--f-headline);
  font-weight: 700; font-size: 17px;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--text);
}
.faq-q::after {
  content: '+';
  color: var(--gold); font-size: 22px; font-weight: 300;
  transition: transform 0.25s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 14px; color: var(--text-mute); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 320px; padding-top: 14px; }

/* ───── FOOTER ───── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 64px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 13px; max-width: 280px; line-height: 1.7; color: var(--gray); }
.footer-col h5 {
  font-family: var(--f-headline);
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 13px; color: var(--gray);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.divider { border: 0; border-top: 1px solid var(--line); margin: 0; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 22px;
  font-size: 11px; color: var(--gray-3);
}
@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ───── WHATSAPP FLOAT ───── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.07); box-shadow: 0 12px 32px rgba(37,211,102,0.55); }

/* ───── PAGE HEADER (subpage hero) ───── */
.page-header {
  background: linear-gradient(160deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: calc(var(--nav-h) + 80px) 0 70px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(201,168,108,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { font-size: clamp(36px, 5vw, 64px); margin-bottom: 14px; }
.page-header p { color: var(--text-soft); max-width: 580px; font-size: 16px; }

/* ── Spotlight oro interattivo (segue il mouse, solo NLT) ── */
.nlt-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(700px circle at var(--mx, 70%) var(--my, 30%), rgba(212,175,55,0.24), transparent 60%);
}
@media (prefers-reduced-motion: reduce) { .nlt-spotlight { display: none; } }
@media (hover: none) { .nlt-spotlight { display: none; } }

/* ───── BREADCRUMB ───── */
.breadcrumb {
  font-size: 12px; color: var(--text-faint);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--text-mute); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 8px; color: var(--gray-3); }

/* ───── PREVENTIVO FORM (NLT) ───── */
.quote-form {
  background: rgba(17,17,17,0.65);
  border: 1px solid var(--line);
  padding: 36px;
}
.quote-form-light {
  background: var(--off-white);
  color: var(--text-dark);
  border: none;
}
.quote-form .form-eyebrow {
  font-family: var(--f-headline);
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.quote-form h3 {
  font-size: 24px; line-height: 1.15;
  margin-bottom: 10px;
  color: inherit;
}
.quote-form-light h3 { color: var(--text-dark); }
.quote-form .form-intro {
  font-size: 13px; color: var(--text-soft); margin-bottom: 22px;
}
.quote-form-light .form-intro { color: var(--gray); }
.trust-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-mute); }
.trust-item .check { color: var(--gold); font-weight: 700; }
.quote-form-light .trust-item { color: var(--gray); }

.form-section { margin-bottom: 22px; }
.form-label {
  display: block;
  font-family: var(--f-body);
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 8px;
}
.quote-form-light .form-label { color: var(--text-dark-2); }
.form-label .req { color: var(--gold); }

.pill-group {
  display: grid; gap: 8px;
}
.pill-group.cols-3 { grid-template-columns: repeat(3, 1fr); }
.pill-group.cols-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 720px) {
  .pill-group.cols-5 { grid-template-columns: repeat(3, 1fr); }
  .pill-group.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
.pill-btn {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  color: var(--text-mute);
  font-family: var(--f-body);
  font-size: 12px; font-weight: 500;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.18s;
  line-height: 1.3;
}
.quote-form-light .pill-btn {
  background: var(--white);
  border-color: #ddd;
  color: var(--gray);
}
.pill-btn:hover { border-color: var(--gold); color: var(--gold); }
.pill-btn.active {
  background: var(--bg);
  border-color: var(--gold);
  color: var(--gold);
  font-weight: 600;
}
.quote-form-light .pill-btn.active {
  background: var(--bg);
  color: var(--gold);
  border-color: var(--bg);
}
.pill-btn .emoji { display: block; font-size: 16px; margin-bottom: 2px; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .form-grid-2 { grid-template-columns: 1fr; } }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.1);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.18s, background 0.18s;
}

/* Fix contrasto dropdown opzioni su Windows */
.form-select option {
  color: var(--text-dark);
  background-color: var(--white);
}
select option {
  color: var(--text-dark);
  background-color: var(--white);
}
.quote-form-light .form-input,
.quote-form-light .form-select,
.quote-form-light .form-textarea {
  background: var(--white);
  border-color: #ddd;
  color: var(--text-dark);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-faint); }
.quote-form-light .form-input::placeholder { color: #999; }

.form-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 22px;
}
.quote-form-light .form-divider { background: #e8e8e8; }

.checkbox-row {
  display: flex; gap: 10px; align-items: flex-start;
  cursor: pointer;
}
.checkbox-row input { margin-top: 4px; accent-color: var(--gold); width: 15px; height: 15px; flex-shrink: 0; }
.checkbox-row span { font-size: 12px; color: var(--text-soft); line-height: 1.6; }
.quote-form-light .checkbox-row span { color: var(--gray); }
.checkbox-row a { color: var(--gold); }

.form-error {
  font-size: 11px; color: #e07070; margin-top: 4px; min-height: 0;
}
.input-error {
  border-color: #e07070 !important;
  box-shadow: 0 0 0 2px rgba(224,112,112,0.15) !important;
}
.form-success {
  text-align: center; padding: 40px 24px;
}
.form-success .check-icon {
  font-size: 36px; color: var(--gold); margin-bottom: 14px;
}
.form-success h4 { font-size: 22px; color: var(--gold); margin-bottom: 10px; }
.form-success p { color: var(--text-soft); }

.form-submit {
  width: 100%;
  margin-top: 6px;
  padding: 16px;
  background: var(--gold); color: var(--bg);
  border: none;
  font-family: var(--f-headline);
  font-weight: 800; font-size: 14px;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--gold-light); }

/* ───── COMPARE TABLE ───── */
.compare-table {
  width: 100%; border-collapse: collapse;
  font-family: var(--f-body);
}
.compare-table th, .compare-table td {
  padding: 14px 18px;
  border: 1px solid var(--line);
  font-size: 13px;
  text-align: left;
}
.compare-table thead th {
  background: var(--bg-3);
  font-family: var(--f-headline);
  font-weight: 800; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text);
}
.compare-table thead th.gold {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  text-align: center;
}
.compare-table thead th.muted { text-align: center; color: var(--text-mute); }
.compare-table tbody td:first-child { font-weight: 600; color: var(--text); background: var(--bg-2); }
.compare-table tbody td.good { color: var(--gold); font-weight: 600; text-align: center; }
.compare-table tbody td.bad  { color: var(--text-soft); text-align: center; }

/* ───── PROCESS / STEPS ───── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); }
.step {
  background: var(--bg-2); padding: 36px 28px;
}
.step-num {
  font-family: var(--f-headline);
  font-weight: 800; font-size: 56px;
  color: rgba(201,168,108,0.18);
  line-height: 1; margin-bottom: 12px;
}
.step h4 { font-size: 18px; margin-bottom: 10px; color: var(--text); }
.step p { font-size: 13px; color: var(--text-mute); }
@media (max-width: 880px) { .steps-grid { grid-template-columns: 1fr; } }

/* ───── FILTERS ───── */
.filter-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 36px;
}
.filter-btn {
  background: transparent;
  border: 1.5px solid var(--gold-dark);
  color: var(--gold);
  font-family: var(--f-headline);
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 9px 18px;
  cursor: pointer;
  transition: all 0.18s;
}
.filter-btn:hover { color: var(--gold-light); border-color: var(--gold-light); }
.filter-btn.active { background: var(--gold); color: var(--bg); border-color: var(--gold); }

/* ───── CONTACT INFO ───── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
.contact-info-row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-row:last-child { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.contact-meta-label {
  font-family: var(--f-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-meta-val { font-size: 14px; color: var(--text); white-space: pre-line; line-height: 1.6; }
.contact-meta-val a { color: var(--text); transition: color 0.2s; }
.contact-meta-val a:hover { color: var(--gold); }

.opening-card {
  background: var(--bg-2); padding: 24px;
  border: 1px solid var(--line);
  margin-top: 18px;
}
.opening-card h4 {
  font-family: var(--f-headline);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 14px;
}
.opening-row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.opening-row:last-child { border-bottom: none; }
.opening-row .day { color: var(--text-mute); }
.opening-row .hours { color: var(--text); font-weight: 600; }

/* ───── VALORI / GRID 4 ───── */
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  background: var(--line);
}
.value-card { background: var(--bg-2); padding: 32px 24px; }
.value-card .accent-line { width: 24px; height: 2px; background: var(--gold); margin-bottom: 16px; }
.value-card h4 { font-size: 16px; margin-bottom: 8px; color: var(--text); }
.value-card p { font-size: 13px; color: var(--text-mute); line-height: 1.6; }
@media (max-width: 880px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .values-grid { grid-template-columns: 1fr; } }

/* ───── SERVICE DUO (home — due soluzioni) ───── */
.service-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
@media (max-width: 720px) {
  .service-duo {
    grid-template-columns: 1fr;
  }
  .service-duo > div {
    padding-left: 28px !important;
    padding-right: 28px !important;
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
}

/* ───── UTILITY ───── */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.6s, transform 0.6s; }
.fade-in.visible { opacity: 1; transform: none; }
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.relative { position: relative; }
.gold { color: var(--gold); }
.muted { color: var(--text-soft); }

/* ───── RESPONSIVE ───── */
@media (max-width: 720px) {
  .hero { padding-top: calc(var(--nav-h) + 24px); padding-bottom: 60px; }
  .hero h1 { font-size: clamp(34px, 8vw, 52px); }
  .hero p { font-size: 15px; }
  .stats-grid { gap: 20px; }
  section { padding: 60px 0; }
  .container { padding: 0 20px; }
  .nav-container { padding: 0 20px; }
  .quote-form { padding: 24px; }
  .page-header { padding: calc(var(--nav-h) + 50px) 0 50px; }
}
