/* =============================================
   OM ENERGY RESOURCES B.V. — SUSTAINABILITY & ESG
   ============================================= */

:root {
  --color-accent: #ff5c00;
  --color-accent-hover: #e04e00;
  --color-accent-dark: #cc4900;
  --color-accent-light: #ff7a2e;

  --color-bg: #111111;
  --color-bg-mid: #1a1a1a;
  --color-bg-card: #1e1e1e;
  --color-bg-section: #141414;
  --color-surface: #242424;

  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-mid: rgba(255, 255, 255, 0.14);

  --color-text-primary: #ffffff;
  --color-text-secondary: rgba(240, 240, 240, 0.55);
  --color-text-muted: rgba(240, 240, 240, 0.35);

  --color-white: #ffffff;
}

/* =============================================
   WRAPPER
   ============================================= */
.page-wrapper {
  max-width: 100%;
  width: 100%;
  margin: 0;
  background: var(--color-bg);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100px;
  width: 100%;
  padding: 12px 24px;
  background: transparent;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  width: 100px;
  height: 80px;
  background-image: url("../assets/images/logos/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.navbar__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 18px;
}

.navbar__link {
  height: 10px;
  border-radius: 2px;
}

.navbar__cta {
  height: auto;
  width: auto;
  color: var(--color-white);
  font-size: 12px;
  border: none;
  background-color: var(--color-accent);
  padding: 8px 16px;
  transition: all 0.2s ease;
}

.navbar__cta:hover {
  background-color: var(--color-accent-hover);
  color: var(--color-white);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/hero-images/Sustainability\ &\ ESG.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 100px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 40%,
    rgba(0, 0, 0, 0.15) 100%
  );
  pointer-events: none;
}

.hero__bottom {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.hero__title {
  width: 80%;
  font-size: 48px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.2;
}

.hero__right {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.hero__sub {
  width: 100%;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.hero__cta {
  height: auto;
  width: auto;
  color: var(--color-white);
  font-size: 12px;
  border: none;
  background-color: var(--color-accent);
  padding: 8px 16px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.hero__cta:hover {
  background-color: var(--color-accent-hover);
  color: var(--color-white);
}

/* =============================================
   ESG PILLARS
   ============================================= */
.esg-pillars {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 48px;
  padding: 100px 40px;
  background: var(--color-bg-mid);
}

.esg__card {
  height: 500px;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border-mid);
  padding-bottom: 48px;
}

.esg-card__info {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
}

.esg-card-info__top {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 24px;
}

.esg-card__title {
  font-size: 48px;
  color: var(--color-text-primary);
}

.esg-card__subtitle {
  width: 80%;
  font-size: 24px;
  color: var(--color-text-secondary);
}

.esg-card__icon {
  height: 24px;
  width: auto;
  filter: invert(1) brightness(0.6);
}

.esg__image {
  height: 500px;
  width: 600px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  display: block;
}

/* =============================================
   OUR ESG COMMITMENT
   ============================================= */
.market-intel {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 100px 40px;
  background: var(--color-bg-section);
}

.market__info {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.market-info__title {
  width: 50%;
  font-size: 48px;
  color: var(--color-text-primary);
}

.market-info__subtitle {
  width: 50%;
  font-size: 24px;
  color: var(--color-text-secondary);
}

.market-intel__cards {
  height: auto;
  width: 100%;
  display: flex;
  align-self: center;
  justify-content: center;
  gap: 24px;
  margin-top: 100px;
}

.detail-card {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 20px;
  gap: 16px;
  transition: border-color 0.2s ease;
}

.detail-card:hover {
  border-color: rgba(255, 92, 0, 0.3);
}

.tag {
  display: inline-block;
  border: 1px solid var(--color-accent);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 16px;
  font-weight: lighter;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.detail-card__title {
  width: 100%;
  font-size: 24px;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 8px;
}

.detail-card__body {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.detail-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-card__list li {
  font-size: 16px;
  font-weight: lighter;
  color: var(--color-text-secondary);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.detail-card__list li::before {
  content: "·";
  color: var(--color-accent);
  flex-shrink: 0;
}

/* =============================================
   IMAGE REST - 1
   ============================================= */
.img-rest-1 {
  height: 700px;
  width: 100%;
  background-image: url("../assets/images/sustainability-ESG-images/Section-1.jpg");
  background-size: cover;
}

/* =============================================
   RESPONSIBLE DEVELOPMENT & DUE DILIGENCE
   ============================================= */
.sourcing {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 100px 40px;
  background: var(--color-bg);
}

.sourcing__info {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 100px;
}

.sourcing__title {
  width: 50%;
  font-size: 48px;
  color: var(--color-text-primary);
}

.sourcing__subtitle {
  width: 50%;
  font-size: 24px;
  color: var(--color-text-secondary);
}

.sourcing__cards {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}

.source-card {
  height: 320px;
  width: 100%;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 5px;
  padding: 16px;
  min-height: 160px;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: start;
  transition: border-color 0.2s ease;
}

.source-card:hover {
  border-color: rgba(255, 92, 0, 0.3);
}

.source-card__num {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.source-card__title {
  width: 80%;
  font-size: 24px;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 8px;
  line-height: 1.4;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.source-card__body {
  width: 100%;
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* =============================================
   SOCIAL IMPACT & LOCAL VALUE
   ============================================= */
.shared-value {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 100px 40px;
  background: var(--color-bg-mid);
}

.shared__info {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 100px;
}

.shared__title {
  font-size: 48px;
  width: 40%;
  color: var(--color-text-primary);
}

.shared__subtitle {
  font-size: 24px;
  width: 50%;
  color: var(--color-text-secondary);
}

.shared__container {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 48px;
}

.shared__card {
  height: 400px;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border-mid);
}

.shared-card__left {
  height: 100%;
  width: 50%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
}

.card__info {
  height: auto;
  width: auto;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  gap: 24px;
}

.card__title {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-text-primary);
}

.card__subtitle {
  font-size: 24px;
  font-weight: lighter;
  color: var(--color-text-secondary);
}

.card__arrow {
  font-size: 24px;
  font-weight: lighter;
  color: var(--color-accent);
}

.shared__img {
  height: 300px;
  width: 500px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  display: block;
}

/* =============================================
   ALIGNED STANDARDS
   ============================================= */
.aligned {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 100px 40px;
  background: var(--color-bg-section);
}

.aligned__title {
  font-size: 48px;
  font-weight: 400;
  width: 30%;
  color: var(--color-text-primary);
}

.aligned__chips {
  height: auto;
  width: auto;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.chip__row {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  width: auto;
  align-self: start;
  text-align: center;
  font-size: 16px;
  color: var(--color-text-primary);
  padding: 8px 14px;
  border: 1px solid var(--color-border-mid);
  border-radius: 25px;
  background: var(--color-surface);
}

/* =============================================
   IMAGE REST - 2
   ============================================= */
.img-rest-2 {
  height: 700px;
  width: 100%;
  background-image: url("../assets/images/sustainability-ESG-images/Section-2.jpg");
  background-size: cover;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  background: var(--color-bg);
}

.cta__title {
  width: 40%;
  font-size: 48px;
  color: var(--color-text-primary);
  text-align: center;
}

.cta__subtitle {
  width: 50%;
  font-size: 24px;
  color: var(--color-text-secondary);
  text-align: center;
}

.ctas {
  height: auto;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.cta__1 {
  font-size: 16px;
  color: var(--color-white);
  padding: 12px 20px;
  background-color: var(--color-accent);
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease;
}

.cta__1:hover {
  background-color: var(--color-accent-hover);
}

.cta__2 {
  font-size: 16px;
  color: var(--color-white);
  padding: 12px 20px;
  background-color: var(--color-accent-dark);
  text-align: center;
  text-decoration: none;
}

/* =============================================
   FOOTER SPLIT
   ============================================= */
.footer-split {
  height: 700px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-split__left {
  height: 100%;
  width: auto;
  background-color: var(--color-bg-section);
  border-top: 1px solid var(--color-border);
  padding: 40px 40px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.footer-split__right {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: flex-start;
  position: relative;
  background-image: url("../assets/images/footer/footer-image.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 24px;
  padding-left: 40px;
}

.footer__info {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.footer-split__cta-title {
  font-size: 48px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}

.footer__title {
  font-size: 48px;
  color: var(--color-text-primary);
}

.footer__desc {
  font-size: 24px;
  line-height: 29px;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

.footer__nav {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__contact {
  margin-bottom: 20px;
}

.footer__contact-label {
  font-size: 14px;
  font-weight: bold;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.footer__contact-email {
  font-size: 14px;
  color: var(--color-text-primary);
  list-style: none;
  margin-bottom: 8px;
}

.footer__contact-note {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.footer__legal {
  margin-bottom: 20px;
}

.footer__legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__legal-links li a {
  font-size: 14px;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__legal-links li a:hover {
  color: var(--color-text-primary);
}

.footer__bottom {
  height: auto;
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.footer__logo {
  height: 70px;
  width: auto;
}

.footer__copy {
  font-size: 10px;
  color: var(--color-text-muted);
}

.footer__sitemap-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.footer__sitemap-links li a {
  font-size: 14px;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__sitemap-links li a:hover {
  color: var(--color-text-primary);
}

/* =============================================
   TABLET — max-width: 1024px
   ============================================= */
@media (max-width: 1024px) {
  .navbar {
    height: 70px;
    padding: 12px 24px;
  }

  .navbar__logo {
    width: 80px;
    height: 60px;
  }

  .navbar__links {
    gap: 12px;
  }

  .navbar__link {
    font-size: 13px;
  }

  .hero {
    padding: 40px 32px 80px;
  }

  .hero__title {
    width: 55%;
    font-size: 44px;
  }

  .hero__right {
    width: 380px;
  }

  .hero__sub {
    font-size: 18px;
  }

  .esg-pillars {
    padding: 80px 32px;
    gap: 40px;
  }

  .esg__card {
    height: auto;
    min-height: 400px;
  }

  .esg-card__title {
    font-size: 38px;
  }

  .esg-card__subtitle {
    width: 90%;
    font-size: 18px;
  }

  .esg__image {
    width: 40%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    flex-shrink: 0;
  }

  .market-intel {
    padding: 80px 32px;
  }

  .market-info__title {
    width: 40%;
    font-size: 38px;
  }

  .market-info__subtitle {
    width: 55%;
    font-size: 18px;
  }

  .market-intel__cards {
    margin-top: 60px;
    gap: 16px;
  }

  .detail-card__title {
    font-size: 20px;
  }

  .detail-card__body,
  .detail-card__list li {
    font-size: 14px;
  }

  .img-rest-1,
  .img-rest-2 {
    height: 450px;
  }

  .sourcing {
    padding: 80px 32px;
  }

  .sourcing__info {
    margin-bottom: 60px;
  }

  .sourcing__title {
    width: 40%;
    font-size: 38px;
  }

  .sourcing__subtitle {
    width: 55%;
    font-size: 18px;
  }

  .sourcing__cards {
    flex-wrap: wrap;
    gap: 16px;
  }

  .source-card {
    width: calc(50% - 8px);
    flex: 0 0 calc(50% - 8px);
    height: auto;
    min-height: 200px;
  }

  .source-card__title {
    font-size: 20px;
  }

  .source-card__body {
    font-size: 14px;
  }

  .shared-value {
    padding: 80px 32px;
  }

  .shared__info {
    margin-bottom: 60px;
  }

  .shared__title {
    font-size: 38px;
    width: 40%;
  }

  .shared__subtitle {
    font-size: 18px;
    width: 55%;
  }

  .shared__card {
    height: auto;
    min-height: 320px;
  }

  .shared__img {
    width: 45%;
    height: auto;
    aspect-ratio: 5 / 3;
    object-fit: cover;
    flex-shrink: 0;
  }

  .card__title {
    font-size: 20px;
  }

  .card__subtitle {
    font-size: 18px;
  }

  .aligned {
    padding: 60px 32px 80px;
    flex-direction: column;
    gap: 40px;
  }

  .aligned__title {
    width: 100%;
    font-size: 38px;
  }

  .chip {
    font-size: 14px;
  }

  .cta-banner {
    height: auto;
    padding: 80px 32px;
  }

  .cta__title {
    width: 60%;
    font-size: 38px;
  }

  .cta__subtitle {
    width: 65%;
    font-size: 18px;
  }

  .footer-split {
    height: auto;
    flex-direction: column;
  }

  .footer-split__left {
    width: 100%;
    padding: 48px 32px 32px;
  }

  .footer-split__right {
    width: 100%;
    height: 300px;
    padding: 32px;
  }

  .footer-split__cta-title {
    font-size: 36px;
  }

  .footer__title {
    font-size: 36px;
  }

  .footer__desc {
    font-size: 18px;
  }
}

/* =============================================
   MOBILE — max-width: 768px
   ============================================= */
@media (max-width: 768px) {
  .navbar {
    height: 64px;
    padding: 0 20px;
    background-color: rgba(0, 0, 0, 0.6);
  }

  .navbar__logo {
    width: 70px;
    height: 54px;
  }

  .navbar__links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: var(--color-bg-section);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px 20px;
    gap: 0;
    overflow-y: auto;
    z-index: 9998;
  }

  .navbar__links--open {
    display: flex;
  }

  .navbar__item {
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }

  .navbar__link {
    display: block;
    width: 100%;
    height: auto;
    color: var(--color-text-primary);
    font-size: 16px;
    padding: 16px 0;
    text-decoration: none;
  }

  .navbar__link--active {
    color: var(--color-accent);
  }

  .navbar__dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    display: none;
    background: rgba(255, 255, 255, 0.05);
    min-width: 0;
    width: 100%;
  }

  .navbar__dropdown--active {
    display: flex;
    transform: none;
  }

  .navbar__dropdown-row {
    padding: 12px 32px;
  }

  .navbar__dropdown-label {
    color: var(--color-text-secondary);
    font-size: 14px;
  }

  .navbar__dropdown-arrow {
    color: var(--color-text-secondary);
  }

  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
  }

  .navbar__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .navbar__hamburger--open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .navbar__hamburger--open span:nth-child(2) {
    opacity: 0;
  }
  .navbar__hamburger--open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .esg-card__icon {
    display: none;
  }
  .card__arrow {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding: 100px 20px 60px;
  }

  .hero__bottom {
    flex-direction: column;
    gap: 32px;
  }

  .hero__title {
    width: 100%;
    font-size: 32px;
  }

  .hero__right {
    width: 100%;
  }

  .hero__sub {
    font-size: 16px;
  }

  .esg-pillars {
    padding: 60px 20px;
    gap: 32px;
  }

  .esg__card {
    height: auto;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 32px;
  }

  .esg-card__title {
    font-size: 28px;
  }

  .esg-card__subtitle {
    width: 100%;
    font-size: 16px;
  }

  .esg__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .market-intel {
    padding: 60px 20px;
  }

  .market__info {
    flex-direction: column;
    gap: 16px;
  }

  .market-info__title {
    width: 100%;
    font-size: 28px;
  }

  .market-info__subtitle {
    width: 100%;
    font-size: 16px;
  }

  .market-intel__cards {
    flex-direction: column;
    margin-top: 40px;
    gap: 16px;
  }

  .detail-card__title {
    font-size: 18px;
  }

  .detail-card__body,
  .detail-card__list li {
    font-size: 14px;
  }

  .img-rest-1,
  .img-rest-2 {
    height: 240px;
  }

  .sourcing {
    padding: 60px 20px;
  }

  .sourcing__info {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
  }

  .sourcing__title {
    width: 100%;
    font-size: 28px;
  }

  .sourcing__subtitle {
    width: 100%;
    font-size: 16px;
  }

  .sourcing__cards {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }

  .source-card {
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .source-card__num {
    font-size: 20px;
  }
  .source-card__title {
    font-size: 18px;
  }
  .source-card__body {
    font-size: 14px;
  }

  .shared-value {
    padding: 60px 20px;
  }

  .shared__info {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
  }

  .shared__title {
    width: 100%;
    font-size: 28px;
  }

  .shared__subtitle {
    width: 100%;
    font-size: 16px;
  }

  .shared__card {
    height: auto;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 32px;
  }

  .shared-card__left {
    width: 100%;
  }

  .shared__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .card__title {
    font-size: 20px;
  }
  .card__subtitle {
    font-size: 16px;
  }

  .aligned {
    padding: 60px 20px;
    flex-direction: column;
    gap: 32px;
  }

  .aligned__title {
    width: 100%;
    font-size: 28px;
  }

  .aligned__chips {
    width: 100%;
  }

  .chip__row {
    flex-wrap: wrap;
  }

  .chip {
    font-size: 13px;
    padding: 6px 10px;
  }

  .cta-banner {
    height: auto;
    padding: 60px 20px;
  }

  .cta__title {
    width: 100%;
    font-size: 28px;
  }

  .cta__subtitle {
    width: 100%;
    font-size: 16px;
  }

  .ctas {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .cta__1,
  .cta__2 {
    text-align: center;
    width: 100%;
    font-size: 14px;
  }

  .footer-split {
    height: auto;
    flex-direction: column;
  }

  .footer-split__left {
    width: 100%;
    padding: 48px 20px 32px;
  }

  .footer-split__right {
    width: 100%;
    height: 250px;
    padding: 24px 20px;
  }

  .footer-split__cta-title {
    font-size: 28px;
  }
  .footer__title {
    font-size: 28px;
  }
  .footer__desc {
    font-size: 16px;
  }

  .footer__nav {
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 48px;
  }

  .footer__legal-links {
    gap: 8px;
  }
}

.impact-metrics {
  padding: 100px 40px;
  background: #111;
}

.impact-metrics__header {
  max-width: 900px;
  margin-bottom: 60px;
}

.impact-metrics__header h2 {
  color: #fff;
  font-size: 48px;
  margin: 16px 0;
}

.impact-metrics__header p {
  color: #aaa;
  line-height: 1.7;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.metric-card {
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
}

.metric-card h3 {
  color: #fff;
  margin-bottom: 12px;
}

.metric-card p {
  color: #aaa;
}

@media (max-width: 768px) {
  .impact-metrics {
    padding: 60px 20px;
  }

  .impact-metrics__header h2 {
    font-size: 32px;
  }

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