/* ── Shared Sub-Page Styles – 365 Vehicle Check ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #F8F9FC;
  color: #1A1A1A;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(43, 45, 50, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.45));
}
.nav-logo-text {
  font-size: 19px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.3px;
  line-height: 1.15;
}
.nav-logo-accent {
  color: #F5C518;
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 0.85;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #FFFFFF; }
.nav-cta {
  background: linear-gradient(135deg, #F5C518, #e6a800) !important;
  color: #1A1A1A !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 700 !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.9; }
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.2s;
}

/* ── Page Hero Banner ── */
.page-hero {
  background: linear-gradient(135deg, #2B2D32 0%, #1a1c20 100%);
  padding: 100px 24px 56px;
  text-align: center;
  color: #fff;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.page-hero h1 span { color: #F5C518; }
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 28px;
}
.page-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #F5C518, #e6a800);
  color: #1A1A1A;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.page-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,197,24,0.35);
}

/* ── Layout ── */
.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #F5C518;
  margin-bottom: 8px;
}
.section-heading {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}
.card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  padding: 32px;
  margin-bottom: 24px;
}

/* ── Status Badges ── */
.status-clear {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #DCFCE7;
  color: #166534;
  font-weight: 700;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 20px;
}
.status-warn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FEF9C3;
  color: #854D0E;
  font-weight: 700;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 20px;
}
.status-danger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FEE2E2;
  color: #991B1B;
  font-weight: 700;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ── Tier Cards ── */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.tier-card {
  background: #fff;
  border-radius: 20px;
  border: 2px solid #E5E7EB;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.tier-card.popular {
  border-color: #F5C518;
  box-shadow: 0 8px 32px rgba(245,197,24,0.15);
}
.tier-card.premium {
  border-color: #2B2D32;
  background: linear-gradient(135deg, #2B2D32 0%, #1a1c20 100%);
  color: #fff;
}
.tier-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F5C518, #e6a800);
  color: #1A1A1A;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
}
.tier-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 8px;
}
.tier-card.premium .tier-name { color: rgba(255,255,255,0.5); }
.tier-price {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 4px;
  color: #1A1A1A;
}
.tier-card.premium .tier-price { color: #fff; }
.tier-price span {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}
.tier-tagline {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E5E7EB;
}
.tier-card.premium .tier-tagline {
  color: rgba(255,255,255,0.6);
  border-bottom-color: rgba(255,255,255,0.1);
}
.tier-features { list-style: none; margin-bottom: 28px; }
.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  padding: 6px 0;
  color: #333;
}
.tier-card.premium .tier-features li { color: rgba(255,255,255,0.85); }
.tier-features li.no {
  color: #BBB;
  text-decoration: none;
}
.tier-card.premium .tier-features li.no { color: rgba(255,255,255,0.25); }
.feat-yes { color: #22C55E; font-size: 16px; flex-shrink: 0; }
.feat-no { color: #CCC; font-size: 16px; flex-shrink: 0; }
.tier-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  background: #F5F6F8;
  color: #1A1A1A;
  border: 2px solid #E5E7EB;
}
.tier-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
.tier-btn.primary {
  background: linear-gradient(135deg, #F5C518, #e6a800);
  border-color: transparent;
  color: #1A1A1A;
  box-shadow: 0 4px 16px rgba(245,197,24,0.3);
}
.tier-btn.dark {
  background: #F5C518;
  border-color: transparent;
  color: #1A1A1A;
}

/* ── Feature Comparison Table ── */
.compare-table-wrap { overflow-x: auto; margin-bottom: 64px; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th {
  background: #2B2D32;
  color: #fff;
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
}
.compare-table th.pop { background: #F5C518; color: #1A1A1A; }
.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #F0F0F0;
}
.compare-table tr:hover td { background: #FAFAFA; }
.compare-table td:first-child { font-weight: 500; }
.compare-table .tick { color: #22C55E; font-size: 18px; }
.compare-table .cross { color: #D1D5DB; font-size: 18px; }

/* ── Condition Gauge ── */
.condition-gauge {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  padding: 32px;
  margin-bottom: 24px;
  text-align: center;
}
.gauge-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 16px;
}
.gauge-track {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 16px;
  height: 20px;
  background: linear-gradient(to right, #EF4444 0%, #F97316 25%, #EAB308 50%, #84CC16 75%, #22C55E 100%);
  border-radius: 10px;
  position: relative;
}
.gauge-needle {
  position: absolute;
  top: -6px;
  width: 4px;
  height: 32px;
  background: #1A1A1A;
  border-radius: 2px;
  transform: translateX(-50%);
}
.gauge-score {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -2px;
  color: #EF4444;
  line-height: 1;
}
.gauge-score.medium { color: #EAB308; }
.gauge-score.good { color: #22C55E; }
.gauge-status {
  font-size: 16px;
  font-weight: 700;
  color: #EF4444;
  margin-bottom: 12px;
}
.gauge-issues {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

/* ── Key Checks Grid ── */
.checks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.check-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.check-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.check-icon.green { background: #DCFCE7; }
.check-icon.amber { background: #FEF9C3; }
.check-icon.red { background: #FEE2E2; }
.check-title { font-size: 13px; font-weight: 700; color: #1A1A1A; margin-bottom: 2px; }
.check-value { font-size: 13px; color: #555; }

/* ── MOT History ── */
.mot-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #F0F0F0;
  font-size: 14px;
}
.mot-year { font-weight: 700; width: 50px; flex-shrink: 0; }
.mot-result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.mot-pass { background: #DCFCE7; color: #166534; }
.mot-fail { background: #FEE2E2; color: #991B1B; }
.mot-detail { color: #555; flex: 1; }
.mot-miles { color: #999; font-size: 12px; white-space: nowrap; }

/* ── Issues Cards ── */
.issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.issue-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #E5E7EB;
  padding: 24px;
}
.issue-severity {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.sev-high { background: #FEE2E2; color: #991B1B; }
.sev-medium { background: #FEF9C3; color: #854D0E; }
.sev-low { background: #DCFCE7; color: #166534; }
.issue-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.issue-desc { font-size: 13px; color: #555; margin-bottom: 12px; line-height: 1.5; }
.issue-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.issue-tag {
  font-size: 12px;
  background: #F3F4F6;
  padding: 3px 10px;
  border-radius: 20px;
  color: #555;
  font-weight: 500;
}
.likelihood-bar {
  margin-top: 12px;
}
.likelihood-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: #888;
  margin-bottom: 4px;
}
.likelihood-track {
  height: 6px;
  background: #F0F0F0;
  border-radius: 3px;
}
.likelihood-fill {
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, #F5C518, #e6a800);
}

/* ── Valuation Box ── */
.valuation-box {
  background: #2B2D32;
  border-radius: 16px;
  padding: 32px;
  color: #fff;
  margin-bottom: 24px;
}
.val-range {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.val-min, .val-max { text-align: center; }
.val-price { font-size: 32px; font-weight: 800; letter-spacing: -1px; }
.val-tag { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 500; }
.val-avg {
  flex: 1;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.val-avg .val-price { font-size: 40px; color: #F5C518; }
.val-adjustments { }
.val-adj-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 14px;
}
.val-adj-row:last-child { border-bottom: none; }
.adj-neg { color: #FCA5A5; font-weight: 700; }
.adj-pos { color: #86EFAC; font-weight: 700; }

/* ── Costs Table ── */
.costs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 24px;
}
.costs-table th {
  background: #F3F4F6;
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  color: #1A1A1A;
}
.costs-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #F0F0F0;
}
.costs-table .total-row td {
  font-weight: 800;
  font-size: 16px;
  background: #FFFBEB;
  border-top: 2px solid #F5C518;
}
.costs-table .overdue { color: #DC2626; font-weight: 700; }
.costs-table .due-soon { color: #D97706; font-weight: 700; }

/* ── Questions List ── */
.questions-list { list-style: none; }
.questions-list li {
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid #F5C518;
  border: 1px solid #E5E7EB;
  border-left: 4px solid #F5C518;
  padding: 16px 20px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}
.q-num {
  font-weight: 800;
  color: #F5C518;
  margin-right: 8px;
}

/* ── Negotiation Cards ── */
.negot-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  border-left: 4px solid #EF4444;
  padding: 20px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.negot-title { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.negot-desc { font-size: 13px; color: #555; }
.negot-amount {
  color: #DC2626;
  font-weight: 800;
  font-size: 16px;
  white-space: nowrap;
}
.negot-total {
  background: #2B2D32;
  color: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}
.negot-total-label { font-size: 16px; font-weight: 700; }
.negot-total-amount { font-size: 28px; font-weight: 800; color: #F5C518; letter-spacing: -1px; }

/* ── Calculator ── */
.calc-form {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  padding: 32px;
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
}
.form-group select,
.form-group input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: #1A1A1A;
  background: #fff;
  appearance: none;
  outline: none;
  transition: border-color 0.2s;
}
.form-group select:focus,
.form-group input:focus {
  border-color: #F5C518;
}
.calc-btn {
  background: linear-gradient(135deg, #F5C518, #e6a800);
  color: #1A1A1A;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: inherit;
}
.calc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,197,24,0.35);
}
.calc-results {
  display: none;
}
.calc-results.visible { display: block; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.result-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  padding: 20px;
  text-align: center;
}
.result-value {
  font-size: 28px;
  font-weight: 800;
  color: #2B2D32;
  letter-spacing: -1px;
  margin-bottom: 4px;
}
.result-label { font-size: 12px; color: #888; font-weight: 500; }

/* ── Searchable Issues ── */
.issues-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-select {
  padding: 10px 16px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: #1A1A1A;
  background: #fff;
  appearance: none;
  outline: none;
  cursor: pointer;
  min-width: 160px;
  transition: border-color 0.2s;
}
.filter-select:focus { border-color: #F5C518; }
.filter-btn {
  padding: 10px 20px;
  background: #2B2D32;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.filter-btn:hover { background: #1a1c20; }

/* ── Testimonials ── */
.testimonial {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #E5E7EB;
  border-left: 4px solid #F5C518;
  padding: 24px;
  margin-top: 24px;
}
.testimonial-text {
  font-size: 15px;
  font-style: italic;
  color: #444;
  margin-bottom: 12px;
  line-height: 1.6;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  color: #1A1A1A;
}
.testimonial-stars { color: #F5C518; font-size: 16px; margin-bottom: 8px; }

/* ── Warning Box ── */
.warning-box {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-left: 4px solid #F59E0B;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 20px;
}
.warning-box h4 { color: #92400E; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.warning-box p { color: #78350F; font-size: 13px; }

/* ── Info Box ── */
.info-box {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-left: 4px solid #22C55E;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 20px;
}
.info-box h4 { color: #14532D; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.info-box p { color: #166534; font-size: 13px; }

/* ── PDF Download ── */
.pdf-cta {
  background: linear-gradient(135deg, #2B2D32, #1a1c20);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  color: #fff;
  margin-top: 40px;
}
.pdf-cta h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.pdf-cta p { color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #F5C518, #e6a800);
  color: #1A1A1A;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.15s;
}
.pdf-btn:hover { transform: translateY(-2px); }

/* ── Footer ── */
.footer {
  background: #1a1c20;
  color: rgba(255,255,255,0.7);
  padding: 48px 24px 24px;
  margin-top: 80px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.45));
}
.footer-logo-text {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}
.footer-desc { font-size: 13px; line-height: 1.6; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #F5C518; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ── Global overflow fix ── */
html, body { overflow-x: hidden; max-width: 100%; }

/* ── Report section wrapper ── */
.report-section { margin-top: 56px; }
.report-section:first-child { margin-top: 0; }

/* ── Hero vehicle badge ── */
.hero-vehicle-badge {
  display: inline-block;
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.4);
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 13px;
  color: #F5C518;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ── Specs card grid ── */
.specs-card { padding: 28px 32px; }
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}
.spec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 4px;
}
.spec-value { font-size: 15px; font-weight: 700; color: #1A1A1A; }
.reg-plate {
  background: #F5C518;
  display: inline-block;
  padding: 3px 12px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  letter-spacing: 2px;
  font-weight: 800;
  font-size: 15px;
  color: #1A1A1A;
}

/* ── Condition gauge ── */
.gauge-track-wrap { max-width: 560px; margin: 0 auto 20px; }
.gauge-track {
  width: 100%;
  height: 22px;
  background: linear-gradient(to right, #EF4444 0%, #F97316 25%, #EAB308 50%, #84CC16 75%, #22C55E 100%);
  border-radius: 11px;
  position: relative;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.15);
}
.gauge-needle {
  position: absolute;
  top: -7px;
  width: 5px;
  height: 36px;
  background: #1A1A1A;
  border-radius: 3px;
  transform: translateX(-50%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.gauge-needle::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 13px;
  height: 13px;
  background: #1A1A1A;
  border-radius: 50%;
  border: 2px solid #fff;
}
.gauge-markers {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  color: #999;
  font-weight: 600;
}
.gauge-score-row {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-top: 4px;
}
.gauge-score {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -3px;
  color: #EF4444;
  line-height: 1;
  flex-shrink: 0;
}
.gauge-denom { font-size: 26px; font-weight: 500; letter-spacing: 0; }
.gauge-status-col { text-align: left; }
.gauge-status {
  font-size: 13px;
  font-weight: 800;
  color: #EF4444;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.gauge-issues {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Key checks — colour-coded border ── */
.check-item { border-left-width: 4px; border-left-style: solid; border-left-color: #E5E7EB; }
.check-item.pass { border-left-color: #22C55E; }
.check-item.warn { border-left-color: #F59E0B; }
.check-item.fail { border-left-color: #EF4444; }
.check-body { flex: 1; min-width: 0; }
.check-badge-row { margin: 4px 0; }

/* ── Card heading ── */
.card-heading { font-size: 16px; font-weight: 700; margin-bottom: 16px; color: #1A1A1A; }

/* ── MOT rows ── */
.mot-rows-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.mot-insight {
  margin-top: 20px;
  background: #FFFBEB;
  border-radius: 10px;
  border-left: 4px solid #F59E0B;
  padding: 16px 20px;
}
.mot-insight strong { color: #92400E; font-size: 14px; display: block; margin-bottom: 4px; }
.mot-insight p { font-size: 13px; color: #78350F; line-height: 1.6; }

/* ── Issue cost tag ── */
.issue-cost-tag { background: #EFF6FF; color: #1D4ED8; font-weight: 700; }

/* ── Table wrapper ── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 8px; }
.td-note { color: #555; font-size: 13px; }
.td-sub { font-size: 12px; color: #888; }

/* ── Service schedule status badges ── */
.sched-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  display: inline-block;
}
.sched-overdue { background: #FEE2E2; color: #DC2626; }
.sched-check { background: #DBEAFE; color: #1D4ED8; }
.sched-due-soon { background: #FEF9C3; color: #D97706; }
.sched-ok { background: #DCFCE7; color: #166534; }
.sched-desc {
  font-size: 12px;
  color: #6B7280;
  font-weight: 400;
  margin-top: 4px;
  line-height: 1.4;
}
.sched-disclaimer {
  font-size: 12px;
  color: #9CA3AF;
  line-height: 1.5;
  margin-top: 16px;
  padding: 12px 16px;
  background: #F9FAFB;
  border-radius: 8px;
  border: 1px solid #F3F4F6;
}

/* ── Valuation scale bar ── */
.val-heading { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 28px; }
.val-scale-bar {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  gap: 0;
}
.val-scale-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  min-width: 100px;
}
.val-scale-point--featured { min-width: 120px; }
.val-scale-price {
  font-size: 22px;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  letter-spacing: -1px;
  margin-bottom: 6px;
}
.val-scale-price--featured {
  font-size: 30px;
  color: #F5C518;
}
.val-scale-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin: 0 auto 6px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.3);
}
.val-dot-low { }
.val-dot-mid {
  width: 22px;
  height: 22px;
  background: #F5C518;
  border-color: #F5C518;
  box-shadow: 0 0 12px rgba(245,197,24,0.5);
}
.val-dot-high { }
.val-scale-tag {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  white-space: nowrap;
}
.val-scale-line {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin-bottom: 28px;
}
.val-adj-heading {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 700;
}
.val-verdict {
  margin-top: 20px;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 10px;
  padding: 16px 20px;
}
.val-verdict strong { color: #FCA5A5; font-size: 14px; display: block; margin-bottom: 4px; }
.val-verdict p { color: rgba(255,255,255,0.7); font-size: 13px; }

/* ── Ownership total banner ── */
.ownership-total-banner {
  margin-top: 20px;
  background: #F3F4F6;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.ownership-total-label { font-size: 13px; color: #666; margin-bottom: 4px; }
.ownership-total-amount { font-size: 30px; font-weight: 800; color: #1A1A1A; letter-spacing: -1px; }

/* ── Questions list ── */
.questions-list { list-style: none; }
.questions-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  border-left: 4px solid #F5C518;
  padding: 18px 20px;
  margin-bottom: 12px;
  transition: box-shadow 0.2s;
}
.questions-list li:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.q-num {
  font-weight: 800;
  color: #F5C518;
  flex-shrink: 0;
  font-size: 14px;
  min-width: 26px;
  margin-top: 1px;
}
.q-text { font-size: 14px; color: #333; line-height: 1.65; font-style: italic; }

/* ── Negotiation enhancements ── */
.negot-body { flex: 1; min-width: 0; }
.negot-total-sub { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ── PDF CTA enhancements ── */
.pdf-cta {
  border: 1px solid rgba(245,197,24,0.2);
  box-shadow: 0 0 40px rgba(245,197,24,0.08);
}
.pdf-cta-icon { color: #F5C518; margin-bottom: 16px; line-height: 1; }
.pdf-cta-icon svg { stroke: #F5C518; display: block; margin: 0 auto; }
.pdf-small { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.35); }

/* ── Footer brand column ── */
.footer-brand-col { }
.footer-inner { grid-template-columns: 2fr 1fr 1fr; }

/* ── Mobile ── */
@media (max-width: 900px) {
  .tiers-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .val-range { flex-direction: column; }
  .val-scale-bar { flex-direction: column; align-items: stretch; gap: 0; }
  .val-scale-line { width: 2px; height: 20px; flex: none; margin: 0 auto; }
  .val-scale-point { flex-direction: row; align-items: center; gap: 12px; text-align: left; min-width: unset; padding: 8px 0; }
  .val-scale-price { margin-bottom: 0; font-size: 18px; }
  .val-scale-price--featured { font-size: 22px; }
  .val-scale-dot, .val-dot-mid { margin: 0; flex-shrink: 0; }
  .val-scale-tag { margin-left: auto; }
}
@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: #2B2D32;
    flex-direction: column;
    padding: 16px 24px;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; font-size: 16px; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .page-hero { padding: 90px 20px 40px; }
  .page-content { padding: 32px 20px 56px; }
  .card { padding: 20px; }
  .specs-card { padding: 20px; }
  .negot-card { flex-direction: column; gap: 8px; }
  .negot-amount { font-size: 18px; }
  .checks-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 12px; }
  .report-section { margin-top: 40px; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .gauge-track-wrap { max-width: 100%; }
  .gauge-score-row { flex-direction: column; gap: 12px; text-align: center; }
  .gauge-status-col { text-align: center; }
  .gauge-issues { justify-content: center; }
  .mot-row { flex-wrap: wrap; gap: 6px; }
  .mot-detail { flex: 0 0 100%; }
  .issues-grid { grid-template-columns: 1fr; }
  .costs-table th, .costs-table td { padding: 10px 12px; font-size: 13px; }
  .ownership-total-amount { font-size: 24px; }
  .negot-total { flex-direction: column; gap: 8px; }
  .negot-total-amount { font-size: 22px; }
  .detail-row { flex-wrap: wrap; }
}

/* ── Key Check Detail Panels ── */
.check-details {
  margin-top: 12px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 14px 16px;
}
.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #F3F4F6;
}
.detail-row:last-of-type { border-bottom: none; }
.detail-label { font-size: 13px; color: #6B7280; font-weight: 500; }
.detail-value { font-size: 13px; color: #1A1A1A; font-weight: 600; text-align: right; }
.check-explanation {
  margin-top: 10px;
  font-size: 12px;
  color: #9CA3AF;
  line-height: 1.5;
  padding-top: 8px;
  border-top: 1px solid #E5E7EB;
}
.check-databases { font-size: 12px; color: #9CA3AF; }

/* ── MOT Advisory & Failure Lists ── */
.advisory-list { display: flex; flex-direction: column; gap: 8px; }
.advisory-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 8px;
  font-size: 13px;
  color: #92400E;
  line-height: 1.5;
}
.advisory-item.fail-item {
  background: #FEF2F2;
  border-color: #FECACA;
  color: #991B1B;
}
.advisory-icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; color: #F59E0B; }
.advisory-text { flex: 1; }
.advisory-severity-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border: 1px solid;
  border-radius: 4px;
  flex-shrink: 0;
  white-space: nowrap;
}
.advisory-item.advisory-critical {
  background: #FEF2F2;
  border-color: #FECACA;
  color: #991B1B;
}
.advisory-item.advisory-warning {
  background: #FFFBEB;
  border-color: #FDE68A;
  color: #92400E;
}
.advisory-item.advisory-info {
  background: #EFF6FF;
  border-color: #BFDBFE;
  color: #1E40AF;
}

/* ── Finance Warning Banner ── */
.finance-warning-banner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
  border: 2px solid #EF4444;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.finance-warning-icon {
  font-size: 28px;
  color: #EF4444;
  flex-shrink: 0;
  line-height: 1;
}
.finance-warning-content { flex: 1; }
.finance-warning-title {
  font-size: 16px;
  font-weight: 700;
  color: #991B1B;
  margin-bottom: 6px;
}
.finance-warning-text {
  font-size: 14px;
  color: #B91C1C;
  line-height: 1.5;
}
.finance-warning-contact {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #991B1B;
}

/* ── MOT Retest Note ── */
.mot-retest-note {
  font-size: 11px;
  color: #3B82F6;
  font-weight: 600;
  margin-top: 2px;
  font-style: italic;
}

/* ── Valuation Explanation ── */
.val-explanation {
  font-size: 12px;
  color: #9CA3AF;
  line-height: 1.5;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #E5E7EB;
}

/* ── Ownership Costs Disclaimer ── */
.ownership-disclaimer {
  font-size: 12px;
  color: #9CA3AF;
  line-height: 1.5;
  margin-top: 16px;
  padding: 12px 16px;
  background: #F9FAFB;
  border-radius: 8px;
  border: 1px solid #F3F4F6;
}

/* ── Image Gallery ── */
.image-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.image-gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
}
.image-gallery-item a {
  display: block;
  position: relative;
  text-decoration: none;
}
.image-gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.2s;
}
.image-gallery-item:hover img { transform: scale(1.03); }
.image-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.image-gallery-item:hover .image-gallery-overlay { opacity: 1; }
.image-gallery-btn {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(0,0,0,0.6);
  border-radius: 6px;
}
.image-gallery-caption {
  padding: 8px 12px;
  font-size: 12px;
  color: #6B7280;
  text-align: center;
}

/* ── Sticky Tab Navigation ── */
.report-tabs-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #E5E7EB;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin: 0 -24px 24px;
  padding: 0 24px;
}
.report-tabs-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.report-tabs-inner::-webkit-scrollbar { display: none; }
.report-tab {
  flex-shrink: 0;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #6B7280;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.report-tab:hover { color: #1A1A1A; }
.report-tab.active {
  color: #2563EB;
  border-bottom-color: #2563EB;
}
@media (max-width: 640px) {
  .report-tabs-sticky { margin: 0 -16px 16px; padding: 0 8px; }
  .report-tab { padding: 10px 12px; font-size: 12px; }
}

/* ── Key Insights Badges ── */
.insights-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
  padding: 16px 0;
}
.insight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}
.insight-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.dot-red { background: #EF4444; }
.dot-amber { background: #F59E0B; }
.dot-green { background: #22C55E; }
.dot-blue { background: #3B82F6; }
.badge-critical {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FECACA;
}
.badge-warning {
  background: #FEF3C7;
  color: #92400E;
  border: 1px solid #FDE68A;
}
.badge-positive {
  background: #DCFCE7;
  color: #166534;
  border: 1px solid #BBF7D0;
}
.badge-info {
  background: #DBEAFE;
  color: #1E40AF;
  border: 1px solid #BFDBFE;
}
@media (max-width: 640px) {
  .insights-badges { gap: 8px; padding: 12px 0; }
  .insight-badge { padding: 6px 14px; font-size: 12px; }
}

/* ── Red Flags / Green Flags Section ── */
.flags-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .flags-grid { grid-template-columns: 1fr; gap: 16px; }
}
.flags-column {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  background: #fff;
}
.flags-col-header {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.flags-col-icon { font-size: 16px; }
.flags-col-red {
  background: #FEF2F2;
  color: #991B1B;
  border-bottom: 2px solid #FECACA;
}
.flags-col-green {
  background: #F0FDF4;
  color: #166534;
  border-bottom: 2px solid #BBF7D0;
}
.flag-item {
  padding: 16px 20px;
  border-bottom: 1px solid #F3F4F6;
}
.flag-item:last-child { border-bottom: none; }
.flag-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.flag-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  font-weight: 700;
}
.flag-icon.flag-critical { background: #FEE2E2; color: #DC2626; }
.flag-icon.flag-serious { background: #FEF3C7; color: #D97706; }
.flag-icon.flag-warning { background: #FEF9C3; color: #CA8A04; }
.flag-icon.flag-positive { background: #DCFCE7; color: #16A34A; }
.flag-title {
  font-weight: 700;
  font-size: 14px;
  color: #1F2937;
  flex: 1;
}
.flag-severity {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.flag-critical .flag-severity { background: #FEE2E2; color: #DC2626; }
.flag-serious .flag-severity { background: #FEF3C7; color: #D97706; }
.flag-warning .flag-severity { background: #FEF9C3; color: #CA8A04; }
.flag-detail {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.5;
  padding-left: 32px;
}
.flag-none {
  color: #9CA3AF;
  font-style: italic;
  font-size: 13px;
}
