/* JPCenter.lk — Design System */
:root {
  --brand: #BB1823;
  --brand-hover: #a0141e;
  --brand-dim: rgba(187, 24, 35, 0.08);
  --brand-mid: rgba(187, 24, 35, 0.15);
  --brand-glow: rgba(187, 24, 35, 0.25);
  --dark: #0A0A0A;
  --text: #1A1A1A;
  --text-2: #525252;
  --text-3: #767676;
  --text-4: #9CA3AF;
  --bg: #FFFFFF;
  --bg-2: #FAFAFA;
  --bg-3: #F5F5F5;
  --border: #E5E5E5;
  --border-2: #D4D4D4;
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  --radius: 8px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 80px 0; }
.section--alt { background: var(--bg-2); }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.1;
}

.section-sub {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 520px;
}

.text-center { text-align: center; }
.text-center .section-sub,
.section-sub.text-center {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
  border: none;
  line-height: 1.3;
  white-space: nowrap;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
}

.btn--primary:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--brand-glow);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}

.btn--outline:hover {
  border-color: var(--border-2);
  background: var(--bg-3);
}

.btn--lg { padding: 13px 26px; font-size: 15px; border-radius: var(--radius-md); }
.btn--full { width: 100%; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 58px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  gap: 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.nav__logo-mark {
  width: 34px;
  height: 34px;
  background: var(--brand);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.nav__logo-jp { color: #0A0A0A; }
.nav__logo-red { color: var(--brand); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav__link {
  padding: 6px 13px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 6px;
  transition: all 0.15s;
}

.nav__link:hover { color: var(--text); background: var(--bg-3); }

.nav__link--current {
  font-weight: 800;
  color: var(--text);
}

.mobile-drawer__nav a.nav__link--current {
  font-weight: 800;
  color: var(--text);
}

.nav__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 2px solid #0A0A0A;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  color: #0A0A0A;
  background: transparent;
  transition: all 0.18s;
  white-space: nowrap;
}

.nav__login:hover {
  background: #0A0A0A;
  color: #fff;
}

.nav__actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }

.btn--nav-wa {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  border-radius: var(--radius);
  white-space: nowrap;
  min-height: 40px;
}

.btn--nav-wa svg {
  flex-shrink: 0;
}

.mobile-drawer__nav .btn--nav-wa {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
  gap: 10px;
}

.nav__burger {
  display: none;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--text-2);
  border-radius: 1px;
  width: 14px;
}

/* Hero */
.hero {
  background: #F9F8F3;
  border-bottom: 1px solid #E8E6E0;
  padding: 56px 28px 52px;
}

.hero__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}

.hero__left {
  flex: 1;
  min-width: 0;
  padding-top: 12px;
}

.hero__right .sample-rec {
  max-width: none;
  width: 100%;
}

.sample-rec--hero .sample-rec__body {
  padding: 20px 22px 22px;
}

.sample-rec--hero .sample-rec__photo {
  aspect-ratio: 21 / 9;
  border-radius: var(--radius-lg);
}

.sample-rec--hero .sample-rec__vname h3 {
  font-size: 1.35rem;
}

.hero__sub {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 520px;
}

.hero__packages-wrap {
  width: 100%;
  min-width: 0;
  margin-top: 20px;
}

.hero__packages-head {
  margin-bottom: 12px;
}

.hero__packages-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.hero__packages-sub {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.5;
  margin-top: 4px;
}

.hero__packages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  min-width: 0;
  margin-top: 0;
}

.hero-pkg-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 10px 12px;
  box-shadow: var(--shadow);
  width: 100%;
  min-width: 0;
  text-align: center;
}

.hero-pkg-box__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-pkg-box__count {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}

.hero-pkg-box__input {
  width: 100%;
  max-width: 132px;
  min-width: 108px;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--brand);
  text-align: center;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 10px 12px;
  line-height: 1.1;
  box-sizing: border-box;
  -moz-appearance: textfield;
}
.hero-pkg-box__input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(187, 24, 35, 0.12);
}
.hero-pkg-box__input::-webkit-outer-spin-button,
.hero-pkg-box__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.hero-pkg-box__tier {
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.35;
  min-height: 28px;
  width: 100%;
}
.hero-pkg-box__unit-price {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2px;
}
.hero-pkg-box__tier-range {
  display: block;
  font-size: 11px;
  color: var(--text-3);
}

.hero-pkg-box--custom {
  border-color: var(--brand);
}

.hero-pkg-box__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-3);
  margin-top: 4px;
}

.hero-pkg-box__price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin: 4px 0 6px;
}

.hero-pkg-box .btn {
  width: 100%;
  font-size: 11px;
  padding: 9px 6px;
  white-space: normal;
  line-height: 1.2;
  margin-top: 0;
}

.hero__packages-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 24px;
  font-size: 13px;
}

/* Found results — compact hero, side-by-side preview */
.hero--found {
  padding-top: 24px;
  padding-bottom: 32px;
}

.hero--found .hero__badge,
.hero--found h1,
.hero--found .hero__sub,
.hero--found .hero__packages-wrap,
.hero--found .hero__trust {
  display: none;
}

.hero--found .hero__left {
  padding-top: 0;
}

.hero--found .hero__inner {
  align-items: flex-start;
  gap: 20px;
}

.hero--found .hero__right {
  align-self: flex-start;
}

.hero--found .sample-rec--hero .sample-rec__photo {
  aspect-ratio: 21 / 9;
}

@media (max-width: 900px) {
  .hero--found .hero__inner {
    flex-direction: column !important;
    align-items: stretch;
    gap: 12px;
  }

  .hero--found .hero__left,
  .hero--found .hero__right,
  .hero--found .verify-panel,
  .hero--found .sample-rec {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    min-width: 0;
  }

  .hero--found .hero__right {
    position: static;
    top: auto;
  }
}

@media (min-width: 901px) {
  .hero--found .hero__inner {
    align-items: flex-start;
    gap: 20px;
  }
}

@media (min-width: 600px) and (max-width: 900px) {
  .hero--found .hero__inner {
    flex-direction: column !important;
  }

  .hero--found .hero__left {
    flex: none;
    min-width: 0;
  }

  .hero--found .hero__right {
    flex: none;
    width: 100%;
    position: static;
  }
}

@media (max-width: 599px) {
  .hero--found {
    padding-top: 14px;
    padding-bottom: 18px;
  }

  .hero--found .hero__inner {
    gap: 10px;
  }

  .hero--found .verify-panel__head {
    padding: 10px 12px;
  }

  .hero--found .verify-panel__title {
    font-size: 11px;
  }

  .hero--found .verify-panel__body {
    padding: 10px 12px 12px;
  }

  .hero--found .found-result {
    gap: 8px;
  }

  .hero--found .found-result__head {
    gap: 8px;
  }

  .hero--found .found-result__title {
    font-size: 12px;
  }

  .hero--found .found-result__title strong {
    font-size: 13px;
  }

  .hero--found .found-result__new {
    padding: 7px 12px;
    font-size: 12px;
  }

  .hero--found .found-result__badge {
    padding: 3px 9px;
    font-size: 10px;
    margin: 0;
  }

  .hero--found .found-result__card {
    padding: 8px 10px;
  }

  .hero--found .found-result__vehicle {
    gap: 8px;
    margin-bottom: 4px;
  }

  .hero--found .found-result__vehicle-icon {
    width: 28px;
    height: 28px;
  }

  .hero--found .found-result__vehicle h3 {
    font-size: 15px;
  }

  .hero--found .found-result__specs {
    gap: 0;
  }

  .hero--found .found-result__row {
    padding: 5px 0;
    font-size: 12px;
  }

  .hero--found .found-result__btn {
    padding: 11px 14px;
    font-size: 13px;
  }

  .hero--found .found-result__trust {
    font-size: 11px;
    margin-top: 0;
  }

  .hero--found .sample-rec__bar {
    padding: 10px 12px;
  }

  .hero--found .sample-rec__live {
    font-size: 11px;
  }

  .hero--found .sample-rec__tag {
    font-size: 10px;
    padding: 4px 8px;
  }

  .hero--found .sample-rec--hero .sample-rec__body {
    padding: 10px 12px 12px;
  }

  .hero--found .sample-rec--hero .sample-rec__photo,
  .hero--found .sample-rec--live .sample-rec__photo {
    aspect-ratio: 2.6 / 1;
  }

  .hero--found .sample-rec--hero .sample-rec__photo img,
  .hero--found .sample-rec--live .sample-rec__photo img {
    object-fit: contain;
    object-position: left center;
  }

  .hero--found .sample-rec--hero .sample-rec__vname {
    margin-top: 8px;
  }

  .hero--found .sample-rec--hero .sample-rec__vname h3 {
    font-size: 1rem;
  }

  .hero--found .sample-rec__meta {
    font-size: 11px;
    margin-top: 2px;
  }

  .hero--found .sample-rec__specs {
    margin-top: 8px;
    gap: 6px;
  }

  .hero--found .sample-rec__spec {
    padding: 8px;
  }

  .hero--found .sample-rec__spec-k {
    font-size: 9px;
  }

  .hero--found .sample-rec__spec-v {
    font-size: 12px;
  }

  .hero--found .sample-rec__flags {
    margin-top: 8px;
    gap: 6px;
  }

  .hero--found .sample-rec__flag {
    padding: 8px 10px;
    font-size: 11px;
  }
}

@media (max-width: 390px) {
  .hero--found .found-result__row {
    padding: 4px 0;
    font-size: 11px;
  }

  .hero--found .found-result__btn {
    padding: 10px 12px;
    font-size: 12px;
  }

  .hero--found .sample-rec--hero .sample-rec__photo,
  .hero--found .sample-rec--live .sample-rec__photo {
    aspect-ratio: 2.6 / 1;
  }

  .hero--found .sample-rec__specs {
    grid-template-columns: 1fr 1fr;
  }
}

.hero__right {
  position: sticky;
  top: 84px;
  flex: 0 0 420px;
  min-width: 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F8F8F6;
  border: 1px solid #E5E7EB;
  border-radius: 100px;
  padding: 5px 14px 5px 7px;
  font-size: 12px;
  color: #6B7280;
  margin-bottom: 20px;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16A34A;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #111;
  margin-bottom: 14px;
  max-width: 560px;
}

.hero h1 strong { font-weight: 800; }
.hero h1 em { font-style: normal; color: var(--brand); font-weight: 800; }

.hero__trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Sample report card (hero right) */
.sample-rec--live {
  box-shadow: 0 0 0 2px var(--brand-mid), var(--shadow-lg);
}

.sample-rec--live .sample-rec__dot {
  background: var(--brand);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.sample-rec {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.sample-rec__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  padding: 15px 18px;
  border-bottom: 1px solid var(--border);
}

.sample-rec__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

.sample-rec__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse 2s infinite;
}

.sample-rec__tag {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 999px;
  padding: 5px 11px;
  text-decoration: none;
  transition: background 0.15s;
}

.sample-rec__tag:hover {
  background: var(--brand-hover);
}

.sample-rec__body {
  padding: 18px;
}

.sample-rec__photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #F1EFE9;
  border: 1px solid var(--border);
  aspect-ratio: 21 / 9;
}

.sample-rec__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
  background: #fff;
}

.sample-rec--live .sample-rec__photo {
  aspect-ratio: 21 / 9;
}

.sample-rec--live .sample-rec__photo img {
  object-fit: contain;
  object-position: left center;
}

.sample-rec__chassis-badge {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 2;
  background: rgba(15, 23, 42, 0.88);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: 6px;
  max-width: calc(100% - 16px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sample-rec__chassis-match {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.02em;
}

.sample-rec__loader {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(249, 248, 243, 0.92);
  padding: 16px;
  text-align: center;
}

.sample-rec__loader.hidden {
  display: none !important;
}

.sample-rec__loader-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid #E5E7EB;
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.sample-rec__loader-text {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-2);
}

.sample-rec--loading .sample-rec__photo img {
  opacity: 0.15;
  filter: grayscale(1);
}

.sample-rec--loading .sample-rec__body {
  pointer-events: none;
}

.sample-rec__vname {
  margin-top: 14px;
}

.sample-rec__vname h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.sample-rec__meta {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-3);
  margin-top: 4px;
}

.sample-rec__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 16px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.sample-rec__spec {
  background: #fff;
  padding: 11px 13px;
}

.sample-rec__spec-k {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-4);
}

.sample-rec__spec-v {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-top: 4px;
}

.sample-rec__spec-v--danger {
  color: var(--brand);
  font-size: 18px;
  font-weight: 800;
}

.sample-rec__spec-v--price {
  color: #15803D;
  font-weight: 800;
}

.pill {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 11px;
  border-radius: 999px;
  line-height: 1.35;
}

.pill--green {
  background: #F0FDF4;
  color: #15803D;
}

.sample-rec__flags {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.sample-rec__flag {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  background: rgba(187, 24, 35, 0.06);
  border: 1px solid rgba(187, 24, 35, 0.15);
  border-radius: 11px;
  padding: 10px 12px;
}

.sample-rec__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--brand);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 1px;
}

.sample-rec__flag span {
  font-size: 13px;
  font-weight: 600;
  color: #7a1118;
  line-height: 1.45;
}

.sample-rec__flag b {
  font-weight: 800;
  color: var(--brand);
}

.hero__trust-item {
  font-size: 12px;
  color: #6B7280;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero__trust-item::before {
  content: '✓';
  color: #16A34A;
  font-weight: 800;
  font-size: 11px;
}

/* Verify panel */
.verify-panel {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.verify-panel--blink {
  animation: panelBorderBlink 2.8s ease-in-out infinite;
}

.verify-panel--blink:focus-within {
  animation: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 2px var(--brand-dim), var(--shadow-lg);
}

@keyframes panelBorderBlink {
  0%, 100% {
    border-color: rgba(187, 24, 35, 0.45);
    box-shadow:
      0 0 0 0 rgba(187, 24, 35, 0.12),
      0 0 8px rgba(187, 24, 35, 0.1),
      var(--shadow-lg);
  }
  50% {
    border-color: var(--brand);
    box-shadow:
      0 0 0 2px rgba(187, 24, 35, 0.22),
      0 0 14px rgba(187, 24, 35, 0.15),
      var(--shadow-lg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .verify-panel--blink {
    animation: none;
    box-shadow: 0 0 0 3px var(--brand-dim), var(--shadow-lg);
  }
}

.verify-panel__head {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

.verify-panel__title {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.verify-panel__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #16A34A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.verify-panel__live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16A34A;
  animation: pulse 2s infinite;
}

.verify-panel__body { padding: 18px 20px 20px; }

.verify-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 8px;
}

.verify-form input {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid rgba(187, 24, 35, 0.35);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  margin-bottom: 0;
  color: var(--text);
}

.verify-form__input-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-bottom: 12px;
}

.verify-form__input-row input {
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
}

.verify-form__paste {
  flex: 0 0 auto;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  border-width: 2px;
  border-color: rgba(187, 24, 35, 0.35);
  color: var(--brand);
  min-height: 100%;
}

.verify-form__paste:hover,
.verify-form__paste:focus-visible {
  border-color: var(--brand);
  background: #FEF2F2;
}

.verify-form__paste--waiting {
  border-color: var(--brand);
  background: #FEF2F2;
  color: var(--brand);
}

.verify-form input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-dim);
}

.verify-form input::placeholder {
  color: #c4c9d2;
  font-weight: 500;
  opacity: 1;
}

.btn--search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn--search svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.verify-panel__hint {
  font-size: 12px;
  color: var(--text-4);
  margin: 12px 0 0;
  text-align: center;
  line-height: 1.5;
}

.verify-panel__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--brand-dim);
  border: 1px solid var(--brand-mid);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}

.verify-panel__price-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.verify-panel__price-amount {
  font-size: 18px;
  font-weight: 800;
  color: var(--brand);
}

/* Search states */
.search-state { display: none; }
.search-state.active { display: block; }

/* Report found — jpsheet-style result card */
.found-result {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.found-result__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.found-result__title {
  margin: 0;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.4;
}

.found-result__title strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  letter-spacing: -0.02em;
}

.found-result__new {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 9px 16px;
  border: 2px solid var(--brand);
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 0 3px rgba(187, 24, 35, 0.08);
}

.found-result__new:hover {
  background: var(--brand-dim);
  box-shadow: 0 0 0 3px rgba(187, 24, 35, 0.14);
}

.found-result__new svg {
  width: 15px;
  height: 15px;
}

.found-result__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  color: #16A34A;
  background: #DCFCE7;
  border-radius: 999px;
  padding: 5px 12px;
  animation: found-badge-blink 1.6s ease-in-out infinite;
}

@keyframes found-badge-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

@media (prefers-reduced-motion: reduce) {
  .found-result__badge { animation: none; }
}

.found-result__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.found-result__vehicle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.found-result__vehicle-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(145deg, #FEF3C7 0%, #FDE68A 100%);
  color: #92400E;
  display: flex;
  align-items: center;
  justify-content: center;
}

.found-result__vehicle h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  color: #1e3a5f;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.2;
}

.found-result__specs {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #FAFAFA;
}

.found-result__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  background: #fff;
}

.found-result__row:last-child { border-bottom: none; }

.found-result__row-label {
  color: var(--text-3);
  font-weight: 500;
}

.found-result__row-value {
  font-weight: 700;
  color: var(--text);
  text-align: right;
}

.found-result__alert {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #FECACA;
  background: #FEF2F2;
  color: #991B1B;
  font-size: 13px;
  line-height: 1.45;
}

.found-result__alert.hidden { display: none; }

.found-result__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.15s, transform 0.1s;
}

.found-result__btn:active { transform: scale(0.99); }

.found-result__btn--pay {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 2px 8px rgba(187, 24, 35, 0.25);
}

.found-result__btn--pay:hover { filter: brightness(1.05); }

.found-result__btn--pay span { flex: 1; text-align: center; }

.found-result__btn--blink {
  animation: foundCtaBlink 0.7s ease-in-out 4;
  box-shadow: 0 0 0 0 rgba(187, 24, 35, 0.45);
}

@keyframes foundCtaBlink {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(187, 24, 35, 0.35);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 8px rgba(187, 24, 35, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .found-result__btn--blink { animation: none; }
}

.found-result__btn--wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.found-result__btn--wa:hover {
  background: #20BD5A;
  color: #fff;
}

.found-result__trust {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  margin: 0;
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
  line-height: 1.45;
}

.found-result__trust svg {
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.6;
}

.search-loading {
  text-align: center;
  padding: 32px 16px;
}

.search-loading__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--bg-3);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 14px;
}

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

.search-loading p {
  font-size: 13px;
  color: var(--text-3);
  margin: 0;
}

.result-preview {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 14px;
  background: var(--bg-2);
}

.result-preview__tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #16A34A;
  margin-bottom: 8px;
}

.result-preview h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.result-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
}

.result-item__label {
  font-size: 10px;
  color: var(--text-4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.result-item__value {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

/* Feature cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 40px;
  height: 40px;
  background: var(--brand-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
  margin: 0;
}

/* Pricing card */
.pricing-card {
  max-width: 420px;
  margin: 40px auto 0;
  background: #fff;
  border: 2px solid var(--brand);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-card h3 {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
}

.pricing-card__price {
  text-align: center;
  margin-bottom: 20px;
}

.pricing-card__price span {
  font-size: 42px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.04em;
}

.pricing-card__price small {
  font-size: 14px;
  color: var(--text-3);
  font-weight: 500;
}

.pricing-card ul {
  margin-bottom: 24px;
}

.pricing-card li {
  font-size: 13px;
  color: var(--text-2);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-card li::before {
  content: '✓';
  color: #16A34A;
  font-weight: 800;
  flex-shrink: 0;
}

.pricing-card li:last-child { border-bottom: none; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat__num {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat__label {
  font-size: 13px;
  color: var(--text-3);
}

/* FAQ */
.faq-list { max-width: 720px; margin: 40px auto 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-q::after {
  content: '+';
  font-size: 20px;
  color: var(--text-4);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 0 18px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

.faq-item.open .faq-a { display: block; }

/* CTA dark */
.cta-dark {
  background: #111;
  color: #fff;
  padding: 72px 28px;
  text-align: center;
}

.cta-dark h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.cta-dark p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
  font-size: 15px;
}

/* Footer */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 48px 28px 28px;
}

.footer__grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}

.footer h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-bottom: 14px;
}

.footer ul li { margin-bottom: 8px; }

.footer ul a {
  font-size: 13px;
  color: var(--text-2);
  transition: color 0.15s;
}

.footer ul a:hover { color: var(--brand); }

.footer__bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--text-4);
}

/* Checkout modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  align-items: flex-start;
  justify-content: center;
  padding: 16px;
  padding-top: max(16px, env(safe-area-inset-top));
  overflow-y: auto;
}

.modal-overlay.open { display: flex; }

.modal {
  background: #fff;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 420px;
  max-height: min(90vh, 680px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: auto 0;
}

.modal__body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.modal__head {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.modal__head h2 { font-size: 16px; font-weight: 800; }

.modal__close {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-2);
  font-size: 18px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.guest-checkout-modal {
  max-width: 380px;
  max-height: min(86vh, 600px);
}

.guest-checkout-modal .modal__body {
  padding: 14px 16px 16px;
}

.guest-checkout-modal .modal__head {
  padding: 12px 16px;
}

.guest-checkout-modal .guest-wizard__steps {
  margin-bottom: 14px;
}

.guest-checkout-modal .guest-order-summary {
  padding: 10px 12px;
  margin-bottom: 10px;
}

.guest-checkout-modal .guest-wizard__lead {
  font-size: 13px;
  margin-bottom: 10px;
}

.modal__summary {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 20px;
}

.modal__summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 4px 0;
  color: var(--text-2);
}

.modal__summary-row.total {
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 10px;
}

.modal__summary-row.total span:last-child { color: var(--brand); }

.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
}

.form-group input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-dim);
}

.modal__secure {
  text-align: center;
  font-size: 11px;
  color: var(--text-4);
  margin-top: 12px;
}

.success-state {
  text-align: center;
  padding: 20px 0;
}

.success-state__icon {
  width: 56px;
  height: 56px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}

.success-state h3 { margin-bottom: 8px; }
.success-state p { font-size: 14px; color: var(--text-2); margin-bottom: 20px; }

.hidden { display: none !important; }

/* Risk cards */
.risk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.risk-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  background: #fff;
}

.risk-card__tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
}

.risk-card__tag--common { background: #FEF2F2; color: #991B1B; }
.risk-card__tag--very { background: #FFFBEB; color: #92400E; }
.risk-card__tag--critical { background: #EFF6FF; color: #1E40AF; }
.risk-card__tag--hard { background: #F0FDF4; color: #14532D; }

.risk-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.risk-card p { font-size: 13px; color: var(--text-3); margin: 0; line-height: 1.6; }

/* Responsive */
@media (max-width: 900px) {
  .hero__inner {
    flex-direction: column;
    gap: 36px;
  }
  .hero__right {
    flex: 1 1 auto;
    width: 100%;
    position: static;
  }
  .hero__packages { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

@media (max-width: 600px) {
  .hero { padding: 40px 20px 36px; }
  .section { padding: 56px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .risk-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 16px; }
  .footer__grid { grid-template-columns: 1fr; }
  .result-grid { grid-template-columns: 1fr; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 88%;
  max-width: 320px;
  background: #fff;
  border-left: 1px solid var(--border);
  z-index: 150;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 20px;
}

.mobile-drawer.open { transform: translateX(0); }

.drawer-backdrop.open { display: block; }

/* Legacy drawer links (nested nav) */
.mobile-drawer a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 140;
}

.drawer-backdrop.open { display: block; }

/* Report viewer page */
.report-page { background: var(--bg-2); }

.report-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 28px 64px;
}

.report-hero {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 28px 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}

.report-hero__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #15803D;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}

.report-hero h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 8px;
}

.report-hero__chassis {
  font-size: 14px;
  color: var(--text-2);
  font-family: ui-monospace, Menlo, monospace;
}

.report-hero__meta {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 10px;
}

.report-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.report-card__index {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand);
  margin-bottom: 16px;
}

.report-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}

.report-stat {
  background: #fff;
  padding: 14px 16px;
}

.report-stat__k {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-4);
}

.report-stat__v {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-top: 4px;
  line-height: 1.2;
}

.report-stat__v--danger { color: var(--brand); font-size: 20px; }
.report-stat__v--green { color: #15803D; }

.report-section { margin-top: 24px; }

.report-section__title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-2);
  margin-bottom: 14px;
}

.report-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

.report-gallery__item {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-3);
  aspect-ratio: 4 / 3;
}

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

.report-details {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.report-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.report-row:last-child { border-bottom: none; }
.report-row:nth-child(even) { background: var(--bg-2); }

.report-row__k {
  font-weight: 600;
  color: var(--text-2);
}

.report-row__v {
  font-weight: 700;
  color: var(--text);
  word-break: break-word;
}

.report-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.report-empty {
  text-align: center;
  padding: 64px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.report-empty__icon { font-size: 48px; margin-bottom: 16px; }
.report-empty h1 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.report-empty p { color: var(--text-2); margin-bottom: 20px; max-width: 400px; margin-left: auto; margin-right: auto; }
.report-empty__demo { margin-top: 20px; font-size: 13px; }
.report-empty__demo a { color: var(--brand); font-weight: 700; }

.report-footer { margin-top: 0; padding-top: 24px; }

@media (max-width: 640px) {
  .report-wrap { padding: 24px 16px 48px; }
  .report-row { grid-template-columns: 1fr; gap: 4px; }
  .report-stats { grid-template-columns: 1fr; }
  .report-actions .btn { flex: 1; min-width: 140px; }
}

@media print {
  .nav, .report-footer, .report-actions, [data-pdf-btn] { display: none !important; }
  .report-page { background: #fff; }
  .report-wrap { padding: 0; max-width: none; }
  .report-card, .report-hero { box-shadow: none; border: 1px solid #ddd; }
}

.report-wrap--pdf {
  background: #fff;
}

