:root {
  --red: #eb140a;
  --red-dark: #850b06;
  --red-bright: #f10000;
  --red-cta: #b90a05;
  --red-light: #ff372d;
  --purple: #3f1ee2;
  --purple-dark: #23107c;
  --purple-mid: #5234e5;
  --blue: #7a8eff;
  --gray-border: #c9c9c9;
  --gray-placeholder: #999999;
  --text: #000000;
  --text-muted: #404040;
  --bg: #ffffff;
  --card-radius: 25px;
  --btn-radius: 13px;
  --container: 1200px;
  --header-h: 94px;
  --shadow-card: 0 3px 18px rgba(0, 0, 0, 0.14);
  --gradient-purple: linear-gradient(111.91deg, #3f1ee2 66.05%, #23107c 118.33%);
  --gradient-red: linear-gradient(135.74deg, #eb140a 24.68%, #850b06 115.28%);
  --gradient-red-card: linear-gradient(0deg, #a60917 0%, #e63026 100.35%);
  --font-body: "A1 Sans", "Onest", system-ui, sans-serif;
  --font-display: "Dela Gothic One", sans-serif;
}

@font-face {
  font-family: "A1 Serif";
  src: url("../fonts/a1serifbold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "A1 Sans";
  src: url("../fonts/a1sansregular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "A1 Sans";
  src: url("../fonts/a1sanslight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "A1 Sans";
  src: url("../fonts/a1sansmedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "A1 Sans";
  src: url("../fonts/a1sansbold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("../fonts/onest-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("../fonts/onest-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("../fonts/onest-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Dela Gothic One";
  src: url("../fonts/dela-gothic-one.ttf?2") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}

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

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

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

.title-display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

.text-body {
  font-family: var(--font-body);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--red {
  padding: 10px 30px;
  background: var(--red);
  color: #fff;
  border-radius: var(--btn-radius);
}

.btn--red-sm {
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  border-radius: var(--btn-radius);
}

.btn--purple-pill {
  padding: 14px 24px;
  background: var(--purple);
  color: #fff;
  border-radius: 100px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
}

.btn--white {
  padding: 21px 24px;
  background: #fff;
  color: var(--red-cta);
  border-radius: var(--btn-radius);
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: #fff;
}

.header__inner {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  align-items: center;
  height: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 clamp(24px, calc((100% - 1200px) / 2), 360px);
  gap: 24px;
}

.header__logo img {
  height: 61px;
  width: 82px;
  color: #000;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 37px;
}

.header__nav a {
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
  color: var(--text);
}

.header__nav a:hover {
  color: var(--red);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.lang-switch {
  position: relative;
}

.lang-switch__toggle {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  color: var(--text-muted);
}

.lang-switch__toggle:hover,
.lang-switch.is-open .lang-switch__toggle {
  color: var(--text);
}

.lang-switch__arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.2s;
}

.lang-switch.is-open .lang-switch__arrow {
  transform: rotate(180deg);
}

.lang-switch__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 72px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  z-index: 10;
}

.lang-switch__dropdown[hidden] {
  display: none;
}

.lang-switch__option {
  display: block;
  width: 100%;
  padding: 8px 20px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: var(--text-muted);
  text-align: left;
}

.lang-switch__option:hover,
.lang-switch__option.is-active {
  color: var(--red);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
}

/* Hero */
.hero {
  position: relative;
  z-index: 2;
  min-height: calc(var(--header-h) + 542px + 426px - 0px);
  margin-top: 0;
  padding-top: var(--header-h);
  overflow: visible;
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__layout {
  position: relative;
  z-index: 2;
  min-height: 874px;
  padding: 66px 0 42px;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 998px;
}

.hero__titles {
  max-width: 990px;
}

.hero__title-1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 96px);
  line-height: 1.15;
  font-weight: 400;
}

.hero__title-2 {
  margin: 0 0 39px;
  font-family: var(--font-display);
  font-size: clamp(64px, 6.7vw, 128px);
  line-height: 70%;
  font-weight: 400;
}

.hero__title-3 {
  margin: 0 0 52px;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.5vw, 48px);
  line-height: 1.2;
  font-weight: 400;
}

.hero__formats-title {
  margin: 0 0 17px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.format-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.format-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.format-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
  flex-shrink: 0;
}

.format-badge--online {
  background: var(--red-light);
}

.format-badge--offline {
  background: var(--blue);
}

.format-row__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 27px;
}

.hero__goals {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 90px;
}

.hero__goal {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__goal-icon {
  width: 78px;
  height: 78px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__goal-icon img {
  width: 54px;
  height: 54px;
  display: block;
}

.hero__goal-text {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  max-width: 500px;
}

/* Counter */
.counter-card {
  position: absolute;
  right: 0;
  top: 591px;
  z-index: 3;
  width: 532px;
  height: 426px;
  padding: 83px 47px 40px;
  background: url("../img/counter.jpg?2") center / cover no-repeat;
  border-radius: 34.62px;
  filter: drop-shadow(0 4px 14.9px rgba(54, 133, 211, 0.56));
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.counter-card__number {
  font-size: 88.62px;
  font-weight: 700;
  line-height: 1.16;
  margin-bottom: 8px;
}

.counter-card__label {
  font-size: 27.69px;
  font-weight: 500;
  line-height: 37px;
  margin-bottom: 40px;
}

.progress-bar {
  position: relative;
  height: 27px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 27.69px;
  margin-bottom: 24px;
}

.progress-bar__fill {
  height: 100%;
  background: var(--red-bright);
  border-radius: 27.69px;
  width: 0;
  transition: width 1.5s ease;
}

.progress-bar__knob {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 41px;
  height: 41px;
  background: #fff;
  border-radius: 50%;
  transition: left 1.5s ease;
}

.counter-card__stats {
  display: flex;
  justify-content: space-between;
  font-size: 22.16px;
  font-weight: 500;
  line-height: 30px;
}

/* Sections */
.section {
  padding: 60px 0;
}

.section--gap-lg {
  padding: 96px 0;
}

.section--gap-xl {
  padding: 115px 0 96px;
}

.section__title {
  margin: 0 0 60px;
  font-family: var(--font-display);
  font-size: clamp(23px, 3.3vw, 64px);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.section__subtitle {
  margin: 0 auto 48px;
  max-width: 1200px;
  font-size: 26px;
  font-weight: 400;
  line-height: 35px;
  text-align: center;
}

.section__label {
  margin: 0 auto 48px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

/* Formula cards */
.formula-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 48px;
}

.formula-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 17px 64px;
  min-height: 218px;
  background: #fff;
  box-shadow: var(--shadow-card);
  border-radius: var(--card-radius);
}

.formula-card__icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.formula-card__icon img {
  width: 80px;
  height: 80px;
  display: block;
}

.formula-card__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
}

.formula-eq {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--red-bright);
  flex-shrink: 0;
}

.description-block {
  text-align: center;
  margin-bottom: 48px;
}

.description-block p {
  margin: 0 0 0px;
  font-size: 26px;
  line-height: 34px;
}

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

.pill-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--purple);
  border-radius: 100px;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin: 35px 0;
}

.pill-cta svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  flex-shrink: 0;
}

/* Video */
.video-block {
  width: 100%;
  height: 675px;
  background: #999;
  border-radius: var(--card-radius);
  overflow: hidden;
}

.video-block img,
.video-block iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

/* Charity block */
.charity-block {
  margin: 45px 0 60px;
}

.charity-card {
  display: grid;
  grid-template-columns: 486px 1fr;
  background: var(--gradient-purple);
  border-radius: var(--card-radius);
  overflow: hidden;
}

.charity-card__image {
  position: relative;
  overflow: hidden;
}

.charity-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 333px 0;
  box-shadow: inset -3px -6px 11.2px rgba(0, 0, 0, 0.38);
}

.charity-card__content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  color: #fff;
}

.charity-card__content h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.charity-card__content p {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.thanks-text {
  margin: 0 auto;
  max-width: 598px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

/* Formats 2 columns */
.formats-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.format-card {
  position: relative;
  min-height: 408px;
  border-radius: var(--card-radius);
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.format-card__inner {
  position: relative;
  z-index: 2;
  padding: 32px 24px;
}

.format-card--online {
  background-image: url("../img/format1.jpg?2");
  background-size: cover;
  background-position: center;
}

.format-card--offline {
  background-image: url("../img/format2.jpg?2");
  background-size: cover;
  background-position: center;
}

.format-card__label {
  margin: 0 0 16px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.format-card__label::first-line {
  font-size: 32px;
}

.format-card__title {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.format-card__list {
  list-style: disc;
  padding: 0 0 0 1.2em;
  margin: 0;
}

.format-card__list li {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 8px;
}

.format-card__list li::marker {
  color: #fff;
}

/* Steps 4 cards */
.steps-row {
  display: flex;
  gap: 10px;
  margin-bottom: 48px;
  margin-top: 77px;
}

.step-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
  gap: 24px;
  background: #fff;
  box-shadow: var(--shadow-card);
  border-radius: var(--card-radius);
  min-height: 328px;
}

.step-card__icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card__icon img {
  width: 100px;
  height: 100px;
  display: block;
  object-fit: contain;
}

.step-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}

.step-card__text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
}

/* Flow arrows between cards */
.flow-arrow {
  flex-shrink: 0;
  align-self: center;
  width: 14px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 24'%3E%3Cpath d='M2 2L12 12L2 22' fill='none' stroke='%23EB140A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0.3;
}

.flow-arrow--down {
  width: 24px;
  height: 14px;
  opacity: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 14'%3E%3Cpath d='M2 2L12 12L22 2' fill='none' stroke='%23EB140A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  margin: 20px auto;
  display: block;
}

.highlight-banner {
  margin: 48px 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
}

/* Team cards */
.team-rows {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.team-row--2 {
  max-width: 782px;
}

.team-card {
  flex: 1;
  max-width: 368px;
  background: #fff;
  box-shadow: var(--shadow-card);
  border-radius: var(--card-radius);
  padding: 17px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 342px;
  }

.team-card__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.team-card__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card__icon img {
  width: 60px;
  height: 60px;
  display: block;
  object-fit: contain;
}

.team-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

.team-card__body {
  padding: 16px 14px;
  background: rgba(253, 201, 196, 0.16);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  height: 100%;
}
.team-card__body li {
  margin-left: 18px;
  margin-bottom: 8px;
  }
/* Prizes 2x2 */
.prizes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.prize-banner {
  position: relative;
  min-height: 298px;
  border-radius: var(--card-radius);
  overflow: hidden;
  color: #fff;
  padding: 32px;
}

.prize-banner__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prize-banner__content {
  position: relative;
  z-index: 1;
  margin-top: 80px;
}

.prize-banner__title {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.prize-banner__text {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  max-width: 512px;
}

/* Program */
.program-header {
  text-align: center;
  margin-bottom: 46px;
}

.program-sub {
  font-size: 26px;
  line-height: 1.2;
  margin: 20px 0 0;
}

.program-day-label {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin: 46px 0 20px;
}

.program-day-sub {
  font-size: 26px;
  text-align: center;
  margin-bottom: 46px;
}

.activity-cards {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 46px;
}

.activity-card-lg {
  width: min(282px, 100%);
  max-width: 100%;
  height: 400px;
  border-radius: var(--card-radius);
  background: #1a1030;
  overflow: hidden;
  position: relative;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 24px 24px;
}

.activity-card-lg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.activity-card-lg h3 {
  position: relative;
  z-index: 2;
  margin: auto 0 18px;
  padding-top: 24px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
}

.activity-card-lg p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.program-timeline {
  background: var(--bg);
  box-shadow: var(--shadow-card);
  border-radius: var(--card-radius);
  padding: 30px;
  margin-bottom: 46px;
  margin-top: 46px;
}

.program-timeline__rows {
  display: grid;
  grid-template-columns: 240px 1fr;
  column-gap: 20px;
  row-gap: 0;
  padding: 16px 0px;
  border-radius: 10px;
}

.program-timeline--day .program-timeline__rows {
  background:
    linear-gradient(rgba(253, 201, 196, 0.16), rgba(253, 201, 196, 0.16)) 0 0 / 240px 100% no-repeat,
    linear-gradient(rgba(253, 201, 196, 0.16), rgba(253, 201, 196, 0.16)) calc(240px + 20px) 0 / calc(100% - 260px) 100% no-repeat;
}

.program-timeline--evening .program-timeline__rows {
  background:
    linear-gradient(rgba(63, 30, 226, 0.14), rgba(63, 30, 226, 0.14)) 0 0 / 240px 100% no-repeat,
    linear-gradient(rgba(63, 30, 226, 0.14), rgba(63, 30, 226, 0.14)) calc(240px + 20px) 0 / calc(100% - 260px) 100% no-repeat;
}

.program-timeline__row {
  display: contents;
}

.program-timeline__time {
  grid-column: 1;
  align-self: center;
  padding: 6px 0;
  font-family: var(--font-body);
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.2;
}

.program-timeline--day .program-timeline__time {
  color: var(--red);
}

.program-timeline--evening .program-timeline__time {
  color: var(--purple);
}

.program-timeline__text {
  grid-column: 2;
  align-self: center;
  margin: 0;
  padding: 6px 0;
  font-family: var(--font-body);
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}

.evening-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 36px;
  background: var(--gradient-red);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: var(--card-radius);
  color: #fff;
  margin-bottom: 46px;
}

.evening-banner__icon {
  width: 128px;
  height: 128px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.evening-banner__icon img {
  width: 128px;
  height: 128px;
  display: block;
  object-fit: contain;
}

.evening-banner h3 {
  margin: 0 0 18px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.evening-banner p {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -1%;
}

.artists-row {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.artist-card {
  width: min(384px, 100%);
  max-width: 100%;
  height: 298px;
  border-radius: var(--card-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.artist-card--group1 {
  background-image: url("../img/group1.jpg?2");
}

.artist-card--group2 {
  background-image: url("../img/group2.jpg?2");
}

.artist-card--group3 {
  background-image: url("../img/group3.jpg?2");
}

.artist-card__info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 32px;
  color: #fff;
}

.artist-card--evening .artist-card__info {
  background: none;
}

.artist-card__name {
  margin: 0 0 4px;
  font-size: 24px;
  font-weight: 700;
}

.artist-card__type {
  margin: 0;
  font-size: 16px;
}

/* FAQ */
.faq-list {
  width: 100%;
}

.faq-item {
  border-top: 1px solid var(--gray-border);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--gray-border);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 20px 30px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  text-align: left;
  cursor: pointer;
  color: var(--text);
}

.faq-item__arrow {
  width: 13.63px;
  height: 24px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 14'%3E%3Cpath d='M2 2L12 12L22 2' fill='none' stroke='%23F10000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.3s;
}

.faq-item.open .faq-item__arrow {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-item__answer {
  max-height: 400px;
}

.faq-item__answer p {
  margin: 0;
  padding: 0 30px 24px;
  font-size: 20px;
  line-height: 28px;
  color: var(--text);
}

/* Logos */
.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: no-wrap;
  margin-top: 50px;
}

.logo-item {
  flex: 1 1 40%;
  width: min(250px, 100%);
  max-width: 270px;
  min-height: 114px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  max-height: 114px;
  width: auto;
  object-fit: contain;
}

.logo-item--a1 img {
  max-height: 102px;
  width: 98px;
}

.logo-item--huawei img {
  max-height: 60px;
  width: auto;
}

.logos-row--partners {
  gap: 40px;
}

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  box-shadow: 0 3px 23.3px rgba(0, 0, 0, 0.14);
  border-radius: 20px;
  overflow: hidden;
  min-height: 659px;
}

.contact-form-side {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-form-side h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 54px;
}

.contact-form-side .subtitle {
  margin: 0;
  font-size: 20px;
  line-height: 27px;
}

.contact-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-input {
  width: 100%;
  padding: 20px;
  border: 1px solid var(--text);
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 24px;
  color: var(--text);
}

.contact-input::placeholder {
  color: var(--gray-placeholder);
}

.contact-note {
  font-size: 12px;
  line-height: 16px;
}

.contact-info {
  font-size: 16px;
  line-height: 24px;
}

.contact-captcha {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.contact-captcha img {
  display: block;
  flex-shrink: 0;
}

.contact-captcha .contact-input {
  flex: 1;
  min-width: 120px;
}

.contact-form__message {
  min-height: 0;
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.4;
}

.contact-form__message.success {
  color: #00a010;
}

.contact-form__message.error {
  color: var(--red);
}

.contact-image-side {
  min-height: 100%;
  background: url("../img/beg.jpg?2") right center / cover no-repeat;
}

/* Footer CTA */
.footer-cta {
  padding: 52px clamp(0px, 5vw, 376px);
  background:
    url("../img/footer.jpg?2"),
    var(--gradient-red);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
  text-align: center;
  color: #fff;
}

.footer-cta__title {
  margin: 0 0 16px;
  font-size: clamp(28px, 2.5vw, 48px);
  font-weight: 700;
  line-height: 54px;
}

.footer-cta__text {
  margin: 0 0 16px;
  font-size: clamp(20px, 1.7vw, 32px);
  line-height: 46px;
}

.footer-cta__link {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 24px;
  text-decoration: underline;
  color: #fff;
}

@media (min-width: 1300px) {
  .hero__title-1 {
    font-size: 96px;
  }

  .hero__title-2 {
    font-size: 128px;
  }

  .hero__title-3 {
    font-size: 48px;
  }

  .section__title {
    font-size: 64px;
  }

  .footer-cta__title {
    font-size: 48px;
  }

  .charity-card__content .btn--red-sm {
    width: 343px;
  }

  .footer-cta .btn--white {
    width: 600px;
  }

  .program-header .section__title {
    margin-bottom: 20px;
  }

  .program-sub {
    margin-top: 0;
  }

  .program-day-label {
    margin-bottom: 20px;
  }

  .program-day-sub {
    margin-top: 0;
  }

  /* Section gaps — desktop 196px */
  #about.section--gap-xl {
    padding-bottom: 0;
  }

  #about .video-block {
    margin-bottom: 196px;
  }

  #about + .section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .thanks-text {
    margin-bottom: 196px;
  }

  section:has(.formats-2) {
    padding-top: 0;
    padding-bottom: 0;
  }

  .formats-2 {
    margin-bottom: 196px;
  }

  #how {
    padding-top: 0;
    padding-bottom: 0;
  }

  #how .highlight-banner {
    margin: 48px 0 196px;
  }

  section:has(.team-rows) {
    padding-top: 0;
    padding-bottom: 0;
  }

  .team-rows {
    margin-bottom: 196px;
  }

  #prizes {
    padding-top: 0;
    padding-bottom: 0;
  }

  .prizes-grid {
    margin-bottom: 196px;
  }

  #program.section--gap-lg {
    padding-top: 0;
    padding-bottom: 0;
  }

  .artists-row {
    margin-bottom: 46px;
  }

 

  #faq {
    padding-top: 0;
    padding-bottom: 0;
  }

  .faq-list {
    margin-bottom: 196px;
  }

  #faq + .section {
    padding-top: 0;
    padding-bottom: 0;
  }

  #faq, .section .logos-row {
    margin-bottom: 196px;
  }

  #partners {
    padding-top: 0;
    padding-bottom: 0;
  }

  #contact {
    padding-top: 0px;
    padding-bottom: 196px;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .counter-card {
    position: static;
    width: 100%;
    max-width: 532px;
    height: auto;
    margin: 40px 0 0 auto;
    padding: 40px 36px;
  }

  .counter-card__number {
    font-size: clamp(48px, 4.6vw, 88.62px);
  }

  .charity-card {
    grid-template-columns: 1fr;
  }



  .charity-card__image img {
    border-radius: 0;
    height: 59vw;
        object-position: top;
  }

  .formula-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px;
  }

  .formula-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .formula-eq {
    /*display: none;*/
  }

  .team-row,
  .team-row--2 {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }

  .team-card {
    max-width: 100%;
    width: 100%;
  }

  .activity-cards {
    flex-wrap: wrap;
    justify-content: center;
  }

  .program-timeline__rows {
    grid-template-columns: 200px 1fr;
  }

  .program-timeline--day .program-timeline__rows {
    background:
      linear-gradient(rgba(253, 201, 196, 0.16), rgba(253, 201, 196, 0.16)) 0 0 / 200px 100% no-repeat,
      linear-gradient(rgba(253, 201, 196, 0.16), rgba(253, 201, 196, 0.16)) 220px 0 / calc(100% - 220px) 100% no-repeat;
  }

  .program-timeline--evening .program-timeline__rows {
    background:
      linear-gradient(rgba(63, 30, 226, 0.14), rgba(63, 30, 226, 0.14)) 0 0 / 200px 100% no-repeat,
      linear-gradient(rgba(63, 30, 226, 0.14), rgba(63, 30, 226, 0.14)) 220px 0 / calc(100% - 220px) 100% no-repeat;
  }
}

@media (max-width: 992px) {
  .counter-card {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 40px;
    padding: 40px 36px;
  }

  .counter-card__number {
    font-size: clamp(48px, 4.6vw, 88.62px);
  }

  .formats-2 {
    grid-template-columns: 1fr;
  }

  .steps-row {
    flex-direction: column;
  }

  .flow-arrow {
   transform: rotate(90deg);
  }

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

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

  .contact-image-side {
    min-height: 300px;
  }

  .artists-row {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 1099px) {
  .header__inner {
    grid-template-columns: auto 1fr auto;
    padding: 0 10px;
    gap: 0px;
  }

  .header__nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-card);
    z-index: 99;
  }

  .header__nav.open {
    display: flex;
  }

  .header__actions {
    justify-content: flex-end;
    flex-shrink: 0;
  }

  .header__actions .btn--red {
    padding: 10px 20px;
    font-size: 16px;
    line-height: 20px;
    white-space: nowrap;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .video-block {
    height: 400px;
  }

  .section {
    padding: 30px 0;
  }

  .program-timeline {
    padding: 20px;
  }

  .program-timeline__rows {
    display: block;
    padding: 0;
    background: none !important;
  }

  .program-timeline__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .program-timeline__row:last-child {
    margin-bottom: 0;
  }

  .program-timeline--day .program-timeline__row {
    background: rgba(253, 201, 196, 0.16);
  }

  .program-timeline--evening .program-timeline__row {
    background: rgba(63, 30, 226, 0.14);
  }

  .program-timeline__time,
  .program-timeline__text {
    padding: 0;
  }

.program-timeline__text{grid-column: 1;}



}

@media (max-width: 659px) {
  .format-card--online {
    background-image: none;
    background-color: #eb140a;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 32px);
  }

  .hero__title-1 {
    font-size: clamp(32px, 9vw, 96px);
  }

  .hero__title-2 {
    font-size: clamp(40px, 11vw, 128px);
  }

  .hero__title-3 {
    font-size: clamp(22px, 6vw, 48px);
  }

  .formula-card {
    padding: 17px 24px;
  }

  .pill-cta {
    font-size: clamp(16px, 4vw, 26px);
    text-align: center;
  }

  .section__label {
    font-size: clamp(24px, 7vw, 36px);
  }

  .highlight-banner {
    font-size: clamp(22px, 6vw, 36px);
    line-height: 1.3;
  }

  .program-day-label {
    font-size: clamp(26px, 7vw, 40px);
  }

  .activity-cards {
    flex-direction: column;
    align-items: stretch;
  }

  .activity-card-lg {
    width: 100%;
    height: auto;
    min-height: 46vw;
  }

  .artist-card {
    width: 100%;
  }

  .evening-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px 24px;
  }

  .evening-banner h3 {
    font-size: clamp(24px, 6vw, 40px);
  }

  .evening-banner p {
    font-size: clamp(18px, 4.5vw, 24px);
  }

  .logo-item {
    flex: 1 1 40%;
    max-width: 35%;
    min-height: 114px;
  }
}

a.link{
  color: #EB140A;
    text-decoration: underline;
}

br.mob{display: none;}
@media (max-width: 659px) {
br.pc{
  display: none;
  }
  br.mob{display: block;}
}

/* Close landing: Figma mob layout starts at 1099 */
@media (max-width: 1099px) {
  .section__subtitle--results br.pc {
    display: none;
  }

  .section__subtitle--results br.mob {
    display: block;
  }
}

/* ========== Close landing ========== */
.header--close .header__inner--close {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 clamp(24px, calc((100% - 1200px) / 2), 360px);
  height: 100%;
  grid-template-columns: none;
  gap: 0;
}

.header--close .header__logo {
  flex-shrink: 0;
  line-height: 0;
}

.header--close .header__actions {
  margin-left: auto;
  flex-shrink: 0;
}

.header--close .header__logo img.header__logo-img--desk {
  width: 82px;
  height: 61px;
}

.header--close .header__logo img.header__logo-img--mob {
  width: auto;
  height: 56px;
}

.header--close .header__logo-img--mob {
  display: none !important;
}

.header--close .header__logo-img--desk {
  display: block !important;
}

.hero--close {
  min-height: calc(var(--header-h) + 918px);
}

.hero__layout--close {
  position: relative;
  min-height: 918px;
  padding: 66px 0 0;
}

.hero__content--close {
  max-width: 1181px;
  position: relative;
  z-index: 2;
}

.hero__titles--close {
  position: relative;
  min-height: 281px;
}

.hero--close .hero__title-1--close {
  margin: 0;
  font-size: 96px;
  line-height: 70px;
  font-weight: 400;
  white-space: nowrap;
}

.hero--close .hero__title-2--close {
  margin: 24px 0 0;
  font-size: 128px;
  line-height: 93px;
  font-weight: 400;
  white-space: nowrap;
}

.hero--close .hero__title-3--close {
  margin: 59px 0 0;
  max-width: none;
  font-size: 48px;
  line-height: 35px;
  font-weight: 400;
  white-space: nowrap;
}

.hero__thanks {
  margin: 52px 0 0;
  max-width: 704px;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: #fff;
}

.counter-card.counter-card--close {
  left: 0;
  right: auto;
  top: 547px;
  margin: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  filter: none;
  box-shadow: none;
}

@media (max-width: 1400px) {
  .hero--close .hero__title-1--close {
    font-size: clamp(56px, 6.2vw, 96px);
    line-height: 0.73;
  }

  .hero--close .hero__title-2--close {
    font-size: clamp(72px, 8.2vw, 128px);
    line-height: 0.73;
    margin-top: clamp(12px, 1.5vw, 24px);
  }

  .hero--close .hero__title-3--close {
    font-size: clamp(28px, 3.1vw, 48px);
    line-height: 1;
    margin-top: clamp(28px, 3.5vw, 59px);
  }

  .hero__titles--close {
    min-height: 0;
  }
}

@media (max-width: 1200px) {
  .counter-card.counter-card--close {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 532px;
    margin: 48px 0 0;
  }

  .hero__layout--close {
    min-height: auto;
  }

  .hero--close .hero__title-3--close {
    white-space: normal;
  }
}

.section--results {
  padding: 92px 0 60px;
}

.section--results .section__title {
  margin: 0 0 60px;
  font-size: clamp(23px, 3.3vw, 64px);
}

.section__subtitle--results {
  margin: 0 auto 60px;
  max-width: 1200px;
  font-family: "A1 Sans", sans-serif;
  font-size: clamp(18px, 1.875vw, 36px);
  font-weight: 500;
  line-height: 1.333;
  text-align: center;
}

.results-grid {
  display: grid;
  grid-template-columns: minmax(0, 564fr) minmax(0, 620fr);
  gap: 16px;
  align-items: start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.results-itog {
  position: relative;
  width: 100%;
  aspect-ratio: 564 / 572;
  border-radius: 20px;
  overflow: hidden;
  min-width: 0;
  container-type: inline-size;
}

.results-itog__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  image-rendering: auto;
}

.results-itog__text {
  position: absolute;
  left: 6.38%;
  right: 6.38%;
  top: 65.56%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.results-itog__value {
  margin: 0;
  font-size: clamp(28px, 11.4cqi, 64.227px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.1353px;
  color: #fff;
}

.results-itog__desc {
  margin: 0;
  max-width: 87.23%;
  font-family: "A1 Sans", sans-serif;
  font-size: clamp(14px, 4.25cqi, 24px);
  font-weight: 500;
  line-height: 1.333;
  letter-spacing: -0.4181px;
  color: rgba(255, 255, 255, 0.85);
}

@container (min-width: 500px) {
  .results-itog__desc {
    font-size: 24px;
    line-height: 32px;
  }

  .results-itog__value {
    font-size: 64.227px;
    line-height: 64.227px;
  }
}

.stats-grid {
  --stats-base: 620;
  container-type: inline-size;
  container-name: stats;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: calc(10 / var(--stats-base) * 100cqi);
  width: 100%;
  min-width: 0;
  aspect-ratio: 620 / 572;
}

.stat-card {
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  padding: calc(12 / var(--stats-base) * 100cqi);
  border-radius: calc(20 / var(--stats-base) * 100cqi);
  background: #fff;
  box-shadow: 0 calc(3 / var(--stats-base) * 100cqi) calc(9 / var(--stats-base) * 100cqi) rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(6.057 / var(--stats-base) * 100cqi);
  box-sizing: border-box;
  overflow: hidden;
}

.stat-icon {
  position: relative;
  display: block;
  width: calc(44 / var(--stats-base) * 100cqi);
  height: calc(44 / var(--stats-base) * 100cqi);
  flex-shrink: 0;
  overflow: visible;
}

.stat-icon img {
  position: static;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.stat-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
}

.stat-card__value {
  margin: 0;
  font-family: "A1 Sans", sans-serif;
  font-size: calc(24 / var(--stats-base) * 100cqi);
  font-weight: 700;
  line-height: calc(32 / var(--stats-base) * 100cqi);
  color: #eb140a;
  letter-spacing: calc(-0.7088 / var(--stats-base) * 100cqi);
  white-space: nowrap;
}

.stat-card__label {
  margin: 0;
  padding-top: calc(5.352 / var(--stats-base) * 100cqi);
  font-family: "A1 Sans", sans-serif;
  font-size: calc(16 / var(--stats-base) * 100cqi);
  font-weight: 400;
  line-height: calc(20 / var(--stats-base) * 100cqi);
  letter-spacing: calc(-0.2012 / var(--stats-base) * 100cqi);
  color: #000;
}

.section--thanks-banner {
  padding: 96px 0 60px;
}

.thanks-banner {
  margin: 0 auto;
  max-width: 1201px;
  font-family: var(--font-display);
  font-size: clamp(23px, 3.3vw, 64px);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: #000;
}

.thanks-banner .br-mob {
  display: none;
}

.thanks-banner .br-desk {
  display: block;
}

.section--gallery {
  padding: 40px 0 196px;
}

.photo-gallery {
  --gw: 1200;
  container-type: inline-size;
  container-name: gallery;
  display: flex;
  flex-direction: column;
  gap: calc(24 / var(--gw) * 100cqi);
  margin-bottom: 60px;
  width: 100%;
}

.photo-gallery__row {
  display: flex;
  gap: calc(24 / var(--gw) * 100cqi);
  width: 100%;
  align-items: stretch;
}

.photo-gallery__col {
  display: flex;
  flex-direction: column;
  gap: calc(24 / var(--gw) * 100cqi);
  width: calc(385 / var(--gw) * 100cqi);
  flex-shrink: 0;
}

.photo-gallery__item {
  overflow: hidden;
  border-radius: calc(25 / var(--gw) * 100cqi);
  background: #999;
  flex-shrink: 0;
}

.photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-gallery__item--hero {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 674;
}

.photo-gallery__item--video {
  position: relative;
  background: #111;
  overflow: hidden;
  aspect-ratio: 1200 / 674;
  height: auto;
}

.photo-gallery__item--video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.photo-gallery__item--sq-lg {
  width: calc(792 / var(--gw) * 100cqi);
  height: auto;
  aspect-ratio: 1 / 1;
}

.photo-gallery__item--rect {
  width: 100%;
  height: auto;
  aspect-ratio: 385 / 390;
}

.photo-gallery__item--rect-sm {
  width: 100%;
  height: auto;
  aspect-ratio: 385 / 378;
}

.photo-gallery__item--mid {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 384;
}

.photo-gallery__row--3 .photo-gallery__item--sq {
  width: calc(384 / var(--gw) * 100cqi);
  height: auto;
  aspect-ratio: 1 / 1;
  flex: none;
}

.photo-gallery__row--4 .photo-gallery__item--sm {
  width: calc(282 / var(--gw) * 100cqi);
  height: auto;
  aspect-ratio: 1 / 1;
  flex: none;
}

.section__title--gallery {
  margin: 0 0 60px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-transform: none;
}

.gallery-watch {
  margin: 0 0 60px;
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  color: #000;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 196px;
  margin: 0;
}

.social-links__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

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

.social-links__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-links__item--ok {
  background: linear-gradient(180deg, #ffa023 0%, #ff821d 100%);
  border-radius: 25px;
}

.social-links__item--ok img {
  width: 60px;
  height: 60px;
}

.section--continue {
  padding: 40px 0 96px;
}

.section--continue .section__title {
  margin-bottom: 52px;
  font-family: var(--font-display);
  font-size: clamp(23px, 3.3vw, 64px);
  font-weight: 400;
  line-height: 1.2;
}

.section--continue .charity-card {
  width: 1200px;
  max-width: 100%;
  height: 400px;
  margin: 0 auto;
}

/* Tablet / mid: keep boy photo visible beside text (override stacked 1-col <1200) */
@media (max-width: 1200px) and (min-width: 769px) {
  .section--continue .charity-card {
    display: grid !important;
    grid-template-columns: minmax(280px, 42%) minmax(0, 1fr) !important;
    height: auto !important;
    min-height: 360px;
    overflow: hidden;
  }

  .section--continue .charity-card__image {
    min-height: 360px;
    align-self: stretch;
    overflow: hidden;
  }

  .section--continue .charity-card__image img {
    width: 100% !important;
    height: 100% !important;
    min-height: 360px;
    border-radius: 0 0 240px 0 !important;
    object-fit: cover !important;
    object-position: center top !important;
  }

  .charity-card__content--close {
    padding: clamp(28px, 3vw, 48px) clamp(24px, 3vw, 40px) !important;
    gap: clamp(24px, 3vw, 48px) !important;
    align-items: flex-start !important;
    justify-content: center;
  }

  .charity-card__content--close p {
    text-align: left !important;
    font-size: clamp(16px, 1.8vw, 22px) !important;
    line-height: 1.35 !important;
    max-width: none !important;
  }

  .charity-card__content--close .btn--red-sm {
    width: min(343px, 100%) !important;
    max-width: 343px !important;
    min-height: 48px !important;
    height: auto !important;
    align-self: flex-start !important;
    font-size: 16px !important;
  }
}

.charity-card__content--close {
  justify-content: center;
  align-items: flex-start;
  gap: 68px;
  padding: 66px 51px 66px 51px;
}

.charity-card__content--close p {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  max-width: 612px;
}

.charity-card__content--close .btn--red-sm {
  width: 343px;
  max-width: 343px;
  height: 48px;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  border-radius: 13px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: flex-start;
}

.section--finale {
  padding: 40px 0 0;
}

.finale__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(23px, 3.3vw, 64px);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: #000;
}

.finale__subtitle {
  margin: 60px 0 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #000;
}

.footer-copy {
  padding: 196px 0 48px;
  border-top: none;
}

.footer-copy p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #999;
  text-align: center;
}

/* Close landing — mobile scales 1:1 from Figma frame 1080 */
@media (max-width: 1099px) {
  :root {
    --u: calc(100vw / 1080);
  }

  body:has(.header--close) .container {
    width: calc(100% - 2 * 44 * var(--u));
  }

  .header--close {
    height: auto;
    min-height: 0;
    position: relative;
  }

  .header--close .header__logo-img--desk {
    display: none !important;
  }

  .header--close .header__logo-img--mob {
    display: block !important;
    width: calc(227 * var(--u));
    height: auto;
    max-height: none;
  }

  .header--close .header__inner--close {
    padding: calc(47 * var(--u)) calc(44 * var(--u));
    min-height: 0;
    height: auto;
    align-items: center;
  }

  .header--close .lang-switch__toggle {
    font-size: calc(40 * var(--u));
    line-height: 1;
  }

  .header--close .lang-switch__arrow {
    width: calc(32 * var(--u));
    height: calc(32 * var(--u));
  }

  .hero--close {
    min-height: auto;
    padding-top: 0;
  }

  .hero__layout--close {
    min-height: auto;
    padding: calc(64 * var(--u)) 0 calc(48 * var(--u));
  }

  .hero__content--close {
    max-width: none;
  }

  .hero--close .hero__title-1--close,
  .hero--close .hero__title-2--close {
    font-size: calc(88 * var(--u));
    line-height: 1.2;
    margin-top: 0;
  }

  .hero--close .hero__title-3--close {
    font-size: calc(44 * var(--u));
    line-height: 1.45;
    margin-top: calc(32 * var(--u));
    white-space: normal;
  }

  .hero__thanks {
    margin-top: calc(48 * var(--u));
    max-width: none;
    font-size: calc(32 * var(--u));
    line-height: 1.2;
  }

  .counter-card.counter-card--close {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    margin: calc(64 * var(--u)) 0 0;
    height: auto;
    aspect-ratio: 992 / 798;
    padding: calc(80 * var(--u)) calc(56 * var(--u)) calc(56 * var(--u));
    border-radius: calc(40 * var(--u));
  }

  .hero--close .counter-card__number {
    font-size: calc(166.154 * var(--u));
    line-height: 1.2;
  }

  .hero--close .counter-card__label {
    font-size: calc(55.385 * var(--u));
    line-height: 1.2;
    margin-bottom: calc(40 * var(--u));
  }

  .hero--close .progress-bar {
    height: calc(34 * var(--u));
    margin-bottom: calc(28 * var(--u));
  }

  .hero--close .progress-bar__knob {
    width: calc(48 * var(--u));
    height: calc(48 * var(--u));
  }

  .hero--close .counter-card__stats {
    font-size: calc(36 * var(--u));
  }

  .section--results {
    padding: calc(92 * var(--u)) 0 calc(60 * var(--u));
  }

  .section--results .section__title,
  .section--continue .section__title,
  .section__title--gallery,
  .thanks-banner,
  .finale__title {
    font-size: calc(66 * var(--u));
  }

  .section__subtitle--results {
    margin-bottom: calc(56 * var(--u));
    max-width: 100%;
    font-size: calc(36 * var(--u));
  }

  .results-grid {
    display: flex;
    flex-direction: column;
    gap: calc(40 * var(--u));
  }

  .results-itog {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 992 / 1008;
    border-radius: calc(28 * var(--u));
  }

  .results-itog__text {
    gap: calc(16 * var(--u));
  }

  .results-itog__value {
    font-size: calc(86 * var(--u));
    line-height: 1;
  }

  .results-itog__desc {
    font-size: calc(38 * var(--u));
    line-height: 1.33;
    max-width: none;
  }

  .stats-grid {
    width: 100%;
    max-width: 100%;
  }

  .section--thanks-banner {
    padding: calc(80 * var(--u)) 0;
  }

  .thanks-banner {
    max-width: none;
  }

  .thanks-banner .br-desk {
    display: none;
  }

  .thanks-banner .br-mob {
    display: block;
  }

  .section--gallery {
    padding: calc(48 * var(--u)) 0 calc(96 * var(--u));
  }

  .photo-gallery {
    --g: calc(22 * var(--u));
    gap: var(--g);
    margin-bottom: calc(80 * var(--u));
  }

  .photo-gallery__row,
  .photo-gallery__col {
    gap: var(--g);
  }

  .photo-gallery__item {
    border-radius: calc(28 * var(--u));
  }

  .photo-gallery__item--hero {
    width: 100%;
    height: auto;
    aspect-ratio: 990 / 556;
  }

  .photo-gallery__item--video {
    aspect-ratio: 990 / 556;
    height: auto;
  }

  .photo-gallery__row--split {
    flex-direction: row;
    align-items: stretch;
  }

  .photo-gallery__item--sq-lg {
    width: calc((100% - var(--g)) * 0.659);
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .photo-gallery__col {
    width: calc((100% - var(--g)) * 0.32);
    flex: 1;
  }

  .photo-gallery__item--rect,
  .photo-gallery__item--rect-sm {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .photo-gallery__item--mid {
    width: 100%;
    height: auto;
    aspect-ratio: 991 / 316;
  }

  .photo-gallery__row--3 {
    flex-wrap: nowrap;
  }

  .photo-gallery__row--3 .photo-gallery__item--sq {
    width: calc((100% - 2 * var(--g)) / 3);
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .photo-gallery__row--4 {
    flex-wrap: nowrap;
  }

  .photo-gallery__row--4 .photo-gallery__item--sm {
    width: calc((100% - 3 * var(--g)) / 4);
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .section__title--gallery {
    margin-bottom: calc(48 * var(--u));
  }

  .gallery-watch {
    margin-bottom: calc(56 * var(--u));
    font-size: calc(53 * var(--u));
    line-height: 1.2;
  }

  .social-links {
    gap: calc(66 * var(--u));
    margin-bottom: 0;
  }

  .social-links__item {
    width: calc(178 * var(--u));
    height: calc(178 * var(--u));
  }

  .social-links__item--ok {
    border-radius: calc(32 * var(--u));
  }

  .social-links__item--ok img {
    width: 60%;
    height: 60%;
  }

  .section--continue {
    padding: calc(48 * var(--u)) 0 calc(96 * var(--u));
  }

  .section--continue .section__title {
    margin-bottom: calc(64 * var(--u));
  }

  .section--continue .charity-card {
    height: auto !important;
    min-height: 0 !important;
    grid-template-columns: 1fr !important;
    border-radius: calc(28 * var(--u));
  }

  .section--continue .charity-card__image {
    min-height: 0 !important;
  }

  .section--continue .charity-card__image img {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 992 / 786;
    border-radius: 0 !important;
    object-position: center top;
  }

  .charity-card__content--close {
    gap: calc(48 * var(--u));
    padding: calc(56 * var(--u)) calc(48 * var(--u));
    align-items: center;
  }

  .charity-card__content--close p {
    font-size: calc(36 * var(--u));
    line-height: 1.3;
    text-align: center;
    max-width: none;
  }

  .charity-card__content--close .btn--red-sm {
    width: min(100%, calc(831 * var(--u)));
    max-width: 100%;
    height: auto;
    min-height: calc(134 * var(--u));
    padding: calc(40 * var(--u)) calc(16 * var(--u));
    font-size: calc(38 * var(--u));
    line-height: 1.2;
    border-radius: calc(20 * var(--u));
    align-self: center;
  }

  .section--finale {
    padding: calc(48 * var(--u)) 0 0;
  }

  .finale__subtitle {
    margin-top: calc(66 * var(--u));
    font-size: calc(40 * var(--u));
  }

  .footer-copy {
    padding: calc(120 * var(--u)) 0 calc(64 * var(--u));
  }

  .footer-copy p {
    font-size: calc(24 * var(--u));
    line-height: 1.4;
  }

  .hero--close .hero__titles .hero__title-1,
  .hero--close .hero__titles .hero__title-2 {
    display: inline;
  }

  .hero--close .hero__title-1::after {
    content: " ";
  }

  .hero--close .hero__title-2 {
    margin-bottom: calc(32 * var(--u));
  }
}
