:root {
  --navy: #101411;
  --blue: #1a211d;
  --brand-green: #00d83a;
  --brand-green-bright: #00f040;
  --brand-green-deep: #00c738;
  --teal: var(--brand-green-deep);
  --amber: var(--brand-green-bright);
  --gold: var(--brand-green);
  --white: #ffffff;
  --mist: #f3f6f3;
  --line: #d8dfd9;
  --text: #202823;
  --muted: #5e6861;
  --charcoal: #111312;
  --metal: #9ca19d;
  --shadow: 0 18px 45px rgba(16, 20, 17, 0.14);
  --header-stack-height: 126px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  background: #101411;
}

body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: clip;
  display: flex;
  flex-direction: column;
}

@supports not (overflow: clip) {
  body {
    overflow-x: hidden;
  }
}

main {
  flex: 1 0 auto;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.top-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 40px;
  padding: 6px clamp(18px, 4vw, 64px);
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 216, 58, 0.16);
  box-shadow: 0 8px 26px rgba(16, 20, 17, 0.08);
  transition: transform 260ms ease, opacity 260ms ease;
}

.top-contact,
.top-socials,
.footer-socials {
  display: flex;
  align-items: center;
}

.top-contact {
  gap: 9px;
  min-height: 30px;
  color: #18211b;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.top-contact:hover,
.top-contact:focus {
  color: var(--brand-green-deep);
}

.call-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: #07140b;
  background: var(--brand-green);
  box-shadow: 0 8px 18px rgba(0, 216, 58, 0.25);
}

.call-icon .fa-solid {
  width: 12px;
  height: 12px;
}

.top-socials,
.footer-socials {
  gap: 8px;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: #17211b;
  background: #f5f8f5;
  border: 1px solid rgba(16, 20, 17, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.social-link .fa-brands {
  width: 14px;
  height: 14px;
}

.social-link:hover,
.social-link:focus {
  color: #061109;
  background: var(--brand-green);
  border-color: var(--brand-green);
  box-shadow: 0 10px 22px rgba(0, 216, 58, 0.22);
  transform: translateY(-2px);
}

body.has-scrolled .top-header {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 40px;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(18px, 4vw, 64px);
  color: var(--white);
  background: rgba(17, 19, 18, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 216, 58, 0.34);
  transition: top 260ms ease, background 260ms ease;
}

body.has-scrolled .site-header {
  top: 0;
  background: rgba(17, 19, 18, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.site-logo {
  display: block;
  width: clamp(96px, 10vw, 138px);
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), var(--amber));
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.7rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 32px);
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav a[aria-current="page"] {
  position: relative;
}

.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
}

.header-cta,
.primary-button,
.secondary-button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  max-width: 100%;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
}

.header-cta,
.primary-button,
.contact-form button {
  color: var(--charcoal);
  background: var(--gold);
  border: 0;
  box-shadow: 0 10px 26px rgba(0, 216, 58, 0.24);
}

.secondary-button {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  height: calc(70vh + var(--header-stack-height));
  min-height: calc(520px + var(--header-stack-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  --hero-offset: 0%;
}

.hero-backgrounds,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-backgrounds {
  z-index: -2;
  display: flex;
  max-width: 100vw;
  transform: translate3d(var(--hero-offset), 0, 0);
  transition: transform 1.35s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

.hero-image {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at center, rgba(17, 19, 18, 0.54), rgba(17, 19, 18, 0.72) 58%, rgba(17, 19, 18, 0.86) 100%),
    linear-gradient(180deg, rgba(17, 19, 18, 0.18), rgba(17, 19, 18, 0.34));
}

.hero-slides {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  padding-top: var(--header-stack-height);
  transform: translate3d(var(--hero-offset), 0, 0);
  transition: transform 1.35s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  min-width: 0;
  max-width: 100vw;
  width: 100%;
  height: 100%;
  display: grid;
  justify-items: center;
  align-items: center;
  pointer-events: none;
}

.hero-slide.is-active {
  pointer-events: auto;
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  min-width: 0;
  margin-inline: auto;
  padding: 34px clamp(20px, 4vw, 48px);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(17, 19, 18, 0.5);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
  overflow-wrap: anywhere;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.34);
  transition: width 0.35s ease, background 0.35s ease;
}

.hero-dots button.is-active {
  width: 54px;
  background: var(--gold);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--amber);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin: 0 auto 16px;
  font-size: clamp(2.05rem, 3.7vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  color: var(--navy);
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 610px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.trust-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(54px, 7vw, 86px) clamp(18px, 5vw, 80px);
  background:
    linear-gradient(135deg, #f8fbfd 0%, #eef5f8 100%);
  border-bottom: 1px solid var(--line);
}

.trust-intro {
  max-width: 470px;
}

.trust-intro h2 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
  line-height: 1.12;
}

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

.trust-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(0, 216, 58, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(16, 20, 17, 0.07);
}

.trust-card span,
.trust-card strong,
.trust-card p {
  display: block;
}

.trust-card span {
  width: fit-content;
  margin-bottom: 22px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(0, 216, 58, 0.08);
  font-size: 0.76rem;
  font-weight: 600;
}

.trust-card strong {
  color: var(--navy);
  margin-bottom: 9px;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.25;
}

.trust-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.section,
.process-section {
  padding: clamp(72px, 9vw, 120px) clamp(18px, 5vw, 80px);
}

.about-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.about-section {
  padding-top: clamp(62px, 7vw, 92px);
  padding-bottom: clamp(62px, 7vw, 92px);
}

.section-copy,
.contact-copy {
  max-width: 720px;
}

.section-copy h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-copy p {
  max-width: 790px;
  font-size: 1rem;
  line-height: 1.7;
}

.section-copy p,
.contact-copy p,
.service-card p,
.process-grid p {
  color: var(--muted);
}

.about-media {
  position: relative;
  min-height: 350px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(16, 20, 17, 0.12);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}

.about-media figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(17, 19, 18, 0.8);
  backdrop-filter: blur(8px);
}

.about-media strong,
.about-media span {
  display: block;
}

.about-media strong {
  margin-bottom: 4px;
  font-size: 0.98rem;
  line-height: 1.25;
}

.about-media span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.45;
}

.values-section {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 7vw, 88px) clamp(18px, 5vw, 80px);
  background: #101411;
  color: var(--white);
  --values-parallax: 0px;
}

.values-section::before {
  content: "";
  position: absolute;
  inset: -16% 0;
  background: url("hero-solar-backup.png") center / cover;
  opacity: 0.32;
  transform: translate3d(0, var(--values-parallax), 0) scale(1.06);
  will-change: transform;
}

.values-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 216, 58, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(16, 20, 17, 0.92), rgba(0, 61, 21, 0.78));
}

.values-intro,
.values-grid {
  position: relative;
  z-index: 1;
}

.values-intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.values-intro h2 {
  color: var(--white);
  margin-bottom: 0;
  font-size: clamp(1.85rem, 2.8vw, 2.85rem);
}

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

.values-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.values-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(0, 216, 58, 0.1);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.values-card h3 {
  color: var(--white);
  font-size: 1.12rem;
}

.values-card p,
.values-card li {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  line-height: 1.58;
}

.values-card p {
  margin-bottom: 0;
}

.values-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.values-card li {
  position: relative;
  padding-left: 18px;
}

.values-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.values-card strong {
  color: var(--white);
}

.services-section {
  background: var(--mist);
}

.services-section {
  padding-top: clamp(62px, 7vw, 92px);
  padding-bottom: clamp(62px, 7vw, 92px);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 30px;
}

.services-section .section-heading {
  max-width: 680px;
}

.services-section .section-heading h2 {
  font-size: clamp(1.8rem, 2.7vw, 2.75rem);
}

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

.service-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 14px 36px rgba(16, 20, 17, 0.12);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 19, 18, 0.08), rgba(17, 19, 18, 0.78)),
    linear-gradient(90deg, rgba(17, 19, 18, 0.62), rgba(17, 19, 18, 0.08));
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.07);
}

.service-card div {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 20px;
}

.service-card h3 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.service-card p {
  max-width: 330px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.5;
}

.services-action {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.service-details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.service-list {
  position: relative;
  overflow: hidden;
  min-height: 255px;
  padding: 24px;
  border: 1px solid rgba(0, 216, 58, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(17, 19, 18, 0.96), rgba(28, 34, 30, 0.94));
  box-shadow: 0 18px 44px rgba(16, 20, 17, 0.14);
}

.service-list::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(156, 161, 157, 0.8));
}

.service-list::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(0, 216, 58, 0.1);
}

.service-list h3,
.service-support h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.02rem;
}

.service-list ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.42;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(0, 216, 58, 0.1);
}

.service-support {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.service-support div {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(0, 216, 58, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 246, 243, 0.98));
  box-shadow: 0 14px 34px rgba(16, 20, 17, 0.08);
}

.service-support div::before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--gold);
}

.service-support p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.process-section {
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(38px, 4.6vw, 58px);
  padding-bottom: clamp(38px, 4.6vw, 58px);
  color: var(--white);
  background: #101411;
  --process-parallax: 0px;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: -14% 0;
  background: url("hero-security-automation.png") center / cover;
  opacity: 0.42;
  transform: translate3d(0, var(--process-parallax), 0) scale(1.06);
  will-change: transform;
}

.process-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 216, 58, 0.22), transparent 30%),
    radial-gradient(circle at 85% 90%, rgba(156, 161, 157, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(17, 19, 18, 0.92), rgba(17, 19, 18, 0.78));
}

.process-top,
.process-grid {
  position: relative;
  z-index: 1;
}

.process-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.process-section .section-heading {
  max-width: 660px;
  margin-bottom: 0;
}

.process-section .section-heading h2 {
  color: var(--white);
  margin-bottom: 0;
  font-size: clamp(1.8rem, 2.7vw, 2.65rem);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.process-grid div {
  position: relative;
  padding: clamp(20px, 2.3vw, 28px);
  background: rgba(17, 19, 18, 0.74);
  backdrop-filter: blur(10px);
}

.process-grid div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(156, 161, 157, 0.9));
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(0, 216, 58, 0.12);
  font-size: 0.92rem;
  font-weight: 600;
}

.process-grid h3 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.process-action {
  display: grid;
  gap: 12px;
  flex: 0 0 auto;
  width: min(280px, 100%);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(17, 19, 18, 0.62);
  backdrop-filter: blur(10px);
}

.process-action span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
}

.process-action .primary-button {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 14px 34px rgba(0, 216, 58, 0.26);
}

.contact-section {
  background: var(--navy);
}

.contact-section h2,
.contact-section .contact-copy p {
  color: var(--white);
}

.contact-section .contact-copy p {
  opacity: 0.78;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  color: var(--white);
  font-weight: 500;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font: inherit;
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  cursor: pointer;
  font: inherit;
}

.site-footer {
  flex-shrink: 0;
  width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(135deg, #0b0d0c 0%, #101411 58%, #003d15 100%);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(160px, 0.65fr) minmax(210px, 0.75fr);
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(46px, 6vw, 72px) clamp(18px, 5vw, 80px);
}

.footer-brand {
  max-width: 440px;
}

.footer-logo {
  color: var(--white);
  margin-bottom: 18px;
}

.footer-logo .site-logo {
  width: min(260px, 100%);
  height: 92px;
}

.footer-brand p {
  margin: 0;
  max-width: 420px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-reg {
  display: inline-block;
  margin-top: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(0, 216, 58, 0.08);
  font-size: 0.82rem;
  font-weight: 600;
}

.footer-socials {
  margin-top: 18px;
}

.footer-socials .social-link {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 216, 58, 0.3);
  box-shadow: none;
}

.footer-socials .social-link:hover,
.footer-socials .social-link:focus {
  color: var(--charcoal);
  background: var(--brand-green);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 80px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.66);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--gold);
  font-weight: 600;
}

.page-hero {
  position: relative;
  min-height: 46vh;
  display: grid;
  align-items: end;
  padding: 130px clamp(18px, 5vw, 80px) 54px;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.page-hero::before {
  background: var(--page-hero-image, url("hero-energy-services.png")) center / cover;
  opacity: 0.42;
}

.services-hero {
  --page-hero-image: url("portfolio/portfolio-02.jpeg");
}

.contact-hero {
  --page-hero-image: url("portfolio/portfolio-21.jpeg");
}

.portfolio-hero {
  --page-hero-image: url("portfolio/portfolio-25.jpeg");
}

.page-hero::after {
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 216, 58, 0.26), transparent 34%),
    linear-gradient(135deg, rgba(16, 20, 17, 0.92), rgba(16, 20, 17, 0.74));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 780px;
}

.page-hero h1 {
  margin-inline: 0;
}

.page-hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.contact-page-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(340px, 1.1fr);
  gap: 22px;
  padding: clamp(62px, 7vw, 92px) clamp(18px, 5vw, 80px);
  background:
    linear-gradient(135deg, #edf2ed 0%, #f8faf8 100%);
}

.contact-info-panel,
.contact-page-form {
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(16, 20, 17, 0.1);
}

.contact-info-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 216, 58, 0.2), transparent 32%),
    linear-gradient(145deg, #101411, #1b211d);
  border: 1px solid rgba(0, 216, 58, 0.18);
}

.contact-info-panel::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(0, 216, 58, 0.12);
}

.contact-info-panel h2 {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
}

.contact-info-panel > p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.74);
}

.contact-info-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-info-list div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.contact-info-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-info-list a,
.contact-info-list p {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.contact-page-form {
  display: grid;
  gap: 16px;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--line);
  background: var(--white);
}

.form-heading {
  margin-bottom: 4px;
}

.form-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
}

.form-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-page-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  background: #fbfcfb;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page-form input::placeholder,
.contact-page-form textarea::placeholder {
  color: rgba(32, 40, 35, 0.52);
  font-weight: 400;
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(0, 216, 58, 0.1);
}

.contact-page-form textarea {
  resize: vertical;
}

.portfolio-section {
  position: relative;
  padding: clamp(62px, 7vw, 92px) clamp(18px, 5vw, 80px);
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 216, 58, 0.12), transparent 30%),
    linear-gradient(135deg, #101411 0%, #171c18 50%, #f3f6f3 50%, #ffffff 100%);
}

.portfolio-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 30px;
}

.portfolio-intro {
  max-width: 760px;
}

.portfolio-intro h2 {
  color: var(--white);
  font-size: clamp(1.85rem, 2.8vw, 2.85rem);
}

.portfolio-intro p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 16px;
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid rgba(0, 216, 58, 0.2);
  border-radius: 8px;
  background: rgba(16, 20, 17, 0.92);
  box-shadow: 0 24px 70px rgba(16, 20, 17, 0.22);
}

.portfolio-grid figure {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  margin: 0;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--charcoal);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.portfolio-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(17, 19, 18, 0.36));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-grid figure:hover::after {
  opacity: 1;
}

.portfolio-grid figure:hover {
  border-color: rgba(0, 216, 58, 0.58);
  transform: translateY(-3px);
}

.portfolio-grid img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-grid figure:hover img {
  transform: scale(1.04);
}

body.scroll-animations-ready [data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 900ms;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

body.scroll-animations-ready [data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

body.scroll-animations-ready [data-aos="fade-up"],
body.scroll-animations-ready [data-aos="rise-strong"] {
  transform: translate3d(0, 64px, 0);
}

body.scroll-animations-ready [data-aos="fade-in"] {
  transform: translate3d(0, 0, 0);
}

body.scroll-animations-ready [data-aos="fade-right"],
body.scroll-animations-ready [data-aos="slide-right-strong"] {
  transform: translate3d(-72px, 0, 0);
}

body.scroll-animations-ready [data-aos="fade-left"],
body.scroll-animations-ready [data-aos="slide-left-strong"] {
  transform: translate3d(72px, 0, 0);
}

body.scroll-animations-ready [data-aos="zoom-in"],
body.scroll-animations-ready [data-aos="zoom-in-strong"] {
  transform: scale(0.9) translate3d(0, 28px, 0);
}

body.scroll-animations-ready [data-aos="card-rise"] {
  transform: translate3d(0, 58px, 0) scale(0.94);
}

body.scroll-animations-ready [data-aos="gallery-pop"] {
  transform: translate3d(0, 46px, 0) scale(0.92);
}

@media (prefers-reduced-motion: reduce) {
  body.scroll-animations-ready [data-aos] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.form-response-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(28px, 6vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 216, 58, 0.18), transparent 34%),
    linear-gradient(145deg, #101411, #18201a);
}

.form-response-card {
  width: min(720px, 100%);
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid rgba(0, 216, 58, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.form-response-card h1 {
  margin-inline: 0;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.form-response-card p,
.response-list li,
.response-summary span {
  color: rgba(255, 255, 255, 0.76);
}

.response-list {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding-left: 20px;
}

.response-summary {
  display: grid;
  gap: 6px;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.response-summary strong {
  color: var(--white);
}

.response-summary p {
  margin: 8px 0 0;
}

.response-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 900px) {
  :root {
    --header-stack-height: 117px;
  }

  .top-header {
    gap: 12px;
    min-height: 40px;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 117px 14px auto 14px;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav a {
    position: relative;
    padding: 17px 18px;
    color: var(--navy);
    border-bottom: 1px solid var(--line);
  }

  .site-nav a[aria-current="page"] {
    color: var(--navy);
    background: rgba(0, 216, 58, 0.08);
  }

  .site-nav a[aria-current="page"]::after {
    display: none;
  }

  .site-nav .nav-contact {
    margin: 10px 12px 12px;
    padding: 14px 18px;
    border: 0;
    border-radius: 8px;
    color: var(--charcoal);
    background: var(--gold);
    text-align: center;
    font-weight: 600;
  }

  body.menu-open .site-nav {
    display: flex;
  }

  body.has-scrolled .site-nav {
    top: 77px;
  }

  .hero {
    height: calc(70vh + var(--header-stack-height));
    min-height: calc(560px + var(--header-stack-height));
  }

  .hero-overlay {
    background:
      radial-gradient(circle at center, rgba(17, 19, 18, 0.58), rgba(17, 19, 18, 0.8) 100%),
      linear-gradient(180deg, rgba(17, 19, 18, 0.2), rgba(17, 19, 18, 0.42));
  }

  .trust-strip,
  .about-section,
  .contact-section,
  .contact-page-section,
  .values-grid,
  .service-details,
  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

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

  .process-section {
    min-height: auto;
  }

  .values-section {
    min-height: auto;
  }

  .process-top {
    align-items: start;
    flex-direction: column;
  }

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

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

  .trust-strip {
    gap: 26px;
  }

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

  .trust-card {
    min-height: auto;
  }

  .about-media,
  .about-media img {
    min-height: 320px;
  }

  .page-hero {
    min-height: 40vh;
  }

  .portfolio-top {
    grid-template-columns: 1fr;
    align-items: start;
  }

}

@media (max-width: 560px) {
  :root {
    --header-stack-height: 121px;
  }

  .top-header {
    min-height: 44px;
    padding: 7px 16px;
  }

  .top-contact {
    font-size: 0.8rem;
  }

  .top-socials,
  .footer-socials {
    gap: 7px;
  }

  .social-link {
    width: 28px;
    height: 28px;
  }

  .social-link .fa-brands {
    width: 13px;
    height: 13px;
  }

  .site-header {
    top: 44px;
  }

  .site-nav {
    top: 121px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: calc(570px + var(--header-stack-height));
  }

  .hero-content {
    width: calc(100vw - 42px);
    max-width: calc(100vw - 42px);
    margin-inline: auto;
    padding: 24px 14px;
  }

  .hero-content h1,
  .hero-content p {
    max-width: 100%;
  }

  .hero-dots {
    left: 50%;
  }

  h1 {
    font-size: clamp(1.48rem, 6.9vw, 1.82rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.55rem, 7vw, 1.95rem);
    line-height: 1.12;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .hero-copy,
  .page-hero p,
  .section-copy p,
  .portfolio-intro p,
  .contact-info-panel > p {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    min-height: 46px;
    padding: 10px 14px;
  }

  .contact-form,
  .contact-page-form,
  .trust-card,
  .process-grid div {
    padding: 22px;
  }

  .contact-info-panel {
    padding: 22px;
  }

  .contact-info-list div {
    padding: 14px;
  }

  .page-hero {
    min-height: auto;
    padding: 118px 24px 48px;
  }

  .page-hero h1 {
    font-size: clamp(1.72rem, 7.6vw, 2rem);
  }

  .process-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .service-details,
  .service-support {
    grid-template-columns: 1fr;
  }

  .process-section .section-heading h2 {
    font-size: 1.85rem;
  }

  .process-action .primary-button {
    width: 100%;
  }

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

  .footer-main,
  .footer-bottom {
    display: grid;
  }

  .footer-bottom {
    gap: 8px;
  }

  .service-card,
  .service-card img {
    min-height: 270px;
  }

  .service-card div {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .about-media,
  .about-media img {
    min-height: 280px;
  }

  .about-media figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
  }

  .response-actions {
    flex-direction: column;
  }
}
