:root {
  --green-950: #043923;
  --green-900: #064a2c;
  --green-800: #075d37;
  --green-700: #087244;
  --green-100: #eaf5ef;
  --gold: #f2bd00;
  --gold-soft: #fff4c8;
  --white: #ffffff;
  --text: #142018;
  --muted: #5d6963;
  --line: #e2e8e4;
  --soft: #f6f8f7;
  --container: 1460px;
  --radius: 22px;
  --shadow: 0 20px 55px rgba(4, 57, 35, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 128px;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 18px;
  z-index: 9999;
  padding: 12px 18px;
  color: var(--white);
  background: var(--green-950);
  border-radius: 10px;
}

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

.topbar {
  color: var(--white);
  background: var(--green-950);
  font-size: 15px;
}

.topbar__inner {
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar__inner p {
  margin: 0;
}

.topbar__contact {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(4, 57, 35, 0.08);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.2s ease;
}

.header.scrolled {
  box-shadow: 0 10px 28px rgba(4, 57, 35, 0.10);
}

.header__inner {
  min-height: 145px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.identity {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 520px;
}

.identity img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.identity__text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.identity__text small {
  color: var(--green-800);
  font-size: 16px;
  font-weight: 800;
}

.identity__text strong {
  margin: 7px 0 3px;
  font-size: 20px;
}

.identity__text b {
  color: var(--green-700);
  font-size: 20px;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navigation a {
  padding: 14px 8px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.navigation a.active {
  border-bottom: 4px solid var(--gold);
}

.navigation__button {
  margin-left: 10px;
  padding: 20px 28px !important;
  color: #072d1c;
  background: var(--gold);
  border-radius: 14px;
}

.menu-toggle {
  display: none;
}

.page-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(242, 189, 0, 0.20), transparent 28%),
    linear-gradient(120deg, rgba(4, 57, 35, 0.98), rgba(7, 93, 55, 0.92));
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -330px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.025),
    0 0 0 160px rgba(255, 255, 255, 0.018);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 90px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.page-hero h1,
.section h2,
.cta h2 {
  font-family: "Poppins", Arial, sans-serif;
}

.page-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1.08;
}

.page-hero__description {
  max-width: 830px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 27px;
  border-radius: 10px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #07351f;
  background: var(--gold);
}

.button--outline {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.75);
}

.section-nav {
  position: sticky;
  top: 145px;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(4, 57, 35, 0.06);
}

.section-nav__inner {
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  padding: 13px 0;
  scrollbar-width: none;
}

.section-nav__inner::-webkit-scrollbar {
  display: none;
}

.section-nav a {
  padding: 9px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 10px;
}

.section-nav a:hover {
  color: var(--green-800);
  background: var(--green-100);
}

.section {
  padding: 105px 0;
}

.section--white {
  background: var(--white);
}

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

.section h2 {
  margin: 0 0 22px;
  color: var(--green-950);
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.16;
}

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

.section-heading {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading--left {
  max-width: 800px;
  margin-left: 0;
  text-align: left;
}

.history {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: start;
}

.history__copy .lead {
  color: #35423c;
  font-size: 18px;
}

.history__copy p {
  margin: 0 0 19px;
}

.timeline-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  padding-bottom: 34px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 44px;
  bottom: 0;
  left: 47px;
  width: 2px;
  background: var(--green-700);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-year {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green-800);
  border: 4px solid var(--soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.timeline-item--gold .timeline-year {
  color: var(--green-950);
  background: var(--gold);
}

.timeline-item h3 {
  margin: 5px 0 8px;
  color: var(--green-950);
  font-size: 20px;
}

.timeline-item p {
  margin: 0;
  font-size: 15px;
}

.vision-mission {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
}

.vision-card,
.mission-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.vision-card {
  padding: 50px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(242, 189, 0, 0.18), transparent 28%),
    linear-gradient(145deg, var(--green-900), var(--green-700));
}

.mission-card {
  padding: 50px;
  background: var(--white);
  border: 1px solid var(--line);
}

.card-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--green-950);
  background: var(--gold);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 800;
}

.card-icon--green {
  color: var(--white);
  background: var(--green-800);
}

.card-label {
  margin: 0 0 10px !important;
  color: var(--gold) !important;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.card-label--green {
  color: var(--green-700) !important;
}

.vision-card h3 {
  margin: 0 0 22px;
  font-size: 32px;
  line-height: 1.25;
}

.vision-card p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.mission-list {
  display: grid;
  gap: 4px;
}

.mission-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.mission-item:last-child {
  border-bottom: 0;
}

.mission-item span {
  color: var(--gold);
  font-weight: 800;
}

.mission-item p {
  margin: 0;
}

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

.goal-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.goal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.goal-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 14px;
  font-size: 24px;
}

.goal-card h3 {
  margin: 0 0 10px;
  color: var(--green-950);
  font-size: 20px;
}

.goal-card p {
  margin: 0;
  font-size: 15px;
}

.legality {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 15%, rgba(242, 189, 0, 0.14), transparent 32%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
}

.legality__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.legality h2 {
  color: var(--white);
}

.legality__copy > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.80);
}

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

.legal-card {
  padding: 14px 38px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.legal-card dl {
  margin: 0;
}

.legal-card dl > div {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 26px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.legal-card dl > div:last-child {
  border-bottom: 0;
}

.legal-card dt {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.legal-card dd {
  margin: 0;
  color: var(--green-950);
  font-weight: 700;
}

.national {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: center;
}

.structure-card {
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.structure-box {
  padding: 22px;
  text-align: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.structure-box small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.structure-box strong {
  color: var(--green-950);
  font-size: 19px;
}

.structure-box--dark {
  background: var(--green-950);
  border-color: var(--green-950);
}

.structure-box--dark small,
.structure-box--dark strong {
  color: var(--white);
}

.structure-box--gold {
  background: var(--gold-soft);
  border: 2px solid var(--gold);
}

.structure-line {
  width: 2px;
  height: 30px;
  display: block;
  margin: 0 auto;
  background: var(--green-700);
}

.national__copy p {
  margin: 0 0 18px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin-top: 30px;
}

.check-list > div {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 13px;
}

.check-list span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green-700);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.check-list p {
  margin: 0;
}

.cta {
  padding: 90px 0;
  color: var(--white);
  background: linear-gradient(120deg, var(--green-950), var(--green-800));
}

.cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: center;
}

.cta h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.18;
}

.cta p:not(.section-kicker) {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.80);
}

.cta__actions {
  min-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer {
  padding-top: 75px;
  color: rgba(255, 255, 255, 0.72);
  background: #052d1e;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
  gap: 54px;
  padding-bottom: 55px;
}

.identity--footer {
  min-width: 0;
}

.identity--footer .identity__text small,
.identity--footer .identity__text strong,
.identity--footer .identity__text b {
  color: var(--white);
}

.footer h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 16px;
}

.footer a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
}

.footer__about > p {
  max-width: 430px;
  margin-top: 22px;
}

.footer__bottom {
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer__bottom p {
  margin: 0;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 950;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 10px 25px rgba(4, 57, 35, 0.25);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.25s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .header__inner {
    min-height: 92px;
  }

  .identity {
    min-width: 0;
  }

  .identity img {
    width: 62px;
    height: 62px;
  }

  .identity__text small {
    font-size: 12px;
  }

  .identity__text strong,
  .identity__text b {
    font-size: 15px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    display: block;
    border: 0;
    background: #eef5f1;
    border-radius: 10px;
  }

  .menu-toggle span {
    width: 24px;
    height: 2px;
    display: block;
    margin: 5px auto;
    background: var(--green-900);
    transition: 0.2s ease;
  }

  .navigation {
    position: fixed;
    top: 104px;
    right: 18px;
    left: 18px;
    max-height: calc(100vh - 124px);
    overflow-y: auto;
    display: grid;
    gap: 5px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: 0.25s ease;
  }

  .navigation.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navigation a {
    padding: 13px 14px;
  }

  .navigation__button {
    margin-left: 0;
    text-align: center;
  }

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

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

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

  .section-nav {
    top: 92px;
  }

  .history,
  .legality__grid,
  .national {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .vision-mission {
    grid-template-columns: 1fr;
  }

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

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

  .cta__actions {
    flex-direction: row;
  }

  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer__grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .topbar {
    display: none;
  }

  .header__inner {
    min-height: 74px;
  }

  .identity__text {
    display: none;
  }

  .identity img {
    width: 50px;
    height: 50px;
  }

  .navigation {
    top: 86px;
  }

  .section-nav {
    top: 74px;
  }

  .section-nav__inner {
    justify-content: flex-start;
  }

  .page-hero {
    min-height: 560px;
  }

  .page-hero__content {
    padding: 76px 0;
  }

  .page-hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .page-hero__description {
    font-size: 17px;
  }

  .page-hero__actions {
    flex-direction: column;
  }

  .page-hero__actions .button {
    width: 100%;
  }

  .section {
    padding: 78px 0;
  }

  .section h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .timeline-card,
  .vision-card,
  .mission-card,
  .structure-card {
    padding: 28px 22px;
  }

  .timeline-item {
    grid-template-columns: 76px 1fr;
    gap: 14px;
  }

  .timeline-item::before {
    left: 37px;
  }

  .timeline-year {
    width: 76px;
    font-size: 11px;
  }

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

  .legal-card {
    padding: 10px 22px;
  }

  .legal-card dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }

  .cta__actions {
    flex-direction: column;
  }

  .cta__actions .button {
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__grid > div:last-child {
    grid-column: auto;
  }

  .footer__bottom {
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
