/*
 * SHSEIP application layer
 * A focused design system for the PHP site. This file intentionally loads after
 * the retained template styles so legacy content can transition without inline
 * overrides or duplicated page-specific CSS.
 */

:root {
  --font-primary: "Manrope", "Segoe UI", sans-serif;
  --font-secondary: "Albert Sans", "Segoe UI", sans-serif;
  --app-forest-950: #06170d;
  --app-forest-900: #0a2414;
  --app-forest-800: #10371f;
  --app-forest-700: #19502b;
  --app-green-600: #2f8846;
  --app-green-500: #43a55d;
  --app-green-100: #e5f2e8;
  --app-green-50: #f2f8f3;
  --app-gold-500: #d6a548;
  --app-gold-400: #e4ba69;
  --app-gold-100: #f8ebcf;
  --app-ivory: #f7f4ed;
  --app-ivory-soft: #fbfaf6;
  --app-white: #ffffff;
  --app-ink: #102319;
  --app-copy: #526259;
  --app-muted: #738077;
  --app-line: rgba(16, 55, 31, 0.13);
  --app-line-light: rgba(255, 255, 255, 0.14);
  --app-shadow-sm: 0 12px 34px rgba(6, 35, 18, 0.07);
  --app-shadow-md: 0 24px 64px rgba(6, 35, 18, 0.11);
  --app-shadow-lg: 0 38px 100px rgba(4, 24, 12, 0.18);
  --app-radius-sm: 10px;
  --app-radius-md: 18px;
  --app-radius-lg: 28px;
  --app-container: 1240px;
  --app-section-space: clamp(54px, 5vw, 76px);
  --app-section-space-compact: clamp(42px, 4vw, 60px);
  --app-hero-space: clamp(60px, 6vw, 88px);
  --app-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --app-fast: 180ms;
  --app-base: 340ms;
  --app-inner-hero-image: url("../images/banner/22.jpg");
  --color-primary: var(--app-green-600);
  --color-primary-2: var(--app-gold-500);
  --color-heading-1: var(--app-ink);
  --color-body: var(--app-copy);
  --shseip-ink: var(--app-ink);
}

html {
  scroll-behavior: smooth !important;
  scroll-padding-top: 110px;
}

body.php-site {
  min-width: 320px;
  overflow-x: clip;
  overflow-y: visible;
  background: var(--app-white);
  color: var(--app-copy);
  font-family: var(--font-secondary), "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.php-site.menu-open,
body.php-site.nav-open,
body.php-site.has-open-menu {
  overflow: hidden;
}

.php-site *,
.php-site *::before,
.php-site *::after {
  box-sizing: border-box;
}

.php-site img,
.php-site video,
.php-site iframe {
  max-width: 100%;
}

.php-site img {
  height: auto;
}

.php-site .rounded-media {
  display: block;
  width: 100%;
  border-radius: var(--app-radius-md);
}

.php-site .inline-link {
  display: inline-flex;
}

.php-site .value-card-auto {
  height: auto;
}

.php-site .solution-benefit {
  color: var(--app-green-600);
}

.php-site a {
  text-underline-offset: 0.18em;
}

.php-site p,
.php-site li {
  color: var(--app-copy);
}

.php-site h1,
.php-site h2,
.php-site h3,
.php-site h4,
.php-site h5,
.php-site h6 {
  color: var(--app-ink);
  font-family: var(--font-primary), "Segoe UI", sans-serif;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.php-site ::selection {
  background: var(--app-gold-100);
  color: var(--app-forest-950);
}

.php-site :where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--app-gold-400);
  outline-offset: 4px;
}

.site-container,
.php-site .container {
  width: min(calc(100% - 40px), var(--app-container));
  max-width: var(--app-container);
  margin-inline: auto;
  padding-inline: 0;
}

.php-site .container-full {
  width: min(calc(100% - 40px), 1480px);
  margin-inline: auto;
  padding-inline: 0;
}

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

/* The legacy template expected GSAP/WOW to reveal these nodes. The PHP app
   uses progressive enhancement, so they must be readable without either. */
.php-site .skew-up,
.php-site .skew-up .word,
.php-site .skew-up .char {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--app-white);
  color: var(--app-forest-900);
  box-shadow: var(--app-shadow-md);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform var(--app-fast) ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header and navigation --------------------------------------------------- */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 var(--app-line);
  transition: box-shadow var(--app-base) ease;
}

.site-header.is-scrolled,
.site-header.scrolled {
  box-shadow: 0 16px 48px rgba(6, 35, 18, 0.11);
}

.site-topbar {
  overflow: hidden;
  max-height: 42px;
  background: var(--app-forest-950);
  transition: max-height var(--app-base) var(--app-ease), opacity var(--app-fast) ease;
}

.site-topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-topbar p,
.site-topbar a,
.site-topbar span {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1.3;
}

.site-topbar p,
.site-topbar-contact,
.site-topbar-contact a,
.site-topbar-contact > span {
  display: flex;
  align-items: center;
}

.site-topbar p,
.site-topbar-contact {
  gap: 22px;
}

.site-topbar-contact a,
.site-topbar-contact > span,
.site-topbar p {
  gap: 8px;
}

.site-topbar i {
  color: var(--app-gold-400);
  font-size: 12px;
}

.site-topbar a:hover {
  color: var(--app-white);
}

.site-header.is-scrolled .site-topbar,
.site-header.scrolled .site-topbar {
  max-height: 0;
  opacity: 0;
}

.site-nav-shell {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px) saturate(140%);
}

.site-nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 30px;
  transition: min-height var(--app-base) var(--app-ease);
}

.site-header.is-scrolled .site-nav-inner,
.site-header.scrolled .site-nav-inner {
  min-height: 72px;
}

.site-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  display: block;
  width: 178px;
  max-height: 54px;
}

.desktop-navigation {
  margin-left: auto;
}

.desktop-navigation ul,
.desktop-navigation li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-navigation ul {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.65vw, 26px);
}

.desktop-navigation a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: #273b2f;
  font-family: var(--font-primary), sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.desktop-navigation a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--app-gold-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--app-base) var(--app-ease);
}

.desktop-navigation a:hover,
.desktop-navigation a.active {
  color: var(--app-green-600);
}

.desktop-navigation a:hover::after,
.desktop-navigation a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-contact-link,
.mobile-menu-toggle {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--app-line);
  border-radius: 50%;
  background: var(--app-white);
  color: var(--app-forest-800);
  transition: color var(--app-fast) ease, border-color var(--app-fast) ease, background var(--app-fast) ease, transform var(--app-fast) ease;
}

.header-contact-link:hover {
  border-color: var(--app-green-600);
  background: var(--app-green-50);
  color: var(--app-green-600);
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform var(--app-base) var(--app-ease), opacity var(--app-fast) ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer ---------------------------------------------------------- */
.mobile-navigation-backdrop {
  position: fixed;
  z-index: 1090;
  inset: 0;
  visibility: hidden;
  background: rgba(3, 16, 8, 0.64);
  opacity: 0;
  backdrop-filter: blur(5px);
  pointer-events: none;
  transition: visibility var(--app-base), opacity var(--app-base) ease;
}

.mobile-navigation {
  position: fixed;
  z-index: 1100;
  inset: 0 0 0 auto;
  width: min(430px, 91vw);
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  overscroll-behavior: contain;
  background: var(--app-ivory-soft);
  color: var(--app-ink);
  box-shadow: -24px 0 80px rgba(4, 24, 12, 0.2);
  transform: translateX(104%);
  transition: transform 480ms var(--app-ease), visibility 480ms;
  visibility: hidden;
}

.mobile-navigation.is-open,
.mobile-navigation.open,
.mobile-navigation[aria-hidden="false"] {
  visibility: visible;
  transform: translateX(0);
}

.mobile-navigation.is-open + *,
.mobile-navigation-backdrop.is-open,
.mobile-navigation-backdrop.open,
body.menu-open .mobile-navigation-backdrop,
body.nav-open .mobile-navigation-backdrop,
body.has-open-menu .mobile-navigation-backdrop {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-navigation-head {
  flex: 0 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 26px;
  border-bottom: 1px solid var(--app-line);
}

.mobile-navigation-head img {
  width: 174px;
  max-height: 50px;
}

.mobile-navigation-head button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--app-line);
  border-radius: 50%;
  background: var(--app-white);
  color: var(--app-forest-900);
  cursor: pointer;
}

.mobile-navigation nav {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(47, 136, 70, 0.42) transparent;
  scrollbar-width: thin;
  padding: 18px 26px;
}

.mobile-navigation nav ul {
  width: 100%;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 3px;
}

.mobile-navigation nav ul,
.mobile-navigation nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-navigation nav li {
  display: block;
  width: 100%;
}

.mobile-navigation nav a {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--app-ink);
  font-family: var(--font-primary), sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  transition: color var(--app-fast) ease, background var(--app-fast) ease, border-color var(--app-fast) ease;
}

.mobile-navigation nav a span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.mobile-navigation nav a i {
  flex: 0 0 auto;
  color: var(--app-green-600);
  font-size: 13px;
  transition: transform var(--app-fast) ease;
}

.mobile-navigation nav a:hover,
.mobile-navigation nav a.active {
  border-color: rgba(47, 136, 70, 0.12);
  background: var(--app-green-50);
  color: var(--app-green-600);
}

.mobile-navigation nav a:hover i {
  transform: translateX(4px);
}

.mobile-navigation-contact {
  flex: 0 0 auto;
  margin-top: 0;
  padding: 28px 26px 34px;
  background: var(--app-forest-900);
}

.mobile-navigation-contact p {
  margin-bottom: 17px;
  color: var(--app-white);
  font-family: var(--font-primary), sans-serif;
  font-size: 19px;
  font-weight: 600;
}

.mobile-navigation-contact > a:not(.site-button) {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.mobile-navigation-contact > a:not(.site-button) i {
  color: var(--app-gold-400);
}

/* Buttons and interactive links ----------------------------------------- */
.site-button,
.php-site .rts-btn {
  position: relative;
  isolation: isolate;
  min-height: 52px;
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-primary), sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: center;
  transition: color var(--app-base) ease, background var(--app-base) ease, border-color var(--app-base) ease, box-shadow var(--app-base) ease, transform var(--app-base) var(--app-ease);
}

.site-button:hover,
.php-site .rts-btn:hover {
  transform: translateY(-2px);
}

.site-button-primary {
  background: linear-gradient(135deg, var(--app-green-600), #236f38);
  color: var(--app-white);
  box-shadow: 0 11px 26px rgba(47, 136, 70, 0.24);
}

.site-button-primary:hover {
  background: var(--app-forest-800);
  color: var(--app-white);
  box-shadow: 0 16px 34px rgba(6, 35, 18, 0.2);
}

.site-button-light {
  background: var(--app-white);
  color: var(--app-forest-900);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.site-button-light:hover {
  background: var(--app-gold-100);
  color: var(--app-forest-950);
}

.php-site .rts-btn.btn-primary,
.php-site .rts-btn.btn-quote {
  background: var(--app-forest-900);
  color: var(--app-white);
  box-shadow: 0 11px 28px rgba(47, 136, 70, 0.18);
}

.php-site .rts-btn.btn-primary::before,
.php-site .rts-btn.btn-quote::before {
  border-radius: inherit;
  background: linear-gradient(135deg, var(--app-green-600), #24743a);
}

.php-site .rts-btn.btn-primary:hover,
.php-site .rts-btn.btn-quote:hover {
  color: var(--app-white);
  box-shadow: 0 18px 36px rgba(6, 35, 18, 0.18);
}

.php-site .rts-btn.btn-outline {
  border-color: rgba(255, 255, 255, 0.62);
  background: transparent;
  color: var(--app-white);
  box-shadow: none;
}

.php-site .rts-btn.btn-outline::before {
  border-radius: inherit;
  background: var(--app-white);
}

.php-site .rts-btn.btn-outline:hover {
  border-color: var(--app-white);
  color: var(--app-forest-900);
}

.php-site .read-more-btn,
.php-site .project-view-link,
.php-site .document-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--app-green-600);
  font-family: var(--font-primary), sans-serif;
  font-weight: 700;
  transition: color var(--app-fast) ease, gap var(--app-fast) ease;
}

.php-site .read-more-btn:hover,
.php-site .project-view-link:hover,
.php-site .document-link:hover {
  gap: 12px;
  color: var(--app-forest-800);
}

/* Shared page hero ------------------------------------------------------- */
.shared-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: var(--app-hero-space) 0;
  border-bottom: 1px solid rgba(16, 55, 31, 0.1);
  background-color: #f4f8f1;
  background-image:
    linear-gradient(90deg, rgba(252, 253, 249, 0.98) 0%, rgba(249, 252, 246, 0.94) 52%, rgba(246, 250, 243, 0.76) 100%),
    var(--app-inner-hero-image);
  background-repeat: no-repeat;
  background-position: center, center 62%;
  background-size: cover;
}

.shared-page-hero::before,
.shared-page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.shared-page-hero::before {
  width: 460px;
  height: 460px;
  top: -310px;
  right: -80px;
  border: 60px solid rgba(214, 165, 72, 0.13);
}

.shared-page-hero::after {
  width: 250px;
  height: 250px;
  right: 18%;
  bottom: -210px;
  border: 1px solid rgba(47, 136, 70, 0.16);
}

.shared-hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(16, 55, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 55, 31, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 88%);
}

.shared-page-hero-inner {
  position: relative;
  min-width: 0;
}

.shared-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 35px;
  color: var(--app-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shared-breadcrumb a {
  color: var(--app-forest-800);
}

.shared-breadcrumb a:hover {
  color: var(--app-green-600);
}

.shared-breadcrumb i {
  color: var(--app-gold-500);
  font-size: 9px;
}

.php-site .shared-page-hero .shared-hero-eyebrow,
.shared-enquiry-copy > p {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  color: var(--app-green-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.shared-hero-eyebrow > span,
.shared-enquiry-copy > p > span {
  width: 35px;
  height: 1px;
  display: inline-block;
  background: currentColor;
}

.shared-page-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--app-forest-950);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.shared-page-hero-inner > p:last-child {
  max-width: 760px;
  margin: 24px 0 0;
  color: #4f6256;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.75;
}

/* Section rhythm and typography ----------------------------------------- */
.php-site .rts-section-gap,
.php-site .rts-section-gap2,
.php-site .rts-section-gap3 {
  position: relative;
  padding-top: var(--app-section-space);
  padding-bottom: var(--app-section-space);
}

.php-site .rts-section-gapBottom,
.php-site .rts-section-gap2Bottom,
.php-site .rts-section-gap3Bottom {
  position: relative;
  padding-bottom: var(--app-section-space);
}

.php-site .rts-section-gapTop,
.php-site .rts-section-gap2Top,
.php-site .rts-section-gap3Top {
  position: relative;
  padding-top: var(--app-section-space);
}

.php-site .mt--120 {
  margin-top: var(--app-section-space-compact) !important;
}

.php-site .title-area-left .pre,
.php-site .title-area-center .pre {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 17px;
  color: var(--app-green-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.php-site .title-area-center .pre {
  justify-content: center;
}

.php-site .title-area-left .pre::before,
.php-site .title-area-center .pre::before {
  content: "";
  width: 28px;
  height: 1px;
  display: inline-block;
  background: var(--app-gold-500);
}

.php-site .title-area-left .pre span,
.php-site .title-area-center .pre span {
  color: var(--app-white);
}

.php-site .title-area-left .title,
.php-site .title-area-center .title {
  margin-bottom: 0;
  color: var(--app-ink);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.php-site .title-area-center {
  max-width: 830px;
  margin-inline: auto;
  text-align: center;
}

.php-site .section-sub {
  max-width: 670px;
  margin-top: 20px;
  color: var(--app-copy);
  font-size: 17px;
  line-height: 1.75;
}

.php-site .content-inner > .disc,
.php-site .title-area-left + .disc {
  font-size: 17px;
  line-height: 1.8;
}

.php-site .stok-bg {
  position: absolute;
  top: var(--app-section-space-compact);
  right: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  margin: 0;
  color: var(--app-forest-900);
  font-size: clamp(76px, 11vw, 176px);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.05em;
  opacity: 0.022;
  pointer-events: none;
  user-select: none;
}

.php-site .stok-bg.images-r.left {
  left: 0;
  padding-left: max(15px, calc((100vw - var(--app-container)) / 2));
}

.php-site .rts-section-gap > .container,
.php-site .rts-section-gapBottom > .container,
.php-site .rts-section-gapTop > .container,
.php-site .rts-section-gap2 > .container,
.php-site .rts-section-gap2Bottom > .container,
.php-site .rts-section-gap2Top > .container,
.php-site .rts-section-gap3 > .container,
.php-site .rts-section-gap3Bottom > .container,
.php-site .rts-section-gap3Top > .container {
  position: relative;
  z-index: 1;
}

.rts-service-area-height-solari,
.our-working-process-start {
  background: var(--app-ivory-soft);
}

.faq-section-start-solar {
  background: var(--app-green-50);
}

/* Home hero -------------------------------------------------------------- */
.banner-two-swiper-start {
  position: relative;
  overflow: hidden;
  background: var(--app-forest-950);
}

.banner-two-main-wrapper-solaric {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
}

.banner-two-main-wrapper-solaric::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 22, 11, 0.18), transparent 65%);
  pointer-events: none;
}

.banner-two-main-wrapper-solaric > .container {
  position: relative;
  z-index: 2;
}

.php-site .banner-solari-2-content {
  max-width: 730px;
  padding-top: clamp(125px, 13vw, 185px);
  padding-bottom: clamp(125px, 13vw, 185px);
}

.banner-solari-2-content .pre {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.banner-solari-2-content .pre::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--app-gold-400);
}

.banner-solari-2-content .pre span {
  color: var(--app-gold-400);
}

.php-site .banner-solari-2-content .banner-title {
  max-width: 740px;
  margin-bottom: 24px;
  color: var(--app-white);
  font-size: clamp(46px, 5.5vw, 72px);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.047em;
}

.php-site .banner-solari-2-content .disc {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.75;
}

.button-solari-banner-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.php-site .banner-two-main-wrapper-solaric .water-text {
  color: rgba(255, 255, 255, 0.025);
  font-size: clamp(120px, 20vw, 310px);
  font-weight: 800;
  letter-spacing: -0.08em;
}

.mySwiper-banner-2 .swiper-pagination-b2 {
  position: absolute;
  z-index: 4;
  right: auto;
  bottom: 32px;
  left: max(20px, calc((100% - var(--app-container)) / 2));
  width: auto;
  display: flex;
  align-items: center;
  gap: 9px;
}

.mySwiper-banner-2 .swiper-pagination-bullet,
.mySwiper-testimonials-solari .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  opacity: 1;
  transition: width var(--app-base) var(--app-ease), background var(--app-fast) ease;
}

.mySwiper-banner-2 .swiper-pagination-bullet-active,
.mySwiper-testimonials-solari .swiper-pagination-bullet-active {
  width: 28px;
  height: 8px;
  background: var(--app-gold-400);
  background-image: none;
}

/* Home hero: premium editorial slider ---------------------------------- */
.php-site.page-home .home-hero,
.php-site.page-home .home-hero .mySwiper-banner-2 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--app-forest-950);
}

.php-site.page-home .home-hero-slide {
  height: auto;
  background: var(--app-forest-950);
}

.php-site.page-home .home-hero-slide-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  height: auto;
  min-height: 700px;
  background-position: center;
}

.php-site.page-home .home-hero-slide-shell::before,
.php-site.page-home .home-hero-slide-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.php-site.page-home .home-hero-slide-shell::before {
  z-index: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(228, 186, 105, 0.15), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(67, 165, 93, 0.16), transparent 30%);
}

.php-site.page-home .home-hero-slide-shell::after {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(4, 18, 9, 0.94) 0%, rgba(5, 24, 12, 0.78) 43%, rgba(5, 22, 11, 0.28) 76%, rgba(5, 22, 11, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(4, 18, 9, 0.28));
}

.php-site.page-home .home-hero-slide-shell > .container {
  position: relative;
  z-index: 2;
}

.php-site.page-home .home-hero-slide-index {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: max(20px, calc((100% - var(--app-container)) / 2));
  color: transparent;
  font-family: var(--font-primary), sans-serif;
  font-size: clamp(150px, 19vw, 290px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.08em;
  opacity: 0.3;
  transform: translateY(-50%);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.16);
  pointer-events: none;
  user-select: none;
}

.php-site.page-home .home-hero .home-hero-copy {
  max-width: 730px;
  padding: 112px 0 150px;
}

.php-site.page-home .home-hero .home-hero-copy .pre {
  display: flex !important;
  width: fit-content;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(6, 23, 13, 0.35);
  backdrop-filter: blur(8px);
}

.php-site.page-home .home-hero .home-hero-copy .pre::before {
  width: 20px;
}

.php-site.page-home .home-hero .home-hero-copy .pre span {
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.php-site.page-home .home-hero .home-hero-copy .banner-title {
  max-width: 760px;
  margin-top: 0;
  text-wrap: balance;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.php-site.page-home .home-hero .rts-btn.btn-primary {
  border-color: var(--app-green-600);
  box-shadow: 0 14px 34px rgba(14, 98, 44, 0.28);
}

.php-site.page-home .home-hero .rts-btn.btn-outline {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
  color: var(--app-white);
  backdrop-filter: blur(8px);
}

.php-site.page-home .home-hero .rts-btn.btn-outline:hover {
  border-color: var(--app-white);
  background: var(--app-white);
  color: var(--app-forest-950);
}

.home-hero-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 600;
}

.home-hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.home-hero-proof i {
  color: var(--app-gold-400);
}

.php-site.page-home .home-panel-slide {
  background-image:
    radial-gradient(circle at 88% 14%, rgba(214, 165, 72, 0.18), transparent 26%),
    radial-gradient(circle at 15% 88%, rgba(67, 165, 93, 0.16), transparent 28%),
    linear-gradient(128deg, #06170d 0%, #0a2a17 52%, #0d3b20 100%);
}

.php-site.page-home .home-panel-slide::after {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 18, 9, 0.42), transparent 72%);
  background-size: 52px 52px, 52px 52px, auto;
}

.home-panel-slide-grid {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(460px, 1.16fr);
  align-items: center;
  gap: clamp(38px, 5vw, 74px);
  padding: 100px 0 132px;
}

.php-site.page-home .home-hero .home-panel-slide-copy {
  max-width: 600px;
  padding: 0;
}

.php-site.page-home .home-hero .home-panel-slide-copy .banner-title {
  font-size: clamp(39px, 4.1vw, 59px);
}

.home-panel-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: -7px 0 30px;
}

.php-site.page-home .home-panel-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-secondary), sans-serif;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-transform: none;
}

.home-panel-meta i {
  color: var(--app-gold-400);
}

.home-panel-video-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 7px;
  border: 1px solid rgba(228, 186, 105, 0.28);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.home-panel-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 12 / 7;
  border-radius: 15px;
  background: #020806;
}

.home-panel-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #020806;
  object-fit: contain;
}

.home-panel-video-duration {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(3, 13, 7, 0.76);
  color: var(--app-white);
  font-family: var(--font-primary), sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}

.home-panel-video-card figcaption {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 22px;
  padding: 17px 16px 14px;
}

.home-panel-video-card figcaption > span {
  color: var(--app-gold-400);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-panel-video-card figcaption strong {
  grid-column: 1;
  color: var(--app-white);
  font-family: var(--font-primary), sans-serif;
  font-size: 16px;
}

.home-panel-video-card figcaption a {
  grid-row: 1 / span 2;
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--app-gold-400);
  font-size: 12px;
  font-weight: 700;
}

.home-panel-video-card figcaption a:hover {
  color: var(--app-white);
}

.home-hero-controls {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 76px;
  left: 0;
  pointer-events: none;
}

.home-hero-controls-inner,
.home-hero-progress,
.home-hero-navigation,
.home-hero-count {
  display: flex;
  align-items: center;
}

.home-hero-controls-inner {
  justify-content: space-between;
  gap: 24px;
}

.home-hero-progress {
  gap: 18px;
  pointer-events: auto;
}

.php-site.page-home .home-hero .swiper-pagination-b2 {
  position: static !important;
  inset: auto !important;
  width: auto;
  display: flex !important;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  transform: none;
}

.php-site.page-home .home-hero .swiper-pagination-bullet {
  cursor: pointer;
}

.home-hero-count {
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-primary), sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.home-hero-count strong {
  color: var(--app-white);
  font-size: 13px;
}

.home-hero-count i {
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.home-hero-navigation {
  gap: 9px;
  pointer-events: auto;
}

.home-hero-navigation button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(6, 23, 13, 0.42);
  color: var(--app-white);
  backdrop-filter: blur(10px);
  transition: border-color var(--app-fast) ease, background var(--app-fast) ease, color var(--app-fast) ease, transform var(--app-fast) ease;
}

.home-hero-navigation button:hover:not(.swiper-button-disabled) {
  border-color: var(--app-gold-400);
  background: var(--app-gold-400);
  color: var(--app-forest-950);
  transform: translateY(-2px);
}

.home-hero-navigation button.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.php-site.page-home .home-hero .swiper-slide .home-hero-copy > .pre,
.php-site.page-home .home-hero .swiper-slide .home-hero-copy > .banner-title,
.php-site.page-home .home-hero .swiper-slide .home-hero-copy > .disc,
.php-site.page-home .home-hero .swiper-slide .home-hero-copy > .home-panel-meta,
.php-site.page-home .home-hero .swiper-slide .home-hero-copy > .button-solari-banner-area,
.php-site.page-home .home-hero .swiper-slide .home-hero-copy > .home-hero-proof,
.php-site.page-home .home-hero .swiper-slide .home-panel-video-card {
  animation: none !important;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 640ms var(--app-ease), transform 640ms var(--app-ease);
}

.php-site.page-home .home-hero .swiper-slide-active .home-hero-copy > .pre,
.php-site.page-home .home-hero .swiper-slide-active .home-hero-copy > .banner-title,
.php-site.page-home .home-hero .swiper-slide-active .home-hero-copy > .disc,
.php-site.page-home .home-hero .swiper-slide-active .home-hero-copy > .home-panel-meta,
.php-site.page-home .home-hero .swiper-slide-active .home-hero-copy > .button-solari-banner-area,
.php-site.page-home .home-hero .swiper-slide-active .home-hero-copy > .home-hero-proof,
.php-site.page-home .home-hero .swiper-slide-active .home-panel-video-card {
  opacity: 1;
  transform: none;
}

.php-site.page-home .home-hero .swiper-slide-active .home-hero-copy > .pre {
  transition-delay: 40ms;
}

.php-site.page-home .home-hero .swiper-slide-active .home-hero-copy > .banner-title {
  transition-delay: 100ms;
}

.php-site.page-home .home-hero .swiper-slide-active .home-hero-copy > .disc,
.php-site.page-home .home-hero .swiper-slide-active .home-hero-copy > .home-panel-meta {
  transition-delay: 160ms;
}

.php-site.page-home .home-hero .swiper-slide-active .home-hero-copy > .button-solari-banner-area {
  transition-delay: 220ms !important;
}

.php-site.page-home .home-hero .swiper-slide-active .home-hero-copy > .home-hero-proof,
.php-site.page-home .home-hero .swiper-slide-active .home-panel-video-card {
  transition-delay: 280ms;
}

@media (max-width: 1120px) {
  .home-panel-slide-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    gap: 34px;
  }

  .php-site.page-home .home-hero .home-panel-slide-copy .banner-title {
    font-size: clamp(38px, 4.5vw, 49px);
  }
}

@media (max-width: 991px) {
  .php-site.page-home .home-hero-slide-shell,
  .home-panel-slide-grid {
    min-height: 670px;
  }

  .php-site.page-home .home-hero .home-hero-copy {
    padding-top: 95px;
    padding-bottom: 125px;
  }

  .home-panel-slide-grid {
    padding-top: 78px;
    padding-bottom: 105px;
  }

  .php-site.page-home .home-hero .home-panel-slide-copy {
    padding: 0;
  }

  .home-hero-controls {
    bottom: 22px;
  }
}

@media (max-width: 767px) {
  .php-site.page-home .home-hero-slide-shell {
    min-height: 650px;
    background-position: 64% center;
  }

  .php-site.page-home .home-hero-slide-shell::after {
    background: linear-gradient(90deg, rgba(4, 18, 9, 0.95), rgba(5, 24, 12, 0.78) 72%, rgba(5, 22, 11, 0.52));
  }

  .php-site.page-home .home-hero-slide-index {
    top: 24%;
    right: -10px;
    font-size: 155px;
    transform: none;
  }

  .php-site.page-home .home-hero .home-hero-copy {
    padding: 76px 0 112px;
  }

  .php-site.page-home .home-hero .home-hero-copy .banner-title,
  .php-site.page-home .home-hero .home-panel-slide-copy .banner-title {
    font-size: clamp(36px, 10.5vw, 49px);
    line-height: 1.06;
  }

  .home-hero-proof {
    gap: 9px 16px;
    margin-top: 24px;
    padding-top: 19px;
  }

  .home-panel-slide-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 66px 0 112px;
  }

  .php-site.page-home .home-hero .home-panel-slide-copy {
    max-width: 650px;
    padding: 0;
  }

  .home-panel-video-card {
    width: min(100%, 640px);
  }

  .home-hero-controls-inner {
    gap: 15px;
  }

  .home-hero-progress {
    gap: 12px;
  }

  .home-hero-navigation button {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 479px) {
  .php-site.page-home .home-hero .home-hero-copy .pre {
    padding: 7px 10px;
    font-size: 10px;
    letter-spacing: 0.09em;
  }

  .home-hero-proof span:last-child,
  .home-hero-count {
    display: none;
  }

  .home-panel-video-card figcaption {
    grid-template-columns: 1fr;
  }

  .home-panel-video-card figcaption a {
    grid-row: auto;
    grid-column: 1;
    margin-top: 7px;
  }
}

/* Cards, media and service content -------------------------------------- */
.php-site .rts-secvice-area-solaric-banner-bottom {
  position: relative;
  z-index: 5;
  margin-top: -54px;
  padding-bottom: var(--app-section-space);
}

.php-site .single-service-solari,
.php-site .single-service-solari.two,
.php-site .single-service-solari.three,
.php-site .single-service-solari.four {
  min-height: 100%;
  padding: 30px 27px;
  border: 1px solid var(--app-line);
  border-radius: var(--app-radius-md);
  background: var(--app-white);
  background-image: none;
  box-shadow: var(--app-shadow-sm);
  transition: transform var(--app-base) var(--app-ease), box-shadow var(--app-base) ease, border-color var(--app-base) ease;
}

.php-site .single-service-solari::before,
.php-site .single-service-solari::after {
  display: none;
}

.php-site .single-service-solari:hover {
  border-color: rgba(47, 136, 70, 0.32);
  box-shadow: var(--app-shadow-md);
  transform: translateY(-7px);
}

.php-site .single-service-solari .icon-area {
  margin-bottom: 21px;
}

.php-site .single-service-solari .title {
  margin-bottom: 10px;
  color: var(--app-ink);
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.02em;
  text-transform: none;
}

.php-site .single-service-solari p.disc,
.php-site .single-service-solari:hover p.disc {
  color: var(--app-copy);
  font-size: 14px;
  line-height: 1.7;
}

.php-site .single-service-solari:hover .title {
  color: var(--app-green-600);
}

.php-site .single-solari-service-start,
.php-site .single-solari-service-start.two,
.php-site .single-solari-service-start.three,
.php-site .single-solari-service-start.four,
.php-site .value-card,
.php-site .industry-card,
.php-site .benefit-tile,
.php-site .shseip-project-card,
.php-site .shseip-contact-card {
  border: 1px solid var(--app-line);
  border-radius: var(--app-radius-md);
  background: var(--app-white);
  background-image: none;
  box-shadow: 0 8px 28px rgba(6, 35, 18, 0.045);
  transition: transform var(--app-base) var(--app-ease), box-shadow var(--app-base) ease, border-color var(--app-base) ease;
}

.php-site .single-solari-service-start {
  padding: 31px;
}

.php-site .single-solari-service-start::before,
.php-site .single-solari-service-start::after {
  display: none;
}

.php-site .single-solari-service-start:hover,
.php-site .value-card:hover,
.php-site .industry-card:hover,
.php-site .benefit-tile:hover,
.php-site .shseip-project-card:hover,
.php-site .shseip-contact-card:hover {
  border-color: rgba(47, 136, 70, 0.32);
  background: var(--app-white);
  box-shadow: var(--app-shadow-md);
  transform: translateY(-7px);
}

.php-site .single-solari-service-start .icon-area {
  width: 70px;
  height: 70px;
  margin-bottom: 28px;
  border: 0;
  border-radius: 50%;
  background: var(--app-green-50);
}

.php-site .single-solari-service-start .title,
.php-site .single-solari-service-start:hover .title {
  margin-bottom: 11px;
  color: var(--app-ink);
  font-size: 21px;
  line-height: 1.25;
}

.php-site .single-solari-service-start p.disc,
.php-site .single-solari-service-start:hover p.disc {
  min-height: 79px;
  color: var(--app-copy);
  line-height: 1.65;
}

.php-site .single-solari-service-start a.read-more-btn,
.php-site .single-solari-service-start:hover a.read-more-btn {
  color: var(--app-green-600);
}

.php-site .shseip-circle-icon {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border: 1px solid rgba(47, 136, 70, 0.15);
  background: var(--app-green-50);
}

.php-site .single-solari-service-start:hover .shseip-circle-icon,
.php-site .value-card:hover .shseip-circle-icon,
.php-site .industry-card:hover .shseip-circle-icon,
.php-site .benefit-tile:hover .shseip-circle-icon,
.php-site .shseip-contact-card:hover .shseip-circle-icon {
  border-color: var(--app-green-600);
  background: var(--app-green-600);
  transform: rotate(-4deg) scale(1.03);
}

.php-site .benefit-tile {
  gap: 20px;
  padding: 27px 25px;
}

.php-site .value-card {
  padding: 34px 30px;
}

.php-site .industry-card {
  padding: 30px 20px;
}

.php-site .value-card .title,
.php-site .industry-card .title,
.php-site .benefit-tile .title {
  color: var(--app-ink);
}

.php-site .thumbnail-solari-about {
  position: relative;
  overflow: visible;
}

.php-site .thumbnail-solari-about > img {
  width: 100%;
  border-radius: var(--app-radius-lg);
  box-shadow: var(--app-shadow-md);
}

.php-site .thumbnail-solari-about .experiencea-area,
.php-site .experiencea-area.images {
  right: -18px;
  bottom: 28px;
  overflow: hidden;
  padding: 21px 25px;
  border: 7px solid var(--app-white);
  border-radius: var(--app-radius-md);
  background: linear-gradient(135deg, var(--app-green-600), var(--app-forest-800));
  box-shadow: var(--app-shadow-md);
}

.php-site .thumbnail-solari-about .experiencea-area .title,
.php-site .thumbnail-solari-about .experiencea-area p {
  color: var(--app-white);
}

.php-site .solari-about-button-area {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

/* About: leadership and company profile -------------------------------- */
.php-site.page-about .about-leadership-section {
  position: relative;
  overflow: hidden;
  padding: var(--app-section-space) 0;
  background:
    radial-gradient(circle at 5% 0, rgba(214, 165, 72, 0.13), transparent 23%),
    linear-gradient(180deg, var(--app-ivory-soft), var(--app-white));
}

.php-site.page-about .about-leadership-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -230px;
  bottom: -210px;
  border: 1px solid rgba(47, 136, 70, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.php-site.page-about .about-leadership-section > .container {
  position: relative;
  z-index: 1;
}

.php-site.page-about .about-leadership-feature {
  position: relative;
}

.php-site.page-about .about-leadership-feature .image {
  position: relative;
}

.php-site.page-about .about-leadership-feature .image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(5, 24, 12, 0.82));
  pointer-events: none;
}

.php-site.page-about .about-leadership-feature .image img {
  object-position: 34% center;
}

.php-site.page-about .about-leadership-image-caption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  color: var(--app-white);
}

.php-site.page-about .about-leadership-image-caption strong {
  font-family: var(--font-primary), sans-serif;
  font-size: 19px;
}

.php-site.page-about .about-leadership-image-caption span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  text-align: right;
}

.php-site.page-about .about-leadership-feature .leadership-role-line {
  margin: -3px 0 20px;
  color: var(--app-gold-400);
  font-family: var(--font-primary), sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.php-site.page-about .about-leadership-feature .content > p:not(.leadership-role-line) {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.php-site.page-about .about-leadership-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 27px 0 31px;
  padding: 21px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.php-site.page-about .about-leadership-facts > div {
  min-width: 0;
  padding: 0 17px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.php-site.page-about .about-leadership-facts > div:first-child {
  padding-left: 0;
}

.php-site.page-about .about-leadership-facts > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.php-site.page-about .about-leadership-facts dt {
  margin-bottom: 5px;
  color: var(--app-gold-400);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.php-site.page-about .about-leadership-facts dd {
  margin: 0;
  color: var(--app-white);
  font-family: var(--font-primary), sans-serif;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

.php-site.page-about .about-leadership-reach {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.php-site.page-about .about-reach-card {
  position: relative;
  overflow: hidden;
  padding: 31px 29px 32px;
  border: 1px solid var(--app-line);
  border-radius: var(--app-radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--app-shadow-sm);
  transition: transform var(--app-base) var(--app-ease), border-color var(--app-fast) ease, box-shadow var(--app-base) ease;
}

.php-site.page-about .about-reach-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--app-green-600), var(--app-gold-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--app-base) var(--app-ease);
}

.php-site.page-about .about-reach-card:hover {
  border-color: rgba(47, 136, 70, 0.27);
  box-shadow: var(--app-shadow-md);
  transform: translateY(-5px);
}

.php-site.page-about .about-reach-card:hover::before {
  transform: scaleX(1);
}

.php-site.page-about .about-reach-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(47, 136, 70, 0.15);
  border-radius: 50%;
  background: var(--app-green-50);
  color: var(--app-green-600);
  font-size: 18px;
}

.php-site.page-about .about-reach-kicker {
  margin: 0 0 8px;
  color: var(--app-green-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.php-site.page-about .about-reach-card h3 {
  margin: 0 0 12px;
  color: var(--app-forest-950);
  font-size: 21px;
  line-height: 1.3;
}

.php-site.page-about .about-reach-card > p:last-child {
  margin: 0;
  color: var(--app-copy);
  font-size: 14px;
  line-height: 1.72;
}

.php-site.page-about .about-company-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.php-site.page-about .about-company-facts > div {
  padding: 17px 18px;
  border-left: 3px solid var(--app-green-600);
  border-radius: 0 10px 10px 0;
  background: var(--app-green-50);
}

.php-site.page-about .about-company-facts strong,
.php-site.page-about .about-company-facts span {
  display: block;
}

.php-site.page-about .about-company-facts strong {
  color: var(--app-forest-950);
  font-family: var(--font-primary), sans-serif;
  font-size: 13px;
  line-height: 1.45;
}

.php-site.page-about .about-company-facts span {
  margin-top: 3px;
  color: var(--app-muted);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .php-site.page-about .about-leadership-feature {
    grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  }

  .php-site.page-about .about-leadership-feature .image {
    min-height: 680px;
  }
}

.php-site .call-button {
  display: flex;
  align-items: center;
  gap: 13px;
}

.php-site .call-button > i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--app-gold-100);
  color: var(--app-forest-800);
}

.php-site .call-button .info span {
  color: var(--app-muted);
  font-size: 12px;
}

.php-site .call-button .title {
  margin: 2px 0 0;
  font-size: 16px;
}

.php-site .faq-solari-image-area img {
  border-radius: var(--app-radius-md);
  box-shadow: var(--app-shadow-sm);
}

.php-site .shseip-check {
  display: grid;
  gap: 13px;
  margin-top: 26px;
}

.php-site .shseip-check li {
  margin: 0;
  padding-left: 34px;
  color: var(--app-copy);
  line-height: 1.65;
}

.php-site .shseip-check li::before {
  top: 2px;
  width: 23px;
  height: 23px;
  border: 1px solid rgba(47, 136, 70, 0.14);
  background: var(--app-green-50);
  color: var(--app-green-600);
}

/* Process, projects and recognition ------------------------------------- */
.php-site .single-solari-steps-start {
  height: 100%;
  padding: 10px 10px 25px;
  border: 1px solid var(--app-line);
  border-radius: var(--app-radius-md);
  background: var(--app-white);
  box-shadow: 0 8px 26px rgba(6, 35, 18, 0.045);
  transition: transform var(--app-base) var(--app-ease), box-shadow var(--app-base) ease;
}

.php-site .single-solari-steps-start:hover {
  box-shadow: var(--app-shadow-md);
  transform: translateY(-7px);
}

.php-site .single-solari-steps-start .thumbnail {
  aspect-ratio: 1.48 / 1;
  margin-bottom: 24px;
  border-radius: 12px;
}

.php-site .single-solari-steps-start .thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.php-site .single-solari-steps-start .thumbnail .steps {
  width: 68px;
  height: 58px;
  border-radius: 0 12px 0 0;
  background: var(--app-forest-900);
}

.php-site .single-solari-steps-start .thumbnail .steps span {
  color: var(--app-gold-400);
  font-size: 24px;
  font-weight: 700;
  -webkit-text-stroke-width: 0;
}

.php-site .single-solari-steps-start .content {
  padding-inline: 15px;
  text-align: left;
}

.php-site .single-solari-steps-start .content .title {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}

.php-site .project-one-wrapper,
.php-site .shseip-project-card {
  overflow: hidden;
  border-radius: var(--app-radius-md);
}

.php-site .project-one-wrapper .thumbnail,
.php-site .shseip-project-card .thumb {
  position: relative;
  display: block;
  overflow: hidden;
}

.php-site .project-one-wrapper .thumbnail img,
.php-site .shseip-project-card .thumb img {
  width: 100%;
  transition: transform 620ms var(--app-ease);
}

.php-site .project-one-wrapper:hover .thumbnail img,
.php-site .shseip-project-card:hover .thumb img {
  transform: scale(1.055);
}

.php-site .shseip-project-card .thumb .badge-cat {
  top: 16px;
  left: 16px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 36, 20, 0.86);
  backdrop-filter: blur(9px);
  color: var(--app-white);
}

.php-site .shseip-project-card .body {
  padding: 26px;
}

.php-site .project-meta {
  gap: 8px 17px;
}

.php-site .project-meta li i {
  color: var(--app-gold-500);
}

.php-site .shseip-filter {
  gap: 9px;
}

.php-site .shseip-filter button,
.php-site .gallery-filter button {
  min-height: 43px;
  width: auto;
  padding: 9px 19px;
  border: 1px solid var(--app-line);
  border-radius: 999px;
  background: var(--app-white);
  color: var(--app-ink);
  font-family: var(--font-primary), sans-serif;
  font-size: 13px;
  font-weight: 700;
  transition: color var(--app-fast) ease, background var(--app-fast) ease, border-color var(--app-fast) ease, transform var(--app-fast) ease;
}

.php-site .shseip-filter button:hover,
.php-site .shseip-filter button.active,
.php-site .gallery-filter button:hover,
.php-site .gallery-filter button.active {
  border-color: var(--app-forest-900);
  background: var(--app-forest-900);
  color: var(--app-white);
  transform: translateY(-1px);
}

.php-site .recognition-feature {
  overflow: hidden;
  border-radius: var(--app-radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(214, 165, 72, 0.12), transparent 25%),
    var(--app-forest-900);
  box-shadow: var(--app-shadow-lg);
}

.php-site .recognition-feature .image {
  overflow: hidden;
}

.php-site .recognition-feature .image img {
  transition: transform 800ms var(--app-ease);
}

.php-site .recognition-feature:hover .image img {
  transform: scale(1.025);
}

.php-site .recognition-feature .content {
  padding: clamp(38px, 5vw, 64px);
}

.php-site .recognition-feature .content .label {
  color: var(--app-gold-400);
  letter-spacing: 0.16em;
}

.php-site .recognition-feature h2 {
  color: var(--app-white);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.1;
}

.php-site .recognition-feature p,
.php-site .recognition-feature .award-meta li {
  color: rgba(255, 255, 255, 0.72);
}

.php-site .recognition-feature .award-meta i {
  color: var(--app-gold-400);
}

/* Testimonials, counters and FAQ ---------------------------------------- */
.php-site .rts-client-review-area-h2.home-testimonials {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 10%, rgba(228, 186, 105, 0.18), transparent 27%),
    radial-gradient(circle at 7% 68%, rgba(47, 136, 70, 0.09), transparent 26%),
    linear-gradient(180deg, var(--app-white) 0%, var(--app-ivory-soft) 64%, var(--app-green-50) 100%);
}

.php-site .home-testimonials::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: max(-170px, -10vw);
  width: clamp(300px, 34vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(214, 165, 72, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(214, 165, 72, 0.04), 0 0 0 84px rgba(47, 136, 70, 0.025);
  content: "";
  pointer-events: none;
}

.php-site .home-testimonials > .container {
  position: relative;
  z-index: 1;
}

.php-site .home-testimonials__header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.72fr);
  align-items: end;
  gap: clamp(36px, 7vw, 96px);
  margin-bottom: clamp(30px, 3.5vw, 46px);
}

.php-site .title-area-center.home-testimonials__heading {
  max-width: 720px;
  margin: 0;
  text-align: left;
}

.php-site .title-area-center.home-testimonials__heading .pre {
  justify-content: flex-start;
}

.php-site .home-testimonials__heading .title {
  max-width: 680px;
  font-size: clamp(38px, 4.5vw, 58px);
}

.php-site .home-testimonials__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  padding-bottom: 5px;
}

.php-site .home-testimonials__intro > p {
  max-width: 460px;
  margin: 0;
  color: #53645a;
  font-size: 15px;
  line-height: 1.75;
}

.php-site .home-testimonials__navigation {
  display: flex;
  align-items: center;
  gap: 10px;
}

.php-site .home-testimonials__navigation button {
  width: 48px;
  height: 48px;
  display: inline-grid;
  flex: 0 0 48px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(16, 55, 31, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--app-forest-800);
  box-shadow: 0 9px 24px rgba(6, 35, 18, 0.07);
  cursor: pointer;
  transition: color var(--app-fast) ease, background var(--app-fast) ease, border-color var(--app-fast) ease, box-shadow var(--app-base) var(--app-ease), transform var(--app-base) var(--app-ease), opacity var(--app-fast) ease;
}

.php-site .home-testimonials__navigation button:not(.swiper-button-disabled):hover {
  border-color: var(--app-green-600);
  background: var(--app-green-600);
  color: var(--app-white);
  box-shadow: 0 14px 30px rgba(24, 80, 43, 0.2);
  transform: translateY(-2px);
}

.php-site .home-testimonials__navigation button.swiper-button-disabled {
  opacity: 0.34;
  box-shadow: none;
  cursor: default;
}

.php-site .testimonials-review-main-wrapper {
  max-width: none;
  margin: 0;
  text-align: left;
}

.php-site .mySwiper-testimonials-solari {
  max-width: none;
  margin: 0;
  padding: 9px 2px 0;
  overflow: hidden;
}

.php-site .mySwiper-testimonials-solari .swiper-wrapper {
  align-items: stretch;
}

.php-site .mySwiper-testimonials-solari .swiper-slide {
  height: auto;
  display: flex;
  padding: 4px 0 18px;
}

.php-site .single-review-area-soalri {
  position: relative;
  width: 100%;
  max-width: none;
  min-width: 0;
  min-height: 390px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0;
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid rgba(16, 55, 31, 0.14);
  border-radius: clamp(22px, 2.5vw, 30px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(251, 250, 246, 0.97));
  box-shadow: 0 16px 46px rgba(6, 35, 18, 0.08);
  transition: border-color var(--app-base) ease, box-shadow 520ms var(--app-ease), transform 520ms var(--app-ease);
}

.php-site .single-review-area-soalri::before {
  position: absolute;
  top: 0;
  left: clamp(26px, 3vw, 36px);
  width: 72px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--app-gold-500), var(--app-gold-400));
  content: "";
}

.php-site .mySwiper-testimonials-solari .swiper-slide-active .single-review-area-soalri {
  border-color: rgba(47, 136, 70, 0.32);
  box-shadow: 0 24px 58px rgba(6, 35, 18, 0.13);
  transform: translateY(-4px);
}

.php-site .home-testimonials__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.php-site .home-testimonials__quote-mark {
  width: 52px;
  height: 52px;
  display: grid;
  flex: 0 0 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  background: linear-gradient(145deg, var(--app-green-600), var(--app-forest-800));
  box-shadow: 0 12px 24px rgba(16, 55, 31, 0.17);
}

.php-site .testimonials-review-main-wrapper .single-review-area-soalri .home-testimonials__quote-mark .quote {
  width: 24px;
  margin: 0;
  opacity: 0.92;
}

.php-site .home-testimonials__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--app-forest-800);
}

.php-site .home-testimonials__rating strong {
  font-family: var(--font-primary), sans-serif;
  font-size: 14px;
  line-height: 1;
}

.php-site .home-testimonials__rating .star-area {
  display: flex;
  align-items: center;
  gap: 3px;
}

.php-site .home-testimonials__rating .star-area i {
  color: var(--app-gold-500);
  font-size: 12px;
}

.php-site .testimonials-review-main-wrapper .single-review-area-soalri blockquote.dsic {
  flex: 1 1 auto;
  margin: clamp(25px, 2.6vw, 34px) 0 0;
}

.php-site .testimonials-review-main-wrapper .single-review-area-soalri blockquote.dsic p {
  margin: 0;
  color: #263c30;
  font-family: var(--font-primary), sans-serif;
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -0.018em;
}

.php-site .testimonials-review-main-wrapper .single-review-area-soalri .author-area {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin: 30px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--app-line);
}

.php-site .testimonials-review-main-wrapper .single-review-area-soalri .author-area .authoe {
  width: 58px;
  height: 58px;
  margin: 0;
  border: 3px solid var(--app-green-100);
  border-radius: 50%;
  object-fit: cover;
}

.php-site .home-testimonials__author-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.php-site .home-testimonials__author-copy .title {
  margin: 0;
  color: var(--app-ink);
  font-family: var(--font-primary), sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.php-site .testimonials-review-main-wrapper .single-review-area-soalri .author-area .home-testimonials__author-copy > span {
  color: var(--app-muted);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.php-site .testimonials-review-main-wrapper .single-review-area-soalri .author-area .home-testimonials__service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border: 1px solid rgba(47, 136, 70, 0.14);
  border-radius: 999px;
  background: var(--app-green-50);
  color: var(--app-green-600);
  font-family: var(--font-primary), sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.php-site .home-testimonials__rail {
  min-height: 34px;
  display: grid;
  grid-template-columns: auto minmax(120px, 240px) 1fr;
  align-items: center;
  gap: 22px;
  margin-top: 12px;
}

.php-site .home-testimonials__counter {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--app-forest-800);
  font-family: var(--font-primary), sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.php-site .home-testimonials__counter-line {
  width: 34px;
  height: 1px;
  background: rgba(16, 55, 31, 0.23);
}

.php-site .home-testimonials__drag-hint {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 8px;
  color: var(--app-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.php-site .home-testimonials__drag-hint i {
  color: var(--app-gold-500);
  font-size: 14px;
}

.php-site .mySwiper-testimonials-solari .swiper-pagination {
  position: static;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  transform: none;
}

.php-site .mySwiper-testimonials-solari .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 !important;
  border-radius: 999px;
  background: #aebbb3;
  opacity: 1;
  transition: width var(--app-base) var(--app-ease), background var(--app-fast) ease;
}

.php-site .mySwiper-testimonials-solari .swiper-pagination-bullet-active {
  width: 34px;
  background: var(--app-green-600);
  background-image: none;
}

@media (hover: hover) and (pointer: fine) {
  .php-site .mySwiper-testimonials-solari .swiper-slide:not(.swiper-slide-active) .single-review-area-soalri:hover {
    border-color: rgba(47, 136, 70, 0.27);
    box-shadow: 0 22px 52px rgba(6, 35, 18, 0.11);
    transform: translateY(-3px);
  }
}

@media (max-width: 991px) {
  .php-site .home-testimonials__header {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .php-site .home-testimonials__intro {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .php-site .home-testimonials__intro > p {
    max-width: 600px;
  }
}

@media (max-width: 767px) {
  .php-site .home-testimonials::before {
    right: -210px;
    opacity: 0.75;
  }

  .php-site .home-testimonials__header {
    margin-bottom: 25px;
  }

  .php-site .home-testimonials__heading .title {
    font-size: clamp(32px, 10vw, 42px);
  }

  .php-site .home-testimonials__intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
  }

  .php-site .home-testimonials__intro > p {
    font-size: 14px;
    line-height: 1.65;
  }

  .php-site .home-testimonials__navigation button {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .php-site .single-review-area-soalri {
    min-height: 360px;
    padding: 26px 22px;
    border-radius: 23px;
  }

  .php-site .single-review-area-soalri::before {
    left: 22px;
  }

  .php-site .home-testimonials__quote-mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 15px;
  }

  .php-site .testimonials-review-main-wrapper .single-review-area-soalri blockquote.dsic p {
    font-size: 17px;
    line-height: 1.58;
  }

  .php-site .home-testimonials__rail {
    grid-template-columns: auto 1fr;
    gap: 18px;
  }

  .php-site .home-testimonials__drag-hint {
    display: none;
  }
}

@media (max-width: 575px) {
  .php-site .home-testimonials__intro {
    align-items: center;
  }

  .php-site .home-testimonials__intro > p {
    max-width: 72%;
  }

  .php-site .home-testimonials__navigation {
    gap: 8px;
  }

  .php-site .home-testimonials__navigation button {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .php-site .testimonials-review-main-wrapper .single-review-area-soalri .author-area {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .php-site .testimonials-review-main-wrapper .single-review-area-soalri .author-area .authoe {
    width: 52px;
    height: 52px;
  }

  .php-site .testimonials-review-main-wrapper .single-review-area-soalri .author-area .home-testimonials__service {
    grid-column: 2;
    justify-self: start;
    margin-top: -4px;
  }
}

@media (max-width: 479px) {
  .php-site .home-testimonials__intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .php-site .home-testimonials__intro > p {
    max-width: none;
  }

  .php-site .home-testimonials__counter-line {
    width: 24px;
  }
}

.php-site .single-counter-up-start-solari {
  min-height: 170px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--app-line);
  border-radius: var(--app-radius-md);
  background: rgba(255, 255, 255, 0.72);
}

.php-site .single-counter-up-start-solari .bg-text {
  color: var(--app-green-600);
  opacity: 0.045;
}

.php-site .single-counter-up-start-solari .main-content .title {
  color: var(--app-green-600);
  font-size: 44px;
}

.php-site .single-counter-up-start-solari .main-content p {
  color: var(--app-copy);
}

.php-site .accordion-solar-faq .accordion {
  display: grid;
  gap: 12px;
}

.php-site .accordion-solar-faq .accordion .accordion-item {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--app-line);
  border-radius: 14px;
  background: var(--app-white);
  box-shadow: 0 6px 20px rgba(6, 35, 18, 0.035);
}

.php-site .accordion-solar-faq .accordion .accordion-item .accordion-header button {
  min-height: 66px;
  padding: 18px 55px 18px 22px;
  background: transparent;
  color: var(--app-ink);
  font-family: var(--font-primary), sans-serif;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.45;
  box-shadow: none;
}

.php-site .accordion-solar-faq .accordion .accordion-item .accordion-header button:not(.collapsed) {
  color: var(--app-green-600);
}

.php-site .accordion-solar-faq .accordion .accordion-item .accordion-header button::after {
  right: 20px;
  border-color: var(--app-line);
  background-color: var(--app-green-50);
  color: var(--app-green-600);
}

.php-site .accordion-solar-faq .accordion-body {
  padding: 0 22px 22px;
  color: var(--app-copy);
  line-height: 1.75;
}

.js .php-site .accordion-collapse {
  display: grid !important;
  grid-template-rows: 0fr;
  overflow: hidden;
  visibility: hidden;
  transition: grid-template-rows 360ms var(--app-ease), visibility 360ms;
}

.js .php-site .accordion-collapse.show {
  grid-template-rows: 1fr;
  visibility: visible;
}

.js .php-site .accordion-collapse > .accordion-body {
  min-height: 0;
}

/* Forms, contact, quote and legal pages --------------------------------- */
.php-site .shseip-form-card {
  padding: clamp(28px, 4.5vw, 50px);
  border: 1px solid var(--app-line);
  border-radius: var(--app-radius-lg);
  background: var(--app-white);
  box-shadow: var(--app-shadow-md);
}

.php-site .shseip-form-lg input,
.php-site .shseip-form-lg select,
.php-site .shseip-form-lg textarea,
.shared-enquiry-form input {
  width: 100%;
  border: 1px solid rgba(16, 55, 31, 0.16);
  border-radius: 11px;
  background: var(--app-ivory-soft);
  color: var(--app-ink);
  font-family: var(--font-secondary), sans-serif;
  font-size: 15px;
  transition: border-color var(--app-fast) ease, box-shadow var(--app-fast) ease, background var(--app-fast) ease;
}

.php-site .shseip-form-lg input,
.php-site .shseip-form-lg select,
.shared-enquiry-form input {
  height: 56px;
  padding: 0 17px;
}

.php-site .shseip-form-lg textarea {
  min-height: 145px;
  padding: 16px 17px;
  resize: vertical;
}

.php-site .shseip-form-lg input:focus,
.php-site .shseip-form-lg select:focus,
.php-site .shseip-form-lg textarea:focus,
.shared-enquiry-form input:focus {
  border-color: var(--app-green-600);
  background: var(--app-white);
  box-shadow: 0 0 0 4px rgba(47, 136, 70, 0.1);
  outline: 0;
}

.php-site .shseip-form-lg label,
.shared-enquiry-form label > span {
  color: var(--app-ink);
  font-size: 13px;
  font-weight: 700;
}

.php-site .shseip-form-msg {
  margin: 18px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(47, 136, 70, 0.18);
  border-radius: 10px;
  background: var(--app-green-50);
  color: var(--app-forest-800);
}

.php-site .form-handoff-note {
  margin: 14px 0 0;
  color: var(--app-muted);
  font-size: 13px;
  line-height: 1.55;
}

.php-site .form-handoff-note i {
  margin-right: 5px;
  color: var(--app-green-600);
}

.php-site .shseip-form-msg.error {
  border-color: rgba(179, 0, 0, 0.15);
  background: #fff3f1;
  color: #9b261d;
}

.php-site .shseip-contact-card {
  padding: 32px 23px;
}

.php-site .shseip-contact-card .title {
  font-size: 19px;
}

.php-site .contact-icon {
  color: var(--app-green-600);
  font-size: 24px;
}

.php-site .whatsapp-icon {
  color: #168d43;
  font-size: 26px;
}

.php-site .contact-whatsapp-button {
  padding: 12px 26px;
}

.php-site .map-embed {
  border: 0;
}

.php-site .quote-next-title {
  color: var(--app-white);
}

.php-site .quote-phone-label {
  margin-bottom: 6px;
}

.php-site .quote-phone-link {
  color: var(--app-gold-400);
  font-size: 18px;
  font-weight: 700;
}

.php-site .shseip-contact-card p {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.65;
}

.php-site .map-area-wrapper,
.php-site .map-area-wrapper iframe {
  height: 100%;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--app-radius-lg);
}

.php-site .map-area-wrapper {
  border: 1px solid var(--app-line);
  box-shadow: var(--app-shadow-sm);
}

.php-site .quote-side-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(32px, 4vw, 50px);
  border-radius: var(--app-radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(214, 165, 72, 0.17), transparent 27%),
    linear-gradient(145deg, var(--app-forest-950), var(--app-forest-800));
  box-shadow: var(--app-shadow-lg);
}

.php-site .quote-side-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -105px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border: 38px solid rgba(214, 165, 72, 0.08);
  border-radius: 50%;
}

.php-site .quote-side-panel .title {
  color: var(--app-white);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.14;
}

.php-site .quote-side-panel h3,
.php-site .quote-side-panel h6,
.php-site .quote-side-panel .shseip-check li strong {
  color: var(--app-white);
}

.php-site .quote-side-panel p,
.php-site .quote-side-panel .shseip-check li {
  color: rgba(255, 255, 255, 0.76);
}

.php-site .quote-side-panel .quote-step .num {
  background: rgba(214, 165, 72, 0.15);
  color: var(--app-gold-400);
}

.php-site .legal-content {
  padding: clamp(26px, 4.5vw, 56px);
  border: 1px solid var(--app-line);
  border-radius: var(--app-radius-lg);
  background: var(--app-ivory-soft);
}

.php-site .legal-content h4 {
  margin-top: 34px;
  color: var(--app-forest-800);
  font-size: clamp(21px, 2vw, 27px);
}

.php-site .legal-content p,
.php-site .legal-content li {
  line-height: 1.8;
}

.php-site .legal-content a {
  color: var(--app-green-600);
  font-weight: 700;
  text-decoration: underline;
}

/* Shared enquiry --------------------------------------------------------- */
.shared-enquiry-cta {
  position: relative;
  overflow: hidden;
  padding: var(--app-section-space) 0;
  background: var(--app-ivory);
}

.shared-enquiry-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(470px, 1.18fr);
  align-items: center;
  gap: clamp(38px, 6vw, 82px);
  padding: clamp(38px, 5.5vw, 72px);
  border-radius: var(--app-radius-lg);
  background:
    radial-gradient(circle at 93% 2%, rgba(214, 165, 72, 0.15), transparent 27%),
    linear-gradient(128deg, var(--app-forest-950), var(--app-forest-800));
  box-shadow: var(--app-shadow-lg);
}

.shared-enquiry-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 280px;
  height: 280px;
  right: -120px;
  bottom: -155px;
  border: 42px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
}

.shared-enquiry-copy h2 {
  margin: 0;
  color: var(--app-white);
  font-size: clamp(31px, 3.7vw, 48px);
  font-weight: 600;
  line-height: 1.1;
}

.shared-enquiry-copy > span {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  line-height: 1.75;
}

.shared-enquiry-form-wrap {
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--app-radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.shared-enquiry-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
}

.shared-enquiry-form label {
  display: grid;
  gap: 7px;
  margin: 0;
}

.shared-enquiry-form label > span {
  color: rgba(255, 255, 255, 0.78);
}

.shared-enquiry-form input {
  margin: 0;
  background: rgba(255, 255, 255, 0.98);
}

.shared-enquiry-form-wrap > small {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.shared-enquiry-form-wrap > small i {
  color: var(--app-gold-400);
}

/* Footer ---------------------------------------------------------------- */
.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: 1px;
  background:
    radial-gradient(circle at 88% 30%, rgba(67, 165, 93, 0.1), transparent 26%),
    var(--app-forest-950);
  color: rgba(255, 255, 255, 0.67);
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  margin-top: var(--app-section-space-compact);
  padding: clamp(30px, 4vw, 50px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--app-radius-lg);
  background: linear-gradient(112deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
  backdrop-filter: blur(9px);
}

.footer-cta span {
  color: var(--app-gold-400);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-cta h2 {
  margin: 8px 0 0;
  color: var(--app-white);
  font-size: clamp(28px, 3.5vw, 45px);
  line-height: 1.12;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.45fr) 0.7fr 1fr 1.3fr;
  gap: clamp(35px, 5vw, 75px);
  padding: var(--app-section-space) 0;
}

.footer-brand > a {
  display: inline-flex;
}

.footer-brand img {
  width: 190px;
  max-height: 58px;
}

.footer-brand > p {
  max-width: 350px;
  margin: 24px 0 25px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.75;
}

.footer-brand-proof {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand-proof i {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 165, 72, 0.25);
  border-radius: 50%;
  color: var(--app-gold-400);
}

.footer-brand-proof span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.55;
}

.footer-column h3 {
  margin-bottom: 24px;
  color: var(--app-white);
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.footer-column ul,
.footer-column li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column ul {
  display: grid;
  gap: 13px;
}

.footer-column li a {
  position: relative;
  color: rgba(255, 255, 255, 0.59);
  font-size: 14px;
  transition: color var(--app-fast) ease, padding var(--app-fast) ease;
}

.footer-column li a:hover {
  padding-left: 5px;
  color: var(--app-gold-400);
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact > a,
.footer-contact > p {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.5;
}

.footer-contact > a > i,
.footer-contact > p > i {
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: var(--app-gold-400);
  font-size: 13px;
}

.footer-contact small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

.footer-contact > a:hover {
  color: var(--app-white);
}

.footer-bottom {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--app-line-light);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.footer-bottom > div {
  display: flex;
  gap: 24px;
}

.footer-bottom a:hover {
  color: var(--app-gold-400);
}

/* Scroll feedback -------------------------------------------------------- */
.site-progress {
  position: fixed;
  z-index: 1200;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.site-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--app-green-500), var(--app-gold-400));
  transform-origin: left;
}

.back-to-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: var(--app-forest-900);
  color: var(--app-white);
  box-shadow: var(--app-shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity var(--app-base) ease, transform var(--app-base) var(--app-ease), background var(--app-fast) ease;
}

.back-to-top.is-visible,
.back-to-top.visible,
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--app-green-600);
}

/* Existing premium editorial pages: shell harmonisation ----------------- */
.php-site.premium-page {
  --premium-forest: var(--app-forest-950);
  --premium-forest-soft: var(--app-forest-800);
  --premium-ivory: var(--app-ivory);
  --premium-gold: var(--app-gold-500);
  --premium-line: var(--app-line);
  --premium-shadow: var(--app-shadow-md);
}

.php-site.premium-page .premium-hero {
  margin-top: 0;
  padding: var(--app-hero-space) 0;
  border-bottom: 1px solid rgba(16, 55, 31, 0.1);
  background-color: #f4f8f1;
  background-image:
    linear-gradient(90deg, rgba(252, 253, 249, 0.98) 0%, rgba(249, 252, 246, 0.94) 52%, rgba(246, 250, 243, 0.78) 100%),
    var(--app-inner-hero-image);
  background-repeat: no-repeat;
  background-position: center, center 58%;
  background-size: cover;
}

.php-site.premium-page .premium-hero::before {
  opacity: 0.52;
  background-image:
    linear-gradient(rgba(16, 55, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 55, 31, 0.035) 1px, transparent 1px);
}

.php-site.premium-page .premium-orbit {
  border-color: rgba(47, 136, 70, 0.14);
}

.php-site.premium-page .premium-orbit.orbit-one {
  border-width: 52px;
  border-color: rgba(214, 165, 72, 0.11);
}

.php-site.premium-page .premium-hero-grid,
.php-site.premium-page .premium-hero-grid > *,
.php-site.premium-page .premium-hero-copy,
.php-site.premium-page .premium-hero-visual,
.php-site.premium-page .award-document-stage {
  min-width: 0;
}

.php-site.premium-page .premium-breadcrumb {
  color: var(--app-muted);
}

.php-site.premium-page .premium-breadcrumb a {
  color: var(--app-forest-800);
}

.php-site.premium-page .premium-breadcrumb a:hover {
  color: var(--app-green-600);
}

.php-site.premium-page .premium-hero .premium-eyebrow {
  color: var(--app-green-600);
}

.php-site.premium-page .premium-hero h1 {
  color: var(--app-forest-950);
  font-size: clamp(40px, 4.85vw, 68px);
  text-wrap: pretty;
}

.php-site.premium-page .premium-hero .premium-lead {
  color: #4f6256;
}

.php-site.premium-page .premium-hero .premium-text-link {
  color: var(--app-forest-800);
}

.php-site.premium-page .premium-hero .premium-text-link:hover {
  color: var(--app-green-600);
}

.php-site.premium-page .premium-facts {
  border-top-color: rgba(16, 55, 31, 0.15);
}

.php-site.premium-page .premium-facts > div {
  border-right-color: rgba(16, 55, 31, 0.15);
}

.php-site.premium-page .premium-facts strong {
  color: var(--app-forest-950);
}

.php-site.premium-page .premium-facts span {
  color: #68776e;
}

.php-site.premium-page .gallery-hero-visual {
  width: 100%;
  max-width: 100%;
}

.php-site.premium-page .gallery-hero-visual figure {
  border-radius: 14px;
  box-shadow: 0 28px 70px rgba(6, 35, 18, 0.18);
}

.php-site.premium-page .gallery-hero-visual .hero-image-secondary {
  border-color: var(--app-ivory);
}

.php-site.premium-page .hero-visual-caption p {
  color: var(--app-forest-950);
}

.php-site.premium-page .award-document-stage {
  box-shadow: 0 30px 78px rgba(6, 35, 18, 0.18);
}

.php-site.premium-page .premium-media-card,
.php-site.premium-page .premium-credential-card {
  border-radius: 8px;
}

.php-site.premium-page .premium-cta-band {
  border-radius: var(--app-radius-lg);
}

.php-site.premium-page .credentials-premium-hero {
  padding-bottom: var(--app-hero-space);
}

.php-site.premium-page .premium-section,
.php-site.premium-page .premium-video-section {
  padding: var(--app-section-space) 0;
}

.php-site.premium-page .participation-section {
  padding-bottom: var(--app-section-space);
}

.php-site.premium-page .premium-cta-section {
  padding: var(--app-section-space-compact) 0;
}

/* Keep typography legible wherever premium content sits on forest green. */
.php-site.premium-page .premium-video-section .premium-video-copy h2,
.php-site.premium-page .premium-video-player .video-feature-copy h3,
.php-site.premium-page .premium-cta-band h2,
.php-site.premium-page .participation-strip .participation-copy h2 {
  color: var(--app-white);
}

.php-site.premium-page .premium-video-section .premium-eyebrow,
.php-site.premium-page .premium-cta-band > div > p,
.php-site.premium-page .participation-strip .premium-eyebrow {
  color: var(--app-gold-400);
}

.php-site.premium-page .premium-video-section .premium-video-copy > p:not(.premium-eyebrow),
.php-site.premium-page .premium-video-player .video-feature-copy p,
.php-site.premium-page .participation-strip .participation-copy > p:not(.premium-eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.php-site.premium-page .premium-lightbox {
  border-radius: 12px;
}

/* Progressive reveal states. Content remains visible until JS opts in. -- */
.ui-reveal-ready [data-ui-reveal],
.ui-reveal-ready .ui-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms var(--app-ease), transform 720ms var(--app-ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.ui-reveal-ready [data-ui-reveal].is-visible,
.ui-reveal-ready .ui-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ui-reveal-ready [data-animate-title] {
  opacity: 0;
  transform: translateY(0.35em);
  clip-path: inset(0 0 95% 0);
  transition: opacity 760ms var(--app-ease), transform 760ms var(--app-ease), clip-path 760ms var(--app-ease);
}

.ui-reveal-ready [data-animate-title].is-visible {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0);
}

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1279px) {
  .desktop-navigation ul {
    gap: 15px;
  }

  .desktop-navigation a {
    font-size: 12px;
  }

  .header-contact-link {
    display: none;
  }

  .header-quote {
    padding-inline: 19px;
  }
}

@media (max-width: 1120px) {
  .desktop-navigation {
    display: none;
  }

  .site-nav-actions {
    margin-left: auto;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .php-site.premium-page .premium-hero-grid,
  .php-site.premium-page .credentials-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .php-site.premium-page .premium-hero-copy {
    max-width: 760px;
  }

  .php-site.premium-page .gallery-hero-visual,
  .php-site.premium-page .award-document-stage {
    width: 100%;
    max-width: 720px;
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1.35fr 0.8fr 1fr;
  }

  .footer-contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 991px) {
  .site-topbar p {
    display: none;
  }

  .site-topbar-inner {
    justify-content: center;
  }

  .shared-page-hero {
    min-height: 390px;
  }

  .banner-two-main-wrapper-solaric {
    min-height: 630px;
    background-position: 64% center;
  }

  .php-site .rts-secvice-area-solaric-banner-bottom {
    margin-top: 0;
    padding-top: 34px;
  }

  .php-site .pl--40,
  .php-site .pr--40 {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }

  .php-site .faq-solari-image-area {
    max-width: 680px;
    margin: 45px auto 0;
  }

  .shared-enquiry-panel {
    grid-template-columns: 1fr;
  }

  .shared-enquiry-copy {
    max-width: 680px;
  }

  .recognition-feature {
    grid-template-columns: 1fr;
  }

  .php-site.page-about .about-leadership-feature .image {
    min-height: clamp(400px, 62vw, 540px);
  }

  .php-site.page-about .about-leadership-reach {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .php-site.page-about .about-leadership-reach > :last-child {
    grid-column: 1 / -1;
  }

  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .php-site .map-area-wrapper,
  .php-site .map-area-wrapper iframe {
    min-height: 450px;
  }
}

@media (max-width: 767px) {
  :root {
    --app-section-space: 50px;
    --app-section-space-compact: 40px;
    --app-hero-space: 52px;
  }

  html {
    scroll-padding-top: 84px;
  }

  .site-container,
  .php-site .container,
  .php-site .container-full {
    width: min(calc(100% - 30px), var(--app-container));
  }

  .site-topbar {
    display: none;
  }

  .site-nav-inner,
  .site-header.is-scrolled .site-nav-inner,
  .site-header.scrolled .site-nav-inner {
    min-height: 74px;
  }

  .site-logo img {
    width: 156px;
    max-height: 46px;
  }

  .header-quote {
    display: none;
  }

  .shared-page-hero {
    min-height: 320px;
    padding-block: var(--app-hero-space);
  }

  .shared-breadcrumb {
    margin-bottom: 25px;
  }

  .shared-page-hero h1 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .shared-page-hero-inner > p:last-child {
    margin-top: 18px;
    font-size: 15px;
  }

  .php-site.page-about .about-leadership-section {
    padding: var(--app-section-space) 0;
  }

  .php-site.page-about .about-leadership-feature .image {
    min-height: clamp(330px, 93vw, 430px);
  }

  .php-site.page-about .about-leadership-image-caption {
    right: 22px;
    bottom: 20px;
    left: 22px;
  }

  .php-site.page-about .about-leadership-facts {
    grid-template-columns: minmax(0, 1fr);
    gap: 13px;
  }

  .php-site.page-about .about-leadership-facts > div,
  .php-site.page-about .about-leadership-facts > div:first-child,
  .php-site.page-about .about-leadership-facts > div:last-child {
    padding: 0 0 13px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .php-site.page-about .about-leadership-facts > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .php-site.page-about .about-leadership-reach {
    grid-template-columns: minmax(0, 1fr);
  }

  .php-site.page-about .about-leadership-reach > :last-child {
    grid-column: auto;
  }

  .php-site.premium-page .gallery-hero-visual {
    min-height: clamp(330px, 80vw, 430px);
  }

  .php-site.premium-page .premium-facts > div {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 55, 31, 0.14);
  }

  .php-site.premium-page .premium-facts > div:last-child {
    border-bottom: 0;
  }

  .php-site .rts-section-gap {
    padding-top: var(--app-section-space);
    padding-bottom: var(--app-section-space);
  }

  .php-site .rts-section-gapBottom {
    padding-bottom: var(--app-section-space);
  }

  .php-site .title-area-left .title,
  .php-site .title-area-center .title {
    font-size: clamp(31px, 9vw, 42px);
  }

  .php-site .title-area-left .title br,
  .php-site .title-area-center .title br,
  .php-site .banner-title br {
    display: none;
  }

  .banner-two-main-wrapper-solaric {
    min-height: 600px;
    background-position: 68% center;
  }

  .php-site .banner-solari-2-content {
    padding-top: 95px;
    padding-bottom: 110px;
  }

  .php-site .banner-solari-2-content .banner-title {
    font-size: clamp(40px, 12vw, 55px);
  }

  .php-site .banner-solari-2-content .disc {
    font-size: 15px;
  }

  .php-site .rts-secvice-area-solaric-banner-bottom {
    padding-top: 25px;
  }

  .php-site .single-solari-service-start p.disc {
    min-height: 0;
  }

  .php-site .thumbnail-solari-about .experiencea-area,
  .php-site .experiencea-area.images {
    right: 12px;
    bottom: 12px;
    border-width: 4px;
  }

  .php-site .benefit-tile {
    align-items: flex-start;
  }

  .shared-enquiry-panel {
    padding: 32px 22px;
    border-radius: 20px;
  }

  .shared-enquiry-form {
    grid-template-columns: 1fr;
  }

  .shared-enquiry-form .site-button {
    width: 100%;
  }

  .shared-enquiry-form-wrap {
    padding: 20px;
  }

  .php-site .shseip-form-lg .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .php-site .map-area-wrapper,
  .php-site .map-area-wrapper iframe {
    min-height: 380px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 0;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 479px) {
  :root {
    --app-section-space: 44px;
    --app-section-space-compact: 36px;
    --app-hero-space: 48px;
  }

  .mobile-navigation-head,
  .mobile-navigation nav,
  .mobile-navigation-contact {
    padding-right: 20px;
    padding-left: 20px;
  }

  .button-solari-banner-area,
  .php-site .solari-about-button-area {
    align-items: stretch;
    flex-direction: column;
  }

  .button-solari-banner-area .rts-btn,
  .php-site .solari-about-button-area .rts-btn {
    width: 100%;
  }

  .php-site.page-about .about-leadership-image-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .php-site.page-about .about-leadership-image-caption span {
    text-align: left;
  }

  .php-site.page-about .about-leadership-feature .content {
    padding: 34px 22px 38px;
  }

  .php-site.page-about .about-leadership-feature .d-flex .rts-btn,
  .php-site.page-about .about-company-facts {
    width: 100%;
  }

  .php-site.page-about .about-company-facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .php-site.page-about .about-reach-card {
    padding: 28px 24px 29px;
  }

  .php-site .benefit-tile {
    flex-direction: column;
  }

  .php-site .shseip-circle-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
  }

  .php-site .shseip-form-card,
  .php-site .quote-side-panel,
  .php-site .legal-content {
    border-radius: 20px;
  }

  .footer-cta {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .footer-cta .site-button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom > div {
    flex-wrap: wrap;
    gap: 10px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  .php-site *,
  .php-site *::before,
  .php-site *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .ui-reveal-ready [data-ui-reveal],
  .ui-reveal-ready .ui-reveal,
  .ui-reveal-ready [data-animate-title] {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}

@media print {
  .site-topbar,
  .site-nav-actions,
  .mobile-navigation,
  .mobile-navigation-backdrop,
  .site-progress,
  .back-to-top,
  .shared-enquiry-cta,
  .footer-cta {
    display: none !important;
  }

  .site-header {
    position: static;
    box-shadow: none;
  }

  .site-footer {
    background: #fff;
    color: #111;
  }
}
