/* ==========================================================================
   Solar page hero + home page CTA tweak.
   Namespaced under .solar-hero-area / .service-area so it never collides
   with the theme's own CSS. Reuses the theme's tokens (var(--theme),
   var(--secondary), …) and .container.large so the hero matches the rest
   of the site (same approach as quote-form.css). The solar page's body
   sections below the hero use the separate solar-mock.css design system.
   ========================================================================== */

/* ---- service-area CTA (home page Solar card) ---- */
.service-area .btn-wrapper {
  margin-top: 22px;
}

/* ---- solar page hero ---- */
.solar-hero-area .solar-hero-inner {
  padding-top: 140px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 1199px) {
  .solar-hero-area .solar-hero-inner {
    padding-top: 120px;
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .solar-hero-area .solar-hero-inner {
    padding-top: 120px;
    padding-bottom: 30px;
  }
}
.solar-hero-area .section-subtitle {
  margin-bottom: 18px;
  color: var(--theme);
  letter-spacing: 0.08em;
}
.solar-hero-area .section-title {
  font-size: 72px;
  max-width: 650px;
  line-height: 1;
}
@media only screen and (max-width: 1399px) {
  .solar-hero-area .section-title {
    font-size: 56px;
  }
}
@media only screen and (max-width: 991px) {
  .solar-hero-area .section-title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 575px) {
  .solar-hero-area .section-title {
    font-size: 32px;
  }
}
.solar-hero-area .text-wrapper .text {
  max-width: 620px;
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--secondary);
}
.solar-hero-area .hero-thumb {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
}
.solar-hero-area .hero-thumb img {
  width: 100%;
  display: block;
}
.solar-hero-area .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}
