/* =============================================
   OM ENERGY — ABOUT US
   ============================================= */

:root {
  --color-accent: #ff5c00;
  --color-accent-hover: #e04e00;

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

/* =============================================
   HERO
   ============================================= */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  background-image: url("../assets/images/hero-images/About\ us.png");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: end;
  justify-content: center;
  padding-left: 40px;
  padding-bottom: 100px;
  padding-right: 40px;
}

/* dark overlay so text reads well */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 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: 60%;
  font-size: 48px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.2;
}

.hero__right {
  height: auto;
  width: 600px;
  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;
}

/* Row that holds primary + secondary CTA */
.hero__cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 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);
}

/* Secondary CTA — outline style, doesn't compete with primary orange */
.hero__cta--secondary {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--color-white);
}

.hero__cta--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

/* =============================================
   WHO WE ARE  — light-ish dark section
   ============================================= */
.who {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 100px;
  padding: 100px 40px;
  background: var(--color-bg-mid);
}

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

.who__title {
  font-size: 48px;
  color: var(--color-text-primary);
  flex-shrink: 0;
}

.who__content {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.who__block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}

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

.who__block-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}

.who__block-text {
  font-size: 20px;
  color: var(--color-text-primary);
  line-height: 1.6;
}

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

.who__value-chip {
  font-size: 16px;
  color: var(--color-text-primary);
  border: 1px solid var(--color-border-mid);
  border-radius: 25px;
  padding: 8px 16px;
  background: var(--color-surface);
}

.who__img {
  height: fit-content;
  width: 100%;
}

/* =============================================
   A MARKET IN TRANSFORMATION — dark overlay image
   ============================================= */
.market-transformation {
  height: 900px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 100px 40px;
  background-image: url("../assets/images/about-us-images/Section-1.png");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.market-transformation::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.market-info__top,
.market-info__bottom {
  position: relative;
  z-index: 1;
}

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

.market-top__title {
  font-size: 48px;
  color: var(--color-white);
}

.market-top__subtitle {
  width: 60%;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.market-info__bottom {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: flex-end;
}

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

.market-bottom__title {
  font-size: 24px;
  color: var(--color-white);
}

.market-bottom__subtitle {
  width: 100%;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
}

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

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

/* =============================================
   WHAT SETS US APART — darkest section
   ============================================= */
.what {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 100px 40px;
  background: var(--color-bg-section);
}

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

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

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

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

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

/* Cards: dark gray — NOT orange */
.what__card {
  height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 16px;
}

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

.card__img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

/* small orange accent label */
.card__label {
  font-size: 12px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.card__title {
  width: 100%;
  font-size: 24px;
  color: var(--color-text-primary);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

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

/* =============================================
   OUR AREAS OF EXPERTISE — mid dark
   ============================================= */
.areas {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 100px 40px;
  background: var(--color-bg-mid);
}

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

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

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

.areas-cards-container {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

/* Area cards: dark gray — NOT orange */
.area__card {
  height: 550px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 16px;
}

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

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

.area-card__subtitle {
  font-size: 16px;
  color: var(--color-text-secondary);
}

.area-card__img {
  height: 200px;
  width: 100%;
}

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

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

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

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

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

/* Leadership cards: dark gray — NOT orange */
.leadership__card {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
}

.leadership-card__info {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  gap: 24px;
  padding: 8px;
}

.leadership-info__title {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  padding: 8px;
}

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

.leadership-card__icon {
  font-size: 24px;
  color: var(--color-accent);
}

.leadership-card__subtitle {
  font-size: 16px;
  color: var(--color-text-secondary);
  padding: 8px;
}

/* =============================================
   GLOBAL PRESENCE — dark section (was orange)
   ============================================= */
.global-presence {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 100px 40px;
  background-color: var(--color-bg-section);
}

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

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

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

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

.global__location {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border-mid);
}

.global__location:last-child {
  border-bottom: none;
}

.global__location-title {
  font-size: 20px;
  color: var(--color-text-primary);
}

.global__location-text {
  font-size: 16px;
  color: var(--color-text-secondary);
}

/* =============================================
   OUR PHILOSOPHY — image section
   ============================================= */
.philosophy {
  height: 700px;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: flex-start;
  padding: 40px 40px 100px;
  background-image: url("../assets/images/about-us-images/section-2.png");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.philosophy::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.philosophy__info {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.philosophy__title {
  font-size: 48px;
  color: var(--color-white);
}

.philosophy__subtitle {
  width: 60%;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
}

/* =============================================
   CTA BANNER — dark bg with orange accent
   ============================================= */
.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);
}

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

/* Footer left: darkest */
.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");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 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 LINKS
   ============================================= */
.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);
}

/* =============================================
   SITEMAP LINKS
   ============================================= */
.footer__sitemap-links {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--color-text-secondary);
  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);
}

/* =============================================
   RESPONSIVE — TABLET (≤ 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 {
    font-size: 44px;
    width: 55%;
  }

  .hero__right {
    width: 420px;
  }

  .hero__sub {
    font-size: 18px;
  }

  .who {
    padding: 80px 32px;
    gap: 60px;
  }

  .who__title {
    font-size: 38px;
    min-width: 200px;
  }

  .who__content {
    width: 65%;
  }

  .who__block-text {
    font-size: 18px;
  }

  .market-transformation {
    height: auto;
    padding: 80px 32px;
  }

  .market-top__title {
    font-size: 38px;
  }

  .market-top__subtitle {
    width: 70%;
    font-size: 18px;
  }

  .market-info__container {
    width: 420px;
  }

  .market-bottom__title {
    font-size: 20px;
  }

  .market-bottom__subtitle {
    font-size: 15px;
  }

  .what {
    padding: 80px 32px;
  }

  .what-info__title {
    font-size: 38px;
  }

  .what-info__subtitle {
    width: 50%;
    font-size: 18px;
  }

  .card__img {
    height: 140px;
    width: 140px;
  }

  .card__title {
    font-size: 20px;
  }

  .card__subtitle {
    font-size: 14px;
  }

  .areas {
    padding: 80px 32px;
  }

  .areas__info {
    padding-bottom: 60px;
  }

  .areas__title {
    font-size: 38px;
  }

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

  .areas-cards-container {
    flex-wrap: wrap;
  }

  .area__card {
    height: auto;
    min-height: 450px;
    width: calc(50% - 12px);
    flex: 0 0 calc(50% - 12px);
  }

  .leadership {
    padding: 80px 32px;
    flex-direction: column;
    gap: 48px;
  }

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

  .leadership__subtitle {
    width: 100%;
    font-size: 18px;
  }

  .leadership__rigth {
    width: 100%;
  }

  .global-presence {
    padding: 80px 32px;
    flex-direction: column;
    gap: 48px;
  }

  .global__title {
    font-size: 38px;
  }

  .global__subtitle {
    width: 100%;
    font-size: 18px;
  }

  .global__location-title {
    font-size: 18px;
  }

  .philosophy {
    height: auto;
    min-height: 500px;
    padding: 60px 32px;
  }

  .philosophy__title {
    font-size: 38px;
  }

  .philosophy__subtitle {
    width: 70%;
    font-size: 18px;
  }

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

/* =============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
  .navbar {
    height: 64px;
    padding: 0 20px;
  }

  .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: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 16px 0;
    overflow-y: auto;
    z-index: 9998;
  }

  .navbar__links--open {
    display: flex;
  }

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

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

  .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.03);
    min-width: 0;
    width: 100%;
  }

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

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

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

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

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

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

  .hero__right {
    width: 100%;
  }

  .hero__sub {
    font-size: 16px;
  }

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

  .hero__cta,
  .hero__cta--secondary {
    text-align: center;
    width: 100%;
  }

  .who {
    padding: 60px 20px;
    gap: 40px;
  }

  .who__info {
    flex-direction: column;
    gap: 20px;
  }

  .who__title {
    font-size: 32px;
  }

  .who__content {
    width: 100%;
  }

  .who__block-text {
    font-size: 16px;
  }

  .who__value-chip {
    font-size: 14px;
    padding: 6px 12px;
  }

  .market-transformation {
    height: auto;
    padding: 60px 20px;
  }

  .market-top__title {
    font-size: 32px;
  }

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

  .market-info__bottom {
    justify-content: flex-start;
  }

  .market-info__container {
    width: 100%;
  }

  .market-bottom__title {
    font-size: 18px;
  }

  .market-bottom__subtitle {
    font-size: 14px;
  }

  .what {
    padding: 60px 20px;
  }

  .what__info {
    flex-direction: column;
    gap: 16px;
    padding-bottom: 48px;
  }

  .what-info__title {
    font-size: 32px;
  }

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

  .what-cards__row {
    flex-direction: column;
  }

  .what__card {
    height: 410px;
    width: 100%;
  }

  .card__img {
    height: 120px;
    width: 120px;
  }

  .card__title {
    font-size: 18px;
  }

  .card__subtitle {
    font-size: 14px;
  }

  .areas {
    padding: 60px 20px;
  }

  .areas__info {
    flex-direction: column;
    gap: 16px;
    padding-bottom: 40px;
  }

  .areas__title {
    font-size: 32px;
  }

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

  .areas-cards-container {
    flex-direction: column;
  }

  .area__card {
    width: 100%;
    height: auto;
  }

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

  .area-card__subtitle {
    font-size: 14px;
  }

  .leadership {
    padding: 60px 20px;
    flex-direction: column;
    gap: 40px;
  }

  .leadership__left {
    width: 100%;
  }

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

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

  .leadership__rigth {
    width: 100%;
  }

  .leadership__card {
    flex-direction: column;
  }

  .leadership-card__img {
    width: 100%;
    height: 240px;
    object-fit: cover;
  }

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

  .leadership-card__subtitle {
    font-size: 13px;
  }

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

  .global__title {
    font-size: 32px;
  }

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

  .global__location-title {
    font-size: 16px;
  }

  .global__location-text {
    font-size: 14px;
  }

  .philosophy {
    height: auto;
    min-height: 400px;
    padding: 60px 20px;
  }

  .philosophy__title {
    font-size: 32px;
  }

  .philosophy__subtitle {
    width: 100%;
    font-size: 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;
  }

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

.governance {
  padding: 100px 40px;
  background: #141414;
}

.governance__header {
  max-width: 900px;
  margin-bottom: 50px;
}

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

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

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

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

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

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

.track-record {
  padding: 100px 40px;
  background: #111;
}

.track-record__header {
  text-align: center;
  margin-bottom: 60px;
}

.track-record__header h2 {
  color: #fff;
  font-size: 48px;
}

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

.track-item {
  text-align: center;
}

.track-item h3 {
  font-size: 60px;
  color: #ff5c00;
}

.track-item p {
  color: #fff;
}

@media (max-width: 768px) {
  .governance,
  .track-record {
    padding: 60px 20px;
  }

  .governance__header h2,
  .track-record__header h2 {
    font-size: 32px;
  }

  .governance__grid,
  .track-record__grid {
    grid-template-columns: 1fr;
  }
}
