/* ── Inspection Hero ── */
.hero--inspection {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  padding: calc(var(--navbar-height) + var(--space-3xl)) 0 var(--space-2xl);
}
.hero--inspection::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(var(--color-primary-dark-rgb), 0.78) 0%, rgba(var(--color-primary-rgb), 0.65) 55%, rgba(var(--color-secondary-rgb), 0.42) 100%);
  z-index: 1;
}
.hero--inspection::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
}
.hero--inspection .container {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero--inspection .breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
}
.hero--inspection .breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-base);
}
.hero--inspection .breadcrumb a:hover { color: var(--color-accent); }
.hero--inspection .breadcrumb-sep { margin: 0 var(--space-xs); opacity: 0.5; }
.hero--inspection .eyebrow-label {
  display: inline-block;
  background: rgba(var(--color-accent-rgb), 0.15);
  color: var(--color-accent);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-xl);
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}
.hero--inspection h1 {
  color: #fff;
  font-size: var(--fs-h1);
  font-family: var(--font-heading);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  text-wrap: balance;
}
.hero--inspection h1 .text-accent {
  font-family: var(--font-accent);
  color: var(--color-accent);
}
.hero--inspection .hero-answer {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-lg);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 60ch;
}
.hero--inspection .hero-ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}
.hero--inspection .trust-row {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.75);
}
.hero--inspection .trust-row span {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.hero--inspection .trust-row i,
.hero--inspection .trust-row svg { width: 16px; height: 16px; color: var(--color-accent); }

/* ── SVG Divider: Curve ── */
.divider-curve {
  position: relative;
  margin-top: -2px;
  line-height: 0;
}
.divider-curve svg {
  display: block;
  width: 100%;
  height: 55px;
}

/* ── SVG Divider: Slant ── */
.divider-slant {
  position: relative;
  margin-top: -2px;
  line-height: 0;
}
.divider-slant svg {
  display: block;
  width: 100%;
  height: 45px;
}

/* ── Inspection Overview (Split Layout) ── */
.inspect-overview {
  padding: var(--section-pad);
  background: var(--color-bg);
}
.inspect-overview .split-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-3xl);
  align-items: center;
}
.inspect-overview .img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.inspect-overview .img-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.inspect-overview .img-frame .img-badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background: var(--color-accent);
  color: #fff;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-sm);
  box-shadow: var(--shadow-md);
}
.inspect-overview h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  text-wrap: balance;
}
.inspect-overview .answer-block {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  padding-left: var(--space-md);
  border-left: 3px solid var(--color-accent);
}
.inspect-overview .body-text {
  color: var(--color-text);
  font-size: var(--fs-body);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 60ch;
}

/* ── What We Check (Cards Grid) ── */
.inspect-checklist {
  padding: var(--section-pad);
  background: var(--color-bg-alt);
  position: relative;
}
.inspect-checklist .section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}
.inspect-checklist .section-title h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  text-wrap: balance;
}
.inspect-checklist .answer-block {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  line-height: 1.7;
  max-width: 60ch;
  margin: 0 auto;
  padding-left: var(--space-md);
  border-left: 3px solid var(--color-accent);
}
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.check-card {
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
}
.check-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}
.check-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.check-card:hover::after { transform: scaleX(1); }
.check-card .check-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(var(--color-accent-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}
.check-card .check-icon i,
.check-card .check-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}
.check-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}
.check-card p {
  color: var(--color-text-light);
  font-size: var(--fs-body);
  line-height: 1.65;
  max-width: 40ch;
}

/* ── Process Section ── */
.inspect-process {
  padding: var(--section-pad);
  background: var(--color-bg);
}
.inspect-process .section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}
.inspect-process .section-title h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  text-wrap: balance;
}
.inspect-process .answer-block {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  line-height: 1.7;
  max-width: 60ch;
  margin: 0 auto;
  padding-left: var(--space-md);
  border-left: 3px solid var(--color-accent);
}
.inspect-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
}
.inspect-step {
  text-align: center;
  position: relative;
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--color-bg-alt);
  box-shadow: var(--shadow-sm);
}
.inspect-step .step-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 3px 12px rgba(var(--color-accent-rgb), 0.25);
}
.inspect-step h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-primary);
  margin: var(--space-md) 0 var(--space-sm);
}
.inspect-step p {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  line-height: 1.65;
}

/* ── Why Choose Section ── */
.inspect-why {
  padding: var(--section-pad);
  background: var(--color-bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.inspect-why::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.07) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}
.inspect-why .grid-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.inspect-why h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  color: #fff;
  margin-bottom: var(--space-md);
  text-wrap: balance;
}
.inspect-why .answer-block {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  padding-left: var(--space-md);
  border-left: 3px solid var(--color-accent);
}
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-body);
  line-height: 1.6;
}
.why-list li i,
.why-list li svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--color-accent);
  margin-top: 3px;
}
.inspect-why .img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.inspect-why .img-wrapper img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ── FAQ Section ── */
.inspect-faq {
  padding: var(--section-pad);
  background: var(--color-bg-alt);
}
.inspect-faq .section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}
.inspect-faq .section-title h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  color: var(--color-primary);
  text-wrap: balance;
}
.inspect-faq .faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.inspect-faq .faq-item {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base);
}
.inspect-faq .faq-item:hover { box-shadow: var(--shadow-md); }
.inspect-faq .faq-question {
  padding: var(--space-lg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-primary);
  font-weight: 600;
  list-style: none;
}
.inspect-faq .faq-question::-webkit-details-marker { display: none; }
.inspect-faq .faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-accent);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}
.inspect-faq details[open] .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}
.inspect-faq .faq-answer {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  font-size: var(--fs-body);
  line-height: 1.7;
  max-width: 65ch;
}

/* ── CTA Banner ── */
.inspect-cta {
  padding: var(--section-pad);
  background: radial-gradient(ellipse at 80% 30%, rgba(var(--color-accent-rgb), 0.12) 0%, transparent 55%),
              linear-gradient(160deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.inspect-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.inspect-cta .container { position: relative; z-index: 1; max-width: 700px; }
.inspect-cta h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  margin-bottom: var(--space-md);
  text-wrap: balance;
}
.inspect-cta p {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}
.inspect-cta .hero-ctas {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ── Related Services ── */
.inspect-related {
  padding: var(--section-pad);
  background: var(--color-bg);
}
.inspect-related .section-title {
  text-align: center;
  margin-bottom: var(--space-3xl);
}
.inspect-related .section-title h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  color: var(--color-primary);
  text-wrap: balance;
}
.inspect-related .services-grid {
  max-width: 1000px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .inspect-overview .split-layout { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .checklist-grid { grid-template-columns: repeat(2, 1fr); }
  .inspect-steps { grid-template-columns: 1fr; max-width: 400px; }
  .inspect-why .grid-split { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero--inspection { min-height: 45vh; }
  .hero--inspection .hero-ctas { flex-direction: column; }
  .checklist-grid { grid-template-columns: 1fr; }
  .inspect-related .services-grid { grid-template-columns: 1fr; }
}
