/* Business Link – minimal static site styles */
:root {
  --bg: #0b1220;
  --panel: #0f1b33;
  --text: #e8eefc;
  --muted: #b7c3e6;
  --brand: #5dd6c1;
  --brand2: #79a7ff;
  --line: rgba(255, 255, 255, .10);
  --shadow: 0 12px 30px rgba(0, 0, 0, .35);
  --radius: 16px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(121, 167, 255, .35), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, rgba(93, 214, 193, .28), transparent 55%),
    radial-gradient(900px 500px at 60% 110%, rgba(121, 167, 255, .18), transparent 55%),
    var(--bg);
  line-height: 1.6;
}

a {
  color: inherit
}

a:focus {
  outline: 2px solid rgba(121, 167, 255, .8);
  outline-offset: 3px;
  border-radius: 8px
}

.container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 22px 18px 64px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(15, 27, 51, .65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .2px;
}

.brand-badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 8px 24px rgba(93, 214, 193, .18);
}

.brand-img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav a {
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
}

.nav a:hover {
  border-color: var(--line);
  color: var(--text)
}

.nav a[aria-current="page"] {
  color: var(--text);
  border-color: rgba(121, 167, 255, .55);
  background: rgba(121, 167, 255, .10);
}

.hero {
  margin-top: 20px;
  padding: 34px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 27, 51, .65), rgba(15, 27, 51, .35));
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  margin: 0 0 10px;
}

.hero p {
  margin: 0;
  color: var(--muted);
  max-width: 78ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.btn.primary {
  border-color: rgba(93, 214, 193, .55);
  background: linear-gradient(135deg, rgba(93, 214, 193, .25), rgba(121, 167, 255, .18));
}

.btn:hover {
  transform: translateY(-1px)
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.card {
  grid-column: span 12;
  border: 1px solid var(--line);
  background: rgba(15, 27, 51, .55);
  border-radius: var(--radius);
  padding: 16px 16px 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
}

.card h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.card p {
  margin: 0;
  color: var(--muted)
}

.card ul {
  margin: 10px 0 0;
  color: var(--muted);
  padding-left: 18px
}

.card li {
  margin: 6px 0
}

.split {
  grid-column: span 12;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.content {
  margin-top: 18px;
  border: 1px solid var(--line);
  background: rgba(15, 27, 51, .55);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: var(--shadow);
}

.content h1 {
  margin-top: 0
}

.content h2 {
  margin: 18px 0 8px
}

.content h3 {
  margin: 14px 0 6px
}

.content p,
.content li {
  color: var(--muted)
}

.content a {
  color: var(--text)
}

.footer {
  margin-top: 18px;
  color: rgba(183, 195, 230, .8);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 6px 2px;
}

.footer a {
  color: rgba(232, 238, 252, .9)
}

.pill {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: rgba(232, 238, 252, .9);
  background: rgba(255, 255, 255, .04);
}

/* Vehicles page */

.hero--compact {
  margin-top: 20px;
  padding: 26px 20px;
}

.vehicles-toolbar {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.vehicles-toolbar__item {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

.vehicles-toolbar__label {
  opacity: .9;
}

.vehicles-grid {
  margin-top: 18px;
}

.vehicles-grid__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.vehicles-status {
  grid-column: 1 / -1;
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--muted);
}

.vehicle-card {
  border: 1px solid var(--line);
  background: radial-gradient(140% 180% at 0% 0%, rgba(121, 167, 255, .16), transparent),
    radial-gradient(140% 180% at 100% 0%, rgba(93, 214, 193, .14), transparent),
    rgba(15, 27, 51, .9);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .32);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  transition: transform .18s ease-out, box-shadow .18s ease-out, border-color .18s ease-out;
}

.vehicle-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
  border-color: rgba(121, 167, 255, .55);
}

.vehicle-card__media {
  position: relative;
}

.vehicle-card__img-shell {
  position: relative;
  width: 100%;
  padding-top: 60%;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.vehicle-card__img-shell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vehicle-card__meta {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.vehicle-card__body {
  padding: 14px 14px 4px;
}

.vehicle-card__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vehicle-card__header h2 {
  margin: 0;
  font-size: 17px;
}

.vehicle-card__rating {
  font-size: 13px;
  color: var(--muted);
}

.vehicle-card__stars {
  color: #ffd76a;
  margin-right: 4px;
}

.vehicle-card__rating-number {
  font-weight: 600;
}

.vehicle-card__likes {
  margin-left: 4px;
}

.vehicle-card__line {
  margin: 4px 0;
  font-size: 14px;
  color: var(--muted);
}

.vehicle-card__chips {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vehicle-card__footer {
  padding: 8px 14px 12px;
  display: flex;
  justify-content: flex-end;
}

.vehicle-card__btn {
  font-size: 13px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: 11px;
  color: rgba(232, 238, 252, .92);
  background: rgba(255, 255, 255, .03);
}

.badge-soft {
  border-color: rgba(121, 167, 255, .45);
  background: rgba(121, 167, 255, .14);
}

.badge-pill {
  border-radius: 999px;
}

.badge-ok {
  border-color: rgba(93, 214, 193, .65);
  background: rgba(93, 214, 193, .16);
}

.badge-info {
  border-color: rgba(121, 167, 255, .6);
  background: rgba(121, 167, 255, .22);
}

.badge-muted {
  border-color: rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .02);
  color: rgba(183, 195, 230, .85);
}

.btn-ghost {
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .06);
}

/* Modal */

.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, .65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 50;
}

.modal {
  max-width: 960px;
  width: 100%;
  max-height: 100%;
  background: radial-gradient(100% 140% at 0% 0%, rgba(121, 167, 255, .18), transparent),
    radial-gradient(120% 160% at 100% 0%, rgba(93, 214, 193, .16), transparent),
    #050816;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .75);
  padding: 18px 18px 14px;
  overflow: auto;
}

.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.modal__header h2 {
  margin: 0;
  font-size: 19px;
}

.modal__subtitle {
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.modal__close {
  border: none;
  border-radius: 999px;
  width: 28px;
  height: 28px;
  background: rgba(15, 27, 51, .85);
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.modal__body {
  margin-top: 6px;
}

.modal__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.modal__media {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal__img-shell {
  border-radius: 14px;
  overflow: hidden;
}

.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(5, 8, 22, .85);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
}

.carousel__nav--prev {
  left: 10px;
}

.carousel__nav--next {
  right: 10px;
}

.modal__thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.modal__thumb {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  flex: 0 0 64px;
  height: 48px;
  overflow: hidden;
}

.modal__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal__thumb.is-active {
  border-color: rgba(121, 167, 255, .8);
  box-shadow: 0 0 0 1px rgba(121, 167, 255, .45);
}

.modal__description {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.modal__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.modal__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal__section h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.modal__section ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  color: var(--muted);
}

.modal__section li {
  margin: 4px 0;
}

.modal__features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.modal__footer {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

@media (min-width: 720px) {
  .vehicles-grid__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vehicle-card {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  }
}

@media (min-width: 960px) {
  .vehicles-grid__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .modal__layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  }
}

@media (min-width: 900px) {
  .split {
    grid-column: span 12;
    grid-template-columns: 7fr 5fr;
    align-items: start;
  }

  .card.span6 {
    grid-column: span 6
  }

  .card.span4 {
    grid-column: span 4
  }
}