@font-face {
  font-family: "KZ Circe";
  src: url("../fonts/KZCirce-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "KZ Circe";
  src: url("../fonts/KZCirce-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "KZ Circe";
  src: url("../fonts/KZCirce-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "KZ Circe";
  src: url("../fonts/KZCirce-LightItalic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "KZ Circe";
  src: url("../fonts/KZCirce-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "KZ Circe";
  src: url("../fonts/KZCirce-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "KZ Circe";
  src: url("../fonts/KZCirce-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "KZ Circe";
  src: url("../fonts/KZCirce-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {

  --color-primary: #0A3263;
  --color-primary-dark: #061D3A;
  --color-accent: #FEB101;
  --color-ink: #0A0A0B;
  --color-ink-muted: #5B6152;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F4F5F6;
  --color-border: #E2E4E6;
  --color-white: #FFFFFF;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 8px;
  
  --font-sans: "KZ Circe", ui-sans-serif, system-ui, sans-serif;
  
  --text-xs: 0.9rem;
  --text-sm: 0.9rem;
  --text-base: 1rem;
  --text-md: 1.25rem;
  --text-lg: 1.563rem;
  --text-xl: 1.953rem;
  --text-2xl: 2.441rem;
  --text-3xl: 3.052rem;
  --text-4xl: 3.815rem;
  
  --leading-tight: 1.1;
  --leading-snug: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  
  --maxw: 1360px;
  --header-h: 88px;
}

*,
*::before,
*::after {

  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {

scroll-behavior: smooth;
font-size: 16px;
scroll-padding-top: calc(var(--header-h) + 24px);
}

body {

  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-ink);
  line-height: var(--leading-normal);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {

  font-family: var(--font-sans);
  color: var(--color-ink);
  font-weight: 400;
  line-height: var(--leading-tight);
}

h1 em,
h2 em,
h3 em {

  font-style: italic;
  font-weight: 400;
}

a {

  color: inherit;
  text-decoration: none;
}

ul {

  list-style: none;
}

img {

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

::selection {

  background: var(--color-accent);
  color: var(--color-primary-dark);
}

.container {

  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 2.5rem;
}

.section {

  padding: 7rem 0;
}

.section--alt {

  background: var(--color-bg-alt);
}

.section--dark {

  background: var(--color-primary-dark);
  color: var(--color-white);
}

.section--primary {

  background: var(--color-primary);
  color: var(--color-white);
}

.section__head {

  max-width: 760px;
  margin-bottom: 3.5rem;
}

.eyebrow {

  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.section--dark .eyebrow,
.section--primary .eyebrow {

  color: var(--color-accent);
}

.section__title {

  font-size: var(--text-3xl);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.06;
}

.section--dark .section__title,
.section--primary .section__title {

  color: var(--color-white);
}

.section__sub {

  margin-top: 1.25rem;
  font-size: var(--text-md);
  font-weight: 400;
  color: var(--color-ink-muted);
  line-height: var(--leading-normal);
}

.section--dark .section__sub,
.section--primary .section__sub {

  color: rgba(255, 255, 255, 0.72);
}

.btn {

display: inline-flex; align-items: center; justify-content: center; gap: .65rem;
font-family: var(--font-sans); font-size: var(--text-sm); font-weight: 700; line-height: 1.25;
padding: 1rem 1.75rem; border: 1px solid transparent; border-radius: 999px; cursor: pointer;
transition: background-color .2s, color .2s, border-color .2s, transform .25s cubic-bezier(.25, 1, .5, 1),
        box-shadow .25s ease;
white-space: normal; text-align: center;
}

.btn svg {

  width: 16px;
  height: 16px;
  flex-shrink: 0;
}



.btn--primary {

  background: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {

  background: var(--color-primary-dark);
}

.btn--accent {

  background: var(--color-accent);
  color: var(--color-primary-dark);
}

.btn--accent:hover {

  background: #ffc933;
}

.btn--dark {

  background: var(--color-ink);
  color: var(--color-white);
}

.btn--dark:hover {

  background: var(--color-primary);
}

.btn--outline {

  background: transparent;
  border-color: var(--color-ink);
  color: var(--color-ink);
}

.btn--outline:hover {

  background: var(--color-ink);
  color: var(--color-white);
}

.btn--outline-light {

  background: transparent;
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
}

.btn--outline-light:hover {

  background: rgba(255, 255, 255, .14);
}

.btn--sm {

  padding: 0.75rem 1.25rem;
  font-size: var(--text-xs);
}

.btn--lg {

  padding: 1.125rem 2rem;
  font-size: var(--text-base);
}

.dot-accent {

  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  display: inline-block;
}

.header {

  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
  transition: background-color 0.25s, border-color 0.25s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header__inner {

display: flex; align-items: center; justify-content: space-between; gap: 2rem; height: var(--header-h);
}

.header__logo {

  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header__logo img {

  width: auto;
  height: 40px;
}

.header__nav {

  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .25rem;
}

.nav__list {

  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav__item {

  position: relative;
}

.nav__item:hover .nav__dropdown {

  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown {

  position: absolute;
  top: calc(100% + 14px);
  left: 0.75rem;
  transform: translateY(6px);
  min-width: 200px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transition: .22s;
  z-index: 60;
}

.nav__dropdown-link {

  display: block;
  padding: .7rem .9rem;
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  border-radius: var(--radius-sm);
  transition: .15s;
}

.nav__dropdown-link:hover {

  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.nav__link {

  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  white-space: nowrap;
  border-radius: 999px;
  align-items: center;
  gap: .25rem;
  padding: .5rem .75rem;
  font-weight: 500;
  transition: color 0.15s;
  display: flex;
}

.nav__link svg {

  width: 12px;
  height: 12px;
  opacity: 0.7;
}

.nav__link:hover,
.nav__link--active {

  color: var(--color-primary);
  background-color: #0a32630d;
}

.nav__link--active {

  font-weight: 700;
}

.header__actions {

  flex-shrink: 0;
  align-items: center;
  gap: 1.25rem;
  display: flex;
}

.lang-switcher {

  position: relative;
}

.lang-switcher__btn {

  font-size: var(--text-sm);
  color: var(--color-ink);
  cursor: pointer;
  border: 1px solid var(--color-border);
  background: none;
  border-radius: 999px;
  align-items: center;
  gap: .375rem;
  padding: .5rem .75rem;
  font-weight: 500;
  transition: border-color .15s;
  display: flex;
}

.lang-switcher__btn:hover {

  border-color: var(--color-primary);
}

.lang-switcher__btn svg {

  width: 14px;
  height: 14px;
  transition: transform .15s;
}

.lang-switcher--open .lang-switcher__btn svg {

  transform: rotate(180deg);
}

.lang-switcher__dropdown {

  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  opacity: 0;
  visibility: hidden;
  z-index: 300;
  min-width: 120px;
  padding: .375rem;
  transition: all .15s;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  transform: translateY(-4px);
}

.lang-switcher--open .lang-switcher__dropdown {

  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher__option {

  font-size: var(--text-xs);
  color: var(--color-ink);
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: .5rem .75rem;
  font-weight: 500;
  transition: background-color .15s;
  display: block;
}

.lang-switcher__option:hover {

  background-color: var(--color-bg-alt);
}

.lang-switcher__option--active {

  color: var(--color-primary);
  background-color: #0a32630f;
  font-weight: 700;
}

.header__burger {

  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.header__burger span {

  width: 24px;
  height: 2px;
  background: var(--color-ink);
  transition: 0.3s;
}

.mobile-nav {

display: none;
position: fixed;
top: var(--header-h);
right: 0;
bottom: auto;
width: min(88vw, 360px);
height: calc(100vh - var(--header-h));
height: calc(100dvh - var(--header-h));
background: var(--color-bg);
border-left: 1px solid var(--color-border);
padding: 1rem 1.5rem max(1rem, env(safe-area-inset-bottom));
flex-direction: column;
gap: .2rem;
overflow-y: auto;
overscroll-behavior: contain;
visibility: hidden;
pointer-events: none;
transform: translateX(100%);
transition: transform .3s ease, visibility .3s;
z-index: 95;
}

.mobile-nav.is-open {

transform: translateX(0); visibility: visible; pointer-events: auto;
}

.mobile-nav__link {

flex-shrink: 0; padding: .85rem .4rem; font-size: var(--text-base); color: var(--color-ink); border-bottom: 1px solid var(--color-border); overflow-wrap: anywhere;
}

.nav-overlay {

  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 50, 99, 0.5);
  z-index: 90;
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-overlay.is-open {

  opacity: 1;
}

.hero {

  --hero-unit: clamp(0.7rem, 0.35rem + 0.7vh + 0.35vw, 1.5rem);

  background: var(--color-bg-alt);
  
  min-height: min(calc(100svh - var(--header-h)), 56rem);
  display: flex;
  align-items: center;
  
  padding-top: 120px;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.hero__wrap {

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.75rem, 2.5vw, 4rem);
  
  align-items: stretch;
}

.hero__eyebrow {

  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: calc(var(--hero-unit) * 1);
}

.hero__title {

  font-weight: 400;
  
  font-size: clamp(2.5rem, 1.4rem + 2.2vw + 1.6vh, 72px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin-bottom: calc(var(--hero-unit) * 1);
}

.hero__title em {

  font-style: italic;
  font-weight: 400;
  color: var(--color-primary);
}

.hero__sub {

  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-ink-muted);
  margin-bottom: calc(var(--hero-unit) * 1.5);
}

.hero__cta {

  display: flex;
  gap: 1rem;
  margin-bottom: calc(var(--hero-unit) * 1.6);
}

.hero__divider {

  width: 100%;
  height: 1px;
  background: var(--color-border);
  margin-bottom: calc(var(--hero-unit) * 1.3);
}

.hero__lower {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.75rem, 1vw, 1rem);
  
  align-items: stretch;
}

.hero__quote {

  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: calc(var(--hero-unit) * 1.1);
  border-radius: var(--radius-md);
}

.hero__quote p {

  
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-ink);
  
  -webkit-text-stroke: 0.22px currentColor;
}

.hero__stats {

  background: color-mix(in srgb, var(--color-primary) 6%, transparent);
  border-radius: var(--radius-md);
  padding: calc(var(--hero-unit) * 1.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: calc(var(--hero-unit) * 0.7);
}

.hero__stat {

  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: calc(var(--hero-unit) * 0.4);
}

.hero__stat:last-child {

  border-bottom: none;
  padding-bottom: 0;
}

.hero__stat-num {

  font-weight: 700;
  font-size: 1.375rem;
  color: var(--color-primary);
  min-width: 3.5rem;
}

.hero__stat-label {

  font-size: var(--text-xs);
  color: var(--color-ink-muted);
}

.hero__visual {

  position: relative;
}

.hero__panel {

  
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.hero__panel img {

  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlap {

position: absolute; right: clamp(.9rem, 1.5vh, 1.5rem); bottom: clamp(.9rem, 1.5vh, 1.5rem);
width: clamp(17rem, 24vw, 20rem); max-width: calc(100% - 2rem);
background: var(--color-bg); border-radius: var(--radius-md); padding: var(--hero-unit);
border: 1px solid var(--color-border); z-index: 10;
}

.hero__badge {

  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: calc(var(--hero-unit) * 0.7);
}

.hero__badge-title {

  font-weight: 700;
  font-size: 21px;
  color: var(--color-ink);
  line-height: 1.2;
}

.hero__overlap p {

  font-size: var(--text-xs);
  line-height: 1.4;
  color: var(--color-ink-muted);
  margin-bottom: 1rem;
}

.hero__tags {

  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero__tag {

  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--color-accent) 16%, transparent);
  color: var(--color-primary);
}

.services__grid {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.services__card {

  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/4;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  transition: transform 0.3s;
}

.services__card:hover {

  transform: translateY(-2px);
}

.services__card-bg {

  position: absolute;
  inset: 0;
  z-index: 0;
}

.services__card-bg img {

  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services__card-overlay {

  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--color-primary) 65%, transparent);
  z-index: 1;
}

.services__top {

  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.services__num {

  font-weight: 700;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
}

.services__icon {

  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.services__icon img {

  width: 24px;
  height: 24px;
  color: var(--color-white);
}

.services__body {

  position: relative;
  z-index: 2;
}

.services__title {

  font-weight: 700;
  font-size: var(--text-md);
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.services__text {

  font-weight: 400;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--leading-relaxed);
  margin-bottom: 1.25rem;
}

.services__actions {

  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reasons__wrap {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.reasons__photo {

  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.reasons__photo img {

  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reasons__intro {

  display: flex;
  flex-direction: column;
}

.reasons__intro .section__title {

  margin-bottom: 1.25rem;
}

.reasons__intro .section__sub {

  margin-bottom: 2rem;
}

.accordion {

  margin-top: 2rem;
}

.accordion__item {

  border-bottom: 1px solid var(--color-border);
  position: relative;
  transition: background-color 0.3s ease;
  z-index: 1;
}

.accordion__item::before {

  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10, 50, 99, 0.015) 0%, rgba(254, 177, 1, 0.015) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.accordion__item:hover::before {

  opacity: 1;
}

.accordion__trigger {

  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1.3125rem;
  font-weight: 700;
  color: var(--color-ink);
  transition: color 0.3s ease, padding-left 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.accordion__item:hover .accordion__trigger {

  padding-left: 1.25rem;
  color: var(--color-primary);
}

.accordion__icon {

  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              border-color 0.3s ease, 
              background-color 0.3s ease, 
              color 0.3s ease;
}

.accordion__item:hover .accordion__icon {

  border-color: var(--color-primary);
  background-color: rgba(10, 50, 99, 0.05);
}

.accordion__item.is-active .accordion__icon {

  transform: none;
  color: var(--color-primary-dark);
  border-color: var(--color-accent);
  background-color: var(--color-accent);
}

.accordion__content {

  height: 0;
  max-height: none !important;
  overflow: hidden;
  font-size: 1.0625rem;
  color: var(--color-ink-muted);
  line-height: var(--leading-relaxed);
  padding-bottom: 0;
  padding-left: 3.75rem;
  transition: none !important; 
}

.accordion__content p {

    padding-bottom: 1rem;
}

.accordion__item.is-active .accordion__content {

  padding-bottom: 0; 
}

.figures__grid {

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.figures__card {

  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s;
}

.figures__card:hover {

  border-color: var(--color-primary);
}

.figures__num {

  font-weight: 400;
  font-size: var(--text-2xl);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.figures__label {

  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  line-height: var(--leading-snug);
}

.news__featured {

  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.news__main {

  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.news__main:hover {

  border-color: var(--color-primary);
}

.news__main-photo {

  height: 300px;
  overflow: hidden;
}

.news__main-photo img {

  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.news__main-body {

  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news__tag {

  display: inline-flex;
  align-self: flex-start;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.75rem;
}

.news__main-title {

  font-weight: 700;
  font-size: var(--text-md);
  color: var(--color-ink);
  margin: 1rem 0 0.75rem;
  line-height: var(--leading-snug);
  flex: 1;
}

.news__main-text {

  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: 1.25rem;
}

.news__main-meta {

  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--color-ink-muted);
}

.news__sidebar {

  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.news__side {

  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex: 1;
  transition: border-color 0.2s;
}

.news__side:hover {

  border-color: var(--color-primary);
}

.news__side-photo {

  width: 100px;
  flex-shrink: 0;
  overflow: hidden;
}

.news__side-photo img {

  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news__side-body {

  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news__side-title {

  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-ink);
  margin-top: 0.625rem;
  line-height: var(--leading-snug);
}

.news__side-meta {

  font-size: var(--text-xs);
  color: var(--color-ink-muted);
  margin-top: 0.75rem;
}

.news__grid {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.news__card {

  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}

.news__card:hover {

  border-color: var(--color-primary);
}

.news__card-photo {

  height: 200px;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.news__card-photo img {

  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news__card-body {

  padding: 1.25rem;
}

.news__card-title {

  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-ink);
  margin: 0.875rem 0 0.75rem;
  line-height: var(--leading-snug);
}

.news__card-meta {

  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--color-ink-muted);
}

.news__tabs {

  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.news__tab {

  background: var(--color-bg);
  color: var(--color-ink);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all 0.2s;
}

.news__tab:hover {

  border-color: var(--color-primary);
}

.news__tab--active {

  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.partners__slider {

  display: flex;
  gap: 1.5rem;
  overflow: hidden;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
  position: relative;
}

.partners__slider::-webkit-scrollbar {

  display: none;
}

.partners__track {

  display: flex;
  gap: 1.5rem;
  animation: scroll-partners 40s linear infinite;
}

.partners__slider:hover .partners__track {

  animation-play-state: paused;
}

@keyframes scroll-partners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partners__slider::-webkit-scrollbar {

  display: none;
}

.partners__item {

  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 180px;
  height: 100px;
  transition: border-color 0.2s, transform 0.2s;
  scroll-snap-align: start;
}

.partners__item:hover {

  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.partners__item img {

  max-height: 50px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.partners__item:hover img {

  opacity: 1;
}

.partners__item img[src*="beeline"],
.partners__item img[src*="fixprice"],
.partners__item img[src*="haileybury"],
.partners__item img[src*="potential-oil"],
.partners__item img[src*="caspiy-neft"] {

  max-height: 56px;
}

.partners__item img[src*="schlumberger"],
.partners__item img[src*="airastana"],
.partners__item img[src*="almaty-airport"],
.partners__item img[src*="fortebank"],
.partners__item img[src*="cocacola"],
.partners__item img[src*="sagiz-petroleum"] {

  max-width: 160px;
  max-height: 44px;
}

.cta {

  position: relative;
  padding-block: 6rem;
  overflow: hidden;
  background-color: var(--color-primary);
  color: var(--color-white);
}

.cta__bg {

  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta__bg img {

  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: grayscale(1);
}

.cta__inner {

  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta__content {

  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta__badge {

  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.cta__title {

  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--color-white);
  line-height: var(--leading-tight);
}

.cta__sub {

  font-weight: 400;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--leading-relaxed);
  max-width: 540px;
}

.cta__action {

  display: flex;
  justify-content: flex-end;
}

.footer {

  background-color: var(--color-primary-dark);
  color: var(--color-white);
  padding-block: 4rem 1.5rem;
  margin-top: 0;
}

.footer__main {

  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__brand h3 {

  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.footer__logo {

  width: auto;
  height: 46px;
  margin-bottom: 0.75rem;
}

.footer__brand p {

  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: var(--leading-relaxed);
  max-width: 280px;
}

.footer__col h4 {

  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__col ul {

  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__col--action {

  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-end;
}

.footer__socials {

display: flex; flex-wrap: wrap; gap: .5rem;
}

.footer__social {

width: 38px; height: 38px; flex: 0 0 38px; border-radius: 50%; background: var(--color-primary); color: var(--color-white); display: flex; align-items: center; justify-content: center; transition: background-color .2s, color .2s;
}

.footer__social svg {

width: 16px; height: 16px; display: block; flex-shrink: 0; fill: currentColor;
}

.footer__bottom {

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.45);
}

.footer__agency {

  color: var(--color-accent);
  font-weight: 700;
}

.footer__agency:hover {

  text-decoration: underline;
}

.breadcrumb {

  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.breadcrumb__inner {

  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 1.1rem 0;
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
}

.breadcrumb a {

  color: var(--color-ink-muted);
  transition: color 0.15s;
}

.breadcrumb a:hover {

  color: var(--color-primary);
}

.breadcrumb__current {

  color: var(--color-ink);
  font-weight: 600;
}

.breadcrumb__sep {

  color: var(--color-border);
}

.page-hero {

  padding: 7.5rem 0 4.5rem;
  background: var(--color-primary);
  color: var(--color-white);
}

.page-hero__title {

  font-weight: 500;
  font-size: var(--text-3xl);
  color: var(--color-white);
  margin-bottom: 0.75rem;
  line-height: var(--leading-tight);
}

.page-hero__sub {

  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--leading-relaxed);
  max-width: 560px;
}

.page-hero--split {

  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: center;
}

.page-hero--split .page-hero__right {

  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-hero__stats {

  display: flex;
  flex-direction: column;
  gap: 0;
}

.page-hero__stat {

  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1rem 0;
}

.page-hero__stat-value {

  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--color-white);
  line-height: 1;
}

.page-hero__stat-label {

  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
}

.gallery__grid {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery__item {

  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery__item img {

  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery__item:hover img {

  transform: scale(1.04);
}

.card-grid {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card-grid--2 {

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

.card {

  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: border-color 0.2s;
}

.card:hover {

  border-color: var(--color-primary);
}

.card--alt {

  background: var(--color-bg-alt);
}

.card--dark {

  background: var(--color-primary-dark);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
}

.card--dark:hover {

  border-color: var(--color-accent);
}

.card__icon {

  width: 48px;
  height: 48px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

.card__icon svg {

  width: 22px;
  height: 22px;
  color: var(--color-white);
}

.card__title {

  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-ink);
  margin-bottom: 0.75rem;
}

.card--dark .card__title {

  color: var(--color-white);
}

.card__text {

  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  line-height: var(--leading-relaxed);
}

.card--dark .card__text {

  color: rgba(255, 255, 255, 0.65);
}

.card--primary {

  background: var(--color-primary);
  border-color: transparent;
  color: var(--color-white);
}

.card--primary:hover {

  border-color: var(--color-accent);
}

.card--primary .card__title {

  color: var(--color-white);
}

.card--primary .card__text {

  color: rgba(255, 255, 255, 0.75);
}

.card--primary .card__icon {

  background: var(--color-accent);
}

.card--primary .card__icon svg {

  color: var(--color-primary-dark);
}

.card__num {

  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.section__title--sm {

  font-size: var(--text-2xl);
}

.faq__wrap {

  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: start;
}

.faq__intro {

  position: sticky;
  top: 100px;
}

.faq__list {

  display: flex;
  flex-direction: column;
}

.faq-item {

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

.faq-item:first-child {

  border-top: 1px solid var(--color-border);
}

.faq-trigger {

  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-ink);
  transition: color 0.2s;
}

.faq-trigger:hover {

  color: var(--color-primary);
}

.faq-trigger__icon {

  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item.is-active .faq-trigger__icon {

  transform: none;
}

.faq-content {

  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  visibility: hidden;
  padding-bottom: 0;
  color: var(--color-ink-muted);
  transition: grid-template-rows 0.3s ease, padding-bottom 0.3s ease, visibility 0s linear 0.3s;
}

.faq-content__inner {

  min-height: 0;
  overflow: hidden;
  font-size: var(--text-base);
  line-height: 1.65;
}

.faq-item.is-active .faq-content {

  grid-template-rows: 1fr;
  visibility: visible;
  padding-bottom: 1.5rem;
  transition: grid-template-rows 0.3s ease, padding-bottom 0.3s ease, visibility 0s;
}

.faq-content__inner p {

  margin: 0 0 1rem;
}

.faq-content__inner p:last-child {

  margin-bottom: 0;
}

.faq-content__inner strong {

  font-weight: 700;
  color: var(--color-ink);
}

.faq-content__inner ul,
.faq-content__inner ol {

  margin: 0.85rem 0 1rem;
  padding-left: 1.4rem;
}

.faq-content__inner ul {

  list-style: disc;
}

.faq-content__inner ol {

  list-style: decimal;
}

.faq-content__inner li {

  padding-left: 0.2rem;
  line-height: 1.6;
}

.faq-content__inner li + li {

  margin-top: 0.45rem;
}

.faq-content__inner h2,
.faq-content__inner h3,
.faq-content__inner h4 {

  margin: 1.5rem 0 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-ink);
}

.faq-content__inner h2:first-child,
.faq-content__inner h3:first-child,
.faq-content__inner h4:first-child {

  margin-top: 0;
}

.faq-content__inner a {

  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form__group {

  margin-bottom: 1.25rem;
}

.form__label {

  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.form__input {

  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: var(--color-bg);
  outline: none;
  transition: border-color 0.2s;
  margin-top: 0;
}

.form__input:focus {

  border-color: var(--color-primary);
}

.form__input::placeholder {

  color: var(--color-ink-muted);
  opacity: 0.6;
}

.form__textarea {

  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: var(--color-bg);
  outline: none;
  resize: vertical;
  transition: border-color 0.2s;
}

.form__textarea:focus {

  border-color: var(--color-primary);
}

.form__textarea::placeholder {

  color: var(--color-ink-muted);
  opacity: 0.6;
}

.form__grid {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__grid--3 {

  grid-template-columns: repeat(3, 1fr);
}

.form__submit {

  justify-self: start;
  margin-top: .5rem;
}

.contacts__grid {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contacts__info {

  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contacts__item {

  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.contacts__item-icon {

  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contacts__item-icon svg {

  width: 18px;
  height: 18px;
  color: var(--color-white);
}

.contacts__item-label {

  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.contacts__item-value {

  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-ink);
}

.contacts__item-value a {

  color: var(--color-primary);
}

.contacts__item-value a:hover {

  color: var(--color-accent);
}

.split {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split__photo {

  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.split__photo img {

  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accordion {

  margin-top: 2rem;
}

.split .accordion.mt-4 {
 margin-top: 1.75rem; }

.split .btn.mt-3 {
 margin-top: 1.5rem; }

.split .section__sub.mt-2 {
 margin-top: 0.875rem; }

.split .section__title.mt-2 {
 margin-top: 0.75rem; }

.split .accordion__trigger {
 padding-top: 0.85rem; padding-bottom: 0.85rem; }

.about-split .about-statement {
 margin-top: 0.875rem; }

.about-split .mission-body.mt-2 {
 margin-top: 1.1rem; }

.about-split .statlist {
 margin-top: 1.5rem; }

.process__wrap {

  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.process__diagram {

  position: sticky;
  top: 120px;
}

.process__svg {

  width: 100%;
  max-width: 300px;
}

.process__list {

  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process__step {

  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.process__step-num {

  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-md);
}

.process__step-title {

  font-weight: 700;
  font-size: var(--text-md);
  color: var(--color-ink);
  margin-bottom: 0.5rem;
}

.process__step-text {

  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  line-height: var(--leading-relaxed);
}

.documents__grid {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.doc-card {

  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
  display: block;
}

.doc-card:hover {

  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.doc-card__icon {

  width: 48px;
  height: 48px;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

.doc-card__icon svg {

  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.doc-card__title {

  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-ink);
  margin-bottom: 0.5rem;
}

.doc-card__size {

  font-size: var(--text-xs);
  color: var(--color-ink-muted);
}

.mt-05 {

  margin-top: 0.5rem;
}

.mt-1 {

  margin-top: 1rem;
}

.mt-2 {

  margin-top: 2rem;
}

.mt-3 {

  margin-top: 3rem;
}

.mt-4 {

  margin-top: 4rem;
}

.text-center {

  text-align: center;
}

.reveal-up {

  will-change: transform, opacity;
}

.scrollbar-hide {

  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {

  display: none;
}

.page-hero {

  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding: 5rem 0;
}

.page-hero__bg {

  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg img {

  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__bg::after {

  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 29, 58, .6) 0%, rgba(6, 29, 58, .78) 100%);
}

.page-hero .container {

  position: relative;
  z-index: 2;
}

.page-hero .eyebrow {

  color: var(--color-accent);
}

.page-hero__title {

  font-size: clamp(2.5rem, 5vw, var(--text-4xl));
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -.02em;
  color: #fff;
}

.page-hero__lead {

  margin-top: 1rem;
  max-width: 56ch;
  font-size: var(--text-md);
  font-weight: 400;
  color: rgba(255, 255, 255, .85);
  line-height: var(--leading-normal);
}

.about-split {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: stretch;
}

.about-split__photo {

  overflow: hidden;
  min-height: 100%;
  border-radius: var(--radius-md);
}

.about-split__photo img {

  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-statement {

  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: -.01em;
  color: var(--color-ink);
}

.about-statement em,
.u-accent {

  font-style: normal;
  color: var(--color-primary);
}

.mission-body {

  font-size: var(--text-md);
  font-weight: 400;
  color: var(--color-ink-muted);
  line-height: var(--leading-snug);
  max-width: 56ch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.statlist {

  margin-top: 2rem;
}

.statlist__item {

  padding: 1.25rem 0;
  border-top: 1px solid var(--color-border);
}

.statlist__item:first-child {

  border-top: 0;
  padding-top: 0;
}

.statlist__k {

  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -.02em;
}

.statlist__v {

  margin-top: .65rem;
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  max-width: 50ch;
  line-height: var(--leading-normal);
}

.values--grid {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.values--grid .value {

  border-top: 2px solid var(--color-ink);
  padding: 1.75rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.value__icon {

  width: 58px;
  height: 58px;
  border: 1px solid var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-sm);
}

.value__icon svg {

  width: 27px;
  height: 27px;
  stroke: var(--color-ink);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value__idx {

  display: block;
  font-size: var(--text-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: .6rem;
}

.value__title {

  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-ink);
  line-height: 1.1;
  margin-bottom: .55rem;
}

.value__text {

  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  line-height: var(--leading-normal);
  max-width: 46ch;
}

.tiles {

  display: grid;
  gap: 1.75rem;
}

.tiles--4 {

  grid-template-columns: repeat(4, 1fr);
}

.tiles--3 {

  grid-template-columns: repeat(3, 1fr);
}

.tiles--2 {

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

.tile {

  background: var(--color-bg-alt);
  border-top: 2px solid var(--color-primary);
  padding: 2.25rem 2rem;
  border-radius: var(--radius-md);
}

.section--alt .tile {

  background: var(--color-bg);
}

.tile__k {

  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: .85rem;
  letter-spacing: -.02em;
}

.tile__t {

  font-size: var(--text-md);
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: .7rem;
  line-height: 1.2;
}

.tile__d {

  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  line-height: var(--leading-normal);
}

.pillars {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.pillar {

  background: var(--color-bg);
  border-top: 2px solid var(--color-primary);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
}

.section--alt .pillar {

  background: var(--color-bg-alt);
}

.pillar__letter {

  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.pillar__title {

  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-ink);
  margin-bottom: .9rem;
}

.pillar__desc {

  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  line-height: var(--leading-normal);
  margin-bottom: 1.5rem;
}

.pillar__list {

  border-top: 1px solid var(--color-border);
  padding-top: 1.25rem;
}

.pillar__list li {

  position: relative;
  padding: .5rem 0 .5rem 1.25rem;
  font-size: var(--text-sm);
  color: var(--color-ink);
}

.pillar__list li::before {

  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 1px;
  background: var(--color-primary);
}

.grid--3 {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.feature-card {

  position: relative;
  display: block;
}

.feature-card__photo {

  aspect-ratio: 3/3.55;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.feature-card__photo img {

  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.feature-card:hover .feature-card__photo img {

  transform: scale(1.04);
}

.feature-card__caption {

  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 8%;
  background: #fff;
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius-md);
}

.feature-card__title {

  font-size: var(--text-md);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-ink);
  margin-bottom: .5rem;
}

.feature-card__text {

  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  line-height: var(--leading-normal);
}

.carousel {

  position: relative;
}

.carousel__viewport {

  overflow: hidden;
}

.carousel__track {

  display: flex;
  gap: 1.75rem;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.carousel__controls {

  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: flex-end;
  margin-top: 2.75rem;
}

.carousel__arrows {

  display: flex;
  gap: .6rem;
}

.carousel__arrow {

  width: 52px;
  height: 52px;
  border: 1px solid var(--color-ink);
  background: none;
  color: var(--color-ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: .2s;
}

.carousel__arrow svg {

  width: 18px;
  height: 18px;
}

.carousel__arrow:hover {

  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.contact-grid {

  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-list {

  margin-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.contact-item {

  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-item__k {

  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--color-primary);
}

.contact-item__v {

  font-size: var(--text-md);
  font-weight: 400;
  color: var(--color-ink);
}

a.contact-item__v:hover {

  color: var(--color-primary);
}

.form__row {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form {

  display: grid;
  gap: 1.5rem;
}

.form__field {

  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.form__heading {

  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-ink);
  margin-bottom: 1.75rem;
}

.form__submit {

  justify-self: start;
  margin-top: .5rem;
}

.contact-cards {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.contact-card {

  background: var(--color-bg);
  padding: 2.25rem 2rem;
  border-top: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.contact-card__t {

  font-size: var(--text-md);
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: .75rem;
}

.contact-card__d {

  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  line-height: var(--leading-normal);
  margin-bottom: 1.25rem;
}

.contact-card__l {

  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
}

.contact-card__l:hover {
 color: var(--color-ink); }

.bigstats {
 display: grid; grid-template-columns: 1fr 1fr; gap: 3rem 2.5rem; }

.bigstat__label {
 font-size: var(--text-sm); font-weight: 700; color: var(--color-ink); margin-bottom: .85rem; }

.bigstat__num {
 font-size: var(--text-4xl); font-weight: 400; color: var(--color-primary); line-height: 1; letter-spacing: -.02em; }

.tcards__row {
 display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }

.tcard__photo {
 aspect-ratio: 16/10; overflow: hidden; border-radius: var(--radius-md); }

.tcard__photo img {
 width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }

.tcard:hover .tcard__photo img {
 transform: scale(1.04); }

.tcard__body {
 padding: 1.25rem 0 0; }

.tcard__t {
 font-size: var(--text-md); font-weight: 700; color: var(--color-ink); margin-bottom: .5rem; }

.tcard__d {
 font-size: var(--text-sm); color: var(--color-ink-muted); line-height: var(--leading-normal); }

.flist {
 border-top: 1px solid var(--color-border); }

.flist__row {
 display: grid; grid-template-columns: 80px 1fr 2fr; gap: 2rem; align-items: baseline; padding: 1.75rem 0; border-bottom: 1px solid var(--color-border); }

.flist__n {
 font-size: var(--text-2xl); font-weight: 400; color: var(--color-primary); line-height: 1; letter-spacing: -.02em; }

.flist__t {
 font-size: var(--text-md); font-weight: 700; color: var(--color-ink); }

.flist__d {
 font-size: var(--text-sm); color: var(--color-ink-muted); line-height: var(--leading-normal); }

.btn:hover {

  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 50, 99, 0.15);
}

.btn--accent:hover {

  box-shadow: 0 8px 24px rgba(254, 177, 1, 0.25);
}

.btn .btn__arrow {

  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn:hover .btn__arrow {

  transform: translateX(4px);
}

header nav a {

  position: relative;
  padding-bottom: 4px;
}

header nav a::after {

  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), left 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

header nav a:hover::after {

  width: 100%;
  left: 0;
}

.services__card {

  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.services__card .services__card-bg img {

  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.services__card:hover {

  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(10, 50, 99, 0.12);
}

.services__card:hover .services__card-bg img {

  transform: scale(1.08);
}

.services__card .services__icon {

  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.services__card:hover .services__icon {

  transform: scale(1.15) rotate(5deg);
}

.news__main,
.news__side {

  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.news__main-photo img,
.news__side-photo img {

  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.news__main:hover {

  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(10, 50, 99, 0.08);
}

.news__main:hover .news__main-photo img {

  transform: scale(1.04);
}

.news__side:hover {

  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.news__side:hover .news__side-photo img {

  transform: scale(1.04);
}

.reveal-mask {

  overflow: hidden;
  display: block;
}

.reveal-mask-inner {

  display: block;
  transform: translateY(100%);
}

.partners__slider {

  position: relative;
  overflow: hidden;
}

.partners__slider::before,
.partners__slider::after {

  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners__slider::before {

  left: 0;
  background: linear-gradient(to right, var(--color-bg) 0%, rgba(255, 255, 255, 0) 100%);
}

.partners__slider::after {

  right: 0;
  background: linear-gradient(to left, var(--color-bg) 0%, rgba(255, 255, 255, 0) 100%);
}

body {
 font-weight: 450; }

.section__sub,
.hero__sub,
.value__text,
.mission-body,
.services__text,
.accordion__content,
.faq-content {
 font-weight: 450; }

.hero__title--plain em {
 font-style: normal; font-weight: inherit; }

.hero {
 position: relative; overflow: hidden; }

.hero > .container {
 position: relative; z-index: 2; }

.hero__map {

  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__map-inner {

  position: relative;
  width: 72%;
  max-width: 1000px;
  line-height: 0;
}

.hero__map-img {

  width: 100%;
  height: auto;
  opacity: 0.04;
  filter: grayscale(1);
}

.hero__mineral {

  position: absolute;
  transform: translate(-50%, -50%);
  color: var(--color-primary);
  opacity: 0.28;
  display: inline-flex;
}

.hero__mineral svg {

  width: clamp(1.15rem, 2vw, 1.7rem);
  height: auto;
}

.dir-grid {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--color-border);
}

.dir-card {

  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 1.15rem;
  padding: 1.5rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  transition: background-color 0.28s ease;
}

.dir-card:nth-child(3n+1) {
 border-left: 1px solid var(--color-border); }

.dir-card:nth-child(3n) {
 padding-right: 0; }

.dir-card::before {

  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  bottom: -1px;
  width: 2px;
  background: var(--color-accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.28s cubic-bezier(0.25, 1, 0.5, 1);
}

.dir-card:hover::before {
 transform: scaleY(1); }

.dir-card:hover {

  background: rgba(10, 50, 99, 0.025);
}

.dir-card__title,
.dir-card__num {

  transition: color 0.28s ease, opacity 0.28s ease;
}

.dir-card__num {

  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  opacity: 0.55;
  transition: opacity 0.28s ease;
  font-variant-numeric: tabular-nums;
}

.dir-card:hover .dir-card__num {
 opacity: 1; }

.dir-card__title {

  font-size: 1.0625rem;
  line-height: 1.4;
  font-weight: 600;
  color: var(--color-ink);
  transition: color 0.28s ease;
}

.dir-card:hover .dir-card__title {
 color: var(--color-primary); }

.partners__item--text {

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  text-align: center;
}

.partners__item--text span {

  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--color-ink-muted);
  white-space: nowrap;
}

.digest-issue {

  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.digest-issue__cover {
 position: relative; aspect-ratio: 3/4; overflow: hidden; }

.digest-issue__cover img {
 width: 100%; height: 100%; object-fit: cover; object-position: center 80%;}

.digest-issue__badge {

  position: absolute; top: 1rem; left: 1rem;
  background: var(--color-primary); color: #fff;
  font-weight: 700; font-size: var(--text-sm);
  padding: .35rem .8rem; border-radius: 999px;
}

.digest-issue__body {
 padding: 1.25rem 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; flex: 1; }

.digest-issue__actions {
 display: flex; gap: .6rem; margin-top: auto; }

:root {

  --scale-0: 1rem;
  --scale-1: 1.25rem;
  --scale-2: 1.5625rem;
  --scale-3: 1.9375rem;
  --scale-4: 2.4375rem;
}

body {
 font-weight: 500; }

h1,
h2,
h3,
h4,
h5,
h6 {
 font-weight: 700; }

h1 em,
h2 em,
h3 em {
 font-weight: 700; }

.section {
 padding: 4.5rem 0; }

.section__head {
 margin-bottom: 2.25rem; }

.section__title {
 font-size: var(--scale-3); font-weight: 700; }

.section__sub {
 margin-top: 0.875rem; font-size: var(--scale-0); font-weight: 500; }

.hero__sub {
 font-size: var(--scale-0); }

.hero__quote p {
 font-size: var(--text-sm); }

.hero__stat-num {
 font-size: 1.15rem; min-width: 2.75rem; }

.hero__badge-title {
 font-size: clamp(15px, 0.6rem + 0.5vw, 21px); }

.hero__overlap p {
 margin-bottom: calc(var(--hero-unit) * 0.55); }

.services__grid {
 gap: 1rem; }

.services__card {
 padding: 1.35rem; }

.services__title {
 font-size: var(--text-base); }

.services__text {
 font-size: var(--text-xs); font-weight: 500; color: rgba(255, 255, 255, 0.82); margin-bottom: 0; }

.news__featured {
 gap: 1rem; margin-bottom: 1.25rem; }

.news__main-photo {
 height: 220px; }

.news__main-body {
 padding: 1.1rem; }

.news__main-text {
 font-size: var(--text-xs); margin-bottom: 0.8rem; }

.news__sidebar {
 gap: 1rem; }

.news__side-body {
 padding: 0.85rem; }

.news__grid {
 gap: 1rem; }

.news__card-photo {
 height: 170px; }

.news__card-body {
 padding: 0.95rem; }

.partners__item {
 padding: 1rem 1.25rem; min-width: 145px; }

.partners__item img {
 height: auto; max-height: 40px; max-width: 130px; }

.cta {
 padding-block: 3.6rem; }

.page-hero {
 padding: 5.3rem 0 2.6rem; }

.page-hero__title {
 font-size: var(--scale-3); margin-bottom: 0.5rem; }

.page-hero__lead,
.page-hero__sub {
 font-size: var(--scale-0); font-weight: 500; }

.kz-map-hero {

  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  max-width: 460px;
  margin: 0 auto 2.5rem;
}

.kz-map-hero .hero__map {

  position: relative;
  inset: auto;
  min-height: 0;
}

.kz-map-hero .hero__map-inner {

  width: 100%;
}

.kz-map-hero .hero__map-img {

  opacity: 0.09;
}

.kz-map-hero .hero__mineral svg {

  width: clamp(0.9rem, 1.2vw, 1.15rem);
}

.kz-map-hero__caption {

  margin-top: 0.75rem;
  text-align: center;
}

.kz-map-hero__caption p {

  margin: 0;
  font-size: var(--scale-0);
  font-weight: 600;
  color: var(--color-ink-muted);
}

.split__photo,
.about-split__photo {

  width: 100%;
  max-width: 100%;
  min-height: 0;
  aspect-ratio: auto;
  height: 100%;
  max-height: none;
  position: sticky;
  top: 6rem;
  align-self: start;
}

.split,
.about-split {

  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 3.5rem;
}

.split > .split__photo,
.about-split > .about-split__photo {

  position: static;
  min-height: 100%;
}

.split > *,
.about-split > * {

  min-width: 0;
}

.split__photo img,
.about-split__photo img {

  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-statement {

  font-size: var(--scale-2);
  line-height: 1.2;
}

.statlist__k,
.flist__n {

  font-size: var(--scale-3);
}

.accordion__trigger {

  font-size: var(--scale-1);
}

.accordion__content,
.faq-content {

  font-size: var(--scale-0);
}

.partners__track {

  animation-duration: 62s;
}

.map-focus {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.map-focus__media {

  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.map-focus__media img {

  width: 100%;
  max-height: 250px;
  object-fit: contain;
}

.map-focus__text p {

  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-ink-muted);
}

.simple-pagination {

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.simple-pagination__state {

  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
}

.social-icons {

  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-icons a {

  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  background: var(--color-bg);
}

.social-icons a:hover {

  background: var(--color-primary);
  color: var(--color-white);
}

.social-icons svg {

  width: 18px;
  height: 18px;
}

.team-grid {

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.team-card {

  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.7rem;
  background: var(--color-bg);
  overflow: hidden;
}

.team-card__photo {

  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: calc(var(--radius-md) - 2px);
}

.team-card__photo img {

  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__meta {

  padding: 0.85rem 0.35rem 0.45rem;
}

.team-card__name {

  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-ink);
}

.team-card__email {

  display: inline-block;
  margin-top: 0.35rem;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-ink-muted);
}

.team-card__email:hover {

  color: var(--color-primary);
}

.cert-split {

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  gap: 4rem;
  align-items: center;
}

.cert-accreditation {

  margin: 0;
  text-align: center;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.5rem;
}

.cert-accreditation img {

  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
  filter: drop-shadow(0 14px 28px rgba(6, 29, 58, 0.14));
}

.cert-accreditation figcaption {

  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--color-border);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-ink-muted);
}

.cert-gallery {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cert-gallery__item {

  margin: 0;
}

.cert-gallery__item img {

  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-md);
}

.cert-gallery__item--tall {

  grid-row: span 2;
}

.page-offset {

  padding-top: var(--header-h);
}

.header__anketa {

  font-size: 17px;
}

.mobile-nav__divider {

flex-shrink: 0; height: 1px; min-height: 1px; background: var(--color-border); margin: auto 0 1rem;
}

.mobile-nav__link--accent {

position: sticky;
bottom: 0;
z-index: 2;
flex-shrink: 0;
margin-top: 1rem;
padding: 1rem 1.25rem;
text-align: center;
font-size: 17px;
font-weight: 700;
line-height: 1.3;
color: var(--color-white);
background: var(--color-primary);
border: 1px solid var(--color-primary);
border-radius: 999px;
box-shadow: 0 0 0 8px var(--color-bg);
transition: background-color .2s, color .2s;
}

.footer__address {

  color: rgba(255, 255, 255, 0.55);
  font-size: var(--text-sm);
}

.reasons-section {

  padding-top: 0;
}

.faq-container {

  max-width: 860px;
}

.partners-section {

  padding-top: 2.1rem;
}

.hero__mineral--oil {
 left: 20%; top: 57%; }

.hero__mineral--gas {
 left: 13%; top: 47%; }

.hero__mineral--gold {
 left: 72%; top: 62%; }

.hero__mineral--coal {
 left: 57%; top: 33%; }

.hero__mineral--ore {
 left: 85%; top: 44%; }

.hero__mineral--minerals {
 left: 40%; top: 72%; }

.accordion__icon svg {

  width: 18px;
  height: 18px;
  display: block;
}

.accordion__icon-horizontal,
.accordion__icon-vertical {

  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.accordion__item.is-active .accordion__icon {

  transform: none;
}

.accordion__item.is-active .accordion__icon-vertical {

  opacity: 0;
  transform: scaleY(0);
}

.faq-trigger__icon svg {

  width: 20px;
  height: 20px;
  display: block;
}

.faq-trigger__icon-horizontal,
.faq-trigger__icon-vertical {

  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item.is-active .faq-trigger__icon {

  transform: none;
}

.faq-item.is-active .faq-trigger__icon-vertical {

  opacity: 0;
  transform: scaleY(0);
}

.certificates-intro,
.certificates-gallery-section {

  padding-block: 3rem;
}

.certificates-intro__title {

  margin-top: 0.75rem;
}

.certificates-intro__text {

  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.certificates-intro__text--secondary {

  margin-top: 1rem;
}

.certificates-intro__stats {

  margin-top: 2rem;
}

.certificates-gallery-head {

  max-width: 860px;
}

.certificates-gallery-head__title {

  text-align: left;
  margin-top: 0.75rem;
}

.certificates-gallery-head__text {

  margin-top: 1rem;
}

.cert-gallery {

  margin-top: 2rem;
}

.cert-accreditation__link,
.cert-gallery__link {

  display: block;
  width: 100%;
  height: 100%;
}

.cert-accreditation__link {

  cursor: zoom-in;
}

.cert-gallery__link {

  cursor: zoom-in;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.gallery__link {

  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.gallery__item[hidden] {

  display: none !important;
}

.international-program-container {

  max-width: 900px;
}

.international-program-card {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
}

.international-program-card__media {

  border-radius: var(--radius-md);
  overflow: hidden;
}

.international-program-card__image {

  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.international-program-card__eyebrow {

  margin-bottom: 0.6rem;
}

.international-program-card__title {

  margin-bottom: 0.5rem;
}

.international-program-card__text {

  margin-top: 0;
}

.international-program-card__action {

  margin-top: 1rem;
}

html.modal-open {

  overflow: hidden;
}

.contact-form-card {

  background: var(--color-bg-alt);
  padding: 2rem;
  border-radius: var(--radius-md);
}

.section__head--full {

  max-width: none;
}

.contacts-map {

  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 16 / 7;
}

.contacts-map__iframe {

  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.steps {

  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 2rem;
}

.steps__item {

  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.steps__item:last-child {

  flex: 0 0 auto;
}

.steps__num {

  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-bg);
  color: var(--color-ink-muted);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

.steps__num--active {

  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.steps__num--done {

  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.steps__line {

  flex: 1;
  min-width: 24px;
  height: 1px;
  margin: 0 12px;
  background: var(--color-border);
  transition: background-color .25s ease;
}

.steps__line--done {

  background: var(--color-primary);
}

.anketa-container {

  max-width: 820px;
}

.anketa-card {

  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
}

.step-block {

  display: none;
}

.step-block.is-active {

  display: block;
}

.step-block__intro {

  margin-bottom: 2rem;
  max-width: 100%;
}

.form__actions {

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.form__actions--end {

  justify-content: flex-end;
}

.form__checkbox--card {

  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 0.875rem 1rem;
}

.form__checkbox--center {

  justify-content: center;
  padding: 1rem;
}

.form__checkbox--compact {

  padding: 0.75rem 1rem;
}

#anketa-form .form__checkbox--consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 1.5rem;
}

#anketa-form .form__checkbox--consent > input {
  flex-shrink: 0;
  margin-top: 0.3em;
}

#anketa-form .form__checkbox--consent > span {
  min-width: 0;
}

.digest-section {

  padding-top: 2.5rem;
}

.digest-heading,
.news-heading {

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.digest-heading {

  margin-bottom: 1.25rem;
}

.news-heading {

  margin-bottom: 2rem;
}

.digest-heading__title,
.news-heading__title {

  margin-bottom: 0;
}

.digest-grid {

  margin-bottom: 3rem;
}

.news__featured--digest {

  margin-bottom: 2.25rem;
}

html.nav-open {

  overflow: hidden;
}

.nav-overlay {

  pointer-events: none;
}

.nav-overlay.is-open {

  pointer-events: auto;
}

.header__burger.is-active span:nth-child(1) {

  transform: translateY(7px) rotate(45deg);
}

.header__burger.is-active span:nth-child(2) {

  opacity: 0;
}

.header__burger.is-active span:nth-child(3) {

  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav__link--accent.nav__link--active {

color: var(--color-white); background: var(--color-primary);
}

.footer__col ul a {

font-size: var(--text-sm); font-weight: 400; color: rgba(255,255,255,.72); overflow-wrap: anywhere; transition: color .2s;
}

.footer__col--action > .btn {

background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); justify-content: center; white-space: normal; text-align: center; line-height: 1.25;
}

.footer a:focus-visible,
.mobile-nav a:focus-visible {

outline: 2px solid var(--color-accent); outline-offset: 4px;
}

.footer__main > *,
.hero__wrap > *,
.split > *,
.about-split > *,
.contact-grid > *,
.news__featured > * {

min-width: 0;
}

.about-statement > p + p,
.mission-body > p + p,
.section__sub > p + p {

margin-top: 1rem;
}

a.team-card,
a.digest-issue {

color: inherit; text-decoration: none;
}

#gallery-pagination[hidden] {

display: none !important;
}

.news__main,
.news__side,
.news__card {

        position: relative;
    }

.news__side-meta {

        display: flex;
        flex-wrap: wrap;
        gap: 8px 16px;
    }


/* FOOTER — keep four columns while there is room */
.footer__main {
  grid-template-columns: minmax(0,1.45fr) minmax(0,.85fr) minmax(0,1.1fr) minmax(210px,1fr);
  align-items: start;
  gap: clamp(1rem,2.5vw,2.5rem);
}
.footer__col--action { grid-column: auto; align-items: flex-end; }
.footer__col--nav { display: block; }

/* News cards */
.news-modal-link { display: contents; color: inherit; text-decoration: none; }
.news-modal-link::after { content: ""; position: absolute; inset: 0; z-index: 1; border-radius: inherit; }
.news-modal-link:focus-visible::after { outline: 3px solid var(--color-primary); outline-offset: 3px; }

/* MODALS — fixed heading, one scrolling body */
.program-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  padding: 24px; background: rgba(6,29,58,.68);
}
.program-modal.is-open { display: flex; }
.program-modal[hidden] { display: none !important; }
.program-modal__card {
  display: flex; flex-direction: column; width: min(100%,1000px);
  max-height: calc(100vh - 48px); max-height: calc(100dvh - 48px);
  min-height: 0; overflow: hidden; padding: 0;
  background: var(--color-white); border: 1px solid var(--color-border);
  border-radius: 16px; box-shadow: 0 24px 80px rgba(0,0,0,.2);
}
.program-modal__head {
  flex: 0 0 auto; display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; padding: 20px 24px; margin: 0; order: 0;
  background: var(--color-white); border-bottom: 1px solid var(--color-border);
}
.program-modal__title {
  min-width: 0; margin: 0; color: var(--color-primary);
  font-size: clamp(1.2rem,2.2vw,1.65rem); font-weight: 700; line-height: 1.25;
  overflow-wrap: anywhere;
}
.program-modal__close {
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 40px;
  width: 40px; height: 40px; padding: 0; margin: -4px -8px -4px 0;
  border: 0; border-radius: 50%; background: var(--color-bg-alt);
  color: var(--color-primary); cursor: pointer; transition: background-color .2s;
}
.program-modal__close svg { width: 22px; height: 22px; }
.program-modal__close:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }
.program-modal__body {
  display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr);
  align-items: start; gap: 24px; padding: 24px; min-height: 0;
  overflow-y: auto; overflow-x: hidden; overscroll-behavior: contain;
  scrollbar-gutter: stable; -webkit-overflow-scrolling: touch;
}
.program-modal__media { min-width: 0; overflow: hidden; border-radius: 10px; aspect-ratio: 4 / 5; }
.program-modal__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.program-modal__content { display: block; min-width: 0; min-height: 0; }
.program-modal__list { display: grid; gap: 18px; margin: 0; padding: 0; overflow: visible; }
.program-modal__item { position: relative; min-width: 0; font-size: var(--text-sm); }
.program-modal__item--icon { display: flex; align-items: flex-start; gap: 12px; padding: 0; }
.program-modal__icon {
  display: flex; align-items: center; justify-content: center; flex: 0 0 34px;
  width: 34px; height: 34px; border: 1px solid var(--color-border);
  border-radius: 50%; background: var(--color-bg-alt); color: var(--color-primary);
}
.program-modal__icon img, .program-modal__icon svg { width: 18px; height: 18px; object-fit: contain; }
.program-modal__text { flex: 1; min-width: 0; overflow-wrap: anywhere; }
.program-modal__ru { margin: 0; font-size: .95rem; line-height: 1.5; font-weight: 700; }
.program-modal__en { margin: 4px 0 0; font-size: .875rem; line-height: 1.5; color: var(--color-ink-muted); }
.program-modal__dates { display: grid; gap: 10px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--color-border); }
.program-modal__dates-title { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--color-primary); }
.program-modal__date-item { font-size: .95rem; font-weight: 700; line-height: 1.5; }
.news-modal .program-modal__card { width: min(100%,860px); }
.news-modal .program-modal__body { display: block; }
.news-modal .program-modal__media { aspect-ratio: 16 / 9; max-height: 360px; margin-bottom: 24px; }
.news-modal__meta { display: flex; flex-wrap: wrap; gap: 8px 16px; margin: 12px 0 20px; color: var(--color-ink-muted); font-size: .9rem; }
.news-modal__text { font-size: 1rem; line-height: 1.7; overflow-wrap: anywhere; }
.news-modal__text > * + * { margin-top: 16px; }
.news-modal__text img { max-width: 100%; height: auto; }
.news-modal__text ul, .news-modal__text ol { padding-left: 1.4rem; }
.news-modal__text ul { list-style: disc; }
.news-modal__text a { color: var(--color-primary); text-decoration: underline; }
.news-modal__text table { display: block; max-width: 100%; overflow-x: auto; }
.news-modal__text iframe, .news-modal__text video { max-width: 100%; }


/* Убираем лишние отступы внутри групп */
#anketa-form .form__group {
    margin: 0;
}

/* Одинаковое расстояние между полями внутри ряда */
#anketa-form .form__grid {
    gap: 16px;
}

/* Расстояние между рядами и отдельными группами */
#anketa-form .step-block > .form__grid + .form__grid,
#anketa-form .step-block > .form__grid + .form__group,
#anketa-form .step-block > .form__group + .form__grid,
#anketa-form .step-block > .form__group + .form__group {
    margin-top: 16px;
}

.statlist__v::first-letter {
    text-transform: uppercase;
}

@media (min-width: 901px) and (max-width: 1900px) {
.container {

      padding-inline: 2rem;
    }

.section {

      padding: 3.75rem 0;
    }

.split,
.about-split {

      gap: 2.5rem;
    }
}

@media (min-width: 901px) and (max-width: 1400px) {
.dir-grid {

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

.dir-card {

      padding-inline: 1.75rem;
    }

.dir-card:nth-child(3n) {

      border-right: 1px solid var(--color-border);
      padding-right: 1.75rem;
    }

.dir-card:nth-child(3n+1) {

      padding-left: 1.75rem;
    }

.dir-card:nth-child(2n) {

      border-right: 0;
      padding-right: 0;
    }

.dir-card:nth-child(2n+1) {

      padding-left: 0;
    }

.dir-card:nth-child(3n+1) {

        border-left: 0;
    }
}

@media (max-width: 1399px) {
.header__inner {

      gap: 1rem;
    }

.header__nav {

      display: none;
    }

.header__actions {

      margin-left: auto;
    }

.header__anketa {

      display: none;
    }

.header__burger {

      display: flex;
      position: relative;
      z-index: 110;
    }

.mobile-nav {

      display: flex;
    }

.nav-overlay {

      display: block;
    }
}

@media (max-width: 900px) {
    
.hero__wrap {

      grid-template-columns: 1fr;
      gap: 5rem;
    }

.hero__visual {

      order: -1;
      width: auto;
    }

.hero__panel {

      
      position: relative;
      inset: auto;
      aspect-ratio: 16/11;
      height: auto;
      width: 100%;
    }

.hero__overlap {

      width: 78%;
      right: 1rem;
      bottom: -1.75rem;
    }

.hero__lower {

      grid-template-columns: 1fr;
    }

.hero {

      padding: 59px 0 2rem;
    }

.services__grid {

      grid-template-columns: 1fr;
    }

.reasons__wrap {

      grid-template-columns: 1fr;
    }

.reasons__photo {

      aspect-ratio: 16/9;
    }

.figures__grid {

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

.news__featured {

      grid-template-columns: 1fr;
    }

.news__grid {

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

.cta__inner {

      grid-template-columns: 1fr;
      gap: 2rem;
    }

.cta__action {

      justify-content: flex-start;
    }

.page-hero--split {

      grid-template-columns: 1fr;
    }

.gallery__grid {

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

.card-grid {

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

.faq__wrap {

      grid-template-columns: 1fr;
    }

.faq__intro {

      position: static;
    }

.contacts__grid {

      grid-template-columns: 1fr;
    }

.split {

      grid-template-columns: 1fr;
      gap: 3rem;
    }

.split__photo {

      aspect-ratio: 16/9;
    }

.process__wrap {

      grid-template-columns: 1fr;
    }

.process__diagram {

      position: static;
      display: none;
    }

.documents__grid {

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

.about-split {
 grid-template-columns: 1fr; gap: 2.5rem; }

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

.tiles--3,
.tiles--4 {
 grid-template-columns: 1fr 1fr; }

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

.contact-cards {
 grid-template-columns: 1fr; }

.contact-grid {
 grid-template-columns: 1fr; gap: 2.5rem; }

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

.hero__map-inner {
 width: 130%; }

.hero__map-img {
 opacity: 0.04; }

.hero__mineral {
 display: none; }

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

.dir-card:nth-child(3n) {
 border-right: 1px solid var(--color-border); padding-right: 2.25rem; }

.dir-card:nth-child(3n+1) {

        border-left: 0;
    }

.dir-card:nth-child(2n) {
 border-right: 0; padding-right: 0; }

.dir-card:nth-child(2n+1) {
 padding-left: 0; }

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

.kz-map-hero .hero__map-inner {

      width: 100%;
    }

.split__photo,
.about-split__photo {

      aspect-ratio: 16 / 10;
      max-height: none;
    }

.cert-gallery {

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

.international-program-card {

      grid-template-columns: 1fr;
    }

.international-program-card__image {

      min-height: 0;
      aspect-ratio: 16 / 10;
    }

.contacts-map {

      aspect-ratio: 16 / 9;
    }

.container {
 padding-inline: 1.5rem; }

.section {
 padding-block: 3.5rem; }

.hero {
 padding-top: calc(var(--header-h) + 1.5rem); padding-bottom: 2rem; }

.hero__wrap {
 gap: 3.5rem; }

.hero__overlap {
 width: min(78%, 30rem); max-width: calc(100% - 2rem); }

.hero__cta {
 flex-wrap: wrap; }

.services__card {
 aspect-ratio: auto; min-height: 320px; gap: 3rem; }

.form__grid--3 {
 grid-template-columns: repeat(2,minmax(0,1fr)); }

.reasons-section {
 padding-top: 0; }

.partners-section {
 padding-top: 2.1rem; }

.certificates-intro,
.certificates-gallery-section {
 padding-block: 3rem; }

.digest-section {
 padding-top: 2.5rem; }
}

@media (max-width: 820px) {
.cert-split {

      grid-template-columns: 1fr;
      gap: 2rem;
    }
}

@media (max-width: 600px) {
.hero__overlap {

      position: static;
      max-width: 100%;
      margin-top: 1rem;
    }

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

.cert-gallery {

      grid-template-columns: 1fr;
    }

.cert-gallery__item--tall {

      grid-row: auto;
      max-width: 420px;
      margin-inline: auto;
    }

.anketa-card {

      padding: 2rem 1.25rem;
    }

.form__actions {

      flex-wrap: wrap;
    }

.form__actions .btn {

      flex: 1 1 auto;
      justify-content: center;
    }

.certificates-intro,
.certificates-gallery-section,
.digest-section {

      padding-block: 2.5rem;
    }

.contacts-map {

      aspect-ratio: 4 / 3;
    }

.hero__wrap {
 gap: 2rem; }

.hero__overlap {
 position: static; width: 100%; max-width: 100%; margin-top: 1rem; }

.hero__panel {
 aspect-ratio: 4 / 3; }

.cert-accreditation {
 padding: 1.25rem; }
}

@media (max-width: 575px) {
.figures__grid {

      grid-template-columns: 1fr;
    }

.news__grid {

      grid-template-columns: 1fr;
    }

.footer__logo {

      height: 42px;
    }

.footer__bottom {

      flex-direction: column;
      text-align: center;
      gap: 0.5rem;
    }

.gallery__grid {

      grid-template-columns: 1fr;
    }

.card-grid,
.card-grid--2 {

      grid-template-columns: 1fr;
    }

.faq-trigger {

      min-height: 58px;
      padding: 1rem 0;
      font-size: 0.95rem;
    }

.faq-content__inner {

      font-size: 0.95rem;
      line-height: 1.6;
    }

.faq-item.is-active .faq-content {

      padding-bottom: 1.25rem;
    }

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

.contact-item {
 grid-template-columns: 1fr; gap: .4rem; }

.documents__grid {

      grid-template-columns: 1fr;
    }

.tiles--2,
.tiles--3,
.tiles--4 {
 grid-template-columns: 1fr; }

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

.contact-item {
 grid-template-columns: 1fr; gap: .4rem; }

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

.flist__row {
 grid-template-columns: 1fr; gap: .5rem; }

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

.dir-card {
 border-right: 0; padding: 1.25rem 0; }

.dir-card:nth-child(3n) {
 border-right: 0; }

:root {

      --header-h: 72px;
    }

.header__inner {

      height: 72px;
    }

.header__logo img {

      height: 34px;
    }

.header__actions {

      gap: .5rem;
    }

.lang-switcher__btn {

      padding: .45rem .65rem;
    }

.steps {

      margin-bottom: 1.5rem;
    }

.steps__num {

      width: 36px;
      height: 36px;
      flex-basis: 36px;
      font-size: .85rem;
    }

.steps__line {

      min-width: 14px;
      margin: 0 8px;
    }

.container {
 padding-inline: 1rem; }

.section {
 padding-block: 2.5rem; }

.section__head {
 margin-bottom: 1.75rem; }

.section__title,
.page-hero__title {
 font-size: clamp(1.65rem, 6vw, 1.9375rem); }

.hero__title {
 font-size: clamp(2.5rem, 11vw, 3.5rem); line-height: 1; }

.hero__cta {
 gap: .75rem; }

.hero__cta .btn {
 flex: 1 1 100%; }

.mobile-nav {
 width: min(100vw, 360px); padding-inline: 1rem; }

.header__burger {
 min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }

.dir-card,
.dir-card:nth-child(n) {
 border-right: 0; padding: 1.25rem 0; }

.dir-card:nth-child(3n+1) {
border-left: 0;}

.form__grid,
.form__grid--3,
.map-focus {
 grid-template-columns: 1fr; }

.contact-form-card {
 padding: 1.25rem; }

.news__side {
 grid-template-columns: minmax(0, 100px) minmax(0, 1fr); }

.news__side-meta {
 display: flex; flex-wrap: wrap; gap: .25rem .75rem; }

.footer__bottom {
 align-items: flex-start; text-align: left; line-height: 1.5; }

.reasons-section {
 padding-top: 0; }

.partners-section {
 padding-top: 2.1rem; }
}

@media (hover: hover) and (pointer: fine) {
.footer__col ul a:hover {
 color: var(--color-accent); }

.footer__col--action > .btn:hover {
 background: var(--color-accent); border-color: var(--color-accent); color: var(--color-primary-dark); }

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

.mobile-nav__link--accent:hover {
 background: var(--color-primary-dark); color: var(--color-white); }
}

@media (prefers-reduced-motion: reduce) {
html {
 scroll-behavior: auto; }

*,
*::before,
*::after {
 animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}


@media (max-width: 1100px) {
  .footer__main { grid-template-columns: minmax(0,1.15fr) minmax(0,1fr) minmax(210px,.9fr); }
  .footer__col--nav { display: none; }
}
@media (max-width: 820px) {
  .program-modal__body { grid-template-columns: minmax(0,1fr); gap: 20px; }
  .program-modal__media { aspect-ratio: 16 / 9; max-height: 280px; }
}
@media (max-width: 760px) {
  .footer__main { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 28px; }
  .footer__col--action { grid-column: 1 / -1; align-items: flex-start; }
}
@media (max-width: 575px) {
  .footer__main { grid-template-columns: minmax(0,1fr); }
  .footer__col--action { grid-column: auto; }
  .program-modal { padding: 10px; }
  .program-modal__card { max-height: calc(100vh - 20px); max-height: calc(100dvh - 20px); border-radius: 12px; }
  .program-modal__head { padding: 16px; gap: 10px; }
  .program-modal__title { font-size: 1.15rem; }
  .program-modal__body { padding: 16px; gap: 16px; }
  .program-modal__media { max-height: 220px; }
  .program-modal__list { gap: 16px; }
  .program-modal__ru { font-size: .9rem; }
  .news-modal__text { font-size: .95rem; line-height: 1.65; }
  .news-modal .program-modal__media { margin-bottom: 18px; }
}
@media (hover: hover) and (pointer: fine) {
  .program-modal__close:hover { background: #e5edf5; }
}

@media (max-width: 900px) {
  .news__sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
  }

  .news__sidebar .news__side {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    overflow: hidden;
  }

  .news__sidebar .news__side-photo {
    flex: none;
    width: 100%;
    height: 170px;
    min-width: 0;
    overflow: hidden;
  }

  .news__sidebar .news__side-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .news__sidebar .news__side-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1rem;
    width: 100%;
    min-width: 0;
    padding: 0.95rem;
  }

  .news__sidebar .news__side-title {
    font-size: var(--text-sm);
    line-height: 1.4;
    overflow-wrap: anywhere;
  }

  .news__sidebar .news__tag {
    max-width: 100%;
    white-space: normal;
  }

  .news__sidebar .news__side-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.4rem 0.75rem;
    margin-top: auto;
    font-size: var(--text-xs);
  }
}

@media (max-width: 575px) {
  .news__sidebar {
    grid-template-columns: minmax(0, 1fr);
  }

  
}



/* ============================================================
   TOAST
   ============================================================ */

.toast {
    position: fixed;
    top: 110px;
    right: 24px;
    z-index: 1000;
    width: min(420px, calc(100% - 32px));
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.toast__icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.toast__text {
    padding-top: 3px;
    font-size: var(--text-sm);
    line-height: 1.5;
    color: var(--color-ink);
}

.toast--success {
    border-color: rgba(25, 135, 84, 0.28);
}

.toast--success .toast__icon {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.toast--error {
    border-color: rgba(220, 53, 69, 0.28);
}

.toast--error .toast__icon {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

@media (max-width: 575px) {
    .toast {
        top: 88px;
        left: 16px;
        right: 16px;
        width: auto;
        padding: 14px 16px;
    }
}


/* ============================================================
   FLOATING CONTACTS
   ============================================================ */

.floating-contacts {
    position: fixed;
    right: 24px;
    bottom: 32px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.floating-contact {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-contact svg {
    width: 24px;
    height: 24px;
}

.floating-contact > span {
    position: absolute;
    top: 50%;
    right: calc(100% + 10px);
    padding: 8px 12px;
    border-radius: 6px;
    background: var(--color-ink);
    color: #fff;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translate(8px, -50%);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    pointer-events: none;
}

.floating-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.floating-contact:hover > span {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
}

.floating-contact--phone {
    background: var(--color-primary);
}

.floating-contact--whatsapp {
    background: #25d366;
}

@media (max-width: 575px) {
    .floating-contacts {
        right: 16px;
        bottom: 20px;
        gap: 10px;
    }

    .floating-contact {
        width: 50px;
        height: 50px;
    }

    .floating-contact svg {
        width: 22px;
        height: 22px;
    }

    .floating-contact > span {
        display: none;
    }
}
/* RCDR questionnaire: dynamic contacts and visible validation feedback. */
#anketa-form [hidden] { display: none !important; }
.anketa-card { scroll-margin-top: 120px; }
#anketa-form .form__grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
#anketa-form .anketa-contact-panel {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    visibility: hidden;
    transition: grid-template-rows .28s ease, opacity .28s ease, visibility .28s;
}
#anketa-form .anketa-contact-panel.is-open {
    grid-template-rows: 1fr;
    opacity: 1;
    visibility: visible;
}
#anketa-form .anketa-contact-panel__inner { min-height: 0; overflow: hidden; }
#anketa-form .anketa-contact-panel__inner > * { margin: 16px 0 0; }
#anketa-form .anketa-contact-panel .form__group { padding: 3px; }
#anketa-form .anketa-email-hint { overflow-wrap: anywhere; }
#anketa-form .anketa-message {
    padding: 12px 16px;
    margin: 0 0 20px;
    border: 1px solid #b42318;
    border-radius: 8px;
    background: #fff5f4;
    color: #8a1c13;
}
#anketa-form .anketa-message.is-success { border-color: #198754; color: #146c43; background: #effaf3; }
#anketa-form button:disabled { opacity: .65; cursor: wait; }
@media (max-width: 600px) {
    #anketa-form .form__grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (prefers-reduced-motion: reduce) {
    #anketa-form .anketa-contact-panel { transition: none; }
}