/* ============================================================
   SUBPAGE.CSS — Self-contained stylesheet for inner pages
   Hybrid Solar Group
   ------------------------------------------------------------
   This file is STANDALONE. Inner pages link this file only —
   they do NOT link css/style.css or css/responsive.css.

   PART 1  Base system   (merged from css/style.css)
   PART 2  Base responsive (merged from css/responsive.css)
   PART 3  Inner-page styles (.rs-*) — unique to this file

   NOTE: Parts 1 and 2 are copies. If css/style.css or
   css/responsive.css change for the homepage, mirror the
   change here too, or the two will drift apart.
   ============================================================ */

/* ============================================================
   PART 1 — BASE SYSTEM (from css/style.css)
   ============================================================ */

/* ============================================================
   HYBRID SOLAR GROUP — Main Stylesheet
   Premium ThemeForest-Quality Solar Website
   ============================================================ */

/* -------- CSS VARIABLES -------- */
:root {
  --primary:       #133865;
  --primary-dark:  #0d2748;
  --primary-light: #1e4f8c;
  --secondary:     #D4AF37;
  --secondary-dark:#b8962d;
  --accent:        #60A5FA;
  --bg:            #FAF9F6;
  --bg-alt:        #F0EDE8;
  --text:          #2C2C2C;
  --text-muted:    #6B7280;
  --white:         #ffffff;
  --border:        rgba(19,56,101,0.10);
  --shadow-sm:     0 2px 12px rgba(19,56,101,0.08);
  --shadow-md:     0 8px 32px rgba(19,56,101,0.12);
  --shadow-lg:     0 20px 60px rgba(19,56,101,0.16);
  --shadow-xl:     0 32px 80px rgba(19,56,101,0.20);
  --radius-sm:     8px;
  --radius:        16px;
  --radius-lg:     24px;
  --radius-xl:     32px;
  --trans:         0.35s cubic-bezier(0.4,0,0.2,1);
  --trans-fast:    0.2s cubic-bezier(0.4,0,0.2,1);
}

/* -------- RESET & BASE -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
button { border: none; background: none; cursor: pointer; }
input, select, textarea { outline: none; font-family: 'Inter', sans-serif; }

/* -------- TYPOGRAPHY -------- */
h1,h2,h3,h4,h5,h6 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.2; }

/* -------- SECTION SHARED -------- */
.sec-pad { padding: 96px 0; }
.sec-alt { background: var(--bg-alt); }

.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
}
.sec-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}
.sec-eyebrow.light { color: var(--accent); }
.sec-eyebrow.light::before { background: var(--accent); }

.sec-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 20px;
}
.sec-title.light { color: var(--white); }

.sec-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 16px;
  line-height: 1.7;
}

.sec-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.sec-text.light { color: rgba(255,255,255,0.80); }

.sec-header { margin-bottom: 56px; }

/* -------- BUTTONS -------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  transition: var(--trans);
  box-shadow: 0 8px 24px rgba(19,56,101,0.30);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(19,56,101,0.40);
  color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  transition: var(--trans);
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* -------- GLASS CARDS -------- */
.glass-card {
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.60);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.glass-card-dark {
 
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  background: rgb(95 119 151 / 78%);
}

/* -------- MAGNETIC BUTTON -------- */
.mag-btn { position: relative; overflow: hidden; }

/* ============================================================
   PAGE LOADER
   ============================================================ */
.pg-loader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.pg-loader.hide { opacity: 0; visibility: hidden; }
.pg-loader__inner { text-align: center; }
.pg-loader__logo { width: 160px; margin: 0 auto 32px; border-radius: 12px; }
.pg-loader__bar {
  width: 220px;
  height: 3px;
  background: rgba(255,255,255,0.20);
  border-radius: 3px;
  margin: 0 auto 16px;
  overflow: hidden;
}
.pg-loader__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 3px;
  transition: width 2s ease;
}
.pg-loader__text {
  color: rgba(255,255,255,0.60);
  font-size: 13px;
  letter-spacing: 0.06em;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: opacity 0.3s;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--secondary);
  border-radius: 50%;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 2px solid rgba(212,175,55,0.50);
  border-radius: 50%;
  transition: width 0.25s, height 0.25s, border-color 0.25s;
}
.cursor-ring.hovered { width: 52px; height: 52px; border-color: var(--secondary); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--primary-dark);
  padding: 9px 0;
  transition: transform 0.3s ease;
}
.top-bar.hidden { transform: translateY(-100%); }
.top-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.top-bar__left, .top-bar__right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar__link {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--trans-fast);
}
.top-bar__link:hover { color: var(--secondary); }
.top-bar__link i { font-size: 12px; color: var(--secondary); }
.top-bar__social a {
  color: rgba(255,255,255,0.60);
  font-size: 14px;
  margin-left: 12px;
  transition: color var(--trans-fast);
}
.top-bar__social a:first-child { margin-left: 0; }
.top-bar__social a:hover { color: var(--secondary); }
.top-bar__cta {
  background: var(--secondary);
  color: var(--primary-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 6px 18px;
  border-radius: 50px;
  transition: var(--trans);
}
.top-bar__cta:hover { background: var(--white); color: var(--primary); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, top 0.3s ease;
}
.site-header.at-top { background: transparent; }
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 32px rgba(19,56,101,0.10);
}
.site-header.top-hidden { top: 0; }
.site-header.top-visible { top: 40px; }

.site-header .navbar { padding: 20px 0; }
.site-header.scrolled .navbar { padding: 14px 0; }

.header-logo1 { height: 52px; width: auto; border-radius: 8px; }

.header-logo {
    height: 87px;
    width: auto;
    border-radius: 8px;
    padding: 5pxpx;
    padding: 5px;
    background: #fff;
}
.site-header.scrolled .header-logo { height: 44px; }

/* NAV LINKS */
.main-nav { gap: 4px; }
.main-nav .nav-link {
  color: var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 14px !important;
  border-radius: 8px;
  cursor: pointer;
  transition: color var(--trans-fast), background var(--trans-fast);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.main-nav .nav-link i { font-size: 11px; transition: transform 0.3s; }
.site-header.scrolled .main-nav .nav-link { color: var(--primary); }
.main-nav .nav-link:hover, .main-nav .nav-link.active { color: var(--secondary); }
.site-header.scrolled .main-nav .nav-link:hover { color: var(--secondary); }

/* HAMBURGER */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 4px;
  border-radius: 8px;
  cursor: pointer;
  background: rgba(19,56,101,0.10);
  transition: background var(--trans-fast);
}
.nav-hamburger:hover { background: rgba(19,56,101,0.18); }
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--trans);
}
.nav-hamburger span:nth-child(1) { width: 24px; }
.nav-hamburger span:nth-child(2) { width: 18px; }
.nav-hamburger span:nth-child(3) { width: 24px; }
.site-header.scrolled .nav-hamburger { background: rgba(19,56,101,0.10); }
.site-header.scrolled .nav-hamburger span { background: var(--primary); }

/* HEADER CTA CARD BUTTON */

/* =========================================
   SOLAR BENEFITS
========================================= */

.solar-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;

  width: 100%;
  max-width: 650px;

  margin: 24px 0 20px;

  align-items: stretch;
}


/* =========================================
   CARD WRAPPER
========================================= */

.solar-card {
  position: relative;

  min-height: 225px;

  perspective: 1000px;

  transition: z-index 0.25s ease;
}


/* =========================================
   BACK LAYER
========================================= */

.solar-card__back {
  position: absolute;

  top: -7px;
  left: 9px;
  right: 9px;

  height: 38px;

  border-radius: 12px;

  border: 1px solid rgba(120, 160, 220, 0.28);

  background:
    linear-gradient(
      145deg,
      #183f70 0%,
      #102e53 100%
    );

  transform: rotate(-2deg);

  opacity: 0.78;

  transition:
    top 0.28s ease,
    transform 0.28s ease,
    opacity 0.28s ease;
}


/* =========================================
   FRONT CARD
========================================= */

.solar-card__front {
  position: relative;

  display: flex;
  flex-direction: column;

  width: 100%;
  min-height: 225px;
  height: 100%;

  box-sizing: border-box;

  padding: 16px 14px 15px;

  border-radius: 14px;

  border: 1px solid rgba(255, 255, 255, 0.14);

  background:
    linear-gradient(
      155deg,
      #12375f 0%,
      #0c2e52 55%,
      #082440 100%
    );

  color: #fff;

  overflow: hidden;

  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.16);

  transform: translateY(0) scale(1);

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}


/* GOLD BOTTOM ACCENT */

.solar-card__front::after {
  content: "";

  position: absolute;

  left: 30%;
  right: 30%;
  bottom: 0;

  height: 2px;

  border-radius: 10px;

  background: #fac916;

  box-shadow:
    0 0 10px rgba(250, 201, 22, 0.55);

  opacity: 0.78;

  transition:
    left 0.28s ease,
    right 0.28s ease,
    opacity 0.28s ease;
}


/* =========================================
   HOVER POP EFFECT
========================================= */

.solar-card:hover {
  z-index: 30;
}

.solar-card:hover .solar-card__front {
  transform:
    translateY(-10px)
    scale(1.04);

  border-color:
    rgba(250, 201, 22, 0.48);

  background:
    linear-gradient(
      155deg,
      #153e6a 0%,
      #0e345c 55%,
      #092744 100%
    );

  box-shadow:
    0 24px 44px rgba(0, 0, 0, 0.30),
    0 0 20px rgba(250, 201, 22, 0.06);
}

.solar-card:hover .solar-card__back {
  top: -11px;

  transform:
    rotate(-1deg)
    scale(1.02);

  opacity: 1;
}

.solar-card:hover .solar-card__front::after {
  left: 12%;
  right: 12%;

  opacity: 1;
}


/* =========================================
   ICON
========================================= */

.solar-card__icon {
  flex: 0 0 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  margin-bottom: 14px;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.07);

  background:
    rgba(250, 201, 22, 0.10);

  color: #fac916;

  font-size: 17px;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.solar-card:hover .solar-card__icon {
  transform: scale(1.10);

  background:
    rgba(250, 201, 22, 0.16);
}


/* =========================================
   CHECK BADGE
========================================= */

.solar-card__badge {
  position: absolute;

  top: 11px;
  right: 11px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 20px;
  height: 20px;

  border-radius: 6px;

  background: #fac916;

  color: #082847;

  font-size: 11px;
  font-weight: 700;
}


/* =========================================
   TEXT
========================================= */

.solar-card h3 {
  margin: 0 0 7px;

  color: #ffffff;

  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;

  min-height: 36px;
}

.solar-card h4 {
  margin: 0;

  color: #fac916;

  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;

  min-height: 44px;
}


/* DIVIDER */

.solar-card__line {
  display: block;

  width: 28px;
  height: 2px;

  margin: 12px 0 10px;

  flex-shrink: 0;

  border-radius: 20px;

  background:
    rgba(115, 155, 210, 0.65);

  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.solar-card:hover .solar-card__line {
  width: 40px;

  background: #fac916;
}


/* DESCRIPTION */

.solar-card p {
  margin: 0;

  color:
    rgba(255, 255, 255, 0.82);

  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;

  overflow-wrap: break-word;
}


/* =========================================
   CTA WRAPPER
========================================= */

.solar-cta {
  display: flex;
  align-items: stretch;

  gap: 10px;

  width: 100%;
  max-width: 650px;

  margin: 0;
  padding: 0;

  border: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;

  box-shadow: none !important;
}


/* REMOVE LINES */

.solar-cta::before,
.solar-cta::after {
  display: none !important;

  content: none !important;

  width: 0 !important;
  height: 0 !important;

  background: none !important;
  border: 0 !important;
}


/* =========================================
   PRIMARY CTA
========================================= */

.solar-cta__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  min-height: 46px;

  padding: 0 17px;

  border: 0;
  border-radius: 11px;

  background:
    linear-gradient(
      135deg,
      #ffd026 0%,
      #f5be00 100%
    );

  color: #092a4b;

  text-decoration: none;

  font-size: 15px;
  font-weight: 700;

  box-shadow:
    0 8px 18px rgba(250, 201, 22, 0.16);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.solar-cta__primary:hover {
  transform: translateY(-2px);

  box-shadow:
    0 13px 24px rgba(250, 201, 22, 0.24);
}


/* CTA ARROW */

.solar-cta__arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;

  border-radius: 8px;

  background:
    rgba(9, 42, 75, 0.08);

  font-size: 12px;
}


/* =========================================
   PHONE CTA
========================================= */

.solar-cta__phone {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  min-height: 46px;

  padding: 6px 14px;

  border-radius: 11px;

  border:
    1px solid rgba(255, 255, 255, 0.20);

  background:
    rgba(255, 255, 255, 0.055);

  color: #fff;

  text-decoration: none;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.solar-cta__phone:hover {
  transform: translateY(-2px);

  border-color:
    rgba(250, 201, 22, 0.35);

  background:
    rgba(255, 255, 255, 0.09);
}


/* PHONE ICON */

.solar-cta__phone-icon {
  flex: 0 0 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  border-radius: 50%;

  background:
    rgba(250, 201, 22, 0.12);

  color: #fac916;

  font-size: 12px;
}


/* PHONE COPY */

.solar-cta__phone-copy {
  display: flex;
  flex-direction: column;

  line-height: 1.1;
}

.solar-cta__phone-copy small {
  margin-bottom: 2px;

  color:
    rgba(255, 255, 255, 0.62);

  font-size: 7.5px;
  font-weight: 500;

  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.solar-cta__phone-copy strong {
  color: #ffffff;

  font-size: 15px;
  font-weight: 700;
}


/* =========================================
   REMOVE OLD HERO CTA LINE
========================================= */

.rs-hero__actions,
.rs-hero__btns {
  border-top: 0 !important;
  border-bottom: 0 !important;

  box-shadow: none !important;
}

.rs-hero__actions::before,
.rs-hero__actions::after,
.rs-hero__btns::before,
.rs-hero__btns::after {
  display: none !important;

  content: none !important;

  background: none !important;
  border: 0 !important;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .solar-benefits {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    max-width: 560px;

    gap: 14px;
  }

  .solar-card {
    min-height: 205px;
  }

  .solar-card__front {
    min-height: 205px;
  }

  .solar-cta {
    max-width: 560px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 520px) {

  .solar-benefits {
    grid-template-columns: 1fr;

    max-width: 100%;

    gap: 14px;

    margin-top: 20px;
  }

  .solar-card {
    min-height: 175px;
  }

  .solar-card__front {
    min-height: 175px;

    padding: 15px;
  }

  .solar-card h3,
  .solar-card h4 {
    min-height: 0;
  }

  .solar-card:hover .solar-card__front {
    transform:
      translateY(-4px)
      scale(1.01);
  }

  .solar-cta {
    flex-direction: column;

    max-width: 100%;

    gap: 9px;
  }

  .solar-cta__primary,
  .solar-cta__phone {
    width: 100%;

    box-sizing: border-box;
  }

}

/* HEADER CTA */
.header-phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 12px;
  transition: color var(--trans-fast);
}
.header-phone i { color: var(--secondary); }
.site-header.scrolled .header-phone { color: var(--primary); }
.header-phone:hover { color: var(--secondary); }

.btn-nav-cta {
  background: var(--secondary);
  color: var(--primary-dark) !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--trans);
  box-shadow: 0 6px 20px rgba(212,175,55,0.35);
  white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--secondary-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(212,175,55,0.45); }

/* ============================================================
   MEGA MENU
   ============================================================ */
.has-mega { position: relative; }
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 860px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  pointer-events: none;
  border: 1px solid var(--border);
  z-index: 200;
}
.mega-menu--narrow { width: 280px; left: 0; transform: translateX(0) translateY(12px); }
.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.mega-menu--narrow:hover,
.has-mega:hover .mega-menu--narrow { transform: translateX(0) translateY(0); }

.mega-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 8px;
  background: var(--white);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.mega-menu--narrow::before { left: 30px; transform: none; }

.mega-menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 0;
  padding: 32px;
}
.mega-menu--narrow .mega-menu__grid { grid-template-columns: 1fr; padding: 24px; }

.mega-col { padding: 0 20px; border-right: 1px solid var(--border); }
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child { border-right: none; }
.mega-col--featured { padding-left: 24px; }

.mega-col__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.mega-col__links li { margin-bottom: 4px; }
.mega-col__links a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: var(--trans-fast);
}
.mega-col__links a i { color: var(--secondary); font-size: 14px; width: 16px; }
.mega-col__links a:hover { background: var(--bg-alt); color: var(--primary); transform: translateX(3px); }

.mega-feature { border-radius: var(--radius); overflow: hidden; }
.mega-feature img { height: 130px; width: 100%; object-fit: cover; }
.mega-feature__body { padding: 16px; background: var(--primary); }
.mega-feature__body h5 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.mega-feature__body p { font-size: 12px; color: rgba(255,255,255,0.70); margin-bottom: 12px; }
.mega-feature__btn {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 12px;
  padding: 7px 16px;
  border-radius: 50px;
  transition: var(--trans-fast);
}
.mega-feature__btn:hover { background: var(--white); }

/* ============================================================
   OFFCANVAS MOBILE MENU
   ============================================================ */
.offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,39,72,0.65);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: var(--trans);
}
.offcanvas-overlay.open { opacity: 1; visibility: visible; }

.offcanvas-nav {
  position: fixed;
  top: 0; right: 0;
  width: 320px;
  height: 100vh;
  background: var(--white);
  z-index: 1200;
  transform: translateX(110%);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.offcanvas-nav.open { transform: translateX(0); }

.offcanvas-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--border);
}
.offcanvas-nav__head img { height: 44px; border-radius: 6px; }
.offcanvas-nav__close {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--bg-alt);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: var(--trans-fast);
}
.offcanvas-nav__close:hover { background: var(--primary); color: var(--white); }

.offcanvas-menu { padding: 20px 24px; flex: 1; }
.offcanvas-menu > li { border-bottom: 1px solid var(--border); }
.offcanvas-menu > li > a,
.oc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--primary);
  cursor: pointer;
  transition: color var(--trans-fast);
}
.offcanvas-menu > li > a:hover,
.oc-toggle:hover { color: var(--secondary); }
.oc-toggle i { font-size: 12px; transition: transform 0.3s; }
.oc-toggle.open i { transform: rotate(45deg); }

.oc-submenu {
  display: none;
  padding: 8px 0 16px 16px;
}
.oc-submenu.open { display: block; }
.oc-submenu li a {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--trans-fast);
}
.oc-submenu li a:hover { color: var(--primary); }

.oc-cta-btn {
  display: block;
  margin: 20px 24px 32px;
  background: var(--secondary);
  color: var(--primary-dark);
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 24px;
  border-radius: 50px;
  transition: var(--trans);
}
.oc-cta-btn:hover { background: var(--primary); color: var(--white); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg__img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.hero-bg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,39,72,0.92) 0%,
    rgba(19,56,101,0.75) 50%,
    rgba(13,39,72,0.85) 100%
  );
}

.hero-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

/* Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
.hero-orb--1 { width: 500px; height: 500px; background: rgba(96,165,250,0.12); top: -100px; right: -100px; animation-delay: 0s; }
.hero-orb--2 { width: 350px; height: 350px; background: rgba(212,175,55,0.10); bottom: 50px; left: -50px; animation-delay: 3s; }
.hero-orb--3 { width: 250px; height: 250px; background: rgba(96,165,250,0.08); top: 40%; left: 45%; animation-delay: 6s; }
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-container { position: relative; z-index: 2; }

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 50px;
  padding: 8px 20px 8px 12px;
  color: rgba(255,255,255,0.90);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.hero-badge__dot {
  width: 8px; height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(212,175,55,0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(212,175,55,0.25); }
  50% { box-shadow: 0 0 0 8px rgba(212,175,55,0.10); }
}

/* Hero Heading */
.hero-heading {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-heading__gold {
  font-style: normal;
  background: linear-gradient(135deg, var(--secondary), #f0cc5e, var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 36px;
}

/* Hero Buttons */
.hero-btns { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary);
  color: var(--primary-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 50px;
  transition: var(--trans);
  box-shadow: 0 10px 30px rgba(212,175,55,0.40);
}
.btn-hero-primary:hover { background: #e8c33d; transform: translateY(-3px); box-shadow: 0 18px 44px rgba(212,175,55,0.50); color: var(--primary-dark); }
.btn-hero-primary i { font-size: 20px; }

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.90);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: color var(--trans-fast);
}
.btn-hero-ghost:hover { color: var(--secondary); }
.btn-hero-ghost__play {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--trans);
  flex-shrink: 0;
}
.btn-hero-ghost:hover .btn-hero-ghost__play { background: var(--secondary); border-color: var(--secondary); color: var(--primary-dark); }

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat__suf { font-size: 22px; font-weight: 800; color: var(--secondary); margin-left: 2px; display: inline; }
.hero-stat__label { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.05em; margin-top: 4px; }
.hero-stat__div { width: 1px; height: 48px; background: rgba(255,255,255,0.20); }

/* Hero Float Card */
.hero-float-wrap { position: relative; padding: 40px 20px; }
.hero-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  animation: floatCard 5s ease-in-out infinite;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25);
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-card__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--secondary), #e0b83a);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary-dark);
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(212,175,55,0.40);
}
.hero-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.hero-card__meter {
  height: 6px;
  background: rgba(255,255,255,0.20);
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
}
.hero-card__meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 6px;
  animation: fillMeter 2s 1s ease-out forwards;
  width: 0%;
}
@keyframes fillMeter { to { width: 80%; } }
.hero-card__note { font-size: 13px; color: rgba(255,255,255,0.70); }
.hero-card__note strong { color: var(--secondary); }

.hero-mini-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  animation: floatMini 4s ease-in-out infinite;
}
.hero-mini-card:first-of-type { animation-delay: 1s; }
.hero-mini-card:last-of-type { animation-delay: 2.5s; }
@keyframes floatMini {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-mini-card i { color: var(--secondary); font-size: 16px; }

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  z-index: 3;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ============================================================
   TICKER SECTION
   ============================================================ */
.ticker-section {
  padding: 32px 0 40px;
  background: var(--bg);
  overflow: hidden;
}
.ticker-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.ticker-track-wrap { overflow: hidden; position: relative; }
.ticker-track-wrap::before,
.ticker-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
}
.ticker-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.ticker-track-wrap::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker 30s linear infinite;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  padding: 0 28px;
  white-space: nowrap;
  opacity: 0.70;
  transition: opacity var(--trans-fast);
}
.ticker-item:hover { opacity: 1; }
.ticker-sep { color: var(--secondary); font-size: 14px; opacity: 0.60; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-img-wrap { position: relative; }
.about-img {
  border-radius: var(--radius-xl);
  width: 100%;
  height: 560px;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}
.about-img__accent {
  position: absolute;
  top: -20px; right: -20px;
  width: 200px; height: 200px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 40px;
  z-index: -1;
  opacity: 0.25;
}
.about-badge {
  position: absolute;
  bottom: 40px; right: -24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  min-width: 220px;
}
.about-badge__icon { font-size: 28px; color: var(--primary); }
.about-badge strong { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; color: var(--primary); }
.about-badge span { font-size: 13px; color: var(--text-muted); }
.about-exp-badge {
  position: absolute;
  top: 32px; left: -24px;
  background: var(--primary);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-exp-badge__num {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}
.about-exp-badge__text { font-size: 12px; font-weight: 600; opacity: 0.80; max-width: 80px; }

.about-checks { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.about-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.about-check i { color: var(--secondary); font-size: 18px; flex-shrink: 0; }

.about-counters {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 28px 0;
}
.about-counter { display: flex; flex-direction: column; }
.about-counter__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.about-counter__suf { font-size: 22px; font-weight: 800; color: var(--secondary); margin-left: 3px; display: inline; }
.about-counter__label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

.about-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-slider-wrap { position: relative; padding-bottom: 56px; }
.services-swiper { overflow: visible !important; padding: 10px 5px 0 !important; }

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
  height: 100%;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.service-card__img { position: relative; height: 220px; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-card__img img { transform: scale(1.08); }
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19,56,101,0.60), transparent);
}
.service-card__body { padding: 28px; }
.service-card__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(19,56,101,0.25);
  margin-top: -42px;
  position: relative;
  z-index: 2;
}
.service-card__title { font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.service-card__body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  transition: color var(--trans-fast), gap var(--trans-fast);
}
.service-card__link:hover { color: var(--secondary); gap: 10px; }

/* Swiper Nav */
.svc-prev, .svc-next {
  width: 48px !important; height: 48px !important;
  background: var(--white) !important;
  border-radius: 50% !important;
  box-shadow: var(--shadow-md) !important;
  color: var(--primary) !important;
  border: 1px solid var(--border) !important;
  transition: var(--trans) !important;
}
.svc-prev::after, .svc-next::after { font-size: 16px !important; font-weight: 700; color: var(--primary); }
.svc-prev:hover, .svc-next:hover { background: var(--primary) !important; }
.svc-prev:hover::after, .svc-next:hover::after { color: var(--white); }
.svc-pagination { bottom: 0 !important; }
.swiper-pagination-bullet { background: var(--primary) !important; opacity: 0.30; }
.swiper-pagination-bullet-active { opacity: 1 !important; background: var(--secondary) !important; width: 24px !important; border-radius: 4px !important; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-img-wrap { position: relative; }
.why-img { border-radius: var(--radius-xl); width: 100%; height: 520px; object-fit: cover; box-shadow: var(--shadow-xl); }
.why-float {
  position: absolute;
  bottom: 36px; right: -24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
}
.why-float__icon { font-size: 30px; color: var(--secondary); }
.why-float strong { display: block; font-size: 15px; color: var(--primary); font-family: 'Plus Jakarta Sans', sans-serif; }
.why-float p { font-size: 12px; color: var(--text-muted); margin: 2px 0 0; }

.progress-items { display: flex; flex-direction: column; gap: 20px; margin: 28px 0; }
.progress-item__head { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; font-weight: 600; color: var(--text); }
.progress-item__val { color: var(--primary); }
.progress-bar-track { height: 8px; background: var(--bg-alt); border-radius: 8px; overflow: hidden; }
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 8px;
  width: 0%;
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}

.why-feats { display: flex; flex-direction: column; gap: 20px; margin: 28px 0; }
.why-feat { display: flex; gap: 16px; }
.why-feat__icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(19,56,101,0.08), rgba(19,56,101,0.15));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
}
.why-feat__body h5 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.why-feat__body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.cert-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(19,56,101,0.07);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--border);
}
.cert-badge i { color: var(--secondary); }

/* ============================================================
   SOLAR CALCULATOR
   ============================================================ */
.calc-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}
.calc-section__bg { position: absolute; inset: 0; }
.calc-section__bg img { width: 100%; height: 100%; object-fit: cover; }
.calc-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,39,72,0.96) 0%, rgba(19,56,101,0.90) 100%);
}
.calc-section .container { position: relative; z-index: 1; }

.calc-benefits { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.calc-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}
.calc-benefits li i { color: var(--secondary); font-size: 18px; flex-shrink: 0; }

.calc-card { padding: 36px; }
.calc-card__title { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 24px; font-family: 'Plus Jakarta Sans', sans-serif; }
.calc-form { display: flex; flex-direction: column; gap: 16px; }
.cf-group label { display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.70); margin-bottom: 6px; letter-spacing: 0.03em; }
.cf-group input, .cf-group select {
  width: 100%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--white);
  font-size: 14px;
  transition: border-color var(--trans-fast), background var(--trans-fast);
}
.cf-group input::placeholder { color: rgba(255,255,255,0.40); }
.cf-group input:focus, .cf-group select:focus { border-color: var(--secondary); background: rgba(255,255,255,0.15); }
.cf-group select option { background: var(--primary-dark); color: var(--white); }

.btn-calc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--secondary);
  color: var(--primary-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 50px;
  width: 100%;
  transition: var(--trans);
  box-shadow: 0 10px 30px rgba(212,175,55,0.35);
}
.btn-calc:hover { background: #e8c33d; transform: translateY(-2px); box-shadow: 0 16px 40px rgba(212,175,55,0.45); }

/* ============================================================
   PRODUCTS
   ============================================================ */
.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--trans), box-shadow var(--trans);
  height: 100%;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card--featured { border: 2px solid var(--secondary); box-shadow: 0 8px 40px rgba(212,175,55,0.20); }
.product-card__img { position: relative; height: 240px; overflow: hidden; }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-card__img img { transform: scale(1.07); }
.product-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}
.product-card__badge--gold { background: var(--secondary); color: var(--primary-dark); }
.product-card__body { padding: 28px; }
.product-card__icon {
  width: 52px; height: 52px;
  background: rgba(19,56,101,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 16px;
}
.product-card__icon--gold { background: rgba(212,175,55,0.12); color: var(--secondary-dark); }
.product-card__body h3 { font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.product-card__body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.product-specs { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.product-specs span { display: flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: var(--primary); background: rgba(19,56,101,0.06); padding: 5px 12px; border-radius: 50px; }
.product-specs span i { color: var(--secondary); }
.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  transition: color var(--trans-fast), gap var(--trans-fast);
}
.product-card__link:hover { color: var(--secondary); gap: 10px; }

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process-timeline { position: relative; padding-top: 48px; }
.process-line {
  position: absolute;
  top: 72px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
  opacity: 0.20;
  display: none;
}
@media (min-width: 992px) { .process-line { display: block; } }

.process-step { padding: 0 16px; text-align: center; position: relative; }
.process-step__num {
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--secondary);
  background: var(--bg-alt);
  padding: 2px 8px;
  border-radius: 4px;
}
.process-step__icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 8px 30px rgba(19,56,101,0.28);
  position: relative;
  transition: transform var(--trans);
}
.process-step:hover .process-step__icon { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(19,56,101,0.35); }
.process-step__icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 26px;
  border: 2px dashed rgba(19,56,101,0.20);
  animation: spinSlow 20s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.process-step__title { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.process-step__text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   PROJECTS
   ============================================================ */
.projects-filter { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; justify-content: center; }
.pf-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  transition: var(--trans);
  cursor: pointer;
}
.pf-btn:hover, .pf-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.proj-item { transition: opacity 0.4s, transform 0.4s; }
.proj-item.hidden { opacity: 0; transform: scale(0.95); pointer-events: none; display: none; }
.proj-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  height: 280px;
}
.proj-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.proj-card:hover img { transform: scale(1.08); }
.proj-card__over {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,39,72,0.92) 0%, rgba(13,39,72,0.20) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
}
.proj-card:hover .proj-card__over { opacity: 1; transform: translateY(0); }
.proj-cat { font-size: 11px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--secondary); display: block; margin-bottom: 6px; }
.proj-card__over h4 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.proj-card__over p { font-size: 14px; color: rgba(255,255,255,0.70); margin-bottom: 14px; }
.proj-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--secondary);
  border-radius: 50%;
  color: var(--primary-dark);
  font-size: 20px;
  transition: var(--trans);
}
.proj-link:hover { background: var(--white); transform: scale(1.1); }

/* ============================================================
   BATTERY SECTION
   ============================================================ */
.battery-section { background: var(--primary-dark); }
.battery-section .sec-eyebrow { color: var(--secondary); }
.battery-section .sec-eyebrow::before { background: var(--secondary); }
.battery-section .sec-title { color: var(--white); }
.battery-section .sec-text { color: rgba(255,255,255,0.75); }

.battery-img-wrap { position: relative; }
.battery-img { border-radius: var(--radius-xl); width: 100%; height: 520px; object-fit: cover; box-shadow: var(--shadow-xl); }
.battery-float {
  position: absolute;
  bottom: 36px; right: -24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
}
.battery-float i { font-size: 32px; color: var(--secondary); }
.battery-float strong { display: block; font-size: 20px; font-weight: 800; color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif; }
.battery-float span { font-size: 12px; color: rgba(255,255,255,0.60); }

.battery-benefits { display: flex; flex-direction: column; gap: 20px; margin: 28px 0; }
.battery-benefit { display: flex; gap: 16px; }
.battery-benefit__icon {
  width: 48px; height: 48px;
  background: rgba(212,175,55,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--secondary);
  flex-shrink: 0;
}
.battery-benefit__body h5 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.battery-benefit__body p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }

.battery-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.30);
  color: rgba(255,255,255,0.85);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  transition: var(--trans);
}
.btn-outline-gold:hover { border-color: var(--secondary); color: var(--secondary); }

/* ============================================================
   SPLIT SECTION
   ============================================================ */
.split-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  height: 480px;
  cursor: pointer;
}
.split-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.split-card:hover img { transform: scale(1.06); }
.split-card__over {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,39,72,0.92) 0%, rgba(13,39,72,0.40) 60%, rgba(13,39,72,0.15) 100%);
  display: flex;
  align-items: flex-end;
  transition: background 0.4s;
}
.split-card--gold .split-card__over {
  background: linear-gradient(to top, rgba(13,39,72,0.92) 0%, rgba(30,60,100,0.50) 60%, rgba(30,60,100,0.20) 100%);
}
.split-card__content { padding: 36px; width: 100%; }
.split-card__icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 14px;
}
.split-card__icon--gold { background: rgba(212,175,55,0.20); color: var(--secondary); }
.split-card__content h3 { font-size: 26px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.split-card__content p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 16px; }
.split-card__content ul { display: flex; flex-direction: column; gap: 7px; margin-bottom: 24px; }
.split-card__content ul li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.80); }
.split-card__content ul li i { color: var(--secondary); }

.btn-split {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 50px;
  transition: var(--trans);
}
.btn-split:hover { background: var(--primary); color: var(--white); }
.btn-split--gold { background: var(--secondary); color: var(--primary-dark); }
.btn-split--gold:hover { background: var(--white); color: var(--primary); }

/* ============================================================
   STATISTICS
   ============================================================ */
.stats-section { position: relative; padding: 96px 0; overflow: hidden; }
.stats-section__bg { position: absolute; inset: 0; }
.stats-section__bg img { width: 100%; height: 100%; object-fit: cover; }
.stats-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,39,72,0.94), rgba(19,56,101,0.88));
}
.stats-section .container { position: relative; z-index: 1; }

.stat-box { text-align: center; }
.stat-box__icon { font-size: 36px; color: var(--secondary); margin-bottom: 12px; }
.stat-box__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: inline;
}
.stat-box__suf { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 800; color: var(--secondary); margin-left: 3px; }
.stat-box__label { display: block; font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 8px; letter-spacing: 0.04em; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-swiper { padding-bottom: 48px !important; }
.testi-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  height: 100%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform var(--trans), box-shadow var(--trans);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-stars { color: var(--secondary); font-size: 18px; margin-bottom: 20px; display: flex; gap: 3px; }
.testi-quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
  border: none;
  padding: 0;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-info strong { display: block; font-size: 15px; color: var(--primary); font-family: 'Plus Jakarta Sans', sans-serif; }
.testi-info span { font-size: 12px; color: var(--text-muted); }
.testi-source {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: var(--bg-alt);
  padding: 4px 10px;
  border-radius: 50px;
}
.testi-pagination { bottom: 0 !important; }

/* ============================================================
   TEAM
   ============================================================ */
.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--trans), box-shadow var(--trans);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-card__img-wrap { position: relative; height: 280px; overflow: hidden; }
.team-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.6s ease; }
.team-card:hover .team-card__img-wrap img { transform: scale(1.06); }
.team-card__social {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%) translateY(60px);
  display: flex;
  gap: 8px;
  transition: transform 0.35s ease;
}
.team-card:hover .team-card__social { transform: translateX(-50%) translateY(0); }
.team-card__social a {
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 15px;
  transition: var(--trans-fast);
  box-shadow: var(--shadow-sm);
}
.team-card__social a:hover { background: var(--secondary); color: var(--primary-dark); }
.team-card__body { padding: 24px; text-align: center; }
.team-card__body h4 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.team-card__body span { font-size: 13px; color: var(--secondary); font-weight: 600; display: block; margin-bottom: 8px; }
.team-card__body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   FAQs
   ============================================================ */
.faq-wrap { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
  cursor: pointer;
  transition: color var(--trans-fast);
  background: transparent;
  gap: 16px;
}
.faq-q:hover { color: var(--secondary); }
.faq-icon { font-size: 14px; flex-shrink: 0; transition: transform 0.3s; }
.faq-q:not(.collapsed) .faq-icon { transform: rotate(45deg); color: var(--secondary); }
.faq-a { padding: 0 24px 20px; font-size: 15px; color: var(--text-muted); line-height: 1.75; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--trans), box-shadow var(--trans);
  height: 100%;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-card__img { position: relative; height: 220px; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.08); }
.blog-card__cat {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--secondary);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
.blog-card__body { padding: 24px; }
.blog-card__meta { display: flex; gap: 16px; margin-bottom: 12px; }
.blog-card__meta span { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-muted); }
.blog-card__meta i { color: var(--secondary); }
.blog-card__title { font-size: 17px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
.blog-card__title a { color: var(--primary); transition: color var(--trans-fast); }
.blog-card__title a:hover { color: var(--secondary); }
.blog-card__body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  transition: color var(--trans-fast), gap var(--trans-fast);
}
.blog-card__link:hover { color: var(--secondary); gap: 10px; }

/* ============================================================
   BRANDS
   ============================================================ */
.brands-swiper { padding: 10px 0 !important; }
.brand-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  opacity: 0.60;
  transition: var(--trans);
  cursor: default;
}
.brand-chip:hover { opacity: 1; border-color: var(--secondary); color: var(--secondary); box-shadow: var(--shadow-sm); }

/* ============================================================
   CONTACT CTA
   ============================================================ */
.contact-cta-section { position: relative; padding: 110px 0; overflow: hidden; }
.contact-cta-section__bg { position: absolute; inset: 0; }
.contact-cta-section__bg img { width: 100%; height: 100%; object-fit: cover; }
.contact-cta-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13,39,72,0.96) 0%, rgba(19,56,101,0.92) 100%);
}
.contact-cta-section .container { position: relative; z-index: 1; }

.contact-form-card { padding: 36px; margin-top: 32px; margin-bottom: 24px; }
.cta-input {
  width: 100%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color var(--trans-fast), background var(--trans-fast);
}
.cta-input::placeholder { color: rgba(255,255,255,0.45); }
.cta-input:focus { border-color: var(--secondary); background: rgba(255,255,255,0.15); }

.btn-cta-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary);
  color: var(--primary-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 48px;
  border-radius: 50px;
  transition: var(--trans);
  box-shadow: 0 10px 30px rgba(212,175,55,0.40);
  cursor: pointer;
}
.btn-cta-submit:hover { background: #e8c33d; transform: translateY(-3px); box-shadow: 0 18px 44px rgba(212,175,55,0.50); }

.cta-trust { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.cta-trust span { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,0.65); }
.cta-trust i { color: var(--secondary); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--primary-dark); }

.footer-top { padding: 80px 0 60px; }

.footer-logo { height: 56px; border-radius: 10px; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.60); line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.60);
  font-size: 16px;
  transition: var(--trans-fast);
}
.footer-social a:hover { background: var(--secondary); color: var(--primary-dark); }

.footer-widget__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-widget__title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.60); transition: color var(--trans-fast), padding-left var(--trans-fast); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--secondary); padding-left: 6px; }
.footer-links a::before { content: '→'; opacity: 0; transition: opacity var(--trans-fast); font-size: 12px; }
.footer-links a:hover::before { opacity: 1; }

.footer-contacts { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-item i { font-size: 16px; color: var(--secondary); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item strong { display: block; font-size: 13px; color: rgba(255,255,255,0.50); font-weight: 600; margin-bottom: 2px; }
.footer-contact-item a, .footer-contact-item span { font-size: 14px; color: rgba(255,255,255,0.80); transition: color var(--trans-fast); }
.footer-contact-item a:hover { color: var(--secondary); }

.footer-newsletter h6 { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.60); margin-bottom: 12px; }
.newsletter-wrap { display: flex; gap: 0; overflow: hidden; border-radius: 10px; }
.newsletter-wrap input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  border-radius: 10px 0 0 10px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}
.newsletter-wrap input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-wrap button {
  background: var(--secondary);
  color: var(--primary-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 12px 20px;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
  transition: background var(--trans-fast);
  white-space: nowrap;
}
.newsletter-wrap button:hover { background: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.50); }
.footer-bottom a { color: var(--secondary); }
.footer-bottom a:hover { text-decoration: underline; }
.footer-certs { display: flex; gap: 16px; }
.footer-certs span { display: flex; align-items: center; gap: 5px; font-size: 12px; color: rgba(255,255,255,0.40); }
.footer-certs i { color: var(--secondary); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--secondary);
  color: var(--primary-dark);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 24px rgba(212,175,55,0.40);
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary); color: var(--white); transform: translateY(-4px); }

/* ============================================================
   SOLAK-STYLE HEADER OVERRIDES
   ============================================================ */
.site-header.at-top {
  /*background: rgba(13,39,72,0.97) !important; */
  backdrop-filter: blur(20px);
}
.site-header {
  background: rgba(13,39,72,0.97);
}
.site-header.scrolled {
  background: rgba(10,30,60,0.99) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.35) !important;
}
.site-header .navbar {
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(19,56,101,0.12);
  border-radius: 14px;
  padding: 10px 20px !important;
  margin: 8px 0;
  box-shadow: 0 4px 24px rgba(19,56,101,0.12);
}
.site-header.scrolled .main-nav .nav-link {
  color: var(--primary) !important;
}
.site-header.scrolled .main-nav .nav-link:hover { color: var(--secondary-dark) !important; }
.btn-header-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--trans);
  flex-shrink: 0;
}
.btn-header-icon:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary-dark);
}
.top-bar__social-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  margin-right: 2px;
}
.top-bar__sep {
  color: rgba(255,255,255,0.25);
  margin: 0 4px;
}
.site-header.scrolled .header-phone { color: var(--primary) !important; }

/* ============================================================
   SERVICES MARQUEE STRIP (CENTER OF PAGE)
   ============================================================ */
.svc-marquee-section {
  background: var(--primary);
  overflow: hidden;
  position: relative;
}
.svc-marquee-wrap {
  display: flex;
  width: max-content;
  animation: svcMarquee 36s linear infinite;
  padding: 20px 0;
}
.svc-marquee-section:hover .svc-marquee-wrap { animation-play-state: paused; }
@keyframes svcMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.svc-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.svc-marquee-item i { color: var(--secondary); font-size: 15px; }
.svc-marquee-item:last-child { border-right: none; }

/* ============================================================
   DOTTED BACKGROUND PATTERN
   ============================================================ */
.dotted-bg {
  background-image: radial-gradient(rgba(19,56,101,0.13) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

/* ============================================================
   PARALLAX BACKGROUNDS
   ============================================================ */
.calc-section {
  background-image: url('../images/Hybrid-Solar-Group_v9.jpg') !important;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.calc-section__bg { display: none !important; }
@media (max-width: 768px) { .calc-section { background-attachment: scroll; } }

.stats-section {
  background-image: url('../images/Hybrid-Solar-Group_v22.jpg') !important;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.stats-section__bg { display: none !important; }
@media (max-width: 768px) { .stats-section { background-attachment: scroll; } }

.battery-section {
  background-image: url('../images/Hybrid-Solar-Group_v8.jpg') !important;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-color: var(--primary-dark);
}
@media (max-width: 768px) { .battery-section { background-attachment: scroll; } }

.services-section {
  background-image: url('../images/ban1.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(240,237,232,0.93);
  z-index: 0;
  pointer-events: none;
}
.services-section .container { position: relative; z-index: 1; }
@media (max-width: 768px) { .services-section { background-attachment: scroll; } }

/* Services slider container fix */
.services-slider-wrap {
  overflow: hidden;
  padding-bottom: 60px;
  margin: 0 -12px;
  padding-left: 12px;
  padding-right: 12px;
}
.services-swiper { overflow: hidden !important; }

/* ============================================================
   GALLERY LIGHTBOX (No Filters)
   ============================================================ */
.projects-filter { display: none !important; }

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.gallery-lightbox.open { opacity: 1; visibility: visible; }
.gallery-lightbox__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 20px;
  cursor: pointer; transition: background 0.2s;
  border: 1px solid rgba(255,255,255,0.25); z-index: 10;
}
.gallery-lightbox__close:hover { background: rgba(255,255,255,0.30); }
.gallery-lightbox__img {
  max-width: 88vw; max-height: 84vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.60);
}
.gallery-lightbox__caption {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.65);
  color: white; padding: 10px 28px;
  border-radius: 50px; font-size: 14px; font-weight: 500;
  white-space: nowrap; max-width: 90vw; text-align: center;
}
.gallery-lightbox__prev, .gallery-lightbox__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 22px; cursor: pointer;
  transition: background 0.2s;
  border: 1px solid rgba(255,255,255,0.25); z-index: 10;
}
.gallery-lightbox__prev { left: 20px; }
.gallery-lightbox__next { right: 20px; }
.gallery-lightbox__prev:hover, .gallery-lightbox__next:hover { background: rgba(255,255,255,0.30); }
.proj-card { cursor: pointer; }
.proj-card__over {
  opacity: 1 !important;
  transform: translateY(0) !important;
  background: linear-gradient(to top, rgba(13,39,72,0.80) 0%, transparent 60%) !important;
}

/* ============================================================
   PARTNERS SECTION (replaces team)
   ============================================================ */
.partners-section { background: var(--bg-alt); }
.partners-track-wrap {
  overflow: hidden; position: relative; margin-top: 48px;
}
.partners-track-wrap::before, .partners-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.partners-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg-alt), transparent); }
.partners-track-wrap::after { right: 0; background: linear-gradient(-90deg, var(--bg-alt), transparent); }
.partners-track {
  display: flex; align-items: center;
  width: max-content;
  animation: partnersScroll 35s linear infinite;
}
.partners-track-wrap:hover .partners-track { animation-play-state: paused; }
@keyframes partnersScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partner-logo {
  width: 180px; height: 100px;
  display: flex; align-items: center; justify-content: center;
  padding: 16px 24px; margin: 0 14px;
  background: var(--white); border-radius: 12px;
  border: 1px solid var(--border); transition: var(--trans); flex-shrink: 0;
}
.partner-logo:hover { box-shadow: var(--shadow-md); border-color: var(--secondary); transform: translateY(-4px); }
.partner-logo img {
  max-width: 100%; max-height: 65px; object-fit: contain;
  filter: grayscale(40%); transition: filter var(--trans);
}
.partner-logo:hover img { filter: grayscale(0%); }

/* ============================================================
   CONTACT FORM 6-FIELD UPDATE
   ============================================================ */
.cta-input-label {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.65); letter-spacing: 0.03em;
  display: block; margin-bottom: 6px; text-align: left;
}
.cta-textarea {
  width: 100%; resize: vertical; min-height: 100px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 10px;
  padding: 13px 16px; color: white; font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s, background 0.3s;
}
.cta-textarea::placeholder { color: rgba(255,255,255,0.38); }
.cta-textarea:focus { border-color: var(--secondary); background: rgba(255,255,255,0.15); outline: none; }
.cta-select {
  width: 100%; background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 10px;
  padding: 13px 16px; color: white; font-size: 14px;
  font-family: 'Inter', sans-serif; transition: border-color 0.3s; cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.cta-select option { background: var(--primary-dark); color: white; }
.cta-select:focus { border-color: var(--secondary); outline: none; }
.cta-input {
  width: 100%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px; padding: 13px 16px;
  color: white; font-size: 14px; font-family: 'Inter', sans-serif;
  transition: border-color 0.3s, background 0.3s;
}
.cta-input::placeholder { color: rgba(255,255,255,0.38); }
.cta-input:focus { border-color: var(--secondary); background: rgba(255,255,255,0.15); outline: none; }
.contact-form-card { padding: 40px !important; }

/* ============================================================
   HERO SLIDER — Full Swiper-based hero
   ============================================================ */
.hero-slider-section {
  position: relative;
  overflow: hidden;
}
.hero-swiper {
  width: 100%;
  height: 100vh;
  min-height: 600px;
}
.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* Zoom-in effect on active slide */
.hero-swiper .swiper-slide .hero-slide {
  transform: scale(1.06);
  transition: transform 7s ease;
}
.hero-swiper .swiper-slide-active .hero-slide {
  transform: scale(1.0);
}
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,39,72,0.90) 0%, rgba(13,39,72,0.55) 55%, rgba(13,39,72,0.30) 100%);
  z-index: 1;
}
.hero-slide__overlay--teal {
  background: linear-gradient(135deg, rgba(8,28,60,0.92) 0%, rgba(19,75,101,0.65) 55%, rgba(19,75,101,0.25) 100%);
}
.hero-slide__overlay--deep {
  background: linear-gradient(135deg, rgba(13,39,72,0.95) 0%, rgba(13,56,101,0.70) 50%, rgba(13,56,101,0.40) 100%);
}
.hero-slide .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-slide .hero-content {
  animation: heroContentIn 0.9s ease 0.3s both;
}
.hero-swiper .swiper-slide .hero-content { opacity: 0; transform: translateY(30px); }
.hero-swiper .swiper-slide-active .hero-content { opacity: 1; transform: translateY(0); transition: opacity 0.9s 0.4s ease, transform 0.9s 0.4s ease; }

/* Swiper Navigation Buttons */
.hero-swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 58px;
  height: 58px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  color: white;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}
.hero-swiper-prev { left: 28px; }
.hero-swiper-next { right: 28px; }
.hero-swiper-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary-dark);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 24px rgba(212,175,55,0.45);
}

/* Pagination */
.hero-slider-section .swiper-pagination {
  bottom: 36px !important;
  z-index: 20;
}
.hero-slider-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.45);
  opacity: 1;
  transition: all 0.35s;
  margin: 0 5px !important;
}
.hero-slider-section .swiper-pagination-bullet-active {
  width: 34px;
  border-radius: 5px;
  background: var(--secondary);
}

/* Slide Counter */
.hero-slide-counter {
  position: absolute;
  bottom: 36px;
  right: 36px;
  z-index: 20;
  color: rgba(255,255,255,0.70);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
}
.hero-slide-counter #heroCurrentSlide { color: var(--secondary); font-size: 18px; }

/* Keep hero canvas & orbs inside slider */
.hero-slider-section .hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.hero-slider-section .hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 20;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ============================================================
   DROPDOWN MEGA MENU — DESKTOP FIX
   ============================================================ */
/* Ensure the navbar never clips the dropdown */
.site-header .navbar,
.site-header .navbar-collapse,
.site-header .navbar-nav,
.site-header .main-nav {
  overflow: visible !important;
}
/* Boost z-index so it layers above everything */
.mega-menu {
  z-index: 9990 !important;
}
/* Narrow dropdown width — JS controls left/right position */
.mega-menu--narrow {
  width: 280px;
}
/* Hover bridge — gap between nav link and menu */
.has-mega::after {
  content: '';
  position: absolute;
  height: 20px;
  left: 0;
  right: 0;
  bottom: -12px;
}

/* ============================================================
   TOP BAR TEXT COLOUR UPDATE
   ============================================================ */
.top-bar__link,
.top-bar__link--info {
  color: rgba(255,255,255,0.92) !important;
}
.top-bar__link i,
.top-bar__link--info i {
  color: var(--secondary) !important;
}
.top-bar__link:hover,
.top-bar__link--info:hover {
  color: var(--secondary) !important;
}
.top-bar__social-label {
  color: rgba(255,255,255,0.80) !important;
}
.top-bar__sep {
  color: rgba(255,255,255,0.35) !important;
}
.top-bar__social a {
  color: rgba(255,255,255,0.80) !important;
}
.top-bar__social a:hover {
  color: var(--secondary) !important;
}

/* ============================================================
   CALC & BATTERY OVERLAY GRADIENT FIX
   ============================================================ */
.calc-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,39,72,0.94), rgba(19,56,101,0.88)) !important;
}

/* ============================================================
   FIX #35 — TOP BAR: FORCE BRIGHT WHITE TEXT (overrides Bootstrap)
   ============================================================ */
div.top-bar,
#topBar {
  background: #0d2748 !important;
  color: rgba(255,255,255,0.95) !important;
}
div.top-bar *,
#topBar * {
  color: rgba(255,255,255,0.92);
}
div.top-bar .top-bar__link,
#topBar .top-bar__link,
div.top-bar span.top-bar__link,
div.top-bar a.top-bar__link {
  color: rgba(255,255,255,0.92) !important;
  text-decoration: none !important;
}
div.top-bar .top-bar__link i,
#topBar .top-bar__link i,
div.top-bar .top-bar__link--info i {
  color: var(--secondary) !important;
}
div.top-bar .top-bar__link:hover,
div.top-bar a.top-bar__link:hover {
  color: var(--secondary) !important;
}
div.top-bar .top-bar__sep {
  color: rgba(255,255,255,0.30) !important;
}
div.top-bar .top-bar__social-label {
  color: rgba(255,255,255,0.75) !important;
}
div.top-bar .top-bar__social a {
  color: rgba(255,255,255,0.80) !important;
}
div.top-bar .top-bar__social a:hover {
  color: var(--secondary) !important;
}

/* ============================================================
   FIX #36 — MEGA MENU: FIXED-POSITION MODE (JS sets coords)
   ============================================================ */
/* Reset CSS positioning so JS can take over fully.
   NOTE: left/top are intentionally NOT set here — JS controls them
   via inline styles. Adding left/top with !important here would
   override those inline styles and break centering. */
.mega-menu {
  position: fixed !important;
  transform: none !important;
  z-index: 99999 !important;
}
/* Ensure the navbar / its ancestors never clip the dropdown */
.site-header,
.site-header .navbar,
.site-header .navbar-collapse,
.site-header .navbar-nav,
.site-header .main-nav,
.site-header .has-mega,
.site-header .nav-item {
  overflow: visible !important;
}

/* ============================================================
   FIX #32 — SOLAR SAVINGS CALCULATOR: SOLID BACKGROUND COLOUR
   ============================================================ */
.calc-section {
  background-color: #0d2748 !important; /* shows even if image fails */
  background-image: url('../images/Hybrid-Solar-Group_v9.jpg') !important;
  background-attachment: fixed !important;
  background-size: cover !important;
  background-position: center !important;
}

.calc-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 39, 72, 0.92), rgba(19, 56, 101, 0.85));
    z-index: 0;
}

/* Ensure overlay fully covers with the gradient */
.calc-section__bg { display: none !important; }
.calc-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(13,39,72,0.94), rgba(19,56,101,0.88)) !important;
}
.calc-section { position: relative; }
.calc-section > .container { position: relative; z-index: 2; }

/* ============================================================
   FIX #33 — BATTERY STORAGE: SOLID BACKGROUND + GRADIENT OVERLAY
   ============================================================ */
.battery-section {
  background-color: #0d2748 !important;
  background-image: url('../images/Hybrid-Solar-Group_v8.jpg') !important;
  background-attachment: fixed !important;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}
.battery-section .battery-section__overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(135deg, rgba(13,39,72,0.94), rgba(19,56,101,0.88)) !important;
  z-index: 0 !important;
  pointer-events: none !important;
}
.battery-section .container {
  position: relative !important;
  z-index: 1 !important;
}
/* Text colours for battery on coloured bg */
.battery-section .sec-eyebrow  { color: var(--secondary); }
.battery-section .sec-eyebrow::before { background: var(--secondary); }
.battery-section .sec-title    { color: #ffffff; }
.battery-section .sec-text     { color: rgba(255,255,255,0.80); }
.battery-section .battery-benefit__body h5 { color: #ffffff; }
.battery-section .battery-benefit__body p  { color: rgba(255,255,255,0.72); }
@media (max-width: 768px) {
  .battery-section { background-attachment: scroll !important; }
}

/* ============================================================
   FIX #38 — STATS SECTION: SOLID BACKGROUND COLOUR
   ============================================================ */
.stats-section {
  background-color: #0d2748 !important;
  background-image: url('../images/Hybrid-Solar-Group_v22.jpg') !important;
  background-attachment: fixed !important;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}
.stats-section__bg { display: none !important; }
/* Strong gradient overlay */
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,39,72,0.92), rgba(19,56,101,0.85));
  z-index: 0;
}
.stats-section .container { position: relative; z-index: 1; }
@media (max-width: 768px) {
  .stats-section { background-attachment: scroll !important; }
}


/* ============================================================
   PART 2 — BASE RESPONSIVE (from css/responsive.css)
   ============================================================ */

/* ============================================================
   HYBRID SOLAR GROUP — Responsive Stylesheet
   ============================================================ */

/* -------- LARGE DESKTOP: 1400px+ -------- */
@media (min-width: 1400px) {
  .hero-heading { font-size: 60px; }
  .sec-title { font-size: 52px; }
}

/* -------- DESKTOP: 1200px–1399px -------- */
@media (min-width: 1200px) {
  .mega-menu { position: fixed; top: auto; }
}

/* -------- TABLET-LANDSCAPE / SMALL DESKTOP: 992px–1199px -------- */
@media (max-width: 1199px) {
  /* Header */
  .nav-hamburger { display: flex; }
  .navbar-collapse { display: none !important; }
  .header-cta { display: none !important; }

  /* Mega menu */
  .mega-menu { display: none !important; }

  /* Hero */
  .hero-heading { font-size: 52px; }
  .hero-float-wrap { display: none; }

  /* About */
  .about-img { height: 440px; }
  .about-badge { right: 0; bottom: 20px; }
  .about-exp-badge { left: 0; top: 20px; }

  /* Why */
  .why-img { height: 420px; }
  .why-float { right: 0; }

  /* Battery */
  .battery-img { height: 420px; }
  .battery-float { right: 0; }

  /* Projects */
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

/* -------- TABLET: 768px–991px -------- */
@media (max-width: 991px) {
  .sec-pad { padding: 72px 0; }
  .sec-title { font-size: clamp(26px, 5vw, 38px); }

  /* Top bar */
  .top-bar__left { gap: 12px; }

  /* Hero */
  .hero-heading { font-size: 44px; }
  .hero-sub { font-size: 16px; }
  .hero-stats { gap: 20px; }
  .hero-stat__num { font-size: 28px; }

  /* About */
  .about-img { height: 380px; }
  .about-counters { gap: 20px; }
  .about-counter__num { font-size: 30px; }

  /* Services */
  .services-swiper { overflow: hidden !important; }

  /* Why */
  .why-img { height: 380px; }

  /* Calculator */
  .calc-section { padding: 72px 0; }

  /* Products */
  .product-card__img { height: 200px; }

  /* Process */
  .process-step { padding: 0 8px; }
  .process-step__icon { width: 60px; height: 60px; font-size: 24px; }

  /* Projects */
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-card { height: 240px; }
  .proj-card__over { opacity: 1; transform: translateY(0); }

  /* Battery */
  .battery-img { height: 360px; }
  .battery-float { bottom: 16px; right: 0; }

  /* Split */
  .split-card { height: 420px; }

  /* Stats */
  .stats-section { padding: 72px 0; }
  .stat-box__num { font-size: 40px; }

  /* Team */
  .team-card__img-wrap { height: 240px; }
  .team-card__social { transform: translateX(-50%) translateY(0); }

  /* Contact CTA */
  .contact-cta-section { padding: 80px 0; }
}

/* -------- LARGE MOBILE: 576px–767px -------- */
@media (max-width: 767px) {
  .sec-pad { padding: 60px 0; }

  /* Top bar — simplify */
  .top-bar { padding: 7px 0; }
  .top-bar__left a:last-of-type { display: none; }

  /* Hero */
  .hero-heading { font-size: 36px; }
  .hero-sub { font-size: 15px; }
  .hero-btns { gap: 12px; }
  .btn-hero-primary { padding: 14px 24px; font-size: 14px; }
  .hero-stats { gap: 16px; }
  .hero-stat__num { font-size: 26px; }
  .hero-stat__div { height: 36px; }

  /* About */
  .about-img { height: 320px; border-radius: 20px; }
  .about-badge { display: none; }
  .about-exp-badge { left: 16px; top: 16px; }
  .about-counters { grid-template-columns: 1fr 1fr; flex-wrap: wrap; }

  /* Calculator */
  .calc-card { padding: 24px; }

  /* Process */
  .process-step { padding: 0; }

  /* Projects */
  .projects-grid { grid-template-columns: 1fr; }
  .proj-card { height: 260px; }

  /* Battery */
  .battery-img { height: 300px; border-radius: 20px; }
  .battery-float { display: none; }

  /* Split */
  .split-card { height: 380px; }

  /* Stats */
  .stat-box__num { font-size: 36px; }
  .stat-box__suf { font-size: 22px; }

  /* Testimonials */
  .testi-card { padding: 24px; }

  /* Contact CTA form */
  .contact-form-card { padding: 24px; }
  .btn-cta-submit { padding: 14px 32px; font-size: 15px; }
  .cta-trust { gap: 16px; }

  /* Footer */
  .footer-top { padding: 60px 0 40px; }

  /* Back to top */
  .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; font-size: 20px; }
}

/* -------- MOBILE: max 575px -------- */
@media (max-width: 575px) {
  .sec-pad { padding: 52px 0; }
  .sec-eyebrow { font-size: 12px; }
  .sec-title { font-size: clamp(24px, 7vw, 32px); }
  .sec-subtitle { font-size: 15px; }

  /* Top bar */
  .top-bar__left .top-bar__link:not(:first-child) { display: none; }
  .top-bar__social { display: none; }

  /* Hero */
  .hero-heading { font-size: 32px; letter-spacing: -0.01em; }
  .hero-sub { font-size: 14px; }
  .btn-hero-primary { padding: 12px 20px; font-size: 14px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-stat__div { display: none; }
  .hero-badge { font-size: 12px; padding: 7px 14px 7px 10px; }

  /* Ticker */
  .ticker-item { font-size: 13px; padding: 0 18px; }

  /* About */
  .about-img { height: 260px; }
  .about-exp-badge { display: none; }
  .about-cta-row { flex-direction: column; }
  .about-cta-row .btn-primary, .about-cta-row .btn-outline { width: 100%; justify-content: center; }

  /* Services */
  .service-card__body { padding: 20px; }

  /* Why */
  .why-img { height: 280px; }
  .why-float { display: none; }
  .cert-badges { gap: 8px; }
  .cert-badge { font-size: 12px; padding: 6px 12px; }

  /* Calc */
  .calc-section { padding: 56px 0; }
  .calc-card { padding: 20px; }
  .calc-card__title { font-size: 18px; }

  /* Products */
  .product-card__img { height: 180px; }
  .product-card__body { padding: 20px; }
  .product-card__body h3 { font-size: 18px; }

  /* Process */
  .process-step__icon { width: 54px; height: 54px; font-size: 22px; border-radius: 16px; }
  .process-step__title { font-size: 16px; }
  .process-step__num { display: none; }

  /* Projects */
  .projects-filter { justify-content: flex-start; }
  .pf-btn { padding: 8px 16px; font-size: 13px; }
  .proj-card { height: 220px; }

  /* Battery */
  .battery-benefit { flex-direction: row; }
  .battery-cta-row { flex-direction: column; }
  .battery-cta-row .btn-primary,
  .battery-cta-row .btn-outline-gold { width: 100%; justify-content: center; }

  /* Split */
  .split-card { height: 340px; }
  .split-card__content { padding: 24px; }
  .split-card__content h3 { font-size: 22px; }

  /* Stats */
  .stats-section { padding: 56px 0; }
  .stat-box__icon { font-size: 28px; }
  .stat-box__num { font-size: 32px; }

  /* Testimonials */
  .testi-card { padding: 20px; }
  .testi-quote { font-size: 14px; }
  .testi-source { display: none; }

  /* Team */
  .team-card__img-wrap { height: 200px; }
  .team-card__body { padding: 18px; }
  .team-card__body h4 { font-size: 16px; }

  /* FAQs */
  .faq-q { font-size: 14px; padding: 16px 18px; }
  .faq-a { padding: 0 18px 16px; font-size: 14px; }

  /* Blog */
  .blog-card__img { height: 180px; }
  .blog-card__body { padding: 18px; }
  .blog-card__title { font-size: 15px; }

  /* Brands */
  .brand-chip { height: 60px; font-size: 14px; }

  /* Contact CTA */
  .contact-cta-section { padding: 60px 0; }
  .contact-form-card { padding: 20px; }
  .btn-cta-submit { width: 100%; justify-content: center; }

  /* Footer */
  .footer-bottom__inner { flex-direction: column; text-align: center; }
  .footer-certs { justify-content: center; }
}

/* -------- OFFCANVAS BREAKPOINT -------- */
@media (max-width: 1199px) {
  .nav-hamburger { display: flex !important; }
}

/* -------- REDUCED MOTION -------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ticker-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* -------- PRINT -------- */
@media print {
  .site-header, .top-bar, .hero-section, .calc-section,
  .contact-cta-section, .back-to-top, .pg-loader,
  .cursor-dot, .cursor-ring, .offcanvas-nav, .offcanvas-overlay { display: none !important; }
  body { background: #fff; color: #000; }
  .sec-alt { background: #f8f8f8; }
}


/* ============================================================
   PART 3 — INNER-PAGE STYLES
   ============================================================ */

/* ============================================================
   1. SPLIT HERO
   ============================================================ */
.rs-hero {
  position: relative;
  /* Fallback offset for the fixed .site-header + .top-bar.
     subpage.js refines this at runtime — see initHeroOffset(). */
  padding: 190px 0 90px;
  background: var(--primary-dark);
  overflow: hidden;
  isolation: isolate;
}

.rs-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.rs-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rs-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(13, 39, 72, 0.96) 0%,
    rgba(13, 39, 72, 0.90) 45%,
    rgba(19, 56, 101, 0.78) 100%
  );
}

/* Soft gold glow behind the copy column */
.rs-hero::before {
  content: '';
  position: absolute;
  top: -160px;
  left: -140px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.20) 0%, rgba(212, 175, 55, 0) 70%);
  pointer-events: none;
  z-index: -1;
}

.rs-hero__content {
  position: relative;
  color: var(--white);
}

.rs-hero__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin: 0 0 20px;
}

.rs-hero__title span {
  color: var(--secondary);
}

.rs-hero__lead {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: 28px;
}

/* — tick list — */
.rs-hero__checks {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  max-width: 560px;
}

.rs-hero__checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.5;
}

.rs-hero__checks i {
  flex-shrink: 0;
  color: var(--secondary);
  font-size: 17px;
  line-height: 1.4;
}

.rs-hero__btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}

/* Ghost button — matches .btn-outline sizing but reads on dark */
.rs-hero .btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--trans);
}

.rs-hero .btn-ghost-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

/* — trust strip under the CTAs — */
.rs-hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
  padding-top: 25px;
  margin-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.rs-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.rs-hero__trust-item i {
  color: var(--secondary);
  font-size: 16px;
}

/* — hero quote form — */
.rs-hero__form {
  position: relative;
}

.rs-hero__form .contact-form-card {
  margin: 0;
  padding: 32px;
  text-align: left;
}

.rs-hero__form-head {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.rs-hero__form-head h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 6px;
}

.rs-hero__form-head p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.rs-hero__form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
}

.rs-hero__form-note i {
  color: var(--secondary);
}

/* Gold "no obligation" flag pinned to the card */
.rs-hero__form-badge {
  position: absolute;
  top: -14px;
  right: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 50px;
  background: var(--secondary);
  color: var(--primary-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}


/* ============================================================
   2. BREADCRUMB
   ============================================================ */
.rs-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13.5px;
  font-weight: 500;
}

.rs-breadcrumb a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition: var(--trans-fast);
}

.rs-breadcrumb a:hover {
  color: var(--secondary);
}

.rs-breadcrumb .sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
}

.rs-breadcrumb .current {
  color: var(--secondary);
  font-weight: 600;
}


/* ============================================================
   3. OVERVIEW
   ============================================================ */
.rs-overview__media {
  position: relative;
  padding-bottom: 40px;
  padding-left: 40px;
}

.rs-overview__img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.rs-overview__img img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.rs-overview__img:hover img {
  transform: scale(1.05);
}

/* Small secondary image, offset bottom-left */
.rs-overview__img-sm {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 210px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--bg);
  box-shadow: var(--shadow-md);
}

.rs-overview__img-sm img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

/* Gold stat badge, top-right of the main image */
.rs-overview__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: var(--secondary);
  color: var(--primary-dark);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.rs-overview__badge strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.rs-overview__badge span {
  display: block;
  margin-top: 4px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* — mini stat grid — */
.rs-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.rs-stat {
  padding: 22px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}

.rs-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.4);
}

.rs-stat__num {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.rs-stat__num .suf {
  font-size: 20px;
  color: var(--secondary);
}

.rs-stat__label {
  margin: 8px 0 0;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
}

/* — inline check list used in copy columns — */
.rs-checks {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}

.rs-checks li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.6;
}

.rs-checks i {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--secondary);
  font-size: 17px;
}


/* ============================================================
   4. BENEFITS
   ============================================================ */
.rs-benefit {
  height: 100%;
  padding: 34px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

/* Gold sweep that grows from the top edge on hover */
.rs-benefit::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.rs-benefit:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.rs-benefit:hover::after {
  transform: scaleX(1);
}

.rs-benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-size: 24px;
  transition: var(--trans);
}

.rs-benefit:hover .rs-benefit__icon {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--primary-dark);
  transform: rotateY(180deg);
}

.rs-benefit__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 10px;
}

.rs-benefit__text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}


/* ============================================================
   5. PACKAGES / WHAT'S INCLUDED
   ============================================================ */
.rs-pkg {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 38px 32px 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}

.rs-pkg:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.rs-pkg__ribbon {
  position: absolute;
  top: 20px;
  right: -6px;
  padding: 7px 16px;
  border-radius: 4px 0 0 4px;
  background: var(--secondary);
  color: var(--primary-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

.rs-pkg__size {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin: 0 0 6px;
}

.rs-pkg__for {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin: 0 0 22px;
}

.rs-pkg__price {
  padding: 16px 0;
  margin-bottom: 22px;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
}

.rs-pkg__price strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--secondary-dark);
  line-height: 1.1;
}

.rs-pkg__price span {
  display: block;
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--text-muted);
}

.rs-pkg__list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 11px;
  flex-grow: 1;
}

.rs-pkg__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.55;
}

.rs-pkg__list i {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--secondary);
  font-size: 15px;
}

.rs-pkg .btn-primary {
  width: 100%;
  justify-content: center;
}

/* — featured tier (navy) — */
.rs-pkg--featured {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: scale(1.04);
}

.rs-pkg--featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.rs-pkg--featured .rs-pkg__size,
.rs-pkg--featured .rs-pkg__list li {
  color: var(--white);
}

.rs-pkg--featured .rs-pkg__for,
.rs-pkg--featured .rs-pkg__price span {
  color: rgba(255, 255, 255, 0.68);
}

.rs-pkg--featured .rs-pkg__price {
  border-color: rgba(255, 255, 255, 0.18);
}

.rs-pkg--featured .rs-pkg__price strong {
  color: var(--secondary);
}

.rs-pkg--featured .btn-primary {
  background: var(--secondary);
  color: var(--primary-dark) !important;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.32);
}

.rs-pkg--featured .btn-primary:hover {
  background: var(--secondary-dark);
}

/* Footnote under the package row */
.rs-pkg-note {
  margin: 34px 0 0;
  font-size: 13.5px;
  color: var(--text-muted);
  text-align: center;
}

.rs-pkg-note i {
  color: var(--secondary);
  margin-right: 6px;
}


/* ============================================================
   6. SAVINGS TABLE
   ============================================================ */
.rs-savings__wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.rs-savings__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 15px;
}

.rs-savings__table thead th {
  padding: 18px 20px;
  background: var(--primary);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: left;
  white-space: nowrap;
}

.rs-savings__table thead th:first-child {
  border-radius: var(--radius-lg) 0 0 0;
}

.rs-savings__table thead th:last-child {
  border-radius: 0 var(--radius-lg) 0 0;
}

.rs-savings__table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease;
}

/* Rows are visible by default — this is real data, so it must survive
   JS or IntersectionObserver being unavailable. subpage.js opts the
   table into the staggered reveal by adding .js-reveal, then adds
   .is-in to each row as it scrolls into view. */
.rs-savings__table.js-reveal tbody tr {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.25s ease;
}

.rs-savings__table.js-reveal tbody tr.is-in {
  opacity: 1;
  transform: translateY(0);
}

.rs-savings__table tbody tr:last-child {
  border-bottom: none;
}

.rs-savings__table tbody tr:hover {
  background: var(--bg-alt);
}

.rs-savings__table td {
  padding: 17px 20px;
  color: var(--text);
  vertical-align: middle;
}

.rs-savings__table td:first-child {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.rs-savings__save {
  font-weight: 700;
  color: var(--secondary-dark);
  white-space: nowrap;
}

.rs-savings__disclaimer {
  margin: 18px 0 0;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--text-muted);
}

.rs-savings__disclaimer i {
  color: var(--secondary);
  margin-right: 6px;
}


/* ============================================================
   7. RESPONSIVE
   Project breakpoints: 1199 / 991 / 767 / 575
   ============================================================ */
@media (max-width: 1199px) {
  .rs-hero {
    padding: 150px 0 72px;
  }

  .rs-overview__media {
    padding-left: 0;
    padding-bottom: 0;
  }

  .rs-overview__img-sm {
    display: none;
  }

  .rs-pkg--featured {
    transform: none;
  }

  .rs-pkg--featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 991px) {
  .rs-hero {
    padding: 140px 0 64px;
  }

  /* Copy first, quote form stacked beneath it */
  .rs-hero__form {
    margin-top: 40px;
  }

  .rs-hero__content {
    text-align: left;
  }

  .rs-overview__img img {
    min-height: 340px;
  }

  .rs-benefit {
    padding: 30px 26px;
  }
}

@media (max-width: 767px) {
  .rs-hero {
    padding: 130px 0 56px;
  }

  .rs-hero__checks {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .rs-hero__btns {
    gap: 10px;
  }

  .rs-hero__btns .btn-primary,
  .rs-hero .btn-ghost-light {
    width: 100%;
    justify-content: center;
  }

  .rs-hero__trust {
    gap: 10px 18px;
  }

  .rs-hero__form .contact-form-card {
    padding: 24px 20px;
  }

  .rs-hero__form-badge {
    right: 12px;
    padding: 8px 14px;
    font-size: 11px;
  }

  .rs-stats {
    gap: 12px;
  }

  .rs-stat {
    padding: 18px 16px;
  }

  .rs-stat__num {
    font-size: 27px;
  }

  .rs-pkg {
    padding: 32px 24px 28px;
  }

  .rs-overview__badge {
    top: 16px;
    right: 16px;
    padding: 14px 16px;
  }

  .rs-overview__badge strong {
    font-size: 23px;
  }
}

@media (max-width: 575px) {
  .rs-hero__title {
    font-size: 30px;
  }

  .rs-hero__lead {
    font-size: 15.5px;
  }

  .rs-breadcrumb {
    font-size: 12.5px;
  }

  .rs-stats {
    grid-template-columns: 1fr;
  }

  .rs-savings__table {
    font-size: 14px;
  }

  .rs-savings__table td,
  .rs-savings__table thead th {
    padding: 14px 16px;
  }
}


/* ============================================================
   8. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .rs-benefit,
  .rs-benefit__icon,
  .rs-benefit::after,
  .rs-pkg,
  .rs-stat,
  .rs-overview__img img,
  .rs-savings__table tbody tr {
    transition: none !important;
  }

  .rs-benefit:hover,
  .rs-pkg:hover,
  .rs-pkg--featured,
  .rs-pkg--featured:hover,
  .rs-stat:hover,
  .rs-overview__img:hover img,
  .rs-benefit:hover .rs-benefit__icon {
    transform: none !important;
  }

  .rs-savings__table.js-reveal tbody tr {
    opacity: 1;
    transform: none;
  }
}


/* ===== CONTACT PAGE ===== */
/* ============================================================
   PART 4 — CONTACT PAGE (.cu-*)
   Used by contact-us/index.html. Same tokens, same conventions
   as PART 3; nothing here is shared with the service page.
   ------------------------------------------------------------
   1.  Banner
   2.  Contact cards
   3.  Form section
   4.  Map
   5.  Service areas
   6.  CTA band
   7.  Responsive
   8.  Reduced motion
   ============================================================ */


/* ============================================================
   1. BANNER
   ============================================================ */
.cu-banner {
  position: relative;
  /* Fallback offset for the fixed header — subpage.js refines it. */
  padding: 190px 0 96px;
  background: var(--primary-dark);
  overflow: hidden;
  isolation: isolate;
}

.cu-banner__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cu-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cu-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 39, 72, 0.94) 0%, rgba(13, 39, 72, 0.88) 100%);
}

.cu-banner::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0) 70%);
  pointer-events: none;
  z-index: -1;
}

.cu-banner__content {
  color: var(--white);
}

.cu-banner__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4.6vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin: 0 0 18px;
}

.cu-banner__lead {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin: 0 auto 32px;
}

.cu-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* .btn-ghost-light is declared in PART 3 scoped to .rs-hero — repeat it here */
.cu-banner .btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--trans);
}

.cu-banner .btn-ghost-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

/* the shared breadcrumb, centred on this page */
.cu-banner .rs-breadcrumb {
  justify-content: center;
}


/* ============================================================
   2. CONTACT CARDS
   ============================================================ */
.cu-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.cu-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

a.cu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

a.cu-card:hover::after {
  transform: scaleX(1);
}

.cu-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-size: 22px;
  transition: var(--trans);
}

a.cu-card:hover .cu-card__icon {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--primary-dark);
}

.cu-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 8px;
}

.cu-card__value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  margin: 0 0 8px;
  overflow-wrap: anywhere;
}

.cu-card__note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 18px;
  flex-grow: 1;
}

.cu-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-dark);
  transition: var(--trans-fast);
}

a.cu-card:hover .cu-card__link {
  gap: 12px;
}

.cu-card__link--muted {
  color: var(--text-muted);
  font-weight: 500;
}


/* ============================================================
   3. FORM SECTION
   ============================================================ */
.cu-form-section {
  position: relative;
  padding: 96px 0;
  background: var(--primary-dark);
  overflow: hidden;
  isolation: isolate;
}

.cu-form-section__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cu-form-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cu-form-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13, 39, 72, 0.96) 0%, rgba(19, 56, 101, 0.86) 100%);
}

.cu-form-section .contact-form-card {
  margin: 0;
  text-align: left;
}

.cu-points {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
  display: grid;
  gap: 12px;
}

.cu-points li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.cu-points i {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--secondary);
  font-size: 17px;
}

.cu-direct {
  display: grid;
  gap: 12px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.cu-direct__item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: var(--trans-fast);
}

.cu-direct__item i {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  color: var(--secondary);
  font-size: 16px;
  transition: var(--trans-fast);
}

.cu-direct__item:hover i {
  background: var(--secondary);
  color: var(--primary-dark);
}

.cu-direct__item span {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  overflow-wrap: anywhere;
}

.cu-direct__item strong {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2px;
}


/* ============================================================
   4. MAP
   ============================================================ */
.cu-map {
  position: relative;
  line-height: 0;
}

.cu-map__frame {
  position: relative;
  height: 460px;
  background: var(--bg-alt);
}

.cu-map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.35) contrast(1.05);
}

.cu-map__fallback {
  padding: 40px 20px;
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.cu-map__badge {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  border-radius: 50px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  line-height: 1.4;
  max-width: calc(100% - 32px);
}

.cu-map__badge i {
  flex-shrink: 0;
  color: var(--secondary);
  font-size: 22px;
}

.cu-map__badge strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

.cu-map__badge span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
}


/* ============================================================
   5. SERVICE AREAS
   ============================================================ */
.cu-areas__search {
  position: relative;
  max-width: 520px;
  margin: 0 auto 40px;
}

.cu-areas__search i {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 17px;
  pointer-events: none;
}

.cu-areas__search input {
  width: 100%;
  padding: 16px 22px 16px 54px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: var(--trans-fast);
}

.cu-areas__search input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.cu-areas__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.cu-area {
  padding: 26px 24px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--secondary);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}

.cu-area:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cu-area h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 8px;
}

.cu-area p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* subpage.js hides non-matching areas while searching */
.cu-area[hidden] {
  display: none;
}

.cu-areas__empty {
  margin: 28px 0 0;
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
}

.cu-areas__empty i {
  color: var(--secondary);
  margin-right: 6px;
}

.cu-areas__empty a {
  color: var(--primary);
  font-weight: 600;
}


/* ============================================================
   6. CTA BAND
   ============================================================ */
.cu-cta {
  padding: 0 0 96px;
}

.cu-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 44px 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: var(--shadow-lg);
}

.cu-cta__copy h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 8px;
}

.cu-cta__copy p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.cu-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  border-radius: 50px;
  background: var(--secondary);
  color: var(--primary-dark);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.32);
  transition: var(--trans);
}

.cu-cta__btn:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  color: var(--primary-dark);
}

.cu-cta__btn i {
  font-size: 22px;
}

.cu-cta__btn span {
  display: flex;
  flex-direction: column;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.1;
}

.cu-cta__btn small {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}


/* ============================================================
   7. RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .cu-banner {
    padding: 150px 0 80px;
  }
}

@media (max-width: 991px) {
  .cu-banner {
    padding: 140px 0 68px;
  }

  .cu-form-section {
    padding: 72px 0;
  }

  .cu-areas__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cu-map__frame {
    height: 380px;
  }

  .cu-cta__inner {
    padding: 36px 32px;
  }
}

@media (max-width: 767px) {
  .cu-banner {
    padding: 130px 0 56px;
  }

  .cu-banner__actions .btn-primary,
  .cu-banner .btn-ghost-light {
    width: 100%;
    justify-content: center;
  }

  .cu-form-section {
    padding: 60px 0;
  }

  .cu-card {
    padding: 28px 24px;
  }

  .cu-areas__grid {
    grid-template-columns: 1fr;
  }

  .cu-map__frame {
    height: 320px;
  }

  .cu-map__badge {
    bottom: 16px;
    padding: 12px 18px;
    gap: 10px;
  }

  .cu-cta {
    padding-bottom: 60px;
  }

  .cu-cta__inner {
    padding: 30px 24px;
    justify-content: center;
    text-align: center;
  }

  .cu-cta__btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .cu-banner__title {
    font-size: 29px;
  }

  .cu-banner__lead {
    font-size: 15.5px;
  }

  .cu-card__value {
    font-size: 18px;
  }
}


/* ============================================================
   8. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .cu-card,
  .cu-card::after,
  .cu-card__icon,
  .cu-area,
  .cu-cta__btn,
  .cu-direct__item i {
    transition: none !important;
  }

  a.cu-card:hover,
  .cu-area:hover,
  .cu-cta__btn:hover,
  .cu-banner .btn-ghost-light:hover {
    transform: none !important;
  }
}


/* ===== MOBILE QUOTE SECTION ===== */
/* ============================================================
   PART 5 — MOBILE QUOTE SECTION (.rs-quote-section)
   The service-page hero form is lifted out of the banner on
   mobile by subpage.js (initHeroFormPlacement) and dropped into
   this section, which sits directly below the banner.

   The section element is created by JS and starts [hidden], so
   it costs nothing on desktop and never appears if JS fails.
   ============================================================ */

.rs-quote-section {
  padding: 48px 0 56px;
  background: var(--bg-alt);
}

.rs-quote-section[hidden] {
  display: none;
}

.rs-quote-section__head {
  text-align: center;
  margin-bottom: 26px;
}

.rs-quote-section__head .sec-eyebrow {
  justify-content: center;
}

.rs-quote-section__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 6vw, 30px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin: 0;
}

/* The form keeps its dark glass card, which reads as a solid
   slate panel against this light section — no restyling of the
   inputs needed, so nothing about the form can break here. */
.rs-quote-section .rs-hero__form {
  margin-top: 0;
}

.rs-quote-section .contact-form-card {
  box-shadow: var(--shadow-lg);
}

/* Badge sits on the card corner; keep it inside the section padding */
.rs-quote-section .rs-hero__form-badge {
  top: -12px;
  right: 14px;
}

/* Once the form has actually moved, drop the now-empty hero column
   so it doesn't leave a gutter gap in the banner. */
@media (max-width: 991px) {
  .rs-hero.js-form-moved .rs-hero__form-col {
    display: none;
  }
}

@media (max-width: 767px) {
  .rs-quote-section {
    padding: 40px 0 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rs-quote-section .contact-form-card {
    transition: none !important;
  }
}

/* =====================================================
   HYBRID SOLAR GROUP - COMMERCIAL PROOF SECTION
   FINAL REPLACEMENT CSS
===================================================== */

.hsg-commercial-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 14px;
  width: 100%;
  margin-top: 24px;
}


/* =====================================================
   LARGE 20+ FEATURE CARD
===================================================== */

.hsg-commercial-proof__main {
  position: relative;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 26px;

  box-sizing: border-box;
  overflow: hidden;

  border-radius: 18px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  background:
    linear-gradient(
      145deg,
      #173f6c 0%,
      #0d3158 48%,
      #092642 100%
    );

  box-shadow:
    0 16px 34px rgba(15, 48, 82, 0.18);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hsg-commercial-proof__main:hover {
  transform: translateY(-5px);

  box-shadow:
    0 22px 42px rgba(15, 48, 82, 0.24);
}


/* SUN ICON */

.hsg-commercial-proof__sun {
  position: absolute;
  top: 22px;
  left: 22px;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(250, 201, 22, 0.12);
  border: 1px solid rgba(250, 201, 22, 0.24);

  color: #fac916;

  font-size: 18px;
}


/* LARGE NUMBER */

.hsg-commercial-proof__number {
  position: relative;

  margin-bottom: 4px;

  color: #ffffff;

  font-size: 64px;
  font-weight: 800;
  line-height: 0.92;

  letter-spacing: -0.05em;

  z-index: 2;
}

.hsg-commercial-proof__number span {
  margin-left: 4px;

  color: #fac916;

  font-size: 28px;
  font-weight: 800;
}


/* YEARS LABEL */

.hsg-commercial-proof__years {
  position: relative;

  margin-top: 8px;
  margin-bottom: 12px;

  color: #fac916;

  font-size: 12px;
  font-weight: 700;

  line-height: 1;

  letter-spacing: 0.14em;

  z-index: 2;
}


/* FEATURE DESCRIPTION */

.hsg-commercial-proof__main p {
  position: relative;

  margin: 0;

  color: rgba(255, 255, 255, 0.82);

  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;

  z-index: 2;
}


/* FEATURE ARROW */

.hsg-commercial-proof__main-arrow {
  position: absolute;

  right: 20px;
  bottom: 20px;

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #fac916;

  color: #0b2e50;

  text-decoration: none;

  font-size: 15px;

  z-index: 3;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.hsg-commercial-proof__main-arrow:hover {
  transform: translate(2px, -2px);

  background: #ffd63a;
}


/* SUBTLE SOLAR PANEL GRAPHIC */

.hsg-commercial-proof__solar-lines {
  position: absolute;

  width: 190px;
  height: 160px;

  top: -18px;
  right: -22px;

  opacity: 0.09;

  transform: rotate(-8deg);

  background:
    linear-gradient(
      90deg,
      transparent 24%,
      rgba(255, 255, 255, 0.9) 25%,
      transparent 26%,
      transparent 49%,
      rgba(255, 255, 255, 0.9) 50%,
      transparent 51%,
      transparent 74%,
      rgba(255, 255, 255, 0.9) 75%,
      transparent 76%
    ),
    linear-gradient(
      0deg,
      transparent 24%,
      rgba(255, 255, 255, 0.9) 25%,
      transparent 26%,
      transparent 49%,
      rgba(255, 255, 255, 0.9) 50%,
      transparent 51%,
      transparent 74%,
      rgba(255, 255, 255, 0.9) 75%,
      transparent 76%
    );

  border: 1px solid rgba(255, 255, 255, 0.5);

  pointer-events: none;
}


/* =====================================================
   RIGHT SIDE
===================================================== */

.hsg-commercial-proof__side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}


/* SMALL CARDS */

.hsg-commercial-proof__small-card {
  position: relative;

  min-height: 118px;

  padding: 20px;

  box-sizing: border-box;

  border-radius: 15px;

  border: 1px solid #e1e6eb;

  background: #ffffff;

  box-shadow:
    0 8px 22px rgba(18, 49, 80, 0.07);

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.hsg-commercial-proof__small-card:hover {
  transform: translateY(-4px);

  border-color: rgba(225, 180, 19, 0.42);

  box-shadow:
    0 14px 30px rgba(18, 49, 80, 0.12);
}


/* TOP ROW */

.hsg-commercial-proof__small-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 11px;
}


/* SMALL ICON */

.hsg-commercial-proof__small-icon {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background: #fff7d6;

  color: #d7ad14;

  font-size: 15px;
}


/* SMALL ARROW */

.hsg-commercial-proof__small-arrow {
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #f7f8fa;

  color: #173e68;

  font-size: 12px;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.hsg-commercial-proof__small-card:hover
.hsg-commercial-proof__small-arrow {
  transform: translate(2px, -2px);

  background: #fff5cb;
}


/* SMALL CARD TITLE */

.hsg-commercial-proof__small-card h3 {
  margin: 0;

  color: #163b63;

  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}


/* GOLD LINE */

.hsg-commercial-proof__line {
  display: block;

  width: 30px;
  height: 2px;

  margin: 10px 0;

  border-radius: 10px;

  background: #e0b318;

  transition: width 0.25s ease;
}

.hsg-commercial-proof__small-card:hover
.hsg-commercial-proof__line {
  width: 48px;
}


/* SMALL DESCRIPTION */

.hsg-commercial-proof__small-card p {
  margin: 0;

  color: #687583;

  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}


/* =====================================================
   BOTTOM WIDE CARD
===================================================== */

.hsg-commercial-proof__wide {
  position: relative;

  grid-column: 1 / -1;

  min-height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 20px 64px 20px 22px;

  box-sizing: border-box;

  border-radius: 15px;

  border: 1px solid #e1e6eb;

  background:
    linear-gradient(
      100deg,
      #fffdf8 0%,
      #ffffff 70%
    );

  box-shadow:
    0 7px 20px rgba(18, 49, 80, 0.06);

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.hsg-commercial-proof__wide:hover {
  transform: translateY(-3px);

  border-color: rgba(225, 180, 19, 0.42);

  box-shadow:
    0 13px 28px rgba(18, 49, 80, 0.1);
}


/* BOTTOM LABEL */

.hsg-commercial-proof__wide-label {
  color: #153a62;

  font-size: 18px;
  font-weight: 700;

  line-height: 1.2;

  text-transform: uppercase;

  letter-spacing: 0.02em;
}


/* BOTTOM ARROW */

.hsg-commercial-proof__wide-arrow {
  margin-left: 12px;

  color: #d9ad11;

  font-size: 15px;
}


/* BOTTOM DESCRIPTION */

.hsg-commercial-proof__wide p {
  flex: 1;

  margin: 0;

  color: #697583;

  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}


/* BOTTOM RIGHT ICON */

.hsg-commercial-proof__wide-icon {
  position: absolute;
  right: 18px;

  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #fff6d0;

  color: #d8ab10;

  font-size: 15px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 800px) {

  .hsg-commercial-proof {
    grid-template-columns: 1fr;
  }

  .hsg-commercial-proof__main {
    grid-row: auto;

    min-height: 220px;
  }

  .hsg-commercial-proof__wide {
    grid-column: auto;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 520px) {

  .hsg-commercial-proof {
    gap: 10px;
  }

  .hsg-commercial-proof__main {
    min-height: 200px;

    padding: 20px;
  }

  .hsg-commercial-proof__number {
    font-size: 50px;
  }

  .hsg-commercial-proof__number span {
    font-size: 23px;
  }

  .hsg-commercial-proof__main p {
    font-size: 13px;
  }

  .hsg-commercial-proof__small-card {
    min-height: 110px;

    padding: 16px;
  }

  .hsg-commercial-proof__small-card h3 {
    font-size: 18px;
  }

  .hsg-commercial-proof__small-card p {
    font-size: 12px;
  }

  .hsg-commercial-proof__wide {
    flex-direction: column;
    align-items: flex-start;

    min-height: auto;

    gap: 6px;

    padding: 17px 52px 17px 17px;
  }

  .hsg-commercial-proof__wide-label {
    font-size: 16px;
  }

  .hsg-commercial-proof__wide p {
    font-size: 12px;
  }

}

/* =====================================================
   MODERN COMMERCIAL SOLAR BENEFITS
===================================================== */

.hsg-modern-benefits {
  position: relative;

  background:
    linear-gradient(
      180deg,
      #f8f6f1 0%,
      #f4f2ed 100%
    );

  overflow: hidden;
}


/* =====================================================
   HEADER
===================================================== */

.hsg-modern-benefits__header {
  max-width: 760px;

  margin: 0 auto 42px;
}


.hsg-modern-benefits__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  margin-bottom: 14px;

  color: #c79a00;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}


.hsg-modern-benefits__eyebrow::before,
.hsg-modern-benefits__eyebrow::after {
  content: "";

  width: 28px;
  height: 1px;

  background: #d6ab16;
}


.hsg-modern-benefits__title {
  margin: 0 0 14px;

  color: #143b65;

  font-size: clamp(30px, 3vw, 44px);
  font-weight: 750;

  line-height: 1.12;

  letter-spacing: -0.035em;
}


.hsg-modern-benefits__subtitle {
  max-width: 700px;

  margin: 0 auto;

  color: #6a7682;

  font-size: 15px;
  line-height: 1.7;
}


/* =====================================================
   GRID
===================================================== */

.hsg-modern-benefits__grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}


/* =====================================================
   CARD
===================================================== */

.hsg-modern-card {
  position: relative;

  min-height: 260px;

  display: flex;
  flex-direction: column;

  padding: 24px 24px 22px;

  box-sizing: border-box;

  border: 1px solid #e1e6eb;
  border-radius: 18px;

  background: #ffffff;

  overflow: hidden;

  box-shadow:
    0 10px 28px rgba(18, 49, 80, 0.07);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


.hsg-modern-card:hover {
  transform: translateY(-7px);

  border-color:
    rgba(214, 171, 20, 0.42);

  box-shadow:
    0 20px 42px rgba(18, 49, 80, 0.13);
}


/* =====================================================
   DECORATIVE CORNER
===================================================== */

.hsg-modern-card__corner {
  position: absolute;

  top: 0;
  left: 0;

  width: 70px;
  height: 70px;

  border-radius: 0 0 42px 0;

  background:
    linear-gradient(
      135deg,
      #f3c619 0%,
      #d8a900 100%
    );

  transform:
    translate(-36px, -36px);

  transition:
    transform 0.3s ease;
}


.hsg-modern-card__corner--navy {
  background:
    linear-gradient(
      135deg,
      #173e68 0%,
      #0b2f55 100%
    );
}


.hsg-modern-card:hover
.hsg-modern-card__corner {
  transform:
    translate(-30px, -30px);
}


/* =====================================================
   ICON
===================================================== */

.hsg-modern-card__icon {
  position: relative;

  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 22px;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      #fff8e5 0%,
      #fbf4e8 100%
    );

  border:
    1px solid #f0e4c5;

  color: #d1a30b;

  font-size: 21px;

  z-index: 2;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}


.hsg-modern-card:hover
.hsg-modern-card__icon {
  transform: translateY(-2px) scale(1.06);

  background: #fff5cc;
}


/* =====================================================
   TITLE
===================================================== */

.hsg-modern-card h3 {
  margin: 0;

  max-width: 280px;

  color: #153c66;

  font-size: 20px;
  font-weight: 700;

  line-height: 1.25;

  letter-spacing: -0.015em;
}


/* =====================================================
   GOLD LINE
===================================================== */

.hsg-modern-card__line {
  display: block;

  width: 38px;
  height: 2px;

  margin: 13px 0 14px;

  border-radius: 10px;

  background: #ddaF11;

  transition:
    width 0.3s ease;
}


.hsg-modern-card:hover
.hsg-modern-card__line {
  width: 62px;
}


/* =====================================================
   TEXT
===================================================== */

.hsg-modern-card p {
  margin: 0;

  padding-right: 8px;

  color: #667482;

  font-size: 15px;
  font-weight: 400;

  line-height: 1.65;
}


/* =====================================================
   ARROW
===================================================== */

.hsg-modern-card__arrow {
  position: absolute;

  right: 18px;
  bottom: 18px;

  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #faf7f0;

  border: 1px solid #eee5d1;

  color: #173f69;

  font-size: 13px;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}


.hsg-modern-card:hover
.hsg-modern-card__arrow {
  transform:
    translate(3px, -3px);

  background: #fac916;

  color: #0b2f55;
}


/* =====================================================
   SUBTLE BOTTOM ACCENT
===================================================== */

.hsg-modern-card::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 0;
  height: 3px;

  background:
    linear-gradient(
      90deg,
      #e4b511,
      #fac916
    );

  transition:
    width 0.35s ease;
}


.hsg-modern-card:hover::after {
  width: 100%;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 992px) {

  .hsg-modern-benefits__grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

  .hsg-modern-benefits__header {
    margin-bottom: 30px;
  }


  .hsg-modern-benefits__title {
    font-size: 29px;
  }


  .hsg-modern-benefits__subtitle {
    font-size: 13px;
  }


  .hsg-modern-benefits__grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }


  .hsg-modern-card {
    min-height: 220px;

    padding: 21px;
  }


  .hsg-modern-card h3 {
    font-size: 18px;
  }


  .hsg-modern-card p {
    font-size: 12px;
  }


  .hsg-modern-card__icon {
    width: 48px;
    height: 48px;

    font-size: 19px;

    margin-bottom: 18px;
  }

}


/* =========================================================
   HYBRID SOLAR GROUP
   COMMERCIAL SOLAR SYSTEM ANATOMY
========================================================= */


/* =========================================================
   SECTION
========================================================= */

.hsg-system {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.hsg-system__header {
  max-width: 820px;
  margin: 0 auto 46px;
}


.hsg-system__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  margin-bottom: 13px;

  color: #c69b00;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}


.hsg-system__eyebrow::before,
.hsg-system__eyebrow::after {
  content: "";

  width: 28px;
  height: 1px;

  background: #d9ae16;
}


.hsg-system__title {
  margin: 0 0 14px;

  color: #153d67;

  font-size: clamp(31px, 3.2vw, 46px);
  font-weight: 750;

  line-height: 1.1;
  letter-spacing: -0.035em;
}


.hsg-system__subtitle {
  max-width: 720px;
  margin: 0 auto;

  color: #687684;

  font-size: 15px;
  line-height: 1.7;
}


/* =========================================================
   MAIN SYSTEM MAP
========================================================= */

.hsg-system-map {
  position: relative;

  padding: 34px;

  border: 1px solid #e3e7eb;
  border-radius: 24px;

  background:
    radial-gradient(
      circle at 50% 46%,
      rgba(250, 201, 22, 0.07),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      #fbfbfa 0%,
      #f6f5f1 100%
    );

  box-shadow:
    0 16px 42px rgba(18, 49, 80, 0.07);

  overflow: hidden;
}


/* subtle grid background */

.hsg-system-map::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(20, 59, 99, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(20, 59, 99, 0.025) 1px,
      transparent 1px
    );

  background-size: 30px 30px;

  pointer-events: none;
}


/* centre glow */

.hsg-system-map__glow {
  position: absolute;

  width: 430px;
  height: 430px;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(250, 201, 22, 0.10),
      transparent 68%
    );

  pointer-events: none;
}


/* =========================================================
   GENERAL SYSTEM CARDS
========================================================= */

.hsg-system-node {
  position: relative;

  display: flex;
  align-items: flex-start;

  gap: 15px;

  padding: 20px;

  box-sizing: border-box;

  border: 1px solid #e0e5ea;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.97);

  box-shadow:
    0 8px 24px rgba(18, 49, 80, 0.07);

  z-index: 2;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


.hsg-system-node:hover {
  transform: translateY(-5px);

  border-color: rgba(215, 173, 18, 0.45);

  box-shadow:
    0 17px 36px rgba(18, 49, 80, 0.12);
}


/* =========================================================
   CARD ICONS
========================================================= */

.hsg-system-node__icon {
  flex: 0 0 46px;

  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: #fff6d5;

  color: #d4a70b;

  font-size: 19px;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}


.hsg-system-node:hover .hsg-system-node__icon {
  transform: scale(1.08);

  background: #ffefae;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.hsg-system-node__content {
  min-width: 0;
}


.hsg-system-node__label {
  display: block;

  margin-bottom: 5px;

  color: #c29800;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.13em;
  text-transform: uppercase;
}


.hsg-system-node h3 {
  margin: 0 0 7px;

  color: #173e68;

  font-size: 18px;
  font-weight: 700;

  line-height: 1.25;
}


.hsg-system-node p {
  margin: 0;

  color: #687684;

  font-size: 16px;
  line-height: 1.6;
}


/* =========================================================
   SOLAR PANELS - TOP CARD
========================================================= */

.hsg-system-node--solar {
  max-width: 410px;

  margin: 0 auto;

  align-items: center;

  background:
    linear-gradient(
      135deg,
      #fffdf7 0%,
      #ffffff 100%
    );

  border-color: #eadfae;
}


.hsg-system-node--solar .hsg-system-node__icon {
  width: 52px;
  height: 52px;

  flex-basis: 52px;

  border-radius: 50%;

  font-size: 22px;
}


/* =========================================================
   CONNECTORS
========================================================= */

.hsg-connector {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #d0a30b;

  z-index: 1;
}


/* vertical connector */

.hsg-connector--top,
.hsg-connector--bottom {
  width: 22px;
  height: 48px;

  margin: 0 auto;

  flex-direction: column;
}


.hsg-connector--top span,
.hsg-connector--bottom span {
  width: 1px;

  flex: 1;

  background:
    linear-gradient(
      180deg,
      #e2b716,
      rgba(226, 183, 22, 0.25)
    );
}


.hsg-connector--top i,
.hsg-connector--bottom i {
  margin-top: -2px;

  font-size: 11px;
}


/* horizontal connector */

.hsg-connector--horizontal {
  width: 54px;
}


.hsg-connector--horizontal span {
  width: 100%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(226, 183, 22, 0.25),
      #e2b716
    );
}


.hsg-connector--horizontal i {
  margin-left: -5px;

  font-size: 11px;
}


/* =========================================================
   MIDDLE AREA
========================================================= */

.hsg-system-map__middle {
  position: relative;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    54px
    minmax(290px, 1.12fr)
    54px
    minmax(0, 1fr);

  align-items: center;

  z-index: 2;
}


/* =========================================================
   SIDE CARDS
========================================================= */

.hsg-system-node--side {
  min-height: 150px;

  align-items: flex-start;
}


/* =========================================================
   CENTRAL BUSINESS CARD
========================================================= */

.hsg-system-business {
  position: relative;

  min-height: 250px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  padding: 30px;

  box-sizing: border-box;

  text-align: center;

  border-radius: 20px;

  background:
    linear-gradient(
      145deg,
      #173f6c 0%,
      #0d3158 52%,
      #092641 100%
    );

  box-shadow:
    0 18px 40px rgba(13, 48, 82, 0.24);

  overflow: hidden;

  z-index: 3;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.hsg-system-business:hover {
  transform: translateY(-5px);

  box-shadow:
    0 25px 48px rgba(13, 48, 82, 0.30);
}


/* =========================================================
   BUSINESS BACKGROUND PATTERN
========================================================= */

.hsg-system-business__pattern {
  position: absolute;

  width: 220px;
  height: 170px;

  right: -65px;
  top: -55px;

  opacity: 0.07;

  transform: rotate(-8deg);

  background:
    linear-gradient(
      90deg,
      transparent 24%,
      #ffffff 25%,
      transparent 26%,
      transparent 49%,
      #ffffff 50%,
      transparent 51%,
      transparent 74%,
      #ffffff 75%,
      transparent 76%
    ),
    linear-gradient(
      0deg,
      transparent 32%,
      #ffffff 33%,
      transparent 34%,
      transparent 65%,
      #ffffff 66%,
      transparent 67%
    );

  border: 1px solid rgba(255, 255, 255, 0.8);

  pointer-events: none;
}


/* =========================================================
   BUSINESS ICON
========================================================= */

.hsg-system-business__icon {
  position: relative;

  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 13px;

  border-radius: 14px;

  background: rgba(250, 201, 22, 0.13);

  border: 1px solid rgba(250, 201, 22, 0.22);

  color: #fac916;

  font-size: 23px;

  z-index: 2;
}


/* =========================================================
   BUSINESS CONTENT
========================================================= */

.hsg-system-business__label {
  position: relative;

  margin-bottom: 7px;

  color: #fac916;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.15em;

  z-index: 2;
}


.hsg-system-business h3 {
  position: relative;

  margin: 0 0 12px;

  color: #ffffff;

  font-size: 27px;
  font-weight: 700;

  line-height: 1.15;

  z-index: 2;
}


/* =========================================================
   BUSINESS TYPE PILLS
========================================================= */

.hsg-system-business__types {
  position: relative;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 6px;

  margin-bottom: 14px;

  z-index: 2;
}


.hsg-system-business__types span {
  padding: 5px 9px;

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.07);

  color: rgba(255, 255, 255, 0.84);

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.04em;

  text-transform: uppercase;
}


.hsg-system-business p {
  position: relative;

  max-width: 330px;

  margin: 0;

  color: rgba(255, 255, 255, 0.75);

  font-size: 12px;
  line-height: 1.6;

  z-index: 2;
}


/* =========================================================
   BOTTOM COMPONENTS
========================================================= */

.hsg-system-map__bottom {
  position: relative;

  max-width: 780px;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 16px;

  margin: 0 auto;

  z-index: 2;
}


.hsg-system-node--bottom {
  min-height: 125px;
}


/* =========================================================
   PROJECT DELIVERY PROCESS
========================================================= */

.hsg-system-process {
  position: relative;

  display: grid;

  grid-template-columns:
    190px 1fr auto;

  align-items: center;

  gap: 25px;

  margin-top: 22px;

  padding: 25px;

  border: 1px solid #e3e4df;
  border-radius: 18px;

  background:
    linear-gradient(
      110deg,
      #f8f6ef 0%,
      #ffffff 65%
    );

  box-shadow:
    0 10px 28px rgba(18, 49, 80, 0.05);
}


/* =========================================================
   PROCESS INTRO
========================================================= */

.hsg-system-process__intro span {
  display: block;

  margin-bottom: 6px;

  color: #c29800;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.13em;
}


.hsg-system-process__intro h3 {
  margin: 0;

  color: #173e68;

  font-size: 18px;
  font-weight: 700;

  line-height: 1.3;
}


/* =========================================================
   PROCESS STEPS
========================================================= */

.hsg-system-process__steps {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 10px;
}


.hsg-process-step {
  display: flex;

  align-items: center;

  gap: 9px;
}


.hsg-process-step__icon {
  flex: 0 0 36px;

  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background: #fff4c8;

  color: #c99e04;

  font-size: 15px;
}


.hsg-process-step strong {
  display: block;

  margin-bottom: 3px;

  color: #193f67;

  font-size: 11px;
  font-weight: 700;
}


.hsg-process-step span {
  display: block;

  color: #7a858f;

  font-size: 9px;

  line-height: 1.35;
}


.hsg-process-arrow {
  color: #d7aa0d;

  font-size: 13px;
}


/* =========================================================
   PROCESS CTA
========================================================= */

.hsg-system-process__cta {
  min-height: 46px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  padding: 0 19px;

  border-radius: 10px;

  background:
    linear-gradient(
      135deg,
      #f2c51b,
      #dfad00
    );

  color: #12375f;

  font-size: 11px;
  font-weight: 700;

  text-decoration: none;

  white-space: nowrap;

  box-shadow:
    0 7px 18px rgba(210, 166, 0, 0.18);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.hsg-system-process__cta:hover {
  transform: translateY(-3px);

  color: #12375f;

  box-shadow:
    0 12px 24px rgba(210, 166, 0, 0.25);
}


.hsg-system-process__cta i {
  transition: transform 0.25s ease;
}


.hsg-system-process__cta:hover i {
  transform: translate(2px, -2px);
}


/* =========================================================
   DESKTOP / SMALL LAPTOP
========================================================= */

@media (max-width: 1100px) {

  .hsg-system-map__middle {
    grid-template-columns:
      minmax(0, 1fr)
      35px
      minmax(250px, 1fr)
      35px
      minmax(0, 1fr);
  }


  .hsg-connector--horizontal {
    width: 35px;
  }


  .hsg-system-process {
    grid-template-columns: 1fr;
  }


  .hsg-system-process__intro {
    text-align: center;
  }


  .hsg-system-process__cta {
    justify-self: center;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

  .hsg-system-map {
    padding: 25px;
  }


  .hsg-system-map__middle {
    display: grid;

    grid-template-columns: 1fr;

    gap: 14px;
  }


  /* Put business card first */

  .hsg-system-business {
    grid-row: 1;

    min-height: 225px;
  }


  .hsg-connector--horizontal {
    display: none;
  }


  .hsg-system-node--side {
    min-height: auto;
  }


  .hsg-system-map__bottom {
    grid-template-columns: 1fr;
  }


  .hsg-system-process__steps {
    flex-wrap: wrap;

    gap: 14px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .hsg-system__header {
    margin-bottom: 30px;
  }


  .hsg-system__title {
    font-size: 29px;
  }


  .hsg-system__subtitle {
    font-size: 13px;
  }


  .hsg-system-map {
    padding: 16px;

    border-radius: 18px;
  }


  .hsg-system-node--solar {
    align-items: flex-start;
  }


  .hsg-system-node {
    padding: 16px;
  }


  .hsg-system-node__icon {
    width: 42px;
    height: 42px;

    flex-basis: 42px;

    font-size: 17px;
  }


  .hsg-system-node h3 {
    font-size: 16px;
  }


  .hsg-system-node p {
    font-size: 11px;
  }


  .hsg-system-business {
    min-height: 225px;

    padding: 22px 18px;
  }


  .hsg-system-business h3 {
    font-size: 24px;
  }


  .hsg-system-business p {
    font-size: 11px;
  }


  .hsg-system-business__types span {
    font-size: 8px;

    padding: 4px 7px;
  }


  .hsg-system-process {
    padding: 18px;
  }


  .hsg-system-process__steps {
    display: grid;

    grid-template-columns: 1fr;

    width: 100%;
  }


  .hsg-process-arrow {
    display: none;
  }


  .hsg-process-step {
    padding: 9px 0;

    border-bottom: 1px solid #ece9df;
  }


  .hsg-process-step:last-of-type {
    border-bottom: 0;
  }


  .hsg-process-step strong {
    font-size: 12px;
  }


  .hsg-process-step span {
    font-size: 9px;
  }


  .hsg-system-process__cta {
    width: 100%;

    box-sizing: border-box;
  }

}
/* =========================================================
   HSG COMMERCIAL SOLAR
   FONT SIZE / READABILITY OVERRIDE
   Paste at the END of your CSS
========================================================= */


/* SECTION HEADER */

.hsg-system__eyebrow {
  font-size: 12px;
  letter-spacing: 0.15em;
}

.hsg-system__title {
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.12;
}

.hsg-system__subtitle {
  max-width: 780px;
  font-size: 15px;
  line-height: 1.7;
}


/* =========================================
   SYSTEM CARDS
========================================= */

.hsg-system-node {
  padding: 22px;
}

.hsg-system-node__label {
  font-size: 10px;
  line-height: 1.3;
  letter-spacing: 0.12em;
  margin-bottom: 7px;
}

.hsg-system-node h3 {
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.hsg-system-node p {
  font-size: 15px;
  line-height: 1.6;
}


/* =========================================
   CARD ICONS
========================================= */

.hsg-system-node__icon {
  width: 50px;
  height: 50px;
  flex-basis: 50px;
  font-size: 20px;
}

.hsg-system-node--solar .hsg-system-node__icon {
  width: 56px;
  height: 56px;
  flex-basis: 56px;
  font-size: 24px;
}


/* =========================================
   CENTRAL "YOUR BUSINESS" CARD
========================================= */

.hsg-system-business__label {
  font-size: 10px;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.hsg-system-business h3 {
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.hsg-system-business p {
  max-width: 360px;
  font-size: 14px;
  line-height: 1.65;
}


/* BUSINESS TYPE PILLS */

.hsg-system-business__types {
  gap: 7px;
  margin-bottom: 15px;
}

.hsg-system-business__types span {
  padding: 6px 10px;
  font-size: 10px;
  line-height: 1;
}


/* =========================================
   PROCESS SECTION
========================================= */

.hsg-system-process__intro span {
  font-size: 10px;
  line-height: 1.3;
}

.hsg-system-process__intro h3 {
  font-size: 20px;
  line-height: 1.3;
}


/* PROCESS STEPS */

.hsg-process-step strong {
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 4px;
}

.hsg-process-step span {
  font-size: 11px;
  line-height: 1.4;
}

.hsg-process-step__icon {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
  font-size: 16px;
}


/* =========================================
   CTA
========================================= */

.hsg-system-process__cta {
  min-height: 48px;
  padding: 0 21px;
  font-size: 13px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

  .hsg-system__subtitle {
    font-size: 15px;
  }

  .hsg-system-node h3 {
    font-size: 19px;
  }

  .hsg-system-node p {
    font-size: 13.5px;
  }

  .hsg-system-business h3 {
    font-size: 28px;
  }

  .hsg-system-business p {
    font-size: 13.5px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .hsg-system__eyebrow {
    font-size: 10px;
  }

  .hsg-system__title {
    font-size: 29px;
  }

  .hsg-system__subtitle {
    font-size: 14px;
    line-height: 1.65;
  }

  .hsg-system-node__label {
    font-size: 9px;
  }

  .hsg-system-node h3 {
    font-size: 18px;
  }

  .hsg-system-node p {
    font-size: 13px;
    line-height: 1.6;
  }

  .hsg-system-business__label {
    font-size: 9px;
  }

  .hsg-system-business h3 {
    font-size: 26px;
  }

  .hsg-system-business p {
    font-size: 13px;
  }

  .hsg-system-business__types span {
    font-size: 9px;
  }

  .hsg-process-step strong {
    font-size: 13px;
  }

  .hsg-process-step span {
    font-size: 11px;
  }

  .hsg-system-process__cta {
    font-size: 13px;
  }

}

/* =====================================================
   COMMERCIAL SOLAR PROJECT PROCESS
   Unique classes - safe from existing process styles
===================================================== */

.hsg-commercial-process {
  position: relative;

  background:
    linear-gradient(
      180deg,
      #f7f5f0 0%,
      #f4f2ec 100%
    );

  overflow: hidden;
}


/* =====================================================
   HEADER
===================================================== */

.hsg-commercial-process__header {
  max-width: 800px;

  margin: 0 auto 46px;
}


.hsg-commercial-process__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  margin-bottom: 13px;

  color: #c59a00;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}


.hsg-commercial-process__eyebrow::before,
.hsg-commercial-process__eyebrow::after {
  content: "";

  width: 28px;
  height: 1px;

  background: #d7ad16;
}


.hsg-commercial-process__title {
  margin: 0 0 14px;

  color: #153d67;

  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 750;

  line-height: 1.12;

  letter-spacing: -0.035em;
}


.hsg-commercial-process__subtitle {
  max-width: 720px;

  margin: 0 auto;

  color: #687684;

  font-size: 15px;

  line-height: 1.7;
}


/* =====================================================
   MAIN PROCESS FRAME
===================================================== */

.hsg-commercial-process__frame {
  position: relative;

  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 16px;


  
}


/* subtle horizontal connection line */

.hsg-commercial-process__line {
  position: absolute;

  top: 54px;

  left: 10%;
  right: 10%;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(211, 169, 13, 0.35),
      rgba(211, 169, 13, 0.55),
      rgba(211, 169, 13, 0.35),
      transparent
    );

  z-index: 0;
}


/* =====================================================
   STEP CARDS
===================================================== */

.hsg-commercial-step {
  position: relative;

  min-height: 325px;

  display: flex;
  flex-direction: column;

  padding: 22px;

  box-sizing: border-box;

  border: 1px solid #e6e9ec;

  border-radius: 18px;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fdfdfc 100%
    );

  z-index: 1;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


.hsg-commercial-step:hover {
  transform: translateY(-7px);

  border-color:
    rgba(213, 169, 11, 0.42);

  box-shadow:
    0 18px 35px rgba(18, 49, 80, 0.11);
}


/* gold bottom reveal */

.hsg-commercial-step::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 0;
  height: 3px;

  background:
    linear-gradient(
      90deg,
      #d9aa0a,
      #fac916
    );

  transition: width 0.35s ease;
}


.hsg-commercial-step:hover::after {
  width: 100%;
}


/* final step subtle highlight */

.hsg-commercial-step--final {
  background:
    linear-gradient(
      145deg,
      #fffaf0 0%,
      #ffffff 65%
    );

  border-color: #eadfab;
}


/* =====================================================
   STEP TOP
===================================================== */

.hsg-commercial-step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 24px;
}


/* icon */

.hsg-commercial-step__icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: #fff4c9;

  color: #c99d05;

  font-size: 20px;

  box-shadow:
    0 6px 16px rgba(199, 157, 5, 0.08);

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}


.hsg-commercial-step:hover
.hsg-commercial-step__icon {
  transform: scale(1.08);

  background: #ffe999;
}


/* number */

.hsg-commercial-step__number {
  color: #e2e6ea;

  font-size: 34px;
  font-weight: 800;

  line-height: 1;

  letter-spacing: -0.05em;
}


/* =====================================================
   STEP CONTENT
===================================================== */

.hsg-commercial-step__label {
  display: block;

  margin-bottom: 7px;

  color: #c29800;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}


.hsg-commercial-step h3 {
  margin: 0 0 11px;

  color: #163d67;

  font-size: 20px;
  font-weight: 700;

  line-height: 1.25;
}


.hsg-commercial-step > p {
  margin: 0;

  color: #687583;

  font-size: 13px;

  line-height: 1.62;
}


/* =====================================================
   MINI DETAILS
===================================================== */

.hsg-commercial-step__detail {
  display: flex;
  flex-direction: column;

  gap: 7px;

  margin-top: auto;

  padding-top: 19px;
}


.hsg-commercial-step__detail span {
  display: flex;
  align-items: center;

  gap: 7px;

  color: #4f6172;

  font-size: 11px;
  font-weight: 500;
}


.hsg-commercial-step__detail i {
  color: #d2a508;

  font-size: 13px;
}


/* =====================================================
   BOTTOM CTA FRAME
===================================================== */

.hsg-commercial-process__cta {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  margin-top: 20px;

  padding: 24px 26px;

  border-radius: 18px;

  background:
    linear-gradient(
      120deg,
      #153e68 0%,
      #0b2f55 100%
    );

  overflow: hidden;

  box-shadow:
    0 15px 35px rgba(13, 48, 82, 0.18);
}


/* subtle decorative circle */

.hsg-commercial-process__cta::after {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  right: 170px;
  top: -100px;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.05);

  box-shadow:
    0 0 0 25px rgba(255,255,255,0.02),
    0 0 0 50px rgba(255,255,255,0.01);

  pointer-events: none;
}


/* CTA COPY */

.hsg-commercial-process__cta-copy {
  position: relative;

  max-width: 650px;

  z-index: 2;
}


.hsg-commercial-process__cta-copy > span {
  display: block;

  margin-bottom: 5px;

  color: #fac916;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.13em;
}


.hsg-commercial-process__cta-copy h3 {
  margin: 0 0 6px;

  color: #ffffff;

  font-size: 22px;
  font-weight: 700;

  line-height: 1.25;
}


.hsg-commercial-process__cta-copy p {
  margin: 0;

  color: rgba(255,255,255,0.68);

  font-size: 12px;

  line-height: 1.55;
}


/* =====================================================
   CTA BUTTON
===================================================== */

.hsg-commercial-process__button {
  position: relative;

  min-height: 50px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 13px;

  padding: 0 11px 0 19px;

  border-radius: 12px;

  background:
    linear-gradient(
      135deg,
      #ffd32b,
      #edb900
    );

  color: #0c3155;

  text-decoration: none;

  font-size: 12px;
  font-weight: 700;

  white-space: nowrap;

  box-shadow:
    0 10px 22px rgba(236, 184, 0, 0.20);

  z-index: 2;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.hsg-commercial-process__button:hover {
  transform: translateY(-3px);

  color: #0c3155;

  box-shadow:
    0 15px 28px rgba(236, 184, 0, 0.28);
}


/* button icon */

.hsg-commercial-process__button-icon {
  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background: rgba(12,49,85,0.10);

  transition: transform 0.25s ease;
}


.hsg-commercial-process__button:hover
.hsg-commercial-process__button-icon {
  transform: translate(2px, -2px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 992px) {

  .hsg-commercial-process__frame {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }


  .hsg-commercial-process__line {
    display: none;
  }


  .hsg-commercial-step {
    min-height: 300px;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

  .hsg-commercial-process__header {
    margin-bottom: 30px;
  }


  .hsg-commercial-process__title {
    font-size: 29px;
  }


  .hsg-commercial-process__subtitle {
    font-size: 13px;
  }


  .hsg-commercial-process__frame {
    grid-template-columns: 1fr;

    padding: 12px;

    border-radius: 18px;
  }


  .hsg-commercial-step {
    min-height: auto;

    padding: 20px;
  }


  .hsg-commercial-step h3 {
    font-size: 19px;
  }


  .hsg-commercial-step > p {
    font-size: 12.5px;
  }


  .hsg-commercial-process__cta {
    flex-direction: column;
    align-items: flex-start;

    padding: 22px;
  }


  .hsg-commercial-process__cta-copy h3 {
    font-size: 20px;
  }


  .hsg-commercial-process__button {
    width: 100%;

    box-sizing: border-box;
  }

}
/* =========================================================
   COMMERCIAL PROCESS - LARGER TEXT OVERRIDE
   Paste at the VERY END of your CSS
========================================================= */


/* ---------- Section Header ---------- */

.hsg-commercial-process__eyebrow {
  font-size: 12px;
}

.hsg-commercial-process__title {
  font-size: clamp(36px, 3.2vw, 50px);
  line-height: 1.12;
}

.hsg-commercial-process__subtitle {
  max-width: 780px;
  font-size: 17px;
  line-height: 1.7;
}


/* ---------- Step Cards ---------- */

.hsg-commercial-step {
  padding: 24px;
}

.hsg-commercial-step__label {
  font-size: 11px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.hsg-commercial-step h3 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.hsg-commercial-step > p {
  font-size: 15px;
  line-height: 1.65;
}


/* ---------- Step Number ---------- */

.hsg-commercial-step__number {
  font-size: 38px;
}


/* ---------- Icons ---------- */

.hsg-commercial-step__icon {
  width: 52px;
  height: 52px;
  font-size: 21px;
}


/* ---------- Small Feature Points ---------- */

.hsg-commercial-step__detail {
  gap: 9px;
  padding-top: 20px;
}

.hsg-commercial-step__detail span {
  font-size: 13px;
  line-height: 1.4;
}

.hsg-commercial-step__detail i {
  font-size: 15px;
}


/* ---------- Bottom CTA ---------- */

.hsg-commercial-process__cta {
  padding: 27px 30px;
}

.hsg-commercial-process__cta-copy > span {
  font-size: 11px;
}

.hsg-commercial-process__cta-copy h3 {
  font-size: 25px;
  line-height: 1.25;
  margin-bottom: 7px;
}

.hsg-commercial-process__cta-copy p {
  font-size: 14px;
  line-height: 1.6;
}


/* ---------- CTA Button ---------- */

.hsg-commercial-process__button {
  min-height: 54px;
  padding: 0 12px 0 22px;
  font-size: 14px;
}

.hsg-commercial-process__button-icon {
  width: 35px;
  height: 35px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

  .hsg-commercial-process__title {
    font-size: 38px;
  }

  .hsg-commercial-process__subtitle {
    font-size: 16px;
  }

  .hsg-commercial-step h3 {
    font-size: 21px;
  }

  .hsg-commercial-step > p {
    font-size: 14.5px;
  }

  .hsg-commercial-step__detail span {
    font-size: 12.5px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .hsg-commercial-process__eyebrow {
    font-size: 10px;
  }

  .hsg-commercial-process__title {
    font-size: 30px;
  }

  .hsg-commercial-process__subtitle {
    font-size: 15px;
    line-height: 1.65;
  }

  .hsg-commercial-step__label {
    font-size: 10px;
  }

  .hsg-commercial-step h3 {
    font-size: 20px;
  }

  .hsg-commercial-step > p {
    font-size: 14px;
  }

  .hsg-commercial-step__detail span {
    font-size: 12px;
  }

  .hsg-commercial-process__cta-copy > span {
    font-size: 10px;
  }

  .hsg-commercial-process__cta-copy h3 {
    font-size: 22px;
  }

  .hsg-commercial-process__cta-copy p {
    font-size: 13px;
  }

  .hsg-commercial-process__button {
    font-size: 14px;
  }

}

/* ===== CONTACT PAGE ===== */
/* ============================================================
   PART 4 — CONTACT PAGE (.cu-*)
   Used by contact-us/index.html. Same tokens, same conventions
   as PART 3; nothing here is shared with the service page.
   ------------------------------------------------------------
   1.  Banner
   2.  Contact cards
   3.  Form section
   4.  Map
   5.  Service areas
   6.  CTA band
   7.  Responsive
   8.  Reduced motion
   ============================================================ */


/* ============================================================
   1. BANNER
   ============================================================ */
.cu-banner {
  position: relative;
  /* Fallback offset for the fixed header — subpage.js refines it. */
  padding: 190px 0 96px;
  background: var(--primary-dark);
  overflow: hidden;
  isolation: isolate;
}

.cu-banner__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cu-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cu-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 39, 72, 0.94) 0%, rgba(13, 39, 72, 0.88) 100%);
}

.cu-banner::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0) 70%);
  pointer-events: none;
  z-index: -1;
}

.cu-banner__content {
  color: var(--white);
}

.cu-banner__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4.6vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin: 0 0 18px;
}

.cu-banner__lead {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin: 0 auto 32px;
}

.cu-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* .btn-ghost-light is declared in PART 3 scoped to .rs-hero — repeat it here */
.cu-banner .btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--trans);
}

.cu-banner .btn-ghost-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

/* the shared breadcrumb, centred on this page */
.cu-banner .rs-breadcrumb {
  justify-content: center;
}


/* ============================================================
   2. CONTACT CARDS
   ============================================================ */
.cu-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.cu-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

a.cu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

a.cu-card:hover::after {
  transform: scaleX(1);
}

.cu-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-size: 22px;
  transition: var(--trans);
}

a.cu-card:hover .cu-card__icon {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--primary-dark);
}

.cu-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 8px;
}

.cu-card__value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  margin: 0 0 8px;
  overflow-wrap: anywhere;
}

.cu-card__note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 18px;
  flex-grow: 1;
}

.cu-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-dark);
  transition: var(--trans-fast);
}

a.cu-card:hover .cu-card__link {
  gap: 12px;
}

.cu-card__link--muted {
  color: var(--text-muted);
  font-weight: 500;
}


/* ============================================================
   3. FORM SECTION
   ============================================================ */
.cu-form-section {
  position: relative;
  padding: 96px 0;
  background: var(--primary-dark);
  overflow: hidden;
  isolation: isolate;
}

.cu-form-section__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cu-form-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cu-form-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13, 39, 72, 0.96) 0%, rgba(19, 56, 101, 0.86) 100%);
}

.cu-form-section .contact-form-card {
  margin: 0;
  text-align: left;
}

.cu-points {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
  display: grid;
  gap: 12px;
}

.cu-points li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.cu-points i {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--secondary);
  font-size: 17px;
}

.cu-direct {
  display: grid;
  gap: 12px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.cu-direct__item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: var(--trans-fast);
}

.cu-direct__item i {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  color: var(--secondary);
  font-size: 16px;
  transition: var(--trans-fast);
}

.cu-direct__item:hover i {
  background: var(--secondary);
  color: var(--primary-dark);
}

.cu-direct__item span {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  overflow-wrap: anywhere;
}

.cu-direct__item strong {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2px;
}


/* ============================================================
   4. MAP
   ============================================================ */
.cu-map {
  position: relative;
  line-height: 0;
}

.cu-map__frame {
  position: relative;
  height: 460px;
  background: var(--bg-alt);
}

.cu-map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.35) contrast(1.05);
}

.cu-map__fallback {
  padding: 40px 20px;
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.cu-map__badge {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  border-radius: 50px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  line-height: 1.4;
  max-width: calc(100% - 32px);
}

.cu-map__badge i {
  flex-shrink: 0;
  color: var(--secondary);
  font-size: 22px;
}

.cu-map__badge strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

.cu-map__badge span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
}


/* ============================================================
   5. SERVICE AREAS
   ============================================================ */
.cu-areas__search {
  position: relative;
  max-width: 520px;
  margin: 0 auto 40px;
}

.cu-areas__search i {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 17px;
  pointer-events: none;
}

.cu-areas__search input {
  width: 100%;
  padding: 16px 22px 16px 54px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: var(--trans-fast);
}

.cu-areas__search input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.cu-areas__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.cu-area {
  padding: 26px 24px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--secondary);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}

.cu-area:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cu-area h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 8px;
}

.cu-area p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* subpage.js hides non-matching areas while searching */
.cu-area[hidden] {
  display: none;
}

.cu-areas__empty {
  margin: 28px 0 0;
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
}

.cu-areas__empty i {
  color: var(--secondary);
  margin-right: 6px;
}

.cu-areas__empty a {
  color: var(--primary);
  font-weight: 600;
}


/* ============================================================
   6. CTA BAND
   ============================================================ */
.cu-cta {
  padding: 0 0 96px;
}

.cu-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 44px 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: var(--shadow-lg);
}

.cu-cta__copy h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 8px;
}

.cu-cta__copy p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.cu-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  border-radius: 50px;
  background: var(--secondary);
  color: var(--primary-dark);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.32);
  transition: var(--trans);
}

.cu-cta__btn:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  color: var(--primary-dark);
}

.cu-cta__btn i {
  font-size: 22px;
}

.cu-cta__btn span {
  display: flex;
  flex-direction: column;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.1;
}

.cu-cta__btn small {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}


/* ============================================================
   7. RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .cu-banner {
    padding: 150px 0 80px;
  }
}

@media (max-width: 991px) {
  .cu-banner {
    padding: 140px 0 68px;
  }

  .cu-form-section {
    padding: 72px 0;
  }

  .cu-areas__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cu-map__frame {
    height: 380px;
  }

  .cu-cta__inner {
    padding: 36px 32px;
  }
}

@media (max-width: 767px) {
  .cu-banner {
    padding: 130px 0 56px;
  }

  .cu-banner__actions .btn-primary,
  .cu-banner .btn-ghost-light {
    width: 100%;
    justify-content: center;
  }

  .cu-form-section {
    padding: 60px 0;
  }

  .cu-card {
    padding: 28px 24px;
  }

  .cu-areas__grid {
    grid-template-columns: 1fr;
  }

  .cu-map__frame {
    height: 320px;
  }

  .cu-map__badge {
    bottom: 16px;
    padding: 12px 18px;
    gap: 10px;
  }

  .cu-cta {
    padding-bottom: 60px;
  }

  .cu-cta__inner {
    padding: 30px 24px;
    justify-content: center;
    text-align: center;
  }

  .cu-cta__btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .cu-banner__title {
    font-size: 29px;
  }

  .cu-banner__lead {
    font-size: 15.5px;
  }

  .cu-card__value {
    font-size: 18px;
  }
}


/* ============================================================
   8. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .cu-card,
  .cu-card::after,
  .cu-card__icon,
  .cu-area,
  .cu-cta__btn,
  .cu-direct__item i {
    transition: none !important;
  }

  a.cu-card:hover,
  .cu-area:hover,
  .cu-cta__btn:hover,
  .cu-banner .btn-ghost-light:hover {
    transform: none !important;
  }
}


/* ===== MOBILE QUOTE SECTION ===== */
/* ============================================================
   PART 5 — MOBILE QUOTE SECTION (.rs-quote-section)
   The service-page hero form is lifted out of the banner on
   mobile by subpage.js (initHeroFormPlacement) and dropped into
   this section, which sits directly below the banner.

   The section element is created by JS and starts [hidden], so
   it costs nothing on desktop and never appears if JS fails.
   ============================================================ */

.rs-quote-section {
  padding: 48px 0 56px;
  background: var(--bg-alt);
}

.rs-quote-section[hidden] {
  display: none;
}

.rs-quote-section__head {
  text-align: center;
  margin-bottom: 26px;
}

.rs-quote-section__head .sec-eyebrow {
  justify-content: center;
}

.rs-quote-section__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 6vw, 30px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin: 0;
}

/* The form keeps its dark glass card, which reads as a solid
   slate panel against this light section — no restyling of the
   inputs needed, so nothing about the form can break here. */
.rs-quote-section .rs-hero__form {
  margin-top: 0;
}

.rs-quote-section .contact-form-card {
  box-shadow: var(--shadow-lg);
}

/* Badge sits on the card corner; keep it inside the section padding */
.rs-quote-section .rs-hero__form-badge {
  top: -12px;
  right: 14px;
}

/* Once the form has actually moved, drop the now-empty hero column
   so it doesn't leave a gutter gap in the banner. */
@media (max-width: 991px) {
  .rs-hero.js-form-moved .rs-hero__form-col {
    display: none;
  }
}

@media (max-width: 767px) {
  .rs-quote-section {
    padding: 40px 0 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rs-quote-section .contact-form-card {
    transition: none !important;
  }
}


/* ===== GALLERY PAGE ===== */
/* ============================================================
   PART 6 — GALLERY PAGE (.gl-*)
   Used by gallery/index.html.

   The grid, cards, filter buttons and lightbox all reuse the
   homepage project system already present in PART 1
   (.projects-grid, .proj-item, .proj-card, .pf-btn,
   .gallery-lightbox). Only the banner, filter bar spacing,
   category tag and trust band are new.
   ------------------------------------------------------------
   1.  Banner
   2.  Filter bar
   3.  Grid additions
   4.  Trust band
   5.  Responsive
   6.  Reduced motion
   ============================================================ */


/* ============================================================
   1. BANNER
   ============================================================ */
.gl-banner {
  position: relative;
  /* Fallback offset for the fixed header — subpage.js refines it. */
  padding: 190px 0 96px;
  background: var(--primary-dark);
  overflow: hidden;
  isolation: isolate;
}

.gl-banner__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.gl-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gl-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 39, 72, 0.93) 0%, rgba(13, 39, 72, 0.86) 100%);
}

.gl-banner::before {
  content: '';
  position: absolute;
  top: -170px;
  left: -130px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0) 70%);
  pointer-events: none;
  z-index: -1;
}

.gl-banner__content {
  color: var(--white);
}

.gl-banner__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4.6vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin: 0 0 18px;
}

.gl-banner__lead {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin: 0 auto 34px;
}

.gl-banner .rs-breadcrumb {
  justify-content: center;
}

/* — stat row — */
.gl-banner__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 18px 44px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.gl-banner__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}

.gl-banner__stat strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.1;
}

.gl-banner__stat span {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.68);
}


/* ============================================================
   2. FILTER BAR
   .pf-btn itself is styled in PART 1 — this is just the layout.
   ============================================================ */
.gl-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
}


/* ============================================================
   3. GRID ADDITIONS
   ============================================================ */
.gl-grid {
  margin-bottom: 0;
}

/* Filtered-out items: PART 1's initProjectFilter adds .hidden,
   then sets display:none once this transition has run. */
.gl-grid .proj-item {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gl-grid .proj-item.hidden {
  opacity: 0;
  transform: scale(0.94);
  pointer-events: none;
}

/* Category tag in the hover overlay */
.gl-tag {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 50px;
  background: var(--secondary);
  color: var(--primary-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gl-empty {
  margin: 40px 0 0;
  text-align: center;
  font-size: 15.5px;
  color: var(--text-muted);
}

.gl-empty[hidden] {
  display: none;
}

.gl-empty i {
  color: var(--secondary);
  margin-right: 7px;
}

/* The lightbox caption carries an "n / total" counter on this page */
#glLightbox .gallery-lightbox__caption {
  max-width: min(90vw, 760px);
  margin-inline: auto;
}


/* ============================================================
   4. TRUST BAND
   ============================================================ */
.gl-band {
  padding: 0 0 96px;
  background: var(--bg);
}

.gl-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 24px 32px;
  padding: 34px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.gl-band__item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.gl-band__item i {
  flex-shrink: 0;
  color: var(--secondary);
  font-size: 27px;
}

.gl-band__item strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.gl-band__item span {
  display: block;
  font-size: 13.5px;
  color: var(--text-muted);
}


/* ============================================================
   5. RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .gl-banner {
    padding: 150px 0 80px;
  }
}

@media (max-width: 991px) {
  .gl-banner {
    padding: 140px 0 68px;
  }

  .gl-banner__stats {
    gap: 16px 32px;
  }

  .gl-band__inner {
    padding: 28px 30px;
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .gl-banner {
    padding: 130px 0 56px;
  }

  .gl-banner__stat strong {
    font-size: 26px;
  }

  .gl-filters {
    gap: 9px;
    margin-bottom: 32px;
  }

  .gl-band {
    padding-bottom: 60px;
  }

  .gl-band__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 26px 22px;
  }
}

@media (max-width: 575px) {
  .gl-banner__title {
    font-size: 29px;
  }

  .gl-banner__lead {
    font-size: 15.5px;
  }

  .gl-banner__stats {
    gap: 14px 20px;
  }

  .gl-banner__stat {
    min-width: 90px;
  }

  .gl-tag {
    font-size: 10.5px;
    padding: 5px 11px;
  }
}


/* ============================================================
   6. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .gl-grid .proj-item {
    transition: none !important;
  }

  .gl-grid .proj-item.hidden {
    transform: none !important;
  }
}


/* ===== ABOUT PAGE ===== */
/* ============================================================
   PART 7 — ABOUT PAGE (.au-*)
   Used by about-us/index.html. Same tokens and conventions as
   PARTS 3-6. Reuses .rs-checks, .sec-* and .contact-cta-section
   from earlier parts; everything below is new.
   ------------------------------------------------------------
   1.  Banner
   2.  Story
   3.  Stats band
   4.  Values
   5.  Timeline
   6.  Team
   7.  Credentials
   8.  Responsive
   9.  Reduced motion
   ============================================================ */


/* ============================================================
   1. BANNER
   ============================================================ */
.au-banner {
  position: relative;
  /* Fallback offset for the fixed header — subpage.js refines it. */
  padding: 190px 0 96px;
  background: var(--primary-dark);
  overflow: hidden;
  isolation: isolate;
}

.au-banner__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.au-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.au-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 39, 72, 0.93) 0%, rgba(13, 39, 72, 0.86) 100%);
}

.au-banner::before {
  content: '';
  position: absolute;
  top: -170px;
  right: -130px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0) 70%);
  pointer-events: none;
  z-index: -1;
}

.au-banner__content {
  color: var(--white);
}

.au-banner__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4.6vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin: 0 0 18px;
}

.au-banner__lead {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  margin: 0 auto;
}

.au-banner .rs-breadcrumb {
  justify-content: center;
}


/* =========================================================
   ABOUT STORY
========================================================= */

.au-story {
  position: relative;
  overflow: hidden;
}

.au-story .row {
  --bs-gutter-x: 5rem;
}


/* =========================================================
   IMAGE
========================================================= */

.au-story__media {
  position: relative;
  max-width: 560px;
}

.au-story__img {
  position: relative;

  width: 100%;
  height: 620px;

  overflow: hidden;

  border-radius: 28px;

  box-shadow:
    0 28px 65px rgba(12, 44, 80, 0.13);
}

.au-story__img::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(10, 47, 88, 0.01) 35%,
      rgba(10, 47, 88, 0.20) 100%
    );

  pointer-events: none;
}

.au-story__img img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  transition:
    transform 0.9s cubic-bezier(.2,.7,.2,1);
}

.au-story__media:hover .au-story__img img {
  transform: scale(1.035);
}


/* =========================================================
   EXPERIENCE BADGE
========================================================= */

.au-story__badge {
  position: absolute;

  top: 28px;
  right: 24px;

  width: 150px;
  height: 150px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      #edc443 0%,
      #e4b52c 55%,
      #d8a315 100%
    );

  z-index: 5;

  box-shadow:
    0 18px 38px rgba(16, 58, 104, 0.20),
    0 8px 18px rgba(0, 0, 0, 0.10);

  animation:
    badgeFloat 4.5s ease-in-out infinite;
}


/* =========================================================
   REVOLVING ORBIT
========================================================= */

.au-story__badge-orbit {
  position: absolute;

  inset: -13px;

  border-radius: 30px;

  border:
    1px solid rgba(228, 181, 44, 0.78);

  pointer-events: none;

  animation:
    badgeOrbit 11s linear infinite;
}


/* second subtle orbit */
.au-story__badge-orbit::before {
  content: "";

  position: absolute;

  inset: 7px;

  border-radius: 26px;

  border:
    1px solid rgba(255, 255, 255, 0.20);
}


/* orbit dots */
.orbit-dot {
  position: absolute;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #e4b52c;

  box-shadow:
    0 0 0 4px rgba(228, 181, 44, 0.12),
    0 0 14px rgba(228, 181, 44, 0.28);
}

.orbit-dot--one {
  top: -4px;
  left: 48%;
}

.orbit-dot--two {
  bottom: 8px;
  left: 8px;
}


/* =========================================================
   BADGE CONTENT
========================================================= */

.au-story__badge-inner {
  position: relative;

  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 16px;

  text-align: center;
}

.au-story__badge-number {
  display: flex;
  align-items: flex-start;

  margin-bottom: 12px;

  color: #ffffff;

  font-size: 54px;
  line-height: 0.82;

  font-weight: 900;

  letter-spacing: -0.065em;

  text-shadow:
    0 3px 10px rgba(16, 58, 104, 0.18);
}

.au-story__badge-number sup {
  position: relative;

  top: -2px;

  margin-left: 4px;

  color: #ffffff;

  font-size: 18px;

  font-weight: 900;
}

.au-story__badge-label {
  display: block;

  max-width: 112px;

  color: #ffffff;

  font-size: 10px;
  line-height: 1.28;

  font-weight: 800;

  letter-spacing: 0.07em;

  text-transform: uppercase;
}


/* =========================================================
   CONTENT
========================================================= */

.au-story__content {
  position: relative;

  max-width: 600px;

  padding-left: 18px;
}

.au-story .sec-eyebrow {
  margin-bottom: 18px;
}

.au-story .sec-title {
  max-width: 580px;

  margin-bottom: 22px;
}

.au-story__intro {
  margin-bottom: 15px;

  font-size: 16px;
  line-height: 1.8;
}

.au-story .sec-text {
  max-width: 575px;
}


/* =========================================================
   FEATURE POINTS
========================================================= */

.au-story__points {
  display: flex;
  flex-direction: column;

  gap: 14px;

  margin-top: 28px;
}


/* row */
.au-story__point {
  position: relative;

  display: flex;
  align-items: flex-start;

  gap: 15px;

  padding: 14px 16px;

  border-radius: 14px;

  background:
    rgba(16, 58, 104, 0.035);

  border:
    1px solid rgba(16, 58, 104, 0.06);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}


/* small left accent */
.au-story__point::before {
  content: "";

  position: absolute;

  left: 0;
  top: 14px;

  width: 3px;
  height: 32px;

  border-radius: 0 3px 3px 0;

  background: #e4b52c;

  opacity: 0;

  transition:
    opacity 0.3s ease,
    height 0.3s ease;
}

.au-story__point:hover {
  transform: translateX(5px);

  background:
    rgba(228, 181, 44, 0.055);

  border-color:
    rgba(228, 181, 44, 0.18);
}

.au-story__point:hover::before {
  opacity: 1;

  height: 40px;
}


/* icon */
.au-story__point-icon {
  flex: 0 0 40px;

  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    rgba(228, 181, 44, 0.14);

  color: #e4b52c;

  font-size: 17px;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.au-story__point:hover .au-story__point-icon {
  transform: scale(1.06);

  background: #e4b52c;

  color: #103a68;
}


/* content */
.au-story__point-content {
  min-width: 0;
}

.au-story__point-content strong {
  display: block;

  margin-bottom: 4px;

  color: #123b6b;

  font-size: 14px;
  line-height: 1.35;

  font-weight: 800;
}

.au-story__point-content span {
  display: block;

  max-width: 470px;

  color: #697481;

  font-size: 12px;
  line-height: 1.55;

  font-weight: 500;
}


/* =========================================================
   ACTIONS
========================================================= */

.au-story__actions {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-top: 30px;
}

.au-story__actions .btn-primary i {
  transition:
    transform 0.3s ease;
}

.au-story__actions .btn-primary:hover i {
  transform:
    translateX(4px);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }

}


@keyframes badgeOrbit {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1199px) {

  .au-story .row {
    --bs-gutter-x: 3rem;
  }

  .au-story__img {
    height: 560px;
  }

  .au-story__badge {
    width: 140px;
    height: 140px;

    right: 20px;
  }

  .au-story__badge-number {
    font-size: 49px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .au-story .row {
    --bs-gutter-x: 1.5rem;
  }

  .au-story__media {
    max-width: 100%;
  }

  .au-story__img {
    height: 550px;
  }

  .au-story__content {
    max-width: 100%;

    padding-left: 0;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .au-story__img {
    height: 500px;

    border-radius: 22px;
  }

  .au-story__badge {
    top: 18px;
    right: 18px;

    width: 125px;
    height: 125px;

    border-radius: 20px;
  }

  .au-story__badge-orbit {
    inset: -9px;

    border-radius: 25px;
  }

  .au-story__badge-number {
    font-size: 42px;

    margin-bottom: 8px;
  }

  .au-story__badge-label {
    max-width: 92px;

    font-size: 8px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

  .au-story__img {
    height: 420px;

    border-radius: 20px;
  }

  .au-story__badge {
    top: 14px;
    right: 14px;

    width: 108px;
    height: 108px;
  }

  .au-story__badge-number {
    font-size: 36px;

    margin-bottom: 7px;
  }

  .au-story__badge-number sup {
    font-size: 13px;
  }

  .au-story__badge-label {
    max-width: 78px;

    font-size: 7px;
  }

  .au-story__point {
    padding: 12px 12px;

    gap: 11px;
  }

  .au-story__point-icon {
    flex: 0 0 35px;

    width: 35px;
    height: 35px;

    font-size: 15px;
  }

  .au-story__point-content strong {
    font-size: 13px;
  }

  .au-story__point-content span {
    font-size: 11px;
  }

  .au-story__actions {
    flex-wrap: wrap;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .au-story__badge,
  .au-story__badge-orbit {
    animation: none;
  }

}




/* =========================================================
   ABOUT NUMBERS SECTION
========================================================= */

.au-numbers {
  position: relative;
  overflow: hidden;

  padding: 105px 0 60px;

  background: #103a68;
}

.au-numbers .container {
  position: relative;
  z-index: 2;
}


/* subtle upper background glow */
.au-numbers::before {
  content: "";

  position: absolute;

  width: 470px;
  height: 470px;

  top: -240px;
  right: -180px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(228, 181, 44, 0.075) 0%,
      rgba(228, 181, 44, 0.025) 45%,
      transparent 70%
    );

  pointer-events: none;
}


/* =========================================================
   HEADING
========================================================= */

.au-numbers__head {
  max-width: 780px;

  margin: 0 auto 68px;

  text-align: center;
}

.au-numbers__head .sec-eyebrow {
  margin-bottom: 20px;
}

.au-numbers__title {
  margin: 0;

  color: #ffffff;

  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.08;

  font-weight: 700;

  letter-spacing: -0.035em;
}


/* =========================================================
   MAIN NUMBERS
========================================================= */

.au-numbers__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  max-width: 980px;

  margin: 0 auto;

  gap: 50px;
}

.au-numbers__item {
  position: relative;

  text-align: center;
}


/* large number */
.au-numbers__item strong {
  display: flex;
  align-items: flex-start;
  justify-content: center;

  margin-bottom: 15px;

  color: #e4b52c;

  font-size: clamp(68px, 7vw, 80px);
  line-height: 0.9;

  font-weight: 800;

  letter-spacing: -0.06em;
}


/* + / MW */
.au-numbers__item strong sup {
  position: relative;

  top: 5px;

  margin-left: 7px;

  color: #e4b52c;

  font-size: 20px;
  line-height: 1;

  font-weight: 800;

  letter-spacing: 0;
}


/* stat label */
.au-numbers__item > span {
  display: block;

  max-width: 200px;

  margin: 0 auto;

  color: rgba(255, 255, 255, 0.70);

  font-size: 12px;
  line-height: 1.6;

  font-weight: 500;
}


/* separators */
.au-numbers__item:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 8px;
  right: -25px;

  width: 1px;
  height: 92px;

  background: rgba(255, 255, 255, 0.12);
}


/* =========================================================
   PROOF / ACHIEVEMENT MARKS
========================================================= */

.au-numbers__proof {
  position: relative;
  z-index: 3;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  align-items: end;

  max-width: 1030px;

  margin: 68px auto 0;

  gap: 26px;
}


/* individual mark */
.au-proof-mark {
  position: relative;

  min-height: 160px;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;

  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}


/* stagger effect */
.au-proof-mark:nth-child(2),
.au-proof-mark:nth-child(4) {
  transform: translateY(10px);
}


/* =========================================================
   ROUND TOP CREST
========================================================= */

.au-proof-mark__top {
  position: relative;
  z-index: 3;

  width: 66px;
  height: 66px;

  margin-bottom: -22px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  border: 5px solid #103a68;

  background: #ffffff;

  color: #e4b52c;

  font-size: 23px;

  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.15);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}


/* subtle inner gold ring */
.au-proof-mark__top::after {
  content: "";

  position: absolute;
  inset: 6px;

  border-radius: 50%;

  border: 1px solid rgba(228, 181, 44, 0.36);

  pointer-events: none;
}


/* =========================================================
   PLAQUE BODY
========================================================= */

.au-proof-mark__body {
  position: relative;

  width: 100%;
  min-height: 125px;

  padding:
    42px
    15px
    20px;

  display: flex;
  flex-direction: column;
  align-items: center;

  background: #ffffff;

  border-radius:
    26px
    26px
    12px
    12px;

  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.13);

  overflow: hidden;
}


/* small gold top detail */
.au-proof-mark__body::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: 44px;
  height: 3px;

  transform: translateX(-50%);

  background: #e4b52c;
}


/* soft bottom point / award shape */
.au-proof-mark__body::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: -12px;

  width: 28px;
  height: 28px;

  transform:
    translateX(-50%)
    rotate(45deg);

  background: #ffffff;

  border-radius: 3px;
}


/* =========================================================
   PROOF TEXT
========================================================= */

.au-proof-mark__body strong {
  display: block;

  max-width: 135px;

  margin-bottom: 7px;

  color: #103a68;

  font-size: 18px;
  line-height: 1.3;

  font-weight: 800;
}

.au-proof-mark__body span {
  display: block;

  max-width: 140px;

  color: #7b8590;

  font-size: 15px;
  line-height: 1.45;

  font-weight: 500;
}


/* =========================================================
   SMALL GOLD DOT BELOW EACH MARK
========================================================= */

.au-proof-mark::after {
  content: "";

  width: 5px;
  height: 5px;

  margin-top: 17px;

  border-radius: 50%;

  background: #e4b52c;

  opacity: 0.7;

  box-shadow:
    0 0 0 5px rgba(228, 181, 44, 0.08);
}


/* =========================================================
   PROOF HOVER
========================================================= */

.au-proof-mark:hover {
  transform: translateY(-7px);

  filter:
    drop-shadow(0 12px 16px rgba(0, 0, 0, 0.10));
}

.au-proof-mark:nth-child(2):hover,
.au-proof-mark:nth-child(4):hover {
  transform: translateY(3px);
}

.au-proof-mark:hover .au-proof-mark__top {
  background: #e4b52c;

  color: #103a68;

  transform: scale(1.05);
}


/* =========================================================
   DECORATIVE BOTTOM SHAPES
========================================================= */

.au-numbers__bottom {
  position: relative;

  min-height: 75px;

  margin-top: 35px;
}

.au-numbers__shapes {
  position: absolute;

  left: -35px;
  bottom: -30px;

  width: 220px;
  height: 110px;
}

.au-numbers__shapes span {
  position: absolute;

  width: 70px;
  height: 70px;

  border: 1px solid rgba(228, 181, 44, 0.28);

  border-radius: 8px;
}

.au-numbers__shapes span:nth-child(1) {
  left: 0;
  bottom: 0;
}

.au-numbers__shapes span:nth-child(2) {
  left: 61px;
  bottom: 0;
}

.au-numbers__shapes span:nth-child(3) {
  left: 61px;
  bottom: 61px;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1199px) {

  .au-numbers__stats {
    max-width: 900px;

    gap: 38px;
  }

  .au-numbers__item:not(:last-child)::after {
    right: -19px;
  }

  .au-numbers__proof {
    max-width: 760px;

    gap: 20px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .au-numbers {
    padding: 90px 0 55px;
  }

  .au-numbers__head {
    margin-bottom: 55px;
  }

  .au-numbers__stats {
    gap: 25px;
  }

  .au-numbers__item:not(:last-child)::after {
    right: -12px;
  }

  .au-numbers__proof {
    grid-template-columns: repeat(2, 1fr);

    max-width: 480px;

    gap: 34px 24px;

    margin-top: 58px;
  }

  .au-proof-mark:nth-child(2),
  .au-proof-mark:nth-child(4) {
    transform: none;
  }

  .au-proof-mark:nth-child(2):hover,
  .au-proof-mark:nth-child(4):hover {
    transform: translateY(-7px);
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .au-numbers {
    padding: 80px 0 45px;
  }

  .au-numbers__head {
    margin-bottom: 48px;
  }

  .au-numbers__stats {
    grid-template-columns: 1fr;

    gap: 44px;
  }

  .au-numbers__item:not(:last-child)::after {
    display: none;
  }

  .au-numbers__item strong {
    font-size: 68px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

  .au-numbers {
    padding: 72px 0 40px;
  }

  .au-numbers__title {
    font-size: 38px;
  }

  .au-numbers__item strong {
    font-size: 58px;
  }

  .au-numbers__item strong sup {
    font-size: 17px;
  }

  .au-numbers__proof {
    grid-template-columns: repeat(2, 1fr);

    max-width: 100%;

    gap: 28px 14px;

    margin-top: 48px;
  }

  .au-proof-mark {
    min-height: 145px;
  }

  .au-proof-mark__top {
    width: 58px;
    height: 58px;

    font-size: 20px;

    border-width: 4px;
  }

  .au-proof-mark__body {
    min-height: 112px;

    padding:
      36px
      11px
      16px;

    border-radius:
      20px
      20px
      10px
      10px;
  }

  .au-proof-mark__body strong {
    font-size: 10px;
  }

  .au-proof-mark__body span {
    font-size: 7.4px;
    line-height: 1.4;
  }

  .au-numbers__bottom {
    min-height: 60px;

    margin-top: 25px;
  }

  .au-numbers__shapes {
    left: -45px;

    opacity: 0.65;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .au-proof-mark,
  .au-proof-mark__top {
    transition: none;
  }

}




.au-philosophy {
  position: relative;
  overflow: hidden;
}

.au-philosophy__top {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: 55px;
  align-items: end;
  margin-bottom: 28px;
}


/* heading */
.au-philosophy__heading {
  padding-bottom: 20px;
}

.au-philosophy__heading .sec-title {
  margin-bottom: 0;
}


/* long top image */
.au-philosophy__hero {
  position: relative;

  height: 260px;

  overflow: visible;
}

.au-philosophy__hero img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 34px 34px 34px 10px;
}


/* arrow circle */
.au-philosophy__hero-arrow {
  position: absolute;

  right: -18px;
  bottom: -18px;

  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #e4b52c;
  color: #103a68;

  font-size: 20px;

  border: 6px solid #ffffff;
}


/* bottom editorial grid */
.au-philosophy__bottom {
  display: grid;

  grid-template-columns: 1.15fr 0.8fr 1.15fr;

  gap: 24px;

  align-items: stretch;
}


/* vision text block */
.au-philosophy__vision {
  padding: 34px 32px 25px 0;
}

.au-philosophy__index {
  display: block;

  margin-bottom: 18px;

  color: #e4b52c;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.15em;
}

.au-philosophy__vision h3 {
  margin-bottom: 18px;

  color: #103a68;

  font-size: 30px;
  line-height: 1.15;

  font-weight: 700;
}

.au-philosophy__vision p {
  color: #6c7682;

  font-size: 15px;
  line-height: 1.75;
}


/* small image */
.au-philosophy__image-small {
  min-height: 290px;
}

.au-philosophy__image-small img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 22px;
}


/* values panel */
.au-philosophy__values {
  padding: 28px 28px;

  border-radius: 22px;

  background: #103a68;

  color: #ffffff;
}

.au-philosophy__values-head {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 25px;

  color: #e4b52c;

  font-size: 20px;
  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.au-philosophy__values-head i {
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,0.25);

  color: #ffffff;
}


/* individual value */
.au-philosophy__value {
  padding: 15px 0;

  border-top: 1px solid rgba(255,255,255,0.12);
}

.au-philosophy__value strong {
  display: block;

  margin-bottom: 4px;

  color: #ffffff;

  font-size: 18px;
  font-weight: 700;
}

.au-philosophy__value span {
  display: block;

  color: rgba(255,255,255,0.62);

  font-size: 15px;
  line-height: 1.5;
}


/* responsive */
@media (max-width: 991px) {

  .au-philosophy__top {
    grid-template-columns: 1fr;
  }

  .au-philosophy__hero {
    height: 300px;
  }

  .au-philosophy__bottom {
    grid-template-columns: 1fr 1fr;
  }

  .au-philosophy__vision {
    grid-column: 1 / -1;
  }

}

@media (max-width: 575px) {

  .au-philosophy__bottom {
    grid-template-columns: 1fr;
  }

  .au-philosophy__hero {
    height: 220px;
  }

  .au-philosophy__image-small {
    min-height: 220px;
  }

}





/* =========================================================
   JOURNEY SECTION
========================================================= */

.au-journey {
  position: relative;
  overflow: hidden;

  padding: 110px 0 120px;

  background:
    radial-gradient(
      circle at 10% 18%,
      rgba(228, 181, 44, 0.08) 0%,
      transparent 27%
    ),
    radial-gradient(
      circle at 88% 78%,
      rgba(16, 58, 104, 0.08) 0%,
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f7faff 48%,
      #eef5fb 100%
    );
}


/* =========================================================
   DECORATIVE BACKGROUND RINGS
========================================================= */

.au-journey::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  left: -230px;
  top: 150px;

  border-radius: 50%;

  border: 1px solid rgba(228, 181, 44, 0.17);

  pointer-events: none;
}

.au-journey::after {
  content: "";

  position: absolute;

  width: 560px;
  height: 560px;

  right: -310px;
  bottom: -300px;

  border-radius: 50%;

  border: 1px solid rgba(16, 58, 104, 0.08);

  pointer-events: none;
}


/* =========================================================
   BACKGROUND WORD
========================================================= */

.au-journey__bg-word {
  position: absolute;

  left: 50%;
  top: 54%;

  transform: translate(-50%, -50%);

  color: rgba(16, 58, 104, 0.025);

  font-size: clamp(120px, 16vw, 230px);
  line-height: 1;

  font-weight: 800;

  letter-spacing: -0.06em;

  white-space: nowrap;

  pointer-events: none;
  user-select: none;
}


/* =========================================================
   CONTAINER / HEADER
========================================================= */

.au-journey .container {
  position: relative;
  z-index: 2;
}

.au-journey .sec-header {
  max-width: 760px;

  margin: 0 auto 75px;
}

.au-journey .sec-title {
  margin-bottom: 18px;
}

.au-journey .sec-subtitle {
  max-width: 650px;

  margin: 0 auto;

  color: #6e7885;

  font-size: 15px;
  line-height: 1.75;
}


/* =========================================================
   TIMELINE WRAPPER
========================================================= */

.au-timeline {
  position: relative;

  max-width: 980px;

  margin: 0 auto;
}


/* main centre line */
.au-timeline::before {
  content: "";

  position: absolute;

  left: 50%;
  top: 0;
  bottom: 0;

  width: 2px;

  transform: translateX(-50%);

  background:
    linear-gradient(
      to bottom,
      rgba(228, 181, 44, 0.18),
      #e4b52c 12%,
      #e4b52c 88%,
      rgba(228, 181, 44, 0.18)
    );
}


/* subtle glow line */
.au-timeline::after {
  content: "";

  position: absolute;

  left: 50%;
  top: 0;
  bottom: 0;

  width: 12px;

  transform: translateX(-50%);

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(228, 181, 44, 0.06),
      transparent
    );

  pointer-events: none;
}


/* =========================================================
   TIMELINE ITEM
========================================================= */

.au-timeline__item {
  position: relative;

  display: grid;
  grid-template-columns: 1fr 46px 1fr;

  align-items: center;

  min-height: 185px;
}

.au-timeline__item + .au-timeline__item {
  margin-top: 14px;
}


/* =========================================================
   LEFT / RIGHT POSITIONING
========================================================= */

.au-timeline__item--left .au-timeline__content {
  grid-column: 1;

  padding-right: 38px;

  text-align: right;
}

.au-timeline__item--left .au-timeline__marker {
  grid-column: 2;
}

.au-timeline__item--right .au-timeline__marker {
  grid-column: 2;
}

.au-timeline__item--right .au-timeline__content {
  grid-column: 3;

  padding-left: 38px;

  text-align: left;
}


/* =========================================================
   YEAR
========================================================= */

.au-timeline__year {
  display: block;

  margin-bottom: 12px;

  color: #103a68;

  font-size: 32px;
  line-height: 1;

  font-weight: 800;

  letter-spacing: -0.03em;
}

.au-timeline__item--left .au-timeline__year {
  padding-right: 6px;
}

.au-timeline__item--right .au-timeline__year {
  padding-left: 6px;
}


/* =========================================================
   TIMELINE MARKER
========================================================= */

.au-timeline__marker {
  position: relative;

  width: 22px;
  height: 22px;

  margin: 0 auto;

  border-radius: 50%;

  background: #ffffff;

  border: 4px solid #e4b52c;

  box-shadow:
    0 0 0 7px rgba(228, 181, 44, 0.10),
    0 5px 14px rgba(16, 58, 104, 0.12);

  z-index: 3;
}


/* centre dot */
.au-timeline__marker::after {
  content: "";

  position: absolute;

  left: 50%;
  top: 50%;

  width: 5px;
  height: 5px;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background: #103a68;
}


/* =========================================================
   CARD
========================================================= */

.au-timeline__card {
  position: relative;

  min-height: 130px;

  padding: 26px 28px 24px;

  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.97),
      rgba(247, 250, 255, 0.95)
    );

  border: 1px solid rgba(16, 58, 104, 0.08);

  box-shadow:
    0 14px 34px rgba(16, 58, 104, 0.08);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}


/* gold top accent */
.au-timeline__card::before {
  content: "";

  position: absolute;

  top: 0;

  width: 54px;
  height: 3px;

  background: #e4b52c;
}

.au-timeline__item--left .au-timeline__card::before {
  right: 24px;
}

.au-timeline__item--right .au-timeline__card::before {
  left: 24px;
}


/* =========================================================
   CARD ICON
========================================================= */

.au-timeline__icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 15px;

  border-radius: 50%;

  background: rgba(228, 181, 44, 0.13);

  color: #e4b52c;

  font-size: 18px;
}

.au-timeline__item--left .au-timeline__icon {
  margin-left: auto;
}


/* =========================================================
   CARD TEXT
========================================================= */

.au-timeline__card h3 {
  margin-bottom: 9px;

  color: #123b6b;

  font-size: 18px;
  line-height: 1.35;

  font-weight: 800;
}

.au-timeline__card p {
  margin: 0;

  color: #6d7783;

  font-size: 15px;
  line-height: 1.7;

  font-weight: 500;
}


/* =========================================================
   CARD HOVER
========================================================= */

.au-timeline__item--left .au-timeline__card:hover {
  transform: translateX(-6px);
}

.au-timeline__item--right .au-timeline__card:hover {
  transform: translateX(6px);
}

.au-timeline__card:hover {
  border-color: rgba(228, 181, 44, 0.25);

  box-shadow:
    0 20px 46px rgba(16, 58, 104, 0.12);
}


/* =========================================================
   OPTIONAL CONNECTOR LINES
========================================================= */

.au-timeline__content::after {
  content: "";

  position: absolute;

  top: 50%;

  width: 26px;
  height: 1px;

  background: rgba(228, 181, 44, 0.55);
}

.au-timeline__item--left .au-timeline__content {
  position: relative;
}

.au-timeline__item--right .au-timeline__content {
  position: relative;
}

.au-timeline__item--left .au-timeline__content::after {
  right: 0;
}

.au-timeline__item--right .au-timeline__content::after {
  left: 0;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1199px) {

  .au-timeline {
    max-width: 900px;
  }

  .au-timeline__item--left .au-timeline__content {
    padding-right: 28px;
  }

  .au-timeline__item--right .au-timeline__content {
    padding-left: 28px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .au-journey {
    padding: 90px 0 100px;
  }

  .au-journey .sec-header {
    margin-bottom: 60px;
  }

  .au-timeline {
    max-width: 760px;
  }

  .au-timeline__year {
    font-size: 28px;
  }

  .au-timeline__card {
    padding: 22px 22px 20px;
  }

}


/* =========================================================
   MOBILE / SINGLE COLUMN
========================================================= */

@media (max-width: 767px) {

  .au-journey {
    padding: 80px 0 85px;
  }

  .au-journey__bg-word {
    font-size: 120px;
  }

  .au-timeline {
    max-width: 100%;
  }

  .au-timeline::before,
  .au-timeline::after {
    left: 16px;
  }

  .au-timeline__item {
    display: block;

    min-height: 0;

    padding-left: 52px;

    margin-bottom: 34px;
  }

  .au-timeline__item + .au-timeline__item {
    margin-top: 0;
  }

  .au-timeline__item--left .au-timeline__content,
  .au-timeline__item--right .au-timeline__content {
    padding: 0;

    text-align: left;
  }

  .au-timeline__marker {
    position: absolute;

    left: 5px;
    top: 48px;

    margin: 0;
  }

  .au-timeline__year {
    padding: 0 !important;

    margin-bottom: 10px;

    font-size: 27px;
  }

  .au-timeline__item--left .au-timeline__icon {
    margin-left: 0;
  }

  .au-timeline__item--left .au-timeline__card::before,
  .au-timeline__item--right .au-timeline__card::before {
    left: 22px;
    right: auto;
  }

  .au-timeline__content::after {
    display: none;
  }

  .au-timeline__item--left .au-timeline__card:hover,
  .au-timeline__item--right .au-timeline__card:hover {
    transform: translateY(-4px);
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

  .au-journey {
    padding: 72px 0 78px;
  }

  .au-journey .sec-header {
    margin-bottom: 48px;
  }

  .au-journey .sec-subtitle {
    font-size: 13px;
  }

  .au-timeline__item {
    padding-left: 46px;
  }

  .au-timeline::before,
  .au-timeline::after {
    left: 13px;
  }

  .au-timeline__marker {
    left: 2px;
  }

  .au-timeline__year {
    font-size: 25px;
  }

  .au-timeline__card {
    padding: 20px 18px 18px;

    border-radius: 15px;
  }

  .au-timeline__card h3 {
    font-size: 15px;
  }

  .au-timeline__card p {
    font-size: 11px;
  }

  .au-timeline__icon {
    width: 38px;
    height: 38px;

    font-size: 16px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .au-timeline__card {
    transition: none;
  }

}



/* =========================================================
   WHAT WE DO / SERVICES SECTION
========================================================= */

.au-services {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(228, 181, 44, 0.055),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7faff 100%
    );
}


/* =========================================================
   HEADER
========================================================= */

.au-services .sec-header {
  max-width: 760px;

  margin: 0 auto 58px;
}

.au-services .sec-title {
  margin-bottom: 16px;
}

.au-services .sec-subtitle {
  max-width: 680px;

  margin: 0 auto;

  color: #6d7784;

  font-size: 15px;
  line-height: 1.75;
}


/* =========================================================
   GRID
========================================================= */

.au-services__grid {
  display: grid;

  grid-template-columns: repeat(6, 1fr);

  gap: 20px;
}


/* large top row */
.au-service--large {
  grid-column: span 3;

  min-height: 400px;
}


/* smaller bottom row */
.au-service--small {
  grid-column: span 2;

  min-height: 330px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.au-service {
  position: relative;

  display: block;

  overflow: hidden;

  border-radius: 24px;

  text-decoration: none;

  isolation: isolate;

  box-shadow:
    0 18px 44px rgba(16, 58, 104, 0.10);

  transition:
    transform 0.4s cubic-bezier(.2,.7,.2,1),
    box-shadow 0.4s ease;
}


/* =========================================================
   IMAGE
========================================================= */

.au-service__image {
  position: absolute;
  inset: 0;

  z-index: -3;
}

.au-service__image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  transition:
    transform 0.8s cubic-bezier(.2,.7,.2,1),
    filter 0.5s ease;
}


/* =========================================================
   OVERLAY
========================================================= */

.au-service__overlay {
  position: absolute;
  inset: 0;

  z-index: -2;

  background:
    linear-gradient(
      180deg,
      rgba(8, 35, 66, 0.08) 8%,
      rgba(8, 35, 66, 0.28) 45%,
      rgba(8, 35, 66, 0.92) 100%
    );

  transition:
    background 0.4s ease;
}


/* subtle gold glow */
.au-service::before {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  right: -100px;
  top: -100px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(228, 181, 44, 0.18),
      transparent 68%
    );

  z-index: -1;

  opacity: 0;

  transition:
    opacity 0.4s ease;
}


/* =========================================================
   NUMBER
========================================================= */

.au-service__number {
  position: absolute;

  top: 24px;
  right: 26px;

  color: rgba(255,255,255,0.22);

  font-size: 54px;
  line-height: 1;

  font-weight: 800;

  letter-spacing: -0.05em;

  transition:
    color 0.35s ease,
    transform 0.35s ease;
}


/* =========================================================
   CONTENT
========================================================= */

.au-service__content {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  padding: 32px;

  color: #ffffff;
}


/* icon */
.au-service__icon {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;

  border-radius: 50%;

  background: #e4b52c;

  color: #103a68;

  font-size: 18px;

  box-shadow:
    0 8px 22px rgba(0,0,0,0.16);

  transition:
    transform 0.35s ease;
}


/* title */
.au-service__content h3 {
  max-width: 390px;

  margin: 0 0 10px;

  color: #ffffff;

  font-size: 22px;
  line-height: 1.25;

  font-weight: 700;

  letter-spacing: -0.015em;
}


/* description */
.au-service__content p {
  max-width: 430px;

  margin: 0 0 18px;

  color: rgba(255,255,255,0.72);

  font-size: 12px;
  line-height: 1.65;

  font-weight: 500;
}


/* =========================================================
   LINK
========================================================= */

.au-service__link {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  color: #ffffff;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.au-service__link i {
  color: #e4b52c;

  font-size: 13px;

  transition:
    transform 0.3s ease;
}


/* =========================================================
   HOVER
========================================================= */

.au-service:hover {
  transform: translateY(-7px);

  box-shadow:
    0 26px 58px rgba(16, 58, 104, 0.17);
}

.au-service:hover .au-service__image img {
  transform: scale(1.055);
}

.au-service:hover .au-service__overlay {
  background:
    linear-gradient(
      180deg,
      rgba(8,35,66,0.04) 8%,
      rgba(8,35,66,0.24) 40%,
      rgba(8,35,66,0.96) 100%
    );
}

.au-service:hover::before {
  opacity: 1;
}

.au-service:hover .au-service__number {
  color: rgba(228,181,44,0.28);

  transform: translateY(-4px);
}

.au-service:hover .au-service__icon {
  transform:
    rotate(-4deg)
    scale(1.07);
}

.au-service:hover .au-service__link i {
  transform:
    translate(3px, -3px);
}


/* =========================================================
   LARGE CARD SPECIFIC
========================================================= */

.au-service--large .au-service__content {
  padding: 36px;
}

.au-service--large .au-service__content h3 {
  font-size: 26px;
}

.au-service--large .au-service__content p {
  font-size: 14px;
}


/* =========================================================
   SMALL CARD SPECIFIC
========================================================= */

.au-service--small .au-service__content {
  padding: 26px;
}

.au-service--small .au-service__content h3 {
  font-size: 19px;
}

.au-service--small .au-service__content p {
  font-size: 11px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .au-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .au-service--large,
  .au-service--small {
    grid-column: span 1;

    min-height: 350px;
  }

  .au-service--small:last-child {
    grid-column: 1 / -1;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .au-services .sec-header {
    margin-bottom: 42px;
  }

  .au-services__grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .au-service--large,
  .au-service--small,
  .au-service--small:last-child {
    grid-column: 1;

    min-height: 340px;
  }

  .au-service__content,
  .au-service--large .au-service__content,
  .au-service--small .au-service__content {
    padding: 25px;
  }

  .au-service__content h3,
  .au-service--large .au-service__content h3,
  .au-service--small .au-service__content h3 {
    font-size: 21px;
  }

  .au-service__content p,
  .au-service--large .au-service__content p,
  .au-service--small .au-service__content p {
    font-size: 12px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

  .au-service--large,
  .au-service--small,
  .au-service--small:last-child {
    min-height: 310px;
  }

  .au-service {
    border-radius: 20px;
  }

  .au-service__number {
    top: 18px;
    right: 20px;

    font-size: 44px;
  }

  .au-service__icon {
    width: 40px;
    height: 40px;

    font-size: 16px;

    margin-bottom: 14px;
  }

  .au-service__content,
  .au-service--large .au-service__content,
  .au-service--small .au-service__content {
    padding: 22px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .au-service,
  .au-service__image img,
  .au-service__number,
  .au-service__icon,
  .au-service__link i {
    transition: none;
  }

}




/* =========================================================
   CONTACT FRAME
========================================================= */

/* =========================================================
   CONTACT ART SECTION
========================================================= */

.au-contact-art {
  position: relative;

  display: grid;
  grid-template-columns: 1fr 0.9fr;

  align-items: center;

  min-height: 420px;

  max-width: 1180px;
  margin: 0 auto;

  padding: 58px 72px;

  overflow: hidden;

  border-radius: 30px;

  background:
    radial-gradient(
      circle at 80% 35%,
      rgba(228, 181, 44, 0.08),
      transparent 26%
    ),
    radial-gradient(
      circle at 18% 76%,
      rgba(16, 58, 104, 0.06),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f6faff 50%,
      #edf5fb 100%
    );

  border: 1px solid rgba(16, 58, 104, 0.06);

  box-shadow:
    0 24px 60px rgba(16, 58, 104, 0.08);
}


/* subtle blurred background shape */
.au-contact-art::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  right: -110px;
  top: -130px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(73, 139, 199, 0.11),
      rgba(73, 139, 199, 0.03) 48%,
      transparent 70%
    );

  filter: blur(4px);

  pointer-events: none;
}


/* faint decorative arc left */
.au-contact-art::after {
  content: "";

  position: absolute;

  width: 240px;
  height: 240px;

  left: -130px;
  bottom: -120px;

  border-radius: 50%;

  border: 1px solid rgba(228, 181, 44, 0.14);

  pointer-events: none;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.au-contact-art__details {
  position: relative;
  z-index: 3;

  max-width: 560px;

  margin-left: 6%;
}


/* eyebrow */
.au-contact-art__eyebrow {
  position: relative;

  display: inline-flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 30px;

  color: #e4b52c;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}

.au-contact-art__eyebrow::before {
  content: "";

  width: 30px;
  height: 2px;

  background: #e4b52c;
}


/* =========================================================
   CONTACT ROWS
========================================================= */

.au-contact-art__row {
  display: grid;
  grid-template-columns: 92px 1fr;

  gap: 22px;

  padding: 16px 0;

  border-bottom:
    1px solid rgba(16, 58, 104, 0.09);
}

.au-contact-art__row > span {
  color: #7b8590;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 0.10em;

  text-transform: uppercase;
}

.au-contact-art__row strong,
.au-contact-art__row a {
  color: #103a68;

  font-size: 15px;
  line-height: 1.55;

  font-weight: 700;

  text-decoration: none;

  transition:
    color 0.3s ease;
}

.au-contact-art__row a:hover {
  color: #e4b52c;
}


/* =========================================================
   SOCIALS
========================================================= */

.au-contact-art__socials {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-top: 25px;
}

.au-contact-art__socials a {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  border:
    1px solid rgba(16, 58, 104, 0.15);

  background:
    rgba(255,255,255,0.75);

  color: #103a68;

  font-size: 14px;

  text-decoration: none;

  box-shadow:
    0 6px 18px rgba(16,58,104,0.05);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.au-contact-art__socials a:hover {
  transform: translateY(-3px);

  background: #e4b52c;
  color: #103a68;

  border-color: #e4b52c;
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.au-contact-art__visual {
  position: relative;

  height: 300px;

  z-index: 2;
}


/* soft blue glow behind phone */
.au-contact-art__visual::before {
  content: "";

  position: absolute;

  width: 230px;
  height: 230px;

  right: 50px;
  top: 30px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(61, 132, 194, 0.13),
      rgba(61, 132, 194, 0.035) 45%,
      transparent 72%
    );
}


/* =========================================================
   LARGE GOLD PHONE SHAPE
========================================================= */

.au-contact-art__shape {
  position: absolute;

  top: 55px;
  right: 88px;

  width: 150px;
  height: 150px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius:
    48% 52% 42% 58% /
    56% 44% 56% 44%;

  background:
    linear-gradient(
      145deg,
      #efc43b 0%,
      #e4b52c 55%,
      #d8a313 100%
    );

  color: #103a68;

  font-size: 52px;

  transform: rotate(-10deg);

  box-shadow:
    0 24px 50px rgba(228, 181, 44, 0.22);

  animation:
    contactFloat 4.5s ease-in-out infinite;
}


/* =========================================================
   ABSTRACT ORBITS
========================================================= */

.au-contact-art__line {
  position: absolute;

  display: block;

  border:
    1px solid rgba(16, 58, 104, 0.18);

  border-radius: 50%;
}

.au-contact-art__line--one {
  width: 250px;
  height: 92px;

  right: 6px;
  top: 38px;

  transform: rotate(14deg);
}

.au-contact-art__line--two {
  width: 275px;
  height: 115px;

  right: 28px;
  top: 125px;

  border-color:
    rgba(228, 181, 44, 0.34);

  transform: rotate(-11deg);
}

.au-contact-art__line--three {
  width: 165px;
  height: 72px;

  right: 150px;
  bottom: 8px;

  border-color:
    rgba(16, 58, 104, 0.14);

  transform: rotate(24deg);
}


/* =========================================================
   DOTS
========================================================= */

.au-contact-art__dot {
  position: absolute;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #e4b52c;

  box-shadow:
    0 0 0 4px rgba(228,181,44,0.08);
}

.au-contact-art__dot--one {
  top: 34px;
  right: 20px;
}

.au-contact-art__dot--two {
  left: 48px;
  bottom: 35px;
}


/* =========================================================
   FLOAT
========================================================= */

@keyframes contactFloat {

  0%,
  100% {
    transform:
      rotate(-10deg)
      translateY(0);
  }

  50% {
    transform:
      rotate(-10deg)
      translateY(-8px);
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .au-contact-art {
    grid-template-columns: 1fr;

    padding: 48px 40px;
  }

  .au-contact-art__details {
    margin-left: 0;

    max-width: 620px;
  }

  .au-contact-art__visual {
    height: 250px;

    margin-top: 30px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

  .au-contact-art {
    min-height: auto;

    padding: 34px 22px;

    border-radius: 24px;
  }

  .au-contact-art__details {
    margin-left: 0;
  }

  .au-contact-art__row {
    grid-template-columns: 1fr;

    gap: 5px;
  }

  .au-contact-art__visual {
    height: 220px;
  }

  .au-contact-art__shape {
    right: 50%;

    transform:
      translateX(50%)
      rotate(-10deg);

    width: 125px;
    height: 125px;

    font-size: 44px;

    animation: none;
  }

}




/* ============================================================
   8. RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .au-banner {
    padding: 150px 0 80px;
  }


}

@media (max-width: 991px) {
  .au-banner {
    padding: 140px 0 68px;
  }


}

@media (max-width: 767px) {
  .au-banner {
    padding: 130px 0 56px;
  }


}

@media (max-width: 575px) {
  .au-banner__title {
    font-size: 29px;
  }


}


/* ============================================================
   9. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .au-value,
  .au-value__icon,
  .au-stat,
  .au-cred,
  .au-milestone__body,
  .au-member__photo img,
  .au-member__over,
  .au-member__over a,
  .au-story__img img {
    transition: none !important;
  }

  .au-value:hover,
  .au-stat:hover,
  .au-cred:hover,
  .au-milestone__body:hover,
  .au-member:hover .au-member__photo img,
  .au-story__img:hover img,
  .au-member:hover .au-member__over a {
    transform: none !important;
  }
}


/* ===== PRIVACY / LEGAL PAGE ===== */
/* ============================================================
   PART 8 — LEGAL PAGES (.pp-*)
   Used by privacy-policy/index.html. Built for long-form reading:
   a sticky table of contents beside a measured prose column.
   ------------------------------------------------------------
   1.  Banner
   2.  Table of contents
   3.  Document prose
   4.  Contact block
   5.  Responsive
   6.  Reduced motion / print
   ============================================================ */


/* ============================================================
   1. BANNER
   No photo here — a legal page reads better with a flat ground.
   ============================================================ */
.pp-banner {
  position: relative;
  /* Fallback offset for the fixed header — subpage.js refines it. */
  padding: 190px 0 80px;
  background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 100%);
  overflow: hidden;
  isolation: isolate;
}

.pp-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 18%, rgba(212, 175, 55, 0.16) 0%, rgba(212, 175, 55, 0) 55%),
    radial-gradient(circle at 88% 82%, rgba(96, 165, 250, 0.14) 0%, rgba(96, 165, 250, 0) 55%);
  pointer-events: none;
}

.pp-banner__content {
  color: var(--white);
}

.pp-banner__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4.4vw, 50px);
  font-weight: 800;
  line-height: 1.14;
  color: var(--white);
  margin: 0 0 16px;
}

.pp-banner__lead {
  font-size: 16.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.80);
  max-width: 640px;
  margin: 0 auto;
}

.pp-banner .rs-breadcrumb {
  justify-content: center;
}


/* ============================================================
   2. TABLE OF CONTENTS
   ============================================================ */
.pp-toc {
  position: sticky;
  /* clears the fixed header; the header is ~135px at rest */
  top: 190px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.pp-toc__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.pp-toc__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 2px solid var(--border);
}

.pp-toc__nav a {
  position: relative;
  padding: 9px 14px;
  margin-left: -2px;
  border-left: 2px solid transparent;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--trans-fast);
}

.pp-toc__nav a:hover {
  color: var(--primary);
  background: var(--bg-alt);
}

.pp-toc__nav a.active {
  border-left-color: var(--secondary);
  color: var(--primary);
  font-weight: 600;
  background: var(--bg-alt);
}

.pp-toc__help {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.pp-toc__help i {
  flex-shrink: 0;
  color: var(--secondary);
  font-size: 18px;
}

.pp-toc__help p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  overflow-wrap: anywhere;
}

.pp-toc__help a {
  color: var(--primary);
  font-weight: 600;
}


/* ============================================================
   3. DOCUMENT PROSE
   ============================================================ */
.pp-doc {
  max-width: 760px;
}

.pp-section {
  padding-bottom: 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--border);
  /* so smooth-scrolled anchors don't tuck under the fixed header */
  scroll-margin-top: 190px;
}

.pp-section:last-of-type {
  border-bottom: none;
}

.pp-doc h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(21px, 2.4vw, 26px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
  margin: 0 0 18px;
}

.pp-doc h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin: 26px 0 10px;
}

.pp-doc p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text);
  margin: 0 0 16px;
}

.pp-doc p:last-child {
  margin-bottom: 0;
}

.pp-doc a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(212, 175, 55, 0.55);
  overflow-wrap: anywhere;
  transition: var(--trans-fast);
}

.pp-doc a:hover {
  color: var(--secondary-dark);
  text-decoration-color: var(--secondary);
}

.pp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 9px;
}

.pp-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text);
}

.pp-list li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
}


/* ============================================================
   4. CONTACT BLOCK
   ============================================================ */
.pp-contact {
  margin-top: 40px;
  padding: 34px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: var(--shadow-lg);
  scroll-margin-top: 190px;
}

h2.pp-contact__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 8px;
}

p.pp-contact__intro {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 24px;
}

.pp-contact__grid {
  display: grid;
  gap: 18px;
}

.pp-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pp-contact__item i {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  color: var(--secondary);
  font-size: 16px;
}

.pp-contact__item strong {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 3px;
}

.pp-contact__item span,
.pp-contact__item a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--white);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.pp-contact__item a:hover {
  color: var(--secondary);
}


/* ============================================================
   5. RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .pp-banner {
    padding: 150px 0 68px;
  }

  .pp-toc {
    top: 150px;
  }

  .pp-section,
  .pp-contact {
    scroll-margin-top: 150px;
  }
}

@media (max-width: 991px) {
  .pp-banner {
    padding: 140px 0 60px;
  }

  /* TOC stops being a sidebar and becomes an intro card */
  .pp-toc {
    position: static;
    padding: 24px 22px;
  }

  .pp-toc__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 10px;
  }

  .pp-doc {
    max-width: none;
  }

  .pp-section,
  .pp-contact {
    scroll-margin-top: 140px;
  }
}

@media (max-width: 767px) {
  .pp-banner {
    padding: 130px 0 52px;
  }

  .pp-toc__nav {
    grid-template-columns: 1fr;
  }

  .pp-section {
    padding-bottom: 28px;
    margin-bottom: 28px;
  }

  .pp-contact {
    padding: 28px 22px;
  }
}

@media (max-width: 575px) {
  .pp-banner__title {
    font-size: 29px;
  }

  .pp-banner__lead {
    font-size: 15px;
  }

  .pp-doc p,
  .pp-list li {
    font-size: 15px;
  }
}


/* ============================================================
   6. REDUCED MOTION / PRINT
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .pp-toc__nav a,
  .pp-doc a {
    transition: none !important;
  }
}

@media print {
  .pp-banner,
  .pp-toc,
  .site-header,
  .top-bar,
  .site-footer,
  .back-to-top,
  .offcanvas-nav,
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }

  .pp-main {
    padding: 0 !important;
  }

  .pp-doc {
    max-width: none;
  }

  .pp-contact {
    background: none !important;
    box-shadow: none !important;
    border: 1px solid #999;
  }

  .pp-contact__title,
  .pp-contact__intro,
  .pp-contact__item span,
  .pp-contact__item a,
  .pp-contact__item strong {
    color: #000 !important;
  }
}


/* ===== SOLAR FACTS / ARTICLE PAGE ===== */
/* ============================================================
   PART 9 — ARTICLE / BLOG POST (.sf-*)
   Used by solar-facts/index.html.

   Reuses the legal-page reading furniture from PART 8 — .pp-toc
   for the sidebar and .pp-doc / .pp-section / .pp-list for the
   prose — so the two long-form pages stay typographically
   identical. Only the post chrome and the comparison components
   below are new.
   ------------------------------------------------------------
   1.  Post banner
   2.  Featured image
   3.  Article extras
   4.  State tabs
   5.  System cards
   6.  Choosing factors
   7.  State comparison
   8.  Rules list + CTA
   9.  Responsive
   10. Reduced motion / print
   ============================================================ */


/* ============================================================
   1. POST BANNER
   ============================================================ */
.sf-banner {
  position: relative;
  /* Fallback offset for the fixed header — subpage.js refines it. */
  padding: 190px 0 72px;
  background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 100%);
  overflow: hidden;
  isolation: isolate;
}

.sf-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 85% 15%, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0) 55%),
    radial-gradient(circle at 10% 90%, rgba(96, 165, 250, 0.14) 0%, rgba(96, 165, 250, 0) 55%);
  pointer-events: none;
}

.sf-banner__content {
  color: var(--white);
}

.sf-chip {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 16px;
  border-radius: 50px;
  background: var(--secondary);
  color: var(--primary-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.sf-banner__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--white);
  margin: 0 0 22px;
  max-width: 820px;
}

.sf-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding: 18px 0 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.sf-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.sf-meta i {
  color: var(--secondary);
  font-size: 15px;
}


/* ============================================================
   2. FEATURED IMAGE
   Pulled up so it straddles the banner edge.
   ============================================================ */
.sf-hero-img {
  margin-top: -48px;
  position: relative;
  z-index: 2;
}

.sf-hero-img figure {
  margin: 0;
}

.sf-hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.sf-hero-img figcaption {
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}


/* ============================================================
   3. ARTICLE EXTRAS
   ============================================================ */
.sf-main {
  padding-top: 56px;
}

.sf-lead {
  font-size: 18px !important;
  line-height: 1.8;
  color: var(--text) !important;
  padding-bottom: 26px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

/* the sidebar sits on the right on this page */
.sf-toc {
  top: 190px;
}


/* ============================================================
   4. STATE TABS
   ============================================================ */
.sf-tabs {
  margin: 26px 0 8px;
}

.sf-tabs__bar {
  display: flex;
  gap: 8px;
  padding: 6px;
  margin-bottom: 24px;
  border-radius: 50px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

.sf-tab {
  flex: 1;
  padding: 12px 18px;
  border: none;
  border-radius: 50px;
  background: transparent;
  color: var(--text-muted);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
}

.sf-tab:hover {
  color: var(--primary);
}

.sf-tab.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(19, 56, 101, 0.25);
}

.sf-tab:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.55);
  outline-offset: 2px;
}

.sf-panel[hidden] {
  display: none;
}


/* ============================================================
   5. SYSTEM CARDS
   ============================================================ */
.sf-sys {
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--trans);
}

.sf-sys:hover {
  box-shadow: var(--shadow-md);
}

.sf-sys__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.sf-sys__head i {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--secondary);
  font-size: 17px;
}

.sf-sys__head h3 {
  margin: 0 !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px !important;
  font-weight: 700;
  color: var(--white) !important;
}

.sf-sys__body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.sf-block {
  padding: 22px 24px;
  border-right: 1px solid var(--border);
}

.sf-block:last-child {
  border-right: none;
}

.sf-block h4 {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.sf-block h4::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
}

.sf-block--pro h4 {
  color: #15803d;
}

.sf-block--pro h4::before {
  background: #22c55e;
}

.sf-block--con h4 {
  color: #b45309;
}

.sf-block--con h4::before {
  background: #f59e0b;
}

.sf-block .pp-list {
  margin-bottom: 0;
}

.sf-block .pp-list li {
  font-size: 14.5px;
  line-height: 1.65;
}

.sf-block--pro .pp-list li::before {
  background: #22c55e;
}

.sf-block--con .pp-list li::before {
  background: #f59e0b;
}


/* ============================================================
   6. CHOOSING FACTORS
   ============================================================ */
.sf-factors {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.sf-factor {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--secondary);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.sf-factor > i {
  flex-shrink: 0;
  color: var(--secondary);
  font-size: 22px;
  line-height: 1.3;
}

.sf-factor strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.sf-factor p {
  font-size: 14.5px !important;
  line-height: 1.7;
  color: var(--text-muted) !important;
  margin: 0 0 6px !important;
}

.sf-factor p:last-child {
  margin-bottom: 0 !important;
}

.sf-state {
  display: inline-block;
  min-width: 38px;
  margin-right: 8px;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--bg-alt);
  color: var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}


/* ============================================================
   7. STATE COMPARISON
   ============================================================ */
.sf-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.sf-compare__col {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.sf-compare__head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px 22px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.sf-compare__head i {
  color: var(--secondary);
  font-size: 18px;
}

.sf-compare__head h3 {
  margin: 0 !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px !important;
  font-weight: 700;
  color: var(--primary) !important;
}

.sf-dl {
  margin: 0;
  padding: 20px 22px;
}

.sf-dl dt {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--secondary-dark);
  margin-bottom: 5px;
}

.sf-dl dd {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text);
}

.sf-dl dd:last-child {
  margin-bottom: 0;
}


/* ============================================================
   8. RULES LIST + CTA
   ============================================================ */
.sf-rules {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

.sf-rules li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--bg-alt);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

.sf-rules i {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--secondary);
  font-size: 18px;
}

.sf-cta {
  margin-top: 40px;
  padding: 36px 34px;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.sf-cta h2 {
  color: var(--white) !important;
  font-size: 24px !important;
  margin-bottom: 10px !important;
}

.sf-cta p {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 15.5px !important;
  margin: 0 0 24px !important;
}

.sf-cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.sf-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.sf-cta .btn-outline:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--primary);
}


/* ============================================================
   9. RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .sf-banner {
    padding: 150px 0 64px;
  }

  .sf-toc {
    top: 150px;
  }

  .sf-hero-img img {
    height: 360px;
  }
}

@media (max-width: 991px) {
  .sf-banner {
    padding: 140px 0 56px;
  }

  .sf-main {
    padding-top: 48px;
  }

  /* sidebar back above the article once the columns stack */
  .sf-toc {
    position: static;
  }

  .sf-hero-img img {
    height: 300px;
  }

  /* three columns of pros/cons is too tight here */
  .sf-sys__body {
    grid-template-columns: 1fr;
  }

  .sf-block {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .sf-block:last-child {
    border-bottom: none;
  }

  .sf-compare {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .sf-banner {
    padding: 130px 0 48px;
  }

  .sf-hero-img {
    margin-top: -32px;
  }

  .sf-hero-img img {
    height: 230px;
    border-radius: var(--radius);
  }

  .sf-lead {
    font-size: 16.5px !important;
  }

  .sf-tabs__bar {
    flex-direction: column;
    border-radius: var(--radius);
    gap: 6px;
  }

  .sf-tab {
    border-radius: var(--radius-sm);
  }

  .sf-cta {
    padding: 28px 22px;
  }

  .sf-cta__btns .btn-primary,
  .sf-cta__btns .btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .sf-banner__title {
    font-size: 26px;
  }

  .sf-meta {
    gap: 8px 18px;
  }

  .sf-sys__head {
    padding: 15px 18px;
  }

  .sf-block,
  .sf-dl {
    padding: 18px;
  }

  .sf-factor {
    padding: 18px;
    gap: 12px;
  }
}


/* ============================================================
   10. REDUCED MOTION / PRINT
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .sf-tab,
  .sf-sys {
    transition: none !important;
  }
}

@media print {
  .sf-banner,
  .sf-toc,
  .sf-cta,
  .sf-tabs__bar {
    display: none !important;
  }

  /* both states matter on paper */
  .sf-panel[hidden] {
    display: block !important;
  }

  .sf-main {
    padding: 0 !important;
  }

  .sf-sys,
  .sf-compare__col {
    break-inside: avoid;
  }
}




/* ===== SERVICE AREA PAGE ===== */
/* ============================================================
   PART 10 — SERVICE AREA PAGE (.sa-*)
   Used by service-area/index.html.

   Reuses from earlier parts: .cu-areas__search (search box),
   .cu-area (card base) and .cu-areas__empty (empty state), so the
   contact page and this page stay consistent. Only the banner,
   response list, map, state-card additions and the "not listed"
   band below are new.
   ------------------------------------------------------------
   1.  Banner
   2.  Coverage intro
   3.  Map
   4.  State cards
   5.  Not-listed band
   6.  Responsive
   7.  Reduced motion
   ============================================================ */


/* ============================================================
   1. BANNER
   ============================================================ */
.sa-banner {
  position: relative;
  /* Fallback offset for the fixed header — subpage.js refines it. */
  padding: 190px 0 90px;
  background: var(--primary-dark);
  overflow: hidden;
  isolation: isolate;
}

.sa-banner__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.sa-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sa-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 39, 72, 0.93) 0%, rgba(13, 39, 72, 0.86) 100%);
}

.sa-banner::before {
  content: '';
  position: absolute;
  top: -170px;
  left: -130px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0) 70%);
  pointer-events: none;
  z-index: -1;
}

.sa-banner__content {
  color: var(--white);
}

.sa-banner__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4.6vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin: 0 0 18px;
}

.sa-banner__lead {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  margin: 0 auto 34px;
}

.sa-banner .rs-breadcrumb {
  justify-content: center;
}

.sa-banner__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 44px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.sa-banner__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}

.sa-banner__stat strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.1;
}

.sa-banner__stat span {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
}


/* ============================================================
   2. COVERAGE INTRO
   ============================================================ */
.sa-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.sa-response {
  padding: 34px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.sa-response__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 22px;
}

.sa-response__item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.sa-response__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.sa-response__item i {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--secondary-dark);
  font-size: 17px;
}

.sa-response__item strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 3px;
}

.sa-response__item span {
  display: block;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
}


/* ============================================================
   3. MAP
   ============================================================ */
.sa-map {
  position: relative;
  line-height: 0;
}

.sa-map__frame {
  position: relative;
  height: 460px;
  background: var(--bg-alt);
}

.sa-map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.35) contrast(1.05);
}

.sa-map__fallback {
  padding: 40px 20px;
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.sa-map__badge {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  border-radius: 50px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  line-height: 1.4;
  max-width: calc(100% - 32px);
}

.sa-map__badge i {
  flex-shrink: 0;
  color: var(--secondary);
  font-size: 22px;
}

.sa-map__badge strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

.sa-map__badge span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
}


/* ============================================================
   4. STATE CARDS
   .cu-area supplies the base card; these add the header row.
   ============================================================ */
.sa-areas__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.sa-area {
  display: flex;
  flex-direction: column;
}

.sa-area__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.sa-area__code {
  flex-shrink: 0;
  display: inline-flex;
  align-items: baseline;
  padding: 6px 11px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.sa-area__code span {
  font-size: 9.5px;
  font-weight: 600;
  opacity: 0.7;
  margin-left: 2px;
}

.sa-area__head h3 {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
}

.sa-area__cities {
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 14px;
}

.sa-area__note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  padding-top: 13px;
  border-top: 1px dashed var(--border);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-muted);
}

.sa-area__note i {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--secondary);
  font-size: 13px;
}


/* ============================================================
   5. NOT-LISTED BAND
   ============================================================ */
.sa-outside__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  padding: 38px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: var(--shadow-lg);
}

.sa-outside__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  color: var(--secondary);
  font-size: 26px;
}

.sa-outside__copy {
  flex: 1 1 320px;
}

.sa-outside__copy h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(21px, 2.5vw, 27px);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 8px;
}

.sa-outside__copy p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
}

.sa-outside__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: 50px;
  background: var(--secondary);
  color: var(--primary-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.32);
  transition: var(--trans);
}

.sa-outside__btn:hover {
  background: var(--secondary-dark);
  color: var(--primary-dark);
  transform: translateY(-2px);
}


/* ============================================================
   6. RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .sa-banner {
    padding: 150px 0 78px;
  }
}

@media (max-width: 991px) {
  .sa-banner {
    padding: 140px 0 66px;
  }

  .sa-areas__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sa-map__frame {
    height: 380px;
  }

  .sa-response {
    padding: 28px 26px;
  }

  .sa-outside__inner {
    padding: 32px 30px;
  }
}

@media (max-width: 767px) {
  .sa-banner {
    padding: 130px 0 54px;
  }

  .sa-intro__actions .btn-primary,
  .sa-intro__actions .btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .sa-areas__grid {
    grid-template-columns: 1fr;
  }

  .sa-map__frame {
    height: 300px;
  }

  .sa-map__badge {
    bottom: 16px;
    padding: 12px 18px;
    gap: 10px;
  }

  .sa-outside__inner {
    padding: 28px 22px;
    text-align: center;
    justify-content: center;
  }

  .sa-outside__btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .sa-banner__title {
    font-size: 29px;
  }

  .sa-banner__lead {
    font-size: 15.5px;
  }

  .sa-banner__stat strong {
    font-size: 26px;
  }

  .sa-banner__stats {
    gap: 14px 22px;
  }

  .sa-banner__stat {
    min-width: 90px;
  }
}


/* ============================================================
   7. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .sa-outside__btn {
    transition: none !important;
  }

  .sa-outside__btn:hover {
    transform: none !important;
  }
}




/* --- suburb links (added with the suburb link pass) --- */
/* Each suburb in .sa-area__cities is now an <a> to
   /service-area/<suburb>/ . Kept visually close to the old plain
   text so the card doesn't turn into a wall of blue. */
.sa-area__cities a {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: var(--trans-fast);
}

.sa-area__cities a:hover,
.sa-area__cities a:focus-visible {
  color: var(--primary);
  border-bottom-color: var(--secondary);
}

.sa-area__cities a:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.6);
  outline-offset: 2px;
  border-radius: 2px;
}

.sa-sep {
  color: var(--border);
  margin: 0 2px;
  user-select: none;
}

@media (prefers-reduced-motion: reduce) {
  .sa-area__cities a {
    transition: none !important;
  }
}




/* ===== BLOG PAGE ===== */
/* ============================================================
   PART 11 — BLOG PAGE (.bl-*)
   Used by blog/index.html.

   Reuses from PART 1: .blog-card and all its elements (__img,
   __cat, __body, __meta, __title, __link), .pf-btn for the
   category filter, and .proj-item as the filter hook that
   initProjectFilter() already drives. Only the banner, featured
   post, grid wrapper and newsletter band are new.
   ------------------------------------------------------------
   1.  Banner
   2.  Featured post
   3.  Filters + grid
   4.  Newsletter band
   5.  Responsive
   6.  Reduced motion
   ============================================================ */


/* ============================================================
   1. BANNER
   ============================================================ */
.bl-banner {
  position: relative;
  /* Fallback offset for the fixed header — subpage.js refines it. */
  padding: 190px 0 80px;
  background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 100%);
  overflow: hidden;
  isolation: isolate;
}

.bl-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.17) 0%, rgba(212, 175, 55, 0) 55%),
    radial-gradient(circle at 85% 80%, rgba(96, 165, 250, 0.14) 0%, rgba(96, 165, 250, 0) 55%);
  pointer-events: none;
}

.bl-banner__content {
  color: var(--white);
}

.bl-banner__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 800;
  line-height: 1.14;
  color: var(--white);
  margin: 0 0 16px;
}

.bl-banner__lead {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin: 0 auto;
}

.bl-banner .rs-breadcrumb {
  justify-content: center;
}


/* ============================================================
   2. FEATURED POST
   ============================================================ */
.bl-feature {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--trans);
}

.bl-feature:hover {
  box-shadow: var(--shadow-lg);
}

.bl-feature__media {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 340px;
}

.bl-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.bl-feature:hover .bl-feature__media img {
  transform: scale(1.05);
}

.bl-feature__flag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 7px 16px;
  border-radius: 50px;
  background: var(--secondary);
  color: var(--primary-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

.bl-feature__body {
  padding: 38px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* .blog-card__cat is absolutely positioned inside a card image —
   reset it for use as an inline chip here */
.bl-feature__cat {
  position: static !important;
  align-self: flex-start;
  margin-bottom: 14px;
}

.bl-feature__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 14px;
}

.bl-feature__title a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--trans-fast);
}

.bl-feature__title a:hover {
  color: var(--secondary-dark);
}

.bl-feature__excerpt {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0 0 18px;
}

.bl-feature__meta {
  margin-bottom: 24px !important;
}

.bl-feature__body .btn-primary {
  align-self: flex-start;
}


/* ============================================================
   3. FILTERS + GRID
   ============================================================ */
.bl-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
}

.bl-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

/* .proj-item is only a filter hook here — it must not impose the
   project-grid sizing, just carry the show/hide transition. */
.bl-grid .proj-item {
  height: 100%;
}

.bl-grid .blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bl-grid .blog-card__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* push the Read More link to the bottom so cards align */
.bl-grid .blog-card__link {
  margin-top: auto;
}

.bl-empty {
  margin: 40px 0 0;
  text-align: center;
  font-size: 15.5px;
  color: var(--text-muted);
}

.bl-empty[hidden] {
  display: none;
}

.bl-empty i {
  color: var(--secondary);
  margin-right: 7px;
}

.bl-more {
  margin-top: 46px;
  text-align: center;
}

.bl-more .btn-outline {
  pointer-events: none;
  opacity: 0.55;
}

.bl-more p {
  margin: 14px 0 0;
  font-size: 13.5px;
  color: var(--text-muted);
}


/* ============================================================
   4. NEWSLETTER BAND
   ============================================================ */
.bl-news {
  padding: 0 0 96px;
  background: var(--bg-alt);
  padding-top: 96px;
}

.bl-news__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  padding: 38px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: var(--shadow-lg);
}

.bl-news__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  color: var(--secondary);
  font-size: 26px;
}

.bl-news__copy {
  flex: 1 1 300px;
}

.bl-news__copy h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(21px, 2.5vw, 27px);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 8px;
}

.bl-news__copy p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
}

/* .newsletter-wrap comes from PART 1 (the footer subscribe box);
   it only needs a width here. */
.bl-news__form {
  flex: 1 1 320px;
  max-width: 420px;
}


/* ============================================================
   5. RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .bl-banner {
    padding: 150px 0 70px;
  }

  .bl-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .bl-banner {
    padding: 140px 0 60px;
  }

  /* featured post stacks: image on top */
  .bl-feature {
    grid-template-columns: 1fr;
  }

  .bl-feature__media {
    min-height: 260px;
  }

  .bl-feature__body {
    padding: 30px 28px;
  }

  .bl-news {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .bl-news__inner {
    padding: 32px 30px;
  }
}

@media (max-width: 767px) {
  .bl-banner {
    padding: 130px 0 52px;
  }

  .bl-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .bl-filters {
    gap: 9px;
    margin-bottom: 32px;
  }

  .bl-feature__media {
    min-height: 210px;
  }

  .bl-feature__body {
    padding: 26px 22px;
  }

  .bl-news {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .bl-news__inner {
    padding: 28px 22px;
    text-align: center;
    justify-content: center;
  }

  .bl-news__form {
    max-width: none;
    flex-basis: 100%;
  }
}

@media (max-width: 575px) {
  .bl-banner__title {
    font-size: 29px;
  }

  .bl-banner__lead {
    font-size: 15.5px;
  }

  .bl-feature__excerpt {
    font-size: 15px;
  }
}


/* ============================================================
   6. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .bl-feature,
  .bl-feature__media img,
  .bl-feature__title a {
    transition: none !important;
  }

  .bl-feature:hover .bl-feature__media img {
    transform: none !important;
  }
}




/* ===== OUR PROCESS PAGE ===== */
/* ============================================================
   PART 12 — OUR PROCESS PAGE (.op-*)
   Used by our-process/index.html.
   ------------------------------------------------------------
   1.  Banner
   2.  Intro
   3.  Commitment cards
   4.  Pre-installation plan
   5.  Step timeline
   6.  Responsive
   7.  Reduced motion
   ============================================================ */


/* ============================================================
   1. BANNER
   ============================================================ */
.op-banner {
  position: relative;
  /* Fallback offset for the fixed header — subpage.js refines it. */
  padding: 190px 0 90px;
  background: var(--primary-dark);
  overflow: hidden;
  isolation: isolate;
}

.op-banner__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.op-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.op-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 39, 72, 0.94) 0%, rgba(13, 39, 72, 0.87) 100%);
}

.op-banner::before {
  content: '';
  position: absolute;
  top: -170px;
  right: -130px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0) 70%);
  pointer-events: none;
  z-index: -1;
}

.op-banner__content {
  color: var(--white);
}

.op-banner__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(30px, 4.4vw, 50px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin: 0 0 18px;
}

.op-banner__lead {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 660px;
  margin: 0 auto;
}

.op-banner .rs-breadcrumb {
  justify-content: center;
}


/* ============================================================
   2. INTRO
   ============================================================ */
.op-intro__lead {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 600;
  line-height: 1.6;
  color: var(--primary);
  margin: 0 0 18px;
}

.op-intro__text {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--text-muted);
  margin: 0;
}


/* ============================================================
   3. COMMITMENT CARDS
   Five items: 3 across, then 2 centred on the second row.
   ============================================================ */
.op-offer__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

/* first row: three cards spanning 2 columns each */
.op-card {
  grid-column: span 2;
  position: relative;
  padding: 34px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--trans);
}

/* second row: two cards, spanning 3 columns each so they centre */
.op-card:nth-child(4),
.op-card:nth-child(5) {
  grid-column: span 3;
}

.op-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.op-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.op-card:hover::after {
  transform: scaleX(1);
}

.op-card__num {
  position: absolute;
  top: 12px;
  right: 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  opacity: 0.06;
  pointer-events: none;
}

.op-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-size: 23px;
  transition: var(--trans);
}

.op-card:hover .op-card__icon {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--primary-dark);
}

.op-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--primary);
  margin: 0 0 12px;
}

.op-card__text {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}


/* ============================================================
   4. PRE-INSTALLATION PLAN
   ============================================================ */
.op-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  counter-reset: opq;
}

.op-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--secondary);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text);
  transition: var(--trans);
}

.op-checklist li:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.op-checklist i {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--secondary);
  font-size: 19px;
}

.op-plan__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* — the 1,000,000 kW stat — */
.op-stat {
  margin-top: 32px;
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: var(--shadow-lg);
}

.op-stat__figure {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 12px;
}

.op-stat__unit {
  font-size: 0.6em;
  color: rgba(255, 255, 255, 0.75);
}

.op-stat__label {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

.op-stat__label strong {
  color: var(--white);
}


/* ============================================================
   5. STEP TIMELINE
   ============================================================ */
.op-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 900px;
  margin-inline: auto;
}

/* the spine */
.op-steps__list::before {
  content: '';
  position: absolute;
  left: 84px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--secondary), rgba(212, 175, 55, 0.15));
}

.op-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 42px;
  padding-bottom: 30px;
}

.op-step:last-child {
  padding-bottom: 0;
}

.op-step__marker {
  flex-shrink: 0;
  width: 84px;
  display: flex;
  justify-content: flex-end;
  padding-top: 24px;
}

.op-step__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--primary);
  text-transform: uppercase;
  white-space: nowrap;
}

/* node on the spine */
.op-step::before {
  content: '';
  position: absolute;
  left: 78px;
  top: 30px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--secondary);
  border: 3px solid var(--bg-alt);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.22);
  z-index: 1;
}

.op-step__body {
  flex-grow: 1;
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}

.op-step__body:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.op-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-size: 21px;
}

.op-step__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--primary);
  margin: 0 0 12px;
}

.op-step__text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  margin: 0;
}


/* ============================================================
   6. RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .op-banner {
    padding: 150px 0 78px;
  }

  /* 5 cards -> 2 across (2+2+1, last one full width) */
  .op-offer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .op-card,
  .op-card:nth-child(4),
  .op-card:nth-child(5) {
    grid-column: auto;
  }

  .op-card:nth-child(5) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 991px) {
  .op-banner {
    padding: 140px 0 66px;
  }

  .op-stat {
    margin-bottom: 8px;
  }

  .op-step {
    gap: 30px;
  }

  .op-steps__list::before {
    left: 64px;
  }

  .op-step__marker {
    width: 64px;
  }

  .op-step::before {
    left: 58px;
  }
}

@media (max-width: 767px) {
  .op-banner {
    padding: 130px 0 54px;
  }

  .op-offer__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .op-card,
  .op-card:nth-child(5) {
    grid-column: auto;
    padding: 30px 24px;
  }

  .op-plan__cta .btn-primary,
  .op-plan__cta .btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .op-checklist li {
    padding: 18px 20px;
    font-size: 15px;
  }

  .op-checklist li:hover {
    transform: none;
  }

  /* timeline collapses to a single left rail */
  .op-steps__list::before {
    left: 7px;
  }

  .op-step {
    flex-direction: column;
    gap: 10px;
    padding-left: 32px;
    padding-bottom: 26px;
  }

  .op-step::before {
    left: 1px;
    top: 6px;
  }

  .op-step__marker {
    width: auto;
    padding-top: 0;
    justify-content: flex-start;
  }

  .op-step__num {
    color: var(--secondary-dark);
  }

  .op-step__body {
    width: 100%;
    padding: 24px 22px;
  }

  .op-step__body:hover {
    transform: none;
  }
}

@media (max-width: 575px) {
  .op-banner__title {
    font-size: 27px;
  }

  .op-banner__lead,
  .op-intro__text {
    font-size: 15.5px;
  }

  .op-card__title {
    font-size: 17px;
  }
}


/* ============================================================
   7. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .op-card,
  .op-card::after,
  .op-card__icon,
  .op-checklist li,
  .op-step__body {
    transition: none !important;
  }

  .op-card:hover,
  .op-checklist li:hover,
  .op-step__body:hover {
    transform: none !important;
  }
}


/* ==================================================================
   ==================================================================
   HYBRID PAGE - 3 IMAGE ROW                         <-- ADDED LAST
   ------------------------------------------------------------------
   Used by: hybrid-solar-energy-system/index.html
   Markup:  <section class="hse-showcase"> ... </section>
            sits between the process section and the FAQs.

   Plain images only - no card, no captions, no text.
   Everything is in this one block at the very end of the file.
   ==================================================================
   ================================================================== */

.hse-showcase {
  background: var(--bg);
}

/* three equal images in one row */
.hse-showcase__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.hse-shot {
  width: 100%;
  height: 300px;              /* all three match, whatever the source ratio */
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hse-shot:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}


/* ------------------------------------------------------------------
   RESPONSIVE   3 across -> 2 across (991px) -> 1 across (767px)
   ------------------------------------------------------------------ */
@media (max-width: 991px) {
  .hse-showcase__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  /* odd one out spans the full width so the row never looks broken */
  .hse-shot:last-child {
    grid-column: 1 / -1;
    height: 320px;
  }
}

@media (max-width: 767px) {
  .hse-showcase__row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hse-shot,
  .hse-shot:last-child {
    grid-column: auto;
    height: 240px;
    border-radius: var(--radius);
  }
}


/* ------------------------------------------------------------------
   REDUCED MOTION
   ------------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  .hse-shot {
    transition: none !important;
  }

  .hse-shot:hover {
    transform: none !important;
  }
}

/* ==================== END 3 IMAGE ROW ==================== */
