@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap");

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d0d0d;
  --bg-soft: #131313;
  --panel: #181818;
  --panel-2: #202020;
  --line: #303030;
  --line-soft: #252525;
  --amber: #E8A020;
  --amber-dark: #9d6511;
  --blue: #254D92;
  --red: #9E1E1A;
  --text: #ece7dd;
  --muted: #a9a299;
  --dim: #716c65;
  --white: #fff;
  --shadow: 0 24px 80px rgba(0, 0, 0, .45);
  --title: "Bebas Neue", sans-serif;
  --body: "Barlow", sans-serif;
  --r: 6px;
}

html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section { padding: 112px 0; position: relative; }
.page-main { padding-top: 76px; }
.compact-section-page { padding: 72px 0; }
.page-hero {
  padding: 118px 0 72px;
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(120deg, rgba(232,160,32,.08), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.035), transparent);
}
.page-hero.small-hero { padding-bottom: 42px; }
.page-hero h1 {
  font-size: clamp(3.4rem, 8vw, 7rem);
  max-width: 980px;
}
.page-hero p:not(.eyebrow) {
  max-width: 780px;
  font-size: 1.12rem;
  color: rgba(236,231,221,.78);
}
.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 28px;
  color: var(--muted);
  font-size: .84rem;
}
.breadcrumb a { color: var(--amber); }
.eyebrow {
  color: var(--amber);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h1, h2, h3 {
  font-family: var(--title);
  letter-spacing: .035em;
  line-height: .98;
  font-weight: 400;
}

h1 { font-size: clamp(4.4rem, 13vw, 10.5rem); max-width: 820px; }
h2 { font-size: clamp(2.6rem, 6vw, 5rem); max-width: 800px; }
h3 { font-size: 1.65rem; }
p { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: var(--r);
  border: 1px solid transparent;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--amber); color: #101010; }
.btn-outline { border-color: rgba(232,160,32,.55); color: var(--amber); background: transparent; }
.btn-outline:hover { background: var(--amber); color: #101010; }

#navbar {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
#navbar.scrolled {
  background: rgba(13,13,13,.93);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 12px 50px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
}
.nav-logo { width: 220px; flex: 0 0 auto; }
.nav-logo-img {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.45));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  list-style: none;
}
.nav-links a {
  color: rgba(236,231,221,.78);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: var(--amber); }
.nav-cta { margin-left: 4px; white-space: nowrap; }
.nav-hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}
.home-hero { min-height: 92vh; }
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: #0d0d0d;
}
.hero-photo::before,
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/hero-schiavetta-2025.jpg?v=20260527-hero");
  background-size: cover;
  background-position: center;
}
.hero-photo::before {
  transform: scale(1.08);
  filter: blur(28px) saturate(.95);
  opacity: .62;
}
.hero-photo::after {
  width: 100%;
  transform: translateX(25%);
  transform-origin: center;
  background:
    linear-gradient(90deg, rgba(13,13,13,.97) 0%, rgba(13,13,13,.9) 27%, rgba(13,13,13,.64) 48%, rgba(13,13,13,.42) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 30%),
    url("../img/hero-schiavetta-2025.jpg?v=20260527-hero");
  background-size: auto, auto, cover;
  background-position: center, center, center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.16) 4%, #000 18%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.16) 4%, #000 18%);
}
.hero-inner { padding: 180px 0 64px; }
.hero-lead {
  max-width: 650px;
  margin-top: 20px;
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: rgba(236,231,221,.78);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 1px;
  width: min(780px, 100%);
  margin-top: 56px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
}
.hero-stats div { padding: 22px; background: rgba(13,13,13,.65); }
.hero-stats dt {
  font-family: var(--title);
  color: var(--amber);
  font-size: 2.25rem;
  line-height: 1;
}
.hero-stats dd {
  color: var(--muted);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.ticker-bar {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #090909;
}
.ticker-inner {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-inner span {
  padding: 18px 34px;
  color: var(--amber);
  font-family: var(--title);
  font-size: 1.35rem;
  letter-spacing: .08em;
  white-space: nowrap;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 44px;
}
.split-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.rich-text {
  display: grid;
  gap: 18px;
}
.rich-text h2 { font-size: clamp(2.2rem, 4.5vw, 4.2rem); }
.rich-text h3 { color: var(--text); }
.rich-text a:not(.btn) { color: var(--amber); }
.feature-band {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(232,160,32,.08), rgba(255,255,255,.02));
}
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.info-card,
.warning-panel,
.legal-box,
.map-placeholder,
.cta-panel {
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  padding: 30px;
}
.info-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.info-card a { color: var(--amber); font-weight: 700; }
.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.warning-panel {
  border-color: rgba(232,160,32,.28);
}
.cta-band { padding-top: 40px; }
.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.legal-page .page-hero h1 { max-width: 900px; }
.section-head p:last-child { font-size: 1.08rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.service-card {
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid transparent;
  background: linear-gradient(90deg, rgba(232,160,32,.16), transparent);
  opacity: 0;
  transition: opacity .25s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232,160,32,.45);
  background: var(--panel);
}
.service-card:hover::before { opacity: 1; }
.service-card span {
  display: block;
  color: var(--amber);
  font-family: var(--title);
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.service-card h3, .service-card p, .service-card a { position: relative; z-index: 1; }
.service-card p { margin: 14px 0 26px; }
.service-card a {
  color: var(--amber);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}
.service-card-ai { background: linear-gradient(135deg, rgba(232,160,32,.16), rgba(37,77,146,.12)); }

.about-section { background: var(--bg-soft); }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 70px;
  align-items: start;
  margin-bottom: 70px;
}
.about-copy p + p { margin-top: 18px; }
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.about-badges span {
  border: 1px solid rgba(232,160,32,.35);
  color: var(--amber);
  padding: 8px 12px;
  border-radius: var(--r);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.history-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.history-card img {
  height: 420px;
  width: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: sepia(.28) contrast(1.06);
}
.history-card div { padding: 24px; }
.history-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.05rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.timeline-item {
  background: #101010;
  padding: 28px;
  min-height: 220px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.timeline-item.visible { opacity: 1; transform: none; }
.timeline-item time {
  display: block;
  color: var(--amber);
  font-family: var(--title);
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 22px;
}
.timeline-item h3 { font-size: 1.24rem; margin-bottom: 10px; }
.timeline-item p { font-size: .9rem; }
.timeline-item.current { background: linear-gradient(180deg, rgba(232,160,32,.12), #101010); }

.fleet-section {
  background:
    linear-gradient(180deg, rgba(13,13,13,.96), rgba(13,13,13,.92)),
    radial-gradient(circle at 20% 20%, rgba(158,30,26,.2), transparent 30%);
}
.fleet-grid, .quote-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.fleet-image {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.fleet-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}
.check-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  list-style: none;
}
.check-list li {
  color: var(--muted);
  padding-left: 26px;
  position: relative;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 10px;
  height: 10px;
  background: var(--amber);
  border-radius: 50%;
}

.quote-section { background: #101010; }
.quote-layout {
  display: grid;
  grid-template-columns: minmax(240px, .36fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}
.quote-note {
  margin-top: 28px;
  padding: 18px;
  border-left: 3px solid var(--amber);
  background: rgba(255,255,255,.035);
  color: var(--muted);
}
.quote-note a { color: var(--amber); font-weight: 700; }
.quote-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
}
.quote-form-wide {
  padding: 24px;
}
.quote-mode {
  display: inline-flex;
  width: fit-content;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  background: #0b0b0b;
}
.mode-option {
  border: 0;
  border-radius: calc(var(--r) - 2px);
  background: transparent;
  color: var(--muted);
  padding: 10px 14px;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
}
.mode-option.active {
  background: var(--amber);
  color: #101010;
}
.guided-progress {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(232,160,32,.25);
  border-radius: var(--r);
  background: rgba(232,160,32,.055);
}
.guided-progress div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: .84rem;
}
.guided-progress strong { color: var(--text); }
.progress-track {
  height: 6px;
  border-radius: 99px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.progress-track span {
  display: block;
  width: 14%;
  height: 100%;
  background: var(--amber);
  transition: width .2s ease;
}
.guided-summary, .final-summary, .quote-review {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  background: rgba(0,0,0,.16);
  color: var(--muted);
  font-size: .88rem;
}
.guided-summary:empty, .final-summary:empty, .quote-review:empty { display: none; }
.guided-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.quote-form.guided-mode .form-section,
.quote-form.guided-mode .quote-actions {
  display: none;
}
.quote-form.guided-mode .form-section.current-step,
.quote-form.guided-mode .quote-actions.current-step {
  display: grid;
}
.quote-form.full-mode .guided-progress,
.quote-form.full-mode .guided-summary,
.quote-form.full-mode .guided-nav {
  display: none;
}
.form-section {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  padding: 16px;
  background: rgba(255,255,255,.018);
}
.compact-section {
  background: rgba(255,255,255,.012);
}
.form-section legend {
  padding: 0 8px;
  color: var(--amber);
  font-family: var(--title);
  font-size: 1.25rem;
  letter-spacing: .06em;
}
.form-grid {
  display: grid;
  gap: 12px;
}
.form-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.form-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
label span {
  color: var(--dim);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #0c0c0c;
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  text-transform: none;
  letter-spacing: 0;
  color-scheme: dark;
}
textarea { resize: vertical; }
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: .75;
  cursor: pointer;
}
input[type="date"]::-webkit-calendar-picker-indicator:hover,
input[type="time"]::-webkit-calendar-picker-indicator:hover { opacity: 1; }
input[type="checkbox"] {
  width: auto;
  accent-color: var(--amber);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232,160,32,.12);
}
.field-help {
  color: #928b82;
  font-size: .82rem;
  line-height: 1.45;
}
.field-help a { color: var(--amber); font-weight: 700; }
.form-warning {
  padding: 10px 12px;
  border: 1px solid rgba(232,160,32,.32);
  border-radius: var(--r);
  background: rgba(232,160,32,.06);
  color: #d8c7a4;
  font-size: .84rem;
}
.hidden { display: none !important; }
.autocomplete-field {
  position: relative;
}
.autocomplete-list {
  position: absolute;
  z-index: 20;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  max-height: 260px;
  overflow: auto;
  border: 1px solid rgba(232,160,32,.28);
  border-radius: var(--r);
  background: #111;
  box-shadow: var(--shadow);
}
.autocomplete-list button {
  display: grid;
  gap: 3px;
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}
.autocomplete-list button:hover,
.autocomplete-list button:focus {
  background: rgba(232,160,32,.1);
  outline: none;
}
.autocomplete-list small {
  color: var(--dim);
  font-size: .76rem;
}
.check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: .86rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}
.checkbox-grid > div {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r);
  background: rgba(0,0,0,.14);
}
.checkbox-grid strong {
  color: var(--text);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .82rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.quote-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: end;
  position: sticky;
  bottom: 12px;
  z-index: 8;
  background: rgba(24,24,24,.94);
  backdrop-filter: blur(12px);
}
.ai-response {
  display: none;
  border: 1px solid rgba(232,160,32,.35);
  border-radius: var(--r);
  padding: 18px;
  background: rgba(232,160,32,.08);
}
.ai-response.visible { display: block; }
.ai-response strong { color: var(--amber); display: block; margin-bottom: 8px; }
.ai-response pre {
  white-space: pre-wrap;
  font-family: var(--body);
  color: var(--muted);
  line-height: 1.55;
}
.final-request {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
}

/* ── Gate di conversione ──────────────────────────────────────────── */
.conv-logged-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(74,222,128,.07);
  border: 1px solid rgba(74,222,128,.2);
  border-radius: var(--r);
  font-size: .88rem;
  color: rgba(236,231,221,.8);
}
.conv-logged-bar svg { color: #4ade80; flex-shrink: 0; }
.conv-gate {
  background: var(--panel);
  border: 1px solid rgba(232,160,32,.2);
  border-radius: var(--r);
  padding: 24px;
  margin-bottom: 8px;
}
.conv-gate-header { margin-bottom: 18px; }
.conv-gate-title { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.conv-gate-sub   { font-size: .85rem; color: var(--muted); }
.conv-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.conv-col {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: calc(var(--r) - 2px);
  padding: 14px 16px;
}
.conv-col-reg { border-color: rgba(232,160,32,.25); background: rgba(232,160,32,.04); }
.conv-col-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.conv-col-label-gold {
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 6px;
}
.conv-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.conv-list li { font-size: .82rem; line-height: 1.4; padding-left: 16px; position: relative; }
.conv-no::before  { content: '✕'; position: absolute; left: 0; color: rgba(248,113,113,.5); font-size: .7rem; }
.conv-yes::before { content: '✓'; position: absolute; left: 0; color: var(--amber); font-size: .7rem; }
.conv-no  { color: var(--muted); }
.conv-yes { color: var(--text); }
.conv-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.conv-btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: var(--amber);
  color: #111;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .06em;
  border-radius: var(--r);
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.conv-btn-primary:hover { opacity: .88; transform: translateY(-1px); color: #111; }
.conv-btn-skip {
  background: none;
  border: none;
  font-size: .78rem;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--body);
  text-decoration: underline;
  padding: 0;
  transition: color .2s;
}
.conv-btn-skip:hover { color: var(--text); }
.conv-note {
  margin-top: 12px;
  font-size: .78rem;
  color: var(--muted);
}
.conv-note a { color: var(--amber); }
.conv-anon-notice {
  font-size: .8rem;
  color: rgba(251,191,36,.7);
  padding: 8px 12px;
  background: rgba(251,191,36,.06);
  border-radius: 4px;
  border-left: 2px solid rgba(251,191,36,.3);
}
.conv-anon-notice a { color: var(--amber); }
@media (max-width: 640px) {
  .conv-compare { grid-template-columns: 1fr; }
}
.privacy-check {
  align-items: flex-start;
}
.quote-disclaimer {
  padding: 14px 16px;
  border: 1px solid rgba(232,160,32,.28);
  border-radius: var(--r);
  background: rgba(232,160,32,.055);
  color: #bdb5aa;
  font-size: .82rem;
  line-height: 1.55;
}
.loading { opacity: .65; pointer-events: none; }

.public-data-section {
  background:
    linear-gradient(135deg, rgba(232,160,32,.06), transparent 36%),
    linear-gradient(180deg, #0d0d0d, #111);
}
.public-data-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: start;
}
.public-data-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.public-data-hint {
  margin-top: 22px;
  padding: 18px;
  border-left: 3px solid var(--amber);
  background: rgba(255,255,255,.035);
}
.public-data-hint a { color: var(--amber); font-weight: 700; }
.access-form {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 30px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
}
.access-form h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 4px;
}
.form-anchor {
  position: absolute;
  top: -96px;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form-status {
  min-height: 1.4em;
  color: var(--amber);
  font-weight: 600;
}
.form-status.error { color: #ff7b7b; }

.contact-section {
  background: linear-gradient(90deg, #0d0d0d, #131313);
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-cards a {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
}
.contact-cards span {
  color: var(--dim);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.contact-cards strong {
  color: var(--text);
  font-size: 1.05rem;
  word-break: break-word;
}
.contact-cards a:hover { border-color: rgba(232,160,32,.45); }

#footer {
  background: #070707;
  border-top: 1px solid var(--line);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 42px;
}
.footer-brand img { width: 260px; margin-bottom: 22px; }
#footer h3 {
  color: var(--amber);
  font-size: 1.2rem;
  margin-bottom: 16px;
}
#footer p, #footer a, #footer small {
  color: var(--muted);
  font-size: .9rem;
}
#footer a:hover { color: var(--amber); }
.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
}

#back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(232,160,32,.45);
  border-radius: var(--r);
  background: #111;
  color: var(--amber);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
#back-top.visible { opacity: 1; pointer-events: auto; }

.cookie-bar {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(820px, calc(100% - 40px));
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(13,13,13,.96);
  box-shadow: var(--shadow);
}
.cookie-bar.hidden { display: none; }

.reveal, .reveal-left, .reveal-right, .stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal-left { transform: translateX(-24px); }
.reveal-right { transform: translateX(24px); }
.visible, .in-view, .stagger.visible > * { opacity: 1; transform: none; }
.section-h2-display {
  font-family: var(--title);
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: .04em;
  line-height: .95;
  margin-bottom: 0;
}
.stagger.visible > *:nth-child(2) { transition-delay: .06s; }
.stagger.visible > *:nth-child(3) { transition-delay: .12s; }
.stagger.visible > *:nth-child(4) { transition-delay: .18s; }
.stagger.visible > *:nth-child(5) { transition-delay: .24s; }
.stagger.visible > *:nth-child(6) { transition-delay: .3s; }

@keyframes ticker { to { transform: translateX(-50%); } }

@media (max-width: 1020px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: block; margin-left: auto; }
  #navbar.nav-mobile-open .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px 28px;
    background: rgba(13,13,13,.98);
    border-bottom: 1px solid var(--line);
  }
  #navbar.nav-mobile-open .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 1rem;
  }
  .section-head, .about-grid, .fleet-grid, .quote-grid, .quote-layout, .public-data-grid, .contact-grid, .split-layout, .cta-panel { grid-template-columns: 1fr; }
  .form-grid.cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid.cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-grid, .service-list, .cards-3 { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  #navbar { padding: 0 14px; }
  .nav-logo, .nav-logo-img { width: 180px; }
  h1 { font-size: clamp(3.6rem, 18vw, 5rem); }
  .hero-photo::after { transform: translateX(10%); }
  .hero-inner { padding-top: 140px; }
  .hero-stats, .services-grid, .service-list, .cards-3, .form-row, .form-grid.cols-2, .form-grid.cols-3, .form-grid.cols-4, .contact-cards, .footer-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 92px 0 52px; }
  .page-hero h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .section { padding: 76px 0; }
  .history-card img, .fleet-image img { height: 320px; }
  .quote-form { padding: 20px; }
  .quote-mode { width: 100%; }
  .mode-option { flex: 1; padding-inline: 8px; }
  .guided-progress div:first-child { display: grid; }
  .quote-actions { grid-template-columns: 1fr; position: static; }
  .guided-nav { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-bar { flex-direction: column; align-items: flex-start; }
}
