.inspection-page {
  font-family: var(--font-sans, "Noto Sans KR", "Noto Sans", sans-serif);
  color: var(--black);
}

/* Override main.css shared class names */
.inspection-page .hero {
  padding: 0 !important;
  text-align: left !important;
}
.inspection-page .hero h1,
.inspection-page .hero-title {
  font-size: 42px !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
  color: #fff !important;
  max-width: none !important;
  margin: 0 0 12px !important;
}
.inspection-page .hero p,
.inspection-page .hero-subtitle {
  max-width: none !important;
  margin: 20px 0 0 !important;
}
.inspection-page .section {
  max-width: none !important;
  margin: 0 !important;
  padding: 80px 0 !important;
}
:root {
  --brand: #0EA5E9;
  --brand-light: #38BDF8;
  --brand-dark: #0284C7;
  --brand-muted: #E0F2FE;
  --brand-rgb: 14, 165, 233;
  --orange: var(--brand);
  --orange-light: var(--brand-light);
  --purple: #7C3AED;
  --purple-deep: #5B21B6;
  --purple-soft: #A78BFA;
  --black: #0F172A;
  --dark: #1E293B;
  --dark-navy: #0F172A;
  --gray: #475569;
  --light-gray: #F1F5F9;
  --border: #E2E8F0;
  --white: #ffffff;
}

/* ─── SIDE ANCHORS (below Quick Offers; Quick btn uses main.css centering) ─── */
.inspection-page-body {
  --rail-quick-h: 7.25rem;
  --rail-gap: 0.35rem;
}

.inspection-page .side-anchors {
  position: fixed;
  right: 0;
  top: calc(50% + var(--rail-quick-h) / 2 + var(--rail-gap));
  transform: none;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.inspection-page .side-anchors a {
  display: block;
  width: 36px;
  background: rgba(var(--brand-rgb),.15);
  border-left: 3px solid var(--orange);
  height: 48px;
  writing-mode: vertical-rl;
  font-size: 9px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.inspection-page .side-anchors a:hover { background: rgba(var(--brand-rgb),.3); }

/* ─── HERO ─── */
.inspection-page .hero {
  margin-top: 0;
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark) 50%, #32185c 100%);
  min-height: 520px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.inspection-page .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(var(--brand-rgb),.08) 0%, transparent 70%);
}
.inspection-page .hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.inspection-page .hero-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.inspection-page .hero-title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 12px;
}
.inspection-page .hero-title .highlight {
  color: var(--orange);
  display: block;
}
.inspection-page .hero-subtitle {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255,255,255,.35);
  margin-top: 20px;
  text-transform: uppercase;
}
.inspection-page .hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.inspection-page .hero-device {
  width: 320px;
  height: 400px;
  background: linear-gradient(145deg, #1a1a2e, #0d0d1a);
  border-radius: 32px;
  border: 2px solid rgba(var(--brand-rgb),.3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 60px rgba(var(--brand-rgb),.1);
}
.inspection-page .hero-device::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 24px;
  background: #0a0a14;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.inspection-page .hero-car-container {
  position: absolute;
  inset: 40px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inspection-page .hero-car {
  width: 260px;
  filter: drop-shadow(0 20px 40px rgba(var(--brand-rgb),.2));
}
/* SVG Car */
.inspection-page .car-svg { width: 240px; height: 130px; }
.inspection-page .scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  animation: scan 2.5s ease-in-out infinite;
  opacity: .7;
}
@keyframes scan {
  0% { top: 20%; opacity: 0; }
  20% { opacity: .8; }
  80% { opacity: .8; }
  100% { top: 85%; opacity: 0; }
}
.inspection-page .scan-dots {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px var(--orange);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .8; }
  50% { transform: scale(1.4); opacity: 1; }
}
.inspection-page .lock-icon {
  position: absolute;
  bottom: 60px; left: 30px;
  width: 44px; height: 44px;
  background: rgba(var(--brand-rgb),.15);
  border: 1px solid rgba(var(--brand-rgb),.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.inspection-page .hero-device-glow {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 40px;
  background: rgba(var(--brand-rgb),.15);
  filter: blur(20px);
  border-radius: 50%;
}

/* ─── SECTION WRAPPER ─── */
.inspection-page .section { padding: 80px 0; }
.inspection-page .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.inspection-page .section-badge {
  display: inline-block;
  background: rgba(var(--brand-rgb),.1);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.inspection-page .section-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--black);
}
.inspection-page .section-title em {
  color: var(--orange);
  font-style: normal;
}

/* ─── FEATURE CARDS ─── */
.inspection-page .features-section { background: var(--white); }
.inspection-page .features-header { text-align: center; margin-bottom: 60px; }
.inspection-page .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.inspection-page .feature-card {
  background: var(--white);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  transition: background .2s;
}
.inspection-page .feature-card:hover { background: #fafafa; }
.inspection-page .feature-icon {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.inspection-page .feature-icon svg { width: 44px; height: 44px; }
.inspection-page .feature-num {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.inspection-page .feature-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
  word-break: keep-all;
}
.inspection-page .feature-title span { display: block; }
.inspection-page .feature-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
  word-break: keep-all;
}

/* ─── REPORT SECTION ─── */
.inspection-page .report-section { background: var(--light-gray); }
.inspection-page .report-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.inspection-page .report-left .section-title { margin-bottom: 32px; }
.inspection-page .report-desc { font-size: 15px; color: #555; line-height: 1.8; word-break: keep-all; }
.inspection-page .report-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
}
.inspection-page .report-card-header {
  background: var(--black);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.inspection-page .report-logo-text {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1.3;
}
.inspection-page .report-logo-text span:not(.brand-wing) { color: var(--orange); }
.inspection-page .report-logo-text .brand-wing { color: #007dd1; }
.inspection-page .report-card-img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
  overflow: hidden;
  position: relative;
}
.inspection-page .interior-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #c8c8c8, #a0a0a0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.inspection-page .report-checklist {
  padding: 20px 28px;
}
.inspection-page .report-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: #444;
}
.inspection-page .report-check-item:last-child { border-bottom: none; }
.inspection-page .check-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── TECH SECTION ─── */
.inspection-page .tech-section {
  background: var(--dark-navy);
  color: var(--white);
  padding: 80px 0;
}
.inspection-page .tech-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.inspection-page .tech-header { text-align: center; margin-bottom: 60px; }
.inspection-page .tech-header .section-badge { background: rgba(var(--brand-rgb),.2); }
.inspection-page .tech-header .section-title { color: var(--white); }
.inspection-page .tech-header p {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  margin-top: 16px;
  line-height: 1.7;
  word-break: keep-all;
}
.inspection-page .car-diagram-wrapper {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.inspection-page .car-top-view {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
/* Top-view car SVG container */
.inspection-page .car-top-svg-container {
  position: relative;
  width: 340px;
  height: 500px;
}
.inspection-page .diagnosis-label {
  position: absolute;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.inspection-page .diagnosis-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}
.inspection-page .diagnosis-label.right::before { display: none; }
.inspection-page .diagnosis-label.right::after {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}
.inspection-page .diag-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange);
}
.inspection-page .tech-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.inspection-page .tech-feat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  transition: background .2s, border-color .2s;
}
.inspection-page .tech-feat:hover {
  background: rgba(var(--brand-rgb),.1);
  border-color: rgba(var(--brand-rgb),.3);
}
.inspection-page .tech-feat-icon { font-size: 24px; margin-bottom: 10px; }
.inspection-page .tech-feat-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.inspection-page .tech-feat-desc {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
  word-break: keep-all;
}

/* ─── PROCESS SECTION ─── */
.inspection-page .process-section { background: var(--white); }
.inspection-page .process-header { text-align: center; margin-bottom: 72px; }
.inspection-page .process-timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.inspection-page .process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--orange) 0%, rgba(var(--brand-rgb),.1) 100%);
}
.inspection-page .process-step {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 64px;
  align-items: start;
  position: relative;
}
.inspection-page .process-step:last-child { margin-bottom: 0; }
.inspection-page .step-left, .inspection-page .step-right {
  padding: 0 32px;
}
.inspection-page .step-left { text-align: right; }
.inspection-page .step-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.inspection-page .step-circle {
  width: 56px; height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(var(--brand-rgb),.35);
  flex-shrink: 0;
}
.inspection-page .step-num {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.inspection-page .step-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--black);
}
.inspection-page .step-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  word-break: keep-all;
}
.inspection-page .step-img {
  width: 100%;
  max-width: 280px;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  margin-top: 16px;
}
.inspection-page .step-left .step-img { margin-left: auto; }
.inspection-page .step-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}
.inspection-page .step-img-placeholder.dark {
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}
.inspection-page .step-img-placeholder.orange {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

/* ─── ELIGIBLE CARS ─── */
.inspection-page .eligible-section { background: var(--light-gray); padding: 64px 0; }
.inspection-page .eligible-bar {
  background: var(--dark);
  border-radius: 10px;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}
.inspection-page .eligible-bar-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.inspection-page .eligible-bar-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}
.inspection-page .eligible-list {
  background: var(--white);
  border-radius: 10px;
  padding: 20px 32px;
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  border: 1px solid var(--border);
}
.inspection-page .eligible-list strong { color: var(--orange); font-weight: 700; }

/* ─── NOTICE ─── */
.inspection-page .notice-section { background: var(--white); padding: 64px 0; }
.inspection-page .notice-title {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 32px;
  color: var(--black);
}
.inspection-page .notice-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.inspection-page .notice-list li {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
  word-break: keep-all;
}
.inspection-page .notice-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
}

/* ─── DIVIDER LINE ─── */
.inspection-page .orange-divider {
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 50%, transparent 100%);
  margin-bottom: 0;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.inspection-page .fade-up {
  opacity: 1;
  transform: none;
}
.inspection-page .fade-up.is-visible {
  animation: fadeUp .6s ease forwards;
}
.inspection-page .fade-up-delay-1.is-visible { animation-delay: .1s; }
.inspection-page .fade-up-delay-2.is-visible { animation-delay: .2s; }
.inspection-page .fade-up-delay-3.is-visible { animation-delay: .3s; }
.inspection-page .fade-up-delay-4.is-visible { animation-delay: .4s; }

/* step visible on even/odd */
.inspection-page .process-step:nth-child(even) .step-left { order: 1; }
.inspection-page .process-step:nth-child(even) .step-center { order: 2; }
.inspection-page .process-step:nth-child(even) .step-right { order: 3; }

/* CTA button */
.inspection-page .cta-bar {
  background: linear-gradient(135deg, var(--brand) 0%, var(--purple-deep) 100%);
  text-align: center;
  padding: 48px 24px;
}
.inspection-page .cta-bar h2 {
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}
.inspection-page .cta-bar p {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  margin-bottom: 28px;
  word-break: keep-all;
}
.inspection-page .btn-cta {
  display: inline-block;
  background: var(--white);
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
  padding: 14px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Noto Sans KR', sans-serif;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.inspection-page .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

/* ─── INSPECTION INQUIRY FORM ─── */
.inspection-page .inspection-inquiry-section {
  background: #f8f9fb;
  padding: 64px 0;
  scroll-margin-top: 80px;
}
.inspection-page .inspection-inquiry-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 10px;
}
.inspection-page .inspection-inquiry-intro {
  font-size: 14px;
  color: #555;
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 640px;
}
.inspection-page .inspection-inquiry-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  max-width: 720px;
}
.inspection-page .inspection-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.inspection-page .inspection-form-grid label.full-width {
  grid-column: 1 / -1;
}
.inspection-page .inspection-form-grid label > span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #666;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.inspection-page .inspection-form-grid input,
.inspection-page .inspection-form-grid textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-family: inherit;
}
.inspection-page .inspection-form-actions {
  margin-top: 20px;
}
.inspection-page .inspection-form-actions .btn-cta {
  border: none;
  cursor: pointer;
}
.inspection-page .inspection-form-error {
  color: #dc2626;
  font-size: 12px;
  margin-top: 12px;
}
.inspection-page .inspection-form-success {
  margin-top: 16px;
  padding: 16px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 10px;
}
.inspection-page .inspection-form-success h3 {
  font-size: 14px;
  color: #047857;
  margin-bottom: 6px;
}
.inspection-page .inspection-form-success code {
  display: block;
  word-break: break-all;
  font-size: 12px;
  margin-top: 6px;
}
@media (max-width: 700px) {
  .inspection-page .inspection-form-grid {
    grid-template-columns: 1fr;
  }
}