
/* =============== TOKENS =============== */
:root {
  --ink-lv: #0b1220;
  --muted-lv: #6b7a8c;
  --white-lv: #ffffff;
  --cta-orange-lv: #0f766e;
  --brand-blue-lv: #234a85;
  --panel-border-lv: #e7edf5;
  --shadow-soft-lv: 0 12px 28px rgba(0, 0, 0, .10);
  --container-w-lv: 1200px;
  --radius-lv: 12px;

  /* overlap distance of the white card onto the hero image */
  --services-overlap: clamp(36px, 6vw, 72px);
}

/* =============== HERO / IMAGE STRIP =============== */
.section-services-lv-electrical-services{
  position: relative;
  color: var(--white-lv);
  /* room for heading row; bottom padding is small because the card will overlap */
  padding: clamp(28px, 5vw, 56px) 0 clamp(32px, 4vw, 48px);
  overflow: clip;

  /* set your background image here (no inline styles) */
  background-image: url("../images/home/card-land.png");
  background-size: cover;
  background-position: center right;
  /* give the band a stable minimum height without capping large screens */
  min-height: clamp(280px, 45vh, 520px);
}

.section-services-lv-electrical-services::before{
  content: "";
  position: absolute; inset: 0;
  /* dark-to-light gradient like your reference */
  background: linear-gradient(90deg, rgba(12,21,36,.92) 0%, rgba(12,21,36,.70) 45%, rgba(12,21,36,.20) 80%);
  pointer-events: none;
}

/* ===== Header Row ===== */
.services-head-lv-electrical-services{
  position: relative; z-index: 1;
  max-width: var(--container-w-lv);
  margin-inline: auto;
  padding: 0 clamp(16px, 3vw, 28px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 16px;
}

.eyebrow-lv-electrical-services{
  display: inline-block;
  color: #1dcabc;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 6px;
}

.title-lv-electrical-services{
  margin: 0;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.2;
}

.btn-orange-lv-electrical-services{
  align-self: start;
  background: var(--cta-orange-lv);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 14px;
  /* border-radius: 10px; */
  box-shadow: var(--shadow-soft-lv);
  transition: transform .2s ease, filter .2s ease, background .2s ease;
}
.btn-orange-lv-electrical-services:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
  background: var(--brand-blue-lv);
}

/* =============== OVERLAP SECTION (WHITE CARD) =============== */
/* This is your second <section>. It pulls upward by the overlap distance. */
.section-services-lv-electrical-services2{
  position: relative;
  margin-top: calc(-1 * var(--services-overlap));
  /* keep stacking context tidy */
  z-index: 2;
  margin-bottom: 2rem;
}

/* Wrapper that centers the card and adds side padding */
.services-card-lv-electrical-services{
  max-width: var(--container-w-lv);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 28px);
}

/* The white card */
.grid-lv-electrical-services{
  background: #fff;
  border: 1px solid var(--panel-border-lv);
  /* border-radius: 18px; */
  box-shadow: var(--shadow-soft-lv);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

/* Thin dividers between columns on desktop */
.grid-lv-electrical-services > .svc-item-lv-electrical-services:not(:last-child){
  border-right: 1px solid var(--panel-border-lv);
}

/* =============== SERVICE ITEM =============== */
.svc-item-lv-electrical-services{
  padding: clamp(18px, 3vw, 26px);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
}

.svc-icon-lv-electrical-services{
  width: 28px; height: 28px;
  display: grid; place-items: center;
  color: #1f2937;
}
.svc-icon-lv-electrical-services i{ font-size: 22px; }

.svc-title-lv-electrical-services{
  margin: 0;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 800;
  color: var(--ink-lv);
}
.svc-title-lv-electrical-services a{ color: inherit; text-decoration: none; }
.svc-title-lv-electrical-services a:hover{ text-decoration: underline; }

.svc-text-lv-electrical-services{
  margin: 0; color: var(--muted-lv); font-size: 14px;
}

/* .arrow-lv-electrical-services{ font-weight: 800; } */

/* =============== SCROLL REVEAL (optional) =============== */
.reveal-left-lv-electrical-services,
.reveal-right-lv-electrical-services,
.reveal-up-lv-electrical-services{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s cubic-bezier(.2,.65,.2,1),
              transform .7s cubic-bezier(.2,.65,.2,1);
  will-change: opacity, transform;
}
.reveal-left-lv-electrical-services{ transform: translateX(-28px); }
.reveal-right-lv-electrical-services{ transform: translateX(28px); }
.reveal-in-lv-electrical-services{ opacity: 1 !important; transform: translateX(0) translateY(0) !important; }

/* =============== RESPONSIVE =============== */
@media (max-width: 1024px){
  .services-head-lv-electrical-services{
    grid-template-columns: 1fr;
    row-gap: 12px;
  }
  .btn-orange-lv-electrical-services{ justify-self: start; }

  .grid-lv-electrical-services{
    grid-template-columns: 1fr;           /* stack cards */
    /* border-radius: 14px; */
  }
  .grid-lv-electrical-services > .svc-item-lv-electrical-services:not(:last-child){
    border-right: none;
    border-bottom: 1px solid var(--panel-border-lv);
  }
}

@media (max-width: 640px){
  /* a little less overlap on very small screens */
  :root{ --services-overlap: clamp(20px, 7vw, 40px); }

  .section-services-lv-electrical-services{
    padding-bottom: clamp(28px, 5vw, 40px);
    min-height: clamp(260px, 40vh, 420px);
    background-position: center;          /* center crop on small screens */
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .reveal-left-lv-electrical-services,
  .reveal-right-lv-electrical-services,
  .reveal-up-lv-electrical-services{
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* Compact CTA button */
.svc-cta-lv-electrical-services{
  position: relative;
  align-self: end;
  justify-self: start;
  display: inline-flex;          /* compact, not a big tile */
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  min-height: 40px;
  width: auto;                   /* <-- no fixed 250px */
  background: #fff;
  color: var(--brand-blue-lv);
  border: 2px solid var(--brand-blue-lv);
  cursor: pointer;
  overflow: hidden;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  box-sizing: border-box;
}


/* default arrow */
.arrow-lv-electrical-services{
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  transition: transform .25s ease;
}

/* hidden label that slides in on hover */
.svc-cta-lv-electrical-services::after{
  /* content: "Learn More"; */
  white-space: nowrap;           /* keep on one line */
  font-weight: 800;
  font-size: 10px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .25s ease, transform .25s ease;
}

/* hover: turn blue and show label */
.svc-cta-lv-electrical-services:hover{
  background: var(--brand-blue-lv);
  color: #fff;
  border-color: var(--brand-blue-lv);
}
.svc-cta-lv-electrical-services:hover .arrow-lv-electrical-services{
  transform: translateX(4px);
}
.svc-cta-lv-electrical-services:hover::after{
  opacity: 1;
  transform: translateX(0);
}

/* keyboard focus */
.svc-cta-lv-electrical-services:focus-visible{
  outline: 3px solid #ffb26b;
  outline-offset: 2px;
}

/* optional: make it full-width on very small screens */
@media (max-width: 560px){
  .svc-cta-lv-electrical-services{
    width: 100%;
    justify-content: center;
  }
}

/* ============= REVIEWS LINE ============= */
.reviews-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 20px;
  /* margin: 20px; */
  color: var(--muted-solar);
}

.reviews-brand {
  font-weight: 700;
  color: var(--ink-solar);
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--white-solar);
  box-shadow: var(--shadow-soft-solar);
}

.stars-svg {
  display: block;
  fill: var(--teal-700-solar);
  filter: drop-shadow(0 2px 4px rgba(45, 45, 45, 0.336));
}

.reviews-count {
  white-space: nowrap;

}

/* ============= LOGO ROW ============= */
.logo-row {
  /* margin-top: 24px; */
  margin-left: 12px;
  display: flex;
  justify-content: left;
  align-items: left;
  gap: clamp(16px, 2vw, 18px);
}

.logo {
  height: 30px;
  width: auto;
  /* opacity: 0.75; */
  /* filter: grayscale(0.2); */
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.logo:hover {
  /* opacity: 1; */
  transform: scale(1.05);
}

/* ============= RESPONSIVE ============= */
@media (min-width: 1024px) {
  .reviews-line {
    gap: 12px;
    font-size: 15px;
  }
}

 .reviews-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", sans-serif;
    color: #222;
    font-size: 1rem;
  }

  .stars-svg {
    fill: #fbbf24; /* Gold color */
    stroke: #f59e0b;
    stroke-width: 0.5;
  }

  .reviews-count {
    font-weight: 600;
  }

  :root{
  --cmm-ink-cmms-all-features:#0b2940;      /* deep text */
  --cmm-muted-cmms-all-features:#51606f;    /* sub text */
  --cmm-bg-cmms-all-features:#f3f8fc;       /* soft section bg */
  --cmm-card-cmms-all-features:#ffffff;
  --cmm-card-hover-cmms-all-features:#e9f3ff;
  --cmm-brand-cmms-all-features:#1d5da8;    /* title blue */
  --cmm-accent-cmms-all-features:#0ea5e9;   /* eyebrow */
  --cmm-success-1-cmms-all-features:#7cf7e2;/* icon gradient */
  --cmm-success-2-cmms-all-features:#34d399;
  --cmm-ring-cmms-all-features:rgba(29,93,168,.18);
}

.wrap-cmms-all-features{
  background:var(--cmm-bg-cmms-all-features);
  padding: clamp(48px, 7vw, 92px) 18px;
}

.inner-cmms-all-features{
  max-width: 1200px;
  margin: 0 auto;
  text-align:center;
}

.eyebrow-cmms-all-features{
  display:inline-block;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--cmm-accent-cmms-all-features);
  margin:0 0 10px;
}

.title-cmms-all-features{
  margin:0;
  color:var(--cmm-ink-cmms-all-features);
  font-weight:800;
  line-height:1.1;
  font-size: clamp(28px, 4.5vw, 54px);
}

.subtitle-cmms-all-features{
  margin: 14px auto 36px;
  color:var(--cmm-muted-cmms-all-features);
  font-size: clamp(15px, 2.1vw, 20px);
  max-width: 980px;
}

.grid-cmms-all-features{
  display:grid;
  gap: clamp(16px, 2vw, 24px);
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px){
  .grid-cmms-all-features{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px){
  .grid-cmms-all-features{ grid-template-columns: 1fr; }
}

/* Cards */
.card-cmms-all-features{
  position:relative;
  display:flex;
  align-items:center;
  gap:18px;
  background:var(--cmm-card-cmms-all-features);
  padding: clamp(16px, 2vw, 22px);
  border-radius: 16px;
  text-decoration:none;
  color:#1f3c6e;
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight:600;
  box-shadow: 0 6px 20px rgba(13,38,76,.05);
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, color .28s ease;
  border:1px solid rgba(20,52,94,.06);
}

.card-cmms-all-features:focus{
  outline: none;
  box-shadow: 0 0 0 4px var(--cmm-ring-cmms-all-features);
}

.card-cmms-all-features:hover{
  background:var(--cmm-card-hover-cmms-all-features);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(13,38,76,.10);
}

.icon-cmms-all-features{
  width:48px; height:48px; min-width:48px;
  display:grid; place-items:center;
  border-radius:50%;
  background: radial-gradient(90% 90% at 20% 20%, var(--cmm-success-2-cmms-all-features), var(--cmm-success-1-cmms-all-features));
  box-shadow: 0 6px 14px rgba(52,211,153,.35);
}

.text-cmms-all-features{
  line-height:1.25;
}

/* Reveal animation */
.reveal-cmms-all-features{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: transform, opacity;
}
.reveal-cmms-all-features.is-visible{
  opacity:1;
  transform: translateY(0);
}
/* ============= CMMS SECTION (LEFT-ALIGNED) ============= */
.cmms-section{
  max-width: var(--container-w-solar, 1200px);
  margin: 0 auto;
  padding: 48px 20px 64px;
}

.cmms-header{
  display: grid;
  gap: 10px;
  justify-items: center;            /* left align everything */
  text-align: center;                /* ensure text is left */
}

.cmms-eyebrow{
   display: inline-block;
  color:  #0f766e;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 6px;
}

.cmms-title{
      max-width: var(--container-w-solar, 1000px);
 font-size: clamp(28px, 3vw, 48px);
  line-height: 1.1;
  font-weight: 800;
  color: var(--ink-solar, #0b1220);
  margin: 0;
}

.cmms-sub{
  max-width: 56ch;
  color: var(--muted-solar, #6b7a8c);
  font-size: 18px;
}

/* Grid of feature cards */
.cmms-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 28px;
}

@media (max-width: 960px){
  .cmms-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px){
  .cmms-grid{ grid-template-columns: 1fr; }
}

/* Card */
.cmms-card{
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(15,27,42,.08);
  border-radius: var(--radius-xxl-solar, 22px);
  box-shadow: var(--shadow-soft-solar, 0 10px 30px rgba(0,0,0,.08));
  padding: 18px 18px;
}

/* Professional tick icon (no neon glow) */
.cmms-icon{
  width: 36px; height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: linear-gradient(180deg,#f1f5f9,#e2e8f0);
  display: grid; place-items: center;
  border: 1px solid rgba(2,6,23,.08);
}

.cmms-icon i{
  font-size: 20px;
  color: var(--teal-700-solar, #0f766e);
}

/* Title inside card */
.cmms-card h4{
  font-size: 18px; line-height: 1.2;
  margin: 0; color: #0f1b2a;
}
.cmms-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(15,27,42,.08);
  border-radius: var(--radius-xxl-solar, 22px);
  box-shadow: var(--shadow-soft-solar, 0 10px 30px rgba(0,0,0,.08));
  padding: 18px 18px;
  text-decoration: none;               /* make it link-safe */
  color: #0f1b2a;
  transition: all 0.25s ease;
}

/* Hover effect for entire card */
.cmms-card:hover {
  background: var(--teal-700-solar, #0f766e);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}

/* Change icon color on hover */
.cmms-card:hover .cmms-icon {
  background: #fff;
  border-color: transparent;
}

.cmms-card:hover .cmms-icon i {
  color: var(--teal-700-solar, #0f766e);
}

/* Smooth color transition for text */
.cmms-card h4 {
  font-size: 18px;
  margin: 0;
  transition: color 0.25s ease;
}

.cmms-card:hover h4 {
  color: #fff;
}

/* Optional: add slight shadow pulse on hover */
.cmms-card:active {
  transform: scale(0.98);
}

/* Ensure links don’t underline on hover */
.cmms-card:focus, .cmms-card:hover, .cmms-card:visited {
  text-decoration: none;
  outline: none;
}

/* ================== TYPES (tabs) ================== */
.section-types-solar-system-types{
  background: var(--bg-solar);
  padding: clamp(28px, 1vw, 36px) 0;
}

.kicker-solar-system-types{
  color: var(--teal-700-solar);
  font-weight: 800;
  letter-spacing: .4px;
  margin: 0 0 6px;
}
.title-solar-system-types{
  margin: 0 0 clamp(16px, 3.6vw, 26px);
  color: var(--ink-solar);
  font-weight: 800;
  font-size: clamp(22px, 3.6vw, 34px);
}

/* Tabs */
.tabs-solar-system-types{
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: clamp(16px, 1vw, 24px);
}
.tab-btn-solar-system-types{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 2px solid var(--cyan-800-solar);
  background: transparent;
  color: var(--cyan-800-solar);
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s;
}
.tab-btn-solar-system-types i{ font-size: 18px; }
.tab-btn-solar-system-types:hover{ transform: translateY(-1px); }
.tab-btn-solar-system-types.is-active-solar-system-types{
  background: linear-gradient(135deg, var(--teal-700-solar), var(--cyan-800-solar));
  color: #fff; border-color: transparent;
}

/* Panels */
.panel-solar-system-types{ animation: fadeIn-solar-system-types .45s ease both; }
@keyframes fadeIn-solar-system-types{ from{opacity:0; transform: translateY(8px);} to{opacity:1; transform:none;} }

.panel-grid-solar-system-types{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 4vw, 40px);
  align-items: center;
  background: #fff;
  border: 1px solid rgba(21,94,117,.18);
  border-radius: 16px;
  padding: clamp(16px, 3.6vw, 26px);
  box-shadow: var(--shadow-soft-solar);
  margin-bottom: clamp(16px, 1vw, 24px);
}

.panel-text-solar-system-types h3{
  margin: 0 0 8px; font-size: clamp(18px, 2.6vw, 22px);
  color: var(--ink-solar); font-weight: 800;
}
.panel-text-solar-system-types p{
  margin: 0 0 8px; color: var(--muted-solar);
}

.bullets-solar-system-types{
  list-style: none; padding: 0; margin: 10px 0 0;
  display: grid; gap: 8px;
}
.bullets-solar-system-types li{
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--muted-solar); line-height: 1.65;
  font-size: clamp(14px, 2vw, 16px);
}
.bullets-solar-system-types i{ color: var(--teal-700-solar); margin-top: 2px; }

.panel-media-solar-system-types{
  margin: 0;
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(21,94,117,.18);
}
.panel-media-solar-system-types img{
  display: block; width: 100%; height: 100%; object-fit: cover;
}

/* Feature chips */
.feature-grid-solar-system-types{
  display: flex; flex-wrap: wrap; gap: 10px;
}
.feature-chip-solar-system-types{
  display: inline-flex; gap: 8px; align-items: center;
  padding: 8px 12px; border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(21,94,117,.18);
  color: var(--ink-solar);
  font-weight: 600; font-size: 13.5px;
}
.feature-chip-solar-system-types i{ color: var(--teal-700-solar); }

/* Reveal directions for this section */
.reveal-left-solar-system-types,
.reveal-right-solar-system-types,
.reveal-top-solar-system-types,
.reveal-bottom-solar-system-types{
  opacity: 0;
  transform: translate3d(0,0,0);
  transition: opacity 1.05s cubic-bezier(.2,.65,.2,1),
              transform 1.05s cubic-bezier(.2,.65,.2,1);
}
.reveal-left-solar-system-types{  transform: translateX(-26px); }
.reveal-right-solar-system-types{ transform: translateX( 26px); }
.reveal-top-solar-system-types{   transform: translateY(-26px); }
.reveal-bottom-solar-system-types{transform: translateY( 26px); }
.in-view-solar-system.reveal-left-solar-system-types,
.in-view-solar-system.reveal-right-solar-system-types,
.in-view-solar-system.reveal-top-solar-system-types,
.in-view-solar-system.reveal-bottom-solar-system-types{
  opacity: 1; transform: none;
}

/* Responsive */
@media (max-width: 1024px){
  .panel-grid-solar-system-types{ grid-template-columns: 1fr; }
}


/* ============= THEME TOKENS ============= */
:root{
  --teal-700-solar: #0f766e;
  --cyan-800-solar: #155e75;
  --ink-solar: #0b1220;
  --muted-solar: #6b7a8c;
  --bg-solar: #f4f7fb;
  --card-solar: #0f1b2a;
  --white-solar: #ffffff;
  --radius-xxl-solar: 22px;
  --shadow-soft-solar: 0 10px 30px rgba(0,0,0,.08);
  --container-w-solar: 1200px;
  --header-h-solar: 72px; /* for scroll-margin if needed */
}

section[id]{ scroll-margin-top: var(--header-h-solar); }

/* ============= BASE LAYOUT ============= */
.container-solar-system{
  width: min(92vw, var(--container-w-solar));
  margin-inline: auto;
}

.section-hero-solar-system{
  position: relative;
  background: var(--bg-solar);
  padding-top: 3vw;
  padding: clamp(48px, .2vw, 80px) 0 0;
}

.grid-hero-solar-system{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.hero-left-solar-system{}
.hero-right-solar-system{
  justify-self: end;
}

.hero-title-solar-system{
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: .2px;
  color: var(--ink-solar);
  margin: 0 0 14px;
  font-weight: 800;
}
.accent-solar-system{
  color: var(--teal-700-solar);
}

.hero-sub-solar-system{
  color: var(--muted-solar);
  margin: 0 0 26px;
  font-size: clamp(15px, 1.8vw, 18px);
}

.hero-cta-solar-system{
  display: flex;
  gap: 12px;
}

.btn-primary-solar-system,
.btn-ghost-solar-system{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.btn-primary-solar-system{
  background: linear-gradient(135deg, var(--teal-700-solar), var(--cyan-800-solar));
  color: var(--white-solar);
  box-shadow: var(--shadow-soft-solar);
}
.btn-primary-solar-system:hover{ transform: translateY(-2px); }

.btn-ghost-solar-system{
  background: transparent;
  border-color: var(--cyan-800-solar);
  color: var(--cyan-800-solar);
}
.btn-ghost-solar-system:hover{
  background: var(--cyan-800-solar);
  color: var(--white-solar);
}

.hero-img-solar-system{
    width: min(520px, 40vw);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(6, 18, 32, .18);
  display: block;
}
.hero-band-solar-system{
    display: none; 
  position: absolute;
  left: 50%;
  transform: translateX(10%); /* nudged to sit under the image like the reference */
  bottom: -42px;
  width: min(520px, 40vw);
  height: 100px;
  background: var(--card-solar);
  border-bottom-left-radius: var(--radius-xxl-solar);
  border-bottom-right-radius: var(--radius-xxl-solar);
  z-index: 0;
}
.hero-right-solar-system,
.hero-left-solar-system { position: relative; z-index: 1; }

/* Trusted section */
.section-trusted-solar-system{
   background: #0f1b2a;         /* deep slate like your screenshot */
  color: #fff;
  padding: clamp(56px, 8vw, 84px) 0;
  margin-top: clamp(28px, 6vw, 60px);
}

.trusted-heading-solar-system{
  text-align: center;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  letter-spacing: .2px;
  margin: 0 0 clamp(18px, 3vw, 24px);
}

/* Logo carousel */
.logos-wrap-solar-system{
  overflow: hidden;
  position: relative;
  padding: 6px 0;             /* subtle breathing space */
  background: transparent;    /* no panel look */
  border-radius: 0;
}
.logos-track-solar-system{
   display: inline-flex;
  align-items: center;
  gap: clamp(28px, 4vw, 46px);
  padding-inline: 12px;
  animation: marquee-solar-system 28s linear infinite;
  will-change: transform;
}
.logos-wrap-solar-system:hover .logos-track-solar-system{
  animation-play-state: paused;
}

.logo-item-solar-system{
   height: clamp(22px, 3.2vw, 34px);
  width: auto;
  opacity: .9;
  filter: invert(1) grayscale(1) contrast(1.15);
  transition: opacity .2s ease, transform .2s ease;
}
.logo-item-solar-system:hover{
  opacity: 1;
  transform: translateY(-2px);
}

@keyframes marquee-solar-system{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }

}


/* --- DOTS (pagination) --- */
.dots-solar-system{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(10px, 2vw, 14px);
}
.dot-solar-system{
  width: 6px; height: 6px;
  background: rgba(255,255,255,.35);
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease;
}
.dot-solar-system.is-active-solar-system{
  background: rgba(255,255,255,.85);
  transform: scale(1.15);
}


/* ================== TYPES (tabs) ================== */
.section-types-solar-system-types{
  background: var(--bg-solar);
  padding: clamp(28px, 1vw, 36px) 0;
}

.kicker-solar-system-types{
  color: var(--teal-700-solar);
  font-weight: 800;
  letter-spacing: .4px;
  margin: 0 0 6px;
}
.title-solar-system-types{
  margin: 0 0 clamp(16px, 3.6vw, 26px);
  color: var(--ink-solar);
  font-weight: 800;
  font-size: clamp(22px, 3.6vw, 34px);
}

/* Tabs */
.tabs-solar-system-types{
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: clamp(16px, 1vw, 24px);
}
.tab-btn-solar-system-types{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 2px solid var(--cyan-800-solar);
  background: transparent;
  color: var(--cyan-800-solar);
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s;
}
.tab-btn-solar-system-types i{ font-size: 18px; }
.tab-btn-solar-system-types:hover{ transform: translateY(-1px); }
.tab-btn-solar-system-types.is-active-solar-system-types{
  background: linear-gradient(135deg, var(--teal-700-solar), var(--cyan-800-solar));
  color: #fff; border-color: transparent;
}

/* Panels */
.panel-solar-system-types{ animation: fadeIn-solar-system-types .45s ease both; }
@keyframes fadeIn-solar-system-types{ from{opacity:0; transform: translateY(8px);} to{opacity:1; transform:none;} }

.panel-grid-solar-system-types{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 4vw, 40px);
  align-items: center;
  background: #fff;
  border: 1px solid rgba(21,94,117,.18);
  border-radius: 16px;
  padding: clamp(16px, 3.6vw, 26px);
  box-shadow: var(--shadow-soft-solar);
  margin-bottom: clamp(16px, 1vw, 24px);
}

.panel-text-solar-system-types h3{
  margin: 0 0 8px; font-size: clamp(18px, 2.6vw, 22px);
  color: var(--ink-solar); font-weight: 800;
}
.panel-text-solar-system-types p{
  margin: 0 0 8px; color: var(--muted-solar);
}

.bullets-solar-system-types{
  list-style: none; padding: 0; margin: 10px 0 0;
  display: grid; gap: 8px;
}
.bullets-solar-system-types li{
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--muted-solar); line-height: 1.65;
  font-size: clamp(14px, 2vw, 16px);
}
.bullets-solar-system-types i{ color: var(--teal-700-solar); margin-top: 2px; }

.panel-media-solar-system-types{
  margin: 0;
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(21,94,117,.18);
}
.panel-media-solar-system-types img{
  display: block; width: 100%; height: 100%; object-fit: cover;
}

/* Feature chips */
.feature-grid-solar-system-types{
  display: flex; flex-wrap: wrap; gap: 10px;
}
.feature-chip-solar-system-types{
  display: inline-flex; gap: 8px; align-items: center;
  padding: 8px 12px; border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(21,94,117,.18);
  color: var(--ink-solar);
  font-weight: 600; font-size: 13.5px;
}
.feature-chip-solar-system-types i{ color: var(--teal-700-solar); }

/* Reveal directions for this section */
.reveal-left-solar-system-types,
.reveal-right-solar-system-types,
.reveal-top-solar-system-types,
.reveal-bottom-solar-system-types{
  opacity: 0;
  transform: translate3d(0,0,0);
  transition: opacity 1.05s cubic-bezier(.2,.65,.2,1),
              transform 1.05s cubic-bezier(.2,.65,.2,1);
}
.reveal-left-solar-system-types{  transform: translateX(-26px); }
.reveal-right-solar-system-types{ transform: translateX( 26px); }
.reveal-top-solar-system-types{   transform: translateY(-26px); }
.reveal-bottom-solar-system-types{transform: translateY( 26px); }
.in-view-solar-system.reveal-left-solar-system-types,
.in-view-solar-system.reveal-right-solar-system-types,
.in-view-solar-system.reveal-top-solar-system-types,
.in-view-solar-system.reveal-bottom-solar-system-types{
  opacity: 1; transform: none;
}

/* Responsive */
@media (max-width: 1024px){
  .panel-grid-solar-system-types{ grid-template-columns: 1fr; }
}



/* ===========================
   STEEL STRIP — blur-from-image version
   =========================== */

:root {
    --or:  #0f766e;
    --or-2:  #155e75;
    --ink: #0f141b;
    --ink-2: #f7fafc;
    --ring: rgba(255, 255, 255, .14);
    --shadow: 0 18px 60px rgba(2, 8, 23, .28);
}

/* Section + header */
.steel-strip {
    background: #fff;
    color: var(--ink);
    padding: clamp(18px, 3vw, 26px) 0 clamp(38px, 6vw, 56px);
}

.steel-strip__head {
    width: min(1480px, 92%);
    margin: 0 auto clamp(14px, 2.2vw, 20px);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.steel-strip__kicker {
    margin: 0 0 8px;
    font-weight: 800;
    letter-spacing: .3px;
    color:  #155e75;
}

.steel-strip__title {
    margin: 0;
    line-height: 1.15;
    font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.steel-strip__viewall {
    display: inline-flex;
    gap: .5rem;
    align-items: center;
    white-space: nowrap;
    background: var(--or);
    color: #131313;
    font-weight: 800;
    border-radius: 999px;
    padding: .6rem .9rem;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 8px 22px rgba(255, 106, 42, .25);
    transition: transform .28s cubic-bezier(.2, .7, .2, 1), filter .28s ease, border-color .28s ease;
}

.steel-strip__viewall:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
}

/* ---------- Background image area ---------- */
.steel-strip__visual {
    position: relative;
    isolation: isolate;
    width: min(1480px, 96%);
    margin-inline: auto;
    min-height: 600px;
    /* border-radius: 14px; */
    overflow: hidden;
    box-shadow: var(--shadow);

    /* Your real image path here */
    background-image: url('../images/home/main.jpg');
    background-size: cover;
    background-position: center;
}

/* Top stays sharp; bottom gets the same image blurred softly */
.steel-strip__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: inherit;
    background-size: inherit;
    background-position: inherit;
    filter: blur(10px) saturate(115%);
    transform: scale(1.04);
    /* avoid blur-edge clipping */
    opacity: 1;

    /* Show blur only on lower portion using a mask */
    -webkit-mask-image: linear-gradient(to bottom, transparent 42%, rgba(0, 0, 0, .9) 70%, #000 100%);
    mask-image: linear-gradient(to bottom, transparent 42%, rgba(0, 0, 0, .9) 70%, #000 100%);
}

/* Slight dark tint on the very bottom for contrast (kept subtle) */
.steel-strip__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, .38) 72%, rgba(0, 0, 0, .62) 100%);
}

/* ---------- Tiles bar ---------- */
.steel-strip__grid {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    /* border-radius: 14px; */
    padding: 14px;

    /* glassy panel over blurred zone */
    background: rgba(20, 24, 30, .58);
    backdrop-filter: blur(4px) saturate(120%);
    border: 1px solid var(--ring);
}

/* Cards */
.steel-tile {
    background: rgba(21, 26, 35, 0.76);
    border: 1px solid var(--ring);
    /* border-radius: 12px; */
    color: var(--ink-2);
    padding: 14px;
    min-height: 154px;
    display: flex;
    flex-direction: column;
    gap: 10px;

    /* soft motion */
    transition:
        transform .35s cubic-bezier(.2, .7, .2, 1),
        background-color .35s ease,
        border-color .35s ease,
        box-shadow .35s ease,
        opacity .35s ease;
}

.steel-tile:hover {
    transform: translateY(-3px);
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 10px 26px rgba(2, 8, 23, .26);
}

.steel-tile.is-active {
    border-color: rgba(3, 108, 121, 0.65);
    box-shadow: 0 10px 28px rgba(42, 227, 255, 0.22);
}

.steel-tile__icon {
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 900;
    color: #1a120c;
    background: linear-gradient(180deg, var(--or), var(--or-2));
    box-shadow: 0 10px 28px rgba(42, 227, 255, 0.22);
}

.steel-tile__title {
    margin: 2px 0 4px;
    font-weight: 900;
    letter-spacing: .2px;
    color: #fff;
    font-size: clamp(.98rem, 1.45vw, 1.08rem);
}

.steel-tile__list {
    margin: 0 0 2px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-weight: 600;
}

.steel-tile__list li {
    position: relative;
    padding-left: 16px;
    opacity: .95;
}

.steel-tile__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(1px);
    font-size: .86em;
    color: var(--or);
}

.steel-tile__link {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #ffe7dd;
    text-decoration: none;
    font-weight: 800;
    font-size: .86rem;
    opacity: .95;
    transition: opacity .28s ease, transform .28s ease;
}

.steel-tile__link::after {
    content: "›";
    transform: translateY(1px);
}

.steel-tile__link:hover {
    opacity: 1;
    transform: translateY(-1px);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .steel-strip__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        bottom: 12px;
    }
}

@media (max-width: 560px) {
    .steel-strip__head {
        flex-direction: column;
        gap: 10px;
    }

    .steel-strip__grid {
        grid-template-columns: 1fr;
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 10px;
    }

    .steel-tile {
        min-height: unset;
    }
}

/* ---------- Reveal on scroll (soft) ---------- */
[class*="reveal-"] {
    opacity: 0;
    transform: translateY(16px);
}

.is-visible {
    opacity: 1;
    transform: none;
    transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .2, 1);
}

.reveal-left {
    transform: translateX(-16px);
}

.reveal-right {
    transform: translateX(16px);
}
/* ============= FAQ SECTION ============= */
.faq-section {
  max-width: var(--container-w-solar);
  margin: 0 auto;
  padding: 80px 20px;
  /* background: var(--bg-solar); */
}

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

.faq-subtitle {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan-800-solar);
  margin-bottom: 8px;
}

.faq-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--ink-solar);
  margin: 0;
}

.faq-desc {
  color: var(--muted-solar);
  font-size: 16px;
  margin-top: 10px;
  max-width: 600px;
  margin-inline: auto;
}

.faq-grid {
  display: grid;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

/* ============= FAQ CARD (Accordion) ============= */
.faq-card {
  background: var(--white-solar);
  border-radius: var(--radius-xxl-solar);
  box-shadow: var(--shadow-soft-solar);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

/* Header part */
.faq-card h4 {
  position: relative;
  margin: 0;
  padding: 20px 60px 20px 24px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-solar);
  cursor: pointer;
  transition: color 0.3s ease;
}

/* + / - icon */
.faq-card h4::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 600;
  color: var(--teal-700-solar);
  transition: transform 0.3s ease, color 0.3s ease;
}

/* When active */
.faq-card.active h4 {
  color: var(--teal-700-solar);
}

.faq-card.active h4::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
  color: var(--teal-700-solar);
}

/* Answer text */
.faq-card p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 24px;
  color: var(--muted-solar);
  font-size: 15px;
  line-height: 1.6;
  transition: all 0.4s ease;
}

/* Expanded answer */
.faq-card.active p {
  max-height: 300px;
  opacity: 1;
  padding: 0 24px 20px;
}

/* Hover effect */
.faq-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
/* ============= Testimonials (uses your solar tokens) ============= */
.testimonials-solar{
  max-width: var(--container-w-solar);
  margin: 0 auto;
  padding: 56px 20px;
  /* background: linear-gradient(180deg, var(--bg-solar) 0%, #fafcff 100%); */
  overflow: hidden;
}

.testimonials-head{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  /* margin-bottom: 24px; */
}

.testimonials-kicker{
  color: var(--teal-700-solar);
  font-weight: 600;
  margin: 0 0 8px 0;
}

.testimonials-head h2{
  grid-column: 1 / -1;
  font-size: clamp(24px, 1vw, 36px);
  line-height: 1.2;
  color: var(--ink-solar);
  margin: 0 0 8px 0;
}

.testimonials-arrows{
  grid-column: 2 / 3;
  display: flex;
  gap: 12px;
  margin-top: -8px;
}

.t-arrow{
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--white-solar);
  box-shadow: var(--shadow-soft-solar);
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}
.t-arrow i{ font-size: 20px; color: var(--ink-solar); }
.t-arrow:hover{ transform: translateY(-2px); border-color: rgba(0,0,0,0.12); }
.t-arrow:active{ transform: translateY(0); }

/* Viewport + Track */
.t-viewport{
  overflow: hidden;
}
.t-track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 24px) / 2); /* 2 cards visible on desktop */
  gap: 24px;
  will-change: transform;
  transform: translateX(0);
}

/* Cards */
.t-card-solar{
  /* background: var(--white-solar); */
  border-radius: var(--radius-xxl-solar);
  /* box-shadow: var(--shadow-soft-solar); */
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.t-card-solar:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
  border-color: rgba(0,0,0,0.10);
}

.t-card-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.t-author{
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-name{
  margin: 0; font-size: 16px; color: var(--ink-solar);
}
.t-role{
  margin: 2px 0 0; font-size: 13px; color: var(--muted-solar);
}
.t-brand{
  height: 28px; width: auto; opacity: .9;
}

.t-quote{
  color: var(--ink-solar);
  font-size: 15px;
  line-height: 1.7;
  margin: 8px 0 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding-bottom: 14px;
}

.t-card-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.t-stars i{
  font-size: 18px;
  color: var(--teal-700-solar);
  margin-right: 4px;
}
.t-quote-mark{
  font-size: 22px;
  color: rgba(0,0,0,0.18);
}

/* Mobile: 1 card visible */
@media (max-width: 900px){
  .testimonials-head{
    grid-template-columns: 1fr;
  }
  .testimonials-arrows{
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
  .t-track{
    grid-auto-columns: 100%; /* 1 card visible */
  }
}
/* ============= Testimonials (uses your solar tokens) ============= */
.testimonials-solar{
  max-width: var(--container-w-solar);
  margin: 0 auto;
  padding: 56px 20px;
  /* background: linear-gradient(180deg, var(--bg-solar) 0%, #fafcff 100%); */
  overflow: hidden;
}

.testimonials-head{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  margin-bottom: 24px;
}

.testimonials-kicker{
  color: var(--teal-700-solar);
  font-weight: 600;
  margin: 0 0 8px 0;
}

.testimonials-head h2{
  grid-column: 1 / -1;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.2;
  color: var(--ink-solar);
  margin: 0 0 8px 0;
}

.testimonials-arrows{
  grid-column: 2 / 3;
  display: flex;
  gap: 12px;
  margin-top: -8px;
}

.t-arrow{
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--white-solar);
  box-shadow: var(--shadow-soft-solar);
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}
.t-arrow i{ font-size: 20px; color: var(--ink-solar); }
.t-arrow:hover{ transform: translateY(-2px); border-color: rgba(0,0,0,0.12); }
.t-arrow:active{ transform: translateY(0); }

/* Viewport + Track */
.t-viewport{
  overflow: hidden;
}
.t-track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 24px) / 2); /* 2 cards visible on desktop */
  gap: 24px;
  will-change: transform;
  transform: translateX(0);
}

/* Cards */
.t-card-solar{
  /* background: var(--white-solar); */
  border-radius: var(--radius-xxl-solar);
  /* box-shadow: var(--shadow-soft-solar); */
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.t-card-solar:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
  border-color: rgba(0,0,0,0.10);
}

.t-card-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.t-author{
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-name{
  margin: 0; font-size: 16px; color: var(--ink-solar);
}
.t-role{
  margin: 2px 0 0; font-size: 13px; color: var(--muted-solar);
}
.t-brand{
  height: 28px; width: auto; opacity: .9;
}

.t-quote{
  color: var(--ink-solar);
  font-size: 15px;
  line-height: 1.7;
  margin: 8px 0 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding-bottom: 14px;
}

.t-card-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.t-stars i{
  font-size: 18px;
  color: var(--teal-700-solar);
  margin-right: 4px;
}
.t-quote-mark{
  font-size: 22px;
  color: rgba(0,0,0,0.18);
}

/* Mobile: 1 card visible */
@media (max-width: 900px){
  .testimonials-head{
    grid-template-columns: 1fr;
  }
  .testimonials-arrows{
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
  .t-track{
    grid-auto-columns: 100%; /* 1 card visible */
  }
}
/* ============= TESTIMONIAL IMAGE UPDATES ============= */

/* Avatar / logo container */
.t-avatar {
  width: 140px;              
  height: auto;             /* keep square */
  object-fit: contain;       /* ensures full logo visibility without cropping */
  


  /* box-shadow: 0 4px 10px rgba(0,0,0,0.08); */
  /* padding: 8px;             */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover / focus effect */
.t-avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .t-avatar {
    width: 80px;
    height: 80px;
    padding: 6px;
  }
}
