:root {
  --fon-grafit-temnyy: #1e1e1e;
  --cvet-teksta-navedenie: #ffdebb;
  --cvet-teksta-2: #d7af87;
  --cvet-teksta-obychnyy: #f3f3f3;
  --cvet-kartochek: rgba(45, 45, 45, 0.7);
  --podlozhka-inpunktov: rgba(243, 243, 243, 0.1);
  --cvet-ramki-blokov: #414141;
  --shapka: rgba(65, 65, 65, 0.15);
  --1: #1f1f1f;
  --2: #0607b9;
  --color1: #0607b9;
  --color-2: #151696;
  --color-3: #153bca;
  --color-411: #1f1f1f;
  --1-fon: #141416;
  --2-akcent: #fbaa15;
  --3-akcent: #ff3434;
  --4-akcent: #6aff34;
  --02-bl: #2348d7;

  --accent: #fe5c39;
  --accent-hover: #ff7355;
  --btn-blue: #2f43e6;
  --btn-blue-hover: #2435cf;
  --green: #4cd286;

  --font-family: "GT Eesti Pro Display", sans-serif;
  --second-family: "Grtsk Tera", sans-serif;
  --third-family: "SF Pro Display", sans-serif;
}

body {
  font-family: var(--font-family);
  background-color: #0c0c0e;
  background-image:
    radial-gradient(900px 720px at 80% 42vh, rgba(20, 64, 190, 0.42), transparent 68%),
    radial-gradient(780px 760px at -8% 96vh, rgba(190, 78, 42, 0.36), transparent 64%);
  background-repeat: no-repeat;
  color: var(--cvet-teksta-obychnyy);
}

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

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(15, 15, 18, 0.55);
  backdrop-filter: blur(6px);
}

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

.header__logo img {
  height: 32px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 52px;
}

.nav__link {
  font-size: 19px;
  font-weight: 500;
  color: var(--cvet-teksta-obychnyy);
  transition: color 0.2s ease;
}

.nav__link:hover {
  color: var(--accent);
}

.nav__link--active {
  color: var(--accent);
}

.header__webinar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 600;
  color: var(--accent);
  transition: color 0.2s ease;
}

.header__webinar::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.header__webinar:hover {
  color: var(--accent-hover);
}

.nav__webinar {
  display: none;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
}

.burger span {
  display: block;
  height: 2px;
  width: 26px;
  margin: 0 auto;
  background: var(--cvet-teksta-obychnyy);
  transition: 0.25s ease;
}

.burger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
  opacity: 0;
}

.burger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

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

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 40px;
  min-height: 100vh;
  padding-top: 156px;
}

.hero__title {
  font-size: clamp(38px, 7.5vw, 100px);
  line-height: 0.98;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.hero__title-accent {
  display: block;
  color: var(--accent);
}

.hero__subtitle {
  margin-top: 34px;
  max-width: 600px;
  font-size: clamp(16px, 1.4vw, 23px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--cvet-teksta-obychnyy);
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 660px;
  margin-top: 44px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 24px;
  border: 1px solid var(--cvet-ramki-blokov);
  border-radius: 999px;
  background: var(--cvet-kartochek);
  backdrop-filter: blur(4px);
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 500;
  color: var(--cvet-teksta-obychnyy);
}

.chip img {
  width: 20px;
  height: 20px;
}

.chip--green {
  color: var(--green);
}

.hero__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  margin-top: 46px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px clamp(22px, 2vw, 40px);
  border-radius: 999px;
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn img {
  width: 22px;
  height: 22px;
}

.btn--outline {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn--outline:hover {
  background: rgba(254, 92, 57, 0.1);
}

.btn--blue {
  background: var(--btn-blue);
  color: #fff;
}

.btn--blue:hover {
  background: var(--btn-blue-hover);
}

.hero__note {
  margin-top: 28px;
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 400;
  color: rgba(243, 243, 243, 0.4);
}

.hero__media {
  align-self: center;
  display: flex;
  justify-content: flex-end;
}

.hero__image {
  width: 100%;
  max-width: 780px;
  object-fit: contain;
  mix-blend-mode: screen;
}

@media (max-width: 1280px) {
  .nav__list {
    gap: 36px;
  }
  .nav__link,
  .header__webinar {
    font-size: 17px;
  }
  .hero__inner {
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  .header__inner {
    min-height: 96px;
  }
  .nav__list {
    gap: 26px;
  }
  .nav__link,
  .header__webinar {
    font-size: 16px;
  }
  .hero__inner {
    padding-top: 96px;
  }
  .hero__chips {
    margin-top: 36px;
  }
  .hero__actions {
    margin-top: 36px;
  }
}

@media (max-width: 860px) {
  .header__webinar {
    display: none;
  }
  .burger {
    display: flex;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 15, 18, 0.97);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--cvet-ramki-blokov);
    padding: 8px 0;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav__list li {
    width: 100%;
  }
  .nav__link,
  .nav__webinar {
    display: block;
    padding: 16px 32px;
    font-size: 18px;
  }
  .nav__webinar {
    color: var(--accent);
    font-weight: 600;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
    padding-top: 130px;
    padding-bottom: 64px;
    gap: 0;
  }
  .hero__media {
    justify-content: center;
    order: -1;
    margin-bottom: 12px;
  }
  .hero__image {
    max-width: 520px;
  }
  .hero__title,
  .hero__subtitle,
  .hero__chips {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }
  .header__inner {
    min-height: 76px;
  }
  .header__logo img {
    height: 26px;
  }
  .hero__inner {
    padding-top: 104px;
    padding-bottom: 48px;
  }
  .hero__image {
    max-width: 100%;
  }
  .chip {
    padding: 12px 18px;
  }
  .hero__actions {
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
  }
  .btn {
    width: 100%;
    padding: 17px 24px;
  }
}

@media (max-width: 380px) {
  .hero__chips {
    gap: 12px;
  }
  .chip {
    padding: 11px 16px;
  }
}

.section-title {
  font-size: clamp(30px, 3.2vw, 52px);
  font-weight: 800;
  line-height: 1.1;
}

.section-title span {
  color: var(--accent);
}

.usefor {
  padding: clamp(60px, 7vw, 110px) 0;
}

.usefor__head {
  margin-bottom: clamp(36px, 4vw, 56px);
}

.usefor__subtitle {
  margin-top: 22px;
  max-width: 560px;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.5;
  color: rgba(243, 243, 243, 0.65);
}

.usefor__list {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2vw, 28px);
}

.usefor__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 1.6vw, 24px);
  align-items: stretch;
}

.usefor__media {
  border-radius: 16px;
  overflow: hidden;
}

.usefor__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.card {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.4vw, 36px);
  border-radius: 16px;
  background: #161719;
  border: 1px solid #2a2b2e;
}

.card--blue {
  --card-accent: #3358e0;
  --card-soft: rgba(51, 88, 224, 0.12);
  --card-border: rgba(51, 88, 224, 0.35);
}

.card--red {
  --card-accent: #fe5c39;
  --card-soft: rgba(254, 92, 57, 0.1);
  --card-border: rgba(254, 92, 57, 0.32);
}

.card--green {
  --card-accent: #3ec27e;
  --card-soft: rgba(62, 194, 126, 0.1);
  --card-border: rgba(62, 194, 126, 0.3);
}

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

.card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--card-soft);
  border: 1px solid var(--card-border);
  flex-shrink: 0;
}

.card__badge img {
  width: 22px;
  height: 22px;
}

.card__title {
  font-size: clamp(17px, 1.3vw, 21px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cvet-teksta-obychnyy);
}

.card__lead {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(243, 243, 243, 0.6);
}

.card__divider {
  display: block;
  height: 1px;
  margin: 22px 0;
  background: linear-gradient(90deg, var(--card-accent), transparent 85%);
}

.card__label {
  font-size: 15px;
  font-weight: 700;
  color: var(--cvet-teksta-obychnyy);
}

.card__list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-left: 20px;
  list-style: disc;
}

.card__list li {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(243, 243, 243, 0.6);
}

.card__list li::marker {
  color: rgba(243, 243, 243, 0.4);
}

.card__question {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--card-soft);
  border: 1px solid var(--card-border);
}

.card__list + .card__question {
  margin-top: 24px;
}

.card__qicon {
  flex-shrink: 0;
}

.card__qicon img {
  width: 30px;
  height: 30px;
}

.card__qlabel {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--card-accent);
}

.card__qtext {
  margin-top: 4px;
  font-size: 15px;
  color: rgba(243, 243, 243, 0.85);
}

@media (max-width: 860px) {
  .usefor__row {
    grid-template-columns: 1fr;
  }
  .usefor__media {
    order: -1;
  }
  .usefor__media img {
    min-height: 220px;
    max-height: 320px;
  }
}

.register {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 7vw, 110px) 0;
}

.register::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/Group 58.png");
  background-position: center;
  background-repeat: repeat-y;
  background-size: 100% auto;
  opacity: 1;
  pointer-events: none;
}

.register .container {
  position: relative;
  z-index: 1;
}

.register__card {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  align-items: center;
  gap: clamp(24px, 3vw, 56px);
  padding: clamp(28px, 4vw, 64px);
  border-radius: 24px;
  background: #161719;
  border: 1px solid #2a2b2e;
}

.register__lead {
  margin-top: 26px;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.5;
  color: rgba(243, 243, 243, 0.7);
}

.register__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.field {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  height: 64px;
  padding: 0 22px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease;
}

.field:focus-within {
  border-color: rgba(254, 92, 57, 0.5);
}

.field__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.field input {
  flex: 1;
  width: 100%;
  height: 100%;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--cvet-teksta-obychnyy);
}

.field input::placeholder {
  color: rgba(243, 243, 243, 0.45);
  letter-spacing: 0.04em;
}

.field--select select {
  flex: 1;
  width: 100%;
  height: 100%;
  padding-right: 24px;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: rgba(243, 243, 243, 0.45);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.field--select select:valid {
  color: var(--cvet-teksta-obychnyy);
}

.field--select select option {
  background: #1d1e21;
  color: var(--cvet-teksta-obychnyy);
}

.field--select::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(243, 243, 243, 0.55);
  border-bottom: 2px solid rgba(243, 243, 243, 0.55);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.register__submit {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 66px;
  margin-top: 8px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  transition: background 0.2s ease;
}

.register__submit:hover {
  background: var(--accent-hover);
}

.register__check {
  width: 24px;
  height: 24px;
  color: #fff;
}

.register__note {
  grid-column: 1 / -1;
  margin-top: 8px;
  text-align: center;
  font-size: 14px;
  color: rgba(243, 243, 243, 0.45);
}

.register__media {
  display: flex;
  justify-content: center;
}

.register__media img {
  width: 100%;
  max-width: 460px;
}

@media (max-width: 920px) {
  .register__card {
    grid-template-columns: 1fr;
  }
  .register__media {
    order: -1;
  }
  .register__media img {
    max-width: 340px;
  }
}

@media (max-width: 560px) {
  .register__form {
    grid-template-columns: 1fr;
  }
  .field {
    height: 58px;
  }
}

.invest {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 7vw, 110px) 0;
  background:
    linear-gradient(180deg, #0c0c0e 0%, rgba(12, 12, 14, 0) 260px),
    linear-gradient(180deg, rgba(44, 65, 214, 0) 70%, #2c41d6 100%),
    radial-gradient(75% 90% at 10% 82%, rgba(45, 92, 230, 0.6), transparent 60%),
    radial-gradient(60% 80% at 100% 60%, rgba(34, 76, 210, 0.45), transparent 60%),
    linear-gradient(165deg, #0c1740 0%, #163690 55%, #1f48b4 100%);
}

.invest::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/Group 58.png");
  background-position: center;
  background-repeat: repeat-y;
  background-size: 100% auto;
  opacity: 0.55;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 90%);
  mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 90%);
  pointer-events: none;
}

.invest__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr);
  align-items: stretch;
  gap: clamp(28px, 3.5vw, 64px);
}

.invest__media {
  position: relative;
  min-height: 480px;
  border-radius: 20px;
  overflow: hidden;
  background: url("../img/Frame 1321319230.png") center / cover no-repeat;
}

.invest__callout {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 26px 28px;
  border-radius: 14px;
  background: #fdfdfd;
}

.invest__callout p {
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.4;
  font-weight: 500;
  color: #1e1e1e;
}

.invest__callout span {
  color: var(--accent);
  font-weight: 700;
}

.invest__content {
  display: flex;
  flex-direction: column;
}

.invest__lead {
  margin-top: 28px;
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.5;
  color: rgba(225, 232, 252, 0.85);
}

.invest__box {
  margin-top: clamp(28px, 3vw, 48px);
  padding: clamp(26px, 2.6vw, 40px);
  border-radius: 18px;
  background: rgba(13, 18, 52, 0.55);
  border: 1px solid rgba(120, 145, 230, 0.2);
}

.invest__box-text {
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.5;
  color: rgba(206, 216, 245, 0.9);
}

.invest__box-text + .invest__box-text {
  margin-top: 16px;
}

.invest__divider {
  display: block;
  height: 1px;
  margin: 28px 0;
  background: rgba(150, 170, 240, 0.22);
}

.invest__box-label {
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 700;
  color: var(--accent);
}

.invest__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  gap: 22px 40px;
  margin-top: 26px;
}

.invest__list li {
  position: relative;
  padding-left: 36px;
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.35;
  color: rgba(206, 216, 245, 0.85);
}

.invest__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 23px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='9' stroke='%23fe5c39' stroke-width='1.5'/%3E%3Cpath d='M8.5 12h6' stroke='%23fe5c39' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M12 9l3 3-3 3' stroke='%23fe5c39' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (max-width: 960px) {
  .invest__inner {
    grid-template-columns: 1fr;
  }
  .invest__media {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .invest__list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
    gap: 16px;
  }
  .invest__media {
    min-height: 340px;
  }
  .invest__callout {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 20px;
  }
}

.reasons {
  --line-y: 104px;
  position: relative;
  padding: clamp(64px, 7vw, 120px) 0;
  background: #2c41d6;
}

.reasons__title {
  color: #fff;
}

.reasons__title span {
  color: var(--accent);
}

.reasons__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(24px, 2.5vw, 44px);
  margin-top: clamp(56px, 7vw, 110px);
}

.reasons__timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: var(--line-y);
  height: 2px;
  background: rgba(255, 255, 255, 0.28);
}

.reasons__step {
  position: relative;
}

.reasons__step::before {
  content: "";
  position: absolute;
  left: 0;
  top: var(--line-y);
  transform: translate(-1px, -50%);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--accent);
  z-index: 1;
}

.reasons__num {
  display: block;
  font-size: clamp(40px, 3.4vw, 58px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.2);
}

.reasons__step-title {
  margin-top: 78px;
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.reasons__step-text {
  margin-top: 18px;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.btn--orange {
  background: var(--accent);
  color: #fff;
}

.btn--orange:hover {
  background: var(--accent-hover);
}

.btn__check {
  width: 24px;
  height: 24px;
  color: #fff;
  flex-shrink: 0;
}

.reasons__btn {
  margin-top: clamp(48px, 5vw, 80px);
}

@media (max-width: 1024px) {
  .reasons__timeline {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 48px;
  }
  .reasons__timeline::before {
    display: none;
  }
  .reasons__step::before {
    display: none;
  }
  .reasons__step-title {
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .reasons__timeline {
    grid-template-columns: 1fr 1fr;
  }
  .reasons__btn {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .reasons__timeline {
    grid-template-columns: 1fr;
  }
}

.risk {
  position: relative;
  padding: clamp(64px, 7vw, 120px) 0;
  background: linear-gradient(180deg, #2c41d6 0%, #3a52dd 40%, #6c86e6 88%, #d2d2d2 100%);
}

.risk__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  align-items: stretch;
  gap: clamp(28px, 3.5vw, 70px);
}

.risk__media {
  position: relative;
  min-height: 460px;
  border-radius: 22px;
  overflow: hidden;
  background: url("../img/Frame 1321319230 (1).png") center / cover no-repeat;
}

.risk__callout {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 26px 30px;
  border-radius: 14px;
  background: #fdfdfd;
}

.risk__callout p {
  font-size: clamp(15px, 1.2vw, 20px);
  line-height: 1.4;
  font-weight: 500;
  color: #1e1e1e;
}

.risk__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.risk__title {
  color: #fff;
}

.risk__title span {
  color: var(--accent);
}

.risk__lead {
  margin-top: 26px;
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.risk__list {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: clamp(28px, 3vw, 44px);
  padding-left: 40px;
}

.risk__list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 4px;
  background: var(--accent);
}

.risk__list li {
  position: relative;
  padding: 16px 28px 16px 56px;
  border-radius: 12px;
  background: #fdfdfd;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 500;
  color: #1e1e1e;
  box-shadow: 0 10px 30px rgba(10, 20, 60, 0.12);
}

.risk__list li::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 6l12 12M18 6 6 18' stroke='%23fe5c39' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (max-width: 960px) {
  .risk__inner {
    grid-template-columns: 1fr;
  }
  .risk__media {
    min-height: 380px;
  }
}

@media (max-width: 560px) {
  .risk__callout {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 20px;
  }
  .risk__list {
    padding-left: 26px;
  }
  .risk__list li {
    padding: 14px 20px 14px 50px;
  }
}

.weak {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 120px) 0;
  background: #d2d2d2;
}

.weak__inner {
  position: relative;
  z-index: 1;
}

.weak__content {
  max-width: 760px;
}

.weak__title {
  color: #1e1e1e;
}

.weak__title span {
  color: var(--accent);
}

.weak__lead {
  margin-top: 26px;
  max-width: 620px;
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 600;
  line-height: 1.5;
  color: #2a2a2a;
}

.weak__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.weak .field {
  background: rgba(255, 255, 255, 0.38);
  border-color: rgba(0, 0, 0, 0.06);
}

.weak .field:focus-within {
  border-color: rgba(254, 92, 57, 0.55);
}

.weak .field input {
  color: #1e1e1e;
}

.weak .field input::placeholder {
  color: rgba(30, 30, 30, 0.45);
}

.weak .field--select select {
  color: rgba(30, 30, 30, 0.45);
}

.weak .field--select select:valid {
  color: #1e1e1e;
}

.weak .field--select select option {
  background: #efefef;
  color: #1e1e1e;
}

.weak .field--select::after {
  border-color: rgba(30, 30, 30, 0.55);
}

.weak__field-wide {
  grid-column: 1 / -1;
}

.weak__agree {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  cursor: pointer;
  font-size: 15px;
  color: rgba(30, 30, 30, 0.55);
}

.weak__agree input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.weak__box {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  transition: 0.2s ease;
}

.weak__agree input:checked + .weak__box {
  background: var(--accent);
  border-color: var(--accent);
}

.weak__agree input:checked + .weak__box::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.weak__submit {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 66px;
  margin-top: 8px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 700;
}

.weak__note {
  grid-column: 1 / -1;
  margin-top: 6px;
  font-size: 14px;
  color: rgba(30, 30, 30, 0.45);
}

.weak__globe {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(520px, 46vw, 820px);
  pointer-events: none;
}

.weak__globe img {
  width: 100%;
}

@media (max-width: 1100px) {
  .weak__globe {
    right: -120px;
    width: 44vw;
    opacity: 0.7;
  }
}

@media (max-width: 860px) {
  .weak__globe {
    display: none;
  }
  .weak__content {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .weak__form {
    grid-template-columns: 1fr;
  }
}

.agenda {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 120px) 0;
  background: #0c0c0e;
}

.agenda::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/Group 58.png");
  background-position: center;
  background-repeat: repeat-y;
  background-size: 100% auto;
  opacity: 1;
  pointer-events: none;
}

.agenda .container {
  position: relative;
  z-index: 1;
}

.agenda__title {
  color: #fff;
}

.agenda__title span {
  color: var(--accent);
}

.agenda__lead {
  margin-top: 24px;
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 600;
  line-height: 1.5;
  color: rgba(243, 243, 243, 0.92);
}

.agenda__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.5vw, 24px);
  margin-top: clamp(40px, 5vw, 72px);
}

.agenda__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: clamp(24px, 1.8vw, 32px);
  border-radius: 18px;
  border: 1px solid #2a2b2e;
  background: radial-gradient(120% 120% at 50% 135%, rgba(43, 80, 235, 0.22), transparent 60%), #141416;
  overflow: hidden;
}

.agenda__card--g1 {
  background: radial-gradient(135% 135% at 4% 100%, rgba(43, 80, 235, 0.9), transparent 62%), #141416;
}

.agenda__card--g3 {
  background: radial-gradient(125% 120% at 50% -12%, rgba(43, 80, 235, 0.85), transparent 60%), #141416;
}

.agenda__card--g4 {
  background: radial-gradient(120% 130% at 112% 45%, rgba(43, 80, 235, 0.8), transparent 60%), #141416;
}

.agenda__card--g5 {
  background: radial-gradient(135% 135% at 0% 0%, rgba(43, 80, 235, 0.9), transparent 62%), #141416;
}

.agenda__card--g8 {
  background: radial-gradient(135% 135% at 112% 0%, rgba(255, 90, 40, 0.9), transparent 62%), #141416;
}

.agenda__num {
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #4f68e0;
}

.agenda__num--accent {
  color: var(--accent);
}

.agenda__line {
  display: block;
  height: 1px;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.16);
}

.agenda__body {
  margin-top: auto;
}

.agenda__card-title {
  font-size: clamp(17px, 1.3vw, 21px);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.agenda__card-text {
  margin-top: 16px;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.5;
  color: rgba(243, 243, 243, 0.62);
}

@media (max-width: 1100px) {
  .agenda__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .agenda__grid {
    grid-template-columns: 1fr;
  }
  .agenda__card {
    min-height: 240px;
  }
}

.prog {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 120px) 0;
  background:
    radial-gradient(46% 55% at 2% 30%, rgba(40, 82, 222, 0.35), transparent 62%),
    #0c0c0e;
}

.prog::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/Group 58.png");
  background-position: center;
  background-repeat: repeat-y;
  background-size: 100% auto;
  pointer-events: none;
}

.prog .container {
  position: relative;
  z-index: 1;
}

.prog__title-h {
  color: #fff;
}

.prog__title-h span {
  color: var(--accent);
}

.prog__lead {
  margin-top: 24px;
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 600;
  line-height: 1.5;
  color: rgba(243, 243, 243, 0.92);
}

.prog__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: clamp(36px, 4vw, 60px);
}

.prog__row {
  display: grid;
  grid-template-columns: 84px 300px 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(28px, 2.6vw, 44px);
  border-radius: 44px;
  background: #161719;
  border: 1px solid #2a2b2e;
}

.prog__row--active {
  background: #202127;
  border-color: #34353a;
}

.prog__num {
  font-size: clamp(20px, 1.7vw, 27px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
}

.prog__row--active .prog__num {
  color: #4f68e0;
}

.prog__name {
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 700;
  color: #fff;
}

.prog__text {
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.4;
  color: rgba(243, 243, 243, 0.55);
}

@media (max-width: 900px) {
  .prog__row {
    grid-template-columns: 56px 1fr;
    gap: 6px 18px;
    border-radius: 24px;
    padding: 20px 26px;
  }
  .prog__name {
    align-self: center;
  }
  .prog__text {
    grid-column: 2 / -1;
  }
}

@media (max-width: 560px) {
  .prog__row {
    grid-template-columns: 44px 1fr;
    padding: 18px 20px;
  }
}

.eval {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 120px) 0;
  background: #0c0c0e;
}

.eval::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/Group 58.png");
  background-position: center;
  background-repeat: repeat-y;
  background-size: 100% auto;
  pointer-events: none;
}

.eval .container {
  position: relative;
  z-index: 1;
}

.eval__title {
  color: #fff;
}

.eval__title span {
  color: var(--accent);
}

.eval__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2vw, 32px);
  margin-top: clamp(40px, 5vw, 72px);
}

.eval__card {
  position: relative;
  padding: clamp(28px, 3vw, 48px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.eval__card--blue {
  --c-accent: #4f6bff;
  background: radial-gradient(46% 52% at 80% 28%, rgba(43, 86, 235, 0.95) 0%, rgba(43, 86, 235, 0) 60%), #141a36;
}

.eval__card--orange {
  --c-accent: var(--accent);
  background: radial-gradient(46% 52% at 80% 28%, rgba(236, 95, 44, 0.92) 0%, rgba(236, 95, 44, 0) 60%), #1a1411;
}

.eval__icon {
  width: clamp(56px, 5vw, 78px);
  height: auto;
}

.eval__label {
  display: block;
  margin-top: clamp(24px, 2.5vw, 40px);
  font-size: clamp(17px, 1.5vw, 24px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.eval__sub {
  margin-top: 28px;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 600;
  color: #fff;
}

.eval__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.eval__list li {
  position: relative;
  padding-left: 38px;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
}

.eval__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 23px;
  height: 23px;
  background-color: var(--c-accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='9' stroke='%23000' stroke-width='1.7'/%3E%3Cpath d='M8.3 12.2 11 14.8l4.8-5.4' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='9' stroke='%23000' stroke-width='1.7'/%3E%3Cpath d='M8.3 12.2 11 14.8l4.8-5.4' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (max-width: 860px) {
  .eval__grid {
    grid-template-columns: 1fr;
  }
}

.audit {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 120px) 0;
  background: #0c0c0e;
}

.audit::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/Group 58.png");
  background-position: center;
  background-repeat: repeat-y;
  background-size: 100% auto;
  pointer-events: none;
}

.audit .container {
  position: relative;
  z-index: 1;
}

.audit__title {
  color: #fff;
}

.audit__title span {
  color: var(--accent);
}

.audit__lead {
  margin-top: 24px;
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.5;
  color: rgba(243, 243, 243, 0.7);
}

.audit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 1.6vw, 24px);
  margin-top: clamp(40px, 5vw, 72px);
}

.audit__card {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 2.2vw, 38px);
  border-radius: 20px;
  background: #131315;
  border: 1px solid var(--c-border);
}

.audit__card--blue {
  --c-accent: #4f6bff;
  --c-border: rgba(79, 107, 255, 0.55);
}

.audit__card--orange {
  --c-accent: var(--accent);
  --c-border: rgba(254, 92, 57, 0.5);
}

.audit__card--green {
  --c-accent: #46cf86;
  --c-border: rgba(70, 207, 134, 0.45);
}

.audit__icon {
  width: 54px;
  height: auto;
  margin: 6px auto 0;
}

.audit__label {
  margin-top: 22px;
  text-align: center;
  font-size: clamp(16px, 1.3vw, 21px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.audit__divider {
  display: block;
  height: 1px;
  margin: 22px 0;
  background: rgba(255, 255, 255, 0.12);
}

.audit__sub {
  font-size: clamp(14px, 1.1vw, 17px);
  color: rgba(243, 243, 243, 0.55);
}

.audit__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 22px;
}

.audit__list li {
  position: relative;
  padding-left: 36px;
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.35;
  color: rgba(243, 243, 243, 0.9);
}

.audit__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  background-color: var(--c-accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 12h14' stroke='%23000' stroke-width='1.9' stroke-linecap='round'/%3E%3Cpath d='M12.5 6l6 6-6 6' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 12h14' stroke='%23000' stroke-width='1.9' stroke-linecap='round'/%3E%3Cpath d='M12.5 6l6 6-6 6' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.audit__note {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: clamp(28px, 3vw, 44px);
  padding: clamp(24px, 2.4vw, 36px) clamp(28px, 3vw, 48px);
  border-radius: 20px;
  background: #161719;
  border: 1px solid #2a2b2e;
}

.audit__note-icon {
  width: 40px;
  height: auto;
  flex-shrink: 0;
}

.audit__note p {
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.5;
  color: rgba(243, 243, 243, 0.5);
}

.audit__note span {
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 920px) {
  .audit__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .audit__note {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

.reg2 {
  padding: clamp(64px, 7vw, 120px) 0;
  background: #2c41d6;
}

.reg2__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.62fr);
  gap: clamp(28px, 4vw, 80px);
  align-items: start;
}

.reg2__title {
  color: #fff;
}

.reg2__title span {
  color: var(--accent);
}

.reg2__lead {
  margin-top: 22px;
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.reg2__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.reg2 .field {
  background: #fff;
  border-color: transparent;
}

.reg2 .field:focus-within {
  border-color: var(--accent);
}

.reg2 .field input {
  color: #1e1e1e;
}

.reg2 .field input::placeholder {
  color: rgba(30, 30, 30, 0.45);
}

.reg2 .field--select select {
  color: rgba(30, 30, 30, 0.45);
}

.reg2 .field--select select:valid {
  color: #1e1e1e;
}

.reg2 .field--select select option {
  background: #fff;
  color: #1e1e1e;
}

.reg2 .field--select::after {
  border-color: rgba(30, 30, 30, 0.55);
}

.reg2__wide {
  grid-column: 1 / -1;
}

.reg2__agree {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  cursor: pointer;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.reg2__agree input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.reg2__box {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
  transition: 0.2s ease;
}

.reg2__agree input:checked + .reg2__box {
  background: var(--accent);
  border-color: var(--accent);
}

.reg2__agree input:checked + .reg2__box::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.reg2__submit {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 66px;
  margin-top: 6px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 700;
}

.reg2__note {
  grid-column: 1 / -1;
  margin-top: 4px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.reg2__gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reg2__gallery img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

@media (max-width: 920px) {
  .reg2__inner {
    grid-template-columns: 1fr;
  }
  .reg2__gallery {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .reg2__gallery img {
    width: calc(50% - 8px);
  }
}

@media (max-width: 560px) {
  .reg2__form {
    grid-template-columns: 1fr;
  }
  .reg2__gallery img {
    width: 100%;
  }
}

.host {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 120px) 0;
  background:
    radial-gradient(40% 45% at 0% 0%, rgba(30, 60, 160, 0.35), transparent 60%),
    radial-gradient(58% 60% at 90% 46%, rgba(200, 88, 42, 0.5), transparent 62%),
    #0c0c0e;
}

.host::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/Group 58.png");
  background-position: center;
  background-repeat: repeat-y;
  background-size: 100% auto;
  opacity: 0.5;
  pointer-events: none;
}

.host .container {
  position: relative;
  z-index: 1;
}

.host__title {
  color: #fff;
}

.host__title span {
  color: var(--accent);
}

.host__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1.45fr);
  align-items: center;
  gap: clamp(28px, 4vw, 70px);
  margin-top: clamp(36px, 4vw, 56px);
}

.host__photo img {
  width: 100%;
  max-width: 360px;
  border-radius: 50%;
}

.host__name {
  display: block;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.host__divider {
  display: block;
  height: 1px;
  margin: 18px 0;
  background: rgba(255, 255, 255, 0.16);
}

.host__role {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.5;
  color: rgba(243, 243, 243, 0.55);
}

.host__text {
  margin-top: 20px;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.55;
  color: rgba(243, 243, 243, 0.85);
}

.host__subhead {
  margin-top: clamp(48px, 5vw, 80px);
  text-align: center;
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.host__focus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
  margin-top: clamp(32px, 3.5vw, 52px);
}

.focus-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 190px;
  padding: 32px 28px;
  border-radius: 18px;
  background: #161719;
  border: 1px solid #2a2b2e;
}

.focus-card img {
  flex: 1;
  height: 90px;
  width: auto;
  object-fit: contain;
}

.focus-card p {
  margin-top: 18px;
  text-align: center;
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.4;
  color: rgba(243, 243, 243, 0.6);
}

.formula {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-top: clamp(32px, 3.5vw, 52px);
}

.formula__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 36px 16px;
  border-radius: 16px;
  background: #161719;
  border: 1px solid #2a2b2e;
}

.formula__card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.formula__card span {
  text-align: center;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
}

.formula__card--active {
  background: var(--accent);
  border-color: var(--accent);
}

.formula__card--next {
  background: #161719;
  border-color: var(--accent);
}

.formula__card--next span {
  color: var(--accent);
}

.formula__arrow {
  align-self: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background-color: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 12h14' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M12.5 6l6 6-6 6' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 12h14' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M12.5 6l6 6-6 6' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.formula__arrow--green {
  background-color: #46cf86;
}

@media (max-width: 900px) {
  .host__intro {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .host__divider {
    margin-left: auto;
    margin-right: auto;
  }
  .host__focus {
    grid-template-columns: repeat(2, 1fr);
  }
  .formula {
    flex-wrap: wrap;
    justify-content: center;
  }
  .formula__card {
    flex: 0 0 calc(50% - 24px);
  }
  .formula__arrow {
    display: none;
  }
}

@media (max-width: 560px) {
  .host__focus {
    grid-template-columns: 1fr;
  }
  .formula__card {
    flex: 0 0 100%;
  }
}

.nofit {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 120px) 0;
  background: #d2d2d2;
}

.nofit__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
}

.nofit__title {
  color: #1e1e1e;
}

.nofit__title span {
  color: var(--accent);
}

.nofit__sub {
  margin-top: 28px;
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 600;
  color: #232b40;
}

.nofit__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 28px;
}

.nofit__list li {
  position: relative;
  padding-left: 40px;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.4;
  color: #2a2a2a;
}

.nofit__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background-color: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='9' stroke='%23000' stroke-width='1.6'/%3E%3Cpath d='M9 9l6 6M15 9l-6 6' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='9' stroke='%23000' stroke-width='1.6'/%3E%3Cpath d='M9 9l6 6M15 9l-6 6' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nofit__media {
  position: relative;
}

.nofit__media > img {
  width: 100%;
  mix-blend-mode: screen;
}

.nofit__callout {
  position: absolute;
  right: 4%;
  bottom: 14%;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 420px;
  padding: 20px 26px;
  border-radius: 16px;
  background: #fdfdfd;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.nofit__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.nofit__callout-title {
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent);
}

.nofit__callout-text {
  margin-top: 6px;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.4;
  color: #1e1e1e;
}

@media (max-width: 900px) {
  .nofit__inner {
    grid-template-columns: 1fr;
  }
  .nofit__media {
    order: -1;
    max-width: 560px;
  }
}

@media (max-width: 560px) {
  .nofit__callout {
    right: 2%;
    bottom: 6%;
    padding: 14px 18px;
    gap: 12px;
  }
}

.faq {
  padding: clamp(64px, 7vw, 120px) 0;
  background: #d2d2d2;
}

.faq__title {
  color: #1e1e1e;
}

.faq__title span {
  color: var(--accent);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: clamp(36px, 4vw, 56px);
}

.faq__q {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 24px clamp(24px, 2.4vw, 40px);
  border-radius: 40px;
  background: #fdfdfd;
  text-align: left;
}

.faq__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.faq__qtext {
  flex: 1;
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 500;
  color: #1e1e1e;
  transition: color 0.2s ease;
}

.faq__chevron {
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq__item.is-open .faq__qtext {
  color: var(--accent);
}

.faq__item.is-open .faq__chevron {
  transform: rotate(-135deg);
}

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq__a-inner {
  overflow: hidden;
}

.faq__item.is-open .faq__a {
  grid-template-rows: 1fr;
}

.faq__a-box {
  margin-top: 10px;
  padding: 28px clamp(24px, 2.4vw, 44px);
  border-radius: 22px;
  background: linear-gradient(180deg, #ececec 0%, #e0e0e0 100%);
}

.faq__a-box p {
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.55;
  color: #555;
}

.faq__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70px;
  margin-top: clamp(24px, 2.5vw, 36px);
  border-radius: 40px;
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 700;
}

.cta2 {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 120px) 0;
  background: #2c41d6;
}

.cta2__globe {
  position: absolute;
  top: -40px;
  right: -40px;
  width: clamp(320px, 34vw, 620px);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

.cta2__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(28px, 4vw, 70px);
}

.cta2__title {
  color: #fff;
}

.cta2__title span {
  color: var(--accent);
}

.cta2__lead {
  margin-top: 28px;
  max-width: 540px;
  font-size: clamp(16px, 1.3vw, 21px);
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.cta2__lead span {
  color: var(--accent);
}

.cta2__note {
  margin-top: 26px;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.cta2__form-title {
  font-size: clamp(19px, 1.6vw, 27px);
  font-weight: 800;
  color: #fff;
}

.cta2__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 26px;
}

.cta2 .field {
  background: #fff;
  border-color: transparent;
}

.cta2 .field:focus-within {
  border-color: var(--accent);
}

.cta2 .field input {
  color: #1e1e1e;
}

.cta2 .field input::placeholder {
  color: rgba(30, 30, 30, 0.45);
}

.cta2 .field--select select {
  color: rgba(30, 30, 30, 0.45);
}

.cta2 .field--select select:valid {
  color: #1e1e1e;
}

.cta2 .field--select select option {
  background: #fff;
  color: #1e1e1e;
}

.cta2 .field--select::after {
  border-color: rgba(30, 30, 30, 0.55);
}

.cta2__wide {
  grid-column: 1 / -1;
}

.cta2__agree {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  cursor: pointer;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.cta2__agree input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cta2__box {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
  transition: 0.2s ease;
}

.cta2__agree input:checked + .cta2__box {
  background: var(--accent);
  border-color: var(--accent);
}

.cta2__agree input:checked + .cta2__box::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cta2__submit {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 66px;
  margin-top: 6px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 700;
}

.cta2__form-note {
  grid-column: 1 / -1;
  margin-top: 4px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 920px) {
  .cta2__inner {
    grid-template-columns: 1fr;
  }
  .cta2__globe {
    opacity: 0.5;
    width: 300px;
  }
}

@media (max-width: 560px) {
  .cta2__form {
    grid-template-columns: 1fr;
  }
}

.footer {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 5vw, 72px) 0;
  background: #0c0c0e;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/Group 58.png");
  background-position: center;
  background-repeat: repeat-y;
  background-size: 100% auto;
  opacity: 0.6;
  pointer-events: none;
}

.footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__brand {
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 800;
  color: var(--accent);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 44px);
  margin-top: clamp(28px, 3vw, 44px);
}

.footer__link {
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--cvet-teksta-obychnyy);
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--accent);
}

.footer__link--active {
  color: var(--accent);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: clamp(28px, 3vw, 44px);
}

.footer__socials img {
  width: 48px;
  height: 48px;
  transition: opacity 0.2s ease;
}

.footer__socials a:hover img {
  opacity: 0.75;
}

.footer__divider {
  width: 100%;
  height: 1px;
  margin: clamp(28px, 3vw, 44px) 0;
  background: rgba(255, 255, 255, 0.1);
}

.footer__docs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 3vw, 56px);
}

.footer__docs a {
  font-size: clamp(14px, 1.1vw, 17px);
  color: rgba(243, 243, 243, 0.85);
  transition: color 0.2s ease;
}

.footer__docs a:hover {
  color: var(--accent);
}

.footer__copy {
  font-size: clamp(13px, 1vw, 16px);
  color: rgba(243, 243, 243, 0.45);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  z-index: 1000;
  max-width: calc(100% - 40px);
  padding: 18px 28px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, 140%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.legal {
  position: relative;
  min-height: 100vh;
  padding: clamp(40px, 6vw, 90px) 0 clamp(60px, 7vw, 110px);
  background: #0c0c0e;
}

.legal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: clamp(28px, 4vw, 48px);
}

.legal__top img {
  height: 30px;
}

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  transition: color 0.2s ease;
}

.legal__back:hover {
  color: var(--accent-hover);
}

.legal h1 {
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}

.legal__updated {
  margin-top: 14px;
  font-size: 15px;
  color: rgba(243, 243, 243, 0.5);
}

.legal__body {
  margin-top: clamp(28px, 3.5vw, 48px);
  max-width: 900px;
}

.legal__body h2 {
  margin-top: 40px;
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 700;
  color: var(--accent);
}

.legal__body h2:first-child {
  margin-top: 0;
}

.legal__body p,
.legal__body li {
  margin-top: 14px;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: rgba(243, 243, 243, 0.78);
}

.legal__body ul {
  margin-top: 8px;
  padding-left: 24px;
  list-style: disc;
}

.legal__body a {
  color: var(--accent);
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.agenda__card,
.focus-card,
.formula__card,
.eval__card,
.audit__card,
.card,
.chip {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.agenda__card:hover,
.focus-card:hover,
.audit__card:hover,
.card:hover {
  transform: translateY(-6px);
}

.focus-card:hover,
.audit__card:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.formula__card:not(.formula__card--active):hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.chip:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn,
.btn--orange,
.register__submit,
.weak__submit,
.reg2__submit,
.cta2__submit,
.faq__btn {
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn--orange:hover,
.register__submit:hover,
.weak__submit:hover,
.reg2__submit:hover,
.cta2__submit:hover,
.faq__btn:hover {
  transform: translateY(-2px);
}

.btn:active,
.btn--orange:active,
.faq__btn:active,
.register__submit:active,
.weak__submit:active,
.reg2__submit:active,
.cta2__submit:active {
  transform: translateY(0);
}

.prog__row {
  transition: transform 0.3s ease, background 0.3s ease;
}

.prog__row:not(.prog__row--active):hover {
  transform: translateX(8px);
}

.footer__soc img,
.footer__link,
.footer__docs a {
  transition: transform 0.25s ease, opacity 0.25s ease, color 0.2s ease;
}

.footer__soc:hover img {
  transform: translateY(-4px) scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    scroll-behavior: auto !important;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 20, 0.72);
  backdrop-filter: blur(4px);
}

.modal__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 44px);
  border-radius: 24px;
  text-align: center;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(254, 92, 57, 0.22), transparent 60%),
    #161719;
  border: 1px solid rgba(254, 92, 57, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  transform: translateY(24px) scale(0.96);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.modal.is-open .modal__card {
  transform: none;
  opacity: 1;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 34px;
  height: 34px;
  font-size: 26px;
  line-height: 1;
  color: rgba(243, 243, 243, 0.55);
  transition: color 0.2s ease, transform 0.2s ease;
}

.modal__close:hover {
  color: #fff;
  transform: rotate(90deg);
}

.modal__badge {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(254, 92, 57, 0.14);
  border: 1px solid rgba(254, 92, 57, 0.4);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.modal__title {
  margin-top: 20px;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.modal__text {
  margin-top: 16px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.5;
  color: rgba(243, 243, 243, 0.75);
}

.modal__seats {
  font-weight: 800;
  color: var(--accent);
}

.modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 62px;
  margin-top: 28px;
  border-radius: 999px;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 700;
}

.modal__note {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(243, 243, 243, 0.45);
}

.modal__pulse {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: modalPulse 1.4s ease-in-out infinite;
}

@keyframes modalPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}
