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

:root {
  --red: #D50032;
  --black: #000;
  --white: #fff;
  --beige: #F6F5F2;
  --gray-dark: #626262;
  --gray-light: #B2B2B2;
  --font-main: 'Montserrat', Arial, sans-serif;
  --font-heading: 'Oswald', Arial, sans-serif;
  --container: 1536px;
  --side-pad: 192px;
}

html { font-size: 16px; }
body { font-family: var(--font-main); color: var(--black); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* CONTAINER */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 0;
}

/* ─── HEADER ─── */
.header {
  position: relative;
  z-index: 100;
  background: var(--white);
  height: 70px;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 70px;
  padding: 0 var(--side-pad);
  justify-content: space-between;
}
.header__logo { flex-shrink: 0; display: flex; }
.header__logo-img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}
/* ── Desktop nav ─────────────────────────────────────── */
.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-item {
  position: relative;
}
.nav-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
  text-decoration: none;
}
.nav-link:hover { color: var(--red); }
.nav-arrow {
  font-size: 8px;
  transition: transform .2s;
  display: inline-block;
}
.nav-item--has-sub.is-open .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  min-width: 180px;
  z-index: 200;
  padding: 6px 0;
}
.nav-item--has-sub.is-open .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-dropdown a:hover { background: var(--beige); color: var(--red); }

/* ── Burger ──────────────────────────────────────────── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu ─────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 70px;
  background: var(--white);
  z-index: 99;
  overflow-y: auto;
}
.mobile-menu.is-open { display: flex; flex-direction: column; }
.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 24px var(--side-pad) 40px;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
}
.mob-item {
  border-bottom: 1px solid #f0f0f0;
}
.mob-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  gap: 8px;
  text-align: left;
}
.mob-arrow {
  font-size: 14px;
  transition: transform .25s;
  flex-shrink: 0;
}
.mob-item--has-sub.is-open .mob-arrow { transform: rotate(180deg); }
.mob-sub {
  display: none;
  padding: 0 0 12px 12px;
  flex-direction: column;
  gap: 2px;
}
.mob-item--has-sub.is-open .mob-sub { display: flex; }
.mob-sub a {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-dark);
  padding: 8px 0;
  transition: color .2s;
}
.mob-sub a:hover { color: var(--red); }
.mobile-menu__bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 32px;
}

.arrow-down { font-size: 8px; }
.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__lang {
  font-size: 10px;
  font-weight: 700;
}
.header__search-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 4px;
}
.header__buy {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1.5px solid #222;
  border-radius: 4px;
  padding: 8px 18px;
  font-size: 10px;
  font-weight: 700;
  color: var(--black);
  transition: background .2s;
  white-space: nowrap;
}
.header__buy:hover { background: #f0f0f0; }
.header__buy-arrow { font-size: 13px; }

/* ─── HERO ─── */
.hero {
  background: var(--white);
  overflow: hidden;
  position: relative;
}
.hero__inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  height: 760px;
  padding: 0 var(--side-pad);
  z-index: 1;
}
.hero__left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 65%;
  height: 100%;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(52px, 5.8vw, 100px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  text-transform: uppercase;
  position: absolute;
  top: 20%;
}
/* image zone — right portion of hero */
.hero__images {
  position: absolute;
  right: 0;
  top: 0;
  width: 35%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
/* bubbles — behind characters, anchored top-right */
.hero__img-overlay {
  position: absolute;
  top: 0px;
  right: 5%;
  width: 775px;
  max-width: 775px;
}
/* characters — smaller, bottom-anchored, in front of bubbles */
.hero__img-main {
  position: absolute;
  top: 154px;
  width: 100%;
  z-index: 1;
  right: 170px;
}
/* Wave — exact Figma path */
.hero__wave-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* DOTS */
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  display: inline-block;
}
.dot--active { background: #5E5D5D; }
.dot--white-active { background: #5E5D5D; }
.dot--white-muted { background: #D9D9D9; }
.dot--dark-active { background: #5E5D5D; }
.dot--muted { background: #D9D9D9; }

/* ─── ABOUT ─── */
.about {
  background: var(--white);
  position: relative;
  padding: 60px 0 48px;
  overflow: visible;
}
.about__slider {
  overflow: hidden;
  width: 100%;
}
.about__track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}
.about__slide {
  flex-shrink: 0;
  width: 100%;
}
.about__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 80px;
  position: relative;
}
.about__card { position: relative; flex-shrink: 0; }

.about__card--red  { width:65%}
.about__card--light {
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Red circle */
.about__circle--red {
  width: 750px;
  height: 750px;
  border-radius: 50%;
  background: var(--red);
  position: relative;
  overflow: hidden;
}
.about__circle--red img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Text overlay */
.about__overlay-text {
  position: absolute;
  width: 100%;
  text-align: center;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.about__desc {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  max-width: 400px;
}
.about__question {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
}

/* Light circle */
.about__circle--light {
  width: 490px;
  height: 490px;
  border-radius: 50%;
  background: var(--beige);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__question--dark {
  color: var(--black);
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

/* Mascot — overlaps both circles from center */
.about__mascot {
  position: absolute;
  z-index: 10;
  flex-shrink: 0;
  margin: 0px;
  align-self: flex-end;
  padding-bottom: 0;
  bottom: -35px;
  right: -86px;
}
.about__mascot img { width: 100%; height: auto; }

/* Bottom slider row */
.about__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--side-pad) 0;
}
.about-dots { display: flex; gap: 8px; align-items: center; }
.about-dots .dot { cursor: pointer; transition: background 0.2s; }
.about__nav-arrows { display: flex; gap: 12px; align-items: center; }
.about-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.about-btn:hover { opacity: 1; }

/* ─── VIDEO SECTION ─── */
.video-section {
  background: var(--red);
  padding: 0 0 80px;
  position: relative;
}
.video-section__wave {
  display: block;
  width: 100%;
  height: 290px;
  margin-bottom: 0;
}
.video-section__mascot {
  position: absolute;
  left: 0px;
  top: 95px;
  /* width: 180px; */
  z-index: 5;
  left: 0px;
  pointer-events: none;
}
.video-section__mascot img { width: 100%; height: auto; }
.video-section .container {
  padding: 0 var(--side-pad);
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.section-title--white { color: var(--white); }

.video-main {
  position: relative;
  width: 100%;
  height: 650px;
  margin-bottom: 40px;
  border-radius:20px;
  overflow: hidden;
}
.video-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-main__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
}
.video-caption {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
  max-width: 580px;
}
.video-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.video-play-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.video-play-icon svg {
  width: 12px;
  height: 12px;
  margin-left: 2px;
}
.video-main__bottom .video-play-icon {
  width: 47px;
  height: 47px;
}
.video-main__bottom .video-play-icon svg {
  width: 16px;
  height: 16px;
}
.video-duration {
  font-size: 10px;
  font-weight: 500;
  color: var(--white);
}

.video-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.video-card {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.video-card__bottom .video-caption {
  position: static;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}
.video-card__bottom .video-meta {
  position: static;
  display: flex;
  align-items: center;
  gap: 8px;
  width: auto;
  height: auto;
}
.video-card__bottom .video-play-icon {
  width: 36px;
  height: 36px;
}
.video-card__bottom .video-duration {
  position: static;
  color: #fff;
  font-size: 14px;
}

/* Stories */
.stories__slider {
  overflow: hidden;
  width: 100%;
}
.stories__track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}
.stories__slide {
  flex-shrink: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 60px;
}
.story-card {
    display: flex;
    align-items: center;
    gap: 25px;
    min-width: 0;
}
.stories__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}
.stories-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.stories-dots .dot {
  cursor: pointer;
  transition: background 0.2s;
}
.stories__nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stories-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.stories-btn:hover { opacity: 1; }
.story-card__img {
  position: relative;
  width: 150px;
  height: 95px;
  flex-shrink: 0;
}
.story-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story-duration {
  position: absolute;
  bottom: 8px;
  left: 10px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
  line-height: 1;
}
.story-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    line-height: 25px;
    font-family: var(--font-body);
    margin: 0;
}

.slider-dots {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

/* ─── NEWS ─── */
.news {
  background: var(--white);
  padding: 60px 0;
  overflow: hidden;
}
.news__inner {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 0 0 53px;
  gap: 0;
}
.news__mascot {
  flex-shrink: 0;
  width: 227px;
  align-self: flex-end;
}
.news__mascot img {
  width: 100%;
  height: auto;
  display: block;
}
.news__content {
  flex: 1;
  min-width: 0;
  padding: 0 var(--side-pad) 0 60px;
}
.news__title {
  margin-bottom: 32px;
}
.news__slider {
  overflow: hidden;
  width: 100%;
}
.news__track {
  display: flex;
  gap: 60px;
  transition: transform 0.45s ease;
  will-change: transform;
}
.news-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
  min-width: 0;
}
.news-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  flex-shrink: 0;
}
.news-card p {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}
.news__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}
.news-slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.news-slider-dots .dot {
  cursor: pointer;
  transition: background 0.2s;
}
.slider-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.slider-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.slider-btn:hover { opacity: 1; }

/* ─── VACANCIES ─── */
.vacancies {
  background: var(--beige);
  padding: 80px 0 80px;
}
.vacancies .container { padding: 0 var(--side-pad); }
.vacancies__header {
  position: relative;
  margin-bottom: 48px;
}
.vacancies__title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.0;
  letter-spacing: -0.96px;
  text-transform: uppercase;
  max-width: 810px;
  margin: 0;
}
.vacancies__title .text-red {
  color: var(--red);
}
.vacancies__mascot {
  position: absolute;
  right: 20px;
  top: -30px;
  width: 226px;
  pointer-events: none;
}
.vacancies__mascot img {
  width: 100%;
  height: auto;
}
.vacancies__tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}
.tab {
  background: none;
  border: 1.5px solid var(--red);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--red);
  padding: 10px 20px;
  border-radius: 3px;
  transition: background .2s, color .2s;
}
.tab--active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.vacancies__filter {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.filter-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.filter-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--white);
  border: 1.5px solid #d0d0d0;
  border-radius: 3px;
  padding: 10px 36px 10px 14px;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  cursor: pointer;
  min-width: 180px;
  outline: none;
  transition: border-color .2s;
}
.filter-select:focus { border-color: var(--black); }
.filter-select-arrow {
  position: absolute;
  right: 12px;
  pointer-events: none;
  font-size: 10px;
  color: var(--gray-dark);
}
.btn-apply {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 3px;
}
.vacancies__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}
.vacancy-item {
  display: flex;
  align-items: center;
  background: var(--white);
  padding: 28px 24px;
  margin-bottom: 8px;
  border-radius: 3px;
}
.vacancy-title {
  flex: 1;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
}
.vacancy-city {
  flex: 1;
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-light);
}
.vacancy-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transform: rotate(315deg);
  flex-shrink: 0;
}
.vacancy-circle--lg {
  width: 45px;
  height: 45px;
  font-size: 20px;
}
.vacancies__list--collapsed .vacancy-item:nth-child(n+5) {
  display: none;
}
.vacancies__more {
  text-align: center;
}
.btn-more {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 3px;
}

/* ─── CTA ─── */
.cta {
  background: var(--red);
  padding: 80px 0 0;
}
.cta .container {
  padding: 0 var(--side-pad);
  text-align: center;
  padding-bottom: 80px;
}
.cta__title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 48px;
  line-height: 1.0;
  letter-spacing: -0.96px;
  text-transform: uppercase;
}
.cta__btn {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 20px 48px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  transition: opacity .2s;
}
.cta__btn:hover { opacity: 0.85; }

/* TICKER */
.cta__ticker-wrap {
  overflow: hidden;
  background: var(--white);
  padding: 12px 0;
}
.cta__ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}
.cta__ticker span {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--red);
  padding-right: 0;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── FOOTER ─── */
.footer {
  background: var(--gray-dark);
  padding: 80px 0 40px;
}
.footer .container { padding: 0 var(--side-pad); }
.footer__inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-bottom: 20px!important

}
.footer__links {
  display: flex;
  gap: 60px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__col a {
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  transition: opacity .2s;
}
.footer__col a:hover { opacity: 0.7; }
.footer__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-end;
}
.footer__search {
  display: flex;
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: 589px;
}
.footer__search-box {
  flex: 1;
  background: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
}
.footer__search-box span {
  font-size: 10px;
  font-weight: 700;
  color: #D9D9D9;
}
.footer__search-btn {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 0 28px;
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}
.footer__socials {
  display: flex;
  gap: 12px;
  align-items: center;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
}
.social-icon:hover { opacity: 0.7; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px!important;
  padding-bottom: 24px;
}
.footer__bottom span {
  font-size: 10px;
  font-weight: 700;
  color: #B1B1B1;
}

@media (max-width: 1366px) {
.about__circle--light{
    width: 410px;
    height: 410px;
    border-radius: 50%;
    background: transparent;
}
.about__mascot{
  right: -133px;
}
.about__mascot{
  bottom: -21px;
}
.burger { display: flex; }
.mobile-menu { top: 56px; }
.header__nav { display: none; }
}
/* ═══════════════════════════════════════════════════════════════
   ADAPTIVE — 1280px (laptop / small desktop)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1280px) {
  :root { --side-pad: 40px; }
  .about__inner{flex-direction: column;}
  .about__card--red, .about__card--light{width: 100%;}
  .hero__title { font-size: clamp(40px, 5vw, 90px); }
  .about__mascot {         margin: 0px;
    bottom: -180px;}x
    .about__circle--red{width:600px;height: 600px;}
  .video-section__title { font-size: 36px; }
  .video-section__mascot { width: 140px; }

  .news__inner { padding: 0 0 0 30px; }
  .news__content { padding: 0 var(--side-pad) 0 30px; }
  .news__mascot { width: 180px; }

  .story-text { font-size: 22px; line-height: 1.3; }

  .vacancies__title { font-size: 36px; }
  .cta__title { font-size: 36px; }
  .section-title { font-size: 36px; }
  .video-section__mascot{
    display: none;
  }
}
@media (max-width: 989px) {
.about__mascot img{
  width: 285px;
}
.hero__inner{
  height: 500px;
}
}

/* ═══════════════════════════════════════════════════════════════
   ADAPTIVE — 768px (tablet)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --side-pad: 20px; }
  .hero__inner {
    height: 400px;
}
.hero__img-overlay{
  width: 300px;
}
  .header__inner { height: 56px; }
  .header__logo img { height: 32px; }

  .header__right { gap: 8px; }

  .about__inner{padding: 0 20px;}
  .hero { min-height: 500px; }
  .hero__title { font-size: clamp(32px, 7vw, 60px); }
  .hero__subtitle { font-size: 13px; }
  .hero__cta { flex-direction: column; align-items: flex-start; gap: 12px; }

  .about__inner { flex-direction: column; gap: 0; align-items: center; }
  .about__circle--red,
  .about__circle--light { width: 380px; height: 380px; }


  .video-section__wave { height: 150px; }
  .video-section__title { font-size: 28px; }
  .video-section__mascot { display: none; }
  .video-main { height: 300px; }
  .video-row { grid-template-columns: 1fr; }
  .video-card { height: 220px; }
  .about__desc{font-size: 19px;max-width:200px;}
  .about__mascot{bottom: 0px;}
  .about__mascot img{width: 200px;}
  .stories__slide { grid-template-columns: 1fr; }
  .stories__slide .story-card { flex-direction: column; gap: 12px; }
  .story-text { font-size: 16px; }

  .news__inner { flex-direction: column; padding-left: 0; }
  .news__mascot { display: none; }
  .news__content { padding: 0 var(--side-pad); width: 100%; }

  .vacancies__title { font-size: 28px; }
  .vacancies__header { margin-bottom: 24px; }
  .vacancies__mascot { display: none; }
  .vacancy-title,
  .vacancy-city { font-size: 15px; }

  .cta .container { padding-bottom: 48px; }
  .cta__title { font-size: 28px; }

  .footer__inner { flex-direction: column; gap: 32px; }
  .footer__links { flex-direction: column; gap: 24px; }
  .footer__right { width: 100%; align-items: flex-start; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero__img-main{right: 20px;}
  .section-title { font-size: 28px; }
}
@media (max-width: 600px) {
  .hero {
    min-height: 396px;
  }
}
/* ═══════════════════════════════════════════════════════════════
   ADAPTIVE — 480px (mobile)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  :root { --side-pad: 16px; }

  .header__right .btn { display: none; }

  .hero { min-height: 373px; }
  .hero__title { font-size: clamp(28px, 8vw, 48px); }

  .about { padding: 40px 0 32px; }
  .about__circle--red,
  .about__circle--light { width: 220px; height: 220px; }
  .about__card--red,
  .about__card--light { width: 220px; }
  .about__mascot {         width: 120px;
    margin: 0px 0;
    bottom: -57px; }
  .about__desc { font-size: 11px; }
  .about__question--dark { font-size: 14px; }

  .video-section { padding-bottom: 40px; }
  .video-section__title { font-size: 22px; }
  .video-main { height: 220px; }
  .video-main__bottom { padding: 40px 12px 12px; }
  .video-main__caption { font-size: 14px; }

  .story-card__img { width: 120px; height: 76px; }
  .story-text { font-size: 14px; }

  .news { padding: 40px 0; }
  .news-card { gap: 12px; }
  .news-card img { width: 70px; height: 70px; }
  .news-card p { font-size: 12px; }

  .vacancies__title { font-size: 22px; }
  .tab { font-size: 12px; padding: 8px 12px; }
  .vacancy-item { padding: 14px 12px; }
  .vacancy-title,
  .vacancy-city { font-size: 13px; }

  .cta .container { padding-bottom: 40px; }
  .cta__title { font-size: 22px; }
  .cta__ticker span { font-size: 20px; }

  .section-title { font-size: 22px; }
}
