/* ═══════════════════════════════════════════════════════════════
   VEICULO.CSS — Página de detalhe (Tesla-style)
   ═══════════════════════════════════════════════════════════════ */

/* ─── 1. HERO ──────────────────────────────────────────────────── */
.vd-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* background-image é definido via JS */
.vd-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #07111d;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.vd-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 7, 18, 0.38) 0%,
    rgba(0, 7, 18, 0.04) 38%,
    rgba(0, 7, 18, 0.68) 100%
  );
}

.vd-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(32px, 5vw, 84px) clamp(72px, 9vh, 108px);
}

.vd-hero-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 16px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
}

.vd-hero-content h1 {
  margin: 0 0 14px;
  font-size: clamp(52px, 7.5vw, 104px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -1.5px;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.44);
}

.vd-hero-desc {
  max-width: 500px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.5;
}

.vd-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.vd-hero-actions .button {
  min-width: 0;
  min-height: 50px;
  padding: 13px 30px;
  font-size: 14px;
}

/* scroll hint arrow */
.vd-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.56);
  animation: vd-bounce 2.2s ease-in-out infinite;
}

@keyframes vd-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ─── 2. CONHEÇA ───────────────────────────────────────────────── */
.vd-meet {
  padding: clamp(72px, 9vw, 112px) 0;
  background: #fff;
  text-align: center;
}

.vd-meet-intro {
  max-width: 680px;
  margin: 0 auto clamp(52px, 6vw, 76px);
}

.vd-eyebrow {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.vd-eyebrow--muted {
  color: var(--muted);
}

.vd-meet h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--ink);
}

.vd-meet-desc {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

/* feature cards */
.vd-feature-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.vd-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: clamp(36px, 4.5vw, 56px) clamp(24px, 3vw, 44px);
  background: #fff;
  text-align: center;
  border-right: 1px solid var(--line);
}

.vd-feature:last-child {
  border-right: 0;
}

.vd-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--navy);
  flex-shrink: 0;
}

.vd-feature h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
}

.vd-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.56;
}

/* ─── 3. ESPECIFICAÇÕES ────────────────────────────────────────── */
.vd-specs-sec {
  padding: clamp(72px, 9vw, 112px) 0 0;
  background: #f4f6f9;
  text-align: center;
  overflow: hidden;
}

.vd-specs-heading {
  margin: 0 0 clamp(28px, 4vw, 44px);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.vd-specs-sec h2 {
  margin: 0 0 clamp(40px, 5vw, 60px);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 900;
  color: var(--ink);
}

.vd-vehicle-stage {
  max-width: 920px;
  margin: 0 auto;
}

.vd-stage-img-wrap {
  position: relative;
  cursor: zoom-in;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
}

.vd-stage-img {
  display: block;
  width: 100%;
  height: clamp(300px, 45vw, 520px);
  object-fit: cover;
  object-position: center;
}

/* specs bar */
.vd-specs-bar {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin-top: clamp(40px, 5vw, 60px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.vd-spec-item {
  flex: 1;
  min-width: 0;
  padding: clamp(22px, 2.8vw, 36px) clamp(14px, 1.8vw, 28px);
  text-align: center;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.vd-spec-item:last-child {
  border-right: 0;
}

.vd-spec-value {
  display: block;
  margin-bottom: 5px;
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.2;
}

.vd-spec-label {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ─── Carrossel: setas e botão expandir ───────────────────────── */
.vd-stage-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  transition: background 0.18s, transform 0.18s;
  z-index: 4;
}

.vd-stage-prev { left: 16px; }
.vd-stage-next { right: 16px; }

.vd-stage-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}

.vd-stage-expand {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  border: none;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.16);
  transition: background 0.18s;
  z-index: 4;
}

.vd-stage-expand:hover {
  background: #fff;
}

/* ─── Lightbox ──────────────────────────────────────────────────── */
.vd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.vd-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.vd-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 5, 15, 0.92);
  cursor: zoom-out;
}

.vd-lb-img {
  position: relative;
  z-index: 2;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  transition: opacity 0.18s;
}

.vd-lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: background 0.18s;
}

.vd-lb-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.vd-lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
}

.vd-lb-prev { left: clamp(12px, 3vw, 40px); }
.vd-lb-next { right: clamp(12px, 3vw, 40px); }

.vd-lb-arrow:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%) scale(1.08);
}

/* ─── Botão "Ver em 360°" ────────────────────────────────────────── */
.vd-360-open-wrap {
  display: flex;
  justify-content: center;
  padding: 24px 0;
}

.vd-360-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: 8px;
  border: 1.5px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.vd-360-open-btn:hover {
  background: var(--navy);
  color: #fff;
}

/* ─── Modal 360° ─────────────────────────────────────────────────── */
.vd-360-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s ease;
}

.vd-360-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.vd-360-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 5, 15, 0.88);
  cursor: pointer;
}

.vd-360-modal-box {
  position: relative;
  z-index: 2;
  width: min(1100px, 96vw);
  background: #07111d;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.vd-360-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vd-360-modal-title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.vd-360-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: background 0.18s;
}

.vd-360-modal-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.vd-360-stage-wrap {
  position: relative;
  width: 100%;
  background: #07111d;
  user-select: none;
}

.vd-360-canvas {
  display: block;
  width: 100%;
  height: auto;
  touch-action: none;
}

.vd-360-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
  white-space: nowrap;
}

.vd-360-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(7, 17, 29, 0.92);
}

.vd-360-loader-track {
  width: min(320px, 70%);
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  overflow: hidden;
}

.vd-360-loader-bar {
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 3px;
  transition: width 0.15s linear;
}

.vd-360-loader-pct {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.vd-360-modal-footer {
  display: flex;
  justify-content: center;
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vd-360-spin-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 26px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.vd-360-spin-btn:hover,
.vd-360-spin-btn.is-spinning {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}

.vd-360-spin-btn.is-spinning .vd-360-spin-icon {
  animation: vd-360-rotate 1s linear infinite;
}

@keyframes vd-360-rotate {
  to { transform: rotate(360deg); }
}

/* ─── 4. BANNER ────────────────────────────────────────────────── */
.vd-banner {
  position: relative;
  width: 100%;
  height: clamp(400px, 52vh, 640px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* background-image definido via JS */
.vd-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #07111d;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

.vd-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background: rgba(0, 7, 18, 0.54);
}

.vd-banner-quote {
  position: relative;
  z-index: 2;
  max-width: min(780px, 80%);
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3.4vw, 48px);
  font-weight: 900;
  line-height: 1.16;
  text-align: center;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.48);
  letter-spacing: -0.5px;
}

/* ─── 5. DIFERENCIAIS ──────────────────────────────────────────── */
.vd-highlights-sec {
  padding: clamp(72px, 9vw, 112px) 0;
  background: #fff;
}

.vd-highlights-head {
  max-width: 560px;
  margin-bottom: clamp(44px, 5.5vw, 68px);
}

.vd-highlights-head h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  color: var(--ink);
}

.vd-highlights-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.vd-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vd-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 8px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.vd-highlight-check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy);
  margin-top: 1px;
}

.vd-highlight-text {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.44;
  font-weight: 600;
}

/* ─── 5.2. VERSÕES ─────────────────────────────────────────────── */
.vd-versions-sec {
  padding: clamp(64px, 8vw, 96px) 0;
  background: #f6f7f9;
}

.vd-versions-title {
  margin: 0 0 clamp(32px, 4vw, 48px);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  color: var(--ink);
}

.vd-versions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.vd-versions-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.vd-ver-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  overflow: hidden;
}

.vd-ver-img-wrap {
  width: 100%;
  background: #f0f1f3;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vd-ver-img-wrap img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  display: block;
}

.vd-ver-info {
  padding: 24px 28px 28px;
}

.vd-ver-name {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
}

.vd-ver-specs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.vd-ver-spec {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vd-ver-spec-icon {
  flex-shrink: 0;
  color: #0ea5e9;
}

.vd-ver-spec-text {
  display: flex;
  flex-direction: column;
}

.vd-ver-spec-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.vd-ver-spec-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.vd-ver-specs--detailed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 12px;
}

.vd-ver-spec--chip {
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

.vd-ver-spec--chip .vd-ver-spec-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
}

.vd-ver-kicker {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.vd-ver-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
  color: #0ea5e9;
  text-decoration: none;
}

.vd-ver-link:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .vd-versions-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .vd-versions-grid,
  .vd-versions-grid--3 {
    grid-template-columns: 1fr;
  }
}

/* ─── 5.5. FICHA TÉCNICA COMPLETA ──────────────────────────────── */
.vd-specs-full-sec {
  padding: clamp(64px, 8vw, 96px) 0;
  background: #fff;
}

.vd-specs-full-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.vd-specs-full-head h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 900;
  color: var(--ink);
}

.vd-specs-full-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.vd-ficha-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 8px;
  border: 1.5px solid var(--navy);
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.vd-ficha-btn:hover {
  background: #0a1e38;
  border-color: #0a1e38;
}

.vd-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

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

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

.vd-specs-table th {
  width: 48%;
  padding: 13px 16px 13px 0;
  font-weight: 600;
  color: var(--muted);
  text-align: left;
  vertical-align: top;
}

.vd-specs-table td {
  padding: 13px 0;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
}

@media (max-width: 540px) {
  .vd-specs-full-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .vd-specs-table th,
  .vd-specs-table td {
    display: block;
    width: 100%;
    padding: 6px 0;
  }
  .vd-specs-table th { padding-top: 14px; }
  .vd-specs-table td { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
  .vd-specs-table tr { border-bottom: none; }
}

/* ─── 6. CTA ───────────────────────────────────────────────────── */
.vd-cta-strip {
  padding: clamp(72px, 9vw, 112px) 0;
  background: linear-gradient(135deg, var(--navy-2), #123457);
  color: #fff;
  text-align: center;
}

.vd-cta-strip .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.vd-cta-strip h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 42px);
  color: #fff;
  line-height: 1.1;
}

.vd-cta-strip p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.5;
}

.vd-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.vd-cta-actions .button {
  min-width: 0;
  min-height: 50px;
  padding: 13px 28px;
  font-size: 14px;
}

/* ─── 7. OUTROS VEÍCULOS ───────────────────────────────────────── */
.vd-related {
  padding: clamp(72px, 9vw, 112px) 0;
  background: #f2f4f7;
}

.vd-related-title {
  margin: 0 0 clamp(32px, 4vw, 48px);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 900;
  color: var(--ink);
}

/* ─── Placeholder de imagem pendente ───────────────────────────── */
.vd-hero-bg--placeholder {
  background: linear-gradient(135deg, #0d1f35 0%, #1a3558 100%) !important;
}

.vd-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: clamp(300px, 45vw, 520px);
  background: #e8ecf2;
  border-radius: 12px;
  color: #6b7a8d;
  text-align: center;
  padding: 24px;
}

.vd-img-placeholder svg {
  opacity: 0.35;
  margin-bottom: 4px;
}

.vd-img-placeholder span {
  font-size: 13px;
  line-height: 1.5;
}

.vd-img-placeholder code {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  background: #d0d8e4;
  font-family: monospace;
  font-size: 12px;
  font-weight: 700;
  color: #1a3558;
  word-break: break-all;
}

/* ─── Mobile meet CTA ──────────────────────────────────────────── */
.vd-meet-mob-cta {
  display: none;
}

@media (max-width: 860px) {
  .vd-meet-mob-cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    margin-top: 36px;
  }

  .vd-meet-mob-img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    max-height: 260px;
  }

  .vd-meet-mob-cta .button {
    width: 100%;
    justify-content: center;
  }
}

/* ─── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 860px) {
  .vd-feature-cards {
    grid-template-columns: 1fr;
  }

  .vd-feature {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .vd-feature:last-child {
    border-bottom: 0;
  }

  .vd-highlights-grid {
    grid-template-columns: 1fr;
  }

  .vd-specs-bar {
    flex-wrap: wrap;
  }

  .vd-spec-item {
    flex: 1 1 50%;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .vd-spec-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .vd-hero-content {
    padding: 0 20px 80px;
  }

  .vd-hero-actions {
    flex-direction: column;
  }

  .vd-hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .vd-spec-item {
    flex: 1 1 100%;
  }

  .vd-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .vd-cta-actions .button {
    width: 100%;
    justify-content: center;
  }
}
