/* SunBuilt Solar — Main stylesheet
   Clean, WordPress-free, designed to match sunbuiltsolar.com.au
   ========================================================================== */

/* ---------- Flaticon font ---------- */
@font-face {
  font-family: "Flaticon";
  src: url("../fonts/flaticon/flaticon_solarva.woff2") format("woff2"),
       url("../fonts/flaticon/flaticon_solarva.woff") format("woff"),
       url("../fonts/flaticon/flaticon_solarva.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
[class^="flaticon-"]:before, [class*=" flaticon-"]:before {
  font-family: Flaticon;
  font-size: inherit;
  font-style: normal;
  font-weight: normal;
}
.flaticon-envelope:before { content: "\f101"; }
.flaticon-pin:before { content: "\f102"; }
.flaticon-location:before { content: "\f117"; }
.flaticon-clock:before { content: "\f106"; }
.flaticon-customer-service:before { content: "\f107"; font-size:30px; }
.flaticon-facebook:before { content: "\f108"; }
.flaticon-mail:before { content: "\f10d"; }
.flaticon-phone:before { content: "\f12b"; }
.flaticon-paper-plane:before { content: "\f122"; }
.flaticon-bullet-tick:before { content: "\f105"; }
[class^="flaticon-"], [class*=" flaticon-"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Design tokens ---------- */
:root {
  --color-primary: #86BB46;
  --color-primary-dark: #4AAB3D;
  --color-primary-bright: #7EC53E;
  --color-primary-darker: #3D8F32;
  --color-primary-50: #E4F3E2;
  --color-gold: #FFD700;
  --color-gold-alt: #FFA800;
  --color-navy: #002244;
  --color-navy-light: #003973;
  --color-navy-alt: #002C5F;
  --color-text: #072032;
  --color-text-muted: #5C6972;
  --color-text-light: #6B7F95;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F0F2F8;
  --color-bg-light: #F8F8F8;
  --color-border: #D7D7D7;
  --color-white: #FFFFFF;

  --font-heading: 'Inter', 'Montserrat', sans-serif;
  --font-sans: 'DM Sans', sans-serif;
  --font-accent: 'Oswald', sans-serif;
  --font-serif: 'Roboto Slab', serif;

  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.375rem;
  --fs-2xl: 1.75rem;
  --fs-3xl: 2.25rem;
  --fs-4xl: 2.875rem;
  --fs-5xl: 3.5rem;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.06);

  --container: 1280px;
  --header-h: 92px;
  --transition: 200ms cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 0;
  color: var(--color-text);
  background: #f5f5f5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body > * { line-height: 1.6; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover, a:focus-visible { color: var(--color-navy); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.15; margin: 0 0 var(--space-4); font-weight: 800; color: var(--color-navy); letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 4vw + 1rem, var(--fs-5xl)); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 2.5vw + .5rem, var(--fs-3xl)); letter-spacing: -0.01em; }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
p { margin: 0 0 var(--space-4); }
ul, ol { padding-left: 1.25rem; margin: 0 0 var(--space-4); }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 3px; border-radius: 2px; }

/* ---------- Skip link ---------- */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--color-navy); color: #fff; padding: .5rem 1rem; z-index: 1000; }
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1440px; margin-inline: auto; padding-left: 145px; padding-right: 145px; }
.section { padding-block: clamp(3rem, 7vw, 5rem); }
.section--alt { background: var(--color-bg-alt); }
.section--navy { background: var(--color-navy); color: #EAF2E0; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #FFFFFF; }
.section--primary { background: var(--color-primary); color: #fff; }
.section--primary h1, .section--primary h2 { color: #fff; }
.grid { display: grid; gap: var(--space-6); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.75rem; font-family: var(--font-heading); font-weight: 600; font-size: var(--fs-sm);
  border-radius: var(--radius-pill); border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn--primary:hover, .btn--primary:focus-visible { background: var(--color-primary-dark); color: #fff; border-color: var(--color-primary-dark); box-shadow: 0 4px 14px rgba(134,187,70,.35); }
.btn--navy { background: var(--color-navy); color: #fff; border-color: var(--color-navy); }
.btn--navy:hover { background: var(--color-navy-light); color: #fff; }
.btn--outline { background: transparent; color: var(--color-navy); border-color: var(--color-navy); }
.btn--outline:hover { background: var(--color-navy); color: #fff; }
.btn--outline-white { background: transparent; color: #fff; border-color: #fff; }
.btn--outline-white:hover { background: #fff; color: var(--color-navy); }
.btn--white-pill { background: #fff; color: var(--color-navy); border-color: #fff; }
.btn--white-pill:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn--lg { padding: 1rem 2.1rem; font-size: var(--fs-base); }

/* ---------- Site header (transparent absolute over slider, white on scroll) ---------- */
.site-header {
  position: absolute; top: 0; left: 0; right: 0; width: 100%; z-index: 999;
  background: transparent; box-shadow: none;
  transition: background 0.3s, border 0.3s, box-shadow 0.3s;
}
.site-header.is-sticky {
  position: fixed; top: 0;
  background: #fff; box-shadow: 0 10px 10px rgba(0,0,0,0.05);
}
.site-header.is-sticky .header-top { display: none; }

/* Streamlined single-row header */
.header-wrap {
  display: flex; align-items: center;
}
.header-logo-col {
  width: clamp(208px, 15.6vw, 234px); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 14px 20px;
  border-right: 1px solid rgba(255,255,255,0.4);
  background: transparent;
}
.header-right-col {
  flex: 1; display: flex; flex-direction: column; justify-content: center; min-width: 0;
}

.site-logo { display: inline-flex; align-items: center; text-decoration: none; max-width: 176px; width: 100%; }
.site-logo img { max-width: 100%; height: auto; transition: filter 0.3s; }
.site-logo__default { width: 100%; max-height: 68px; object-fit: contain; }

/* -- Single row: Nav | Phone | Quote button -- */
.header-nav { background: transparent; border: 0; }
.header-nav__inner {
  display: flex; align-items: center; gap: 0; min-height: 82px;
}
.primary-nav {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    padding: 0px 0px 0px 32px;
    border-style: solid;
    border-width: 0px 1px 0px 0px;
    border-color: #FFFFFF66;
}
.primary-nav__list { list-style: none; display: flex; align-items: center; flex-wrap: nowrap; gap: clamp(2px, 0.35vw, 10px); margin: 0; padding: 0; }
.primary-nav__list > li { position: relative; }
.primary-nav__list a {
  color: #fff; font-family: var(--font-heading); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: .3rem;
  padding: 12px 14px; border-radius: var(--radius-sm);
  line-height: 1.15;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.primary-nav__list a:hover { background: var(--color-primary); color: #fff; }

/* Sticky state overrides */
.site-header.is-sticky .header-top { display: none; }
.site-header.is-sticky .header-right-col { justify-content: center; }
.site-header.is-sticky .header-nav { background: #fff; }
.site-header.is-sticky .header-logo-col { border-right: 1px solid #D7D7D7; background: #fff; }
.site-header.is-sticky .primary-nav { border-right: 1px solid #D7D7D7; }
.site-header.is-sticky .primary-nav__list a { color: var(--color-navy); }
.site-header.is-sticky .primary-nav__list a:hover { background: var(--color-primary); color: #ffffff; }
.page-home .site-header.is-sticky .primary-nav__list [data-nav="home"],
.page-about .site-header.is-sticky .primary-nav__list [data-nav="about"],
.page-contact .site-header.is-sticky .primary-nav__list [data-nav="contact"],
.page-services .site-header.is-sticky .primary-nav__list [data-nav="services"] { background: var(--color-primary); color: #ffffff !important; }
.site-logo__sticky { display: none; }
.site-header.is-sticky .site-logo__default { display: none; }
.site-header.is-sticky .site-logo__sticky { display: block; max-height: 53px; width: auto; filter: none; }
.site-header.is-sticky .header-phone { color: var(--color-navy); }
.site-header.is-sticky .header-phone__text small { color: var(--color-text-muted); }
.site-header.is-sticky .header-phone__text strong { color: var(--color-navy); }
.site-header.is-sticky .header-nav__cta { border-left: 1px solid #D7D7D7; }
.site-header.is-sticky .nav-toggle span { background: var(--color-navy); }
.page-home .primary-nav__list [data-nav="home"],
.page-about .primary-nav__list [data-nav="about"],
.page-contact .primary-nav__list [data-nav="contact"],
.page-services .primary-nav__list [data-nav="services"] {
  background: var(--color-primary); color: #fff;
}

.has-submenu .submenu {
  position: absolute; top: 100%; left: -1rem; min-width: 240px;
  background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: .5rem 0; list-style: none; margin: .25rem 0 0;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 100;
}
.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu,
.has-submenu.open > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu li { margin: 0; position: relative; }
.submenu a { display: block; padding: .65rem 1.25rem; font-weight: 500; color: var(--color-navy) !important; background: transparent !important; border-radius: 0 !important; }
.submenu a:hover { background: var(--color-primary-50) !important; color: var(--color-primary) !important; }
/* Nested submenu (e.g. Thermal Imaging > Maintenance) */
.submenu .has-submenu > .submenu { left: 100%; top: 0; }

.header-phone {
  display: inline-flex; align-items: center; gap: .6rem; color: #fff;
  padding: 0 18px 0 16px;
}
.header-phone__icon {
  width: 40px; height: 40px; border-radius: 50%; background: var(--color-primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  animation: ring-pulse 2s ease-in-out infinite;
}
@keyframes ring-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(134,187,70,.4); }
  50% { box-shadow: 0 0 0 8px rgba(134,187,70,0); }
}
.header-phone__text { display: flex; flex-direction: column; line-height: 1.2; }
.header-phone__text small { font-size: 15px; color: rgba(255,255,255,0.75); letter-spacing: -0.3px; }
.header-phone__text strong { font-size: 17px; color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 600; }
.header-phone:hover .header-phone__text strong { color: var(--color-primary); }
.site-header.is-sticky .header-phone__text small { color: var(--color-text-muted); }
.site-header.is-sticky .header-phone__text strong { color: var(--color-navy); }

.btn--quote {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 48px;
  padding: 0 28px;
  border-radius: 30px;
  background: #ffffff !important;
  color: #002244 !important;
  border: none;
}
.btn--quote:hover {
  background: #002244 !important;
  color: #fff !important;
  transform: translateY(-2px);
}
.header-nav__cta {
  display: flex; align-items: center; gap: 18px; flex-shrink: 0;
  padding: 0 20px 0 0;
  border: none;
  transition: border 0.3s;
}
.header-nav__cta .header-phone {
  padding-right: 16px;
  border-right: 1px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
}
.header-nav__cta .btn--quote {
  align-self: center;
}
.site-header.is-sticky .header-nav__cta .header-phone,
body:not(.page-home) .site-header .header-nav__cta .header-phone {
  border-right-color: #D7D7D7;
}
.nav-toggle {
  display: none; background: none; border: 0; padding: .5rem;
  width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; transition: transform var(--transition), opacity var(--transition); }
.site-header.is-sticky .nav-toggle span { background: var(--color-navy); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1399px) {
  .primary-nav { padding-left: 18px; }
  .header-nav__cta { gap: 16px; padding-right: 18px; }
  .btn--quote { padding-inline: 24px; }
}
@media (max-width: 1280px) {
  .primary-nav__list a { font-size: 13px; padding-inline: 11px; }
  .header-phone__text strong { font-size: 17px; }
  .header-phone__text small { font-size: 15px; }
}
@media (max-width: 1100px) {
  .header-phone__text small { display: none; }
  .header-top__email { display: none; }
  .header-logo-col { width: auto; min-width: 140px; }
}
@media (max-width: 960px) {
  .site-header { position: relative; background: #fff; }
  .site-header .site-logo__default { display: none; }
  .site-header .site-logo__sticky { display: block; max-height: 48px; width: auto; filter: none; }
  .site-header .nav-toggle span { background: var(--color-navy); }
  .header-top { display: none; }
  .header-wrap { flex-wrap: nowrap; align-items: center; }
  .header-logo-col {
    width: auto; min-width: 112px; max-width: 176px; border-right: 0; padding: 14px 16px;
  }
  .header-right-col { flex: 0 1 auto; min-width: auto; }
  .header-nav { background: #fff; }
  .header-nav__cta { display: none; }
  .site-header.is-sticky .header-nav__cta { border-left: none; }
  .header-nav__inner {
    min-height: 84px; justify-content: flex-end; align-items: center;
    padding: 0 16px 0 0; gap: 0;
  }
  .header-phone,
  .header-nav__cta .header-phone { display: none !important; }
  .btn--quote {
    padding: 0 20px; line-height: 44px; font-size: 11px;
    background: var(--color-navy) !important;
    color: #fff !important;
  }
  .btn--quote:hover {
    background: var(--color-navy-light) !important;
    color: #fff !important;
  }
  .nav-toggle { display: inline-flex; order: 10; width: 40px; height: 40px; padding: 0; }
  .primary-nav {
    position: fixed; top: 84px; left: auto; right: 0; bottom: 0;
    width: min(360px, 100vw);
    background: #fff; flex-direction: column; align-items: stretch; gap: 0;
    padding: 0; overflow-y: auto; border-right: 0;
    transform: translateX(100%); transition: transform var(--transition);
    border-top: 1px solid var(--color-border);
    box-shadow: -8px 0 24px rgba(0,0,0,.08);
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav__list { flex-direction: column; gap: 0; padding: 8px 0; }
  .primary-nav__list > li { border-bottom: 1px solid var(--color-border); }
  .primary-nav__list > li:last-child { border-bottom: 0; }
  .primary-nav__list a {
    padding: 14px 20px; font-size: 16px; font-weight: 600;
    color: var(--color-navy); border-radius: 0;
    display: flex; align-items: center; justify-content: space-between;
  }
  .primary-nav__list a svg {
    transition: transform var(--transition);
    color: var(--color-navy);
  }
  .primary-nav__list a:hover,
  .primary-nav__list a:focus-visible { background: rgba(134,187,70,0.08); color: var(--color-primary); }
  .primary-nav__list a:hover svg { color: var(--color-primary); }

  .has-submenu .submenu, .has-submenu .submenu .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; min-width: 0; display: none; left: 0;
    padding: 4px 0; margin: 0;
    background: #f6f8fa;
    border-top: 1px solid var(--color-border);
  }
  .has-submenu .submenu li { border-bottom: 1px solid rgba(0,0,0,.04); }
  .has-submenu .submenu li:last-child { border-bottom: 0; }
  .has-submenu .submenu a {
    padding: 12px 20px 12px 36px;
    font-size: 15px; font-weight: 500;
  }
  .has-submenu .submenu .submenu a { padding-left: 52px; font-size: 14px; }
  .has-submenu.open > .submenu { display: block; }
  .has-submenu.open > a > svg { transform: rotate(180deg); }

  /* Active page highlight */
  .page-home .primary-nav__list [data-nav="home"],
  .page-about .primary-nav__list [data-nav="about"],
  .page-contact .primary-nav__list [data-nav="contact"],
  .page-services .primary-nav__list [data-nav="services"] {
    background: rgba(134,187,70,0.12);
    color: var(--color-primary) !important;
  }
}

/* ---------- Hero Slider (6-slide, matching WordPress Revolution Slider) ---------- */
.hero-slider {
  position: relative; width: 100%; height: clamp(600px, 72svh, 680px); overflow: hidden; background: var(--color-navy);
  /* Match live (WordPress) hero "punch": the Elementor section wrapping the
     SR7 slider has filter: contrast(1.5) applied, which produces the
     more vibrant / crisper / sharper look users see on the live site. */
  filter: contrast(1.5);
}
@media (max-width: 1024px) { .hero-slider { height: clamp(520px, 70svh, 650px); } }
@media (max-width: 767px) { .hero-slider { height: clamp(460px, 72svh, 560px); } }

.hero-slider__track { position: relative; width: 100%; height: 100%; }

.hero-slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 2; }

.hero-slide__bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--slide-bg) var(--slide-position, center)/cover no-repeat;
  transform: scale(1.01);
  transform-origin: center center;
  will-change: transform;
}
.hero-slide.is-active .hero-slide__bg {
  animation-duration: 6.6s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}
.hero-slide:nth-child(odd).is-active .hero-slide__bg { animation-name: hero-kenburns-in; }
.hero-slide:nth-child(even).is-active .hero-slide__bg { animation-name: hero-kenburns-out; }
@keyframes hero-kenburns-in {
  from { transform: scale(1.01); }
  to { transform: scale(1.045); }
}
@keyframes hero-kenburns-out {
  from { transform: scale(1.045); }
  to { transform: scale(1.01); }
}
.hero-slide__overlay {
  position: absolute; inset: 0; z-index: 1;
  /* Match live (WordPress) hero overlay exactly — verified against the
     computed style of the live SR7 slider's #SR7_1_1-16-3 layer.
     Dark navy at the top fades to transparent at the bottom, which
     preserves image contrast (the previous bright-blue gradient washed
     everything out). */
  background: linear-gradient(1deg, rgba(0, 209, 255, 0) 0%, rgba(4, 51, 82, 0.8) 100%);
}
.hero-slide__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  text-align: center; height: 100%;
  max-width: 934px; margin: 0 auto;
  color: #fff;
  padding: clamp(124px, 18vh, 150px) var(--space-5) 90px;
  transform: translateX(var(--slide-content-x, 0));
}
.hero-slide__content .hero-eyebrow {
  display: inline-block;
  font-family: var(--font-sans); font-size: 14px; font-weight: 500;
  color: #fff; letter-spacing: 0.28px; line-height: 1.4;
  padding: 5px 18px; margin-bottom: 18px;
  border: 1px solid #fff; border-radius: 8px;
  background: transparent; text-transform: none;
}
.hero-slide__content h1,
.hero-slide__content h2 {
  font-family: var(--font-heading); font-size: clamp(48px, 4vw, 66px); font-weight: 600;
  color: #fff; line-height: 1.05 !important; letter-spacing: 0 !important;
  margin-bottom: 26px; text-align: center;
}
@media (max-width: 1024px) {
  .hero-slide__content h1,
  .hero-slide__content h2 { font-size: 56px; line-height: 60px; }
}
@media (max-width: 1180px) {
  .hero-slide__content { transform: none; }
}
@media (max-width: 767px) {
  .hero-slide__content h1,
  .hero-slide__content h2 { font-size: 38px; line-height: 44px; margin-bottom: 24px; }
}
.hero-slide__content p {
  font-family: var(--font-sans); font-size: 20px; font-weight: 400;
  color: #fff; letter-spacing: -0.44px; line-height: 1.4;
  max-width: 720px; margin-bottom: 28px; text-align: center;
}
@media (max-width: 767px) {
  .hero-slide__content p { font-size: 16px; margin-bottom: 24px; }
  .hero-slide__content .hero-eyebrow { margin-bottom: 16px; }
}
.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.hero-cta .btn--primary {
  background: var(--color-primary); color: #fff; border-color: var(--color-primary);
  font-family: var(--font-heading); font-size: 16px; font-weight: 600;
  letter-spacing: 0; line-height: 54px; padding: 0 30px;
  border-radius: 100px;
}
.hero-cta .btn--primary:hover {
  background: var(--color-primary-dark); border-color: var(--color-primary-dark);
}

/* Slider dots */
.hero-slider__controls {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; align-items: center;
}
.hero-slider__dots { display: inline-flex; align-items: center; justify-content: center; gap: 6px; }
.hero-slider__dot {
  position: relative;
  width: 30px; height: 30px;
  padding: 0; border: 0; border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s linear;
}
.hero-slider__dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid #fff;
  opacity: 0;
  transition: inherit;
}
.hero-slider__dot span {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  border-radius: inherit;
  background: #fff;
  transition: inherit;
}
.hero-slider__dot:hover::before,
.hero-slider__dot.is-active::before { opacity: 1; }

/* ---------- Services section ---------- */
/* ---------- Services section ---------- */
.section--services {
  background: #EDF3F9 url('../images/services-bg.webp') center top / cover no-repeat;
  overflow: hidden;
}

.services-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; margin-bottom: 45px;
}
.services-header__left { flex: 1 1 30%; }
.services-header__left .section__eyebrow {
  margin-bottom: 10px;
}
.services-header__left h2 {
  margin-bottom: 0;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--secondary-color, var(--color-navy));
  text-shadow: 2px 0 #ccc, -2px 0 #ccc, 0 2px #ccc, 0 -2px #ccc,
               1px 1px #ccc, -1px -1px #ccc, 1px -1px #ccc, -1px 1px #ccc;
}
.services-header__center { flex: 1 1 30%; }
.services-header__center p {
    color: var(--color-text-muted);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 0;
    padding: 30px 85px 0px 40px;
}
.services-header__right { flex: 0 0 20%; display: flex; align-items: center; }
.services-nav { display: flex; gap: 8px; }
.services-nav__btn {
  --size: 60px;
  width: var(--size); height: var(--size); display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--boarder-grey-1, #bcc5cf); border-radius: 50%; background-color: #fff;
  cursor: pointer; transition: all 250ms ease; padding: 0; pointer-events: visible;
}
.services-nav__btn:hover { border-color: var(--color-navy); background: var(--color-navy); }
.services-nav__btn:hover svg path { fill: #fff; }
@media (max-width: 768px) {
  .services-header { flex-direction: column; gap: 20px; align-items: flex-start; }
  .services-header__left, .services-header__center, .services-header__right { flex: 1 1 auto; max-width: 100%; }
  .services-header__left h2 { font-size: 32px; }
}

/* ---------- Services slider ---------- */
.services-slider { position: relative; overflow: visible; }
.services-slider__track { display: flex; gap: 40px; }

/* ---------- Services cards ---------- */
.service-card {
  background: #fff; border-radius: 14px; position: relative;
  overflow: hidden; flex-shrink: 0;
  box-shadow: 0 4px 24px rgba(0,34,68,0.07);
  transition: transform 400ms ease, box-shadow 400ms ease;
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,34,68,0.14);
}

/* Card image */
.service-card__featured { overflow: hidden; }
.service-card__featured a { display: block; line-height: 0; }
.service-card__featured img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block;
  transition: transform 500ms ease;
}
.service-card:hover .service-card__featured img { transform: scale(1.05); }

/* Product renders with transparent backgrounds (e.g. SigenStor) sit
   inside the 3:2 card slot. Use object-fit: contain on a clean white
   backdrop so the whole product is visible without cropping. */
.service-card__featured img[src*="service-solar-batteries"] {
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 10px 0;
}

/* Card icon badge */
.service-card__content { position: relative; }
.service-card__icon {
  --size: 94px;
  width: var(--size); min-width: var(--size); height: var(--size);
  display: flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 50%;
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -56%);
  z-index: 2;
  transition: background 300ms ease, box-shadow 300ms ease;
}
.service-card__icon svg { width: 60px; height: 60px; }
.service-card__icon svg path { transition: fill 300ms ease; }
.service-card:hover .service-card__icon {
  background: #fff; box-shadow: 0 4px 16px rgba(134,187,70,0.35);
}
.service-card:hover .service-card__icon svg path { fill: #86BB46; }

/* Card content */
.service-card__content { padding: 49px 34px; flex: 1; text-align: center; }
.service-card__title {
  font-family: 'Montserrat'; font-size: 22px; font-weight: 600;
  line-height: 1.45455; color: var(--secondary-color); margin-bottom: 5px;
}
.service-card__title a {
  color: var(--color-navy); text-decoration: none; transition: color 300ms ease;
}
.service-card:hover .service-card__title a { color: var(--color-primary); }
.service-card__excerpt {
  color: var(--color-text-muted); font-size: 16.5px; line-height: 1.6;
  margin-bottom: 0;
}

/* Card learn more button */
.service-card__btn {
  --border-color: #ededed;
  --bg-color: #fff;
  --color: #fff;
  width: 100%;
  height: 68px;
  margin-top: auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-color);
  transition: background-color 300ms ease;
}
.service-card__btn a {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-size: 18px; font-weight: 600;
  color: var(--dark-blue-2, var(--color-navy)); text-decoration: none; transition: color 300ms ease;
}
.service-card__btn a svg { transition: transform 300ms ease; }
.service-card__btn a svg path { transition: fill 300ms ease; }
.service-card:hover .service-card__btn { background-color: var(--color-primary); }
.service-card__btn a:hover,
.service-card:hover .service-card__btn a { color: #fff; }
.service-card__btn a:hover svg path,
.service-card:hover .service-card__btn a svg path { fill: #fff; }
.service-card__btn a:hover svg,
.service-card:hover .service-card__btn a svg { transform: translateX(4px); }

/* Generic card (used on other pages) */
.card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: var(--space-6); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-primary); }
.card__icon {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  background: var(--color-primary-50); border-radius: var(--radius-md); color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: var(--fs-xl); margin-bottom: var(--space-3); }
.card p { color: var(--color-text-muted); margin-bottom: var(--space-4); }
.card__link { font-weight: 600; display: inline-flex; align-items: center; gap: .4rem; color: var(--color-primary); }
.card__link::after { content: '\2192'; transition: transform var(--transition); }
.card__link:hover::after { transform: translateX(4px); }
.card--image { padding: 0; overflow: hidden; }
.card--image .card__body { padding: var(--space-6); }
.card--image figure { margin: 0; aspect-ratio: 16/10; overflow: hidden; }
.card--image figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.card--image:hover figure img { transform: scale(1.04); }

/* ---------- Section helpers ---------- */
.section__head { max-width: 780px; margin: 0 auto var(--space-7); text-align: center; }
.section__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "DM Sans", sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 0.28px; text-transform: uppercase;
  color: var(--color-primary); margin-bottom: 26px;
}
.section__eyebrow svg { flex-shrink: 0; }
@keyframes pxl-slide {
  0% { transform: rotate(45deg) translateX(0); }
  50% { transform: rotate(45deg) translateX(4px); }
  100% { transform: rotate(45deg) translateX(0); }
}
.section__eyebrow .pxl-move-rect.slide { animation: pxl-slide 2s ease-in-out infinite; }
.section__head p { font-size: var(--fs-lg); color: var(--color-text-muted); }
.section--navy .section__head p { color: #C8D4E4; }
.section--navy .section__eyebrow { color: var(--color-primary); }

/* ---------- About section (2x2 grid) ---------- */
.about-section { background-color: transparent; background-image: linear-gradient(180deg, #FFFFFF 0%, #E7F8F0 100%); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 30px;
}
.about-grid__heading {
  grid-column: 1; grid-row: 1;
  align-self: start;
}
.about-grid__heading h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 54px; font-weight: 600; letter-spacing: -0.96px; line-height: 1.2;
  color: var(--secondary-color, var(--color-navy));
  text-shadow: 2px 0 #ccc, -2px 0 #ccc, 0 2px #ccc, 0 -2px #ccc,
               1px 1px #ccc, -1px -1px #ccc, 1px -1px #ccc, -1px 1px #ccc;
  margin-bottom: 0;
}
.about-grid__img-small {
  grid-column: 2; grid-row: 1;
}
.about-grid__img-small img {
  width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius-lg);
}
.about-grid__img-large {
  grid-column: 1; grid-row: 2; margin-top: -250px;
}
.about-grid__img-large img {
  width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg);
}
.about-grid__text {
  grid-column: 2; grid-row: 2;
  display: flex; flex-direction: column; justify-content: flex-start;
}
.about-grid__text p {
  font-family: "Noto Sans", sans-serif;
  font-size: 17px; line-height: 1.6; letter-spacing: -0.34px;
  color: var(--color-text-muted); margin: 0 0 20px;
}
.about-grid__text p:last-child { margin-bottom: 0; }
@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .about-grid__heading,
  .about-grid__img-small,
  .about-grid__img-large,
  .about-grid__text {
    grid-column: 1;
    grid-row: auto;
  }
  .about-grid__heading h2 { font-size: 32px; }
  .about-grid__img-small img { height: 220px; }
}

/* ---------- Feature split (general) ---------- */
.feature-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--space-8); align-items: center; }
.feature-split--reverse .feature-split__media { order: 2; }
@media (max-width: 860px) { .feature-split, .feature-split--reverse { grid-template-columns: 1fr; gap: var(--space-6); } .feature-split--reverse .feature-split__media { order: 0; } }
.feature-split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.feature-split__body ul { list-style: none; padding: 0; margin: var(--space-4) 0; }
.feature-split__body ul li { position: relative; padding-left: 1.75rem; margin-bottom: .6rem; }
.feature-split__body ul li::before {
  content: ''; position: absolute; left: 0; top: .55rem; width: 18px; height: 18px;
  background: var(--color-primary) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/70% no-repeat;
  border-radius: 50%;
}

/* ---------- Partner marquee ---------- */
/* ---------- Partner marquee ---------- */
.partner-band { padding-block: var(--space-7); background: #fff; }
.partner-marquee { overflow-x: clip; }

/* Label with lines */
.partner-marquee__label {
  width: 100%; text-align: center; display: inline-flex;
  align-items: center; justify-content: center; margin-bottom: 40px;
}
.partner-marquee__label-text {
  position: relative; padding-inline: 23px;
  font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 600;
  line-height: 1.5; letter-spacing: -0.44px; color: #072032;
}
.partner-marquee__label-text::before,
.partner-marquee__label-text::after {
  position: absolute; content: ''; top: 50%; max-width: 284px;
  width: 100%; height: 1px; background-color: #b0b0b0;
}
.partner-marquee__label-text::before { left: 0; transform: translate(-100%, -50%); }
.partner-marquee__label-text::after { right: 0; transform: translate(100%, -50%); }

/* Scrolling track */
.partner-marquee__container { width: 100%; position: relative; }
.partner-marquee__inner {
  --x: 60px; --gap: 30px;
  display: flex; width: 100%;
}
.partner-marquee__inner:hover .partner-marquee__list { animation-play-state: paused; }
.partner-marquee__list {
  display: inline-flex; flex: 0 0 100%; align-items: center;
  flex-wrap: nowrap; justify-content: space-between;
  will-change: transform;
  animation: slide-ltr 20s linear infinite;
}
.partner-marquee__list--main { padding-right: var(--gap); }
.partner-marquee__list--duplicate { padding-left: var(--gap); }

.partner-marquee__single {
  position: relative; width: 100%; text-decoration: none;
}
.partner-marquee__single + .partner-marquee__single { padding-left: var(--x); }

.partner-marquee__card {
  --size: 200px;
  width: 100%; background-color: #fff;
  box-shadow: 0px 4px 20px 0px rgba(180, 199, 190, 0.29);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; border-radius: 8px; transition: all 0.3s ease;
}
.partner-marquee__card img {
  height: 60px; width: auto; max-width: 160px; object-fit: contain;
  transition: transform 0.3s ease;
}
.partner-marquee__single:hover .partner-marquee__card img {
  transform: translateY(-10px);
}

@keyframes slide-ltr {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@media (max-width: 768px) {
  .partner-marquee__label-text { font-size: 16px; }
  .partner-marquee__card img { height: 40px; max-width: 120px; }
}

/* ---------- Service-detail sidebar menu anchor offset ----------
   The service-detail pages cross-link each other with #services-menu
   so navigation preserves the user's scroll position. Offset the
   target so it sits below the sticky header. */
.si-service-menu {
  scroll-margin-top: clamp(80px, 12vw, 110px);
}

/* ---------- Process section ---------- */
/* ---------- Process / Company Features section ---------- */
.process-section {
  position: relative; background: #002244; overflow: hidden;
}
.process-section__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: url('../images/bg-striped.png') repeat center center;
  opacity: 0.15;
}
.process-section .container { position: relative; z-index: 2; }

/* Heading */
.process-heading { margin-bottom: 50px; display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; }
.process-heading .section__eyebrow { color: var(--color-primary); margin-bottom: 20px; }
.process-heading h2 {
  font-family: var(--font-heading); font-size: 54px; font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.05; color: #fff; margin-bottom: 0;
  max-width: 475px;
}

/* 3-column layout */
.process-features {
  display: flex; flex-wrap: wrap; row-gap: 60px; margin-inline: -15px;
}
.process-features__col { padding-inline: 15px; }
.process-features__tabs { flex-basis: 34.5%; max-width: 34.5%; display: flex; }
.process-features__images { flex-basis: 33.4%; max-width: 33.4%; }
.process-features__content { flex-basis: 32.1%; max-width: 32.1%; }
.process-features__content > .process-panel:last-child { margin-bottom: 0; }

/* Tab buttons */
.process-tabs { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; width: 100%; }
.process-tabs li + li { margin-top: 12px; }
.process-tab {
  display: block; text-align: left; width: 100%; position: relative;
  line-height: 64px; padding-inline: 44px 44px;
  color: #fff; font-family: 'Montserrat', sans-serif;
  font-size: 18px; font-weight: 600; letter-spacing: -0.36px;
  border: none; border-bottom: 1px solid rgba(215, 215, 215, 0.29);
  background: transparent; cursor: pointer;
  transition: all 0.25s linear; max-width: 347px;
}
.process-tab__text { position: relative; z-index: 9; }
.process-tab__icon {
  --size: 50px;
  position: absolute; left: 0; top: 0; height: 100%;
  width: calc(var(--size) + 14px); border-radius: 50px;
  background-color: var(--color-primary); opacity: 0;
  transition: all 0.25s linear; overflow: visible;
}
.process-tab__icon svg {
  position: absolute; right: calc(7px + (var(--size) - 16px) / 2); top: 50%;
  transform: translateY(-50%); z-index: 2; flex-shrink: 0;
}
.process-tab__icon::after {
  content: ''; position: absolute; right: 7px; top: 50%;
  transform: translateY(-50%);
  width: var(--size); height: var(--size); min-width: var(--size);
  border-radius: var(--size); background-color: #fff;
  transition: inherit;
}
.process-tab.is-active, .process-tab:hover { border-color: transparent; }
.process-tab.is-active .process-tab__icon,
.process-tab:hover .process-tab__icon { width: 100%; opacity: 1; }

/* Images pill */
.process-images {
  border-radius: 222px; width: 100%; position: relative;
  min-height: 629px; height: 100%; max-width: 404px;
  box-shadow: -9px 5px 0px 0px var(--color-navy-light, #001e3c);
  overflow: hidden;
}
.process-image {
  position: absolute; inset: 0;
  background-position: center; background-repeat: no-repeat; background-size: cover;
  transition: all 0.5s ease; opacity: 0; scale: 1.15;
}
.process-image.is-active { opacity: 1; scale: 1; }

/* Content panels */
.process-features__content .process-panel { width: 100%; }
.process-features__content {
  display: flex; align-items: center;
}
.process-panel { display: none; }
.process-panel.is-active { display: block; animation: fadeInUp 0.35s ease forwards; }
.process-panel__title {
  color: #fff; font-family: 'Montserrat', sans-serif;
  font-size: 30px; font-weight: 600; letter-spacing: -0.6px; margin-bottom: 25px;
}
.process-panel__desc {
  color: var(--boarder-grey-1, #b0b0b0); font-family: "Noto Sans", sans-serif;
  font-size: 18px; letter-spacing: -0.36px; line-height: 1.4;
  margin-bottom: 32px;
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* CTA button */
.process-cta { margin-top: 50px; text-align:center; }

.process-cta .btn {
    font-size: 18px;
}

/* Badge */
.process-badge { flex-shrink: 0; }
.process-badge img { width: 120px; height: auto; }

/* Responsive */
@media (max-width: 991px) {
  .process-features__tabs, .process-features__images { max-width: 50%; flex-basis: 50%; }
  .process-features__content { max-width: 100%; flex-basis: 100%; }
  .process-features__tabs { padding-top: 0; }
}
@media (max-width: 767px) {
  .process-features__tabs, .process-features__images, .process-features__content {
    max-width: 100%; flex-basis: 100%;
  }
  .process-features__tabs { margin-bottom: 0; }
  .process-heading h2 { font-size: 32px; }
  .process-images { max-width: none; min-height: 400px; border-radius: 160px; }
  .process-badge img { width: 80px; }

  /* Mobile accordion: panels are moved under each tab li by JS. Hide the
     original content/image columns and render each li as an expandable card. */
  .process-features.is-mobile-accordion .process-features__content,
  .process-features.is-mobile-accordion .process-features__images { display: none; }
  .process-features.is-mobile-accordion { row-gap: 0; }
  .process-features.is-mobile-accordion .process-features__tabs { padding-inline: 0; }
  .process-features.is-mobile-accordion .process-tabs li {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    transition: background 0.25s, border-color 0.25s;
  }
  .process-features.is-mobile-accordion .process-tabs li + li { margin-top: 10px; }
  .process-features.is-mobile-accordion .process-tabs li:has(.process-tab.is-active) {
    background: rgba(74, 171, 61, 0.10);
    border-color: rgba(74, 171, 61, 0.55);
  }
  .process-features.is-mobile-accordion .process-tab {
    max-width: 100%;
    border-bottom: none;
    padding-inline: 24px 54px;
  }
  .process-features.is-mobile-accordion .process-tab__icon {
    right: 8px; left: auto;
    width: 36px; opacity: 0.4;
    background: transparent;
  }
  .process-features.is-mobile-accordion .process-tab__icon::after { display: none; }
  .process-features.is-mobile-accordion .process-tab__icon svg {
    right: 8px;
    transition: transform 0.25s ease;
  }
  .process-features.is-mobile-accordion .process-tab.is-active .process-tab__icon { opacity: 1; }
  .process-features.is-mobile-accordion .process-tab.is-active .process-tab__icon svg { transform: translateY(-50%) rotate(90deg); }
  .process-features.is-mobile-accordion .process-tabs .process-panel {
    padding: 0 24px 22px;
  }
  .process-features.is-mobile-accordion .process-panel__title { display: none; }
  .process-features.is-mobile-accordion .process-panel__desc {
    font-size: 15.5px;
    line-height: 1.55;
    margin-bottom: 0;
    color: #cdd5d9;
  }
}

/* ---------- CTA section ---------- */
/* ---------- CTA / Contact section ---------- */
.cta-section {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #E7F8F0 0%, #FFFFFF 100%);
  padding-block: clamp(4rem, 8vw, 7rem);
}
.cta-section__bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('../images/bg-striped.png') repeat center center;
  opacity: 0.05; pointer-events: none;
}
.cta-section__leaves {
  position: absolute; bottom: 0; right: 0; z-index: 0;
  width: 100%; max-width: 1214px; height: 487px;
  background: url('../images/cta-bg-leaves.svg') no-repeat bottom right;
  background-size: contain; opacity: 0.4; pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }

/* Grid layout */
.cta-grid {
  display: flex; gap: 60px; align-items: flex-start;
}
.cta-grid__left {
  flex: 1; position: sticky; top: 120px;
}
.cta-grid__left .section__eyebrow { margin-bottom: 20px; }
.cta-grid__left h2 {
  font-family: var(--font-heading); font-size: 45px; font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.05; color: var(--color-navy);
  margin-bottom: 25px;
}
.cta-grid__left p {
  font-family: "Noto Sans", sans-serif; font-size: 18px;
  line-height: 1.6; letter-spacing: -0.36px;
  color: var(--color-text-muted); margin-bottom: 30px; max-width: 50ch;
}

/* Phone link */
.cta-phone {
  display: inline-flex; align-items: center; gap: .75rem;
  text-decoration: none; transition: all 0.3s ease;
}
.cta-phone__text {
  font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 700;
  color: var(--color-navy); transition: color 0.3s ease;
}
.cta-phone:hover .cta-phone__text { color: var(--color-primary); }

/* Right column - Form */
.cta-grid__right { flex: 1; }
.cta-form {
  /* background: #fff; */
  /* border-radius: 16px; */
  /* padding: 40px; */
  /* box-shadow: 0 8px 40px rgba(0, 34, 68, 0.08); */
}
.cta-form__title {
  font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 600;
  color: var(--color-navy); margin-bottom: 30px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form__row { display: flex; gap: 16px; }
.contact-form__row input { flex: 1; }
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 14px 18px;
  font-family: "Noto Sans", sans-serif; font-size: 16px;
  border: 1px solid #e0e0e0; border-radius: 8px;
  background: #f9f9f9; color: var(--color-navy);
  transition: border-color 0.3s ease;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--color-primary); background: #fff; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #999; }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { width: 100%; margin-top: 8px; }

/* Responsive */
@media (max-width: 860px) {
  .cta-grid { flex-direction: column; gap: 40px; }
  .cta-grid__left { position: static; }
  .cta-grid__left h2 { font-size: 36px; }
  .cta-grid__right { max-width: 100%; width: 100%; }
  .cta-form { padding: 28px; }
  .contact-form__row { flex-direction: column; gap: 16px; }
}

/* ---------- Testimonials ---------- */
/* ---------- Testimonial section (split layout) ---------- */
.testimonial-section { padding: 0; overflow: hidden; }
.testimonial-split { display: flex; min-height: 600px; }

/* Left image column */
.testimonial-split__image {
  flex: 0 0 50%; position: relative; overflow: hidden;
}
.testimonial-split__image img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}

/* Right content column */
.testimonial-split__content {
  flex: 0 0 50%; padding: 60px 60px 60px 80px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--color-navy);
}
.testimonial-split__content .section__eyebrow { color: var(--color-primary); margin-bottom: 20px; }
.testimonial-split__content h2 {
  font-family: var(--font-heading); font-size: 48px; font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.05; color: #fff; margin-bottom: 40px;
}

/* Slider */
.testimonial-slider { position: relative; }
.testimonial-slide { display: none; }
.testimonial-slide.is-active { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.testimonial-slide__text {
  font-family: "Noto Sans", sans-serif; font-size: 18px; line-height: 1.6;
  letter-spacing: -0.36px; color: #c8d4e4; font-style: italic;
  margin-bottom: 30px;
}

/* Author */
.testimonial-slide__author { display: flex; align-items: center; gap: 20px; }
.testimonial-slide__avatar { position: relative; flex-shrink: 0; }
.testimonial-slide__avatar img {
  --size: 87px;
  min-width: var(--size);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  object-fit: cover;
  border: 3.66px solid rgba(255, 255, 255, 0.13);
}
.testimonial-slide__quote {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 22px;
}
.testimonial-slide__info h3 {
  font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 600;
  color: #fff; margin: 0;
}

/* Dots */
.testimonial-dots { display: flex; align-items: center; justify-content: flex-end; gap: 6px; margin-top: 30px; }
.testimonial-dot {
  position: relative;
  width: 30px; height: 30px;
  padding: 0; border: 0; border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s linear;
}
.testimonial-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--color-primary);
  opacity: 0;
  transition: inherit;
}
.testimonial-dot span {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  border-radius: inherit;
  background: #fff;
  transition: inherit;
}
.testimonial-dot:hover::before,
.testimonial-dot.is-active::before { opacity: 1; }
.testimonial-dot:hover span,
.testimonial-dot.is-active span { background: var(--color-primary); }

/* Responsive */
@media (max-width: 860px) {
  .testimonial-split { flex-direction: column; }
  .testimonial-split__image { flex: none; height: 300px; }
  .testimonial-split__content { flex: none; padding: 40px 24px; }
  .testimonial-split__content h2 { font-size: 32px; }
}

/* ---------- Sigenergy section ---------- */
.sig-section { background: linear-gradient(180deg, #F5F8F4 0%, #fff 100%); }
.sig-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); max-width: 900px; margin: 0 auto var(--space-7); }
@media (max-width: 720px) { .sig-tabs { grid-template-columns: 1fr; } }
.sig-tab {
  text-align: left; padding: var(--space-5); background: #fff;
  border: 2px solid var(--color-border); border-radius: var(--radius-md);
  display: flex; flex-direction: column; gap: .4rem; transition: all var(--transition);
}
.sig-tab strong { color: var(--color-navy); font-size: var(--fs-base); }
.sig-tab span { font-size: var(--fs-sm); color: var(--color-text-muted); }
.sig-tab.is-active, .sig-tab:hover { border-color: var(--color-primary); background: var(--color-primary-50); transform: translateY(-2px); }
.sig-illustration { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); max-width: 1100px; margin: 0 auto; }
@media (max-width: 720px) { .sig-illustration { grid-template-columns: 1fr; } }
.sig-card { background: #fff; padding: var(--space-5); border-radius: var(--radius-md); border: 1px solid var(--color-border); text-align: center; }
.sig-card h3 { font-size: var(--fs-xl); margin-bottom: .25rem; }
.sig-card span { display: block; color: var(--color-primary); font-weight: 600; margin-bottom: var(--space-4); }
.sig-card img { width: 100%; height: auto; border-radius: var(--radius-sm); }

/* ---------- Case studies ---------- */
.case-studies {
  background: var(--color-bg-alt);
  padding-block: var(--space-9);
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.case-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-navy);
}
.case-card__link {
  display: block;
  position: relative;
  aspect-ratio: 506 / 638;
  text-decoration: none;
}
.case-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.case-card:hover img {
  transform: scale(1.08);
}
.case-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 2rem 0rem 2rem 2rem;
  z-index: 2;
  background: linear-gradient(0deg, rgba(0, 34, 68, 0.85) 0%, rgba(0, 34, 68, 0.3) 40%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.case-card:hover .case-card__body {
  opacity: 1;
}
.case-card__body h3 {
  margin: 0;
  align-self: flex-end;
  width: fit-content;
  transition: transform 0.4s ease;
  padding: 16.5px 50px 16.5px 25px;
  background-color: #86bb46;
  color: #fff;
  font-family: 'Montserrat';
  font-size: 22px;
  font-weight: 600;
  line-height: 1.45455;
  transform: translateY(70px);
  transition-duration: 0.3s;
}
.case-card:hover .case-card__body h3 {
  transform: translateY(0);
}

@media (max-width: 991px) {
  .case-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 575px) {
  .case-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Page hero (internal pages) ---------- */
.page-hero {
  background: linear-gradient(1deg, var(--color-navy-light) 0%, var(--color-navy) 100%);
  color: #fff; padding-block: clamp(8rem, 15vw, 10rem) clamp(3rem, 6vw, 5rem); text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(126,197,62,0.15) 0%, transparent 50%);
}
.page-hero__inner { position: relative; max-width: 860px; margin: 0 auto; }
.page-hero h1 { color: #fff; margin-bottom: var(--space-4); }
.page-hero p { color: #C8D4E4; font-size: var(--fs-lg); margin: 0 auto; max-width: 55ch; }
.breadcrumb { display: inline-flex; gap: .5rem; font-size: var(--fs-sm); color: #BCCBDE; margin-bottom: var(--space-4); }
.breadcrumb a { color: var(--color-primary); }
.breadcrumb span { color: #8DA1BE; }

/* Internal pages — header is solid white, not transparent */
/*body:not(.page-home) .site-header {
  position: sticky; top: 0; background: #fff; box-shadow: 0 10px 10px rgba(0,0,0,0.05);
}
body:not(.page-home) .site-header .header-top { display: none; }
body:not(.page-home) .site-header .header-nav { background: #fff; }
body:not(.page-home) .site-header .header-logo-col { border-right: 1px solid #D7D7D7; background: #fff; }
body:not(.page-home) .site-header .primary-nav { border-right: 1px solid #D7D7D7; }
body:not(.page-home) .site-header .header-nav__cta { border-left: 1px solid #D7D7D7; }
body:not(.page-home) .site-header .primary-nav__list a { color: var(--color-navy); }
body:not(.page-home) .site-header .header-phone__text strong { color: var(--color-navy); }
body:not(.page-home) .site-header .header-phone__text small { color: var(--color-text-muted); }
body:not(.page-home) .site-header .site-logo__default { display: none; }
body:not(.page-home) .site-header .site-logo__sticky { display: block; max-height: 53px; width: auto; filter: none; }
body:not(.page-home) .site-header .nav-toggle span { background: var(--color-navy); }
body:not(.page-home) .page-hero { margin-top: 0; }*/

/* ---------- Forms ---------- */
.form-field { margin-bottom: var(--space-5); }
.form-field label { display: block; font-weight: 600; margin-bottom: .35rem; color: var(--color-navy); font-size: var(--fs-sm); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: var(--fs-base); background: #fff; transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px var(--color-primary-50);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field__error { color: #D33; font-size: var(--fs-xs); margin-top: .35rem; display: none; }
.form-field.has-error input, .form-field.has-error textarea { border-color: #D33; }
.form-field.has-error .form-field__error { display: block; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-container { background: #fff; padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.form-status { padding: 1rem; border-radius: var(--radius-sm); margin-bottom: var(--space-4); display: none; }
.form-status--success { background: var(--color-primary-50); color: var(--color-primary-dark); display: block; }
.form-status--error { background: #FDEBEB; color: #A62929; display: block; }

/* ---------- Contact grid ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--space-8); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: var(--space-5); }
.contact-info__item { display: flex; gap: var(--space-4); align-items: flex-start; }
.contact-info__icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: var(--color-primary-50); color: var(--color-primary); display: flex; align-items: center; justify-content: center; }
.contact-info__item h4 { margin-bottom: .25rem; font-size: var(--fs-lg); }
.contact-info__item p, .contact-info__item a { color: var(--color-text-muted); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-navy);
  background-image: url("../images/footer-bg.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #C8D4E4;
  font-size: var(--fs-sm);
  overflow: visible;
  position: relative;
  padding-top: 120px;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 25, 47, 0.88);
  z-index: 0;
  pointer-events: none;
}
.site-footer > * {
  position: relative;
  z-index: 1;
}


/* Footer CTA Banner — straddles main content / footer boundary */
.footer-cta {
    margin: 0 auto;
    position: relative;
    z-index: 10;
    transform: translateY(50%);
    overflow: visible;
    max-width: 1330px;
    border-radius: 20px;
    padding: 10px;
}
.footer-cta__green {
    background-color: transparent;
    background-image: linear-gradient(90deg, #4AAB3D 16.31%, #0E7800 80.62%);
    border-radius: 20px;
    overflow: visible;
    position: relative;
    padding: 10px;
}

.footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    border: 3px dotted #FFFFFF;
    border-radius: 20px;
    padding: 10px;
}
.footer-cta__text {
  flex: 0 0 50%;
  padding: 53px 0 61px 60px;
  position: relative;
  z-index: 3;
}
.footer-cta__text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.6px;
  margin: 0;
  max-width: 499px;
}
.footer-cta__visual {
  flex: 0 0 31%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
  bottom: -22px;
}
.footer-cta__person {
  position: absolute;
  bottom: -1px;
  height: 305px;
  width: auto;
  max-width: none;
  pointer-events: none;
}
.footer-cta__person--man {
  right: 45%;
  z-index: 2;
}
.footer-cta__person--lady {
  left: 42%;
  z-index: 1;
}
.footer-cta__phone {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  margin-left: 100px;
}
.footer-cta__phone-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #003973;
  color: #fff;
  padding: 13px 28px 12px 13px;
  border-radius: 200px;
  text-decoration: none;
  transition: all 0.25s linear;
}
.footer-cta__phone-link:hover {
  opacity: 0.9;
  color: #fff;
}
.footer-cta__phone-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #86bb46 !important;
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  align-items: normal;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 28px;
}
.footer-cta__phone-detail {
  display: flex;
  flex-direction: column-reverse;
}
.footer-cta__phone-label {
  font-size: 15px;
  letter-spacing: -0.3px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}
.footer-cta__phone-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.32px;
  color: #fff;
  white-space: nowrap;
}

/* Main footer grid */
.site-footer > .container {
  max-width: 1340px;
  padding-left: clamp(28px, 4vw, 64px);
  padding-right: clamp(28px, 4vw, 64px);
  padding-block: var(--space-8) var(--space-5);
}
.site-footer__grid {
  display: grid;
  grid-template-columns:
    minmax(230px, 1.1fr)
    minmax(130px, 0.62fr)
    minmax(270px, 1.2fr)
    minmax(190px, 0.9fr)
    minmax(190px, 0.9fr);
  column-gap: clamp(34px, 4vw, 58px);
  row-gap: var(--space-6);
  align-items: start;
}
.site-footer h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: var(--fs-base);
  font-weight: 700;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .6rem; }
.site-footer a { color: #C8D4E4; transition: color 0.25s; }
.site-footer a:hover { color: var(--color-primary); }

/* Brand column */
.site-footer__col--brand .footer-logo img {
  max-height: 70px;
  width: auto;
  margin-bottom: var(--space-4);
}
.footer-contact-box { margin-bottom: var(--space-4); }
.footer-contact-box__link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: #fff;
}
.footer-contact-box__link:hover { color: var(--color-primary); }
.footer-contact-box__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.footer-contact-box__label {
  display: block;
  font-size: var(--fs-xs);
  color: #8FA3B8;
}
.footer-contact-box__number {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: #fff;
}

.footer-trust {
  margin: 0 0 var(--space-4);
  color: #C8D4E4;
  font-size: 14px;
  line-height: 1.5;
}

/* Social links */
.social-links { display: flex; gap: var(--space-3); margin-top: var(--space-4); }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
  transition: background 0.3s, transform 0.3s;
}
.social-links a:hover { background: var(--color-primary); transform: translateY(-2px); }

/* Contact list with icons */
.footer-contact-list li a,
.footer-contact-list__static {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  line-height: 1.5;
  min-width: 0;
}
.footer-contact-list li a span,
.footer-contact-list__static span {
  min-width: 0;
}
.footer-contact-list a[href^="mailto:"] span {
  overflow-wrap: anywhere;
}
.footer-contact-list li svg,
.footer-contact-list li i {
  flex-shrink: 0;
  margin-top: 3px;
  color: #86BB46;
}
.footer-contact-list__static {
  color: #C8D4E4;
}

/* Newsletter column */
.footer-newsletter__desc {
  color: #8FA3B8;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: -0.34px;
  max-width: 302px;
  margin-bottom: 31px;
}
.footer-newsletter__field {
  position: relative;
  max-width: 350px;
}
.footer-newsletter__field input {
  width: 100%;
  background: transparent;
  border: 1px solid #5c6972;
  border-radius: 30px;
  padding: 0 60px 0 21px;
  line-height: 48px;
  height: 50px;
  color: #b0b6bc;
  font-size: 12px;
  outline: none;
  transition: border-color 0.3s;
}
.footer-newsletter__field input:focus { border-color: var(--color-primary); }
.footer-newsletter__field input::placeholder { color: #b0b6bc; }
.footer-newsletter__field button {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
}
.footer-newsletter__field button i { transition: transform 0.25s ease; }
.footer-newsletter__field button:hover {
  background: #fff;
  color: var(--color-primary);
}
.footer-newsletter__field button:hover i { transform: rotate(45deg); }

/* Bottom bar */
.site-footer__bottom {
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
}
.site-footer__bottom p { margin: 0; }
.site-footer__bottom a { color: #C8D4E4; }
.site-footer__bottom a:hover { color: var(--color-primary); }
.footer-legal { display: flex; gap: var(--space-5); list-style: none; padding: 0; margin: 0; }

/* Footer responsive */
@media (max-width: 1399px) {
  .footer-cta__text { padding-left: 30px; }
  .footer-cta__phone { margin-left: 70px; }
}
@media (max-width: 1100px) {
  .site-footer__grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer__col--brand { grid-column: 1 / -1; }
  .site-footer__col--newsletter { grid-column: 1 / -1; }
  .footer-cta__text { flex: 0 0 45%; }
  .footer-cta__phone { margin-left: 40px; }
}
@media (max-width: 991px) {
  .footer-cta__text p { font-size: 24px; }
  .footer-cta__text { padding: 40px 0 40px 30px; }
  .footer-cta__person { max-width: 140px; }
  .footer-cta__phone { margin-left: 20px; }
  .footer-cta__phone-link { padding: 10px 20px 10px 10px; }
}
@media (max-width: 768px) {
  .footer-cta__inner { flex-direction: column; text-align: center; }
  .footer-cta__text { flex: none; width: 100%; padding: 30px 20px 20px; }
  .footer-cta__text p { font-size: 22px; max-width: 100%; }
  .footer-cta__visual { min-height: 180px; width: 100%; position: relative; }
  .footer-cta__person--man { left: 25%; }
  .footer-cta__person--lady { left: 45%; }
  .footer-cta__phone { margin-left: 0; margin-bottom: 20px; }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__col--brand { grid-column: 1 / -1; }
  .site-footer__col--newsletter { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .site-footer__grid { grid-template-columns: 1fr; }
  .footer-cta__person { display: none; }
  .footer-cta__visual { min-height: auto; display: none; }
  .footer-cta__text p { font-size: 20px; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

/* ---------- Reveal animation — always visible, gently animates in when scrolled to ---------- */
.reveal { opacity: 1; transform: none; transition: opacity 600ms ease, transform 600ms cubic-bezier(.4,0,.2,1); }
.reveal.reveal--pending { opacity: 0; transform: translateY(24px); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--pending { opacity: 1 !important; transform: none !important; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .partner-marquee__list { animation: none; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: var(--space-3); } .mt-2 { margin-top: var(--space-5); } .mt-3 { margin-top: var(--space-7); }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: var(--space-3); } .mb-2 { margin-bottom: var(--space-5); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* Hero stats / old hero classes (kept for page hero compatibility) */
.hero__stats { display: flex; gap: var(--space-6); flex-wrap: wrap; }
.hero__stat strong { display: block; font-size: var(--fs-3xl); color: var(--color-navy); line-height: 1; margin-bottom: .25rem; }
.hero__stat span { font-size: var(--fs-sm); color: var(--color-text-muted); }

/* Stat band */
.stats-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--space-5); text-align: center; }
.stat-item strong { display: block; font-size: clamp(2rem, 4vw, 3rem); color: var(--color-primary); line-height: 1; margin-bottom: .3rem; }
.stat-item span { font-size: var(--fs-sm); color: var(--color-text-muted); }
.section--navy .stat-item span { color: #BCCBDE; }
.section--navy .stat-item strong { color: var(--color-primary); }

/* Logo cloud */
.logo-cloud { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--space-6); }
.logo-cloud img { max-height: 56px; width: auto; opacity: .8; filter: grayscale(.2); transition: opacity var(--transition), filter var(--transition); }
.logo-cloud img:hover { opacity: 1; filter: none; }

/* CTA band (on internal pages) */
.cta-band { background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%); color: #fff; border-radius: var(--radius-lg); padding: var(--space-8); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #C8D4E4; font-size: var(--fs-lg); max-width: 60ch; margin-inline: auto; }
.cta-band__actions { display: inline-flex; gap: var(--space-3); flex-wrap: wrap; justify-content: center; margin-top: var(--space-5); }

/* ---------- About page extras ---------- */
.marquee-band {
  background: var(--color-primary); color: var(--color-navy);
  overflow: hidden; padding: var(--space-4) 0; font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.5rem); letter-spacing: .12em; text-transform: uppercase;
}
.marquee-band__track {
  display: flex; gap: var(--space-5); align-items: center;
  width: max-content; animation: marquee 20s linear infinite;
}
.marquee-dot { color: var(--color-navy); font-size: 1.6rem; }

.benefits-grid {
  list-style: none; padding: 0; margin: var(--space-4) 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem 1.2rem;
}
.benefits-grid li {
  position: relative; padding-left: 1.75rem;
}
.benefits-grid li::before {
  content: ''; position: absolute; left: 0; top: .35rem; width: 18px; height: 18px;
  background: var(--color-primary) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/70% no-repeat;
  border-radius: 50%;
}

.awards-section .awards-badges {
  display: flex; gap: var(--space-5); align-items: center; justify-content: center;
  flex-wrap: wrap;
}
.awards-section .awards-badges img {
  max-width: 220px; height: auto; border-radius: 50%; box-shadow: var(--shadow-md);
  background: #fff; padding: 1rem;
}
.text-primary { color: var(--color-primary); }

.values-section { background: var(--color-navy); color: #EAF2FA; }
.values-section h2 { color: #fff; }
.values-section .feature-split__body p { color: #C8D4E4; }
.values-section .value-list { list-style: none; padding: 0; }
.values-section .value-list li {
  padding: .6rem 0 .6rem 2rem; position: relative; border-bottom: 1px solid rgba(255,255,255,.08);
  color: #fff;
}
.values-section .value-list li::before {
  content: ''; position: absolute; left: 0; top: .85rem; width: 18px; height: 18px;
  background: var(--color-primary) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/70% no-repeat;
  border-radius: 50%;
}

/* ---------- YouTube video wrapper ---------- */
.video-section { background: transparent; }
.video-wrapper {
  position: relative; width: 100%; margin: 0 auto;
  aspect-ratio: 16 / 9; overflow: hidden;
  background: #000;
}
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-list details {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: 1rem 1.25rem; margin-bottom: .75rem; transition: border-color var(--transition);
}
.faq-list details[open] { border-color: var(--color-primary); }
.faq-list summary {
  font-weight: 600; cursor: pointer; padding-right: 1.5rem;
  list-style: none; position: relative; color: var(--color-navy);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--color-primary); transition: transform var(--transition);
  line-height: 1;
}
.faq-list details[open] summary::after { content: '\2212'; }
.faq-list p { padding-top: .75rem; color: var(--color-text-muted); margin: 0; }

/* ---------- Numbered cards ---------- */
.numbered-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: var(--space-6); position: relative; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.numbered-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-primary); }
.numbered-card__num {
  position: absolute; top: -16px; left: var(--space-5);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(126,197,62,.4);
}
.numbered-card h3 { font-size: var(--fs-lg); margin-top: var(--space-3); margin-bottom: var(--space-3); }
.numbered-card p { color: var(--color-text-muted); margin: 0; font-size: var(--fs-sm); }

/* ---------- Final partners section ---------- */
.partners-final {
  padding-block: var(--space-8); background: #fff;
  border-top: 1px solid var(--color-border);
}
.partners-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-6); align-items: center; justify-items: center;
  max-width: 1000px; margin: 0 auto;
}
.partners-grid img { max-height: 80px; width: auto; opacity: .85; transition: opacity var(--transition); }
.partners-grid img:hover { opacity: 1; }

/* ---------- Day/Night Energy Scroller ---------- */
.daynight-section {
  background: #0a1628;
  padding: var(--space-8) 0;
  overflow: hidden;
}

/* Tabs row */
.daynight-tabs {
  display: flex;
  gap: 0;
  margin-bottom: var(--space-7);
  border-radius: 12px;
  overflow: hidden;
}

.daynight-tab {
  flex: 1;
  padding: var(--space-6) var(--space-5);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  transition: background 0.35s, transform 0.25s;
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.daynight-tab:last-child { border-right: none; }

.daynight-tab::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 3px;
  background: var(--color-primary);
  border-radius: 3px 3px 0 0;
  transition: width 0.35s ease;
}

.daynight-tab:hover,
.daynight-tab.active {
  background: rgba(134,187,70,0.12);
}
.daynight-tab:hover::after,
.daynight-tab.active::after {
  width: 60%;
}

.daynight-tab__title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: #fff;
  margin: 0 0 var(--space-2);
  line-height: 1.3;
}

.daynight-tab__desc {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.5;
  transition: color 0.3s;
}
.daynight-tab:hover .daynight-tab__desc,
.daynight-tab.active .daynight-tab__desc {
  color: rgba(255,255,255,0.85);
}

/* Panels row */
.daynight-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.daynight-panel {
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.daynight-panel__header {
  padding: var(--space-5) var(--space-6);
}

.daynight-panel__title {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.daynight-panel--day .daynight-panel__title { color: #FFD700; }
.daynight-panel--night .daynight-panel__title { color: #7FBAFF; }

.daynight-panel__title span {
  font-size: var(--fs-lg);
  font-weight: 400;
  color: rgba(255,255,255,0.55);
}

.daynight-panel__media {
  position: relative;
  width: 100%;
  aspect-ratio: 600/338;
  background: #060e1a;
}
.daynight-panel__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

/* Mobile */
@media (max-width: 768px) {
  .daynight-tabs {
    flex-direction: column;
    border-radius: 10px;
  }
  .daynight-tab {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: var(--space-4) var(--space-5);
  }
  .daynight-tab:last-child { border-bottom: none; }
  .daynight-tab__title { font-size: var(--fs-lg); }
  .daynight-tab::after { display: none; }
  .daynight-tab.active { border-left: 3px solid var(--color-primary); }

  .daynight-panels {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .daynight-panel__title { font-size: var(--fs-xl); flex-direction: column; gap: var(--space-1); }
}

/* ============================================================
   COMPREHENSIVE RESPONSIVE — all devices
   ============================================================ */

/* ---------- 1200px: large tablets / small desktops ---------- */
@media (max-width: 1200px) {
  .container { padding-left: 60px; padding-right: 60px; }
  .services-header__center p { padding: 20px 20px 0 20px; }
}

/* ---------- 991px: tablets ---------- */
@media (max-width: 991px) {
  .container { padding-left: 30px; padding-right: 30px; }

  /* Services slider — disable slider, stack cards */
  .services-slider { overflow: hidden; }
  .services-slider__track {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    transform: none !important;
    transition: none !important;
  }
  .service-card { width: auto !important; flex-shrink: 1; }
  .service-card[aria-hidden="true"] { display: none; }
  .services-nav { display: none; }

  /* About section */
  .about-grid__img-large { margin-top: 0; }

  /* Process */
  .process-heading { flex-direction: column; gap: 20px; }
  .process-tab { max-width: 100%; line-height: 54px; font-size: 16px; padding-inline: 36px; }
  .process-panel__title { font-size: 24px; }
  .process-panel__desc { font-size: 16px; }

  /* CTA */
  .cta-grid__left h2 { font-size: 36px; }
  .cta-grid__left p { font-size: 16px; }
  .cta-phone__text { font-size: 20px; }
  .cta-form__title { font-size: 20px; }

  /* Testimonials */
  .testimonial-split__content h2 { font-size: 36px; }
  .testimonial-slide__text { font-size: 16px; }

  /* Footer CTA */
  .footer-cta__text p { font-size: 24px; }
  .footer-cta__text { padding: 40px 0 40px 40px; }
}

/* ---------- 768px: large phones / small tablets ---------- */
@media (max-width: 768px) {
  .container { padding-left: 20px; padding-right: 20px; }

  /* Hero */
  .hero-slider {
    height: clamp(500px, 72svh, 620px);
    min-height: 0;
  }
  .hero-slide__content {
    max-width: 100%;
    padding: 92px 28px 84px;
  }
  .hero-slide__content h1,
  .hero-slide__content h2 {
    font-size: clamp(38px, 8.5vw, 56px);
    line-height: 1.06;
    max-width: 12ch;
    margin-bottom: 20px;
  }
  .hero-slide__content p {
    font-size: 18px;
    line-height: 1.45;
    max-width: 24ch;
    margin-bottom: 24px;
  }
  .hero-slide__content .hero-eyebrow { margin-bottom: 18px; }
  .hero-cta .btn { padding: 0 24px; font-size: 15px; line-height: 48px; }
  .hero-slider__controls { bottom: 28px; }

  /* Services */
  .services-header { flex-direction: column; align-items: flex-start; gap: 22px; }
  .services-slider__track { grid-template-columns: 1fr !important; }
  .services-header__center p { padding: 10px 0 0; font-size: 16px; }
  .services-header__right { justify-content: flex-start; }
  .services-nav__btn { --size: 48px; }
  .service-card__content { padding: 40px 20px; }
  .service-card__title { font-size: 20px; }
  .service-card__excerpt { font-size: 15px; }
  .service-card__btn { height: 56px; }
  .service-card__btn a { font-size: 16px; }

  /* About */
  .about-grid__heading h2 { font-size: 28px; }
  .about-grid__img-small img { height: 200px; }
  .about-grid__text p { font-size: 15px; }

  /* Partner marquee */
  .partner-marquee__label { margin-bottom: 24px; }
  .partner-marquee__card img { height: 35px; max-width: 100px; }

  /* Process */
  .process-heading h2 { font-size: 28px; }
  .process-images { min-height: 350px; border-radius: 120px; }
  .process-cta .btn { font-size: 16px; }

  /* CTA */
  .cta-grid__left h2 { font-size: 28px; }
  .cta-form { padding: 24px; }
  .cta-form__title { font-size: 18px; }
  .cta-phone__text { font-size: 18px; }

  /* Testimonials */
  .testimonial-split__content h2 { font-size: 28px; margin-bottom: 24px; }
  .testimonial-split__content { padding: 30px 20px; }
  .testimonial-slide__info h3 { font-size: 17px; }

  /* Case studies */
  .case-card__link { aspect-ratio: 4/3; }

  /* Section heads */
  .section__head { margin-bottom: var(--space-5); }
  .section__head p { font-size: var(--fs-base); }

  /* Footer CTA */
  .footer-cta { padding: 6px; }
  .footer-cta__inner { flex-direction: column; text-align: center; gap: 16px; }
  .footer-cta__text { flex: none; width: 100%; padding: 24px 20px 16px; }
  .footer-cta__text p { font-size: 20px; max-width: 100%; }
  .footer-cta__visual { min-height: 160px; width: 100%; position: relative; }
  .footer-cta__person--man { left: 25%; }
  .footer-cta__person--lady { left: 50%; }
  .footer-cta__phone { margin-left: 0; margin-bottom: 16px; }

  /* Footer grid */
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__col--brand { grid-column: 1 / -1; }
  .site-footer__col--newsletter { grid-column: 1 / -1; }
  .site-footer__bottom { flex-direction: column; text-align: center; gap: var(--space-3); }
  .footer-legal { justify-content: center; }

  /* Stats / awards */
  .stats-band { padding: var(--space-5) 0; }
  .awards-section .awards-badges img { max-width: 150px; }
}

/* ---------- 575px: phones ---------- */
@media (max-width: 575px) {
  .container { padding-left: 16px; padding-right: 16px; }

  /* Header logo */
  .header-logo-col { min-width: 98px; max-width: 148px; padding: 12px 12px; }
  .site-header .site-logo__sticky,
  .site-header.is-sticky .site-logo__sticky { max-height: 38px; }
  .nav-toggle { width: 36px; height: 36px; }

  /* Hero */
  .hero-slider {
    height: clamp(460px, 72svh, 560px);
    min-height: 0;
  }
  .hero-slide__content { padding: 78px 18px 72px; }
  .hero-slide__content h1,
  .hero-slide__content h2 { font-size: 30px; line-height: 1.08; margin-bottom: 18px; max-width: 11ch; }
  .hero-slide__content p { font-size: 16px; margin-bottom: 20px; max-width: 22ch; }
  .hero-slide__content .hero-eyebrow { font-size: 12px; padding: 4px 12px; margin-bottom: 12px; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { padding: 0 18px; font-size: 14px; line-height: 44px; }

  /* Services */
  .services-header__left h2 { font-size: 26px; }
  .service-card__icon { --size: 74px; }
  .service-card__icon svg { width: 44px; height: 44px; }

  /* About */
  .about-grid__heading h2 { font-size: 26px; }
  .about-grid__img-small img { height: 180px; }

  /* Process */
  .process-heading h2 { font-size: 26px; }
  .process-tab { font-size: 15px; line-height: 50px; padding-inline: 30px; }
  .process-images { min-height: 300px; border-radius: 100px; }
  .process-panel__title { font-size: 22px; }
  .process-panel__desc { font-size: 15px; }

  /* CTA */
  .cta-grid__left h2 { font-size: 24px; }
  .cta-grid__left p { font-size: 15px; }
  .contact-form__row { flex-direction: column; gap: 16px; }

  /* Testimonials */
  .testimonial-split__image { height: 220px; }
  .testimonial-split__content h2 { font-size: 24px; }
  .testimonial-slide__text { font-size: 15px; }

  /* Day/Night */
  .daynight-tab { padding: var(--space-3) var(--space-4); }
  .daynight-tab__title { font-size: var(--fs-base); }
  .daynight-tab__desc { font-size: var(--fs-xs); }
  .daynight-panel__header { padding: var(--space-4); }
  .daynight-panel__title { font-size: var(--fs-lg); }

  /* Case studies */
  .case-grid { grid-template-columns: 1fr; gap: 16px; }
  .case-card__link { aspect-ratio: 3/2; }

  /* Footer CTA */
  .footer-cta__person { display: none; }
  .footer-cta__visual { display: none; }
  .footer-cta__text p { font-size: 18px; }
  .footer-cta__phone-link { padding: 10px 20px 10px 10px; gap: 10px; }
  .footer-cta__phone-icon { width: 38px; height: 38px; font-size: 22px; }
  .footer-cta__phone-number { font-size: 14px; }
  .footer-cta__phone-label { font-size: 13px; }

  /* Footer grid */
  .site-footer__grid { grid-template-columns: 1fr; }

  /* Partners */
  .partner-marquee__label-text { font-size: 14px; }
  .partner-marquee__card { padding: 12px; }
  .partner-marquee__card img { height: 30px; max-width: 80px; }

  /* Benefits grid */
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ---------- 375px: smallest phones ---------- */
@media (max-width: 375px) {
  .container { padding-left: 12px; padding-right: 12px; }

  /* Header logo */
  .header-logo-col { min-width: 80px; max-width: 130px; padding: 6px 8px; }
  .site-header .site-logo__sticky,
  .site-header.is-sticky .site-logo__sticky { max-height: 34px; }
  .nav-toggle { width: 28px; height: 28px; }

  /* Hero */
  .hero-slider {
    height: clamp(420px, 72svh, 520px);
    min-height: 0;
  }
  .hero-slide__content { padding: 70px 14px 64px; }
  .hero-slide__content h1,
  .hero-slide__content h2 { font-size: 26px; line-height: 1.08; }
  .hero-slide__content p { font-size: 14px; }
  .hero-cta { flex-direction: column; width: 100%; max-width: 260px; }
  .hero-cta .btn { width: 100%; text-align: center; }

  /* Services */
  .services-header__left h2 { font-size: 22px; }
  .service-card__content { padding: 36px 16px; }
  .service-card__title { font-size: 18px; }
  .service-card__excerpt { font-size: 14px; }

  /* About */
  .about-grid__heading h2 { font-size: 22px; }
  .about-grid__text p { font-size: 14px; }

  /* Process */
  .process-heading h2 { font-size: 22px; }
  .process-tab { font-size: 14px; line-height: 46px; padding-inline: 26px; }
  .process-panel__title { font-size: 20px; }
  .process-panel__desc { font-size: 14px; }
  .process-badge img { width: 60px; }

  /* CTA */
  .cta-grid__left h2 { font-size: 22px; }
  .cta-form { padding: 20px 16px; }
  .cta-form__title { font-size: 17px; }

  /* Testimonials */
  .testimonial-split__content h2 { font-size: 22px; }
  .testimonial-slide__text { font-size: 14px; }

  /* Day/Night */
  .daynight-tab__desc { display: none; }
  .daynight-panel__title { font-size: var(--fs-base); }

  /* Footer CTA */
  .footer-cta__text p { font-size: 16px; }
  .footer-cta { padding: 4px; }

  /* Footer */
  .footer-contact-box__number { font-size: 18px; }
  .footer-newsletter__field input { font-size: 14px; }
}

/* Print */
@media print {
  .site-header, .site-footer, .nav-toggle, .header-nav__cta, .btn, .hero-slider__controls { display: none !important; }
  body { color: #000; background: #fff; }
}


.container.header-wrap {
    max-width: 1440px;
    padding-left: clamp(16px, 2vw, 28px);
    padding-right: clamp(16px, 2vw, 28px);
}

header#site-header {
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: #FFFFFF66;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 0px 0px 0px 0px;
}

.hero-cta .btn--primary:hover {
    background: var(--color-primary-dark);
    border-color: #002244 !important;
    background: #002244 !important;
    color: #fff !important;
    transform: translateY(-2px);
}

i.flaticon.flaticon-customer-service {
    animation: ring 3s ease infinite;
}

/* ---------- Scroll-to-top button ---------- */
.pxl-scroll-top {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 20px;
  right: 40px;
  border-radius: 50%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s, bottom .3s;
}
@media (max-width: 991px) {
  .pxl-scroll-top { right: 25px; }
}
.pxl-scroll-top::before {
  content: '';
  position: absolute;
  inset: 2px;
  z-index: -1;
  background: var(--color-primary);
  border-radius: 50%;
}
.pxl-scroll-top .pxl-arrow-top {
  transition: inherit;
  animation: pxl_scroll_top_effect 3s ease-in-out infinite;
}
.pxl-scroll-top .pxl-scroll-progress-circle {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.pxl-scroll-top .pxl-scroll-progress-circle path {
  fill: none;
  stroke: var(--color-navy, #002244);
  stroke-width: 4;
  box-sizing: border-box;
  transition: stroke-dashoffset 200ms linear;
}
.pxl-scroll-top.pxl-on {
  bottom: 40px;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  .pxl-scroll-top.pxl-on { bottom: 25px; }
}
@keyframes pxl_scroll_top_effect {
  0%, 100% { transform: translateY(3px); }
  50% { transform: translateY(-3px); }
}

/* ============================================================
   Global heading reset — plain bold Inter for ALL page titles
   and subtitles across every page. Overrides legacy Montserrat /
   Roboto Slab / Noto Sans declarations in main.css, style.css,
   and inline <style> blocks on individual pages.
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 800 !important;
  font-style: normal !important;
  text-shadow: none !important;
  text-transform: none !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
}

/* Page titles (h1) — always white. H1 only ever appears over a hero
   image / dark band on this site, so white is the correct default. */
h1 {
  color: #ffffff !important;
}

/* ============================================================
   Inner-page hero treatment — mirrors the homepage hero look:
     • contrast(1.5) on the background image layer (sharper, deeper colour)
     • bottom-up navy gradient overlay
   Each inner-page hero follows the `.{prefix}-hero__bg` /
   `.{prefix}-hero__overlay` BEM pattern, so we target them all
   in one place rather than touching every page's inline <style> block.
   ============================================================ */
.ev-hero__bg, .sb-hero__bg, .sp-hero__bg, .au-hero__bg,
.sv-hero__bg, .si-hero__bg, .hw-hero__bg, .lg-hero__bg,
.cu-hero__bg, .gq-hero__bg {
  filter: contrast(1.5);
}

.ev-hero__overlay, .sb-hero__overlay, .sp-hero__overlay, .au-hero__overlay,
.sv-hero__overlay, .si-hero__overlay, .hw-hero__overlay, .lg-hero__overlay,
.cu-hero__overlay, .gq-hero__overlay {
  background: linear-gradient(
    1deg,
    rgba(0, 209, 255, 0) 0%,
    rgba(4, 51, 82, 0.8) 100%
  ) !important;
}

/* ============================================================
   Local SEO service-area pages and contextual internal links
   ============================================================ */
.loc-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background: #082033;
}

.loc-hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--loc-hero-bg, url("/assets/images/solar-panels-hero2.jpg"));
  background-position: center;
  background-size: cover;
  filter: contrast(1.25) saturate(1.05);
}

.loc-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 34, 68, 0.9) 0%, rgba(0, 34, 68, 0.42) 54%, rgba(0, 34, 68, 0.72) 100%),
    radial-gradient(circle at 78% 18%, rgba(126, 197, 62, 0.22), transparent 34%);
}

.loc-hero__inner {
  position: relative;
  z-index: 1;
  padding: 132px 20px 82px;
}

.loc-hero__eyebrow,
.service-area-band__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--color-primary, #7EC53E);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.loc-hero h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 68px);
}

.loc-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.loc-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.loc-proof li {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 32, 51, 0.62);
  font-size: 14px;
  font-weight: 800;
}

.loc-content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(32px, 5vw, 74px);
  align-items: start;
}

.loc-content p,
.loc-content li {
  font-size: 18px;
  line-height: 1.7;
}

.loc-aside {
  position: sticky;
  top: 110px;
  padding: 28px;
  border-left: 5px solid var(--color-primary, #7EC53E);
  background: #f5f8f4;
}

.loc-aside h2 {
  margin-bottom: 14px;
  font-size: 24px;
}

.loc-image {
  margin: 28px 0;
}

.loc-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.loc-image--brand-logo {
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid rgba(0, 34, 68, 0.12);
  background: #fff;
}

.loc-image--brand-logo img {
  width: min(520px, 100%);
  max-height: 180px;
  margin-inline: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.loc-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.local-seo-copy {
  background: #fff;
}

.seo-copy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.seo-copy-panel {
  padding: 26px;
  border: 1px solid rgba(0, 34, 68, 0.12);
  background: #f5f8f4;
}

.seo-copy-panel h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.seo-copy-panel p,
.local-seo-copy p,
.local-seo-copy li {
  font-size: 18px;
  line-height: 1.7;
}

.seo-copy-list {
  margin: 24px 0 0;
  padding-left: 22px;
}

.loc-service {
  min-height: 100%;
  padding: 26px;
  border: 1px solid rgba(0, 34, 68, 0.12);
  background: #fff;
}

.loc-service h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.loc-faq {
  max-width: 920px;
}

.loc-faq details,
.service-area-band {
  border-top: 1px solid rgba(0, 34, 68, 0.14);
}

.loc-faq details:last-child {
  border-bottom: 1px solid rgba(0, 34, 68, 0.14);
}

.loc-faq summary {
  cursor: pointer;
  padding: 20px 0;
  color: #082033;
  font-weight: 800;
}

.loc-faq p {
  margin: 0 0 22px;
  color: var(--color-text-muted, #5A5A5A);
}

.service-area-band {
  padding: clamp(50px, 7vw, 82px) 0;
  background: #f5f8f4;
}

.service-area-band__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.service-area-band h2 {
  margin-bottom: 16px;
  color: #082033;
  font-size: clamp(30px, 4vw, 48px);
}

.service-area-band p {
  color: var(--color-text-muted, #5A5A5A);
  font-size: 18px;
  line-height: 1.65;
}

.service-area-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-area-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 13px 16px;
  border: 1px solid rgba(0, 34, 68, 0.12);
  background: #fff;
  color: #082033;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.service-area-links a::after {
  content: ">";
  color: var(--color-primary-dark, #4AAB3D);
  font-weight: 900;
}

.service-area-links a:hover {
  border-color: var(--color-primary, #7EC53E);
  color: var(--color-primary-dark, #4AAB3D);
  transform: translateY(-2px);
}

.loc-cta {
  background: #082033;
  color: #fff;
}

.loc-cta h2,
.loc-cta p {
  color: #fff;
}

@media (max-width: 900px) {
  .loc-content,
  .service-area-band__layout,
  .loc-services,
  .seo-copy-grid {
    grid-template-columns: 1fr;
  }

  .loc-aside {
    position: static;
  }
}

@media (max-width: 620px) {
  .loc-hero {
    min-height: 360px;
  }

  .loc-hero__inner {
    padding: 104px 18px 56px;
  }

  .service-area-links {
    grid-template-columns: 1fr;
  }
}
