:root {
  --ink: #121721;
  --muted: #697386;
  --line: #dce3ec;
  --paper: #f6f8fb;
  --white: #ffffff;
  --blue: #2488e8;
  --blue-deep: #102f55;
  --red: #e24d2e;
  --green: #43b56b;
  --gold: #c89a3c;
  --shadow: 0 18px 45px rgba(18, 23, 33, .13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(220, 227, 236, .75);
  backdrop-filter: blur(16px);
}

.brand img { width: 154px; height: auto; }

.main-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
  color: #253246;
}

.main-nav a { padding: 12px 0; }
.main-nav a:hover { color: var(--blue); }

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.language-switch button {
  min-width: 34px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.language-switch button.active {
  background: var(--blue-deep);
  color: var(--white);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 4px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 4px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 96vh;
  padding: 160px clamp(20px, 6vw, 76px) 32px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: #131922;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  opacity: .58;
  transform: scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 18, 28, .94) 0%, rgba(12, 18, 28, .68) 42%, rgba(12, 18, 28, .17) 100%),
    linear-gradient(0deg, rgba(246, 248, 251, 1) 0%, rgba(246, 248, 251, 0) 18%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  color: var(--white);
  padding-bottom: 170px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.hero h1 {
  margin: 0;
  font-family: Play, Inter, sans-serif;
  font-size: clamp(64px, 13vw, 168px);
  line-height: .84;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .87);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button,
.search-panel button,
.finance-box button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
.search-panel button,
.finance-box button { background: var(--red); color: var(--white); }
.button.ghost { border: 1px solid rgba(255,255,255,.55); color: var(--white); }
.button.dark { background: var(--ink); color: var(--white); margin-top: 18px; }
.button.ai-button { background: var(--blue); color: var(--white); }
.button.share-button { background: rgba(255,255,255,.16); color: var(--white); border: 1px solid rgba(255,255,255,.35); }

.search-panel {
  position: absolute;
  left: clamp(20px, 6vw, 76px);
  right: clamp(20px, 6vw, 76px);
  bottom: 44px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 12px;
  padding: 14px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label { display: grid; gap: 7px; }
label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

select,
input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-strip div {
  min-height: 124px;
  padding: 28px clamp(20px, 3vw, 38px);
  background: var(--white);
}

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: 90px clamp(20px, 6vw, 76px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .8fr);
  gap: 48px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

.intro > p,
.ligier-copy p,
.finance p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
}

.filter-tabs button {
  min-height: 38px;
  border: 0;
  border-radius: 4px;
  padding: 0 15px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.filter-tabs button.active {
  background: var(--blue-deep);
  color: var(--white);
}

.vehicle-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 12px;
  align-items: center;
}

.vehicle-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.vehicle-viewport::-webkit-scrollbar { display: none; }

.vehicle-grid {
  --vehicle-gap: 16px;
  display: flex;
  gap: var(--vehicle-gap);
  align-items: stretch;
}

.vehicle-card {
  flex: 0 0 calc((100% - (var(--vehicle-gap) * 3)) / 4);
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(18, 23, 33, .08);
  scroll-snap-align: start;
}

.vehicle-card[hidden] { display: none; }

.vehicle-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 132px;
  object-fit: cover;
  background: #e8eef5;
}

.vehicle-body { padding: 14px; }

.badge {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(36, 136, 232, .12);
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 900;
}

.badge.accent { background: rgba(200, 154, 60, .16); color: #765317; }
.badge.green { background: rgba(67, 181, 107, .16); color: #1b6d3b; }

.vehicle-card h3 {
  min-height: 46px;
  margin: 11px 0 8px;
  font-size: 17px;
  line-height: 1.25;
}

.price {
  margin: 0 0 12px;
  font-size: 21px;
  font-weight: 900;
  color: var(--red);
}

dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
}

dl div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.vehicle-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.vehicle-actions button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.vehicle-actions button:first-child {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: var(--white);
}

.carousel-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(18, 23, 33, .1);
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: var(--blue-deep);
  color: var(--white);
}

.carousel-arrow:disabled {
  cursor: default;
  opacity: .35;
}

.ligier-band {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(340px, 1fr);
  gap: 42px;
  align-items: center;
  padding: 90px clamp(20px, 6vw, 76px);
  background:
    linear-gradient(100deg, rgba(16, 47, 85, .96), rgba(16, 47, 85, .84)),
    url("https://jiglesias.com/wp-content/uploads/2026/05/3_4_frt-IDEAL-28-1024x683-1-670x372.png") center/cover;
  color: var(--white);
}

.ligier-copy p { color: rgba(255,255,255,.78); }

.model-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.model-stack span {
  display: grid;
  min-height: 136px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.23);
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  font-family: Play, Inter, sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-grid article {
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-grid span {
  color: var(--red);
  font-weight: 900;
}

.service-grid h3 {
  margin: 34px 0 12px;
  font-size: 23px;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.finance {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  gap: 48px;
  align-items: center;
  padding: 90px clamp(20px, 6vw, 76px);
  background: var(--white);
}

.finance-box {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 450px);
  gap: 36px;
  align-items: start;
}

address {
  margin-top: 24px;
  color: var(--muted);
  font-style: normal;
  font-size: 18px;
  line-height: 1.7;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-actions a {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 0 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.contact-actions a:first-child { background: var(--red); color: var(--white); border-color: var(--red); }

.ai-drawer,
.share-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(18, 23, 33, .56);
}

.ai-drawer[hidden],
.share-drawer[hidden] { display: none; }

.ai-card,
.share-card {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.ai-card h2,
.share-card h2 {
  margin: 0 42px 18px 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.ai-response {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.ai-response strong { color: var(--ink); }

.ai-question {
  margin-bottom: 14px;
}

.ai-question textarea {
  min-height: 96px;
  resize: vertical;
  padding: 14px;
}

.share-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.share-links a,
.copy-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.share-links a:first-child {
  background: #25d366;
  border-color: #25d366;
  color: var(--white);
}

.copy-link {
  width: 100%;
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: var(--white);
}

.share-feedback {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(20px, 6vw, 76px);
  background: var(--ink);
  color: rgba(255,255,255,.72);
}

footer img {
  width: 176px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  filter: drop-shadow(0 0 18px rgba(255,47,47,.26));
}

footer p { margin: 0; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto 1fr auto auto; }
  .main-nav {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .header-cta { justify-self: end; }
  .menu-toggle { display: block; }
  .search-panel,
  .intro,
  .ligier-band,
  .finance,
  .contact { grid-template-columns: 1fr; }
  .trust-strip,
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .vehicle-card { flex-basis: calc((100% - var(--vehicle-gap)) / 2); }
  .section-heading { align-items: start; flex-direction: column; }
  .hero-content { padding-bottom: 250px; }
}

@media (max-width: 640px) {
  .site-header {
    height: 124px;
    padding-inline: 16px;
    gap: 12px;
  }
  .brand img { width: 116px; }
  .language-switch {
    order: 5;
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: center;
  }
  .language-switch button {
    flex: 1;
    min-width: 0;
  }
  .header-cta {
    min-height: 38px;
    padding: 0 10px;
    font-size: 13px;
  }
  .main-nav { top: 124px; }
  .hero {
    min-height: 940px;
    padding: 174px 16px 24px;
  }
  .hero-content { padding-bottom: 430px; }
  .hero-actions .button { width: 100%; }
  .search-panel {
    left: 16px;
    right: 16px;
    bottom: 24px;
  }
  .trust-strip,
  .service-grid,
  .model-stack { grid-template-columns: 1fr; }
  .vehicle-carousel {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
  }
  .vehicle-card { flex-basis: 100%; }
  .carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  .section,
  .ligier-band,
  .finance { padding: 64px 16px; }
  .filter-tabs { width: 100%; overflow-x: auto; }
  .filter-tabs button { flex: 1 0 auto; }
  footer { align-items: flex-start; flex-direction: column; }
}

/* Cinematic redesign layer */
:root {
  --cinema: #06070a;
  --cinema-2: #10131a;
  --steel: #aeb7c4;
  --laser: #ff2f2f;
  --ice: #6fc3ff;
  --signal: #d9ff5b;
  --glass: rgba(255, 255, 255, .075);
  --glass-line: rgba(255, 255, 255, .16);
  --hot-shadow: 0 0 30px rgba(255, 47, 47, .32);
}

body {
  color: var(--white);
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 92px),
    linear-gradient(180deg, #050609 0%, #11151c 48%, #07080b 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 49.8%, rgba(255,47,47,.14) 50%, transparent 50.2%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 7px);
  opacity: .32;
}

.site-header {
  height: 88px;
  background: rgba(5, 6, 9, .72);
  border-bottom: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 22px 60px rgba(0,0,0,.26);
}

.brand img {
  width: 280px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 0 18px rgba(255,47,47,.28));
}

.main-nav { color: rgba(255,255,255,.74); }
.main-nav a:hover { color: var(--white); text-shadow: 0 0 18px rgba(111,195,255,.6); }

.language-switch {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}

.language-switch button { color: rgba(255,255,255,.72); }
.language-switch button.active { background: var(--laser); box-shadow: var(--hot-shadow); }

.header-cta {
  background: var(--laser);
  color: var(--white);
  box-shadow: var(--hot-shadow);
}

.hero {
  min-height: 100svh;
  padding-top: 146px;
  background: var(--cinema);
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 4;
  height: clamp(34px, 6vh, 76px);
  background: #020203;
  pointer-events: none;
}

.hero::before { top: 0; }
.hero::after { bottom: 0; }

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 52%, transparent 0 18%, rgba(0,0,0,.76) 45%),
    linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.58) 42%, rgba(0,0,0,.14) 72%, rgba(0,0,0,.88) 100%);
}

.hero-media img {
  object-position: center 54%;
  opacity: .78;
  filter: contrast(1.18) saturate(1.04) brightness(.78);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(255,47,47,.2), transparent 34%),
    linear-gradient(0deg, rgba(5,6,9,1) 0%, transparent 28%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.07) 0 1px, transparent 1px 90px);
  mix-blend-mode: screen;
  opacity: .9;
}

.hero-content {
  width: min(1040px, 100%);
  padding-bottom: 210px;
}

.hero .eyebrow {
  color: var(--signal);
  text-shadow: 0 0 16px rgba(217,255,91,.32);
}

.hero h1 {
  position: relative;
  max-width: 1180px;
  font-size: clamp(78px, 16vw, 226px);
  text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(255,255,255,.28),
    0 22px 52px rgba(0,0,0,.9);
}

.hero h1::after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: -.08em;
  width: min(52vw, 620px);
  height: 5px;
  background: linear-gradient(90deg, var(--laser), transparent);
  box-shadow: var(--hot-shadow);
}

.hero-lead {
  max-width: 760px;
  color: rgba(255,255,255,.82);
  font-size: clamp(18px, 2.1vw, 27px);
}

.hero-vitals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(760px, 100%);
  margin-top: 28px;
}

.hero-vitals span {
  min-height: 78px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.035));
  box-shadow: inset 0 0 30px rgba(255,255,255,.035);
}

.hero-vitals strong {
  display: block;
  color: var(--laser);
  font-family: Play, Inter, sans-serif;
  font-size: 24px;
}

.hero-vitals small {
  color: rgba(255,255,255,.78);
  font-weight: 800;
  text-transform: uppercase;
}

.button,
.search-panel button,
.finance-box button,
.vehicle-actions button,
.copy-link {
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.button.primary,
.search-panel button,
.finance-box button {
  background: var(--laser);
  box-shadow: var(--hot-shadow);
}

.button.ghost,
.button.share-button {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.26);
}

.button.ai-button {
  background: var(--ice);
  color: #06101b;
  box-shadow: 0 0 26px rgba(111,195,255,.36);
}

.button.ai-button::before,
.vehicle-actions button[data-ask-ai]::before {
  content: "✦";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 50%;
  background: #06101b;
  color: var(--ice);
  font-size: 11px;
  line-height: 1;
  box-shadow: 0 0 16px rgba(111,195,255,.58);
}

.search-panel {
  bottom: 52px;
  background: rgba(8, 10, 14, .78);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 24px 70px rgba(0,0,0,.42), inset 0 0 36px rgba(255,255,255,.035);
  backdrop-filter: blur(18px);
}

label span { color: rgba(255,255,255,.62); }
select,
input,
.ai-question textarea {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: var(--white);
}

select option { color: #111; }

.trust-strip {
  background: #030405;
  border-block-color: rgba(255,255,255,.12);
}

.trust-strip div {
  background: linear-gradient(180deg, #11151b, #07090d);
  border-right: 1px solid rgba(255,255,255,.08);
}

.trust-strip strong { color: var(--white); }
.trust-strip span { color: rgba(255,255,255,.58); }

.section,
.finance {
  background: transparent;
}

.intro,
.stock-section,
.services,
.contact {
  position: relative;
}

.intro::before,
.stock-section::before,
.services::before,
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,47,47,.12), transparent 22%, rgba(111,195,255,.08) 82%, transparent);
  opacity: .45;
}

h2 {
  color: var(--white);
  text-transform: uppercase;
}

.intro > p,
.ligier-copy p,
.finance p,
.service-grid p,
address,
.ai-response,
.share-feedback {
  color: rgba(255,255,255,.64);
}

.filter-tabs {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}

.filter-tabs button { color: rgba(255,255,255,.62); }
.filter-tabs button.active { background: var(--laser); box-shadow: var(--hot-shadow); }

.vehicle-carousel {
  padding: 18px 0;
}

.vehicle-card {
  background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 30px 80px rgba(0,0,0,.32);
  transform: perspective(900px) rotateY(0deg);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.vehicle-card:hover {
  transform: perspective(900px) rotateY(-3deg) translateY(-6px);
  border-color: rgba(255,47,47,.58);
  box-shadow: 0 30px 90px rgba(255,47,47,.18);
}

.vehicle-card img {
  max-height: 150px;
  filter: contrast(1.08) saturate(1.08);
}

.vehicle-card h3,
dd { color: var(--white); }

dt,
.vehicle-body .badge + h3 + .price + dl dt {
  color: rgba(255,255,255,.48);
}

.price {
  color: var(--signal);
  text-shadow: 0 0 18px rgba(217,255,91,.24);
}

dl div { border-top-color: rgba(255,255,255,.13); }

.badge {
  background: rgba(111,195,255,.16);
  color: var(--ice);
}

.badge.accent {
  background: rgba(217,255,91,.14);
  color: var(--signal);
}

.badge.green {
  background: rgba(255,47,47,.18);
  color: #ff9b9b;
}

.vehicle-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  color: var(--white);
}

.vehicle-actions button:first-child {
  background: var(--ice);
  border-color: var(--ice);
  color: #071018;
}

.carousel-arrow {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: var(--white);
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: var(--laser);
}

.ligier-band {
  background:
    linear-gradient(100deg, rgba(3,4,6,.98), rgba(18,7,8,.78)),
    url("https://jiglesias.com/wp-content/uploads/2026/05/3_4_frt-IDEAL-28-1024x683-1-670x372.png") center/cover;
}

.model-stack span,
.service-grid article,
.finance-box,
.contact-actions a {
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
  border-color: rgba(255,255,255,.16);
  color: var(--white);
  box-shadow: 0 22px 60px rgba(0,0,0,.24);
}

.service-grid span { color: var(--laser); }
.service-grid h3 { color: var(--white); }

.contact-actions a:first-child {
  background: var(--laser);
  border-color: var(--laser);
}

.ai-card,
.share-card {
  background: linear-gradient(180deg, #151a22, #090b0f);
  border: 1px solid rgba(255,255,255,.16);
}

.modal-close,
.share-links a {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  color: var(--white);
}

footer {
  background: #030405;
  border-top: 1px solid rgba(255,255,255,.14);
}

@keyframes slowZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.14) translateX(1.5%); }
}

@media (max-width: 980px) {
  .site-header {
    background: rgba(5,6,9,.88);
  }

  .main-nav {
    background: rgba(5,6,9,.96);
    border-bottom-color: rgba(255,255,255,.16);
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 128px;
  }

  .brand img { width: 180px; }

  .main-nav { top: 128px; }

  .hero {
    min-height: 980px;
    padding-top: 170px;
  }

  .hero h1 {
    font-size: clamp(60px, 18vw, 90px);
  }

  .hero-content {
    padding-bottom: 430px;
  }

  .hero-vitals {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .hero-vitals span {
    min-height: 66px;
    padding: 10px 8px;
  }

  .hero-vitals strong {
    font-size: 18px;
  }

  .hero-vitals small {
    font-size: 9px;
    line-height: 1.25;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions .button {
    width: auto;
    min-height: 48px;
    padding-inline: 12px;
    text-align: center;
    font-size: 12px;
  }

  .search-panel {
    bottom: 28px;
  }

  .share-links {
    grid-template-columns: 1fr;
  }
}
