/* =============================================
   OM ENERGY — PROJECTS & EXECUTION — STYLES
   ============================================= */

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

/* ---- SEGURO GLOBAL DE IMÁGENES ---- */
/* Evita que cualquier <img> sin estilos explícitos se deforme o desborde.
   Las clases específicas (más especificidad) siempre ganan sobre esto. */
img {
  max-width: 100%;
  display: block;
}

/* ---- UTILIDADES ---- */
.wf-img {
  background: #d8d8d8;
  border: 1.5px dashed #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 12px;
}

.btn-wf {
  display: inline-block;
  border: 1.5px solid #999;
  padding: 7px 16px;
  border-radius: 4px;
  font-size: 11px;
  color: #888;
  margin-right: 8px;
  margin-top: 8px;
  cursor: pointer;
  text-decoration: none;
}

.body-txt {
  font-size: 12px;
  color: #aaa;
  line-height: 1.7;
}
.body-txt-dark {
  font-size: 11px;
  color: #888;
  line-height: 1.6;
}
.label {
  font-size: 10px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

/* =============================================
   WRAPPER
   ============================================= */
.page-wrapper {
  max-width: 100%;
  width: 100%;
  margin: 0;
  background: #111111;
}

/* =============================================
   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: #ffffff;
  font-size: 12px;
  border: none;
  background-color: var(--color-accent);
  padding: 8px 16px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.navbar__cta:hover {
  background-color: var(--color-accent-dark);
  color: #ffffff;
}

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

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

.hero__title {
  width: 60%;
  font-size: 48px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
}

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

.hero__sub {
  width: 100%;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 12px;
}

.hero__cta {
  height: auto;
  width: auto;
  color: #ffffff;
  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-dark);
  color: #ffffff;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
  gap: 15%;
  background: #1a1a1a;
}

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

.stat-item__value {
  font-size: 40px;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.stat-item__label {
  font-size: 16px;
  color: #aaaaaa;
}

/* =============================================
   PROJECT CASE STUDIES
   ============================================= */
.case-studies {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 100px 40px;
  gap: 100px;
  background: #111111;
}

.case-studies__title {
  font-size: 48px;
  font-weight: 400;
  color: #ffffff;
}

.case-studies__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.proj-card {
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  padding: 18px;
  position: relative;
  gap: 24px;
  transition: border-color 0.2s ease;
}

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

.proj-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.proj-card__tag {
  display: inline-block;
  border: 1px solid var(--color-accent);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 10px;
  color: var(--color-accent);
}

.proj-card__year {
  font-size: 10px;
  color: #666666;
}

.proj-card__title {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 48px;
  line-height: 1.4;
}

.proj-card__row {
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 24px;
}

.proj-card__row-label {
  font-size: 14px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.proj-card__row-text {
  font-size: 14px;
  color: #aaaaaa;
  line-height: 1.5;
}

/* =============================================
   PERFORMANCE INDICATORS
   ============================================= */
.market {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  padding: 100px 40px;
  gap: 100px;
  background: #141414;
}

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

.market__title {
  font-size: 48px;
  color: #ffffff;
}

.market__subtitle {
  width: 50%;
  font-size: 24px;
  color: #aaaaaa;
}

.market__row {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.market__card {
  height: 350px;
  width: 100%;
  background-color: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  padding: 16px;
  transition: border-color 0.2s ease;
}

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

.market__label {
  font-size: 48px;
  color: var(--color-accent);
}

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

.market-card__title {
  font-size: 24px;
  color: #ffffff;
}

.market-card__subtitle {
  font-size: 16px;
  color: #aaaaaa;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.market-card__date {
  font-size: 16px;
  color: #666666;
}

.img__rest {
  height: 700px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* =============================================
   OPERATIONAL DELIVERY
   ============================================= */
.operational {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  padding: 100px 40px;
  gap: 100px;
  background: #111111;
}

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

.operational-info__title {
  font-weight: 400;
  font-size: 48px;
  color: #ffffff;
}

.operational-info__subtitle {
  font-size: 24px;
  color: #aaaaaa;
}

.operational__row {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.operational__card {
  height: 400px;
  width: 100%;
  background-color: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  padding: 16px;
  transition: border-color 0.2s ease;
}

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

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

.operational__title {
  font-size: 24px;
  color: #ffffff;
}

.operational__subtitle {
  font-size: 16px;
  color: #aaaaaa;
}

.operational__number {
  font-size: 60px;
  color: var(--color-accent);
  opacity: 0.4;
}

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

.cta__title {
  width: 50%;
  font-size: 48px;
  color: #ffffff;
  text-align: center;
}

.cta__subtitle {
  width: 50%;
  font-size: 24px;
  color: #aaaaaa;
  text-align: center;
}

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

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

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

/* =============================================
   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: #141414;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  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: #ddd;
  margin-bottom: 6px;
}

.footer__title {
  font-size: 48px;
  color: #ffffff;
}

.footer__desc {
  font-size: 24px;
  line-height: 29px;
  color: #aaaaaa;
  margin-bottom: 24px;
}

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

.footer__col-title {
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.footer__links {
  font-size: 14px;
  color: #aaaaaa;
  list-style: none;
}

.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: #aaaaaa;
  list-style: none;
  margin-bottom: 8px;
}

.footer__contact-note {
  font-size: 10px;
  color: #aaaaaa;
  margin-bottom: 8px;
}

.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: #aaaaaa;
}

.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: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__sitemap-links li a:hover {
  color: #ffffff;
}

.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: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__legal-links li a:hover {
  color: #ffffff;
}

/* =============================================
   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;
  }

  .stats-bar {
    padding: 80px 32px;
    gap: 8%;
    flex-wrap: wrap;
  }
  .stat-item__value {
    font-size: 48px;
  }
  .stat-item__label {
    font-size: 14px;
  }

  .case-studies {
    padding: 80px 32px;
    gap: 60px;
  }
  .case-studies__title {
    font-size: 38px;
  }
  .case-studies__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .proj-card__title {
    font-size: 20px;
    margin-bottom: 32px;
  }
  .proj-card__row-text {
    font-size: 13px;
  }

  .market {
    padding: 80px 32px;
    gap: 60px;
  }
  .market__title {
    font-size: 38px;
    width: 35%;
  }
  .market__subtitle {
    width: 55%;
    font-size: 18px;
  }
  .market__row {
    gap: 16px;
  }
  .market__card {
    height: auto;
    min-height: 280px;
  }
  .market__label {
    font-size: 38px;
  }
  .market-card__title {
    font-size: 20px;
  }
  .market-card__subtitle {
    font-size: 14px;
  }

  .img__rest {
    height: 450px;
  }

  .operational {
    padding: 80px 32px;
    gap: 60px;
  }
  .operational-info__title {
    font-size: 38px;
  }
  .operational-info__subtitle {
    font-size: 18px;
  }
  .operational__row {
    flex-wrap: wrap;
    gap: 16px;
  }
  .operational__card {
    width: calc(50% - 8px);
    flex: 0 0 calc(50% - 8px);
    height: auto;
    min-height: 300px;
  }
  .operational__title {
    font-size: 20px;
  }
  .operational__subtitle {
    font-size: 14px;
  }
  .operational__number {
    font-size: 48px;
  }

  .cta-banner {
    height: auto;
    padding: 80px 32px;
  }
  .cta__title {
    width: 70%;
    font-size: 38px;
  }
  .cta__subtitle {
    width: 70%;
    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: #1a1a1a;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 24px 20px;
    overflow-y: auto;
    z-index: 9998;
  }
  .navbar__links--open {
    display: flex;
  }
  .navbar__item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .navbar__link {
    display: block;
    width: 100%;
    height: auto;
    color: #ffffff;
    font-size: 16px;
    padding: 16px 0;
    text-decoration: none;
  }
  .navbar__link--active {
    color: var(--color-accent-light);
  }
  .navbar__dropdown {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 0 0 8px 16px;
    width: 100%;
    min-width: unset;
    display: none !important;
  }
  .navbar__dropdown--active {
    display: flex !important;
    pointer-events: all;
  }
  .navbar__dropdown-label {
    color: #cccccc;
    font-size: 14px;
  }
  .navbar__dropdown-arrow {
    color: #cccccc;
  }
  .navbar__dropdown-row {
    padding: 10px 8px;
  }
  .navbar__cta {
    display: none;
  }
  .navbar__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }
  .navbar__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.25s 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);
  }

  .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;
  }

  .stats-bar {
    padding: 60px 20px;
    gap: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
    column-gap: 16px;
  }
  .stat-item__value {
    font-size: 40px;
  }
  .stat-item__label {
    font-size: 13px;
  }

  .case-studies {
    padding: 60px 20px;
    gap: 40px;
  }
  .case-studies__title {
    font-size: 28px;
    text-align: start;
  }
  .case-studies__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .proj-card__title {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .proj-card__row-label {
    font-size: 12px;
  }
  .proj-card__row-text {
    font-size: 13px;
  }

  .market {
    padding: 60px 20px;
    gap: 40px;
  }
  .market__info {
    flex-direction: column;
    gap: 16px;
  }
  .market__title {
    width: 100%;
    font-size: 28px;
  }
  .market__subtitle {
    width: 100%;
    font-size: 16px;
  }
  .market__row {
    flex-direction: column;
    gap: 16px;
  }
  .market__card {
    width: 100%;
    height: auto;
    min-height: 0;
  }
  .market__label {
    font-size: 36px;
  }
  .market-card__title {
    font-size: 20px;
  }
  .market-card__subtitle {
    font-size: 14px;
  }
  .market-card__date {
    font-size: 13px;
  }

  .img__rest {
    height: 240px;
  }

  .operational {
    padding: 60px 20px;
    gap: 40px;
  }
  .operational-info__title {
    font-size: 28px;
  }
  .operational-info__subtitle {
    font-size: 16px;
  }
  .operational__row {
    flex-direction: column;
    gap: 16px;
  }
  .operational__card {
    width: 100%;
    height: auto;
    min-height: 0;
  }
  .operational__title {
    font-size: 20px;
  }
  .operational__subtitle {
    font-size: 14px;
  }
  .operational__number {
    font-size: 48px;
    margin-top: 16px;
  }

  .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 {
    text-align: center;
    width: 100%;
    font-size: 14px;
    padding: 12px;
  }

  .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;
  }
}

/* =============================================
   MOZAMBIQUE DEVELOPMENT PROGRAM SECTION
   ============================================= */

.mozambique {
  width: 100%;
  background: #0d0d0d;
  border-top: 1px solid rgba(255, 92, 0, 0.2);
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* Header */
.mozambique__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
}

.mozambique__tag-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mozambique__badge {
  display: inline-block;
  background: rgba(255, 92, 0, 0.12);
  border: 1px solid rgba(255, 92, 0, 0.35);
  color: var(--color-accent);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.mozambique__title {
  font-size: 48px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.15;
}

.mozambique__subtitle {
  font-size: 16px;
  color: #888888;
  line-height: 1.7;
  max-width: 720px;
}

/* Scale stats */
.mozambique__scale {
  display: flex;
  align-items: center;
  gap: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.mozambique__scale-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px 24px;
}

.mozambique__scale-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.mozambique__scale-value {
  font-size: 28px;
  color: #ffffff;
  font-weight: 500;
}

.mozambique__scale-label {
  font-size: 12px;
  color: #666666;
  letter-spacing: 0.04em;
}

/* Streams grid */
.mozambique__streams {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.moz-stream {
  display: flex;
  align-items: stretch;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.moz-stream:hover {
  border-color: rgba(255, 92, 0, 0.25);
}

.moz-stream__index {
  font-size: 48px;
  color: var(--color-accent);
  opacity: 0.2;
  font-weight: 700;
  padding: 28px 24px;
  min-width: 90px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.moz-stream__content {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.moz-stream__top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.moz-stream__title {
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
}

/* Flow diagram */
.moz-stream__flow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 4px;
}

.moz-stream__flow--wrap {
  flex-wrap: wrap;
}

.moz-flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 10px 14px;
  text-align: center;
  flex-shrink: 0;
}

.moz-flow__icon {
  font-size: 18px;
  line-height: 1;
}

.moz-flow__label {
  font-size: 11px;
  color: #aaaaaa;
  line-height: 1.4;
  white-space: nowrap;
}

.moz-flow__arrow {
  color: var(--color-accent);
  font-size: 16px;
  opacity: 0.6;
  flex-shrink: 0;
}

.moz-stream__desc {
  font-size: 14px;
  color: #888888;
  line-height: 1.65;
  max-width: 700px;
}

/* Ethanol phases */
.moz-stream__phases {
  display: flex;
  gap: 12px;
}

.moz-phase {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 10px 18px;
}

.moz-phase--accent {
  border-color: rgba(255, 92, 0, 0.3);
  background: rgba(255, 92, 0, 0.05);
}

.moz-phase__label {
  font-size: 10px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.moz-phase__value {
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
}

.moz-phase--accent .moz-phase__value {
  color: var(--color-accent);
}

/* Conditions tags */
.moz-stream__conditions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.moz-condition {
  font-size: 11px;
  color: #aaaaaa;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 4px 12px;
}

/* Blend list */
.moz-stream__blends {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.moz-blend {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.moz-blend:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.moz-blend__type {
  font-size: 12px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-width: 110px;
  flex-shrink: 0;
}

.moz-blend__desc {
  font-size: 13px;
  color: #777777;
  line-height: 1.5;
}

/* Partners */
.mozambique__partners {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  background: #161616;
  overflow: hidden;
}

.moz-partner {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 28px;
}

.moz-partner__sep {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.moz-partner__role {
  font-size: 10px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.moz-partner__name {
  font-size: 16px;
  color: #dddddd;
  font-weight: 500;
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
  .mozambique {
    padding: 80px 32px;
    gap: 48px;
  }
  .mozambique__title {
    font-size: 38px;
  }
  .mozambique__scale {
    flex-wrap: wrap;
  }
  .mozambique__scale-item {
    flex: 1 1 45%;
  }
  .mozambique__scale-divider {
    display: none;
  }
  .moz-stream__index {
    font-size: 36px;
    min-width: 70px;
    padding: 20px 16px;
  }
  .mozambique__partners {
    flex-wrap: wrap;
  }
  .moz-partner {
    flex: 1 1 45%;
  }
  .moz-partner__sep {
    display: none;
  }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 768px) {
  .mozambique {
    padding: 50px 20px;
    gap: 32px;
  }

  /* Header */
  .mozambique__header {
    gap: 14px;
    max-width: 100%;
  }

  .mozambique__tag-row {
    gap: 8px;
  }

  .mozambique__badge {
    font-size: 10px;
    padding: 4px 10px;
  }

  .mozambique__title {
    font-size: 26px;
    line-height: 1.2;
  }

  .mozambique__subtitle {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Scale stats */
  .mozambique__scale {
    flex-direction: column;
    border-radius: 6px;
    padding: 0;
    overflow: hidden;
  }

  .mozambique__scale-item {
    width: 100%;
    flex: unset;
    padding: 18px 20px;
    gap: 5px;
    align-items: flex-start;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mozambique__scale-item:last-child {
    border-bottom: none;
  }

  .mozambique__scale-value {
    font-size: 24px;
    line-height: 1.2;
    text-align: left;
  }

  .mozambique__scale-label {
    font-size: 11px;
    text-align: left;
  }

  /* Streams */
  .moz-stream {
    flex-direction: column;
    border-radius: 6px;
  }

  .moz-stream__index {
    width: 100%;
    min-width: unset;
    height: auto;
    padding: 12px 16px;
    font-size: 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    justify-content: flex-start;
  }

  .moz-stream__content {
    padding: 18px 16px;
    gap: 16px;
  }

  .moz-stream__top {
    gap: 8px;
  }

  .moz-stream__title {
    font-size: 17px;
  }

  /* Flow */
  .moz-stream__flow {
    gap: 8px;
    margin-right: -16px;
    padding-right: 16px;
  }

  .moz-flow__step {
    padding: 8px 10px;
  }

  .moz-flow__icon {
    font-size: 16px;
  }

  .moz-flow__label {
    font-size: 10px;
  }

  .moz-flow__arrow {
    font-size: 14px;
  }

  /* Description */
  .moz-stream__desc {
    font-size: 13px;
    line-height: 1.6;
  }

  /* Ethanol phases */
  .moz-stream__phases {
    flex-direction: column;
    gap: 8px;
  }

  .moz-phase {
    padding: 10px 14px;
  }

  .moz-phase__value {
    font-size: 15px;
  }

  /* Conditions */
  .moz-stream__conditions {
    gap: 6px;
  }

  .moz-condition {
    font-size: 10px;
    padding: 4px 10px;
  }

  /* Blends */
  .moz-stream__blends {
    gap: 10px;
  }

  .moz-blend {
    flex-direction: column;
    gap: 5px;
    padding-bottom: 10px;
  }

  .moz-blend__type {
    font-size: 11px;
  }

  .moz-blend__desc {
    font-size: 12px;
  }

  /* Partners */
  .mozambique__partners {
    flex-direction: column;
    width: 100%;
    border-radius: 6px;
  }

  .moz-partner {
    width: 100%;
    padding: 18px 20px;
    gap: 6px;
    align-items: flex-start;
    text-align: left;
  }

  .moz-partner__sep {
    display: none;
  }

  .moz-partner:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .moz-partner__role {
    font-size: 10px;
    text-align: left;
    letter-spacing: 0.1em;
  }

  .moz-partner__name {
    font-size: 16px;
    text-align: left;
    color: #dddddd;
  }
}

/* =============================================
   TRACK RECORD
   ============================================= */
.track-record {
  width: 100%;
  background: #141414;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 100px 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.track-record__left {
  width: 35%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.track-record__label {
  font-size: 11px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.track-record__title {
  font-size: 40px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
}

.track-record__right {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.track-record__text {
  font-size: 16px;
  color: #aaaaaa;
  line-height: 1.75;
}

.track-record__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.track-record__tag {
  font-size: 11px;
  color: #aaaaaa;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 5px 14px;
}

@media (max-width: 1024px) {
  .track-record {
    padding: 80px 32px;
    gap: 40px;
  }
  .track-record__left {
    width: 40%;
  }
  .track-record__title {
    font-size: 32px;
  }
  .track-record__right {
    width: 55%;
  }
}

@media (max-width: 768px) {
  .track-record {
    padding: 60px 20px;
    flex-direction: column;
    gap: 32px;
  }
  .track-record__left {
    width: 100%;
  }
  .track-record__title {
    font-size: 26px;
  }
  .track-record__right {
    width: 100%;
  }
  .track-record__text {
    font-size: 14px;
  }
}

.risk-management {
  padding: 120px 40px;
  background: #111111;
}

.risk-management__content {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.risk-management__content h2 {
  font-size: 48px;
  color: #fff;
  margin: 16px 0 24px;
}

.risk-management__content p {
  color: #aaa;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 50px;
}

.risk-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.risk-points div {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 22px;
  color: #fff;
}

.delivery-process {
  padding: 100px 40px;
  background: #151515;
  text-align: center;
}

.delivery-process h2 {
  color: #fff;
  font-size: 48px;
  margin: 20px 0 60px;
}

.delivery-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.step {
  background: #1f1f1f;
  padding: 30px 20px;
}

.step span {
  color: #ff5c00;
  font-size: 22px;
}

.step h3 {
  color: #fff;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .project-types,
  .risk-management,
  .delivery-process {
    padding: 60px 20px;
  }

  .project-types__header h2,
  .risk-management__content h2,
  .delivery-process h2 {
    font-size: 32px;
  }

  .project-types__grid,
  .delivery-steps {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   MOZAMBIQUE — 3-NOZZLE STATION DIAGRAM
   ============================================= */

.moz-station-diagram {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 20px;
  margin: 20px 0;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.moz-station-diagram__caption {
  font-size: 14px;
  color: #ff5c00;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.moz-station-diagram__svg {
  width: 100%;
  max-width: 900px;
  height: auto;
}

.moz-station-diagram__footnote {
  font-size: 14px;
  color: rgba(240, 240, 240, 0.55);
  text-align: center;
  max-width: 600px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .moz-station-diagram {
    padding: 24px 16px;
  }
  .moz-station-diagram__caption {
    font-size: 12px;
    text-align: center;
  }
  .moz-station-diagram__footnote {
    font-size: 13px;
  }
}

/* =============================================
   PROJECT TYPES
   ============================================= */

.project-types {
  width: 100%;
  padding: 120px 40px;
  background: #141414;
}

.project-types__header {
  max-width: 900px;
  margin-bottom: 70px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.project-types__header h2 {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
}

.project-types__header p {
  max-width: 700px;
  font-size: 18px;
  line-height: 1.7;
  color: #888888;
}

.project-types__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.project-type-card {
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 36px;
  transition: all 0.25s ease;
}

.project-type-card:hover {
  border-color: rgba(255, 92, 0, 0.35);
  transform: translateY(-3px);
}

.project-type-card h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 18px;
}

.project-type-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #aaaaaa;
}

/* TABLET */

@media (max-width: 1024px) {
  .project-types {
    padding: 90px 32px;
  }

  .project-types__header h2 {
    font-size: 38px;
  }

  .project-types__header p {
    font-size: 16px;
  }

  .project-type-card h3 {
    font-size: 21px;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .project-types {
    padding: 70px 20px;
  }

  .project-types__header {
    margin-bottom: 40px;
  }

  .project-types__header h2 {
    font-size: 30px;
  }

  .project-types__header p {
    font-size: 15px;
  }

  .project-types__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .project-type-card {
    padding: 24px;
  }

  .project-type-card h3 {
    font-size: 20px;
  }
}

/* ============================================================
   PATCH: support for 7-step Ethanol flow (was 5 steps)
   ============================================================ */

.moz-stream__flow--wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 6px;
  row-gap: 16px;
}

.moz-stream__flow--wrap .moz-flow__step {
  flex: 0 1 auto;
  min-width: 90px;
  text-align: center;
}

.moz-stream__flow--wrap .moz-flow__arrow {
  flex: 0 0 auto;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .moz-stream__flow--wrap .moz-flow__label {
    font-size: 12px;
    line-height: 1.3;
  }

  .moz-stream__flow--wrap {
    gap: 6px 4px;
  }

  .moz-stream__flow--wrap .moz-flow__arrow {
    display: none;
  }

  .moz-stream__flow--wrap .moz-flow__step {
    width: 100%;
    min-width: 0;
  }
}

.moz-stream__conditions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
