/* =============================================================
   SOLAR SERVICES PAGE — PREMIUM BEAUTY CSS
   Matches home page design system
   ============================================================= */

/* ── Solar Hero ─────────────────────────────────────────────── */
.solar-hero-premium {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0d1117 0%, #0f1923 40%, #1a0d00 100%);
  overflow: hidden;
  padding-top: 100px;
}

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

.solar-hero-orbs {
  position: absolute;
  inset: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(243, 139, 42, 0.18) 0%,
    transparent 70%
  );
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(251, 191, 36, 0.12) 0%,
    transparent 70%
  );
  bottom: -100px;
  left: 10%;
  animation-delay: -3s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(243, 139, 42, 0.1) 0%,
    transparent 70%
  );
  top: 30%;
  left: 40%;
  animation-delay: -6s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -25px) scale(1.05);
  }
  66% {
    transform: translate(-15px, 15px) scale(0.95);
  }
}

.solar-hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(243, 139, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 139, 42, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.solar-hero-premium .container {
  position: relative;
  z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.breadcrumb-light a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-light a:hover {
  color: #f38b2a;
}

.breadcrumb-light span {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb-light svg {
  color: rgba(255, 255, 255, 0.35);
}

/* Hero Layout */
.solar-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Hero Badge */
.solar-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(243, 139, 42, 0.12);
  border: 1px solid rgba(243, 139, 42, 0.3);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #f38b2a;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.badge-icon-glow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(243, 139, 42, 0.2);
  border-radius: 50%;
}

.badge-icon-glow svg {
  color: #f38b2a;
}

.badge-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 150%;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* Hero Title */
.solar-hero-title {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.solar-hero-title .title-line {
  display: block;
}

.gradient-text {
  background: linear-gradient(135deg, #f38b2a 0%, #fbbf24 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Lead */
.solar-hero-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 520px;
}

/* Hero Features */
.solar-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2rem;
}

.hero-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.25s;
}

.hero-feature:hover {
  background: rgba(243, 139, 42, 0.12);
  border-color: rgba(243, 139, 42, 0.35);
  color: #f38b2a;
}

.hero-feature svg {
  color: #f38b2a;
}

/* Hero CTAs */
.solar-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-solar-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f38b2a 0%, #e67e22 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(243, 139, 42, 0.35);
  letter-spacing: 0.01em;
}

.btn-solar-primary:hover {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(243, 139, 42, 0.45);
}

.btn-solar-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-solar-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Hero Image Area */
.solar-hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-placeholder {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/3;
  background: linear-gradient(
    135deg,
    rgba(243, 139, 42, 0.12),
    rgba(251, 191, 36, 0.08)
  );
  border-radius: 20px;
  border: 1px solid rgba(243, 139, 42, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(243, 139, 42, 0.6);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-image-placeholder svg {
  color: rgba(243, 139, 42, 0.5);
  animation: pulse-icon 3s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* ── Solar Scope (Stats Strip) ──────────────────────────────── */
.solar-scope-premium {
  background: #ffffff;
  padding: 5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.scope-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f38b2a;
  margin-bottom: 0.75rem;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.6);
}

.scope-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0d1117;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.scope-intro {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.scope-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.scope-card {
  background: #ffffff;
  border: 1.5px solid #f0f2f5;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.scope-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(243, 139, 42, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.scope-card:hover {
  transform: translateY(-6px);
  border-color: rgba(243, 139, 42, 0.3);
  box-shadow: 0 16px 48px rgba(243, 139, 42, 0.12);
}

.scope-card:hover::before {
  opacity: 1;
}

.scope-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    rgba(243, 139, 42, 0.15),
    rgba(251, 191, 36, 0.08)
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #f38b2a;
  transition: all 0.3s;
}

.scope-card-icon.diagnostic {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.12),
    rgba(99, 102, 241, 0.08)
  );
  color: #3b82f6;
}

.scope-card-icon.maintenance {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.12),
    rgba(5, 150, 105, 0.08)
  );
  color: #10b981;
}

.scope-card-icon.safety {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.12),
    rgba(220, 38, 38, 0.08)
  );
  color: #ef4444;
}

.scope-card:hover .scope-card-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(243, 139, 42, 0.2);
}

.scope-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0d1117;
  margin-bottom: 0.5rem;
}

.scope-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
}

/* ── Service Cards Grid ─────────────────────────────────────── */
.solar-services-grid {
  background: #f8fafc;
  padding: 6rem 0;
}

.services-grid-header {
  margin-bottom: 3.5rem;
}

.services-grid-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0d1117;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 0.5rem;
}

.service-card-premium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f2f5;
  transition: all 0.35s;
  opacity: 0;
  transform: translateY(30px);
}

.service-card-premium.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.35s,
    border-color 0.35s;
}

.service-card-premium:hover {
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.12);
  border-color: rgba(243, 139, 42, 0.2);
}

.service-card-premium.reverse {
  direction: rtl;
}

.service-card-premium.reverse > * {
  direction: ltr;
}

.service-card-content {
  padding: 3rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.service-number {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(243, 139, 42, 0.08);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  letter-spacing: -0.04em;
  font-family: inherit;
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(243, 139, 42, 0.15),
    rgba(251, 191, 36, 0.08)
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #f38b2a;
  transition: all 0.3s;
}

.service-icon-wrapper.diagnostic {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.12),
    rgba(99, 102, 241, 0.08)
  );
  color: #3b82f6;
}

.service-icon-wrapper.maintenance {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.12),
    rgba(5, 150, 105, 0.08)
  );
  color: #10b981;
}

.service-icon-wrapper.safety {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.12),
    rgba(220, 38, 38, 0.08)
  );
  color: #ef4444;
}

.service-icon-bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
  background: rgba(243, 139, 42, 0.05);
}

.service-card-premium:hover .service-icon-wrapper {
  transform: scale(1.08);
}

.service-card-content h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0d1117;
  line-height: 1.25;
  margin-bottom: 0.9rem;
  letter-spacing: -0.02em;
}

.service-card-content p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #374151;
}

.service-features li svg {
  color: #10b981;
  flex-shrink: 0;
}

.service-highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #1e40af;
  font-weight: 600;
  line-height: 1.5;
}

.service-highlight.warning {
  background: rgba(239, 68, 68, 0.06);
  border-color: rgba(239, 68, 68, 0.15);
  color: #dc2626;
}

.service-highlight svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f38b2a;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.service-card-link:hover {
  gap: 12px;
  color: #e67e22;
}

/* Service Visual Area */
.service-card-visual {
  position: relative;
  background: linear-gradient(135deg, #f8fafc, #f0f4f8);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  overflow: hidden;
}

.service-card-visual.diagnostic {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.service-card-visual.maintenance {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.service-card-visual.safety {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

.service-visual-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 70% 30%,
    rgba(243, 139, 42, 0.08) 0%,
    transparent 60%
  );
}

.service-visual-icon {
  position: relative;
  z-index: 1;
  color: rgba(243, 139, 42, 0.3);
  animation: pulse-icon 4s ease-in-out infinite;
}

.service-card-visual.diagnostic .service-visual-icon {
  color: rgba(59, 130, 246, 0.3);
}
.service-card-visual.maintenance .service-visual-icon {
  color: rgba(16, 185, 129, 0.3);
}
.service-card-visual.safety .service-visual-icon {
  color: rgba(239, 68, 68, 0.3);
}

/* ── Trust Section ──────────────────────────────────────────── */
.solar-trust-premium {
  background: linear-gradient(135deg, #0d1117 0%, #141b24 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.trust-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(243, 139, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 139, 42, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.trust-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.trust-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 0.5rem;
}

.trust-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.trust-card-premium {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  cursor: default;
}

.trust-card-premium:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(243, 139, 42, 0.25);
  transform: translateY(-4px);
}

.trust-card-premium.highlight {
  background: rgba(243, 139, 42, 0.1);
  border-color: rgba(243, 139, 42, 0.3);
}

.trust-card-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(243, 139, 42, 0.15),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.trust-card-premium:hover .trust-card-glow {
  opacity: 1;
}

.trust-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(243, 139, 42, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #f38b2a;
}

.trust-card-premium h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.trust-card-premium p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* ── Guidance Section ───────────────────────────────────────── */
.solar-guidance-premium {
  background: #f8fafc;
  padding: 5rem 0;
}

.guidance-premium-card {
  background: linear-gradient(135deg, #0d1117, #1a2332);
  border-radius: 24px;
  padding: 4rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(243, 139, 42, 0.15);
}

.guidance-bg-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(243, 139, 42, 0.15),
    transparent 70%
  );
}

.guidance-content-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}

.guidance-icon-area {
  position: relative;
  flex-shrink: 0;
}

.guidance-icon-ring {
  width: 96px;
  height: 96px;
  background: rgba(243, 139, 42, 0.12);
  border: 2px solid rgba(243, 139, 42, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f38b2a;
}

.guidance-icon-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(243, 139, 42, 0.15);
  animation: pulse-ring 2.5s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.guidance-text-area h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.guidance-text-area p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  font-size: 1rem;
}

.guidance-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-solar-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 22px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.25s;
}

.btn-solar-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

/* ── Final CTA Section ──────────────────────────────────────── */
.solar-final-premium {
  position: relative;
  background: linear-gradient(135deg, #0d1117 0%, #1a0d00 100%);
  padding: 6rem 0;
  overflow: hidden;
}

.final-bg-effects {
  position: absolute;
  inset: 0;
}

.final-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.final-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(243, 139, 42, 0.15);
  top: -100px;
  left: 20%;
}

.final-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(251, 191, 36, 0.1);
  bottom: -80px;
  right: 20%;
}

.final-premium-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.final-premium-content .section-label {
  color: #f38b2a;
  margin-bottom: 1rem;
}

.final-premium-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.final-premium-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.final-premium-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-final-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f38b2a 0%, #e67e22 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 6px 28px rgba(243, 139, 42, 0.4);
}

.btn-final-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(243, 139, 42, 0.5);
  color: #ffffff;
}

.btn-final-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

.btn-final-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
  color: #ffffff;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .solar-hero-premium {
    padding-top: 90px;
    min-height: unset;
    padding-bottom: 5rem;
  }
  .solar-hero-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .solar-hero-image {
    display: none;
  }
  .solar-hero-title {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
  }
  .scope-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card-premium {
    grid-template-columns: 1fr;
  }
  .service-card-premium.reverse {
    direction: ltr;
  }
  .service-card-visual {
    min-height: 200px;
  }
  .service-number {
    font-size: 3rem;
  }
  .trust-premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .guidance-content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .guidance-icon-area {
    margin: 0 auto;
  }
  .guidance-ctas {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .solar-hero-premium {
    padding-top: 80px;
    padding-bottom: 4rem;
  }
  .solar-hero-title {
    font-size: 2rem;
  }
  .solar-hero-lead {
    font-size: 0.95rem;
  }
  .solar-hero-badge {
    font-size: 0.72rem;
    padding: 8px 14px;
  }
  .solar-hero-ctas {
    flex-direction: column;
  }
  .btn-solar-primary,
  .btn-solar-outline {
    justify-content: center;
  }
  .scope-cards {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .scope-card {
    padding: 1.5rem 1rem;
  }
  .solar-scope-premium {
    padding: 3.5rem 0;
  }
  .solar-services-grid {
    padding: 4rem 0;
  }
  .service-card-content {
    padding: 2rem 1.5rem;
  }
  .service-card-content h3 {
    font-size: 1.2rem;
  }
  .service-card-visual {
    min-height: 160px;
  }
  .service-number {
    font-size: 2.5rem;
    right: 1rem;
    top: 1rem;
  }
  .solar-trust-premium {
    padding: 4rem 0;
  }
  .trust-premium-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .trust-card-premium {
    padding: 1.5rem;
  }
  .guidance-premium-card {
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
  }
  .solar-final-premium {
    padding: 4rem 0;
  }
  .final-premium-ctas {
    flex-direction: column;
    align-items: center;
  }
  .btn-final-primary,
  .btn-final-outline {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }
  .breadcrumb {
    font-size: 0.75rem;
  }
  .hero-feature {
    font-size: 0.8rem;
    padding: 7px 13px;
  }
}

@media (max-width: 480px) {
  .solar-hero-title {
    font-size: 1.75rem;
  }
  .scope-cards {
    grid-template-columns: 1fr 1fr;
  }
  .trust-premium-grid {
    grid-template-columns: 1fr;
  }
  .scope-card {
    padding: 1.25rem 1rem;
  }
  .services-grid-header {
    text-align: center;
  }
  .service-card-premium {
    margin-bottom: 1rem;
  }
}

/* ── Subpage Utility Classes ────────────────────────────────── */
.scope-cards-5col {
  grid-template-columns: repeat(5, 1fr);
}
.solar-services-grid-compact {
  padding-top: 2rem;
}
.solar-scope-white {
  background: #ffffff;
}
.solar-hero-lead-sm {
  font-size: 1rem;
  opacity: 0.85;
}
.scope-intro-mt {
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .scope-cards-5col {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .scope-cards-5col {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Fault Finding Comparison Cards ─────────────────────────── */
.fault-comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.fault-card {
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.fault-card-problem {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
  border-left: 4px solid #dc3545;
}

.fault-card-problem .fault-glow {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: rgba(220, 53, 69, 0.1);
  border-radius: 50%;
  filter: blur(30px);
}

.fault-card-solution {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-left: 4px solid var(--orange);
}

.fault-card-solution .fault-glow {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: rgba(242, 110, 33, 0.1);
  border-radius: 50%;
  filter: blur(30px);
}

.fault-card-content {
  position: relative;
  z-index: 1;
}

.fault-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.fault-card-problem .fault-icon-wrap {
  background: rgba(220, 53, 69, 0.15);
}
.fault-card-solution .fault-icon-wrap {
  background: rgba(242, 110, 33, 0.15);
}

.fault-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.fault-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fault-list li {
  display: flex;
  align-items: start;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #4a4a4a;
}

.fault-list li i {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.fault-message-box {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(242, 110, 33, 0.08) 0%,
    rgba(242, 110, 33, 0.03) 100%
  );
  border-radius: 12px;
  border: 1px solid rgba(242, 110, 33, 0.2);
}

.fault-message-box p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}
