:root {
  --navy: #071b2f;
  --navy-soft: #0d2a43;
  --green: #0d6b4f;
  --green-deep: #064733;
  --green-light: #e8f4ef;
  --gold: #c99b3b;
  --gold-soft: #f7ead0;
  --white: #ffffff;
  --ink: #152536;
  --muted: #5d6b78;
  --line: #dbe5e0;
  --surface: #f7faf8;
  --shadow: 0 18px 45px rgba(7, 27, 47, 0.14);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

p {
  color: var(--muted);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green);
  border-radius: 4px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 229, 224, 0.82);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--green));
  border: 1px solid rgba(201, 155, 59, 0.44);
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--green);
  font-size: 0.77rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 11px;
  color: var(--navy);
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--green-deep);
  background: var(--green-light);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding: 92px 0;
  scroll-margin-top: var(--header-height);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height) - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 27, 47, 0.96), rgba(6, 71, 51, 0.9)),
    var(--navy);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 132px;
  background: linear-gradient(180deg, transparent, rgba(7, 27, 47, 0.4));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: 56px;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.45rem, 6vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-text {
  max-width: 740px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 12px 26px rgba(201, 155, 59, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #d8aa4a;
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.btn-full {
  width: 100%;
  color: var(--navy);
}

.contact-strip,
.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-style: normal;
}

.contact-strip a,
.contact-list a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.93rem;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.dashboard-panel {
  position: relative;
  width: min(100%, 420px);
  max-width: 420px;
  margin-left: auto;
  padding: 22px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(201, 155, 59, 0.36);
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.panel-top {
  display: flex;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.panel-top span:nth-child(2) {
  background: var(--green);
}

.panel-top span:nth-child(3) {
  background: var(--navy-soft);
}

.audit-score {
  width: 190px;
  margin: 24px auto 20px;
}

.audit-score svg {
  overflow: visible;
}

.meter-bg,
.meter-fill {
  fill: none;
  stroke-width: 12;
}

.meter-bg {
  stroke: #e9efec;
}

.meter-fill {
  stroke: var(--green);
  stroke-linecap: round;
  stroke-dasharray: 258 340;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.audit-score text {
  fill: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.audit-score text + text {
  fill: var(--green);
  font-size: 16px;
}

.dashboard-lines {
  display: grid;
  gap: 10px;
}

.dashboard-lines span {
  display: block;
  height: 12px;
  background: #dce8e3;
  border-radius: 3px;
}

.dashboard-lines .line-wide {
  width: 100%;
}

.dashboard-lines .line-mid {
  width: 76%;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.mini-grid span {
  display: grid;
  min-height: 62px;
  place-items: center;
  color: var(--green-deep);
  background: var(--green-light);
  border: 1px solid #cce1d8;
  border-radius: 6px;
  font-weight: 850;
}

.floating-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(201, 155, 59, 0.38);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  font-weight: 800;
}

.note-one {
  top: 90px;
  left: 0;
}

.note-two {
  right: -6px;
  bottom: 98px;
}

.icon-check,
.icon-leaf,
.card-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--green-light);
}

.icon-check::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 9px;
  width: 15px;
  height: 8px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

.icon-leaf::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 10px;
  width: 15px;
  height: 21px;
  background: var(--green);
  border-radius: 15px 2px 15px 2px;
  transform: rotate(36deg);
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 58px;
  align-items: start;
}

.section h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.content-block p {
  font-size: 1.08rem;
}

.credential-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.credential-list span {
  padding: 10px 12px;
  color: var(--green-deep);
  background: var(--green-light);
  border: 1px solid #c9dfd6;
  border-radius: 6px;
  font-weight: 750;
}

.services,
.standards,
.process {
  background: var(--surface);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading.light h2,
.section-heading.light p {
  color: var(--white);
}

.section-heading.light .section-kicker {
  color: var(--gold);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.pillar-card {
  padding: 24px;
  border-radius: var(--radius);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(7, 27, 47, 0.05);
}

.service-card h3,
.pillar-card h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.3;
}

.service-card p,
.pillar-card p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.card-icon {
  background:
    linear-gradient(135deg, rgba(13, 107, 79, 0.14), rgba(201, 155, 59, 0.18)),
    var(--white);
  border: 1px solid rgba(13, 107, 79, 0.18);
}

.card-icon::before,
.card-icon::after {
  content: "";
  position: absolute;
  background: var(--green);
}

.icon-gap::before {
  inset: 10px 8px auto;
  height: 4px;
}

.icon-gap::after {
  inset: auto 8px 10px;
  height: 4px;
}

.icon-audit::before {
  top: 8px;
  left: 10px;
  width: 16px;
  height: 20px;
  border: 2px solid var(--green);
  background: transparent;
}

.icon-audit::after {
  top: 14px;
  left: 14px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  background: transparent;
  transform: rotate(-45deg);
}

.icon-action::before {
  top: 9px;
  left: 9px;
  width: 18px;
  height: 18px;
  border: 3px solid var(--green);
  background: transparent;
  border-radius: 50%;
}

.icon-action::after {
  right: 6px;
  bottom: 7px;
  width: 11px;
  height: 3px;
  background: var(--gold);
  transform: rotate(-35deg);
}

.icon-verify::before {
  top: 8px;
  left: 8px;
  width: 20px;
  height: 20px;
  clip-path: polygon(50% 0, 100% 18%, 86% 100%, 14% 100%, 0 18%);
}

.icon-verify::after {
  top: 14px;
  left: 13px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  background: transparent;
  transform: rotate(-45deg);
}

.icon-policy::before {
  top: 8px;
  left: 9px;
  width: 18px;
  height: 22px;
  border: 2px solid var(--green);
  background: transparent;
}

.icon-policy::after {
  top: 15px;
  left: 13px;
  width: 10px;
  height: 2px;
  box-shadow: 0 5px 0 var(--gold), 0 10px 0 var(--gold);
}

.icon-carbon::before {
  top: 7px;
  left: 9px;
  width: 18px;
  height: 22px;
  background: var(--green);
  border-radius: 16px 2px 16px 2px;
  transform: rotate(33deg);
}

.icon-carbon::after {
  top: 17px;
  left: 14px;
  width: 14px;
  height: 2px;
  background: var(--white);
  transform: rotate(-30deg);
}

.icon-people::before {
  top: 7px;
  left: 13px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.icon-people::after {
  bottom: 7px;
  left: 8px;
  width: 20px;
  height: 13px;
  border-radius: 12px 12px 3px 3px;
}

.icon-supply::before {
  top: 9px;
  left: 7px;
  width: 8px;
  height: 8px;
  box-shadow: 14px 0 0 var(--green), 7px 13px 0 var(--green);
}

.icon-supply::after {
  top: 16px;
  left: 11px;
  width: 15px;
  height: 2px;
  background: var(--gold);
  transform: rotate(56deg);
}

.icon-monitor::before {
  left: 9px;
  bottom: 8px;
  width: 4px;
  height: 14px;
  box-shadow: 7px -6px 0 var(--green), 14px -2px 0 var(--green);
}

.icon-monitor::after {
  left: 8px;
  bottom: 7px;
  width: 22px;
  height: 2px;
  background: var(--gold);
}

.pillars {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 27, 47, 0.98), rgba(6, 71, 51, 0.92)),
    var(--navy);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.pillar-card {
  grid-column: span 2;
  min-height: 250px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.pillar-wide {
  grid-column: span 2;
}

.pillar-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 900;
}

.pillar-card h3,
.pillar-card p {
  color: var(--white);
}

.pillar-card p {
  color: rgba(255, 255, 255, 0.76);
}

.audit-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: start;
}

.check-panel {
  padding: 28px;
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  color: var(--white);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 255, 255, 0.9);
}

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

.check-list li::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 5px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(-45deg);
}

.badge-grid,
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge-grid span,
.industry-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(7, 27, 47, 0.04);
}

.industry-grid span {
  background: var(--green-light);
  border-color: #cce1d8;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  min-height: 190px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-list span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 900;
}

.process-list h3 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.35;
}

.contact {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 27, 47, 0.98), rgba(13, 107, 79, 0.9)),
    var(--navy);
}

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

.contact p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-list {
  margin-top: 26px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(201, 155, 59, 0.35);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.two-col {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-row.two-col > div {
  display: grid;
  gap: 8px;
}

label {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(13, 107, 79, 0.16);
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--green-deep);
  font-size: 0.9rem;
  font-weight: 750;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #051321;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 84px;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner a {
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 1020px) {
  .hero-grid,
  .split,
  .audit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .dashboard-panel {
    margin: 0 auto;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillar-card {
    grid-column: span 3;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 4px;
    height: calc(100vh - var(--header-height));
    padding: 18px 20px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 48px rgba(7, 27, 47, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .menu-open .nav-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    width: 100%;
    min-height: 48px;
    padding: 10px 12px;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 10vw, 4rem);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 8.6vw, 2.85rem);
    overflow-wrap: break-word;
  }

  .floating-note {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-top: 12px;
  }

  .dashboard-panel {
    padding: 18px;
  }

  .audit-score {
    width: 160px;
  }

  .mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid,
  .process-list,
  .form-row.two-col {
    grid-template-columns: 1fr;
  }

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

  .pillar-card,
  .pillar-wide {
    grid-column: auto;
    min-height: auto;
  }

  .contact-strip a,
  .contact-list a,
  .hero-actions .btn {
    width: 100%;
  }

  .contact-form {
    padding: 20px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/* Energy and industrial sector expansion */
.energy-sectors {
  background:
    radial-gradient(circle at top left, rgba(13, 107, 79, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(201, 155, 59, 0.14), transparent 32%),
    var(--white);
}

.energy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.energy-card {
  position: relative;
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--green-deep));
  border: 1px solid rgba(201, 155, 59, 0.36);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(7, 27, 47, 0.12);
}

.energy-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 112px;
  height: 112px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 155, 59, 0.18);
  border-radius: 50%;
}

.energy-card h3 {
  position: relative;
  z-index: 1;
  margin: 18px 0 10px;
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.28;
}

.energy-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.energy-icon {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(201, 155, 59, 0.34);
  border-radius: 9px;
}

.energy-icon::before,
.energy-icon::after,
.icon-energy::before,
.icon-energy::after {
  content: "";
  position: absolute;
}

.oil::before {
  left: 15px;
  top: 8px;
  width: 12px;
  height: 24px;
  background: var(--gold);
  border-radius: 10px 10px 4px 4px;
}

.oil::after {
  left: 12px;
  bottom: 8px;
  width: 18px;
  height: 4px;
  background: var(--green-light);
  border-radius: 2px;
}

.cylinder::before {
  left: 12px;
  top: 7px;
  width: 18px;
  height: 28px;
  border: 3px solid var(--gold);
  border-radius: 10px / 6px;
}

.cylinder::after {
  left: 17px;
  top: 4px;
  width: 8px;
  height: 5px;
  background: var(--green-light);
  border-radius: 2px;
}

.renewable::before,
.icon-energy::before {
  left: 13px;
  top: 8px;
  width: 16px;
  height: 24px;
  background: var(--gold);
  border-radius: 18px 2px 18px 2px;
  transform: rotate(36deg);
}

.renewable::after,
.icon-energy::after {
  left: 12px;
  bottom: 8px;
  width: 21px;
  height: 3px;
  background: var(--green-light);
  transform: rotate(-24deg);
}

.solar::before {
  left: 8px;
  top: 15px;
  width: 26px;
  height: 14px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 5px, rgba(255,255,255,0.22) 5px 7px);
  transform: skewX(-12deg);
}

.solar::after {
  right: 5px;
  top: 6px;
  width: 9px;
  height: 9px;
  background: var(--green-light);
  border-radius: 50%;
}

.power::before {
  left: 16px;
  top: 5px;
  width: 12px;
  height: 30px;
  background: var(--gold);
  clip-path: polygon(48% 0, 100% 0, 62% 40%, 100% 40%, 28% 100%, 43% 55%, 0 55%);
}

.utilities::before {
  left: 8px;
  bottom: 8px;
  width: 26px;
  height: 22px;
  border-left: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  border-top: 3px solid var(--gold);
}

.utilities::after {
  left: 14px;
  top: 9px;
  width: 14px;
  height: 3px;
  background: var(--green-light);
  box-shadow: 0 8px 0 var(--green-light), 0 16px 0 var(--green-light);
}

.gas::before {
  left: 12px;
  top: 6px;
  width: 18px;
  height: 30px;
  border: 3px solid var(--gold);
  border-radius: 50%;
}

.gas::after {
  left: 18px;
  top: 13px;
  width: 7px;
  height: 16px;
  background: var(--green-light);
  border-radius: 8px;
}

.chemical::before {
  left: 12px;
  top: 7px;
  width: 18px;
  height: 27px;
  background: var(--gold);
  clip-path: polygon(30% 0, 70% 0, 70% 35%, 100% 100%, 0 100%, 30% 35%);
}

.chemical::after {
  left: 14px;
  bottom: 8px;
  width: 14px;
  height: 3px;
  background: var(--green-light);
}

.industry::before {
  left: 7px;
  bottom: 8px;
  width: 28px;
  height: 19px;
  background: var(--gold);
  clip-path: polygon(0 48%, 25% 26%, 25% 48%, 50% 26%, 50% 48%, 76% 26%, 76% 48%, 100% 48%, 100% 100%, 0 100%);
}

.industry::after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 13px;
  background: var(--green-light);
  box-shadow: 17px 3px 0 var(--green-light);
}

.metals::before {
  left: 8px;
  bottom: 8px;
  width: 9px;
  height: 24px;
  background: var(--gold);
  box-shadow: 12px 6px 0 var(--gold), 24px 12px 0 var(--gold);
}

.metals::after {
  left: 8px;
  bottom: 6px;
  width: 31px;
  height: 3px;
  background: var(--green-light);
}

.logistics::before {
  left: 7px;
  top: 13px;
  width: 25px;
  height: 14px;
  background: var(--gold);
  border-radius: 2px;
}

.logistics::after {
  left: 11px;
  bottom: 8px;
  width: 7px;
  height: 7px;
  background: var(--green-light);
  border-radius: 50%;
  box-shadow: 16px 0 0 var(--green-light);
}

.sme::before {
  left: 9px;
  bottom: 8px;
  width: 5px;
  height: 20px;
  background: var(--gold);
  box-shadow: 9px -6px 0 var(--gold), 18px -12px 0 var(--gold);
}

.sme::after {
  left: 8px;
  bottom: 6px;
  width: 28px;
  height: 3px;
  background: var(--green-light);
}

@media (max-width: 1020px) {
  .energy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .energy-grid {
    grid-template-columns: 1fr;
  }

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