:root {
  --ink: #10141d;
  --ink-2: #18202c;
  --ink-3: #202b39;
  --muted: #687487;
  --line: #dfe4ec;
  --paper: #ffffff;
  --soft: #f5f6f8;
  --soft-2: #eceff3;
  --orange: #f47b20;
  --orange-dark: #c95114;
  --blue: #28445f;
  --shadow: 0 22px 60px rgba(16, 20, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.62;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(223, 228, 236, 0.92);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #3a4655;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.lang-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.hero {
  background: var(--ink);
  color: #fff;
}

.corporate-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 86px 0 70px;
}

.corporate-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244, 123, 32, 0.14), rgba(40, 68, 95, 0.16)),
    linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 54%, #121923 100%);
}

.corporate-hero::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}

.hero-inner,
.section-inner {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.corporate-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: 68px;
  align-items: center;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

[dir="rtl"] .eyebrow {
  text-transform: none;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 19px;
  border: 1px solid var(--orange);
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  line-height: 1.2;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
  color: #fff;
}

.button.secondary.dark {
  border-color: var(--line);
  color: var(--ink);
}

.identity-panel {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
}

.identity-panel img {
  width: 142px;
  height: 142px;
  display: block;
  object-fit: contain;
  margin-bottom: 34px;
}

.identity-panel dl {
  display: grid;
  gap: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.14);
}

.identity-panel dl div {
  padding: 18px 0;
  background: rgba(16, 20, 29, 0.82);
}

.identity-panel dt {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.identity-panel dd {
  margin: 0;
  color: #fff;
  font-weight: 800;
}

.section {
  padding: 92px 0;
}

.intro-section {
  background: #fff;
}

.statement-grid,
.group-grid,
.evidence-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 64px;
  align-items: start;
}

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

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

.section-heading p,
.copy-block p,
.contact-layout > div:first-child p {
  color: var(--muted);
  font-size: 18px;
}

.copy-block p:last-child {
  margin-bottom: 0;
}

.group-section {
  background: var(--soft);
}

.group-card {
  padding: 42px;
  background: var(--ink);
  color: #fff;
}

.group-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.fact-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-inline-start: 1px solid var(--line);
  background: #fff;
}

.fact-matrix div {
  min-height: 178px;
  padding: 28px;
  border-inline-end: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-matrix strong {
  display: block;
  margin-bottom: 22px;
  color: var(--orange-dark);
  font-size: 34px;
  line-height: 1;
}

.fact-matrix span {
  color: var(--muted);
  font-weight: 700;
}

.operating-section {
  background: #fff;
}

.operations-grid,
.stakeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.operation,
.stakeholder-grid article {
  min-height: 250px;
  padding: 30px;
  background: #fff;
}

.operation span {
  display: block;
  margin-bottom: 36px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.operation p,
.stakeholder-grid p,
.contact-card p {
  color: var(--muted);
}

.evidence-section {
  background: var(--ink);
  color: #fff;
}

.evidence-grid {
  align-items: center;
}

.evidence-main {
  margin: 0;
  min-height: 520px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.evidence-main img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
}

.evidence-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.mini-gallery img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.stakeholder-section {
  background: var(--soft-2);
}

.contact-section {
  background: #fff;
}

.contact-card {
  padding: 34px;
  border-top: 6px solid var(--orange);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.contact-card a {
  font-weight: 900;
}

.contact-card hr {
  height: 1px;
  margin: 24px 0;
  border: 0;
  background: var(--line);
}

.site-footer {
  padding: 34px 0;
  background: #0b0f16;
  color: #fff;
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer p {
  margin: 0;
  color: #cbd5e1;
}

@media (max-width: 1020px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .corporate-hero {
    min-height: auto;
    padding: 74px 0 62px;
  }

  .corporate-hero-grid,
  .statement-grid,
  .group-grid,
  .evidence-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .operations-grid,
  .stakeholder-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .brand {
    white-space: normal;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 31px;
  }

  .lead,
  .section-heading p,
  .copy-block p,
  .contact-layout > div:first-child p {
    font-size: 17px;
  }

  .section {
    padding: 62px 0;
  }

  .identity-panel,
  .group-card,
  .operation,
  .stakeholder-grid article,
  .contact-card {
    padding: 24px;
  }

  .identity-panel img {
    width: 110px;
    height: 110px;
  }

  .fact-matrix,
  .mini-gallery {
    grid-template-columns: 1fr;
  }

  .evidence-main,
  .evidence-main img {
    min-height: 320px;
  }

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

@media (max-width: 420px) {
  .nav,
  .hero-inner,
  .section-inner,
  .footer {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: 34px;
  }

  .button {
    width: 100%;
  }
}
