@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Geologica:wght,CRSV@100..900,0&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Geologica", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #151515;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.btn:hover {
  opacity: 0.92;
}
.btn--primary {
  background: #003264;
  color: #ffffff;
}
.btn--secondary {
  background: #8aa4c2;
  color: #ffffff;
}
.btn--white {
  background: #ffffff;
  color: #003264;
}
.btn--outline-white {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.header {
  position: relative;
  z-index: 20;
  background: #ffffff;
  box-shadow: none;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 64px;
}
.header__logo {
  flex-shrink: 0;
  font-family: "Pacifico", cursive;
  font-size: 28px;
  line-height: 1;
  color: #003264;
}
.header__logo img {
  width: 148px;
  height: auto;
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  border: none;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease;
}
.header__burger:hover {
  background: rgba(0, 50, 100, 0.04);
}
.header__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #003264;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #111111;
  transition: color 0.2s ease;
}
.header__nav-link:hover {
  color: #003264;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(0, 50, 100, 0.35);
  border-radius: 50%;
  color: #003264;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.header__social-link:hover {
  border-color: rgba(0, 50, 100, 0.6);
  color: #003264;
}
.header__social-link svg {
  width: 18px;
  height: 18px;
}
.header__overlay {
  display: none;
}
.header__close {
  display: none;
}
.header__close-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  margin-left: -10px;
  margin-top: -1px;
  background: #003264;
  border-radius: 2px;
}
.header__close-line:first-child {
  transform: rotate(45deg);
}
.header__close-line:last-child {
  transform: rotate(-45deg);
}
@media (max-width: 1200px) {
  .header__burger {
    display: flex;
  }
  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 18;
    background: rgba(0, 50, 100, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s;
  }
  .header.is-open .header__overlay {
    opacity: 1;
    visibility: visible;
  }
  .header__menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 19;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: min(320px, 88vw);
    height: 100dvh;
    margin-left: 0;
    padding: 72px 24px 32px;
    background: #ffffff;
    box-shadow: -8px 0 32px rgba(0, 50, 100, 0.12);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .header__close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  .header__close:hover {
    background: rgba(0, 50, 100, 0.04);
  }
  .header.is-open .header__menu {
    transform: translateX(0);
  }
  .header__nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 50, 100, 0.1);
  }
  .header__nav-link {
    padding: 14px 0;
    font-size: 16px;
  }
  .header__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 24px;
  }
  .header__actions .btn {
    display: inline-flex;
    justify-content: center;
    width: 100%;
  }
  .header__social-link {
    align-self: flex-start;
  }
  .header .lang-switcher__dropdown {
    left: 0;
    transform: translateX(0) translateY(-4px);
  }
  .header .lang-switcher__dropdown.is-open {
    transform: translateX(0) translateY(0);
  }
}
@media (max-width: 768px) {
  .header__inner {
    min-height: 72px;
    gap: 14px;
  }
  .header__logo img {
    width: 132px;
  }
  .header__menu {
    padding-top: 68px;
  }
}

body.menu-open {
  overflow: hidden;
}

.lang-switcher {
  position: relative;
}
.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 14px;
  border: 1.5px solid rgba(0, 50, 100, 0.35);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #003264;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.lang-switcher__btn:hover, .lang-switcher__btn[aria-expanded=true] {
  border-color: rgba(0, 50, 100, 0.6);
  background: rgba(0, 50, 100, 0.04);
}
.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  z-index: 100;
  min-width: 68px;
  padding: 2px 0;
  background: #ffffff;
  border: 1px solid rgba(0, 50, 100, 0.15);
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 50, 100, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.lang-switcher__dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.lang-switcher__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #003264;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.lang-switcher__item:hover {
  background: rgba(0, 50, 100, 0.06);
}
.lang-switcher__item--active {
  background: rgba(0, 50, 100, 0.08);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #ffffff;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 50, 100, 0.6) 0%, rgba(0, 50, 100, 0.2) 45%, rgba(0, 50, 100, 0.02) 100%), url("../images/hero/bg.jpg") center/cover no-repeat;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 96px 24px 150px;
}
.hero__content {
  max-width: 720px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 24px;
  padding: 7px 20px;
  border-radius: 999px;
  background: #003264;
  font-size: 15px;
  font-weight: 500;
}
.hero__title {
  display: flex;
  flex-direction: column;
  margin: 0 0 20px;
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.hero__title span:first-child {
  font-size: clamp(30px, 3.6vw, 46px);
}
.hero__title strong {
  font-size: clamp(34px, 4.1vw, 52px);
  font-weight: 800;
  line-height: 1.12;
}
.hero__title span:last-child {
  font-size: clamp(38px, 4.6vw, 58px);
}
.hero__subtitle {
  margin: 0 0 36px;
  max-width: 560px;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.35;
  opacity: 0.9;
}
.hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
  width: 100%;
  height: 180px;
  pointer-events: none;
}
.hero__wave svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 992px) {
  .hero__inner {
    padding-top: 72px;
    padding-bottom: 130px;
  }
}
@media (max-width: 768px) {
  .hero__inner {
    padding: 56px 24px 100px;
  }
  .hero__badge {
    margin-bottom: 16px;
  }
  .hero__subtitle {
    margin-bottom: 24px;
  }
}

.info-block {
  position: relative;
  overflow: visible;
  padding: 0 0 64px;
  background: #ffffff;
}
.info-block__grid {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}
.info-block__content {
  padding-left: 46px;
  padding-top: 64px;
}
.info-block__title {
  margin: 0 0 24px;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  color: #003264;
}
.info-block__title strong {
  display: block;
  font-size: clamp(32px, 3.4vw, 40px);
  font-weight: 800;
}
.info-block__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 360px;
  font-size: 16px;
  line-height: 1.35;
  color: #151515;
}
.info-block__media {
  position: relative;
  min-height: 432px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: -120px;
  z-index: 4;
}
.info-block__cards {
  width: 620px;
  max-width: none;
  transform: translate(20px, 2px);
  filter: drop-shadow(0 24px 40px rgba(0, 50, 100, 0.18));
}
.info-block__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 110px;
  pointer-events: none;
}
.info-block__wave svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 992px) {
  .info-block {
    padding: 40px 0 56px;
    overflow-x: clip;
  }
  .info-block__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .info-block__content {
    padding-left: 0;
    padding-top: 0;
  }
  .info-block__media {
    min-height: auto;
    justify-content: center;
    margin-top: 0;
    z-index: 1;
  }
  .info-block__cards {
    display: block;
    width: 100%;
    max-width: 480px;
    height: auto;
    margin: 0 auto;
    transform: none;
  }
}
@media (max-width: 768px) {
  .info-block {
    padding: 32px 0 48px;
  }
  .info-block__grid {
    gap: 24px;
  }
  .info-block__text {
    font-size: 16px;
  }
  .info-block__media {
    width: 100%;
    overflow: hidden;
  }
  .info-block__cards {
    max-width: min(100%, 360px);
  }
}

.register-block {
  position: relative;
  overflow: hidden;
  padding: 52px 0 72px;
  background: #eef3f8;
}
.register-block__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 56px;
}
.register-block__media {
  display: flex;
  justify-content: flex-start;
}
.register-block__photo {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 40px 120px 40px 120px;
}
.register-block__content {
  max-width: 520px;
  padding-right: 20px;
}
.register-block__title {
  margin: 0 0 24px;
  font-size: clamp(34px, 3.6vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  color: #003264;
}
.register-block__title strong {
  display: block;
  font-weight: 800;
}
.register-block__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.35;
  color: #151515;
}
.register-block__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 100px;
  pointer-events: none;
}
.register-block__wave svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 992px) {
  .register-block {
    padding: 40px 0 56px;
  }
  .register-block__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .register-block__media {
    justify-content: center;
  }
  .register-block__content {
    max-width: none;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .register-block {
    padding: 32px 0 48px;
  }
  .register-block__photo {
    width: min(100%, 300px);
    border-radius: 28px 80px 28px 80px;
  }
  .register-block__text {
    font-size: 15px;
  }
}

.prizes-block {
  position: relative;
  overflow: hidden;
  padding: 48px 0 64px;
  background: #ffffff;
}
.prizes-block__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 64px;
  align-items: start;
}
.prizes-block__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.prizes-block__item--right {
  padding-top: 80px;
}
.prizes-block__photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}
.prizes-block__caption {
  margin: 0;
  color: #003264;
  line-height: 1.2;
}
.prizes-block__caption-sub {
  display: block;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  margin-bottom: 6px;
}
.prizes-block__caption-main {
  display: block;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
}
.prizes-block__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 110px;
  pointer-events: none;
}
.prizes-block__wave svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 992px) {
  .prizes-block {
    padding: 36px 0 48px;
  }
  .prizes-block__grid {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
  .prizes-block__item--right {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .prizes-block__photo {
    border-radius: 20px;
  }
  .prizes-block__caption {
    font-size: 26px;
  }
}

.terms-block {
  position: relative;
  padding: 48px 0 60px;
  background: #f5f7fa;
}
.terms-block__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
}
.terms-block__photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 30px 100px 30px 100px;
}
.terms-block__content {
  max-width: 520px;
  padding-left: 16px;
}
.terms-block__title {
  margin: 0 0 24px;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 400;
  line-height: 1.25;
  color: #003264;
}
.terms-block__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 17px;
  line-height: 1.55;
  color: #4a607a;
}
@media (max-width: 992px) {
  .terms-block {
    padding: 36px 0 44px;
  }
  .terms-block__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .terms-block__content {
    max-width: none;
  }
}
@media (max-width: 768px) {
  .terms-block__photo {
    border-radius: 20px 60px 20px 60px;
  }
  .terms-block__content {
    padding-left: 0;
  }
  .terms-block__text {
    font-size: 15px;
  }
}

.faq-block {
  padding: 0 0 60px;
  background: #f5f7fa;
}
.faq-block__title {
  margin: 0 0 28px;
  font-size: clamp(32px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: #003264;
}
.faq-block__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid #dde3ea;
  border-radius: 14px;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item.is-open {
  box-shadow: 0 8px 24px rgba(0, 50, 100, 0.06);
}
.faq-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  list-style: none;
  cursor: pointer;
  user-select: none;
}
.faq-item__header::-webkit-details-marker {
  display: none;
}
.faq-item__question {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #151515;
}
.faq-item__toggle {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #003264;
  color: #ffffff;
  transition: transform 0.3s ease, background 0.2s ease;
}
.faq-item__toggle::before {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 0.3s ease;
}
.faq-item.is-open .faq-item__toggle::before {
  content: "−";
  transform: translateY(-1px) scale(1.05);
}
.faq-item__content {
  overflow: hidden;
  height: 0;
  transition: height 0.4s ease;
}
.faq-item__answer {
  padding: 0 24px 22px;
  max-width: 920px;
  font-size: 16px;
  line-height: 1.5;
  color: #4a607a;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease 0.05s, transform 0.35s ease 0.05s;
}
.faq-item__answer p + p {
  margin-top: 10px;
}
.faq-item__answer ul, .faq-item__answer ol {
  margin: 8px 0 0 0;
  padding-left: 20px;
}
.faq-item__answer ul li, .faq-item__answer ol li {
  margin-bottom: 5px;
}
.faq-item__answer ul {
  list-style: disc;
}
.faq-item__answer ol {
  list-style: decimal;
}
.faq-item.is-open .faq-item__answer {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .faq-item__header {
    padding: 18px 16px;
  }
  .faq-item__question {
    font-size: 16px;
  }
  .faq-item__toggle {
    width: 32px;
    height: 32px;
  }
  .faq-item__toggle::before {
    font-size: 20px;
  }
  .faq-item__answer {
    padding: 0 16px 18px;
    font-size: 15px;
  }
}

.footer {
  position: relative;
  background: radial-gradient(120% 120% at 86% 105%, rgba(78, 130, 182, 0.28) 0%, rgba(78, 130, 182, 0) 38%), radial-gradient(80% 80% at 14% 100%, rgba(13, 86, 154, 0.22) 0%, rgba(13, 86, 154, 0) 45%), linear-gradient(180deg, #003264 0%, #003968 100%);
  color: #ffffff;
}
.footer__top {
  padding: 34px 0 52px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 24px 44px;
  align-items: start;
}
.footer__logo {
  width: 214px;
  height: auto;
  filter: brightness(0) invert(1);
}
.footer__label {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-width: 350px;
}
.footer__link {
  font-size: 16px;
  line-height: 1.28;
  color: #ffffff;
  transition: opacity 0.2s ease;
}
.footer__link:hover {
  opacity: 0.8;
}
.footer__contacts {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 44px;
  row-gap: 10px;
  align-items: start;
}
.footer__email, .footer__phone, .footer__contacts > .footer__link {
  grid-column: 1;
}
.footer__email {
  font-size: 16px;
  line-height: 1.3;
  color: #ffffff;
  transition: opacity 0.2s ease;
}
.footer__email:hover {
  opacity: 0.8;
}
.footer__phone {
  margin: 2px 0 4px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  color: #ffffff;
  transition: opacity 0.2s ease;
}
.footer__phone:hover {
  opacity: 0.8;
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: 10px;
  grid-column: 2;
  grid-row: 1/span 3;
  align-self: start;
  padding-top: 2px;
}
.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.footer__social:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}
.footer__social--facebook, .footer__social--instagram, .footer__social--whatsapp {
  background: transparent;
}
.footer__social--facebook svg, .footer__social--instagram svg, .footer__social--whatsapp svg {
  display: block;
  width: 100%;
  height: 100%;
}
.footer__bottom {
  position: relative;
  z-index: 1;
  padding: 44px 0 28px;
}
.footer__bottom .container {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.footer__wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 44px;
  pointer-events: none;
}
.footer__wave svg {
  display: block;
  width: 100%;
  height: 100%;
}
.footer__credit {
  margin: 0;
  padding: 8px 16px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  text-align: center;
}
.footer__credit-link {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}
.footer__credit-link:hover {
  opacity: 0.85;
}
@media (max-width: 1200px) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer__contacts {
    grid-column: 1/-1;
    grid-template-columns: 1fr;
  }
  .footer__email, .footer__phone, .footer__contacts > .footer__link {
    grid-column: auto;
  }
  .footer__socials {
    grid-column: auto;
    grid-row: auto;
    padding-top: 18px;
  }
}
@media (max-width: 768px) {
  .footer__top {
    padding: 36px 0 28px;
  }
  .footer__bottom {
    padding-bottom: 96px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__logo {
    width: 170px;
  }
  .footer__phone {
    font-size: clamp(22px, 6.5vw, 26px);
    white-space: normal;
  }
  .footer__socials {
    gap: 12px;
    padding-top: 20px;
  }
}

.winners {
  padding: 56px 0 96px;
  background: #ffffff;
}
.winners__title {
  margin: 0 0 32px;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: #003264;
}
.winners__card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
}
.winners__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid #e2e8f0;
  flex-wrap: wrap;
}
.winners__search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100%, 380px);
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid #d1d9e2;
  border-radius: 10px;
  background: #ffffff;
  transition: border-color 0.2s ease;
}
.winners__search:focus-within {
  border-color: #003264;
}
.winners__search input {
  flex: 1;
  border: none;
  outline: none;
  font-family: "Geologica", "Segoe UI", sans-serif;
  font-size: 15px;
  color: #151515;
  background: transparent;
}
.winners__search input::placeholder {
  color: #9aacbe;
}
.winners__search svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #9aacbe;
}
.winners__filter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 20px;
  background: #003264;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s ease;
}
.winners__filter:hover {
  opacity: 0.9;
}
.winners__filter svg {
  width: 14px;
  height: 14px;
}

.winners-table {
  width: 100%;
  border-collapse: collapse;
}
.winners-table th, .winners-table td {
  padding: 16px 24px;
  text-align: left;
  white-space: nowrap;
}
.winners-table th {
  font-size: 14px;
  font-weight: 600;
  color: #151515;
  border-bottom: 1px solid #e2e8f0;
  background: #ffffff;
}
.winners-table td {
  font-size: 14px;
  color: #151515;
  border-bottom: 1px solid #f0f4f8;
}
.winners-table td:last-child {
  white-space: normal;
  min-width: 180px;
}
.winners-table tbody tr {
  transition: background 0.2s ease;
}
.winners-table tbody tr:hover {
  background: #f8fafc;
}
.winners-table tbody tr:last-child td {
  border-bottom: none;
}
@media (max-width: 992px) {
  .winners-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.check-flow {
  min-height: calc(100dvh - 64px);
  padding: 32px 0 48px;
  background: #eef3f8;
}
.check-flow__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}
.check-flow__title {
  margin: 0 0 12px;
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  color: #111111;
}
.check-flow__subtitle {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.35;
  color: #4a607a;
}
.check-flow__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0 28px;
}
.check-flow__icon svg {
  display: block;
  width: min(100%, 132px);
  height: auto;
}
.check-flow__field {
  width: 100%;
  margin-bottom: 0;
  text-align: left;
}
.check-flow__label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #111111;
}
.check-flow__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.check-flow__select {
  position: relative;
  display: block;
  width: 100%;
}
.check-flow__select select {
  appearance: none;
  width: 100%;
  min-height: 56px;
  padding: 16px 44px 16px 20px;
  border: none;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 50, 100, 0.08);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #111111;
  cursor: pointer;
}
.check-flow__select select:focus {
  outline: 2px solid rgba(0, 50, 100, 0.25);
  outline-offset: 2px;
}
.check-flow__select svg {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 14px;
  height: 14px;
  color: #111111;
  pointer-events: none;
  transform: translateY(-50%);
}
.check-flow__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 8px;
}
.check-flow .btn--block {
  width: 100%;
}
.check-flow .btn--action {
  min-height: 56px;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.check-flow .btn--outline-primary {
  background: #ffffff;
  color: #003264;
  border: 1.5px solid #003264;
}
.check-flow .btn--outline-secondary {
  background: #ffffff;
  color: #8aa4c2;
  border: 1.5px solid #8aa4c2;
}
.check-flow--register {
  padding-top: 24px;
}
.check-flow--register .check-flow__title {
  margin-top: 28px;
}
.check-flow--register .check-flow__subtitle {
  margin-bottom: 24px;
}
.check-flow--upload {
  justify-content: flex-start;
  padding-top: 40px;
  padding-bottom: 56px;
  background: #eef3f8;
}
.check-flow--upload .check-flow__inner {
  flex: 0;
  justify-content: center;
}
.check-flow--upload .check-flow__inner--upload {
  max-width: 420px;
}
.check-flow--upload .check-flow__subtitle {
  margin-bottom: 28px;
}
.check-flow__review {
  max-width: 420px;
  margin: 0 auto;
  padding-bottom: 24px;
}
.check-flow__review-head {
  margin-bottom: 24px;
  text-align: center;
}
.check-flow__review-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.check-flow__review-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.check-flow__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 50%;
  background: #2f80ed;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  vertical-align: middle;
}
.check-flow__field--marked .check-flow__label {
  display: flex;
  align-items: center;
}
.check-flow__form--receipt {
  margin-top: 0;
}
.check-flow--success, .check-flow--error {
  justify-content: center;
  padding-top: 48px;
  padding-bottom: 56px;
}
.check-flow--success .check-flow__inner, .check-flow--error .check-flow__inner {
  flex: 1;
  justify-content: center;
}
.check-flow--success .check-flow__subtitle, .check-flow--error .check-flow__subtitle {
  margin-bottom: 36px;
}
.check-flow__upload {
  display: block;
  width: 100%;
  cursor: pointer;
}
.check-flow__input {
  width: 100%;
  min-height: 56px;
  padding: 16px 20px;
  border: 1.5px solid #d1d9e2;
  border-radius: 14px;
  background: #ffffff;
  font-size: 16px;
  line-height: 1.2;
  color: #111111;
  transition: border-color 0.2s ease;
}
.check-flow__input::placeholder {
  color: #9aa8b6;
}
.check-flow__input:focus {
  outline: none;
  border-color: rgba(0, 50, 100, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 50, 100, 0.08);
}
.check-flow--manual {
  background: #ffffff;
  padding-top: 40px;
  padding-bottom: 56px;
}
.check-flow--manual .check-flow__subtitle {
  margin-bottom: 32px;
}
.check-flow--manual .check-flow__form .btn--action {
  margin-top: 8px;
}
.check-flow__panel {
  width: 100%;
}
.check-flow__success-panel {
  animation: check-flow-fade-in 0.35s ease;
}
.check-flow__alert {
  width: 100%;
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
}
.check-flow__alert--error {
  background: #fff1f0;
  border: 1px solid #ffc9c4;
  color: #b42318;
}
@keyframes check-flow-fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .check-flow {
    min-height: calc(100dvh - 72px);
    padding-top: 20px;
  }
  .check-flow--success, .check-flow--error, .check-flow--upload, .check-flow--manual {
    padding-top: 32px;
  }
  .check-flow__review-grid, .check-flow__review-stack {
    gap: 24px;
  }
}

.receipt-upload {
  width: 100%;
}
.receipt-upload__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 200px;
  margin-bottom: 20px;
  padding: 28px 20px;
  border: 2px dashed #c5d0dc;
  border-radius: 16px;
  background: #ffffff;
}
.receipt-upload__hint {
  margin: 0;
  max-width: 220px;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  color: #4a607a;
}
.receipt-upload__note {
  margin: 12px 0 0;
  font-size: 13px;
  text-align: center;
  color: #4a607a;
}

.receipt-preview {
  text-align: center;
}
.receipt-preview__label {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: #111111;
  text-align: left;
}
.receipt-preview__canvas {
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 50, 100, 0.08);
}
.receipt-preview__image {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
}
.receipt-preview__change {
  display: inline-flex;
  margin: 14px 0 0;
  padding: 0;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 600;
  color: #003264;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.receipt-preview__change:hover {
  opacity: 0.75;
}

.check-receipt {
  width: min(100%, 280px);
  margin: 0 auto;
}
.check-receipt__frame {
  position: relative;
  padding: 10px;
  border: 1.5px solid rgba(0, 50, 100, 0.45);
  border-radius: 18px;
  background: #ffffff;
}
.check-receipt__frame::before, .check-receipt__frame::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 3px solid #003264;
  pointer-events: none;
}
.check-receipt__frame::before {
  top: 8px;
  left: 8px;
  border-right: none;
  border-bottom: none;
  border-radius: 6px 0 0 0;
}
.check-receipt__frame::after {
  right: 8px;
  bottom: 8px;
  border-top: none;
  border-left: none;
  border-radius: 0 0 6px 0;
}
.check-receipt__body {
  padding: 18px 16px 14px;
  border-radius: 12px;
  background: #ffffff;
}
.check-receipt__qr {
  width: 88px;
  height: 88px;
  margin: 0 auto 12px;
}
.check-receipt__qr svg {
  display: block;
  width: 100%;
  height: 100%;
}
.check-receipt__label {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: #111111;
}
.check-receipt__data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 10px;
  text-align: left;
}
.check-receipt__col {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.check-receipt__row {
  margin: 0;
  font-size: 8px;
  line-height: 1.35;
  color: #6b7280;
}
.check-receipt__tail {
  position: absolute;
  left: 50%;
  bottom: -11px;
  width: 18px;
  height: 11px;
  background: #ffffff;
  border-right: 1.5px solid rgba(0, 50, 100, 0.45);
  border-bottom: 1.5px solid rgba(0, 50, 100, 0.45);
  transform: translateX(-50%) rotate(45deg);
}

.terms-page {
  padding: 56px 0 80px;
  background: #ffffff;
}
.terms-page__title {
  margin: 0 0 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e2e8f0;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: #111111;
}
.terms-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.terms-page__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  min-height: 220px;
  padding: 28px 24px 24px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #ffffff;
}
.terms-page__card-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  color: #111111;
}
.terms-page__download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 44px;
  padding: 0 24px;
  border: 1.5px solid #111111;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: #111111;
  transition: background 0.2s ease, color 0.2s ease;
}
.terms-page__download:hover {
  background: #111111;
  color: #ffffff;
}
@media (max-width: 992px) {
  .terms-page {
    padding: 40px 0 64px;
  }
  .terms-page__grid {
    grid-template-columns: 1fr;
  }
  .terms-page__card {
    min-height: auto;
    gap: 24px;
  }
}

.social-sidebar {
  position: fixed;
  bottom: 32px;
  right: 24px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-sidebar__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.social-sidebar__link:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}
.social-sidebar__link svg {
  width: 100%;
  height: 100%;
}
.social-sidebar__link--facebook, .social-sidebar__link--instagram, .social-sidebar__link--whatsapp, .social-sidebar__link--telegram {
  background: transparent;
}
@media (max-width: 768px) {
  .social-sidebar {
    bottom: 20px;
    right: 14px;
    gap: 8px;
  }
  .social-sidebar__link {
    width: 42px;
    height: 42px;
  }
  .social-sidebar__link svg {
    width: 100%;
    height: 100%;
  }
}

/*# sourceMappingURL=main.css.map */
