/* Homepage-only styles */
.page-home .trust-strip--offset {
  margin-top: var(--header-h);
}

.page-home .hero--home {
  margin-top: 0;
}

.page-home .hero-bg--home {
  background-image: none;
}

.page-home .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.page-home .hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(232, 118, 26, 0.25);
}

.page-home .hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--orange);
  line-height: 1;
}

.page-home .hero-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-top: 4px;
}

.page-home .service-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}

.page-home .service-highlight:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 30px rgba(232, 118, 26, 0.08);
  color: inherit;
}

.page-home .service-highlight-img {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-home .service-highlight-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--card) 100%);
}

.page-home .service-highlight:nth-child(even) .service-highlight-img {
  order: 2;
}

.page-home .service-highlight:nth-child(even) .service-highlight-img::after {
  background: linear-gradient(to left, transparent 60%, var(--card) 100%);
}

.page-home .service-highlight-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-home .service-highlight-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 10px;
}

.page-home .service-highlight-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.1;
}

.page-home .service-highlight-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.page-home .service-highlight-features {
  margin: 12px 0 16px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
}

.page-home .service-highlight-features span {
  display: inline-block;
  margin-right: 16px;
  white-space: nowrap;
}

.page-home .service-highlight-features span::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  margin-right: 6px;
}

.page-home .sh-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-top: auto;
  transition: gap 0.2s;
}

.page-home .service-highlight:hover .sh-link {
  gap: 10px;
}

.page-home .storage-power-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .page-home .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .page-home .hero-stat-num {
    font-size: 28px;
  }

  .page-home .service-highlight {
    grid-template-columns: 1fr;
  }

  .page-home .service-highlight-img {
    min-height: 200px;
    order: 0 !important;
  }

  .page-home .service-highlight-img::after {
    background: linear-gradient(to top, var(--card) 10%, transparent 60%) !important;
  }

  .page-home .service-highlight-body {
    padding: 24px 20px;
  }

  .page-home .storage-power-grid {
    grid-template-columns: 1fr;
  }
}
