/* ============================================
   SIDING & EXTERIORS — Divided Sky
   Extends homepage-v2.css design system
   ============================================ */

/* ---- Hero ---- */
.se-hero {
  position: relative;
  min-height: 600px;
  background: var(--ds-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.se-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.se-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.se-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(25,25,25,0.25) 0%, rgba(25,25,25,0.5) 50%, rgba(25,25,25,0.7) 100%);
  z-index: 1;
}

.se-hero .ds-container {
  position: relative;
  z-index: 3;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 60px;
}

.se-hero-content {
  max-width: 680px;
}

.se-hero h1 {
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--ds-white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.se-hero-sub {
  font-size: 18px;
  color: var(--ds-gray-300);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
}

.se-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.se-hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.se-hero-stat {
  text-align: center;
}

.se-hero-stat-number {
  font-size: 22px;
  font-weight: 800;
  color: var(--ds-white);
  line-height: 1.2;
}

.se-hero-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ds-gray-400);
  margin-top: 2px;
}

/* ---- Services Grid ---- */
.se-services {
  padding: var(--ds-section-pad) 0;
  background: var(--ds-cream);
}

.se-services-header {
  text-align: center;
  margin-bottom: 64px;
}

.se-services-header h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ds-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.se-services-sub {
  font-size: 17px;
  color: var(--ds-gray-600);
  max-width: 500px;
  margin: 0 auto;
}

.se-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.se-service-card {
  background: var(--ds-white);
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid var(--ds-gray-200);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.se-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.se-service-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(119, 232, 6, 0.15);
  border: 1.5px solid rgba(119, 232, 6, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--ds-green);
}

.se-service-icon svg {
  stroke-width: 2;
}

.se-service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ds-dark);
  margin-bottom: 12px;
}

.se-service-card > p {
  font-size: 15px;
  color: var(--ds-gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.se-service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.se-service-features li {
  font-size: 14px;
  color: var(--ds-gray-600);
  padding: 6px 0 6px 24px;
  position: relative;
  line-height: 1.5;
}

.se-service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ds-green);
  font-weight: 700;
}

.se-service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ds-green);
  text-decoration: none;
  transition: color 0.2s;
  margin-top: auto;
}

.se-service-link:hover {
  color: var(--ds-green-dark);
}

/* ---- Siding Materials ---- */
.se-materials {
  padding: var(--ds-section-pad) 0;
  background: var(--ds-charcoal);
  color: var(--ds-white);
}

.se-materials-header {
  text-align: center;
  margin-bottom: 64px;
}

.se-materials-header h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ds-white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.se-materials-sub {
  font-size: 17px;
  color: var(--ds-gray-400);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.se-materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.se-material-card {
  background: var(--ds-gray-900);
  border: 1px solid var(--ds-gray-800);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.se-material-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.se-material-img-wrap {
  overflow: hidden;
}

.se-material-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.se-material-card:hover .se-material-img {
  transform: scale(1.04);
}

.se-material-body {
  padding: 28px 28px 32px;
}

.se-material-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ds-dark);
  background: var(--ds-green);
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.se-material-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ds-white);
  margin-bottom: 10px;
}

.se-material-body > p {
  font-size: 14px;
  color: var(--ds-gray-400);
  line-height: 1.7;
  margin-bottom: 20px;
}

.se-material-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--ds-gray-800);
  padding-top: 16px;
}

.se-material-specs li {
  font-size: 13px;
  color: var(--ds-gray-400);
  padding: 4px 0;
  line-height: 1.6;
}

.se-material-specs li strong {
  color: var(--ds-gray-300);
  font-weight: 600;
}

/* ---- Why Divided Sky ---- */
.se-why {
  padding: var(--ds-section-pad) 0;
  background: var(--ds-cream);
  color: var(--ds-dark);
}

.se-why-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 72px;
}

.se-why-content h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: var(--ds-dark);
}

.se-why-sub {
  font-size: 17px;
  color: var(--ds-gray-600);
  max-width: 560px;
  line-height: 1.7;
}

.se-why-photo img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border: 2px solid rgba(119, 232, 6, 0.2);
}

.se-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 64px;
}

.se-why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.se-why-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(119, 232, 6, 0.1);
  border: 1px solid rgba(119, 232, 6, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--ds-green);
}

.se-why-item h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ds-dark);
}

.se-why-item p {
  font-size: 14px;
  color: var(--ds-gray-600);
  line-height: 1.7;
}

/* ---- How It Works / Process ---- */
.se-process {
  padding: var(--ds-section-pad) 0;
  background: var(--ds-white);
}

.se-process-header {
  text-align: center;
  margin-bottom: 64px;
}

.se-process-header h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ds-dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.se-process-sub {
  font-size: 17px;
  color: var(--ds-gray-600);
}

.se-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.se-step {
  position: relative;
  text-align: center;
  padding: 0 8px;
}

.se-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ds-green);
  color: var(--ds-dark);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.se-step-connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 2px;
  background: var(--ds-gray-200);
  z-index: 1;
}

.se-step:last-child .se-step-connector {
  display: none;
}

.se-step h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ds-dark);
  margin-bottom: 8px;
}

.se-step p {
  font-size: 14px;
  color: var(--ds-gray-600);
  line-height: 1.6;
}

.se-process-cta {
  text-align: center;
}

/* ---- Gallery ---- */
.se-gallery {
  padding: var(--ds-section-pad) 0;
  background: var(--ds-gray-100);
}

.se-gallery-header {
  text-align: center;
  margin-bottom: 64px;
}

.se-gallery-header h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ds-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.se-gallery-sub {
  font-size: 17px;
  color: var(--ds-gray-600);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.se-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.se-gallery-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.se-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.se-gallery-card:hover img {
  transform: scale(1.06);
}

.se-gallery-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
}

.se-gallery-tag {
  font-size: 14px;
  font-weight: 700;
  color: var(--ds-white);
  margin-bottom: 4px;
}

.se-gallery-location {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ---- Reviews ---- */
.se-reviews {
  padding: var(--ds-section-pad) 0;
  background: var(--ds-charcoal);
  color: var(--ds-white);
}

.se-reviews-header {
  text-align: center;
  margin-bottom: 64px;
}

.se-reviews-header h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.se-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.se-review-card {
  background: var(--ds-gray-900);
  border: 1px solid var(--ds-gray-800);
  border-radius: 16px;
  padding: 36px 28px;
}

.se-review-stars {
  font-size: 18px;
  color: #fbbf24;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.se-review-card p {
  font-size: 15px;
  color: var(--ds-gray-300);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.se-review-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--ds-gray-500);
}

.se-reviews-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.se-badge {
  height: 56px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(20%);
  transition: opacity 0.3s, filter 0.3s;
}

.se-badge:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ---- FAQ ---- */
.se-faq {
  padding: var(--ds-section-pad) 0;
  background: var(--ds-white);
}

.se-faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.se-faq-header h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ds-dark);
  letter-spacing: -0.02em;
}

.se-faq-list {
  max-width: 760px;
  margin: 0 auto;
}

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

.se-faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--ds-dark);
  text-align: left;
  font-family: var(--ds-font);
  gap: 16px;
}

.se-faq-trigger:hover {
  color: var(--ds-green);
}

.se-faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--ds-gray-500);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.se-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.se-faq-answer p {
  font-size: 15px;
  color: var(--ds-gray-600);
  line-height: 1.7;
  padding-bottom: 20px;
}

.se-faq-open .se-faq-answer {
  max-height: 300px;
}

.se-faq-open .se-faq-icon {
  transform: rotate(45deg);
}

.se-faq-open .se-faq-trigger {
  color: var(--ds-green);
}

/* ---- Service Area ---- */
.se-service-area {
  padding: var(--ds-section-pad) 0;
  background: var(--ds-gray-100);
}

.se-service-area .ds-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.se-area-content h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ds-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.se-area-sub {
  font-size: 15px;
  color: var(--ds-gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
}

.se-area-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ds-green);
  text-decoration: none;
}

.se-area-link:hover {
  color: var(--ds-green-dark);
}

.se-map-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

/* ---- Final CTA ---- */
.se-final-cta {
  padding: var(--ds-section-pad) 0;
  background: var(--ds-dark);
  text-align: center;
  color: var(--ds-white);
}

.se-final-cta h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.se-final-cta p {
  font-size: 17px;
  color: var(--ds-gray-400);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.se-final-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Nav alignment fix ---- */
.ds-nav-menu {
  align-items: center !important;
}
.ds-nav-menu > li {
  align-items: center !important;
}
.ds-nav-menu > li > a {
  display: flex;
  align-items: center;
  line-height: 1;
}

/* ---- Active nav link ---- */
.ds-siding-exteriors .ds-nav-active {
  color: var(--ds-green) !important;
}

/* ============================================
   360° EXTERIOR INSPECTION
   ============================================ */
.se-inspection {
  padding: var(--ds-section-pad) 0;
  background: var(--ds-cream, #f9f7f2);
  overflow: hidden;
}

.se-inspection-header {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 56px;
}

.se-inspection-badge {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
}

.se-inspection-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.se-inspection-intro h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ds-dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.se-inspection-intro .ds-section-label {
  margin-bottom: 8px;
}

.se-inspection-intro p {
  font-size: 16px;
  color: var(--ds-gray-600, #6b7280);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 24px;
}

.se-inspection-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.se-inspection-visual {
  position: relative;
}

.se-inspection-house {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 5;
}

.se-inspection-markers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.se-inspect-marker {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ds-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(119, 232, 6, 0.4);
  animation: se-marker-pulse 2.5s ease-in-out infinite;
}

.se-inspect-marker svg {
  width: 24px;
  height: 24px;
  stroke: var(--ds-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.se-inspect-marker:nth-child(1) { top: 18%; left: 22%; animation-delay: 0s; }
.se-inspect-marker:nth-child(2) { top: 30%; right: 18%; animation-delay: 0.5s; }
.se-inspect-marker:nth-child(3) { top: 55%; left: 12%; animation-delay: 1s; }
.se-inspect-marker:nth-child(4) { bottom: 20%; right: 22%; animation-delay: 1.5s; }

@keyframes se-marker-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(119, 232, 6, 0.4); }
  50% { transform: scale(1.08); box-shadow: 0 6px 28px rgba(119, 232, 6, 0.6); }
}

.se-inspection-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.se-inspect-card {
  background: var(--ds-dark);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.se-inspect-card:hover {
  transform: translateX(4px);
  box-shadow: -4px 4px 24px rgba(0,0,0,0.15);
}

.se-inspect-card-img {
  flex-shrink: 0;
  width: 100px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
}

.se-inspect-card-body {
  flex: 1;
}

.se-inspect-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.se-inspect-card-title svg {
  width: 20px;
  height: 20px;
  stroke: var(--ds-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.se-inspect-card-title h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ds-white);
  margin: 0;
}

.se-inspect-card p {
  font-size: 14px;
  color: var(--ds-gray-400, #9ca3af);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .se-services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .se-materials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .se-materials-grid .se-material-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .se-reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .se-reviews-grid .se-review-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .se-why-header {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }

  .se-why-photo img {
    max-height: 300px;
  }

  .se-why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .se-process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .se-step-connector {
    display: none;
  }

  .se-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .se-gallery-grid .se-gallery-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Inspection tablet */
  .se-inspection-layout {
    gap: 32px;
  }
  .se-inspect-card-img {
    width: 80px;
    height: 65px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  .se-hero {
    min-height: 500px;
  }

  .se-hero .ds-container {
    min-height: 500px;
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .se-hero-overlay {
    background: linear-gradient(to bottom, rgba(25,25,25,0.25) 0%, rgba(25,25,25,0.5) 50%, rgba(25,25,25,0.7) 100%);
  }

  .se-hero-sub {
    font-size: 16px;
  }

  .se-hero-buttons {
    flex-direction: column;
    margin-bottom: 32px;
  }

  .se-hero-stats {
    gap: 20px;
  }

  .se-hero-stat-number {
    font-size: 18px;
  }

  .se-services-grid,
  .se-materials-grid,
  .se-reviews-grid,
  .se-gallery-grid {
    grid-template-columns: 1fr;
  }

  .se-materials-grid .se-material-card:last-child,
  .se-reviews-grid .se-review-card:last-child,
  .se-gallery-grid .se-gallery-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .se-process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .se-step-connector {
    display: none;
  }

  .se-service-area .ds-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .se-reviews-badges {
    gap: 24px;
    flex-wrap: wrap;
  }

  .se-badge {
    height: 44px;
  }

  .se-final-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Inspection section mobile */
  .se-inspection-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    align-items: center;
  }
  .se-inspection-badge {
    width: 80px;
    height: 80px;
  }
  .se-inspection-intro p {
    margin: 0 auto 20px;
  }
  .se-inspection-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .se-inspection-visual {
    max-width: 400px;
    margin: 0 auto;
  }
  .se-inspect-marker {
    width: 40px;
    height: 40px;
  }
  .se-inspect-marker svg {
    width: 18px;
    height: 18px;
  }
  .se-inspect-card {
    flex-direction: column;
    gap: 14px;
  }
  .se-inspect-card-img {
    width: 100%;
    height: 140px;
  }

  /* Section padding */
  .se-services,
  .se-materials,
  .se-why,
  .se-process,
  .se-inspection,
  .se-gallery,
  .se-reviews,
  .se-faq,
  .se-service-area,
  .se-final-cta {
    padding: var(--ds-section-pad-mobile) 0;
  }
}
