/* Базовий CSS reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  scroll-behavior: smooth;
  height: 100%;
  width: 100%;
  font-family: sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  text-rendering: optimizeSpeed;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

ul, ol {
  list-style: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* ----------- */


body {
  background: #F6F8FB;
  color: #232536;
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #3A81F6;
  letter-spacing: 0.02em;
  font-weight: 700;
  margin-bottom: 0.5em;
}
a {
  color: #3A81F6;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E63946;
}
button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #3A81F6;
  color: #fff;
  border: none;
  border-radius: 2em;
  padding: 0.7em 2em;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 24px 0 rgba(58,129,246,0.12);
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
}
button:hover, .button:hover {
  background: #E63946;
  transform: translateY(-2px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 36px 0 rgba(230,57,70,0.16);
  color: #fff;
}
img {
  max-width: 100%;
  border-radius: 1.5em;
  display: block;
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  h1, h2 {
    font-size: 1.5em;
  }
}
::-webkit-scrollbar {
  width: 10px;
  background: #F6F8FB;
}
::-webkit-scrollbar-thumb {
  background: #E0E6F7;
  border-radius: 6px;
}
.header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 32px 0 rgba(58,129,246,0.06);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow 0.2s;
}
.header__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.1em 2em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.6em;
  font-weight: 800;
  color: #3A81F6;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.header__logo-highlight {
  color: #E63946;
  font-size: 1.2em;
  margin-right: 0.02em;
  font-family: 'Montserrat', Arial, sans-serif;
  animation: pulseE 2.4s infinite alternate;
  font-weight: 900;
}
@keyframes pulseE {
  0% { transform: scale(1) rotate(-4deg); }
  100% { transform: scale(1.15) rotate(6deg);}
}
.header__nav {}
.header__menu {
  display: flex;
  gap: 2.2em;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header__item {}
.header__link {
  display: flex;
  align-items: center;
  gap: 0.65em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08em;
  color: #232536;
  font-weight: 600;
  position: relative;
  transition: color 0.18s, transform 0.18s;
  padding: 0.38em 1em;
  border-radius: 1.5em;
  text-decoration: none;
  z-index: 1;
  will-change: transform;
}
.header__link i {
  font-size: 1.23em;
  color: #3A81F6;
  transition: color 0.2s, transform 0.18s;
  will-change: color, transform;
  display: inline-block;
}
.header__link:hover, .header__link:focus {
  color: #E63946;
  background: #F6F8FB;
  transform: scale(1.04) translateY(-2px);
}
.header__link:hover i,
.header__link:focus i {
  color: #FFC300;
  transform: scale(1.23) rotate(-9deg);
}
@media (max-width: 800px) {
  .header__container { flex-direction: column; gap: 1em; padding: 0.8em 1em; }
  .header__logo { font-size: 1.5em; }
  .header__menu { gap: 1em; }
  .header__link { font-size: 1em; padding: 0.4em 0.8em;}
}
@media (max-width: 520px) {
  .header__logo { font-size: 1.08em; }
  .header__container { padding: 0.5em 0.4em; }
  .header__menu { gap: 0.4em; }
}
.footer {
  background: #F0F4FA;
  color: #232536;
  margin-top: 3em;
  padding-top: 3.2em;
  position: relative;
  border-radius: 2.4em 2.4em 0 0;
  box-shadow: 0 -4px 40px 0 rgba(58,129,246,0.06);
  font-size: 1em;
}
.footer__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2em;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2em;
}
.footer__col { display: flex; flex-direction: column; gap: 0.7em;}
.footer__col--logo { gap: 0.6em;}
.footer__logo {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2em;
  font-weight: 800;
  color: #3A81F6;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}
.footer__logo-highlight { color: #E63946; font-size: 1.2em; margin-right: 0.03em; font-family: 'Montserrat', Arial, sans-serif; font-weight: 900; }
.footer__desc { font-size: 0.98em; color: #6A7791; line-height: 1.5; }
.footer__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09em;
  font-weight: 700;
  color: #3A81F6;
  margin-bottom: 0.5em;
  letter-spacing: 0.03em;
}
.footer__nav, .footer__info, .footer__contacts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}
.footer__nav-link, .footer__contacts a {
  display: flex;
  align-items: center;
  gap: 0.55em;
  font-family: 'Inter', Arial, sans-serif;
  color: #232536;
  font-weight: 500;
  font-size: 1em;
  transition: color 0.18s;
}
.footer__nav-link i, .footer__contacts i {
  font-size: 1.1em;
  color: #3A81F6;
  margin-right: 0.05em;
  transition: color 0.17s, transform 0.18s;
}
.footer__nav-link:hover, .footer__contacts a:hover {
  color: #E63946;
}
.footer__nav-link:hover i,
.footer__contacts a:hover i {
  color: #FFC300;
  transform: scale(1.22) rotate(-8deg);
}
.footer__info a {
  color: #6A7791;
  font-size: 0.97em;
  transition: color 0.18s;
}
.footer__info a:hover { color: #3A81F6; text-decoration: underline;}
.footer__contacts li {
  display: flex;
  align-items: center;
  gap: 0.44em;
  font-size: 0.99em;
}
.footer__contacts a { font-size: 1em;}
.footer__bottom {
  border-top: 1px solid #E0E6F7;
  margin-top: 2.8em;
  padding: 1.2em 2em 1.7em;
  text-align: center;
  color: #6A7791;
  font-size: 0.99em;
}
@media (max-width: 1000px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    padding: 0 1em;
  }
}
@media (max-width: 600px) {
  .footer {
    border-radius: 1.2em 1.2em 0 0;
    padding-top: 2em;
  }
  .footer__container {
    grid-template-columns: 1fr;
    gap: 1.4em;
    padding: 0 0.7em;
  }
  .footer__logo { font-size: 1.2em;}
}
.hero {
  position: relative;
  padding: 5.5em 0 3.7em 0;
  overflow: hidden;
  background: transparent;
  min-height: 74vh;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero__wave {
  position: absolute;
  top: 0; left: 0; width: 100%; height: auto;
  min-height: 240px;
  opacity: 0.9;
  animation: waveMove 8s infinite linear alternate;
}
@keyframes waveMove {
  0% { transform: translateY(-14px) scaleX(1);}
  100% { transform: translateY(8px) scaleX(1.03);}
}
.hero__circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.14;
  filter: blur(2px);
  animation: circleFloat 7s infinite alternate;
}
.hero__circle--blue {
  background: #3A81F6;
  width: 120px; height: 120px; left: 6%; top: 28%;
  animation-delay: 0s;
}
.hero__circle--red {
  background: #E63946;
  width: 90px; height: 90px; right: 14%; top: 17%;
  animation-delay: 1s;
}
.hero__circle--yellow {
  background: #FFC300;
  width: 66px; height: 66px; right: 7%; bottom: 11%;
  animation-delay: 2s;
}
@keyframes circleFloat {
  0% { transform: translateY(0) scale(1);}
  100% { transform: translateY(-18px) scale(1.08);}
}

.hero__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  gap: 3em;
}
.hero__content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}
.hero__title {
  font-size: 2.8em;
  font-weight: 800;
  color: #232536;
  margin: 0 0 0.2em 0;
  line-height: 1.17;
}
.hero__title-accent {
  color: #3A81F6;
  background: linear-gradient(90deg, #3A81F6 65%, #FFC300 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.hero__subtitle {
  color: #6A7791;
  font-size: 1.15em;
  max-width: 440px;
  line-height: 1.5;
}
.hero__button {
  margin-top: 0.6em;
  box-shadow: 0 8px 32px 0 rgba(58,129,246,0.13);
  font-size: 1.15em;
  padding: 0.85em 2.4em;
  animation: btnAppear 1.6s cubic-bezier(.7,0,.4,1) backwards;
}

.hero__button:hover {
  background: #E63946;
  transform: translateY(-2px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 36px 0 rgba(230,57,70,0.16);
  color: #fff;
}

@keyframes btnAppear {
  0% { opacity:0; transform: translateY(20px) scale(0.98);}
  100% { opacity:1; transform: none;}
}
.hero__img-wrap {
  flex: 1 1 40%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 250px;
}
.hero__img {
  width: 300px; max-width: 100%; aspect-ratio: 1/1;
  background: #fff;
  border-radius: 2.1em;
  box-shadow: 0 6px 36px 0 rgba(58,129,246,0.08);
  object-fit: cover;
  z-index: 1;
  position: relative;
  animation: imgPopIn 1.8s cubic-bezier(.7,0,.4,1) backwards;
}
@keyframes imgPopIn {
  0% { opacity: 0; transform: scale(0.93) translateY(32px);}
  100% { opacity: 1; transform: none;}
}
.hero__icons {
  position: absolute;
  top: 12%; left: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.1em;
  z-index: 2;
  pointer-events: none;
}
.hero__icon {
  background: #fff;
  border-radius: 1.6em;
  box-shadow: 0 2px 12px 0 rgba(58,129,246,0.12);
  padding: 0.4em 0.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s;
  animation: iconFloat 4.3s infinite alternate;
}
.hero__icon:nth-child(1) { animation-delay: 0s;}
.hero__icon:nth-child(2) { animation-delay: 1.1s;}
.hero__icon:nth-child(3) { animation-delay: 2s;}
@keyframes iconFloat {
  0% { transform: translateY(0) scale(1);}
  100% { transform: translateY(-10px) scale(1.09);}
}
.hero__icon i {
  font-size: 1.5em;
  color: #3A81F6;
  transition: color 0.18s, transform 0.18s;
  pointer-events: auto;
}
.hero__icon:hover i {
  color: #E63946;
  transform: scale(1.15) rotate(-6deg);
}
@media (max-width: 900px) {
  .hero__container { flex-direction: column; gap: 2em; align-items: flex-start;}
  .hero__img-wrap { width: 100%; min-width: 180px; }
  .hero__img { width: 220px;}
  .hero__icons { left: unset; right: -16%; top: 4%;}
}
@media (max-width: 600px) {
  .hero { padding: 2em 0 1.5em 0; min-height: 44vh;}
  .hero__container { gap: 1em; }
  .hero__title { font-size: 1.29em;}
  .hero__subtitle { font-size: 1em;}
  .hero__img { width: 140px;}
  .hero__icons { right: -10%; top: 12%;}
}

.audiences {
  background: #fff;
  border-radius: 2.1em;
  margin: 4em 0 0 0;
  padding: 3.7em 0 3em 0;
  box-shadow: 0 8px 40px 0 rgba(58,129,246,0.09);
  position: relative;
}
.audiences__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.audiences__title {
  font-size: 2em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #232536;
  margin-bottom: 0.25em;
}
.audiences__subtitle {
  color: #6A7791;
  max-width: 540px;
  text-align: center;
  margin-bottom: 2.1em;
  font-size: 1.14em;
}
.audiences__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.1em;
  width: 100%;
  margin-bottom: 2.5em;
}
.audiences__card {
  background: #F6F8FB;
  border-radius: 1.5em;
  box-shadow: 0 2px 16px 0 rgba(58,129,246,0.06);
  padding: 2em 1.2em 1.3em 1.2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, transform 0.18s, background 0.18s;
  position: relative;
  min-height: 340px;
  cursor: pointer;
  will-change: transform;
  animation: cardUp 1.4s cubic-bezier(.7,0,.4,1) backwards;
}
@keyframes cardUp {
  0% { opacity: 0; transform: translateY(40px) scale(0.97);}
  100% { opacity: 1; transform: none;}
}
.audiences__card:hover {
  box-shadow: 0 10px 38px 0 rgba(230,57,70,0.13);
  background: #E0E6F7;
  transform: translateY(-5px) scale(1.03) rotate(-1.5deg);
}
.audiences__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 1.5em;
  box-shadow: 0 2px 12px 0 rgba(58,129,246,0.14);
  width: 3.3em;
  height: 3.3em;
  margin-bottom: 1.2em;
  font-size: 2em;
  transition: background 0.19s, box-shadow 0.18s, transform 0.16s;
}
.audiences__card:hover .audiences__icon {
  background: #FFC300;
  box-shadow: 0 4px 22px 0 rgba(255,195,0,0.13);
  transform: scale(1.13) rotate(-7deg);
}
.audiences__icon--student i { color: #3A81F6; }
.audiences__icon--relocate i { color: #E63946; }
.audiences__icon--family i { color: #37C978; }
.audiences__icon--work i { color: #6A7791; }
.audiences__card-title {
  font-size: 1.2em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 0.7em;
  color: #232536;
  text-align: center;
}
.audiences__card-text {
  color: #6A7791;
  text-align: center;
  font-size: 1em;
  line-height: 1.4;
}
.audiences__button {
  margin-top: 1em;
  padding: 0.85em 2.6em;
  font-size: 1.11em;
  box-shadow: 0 6px 32px 0 rgba(58,129,246,0.12);
  animation: btnAppear 1.6s cubic-bezier(.7,0,.4,1) backwards;
}
@media (max-width: 1000px) {
  .audiences__cards { grid-template-columns: 1fr 1fr; gap: 1.1em;}
  .audiences__card { min-height: 270px;}
}
@media (max-width: 600px) {
  .audiences { padding: 2em 0 1em 0;}
  .audiences__container { padding: 0 0.4em;}
  .audiences__cards { grid-template-columns: 1fr; gap: 0.8em;}
  .audiences__card { padding: 1.3em 0.6em; min-height: 0;}
  .audiences__title { font-size: 1.23em;}
}

.about {
  margin: 5em 0 0 0;
  padding: 3.4em 0 2.8em 0;
  background: linear-gradient(100deg, #F6F8FB 70%, #FFC30012 100%);
  border-radius: 2.1em;
  box-shadow: 0 8px 32px 0 rgba(58,129,246,0.06);
}
.about__container {
  display: flex;
  align-items: center;
  gap: 3em;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2em;
}
.about__info {
  flex: 1 1 58%;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}
.about__title {
  font-size: 1.7em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #3A81F6;
  margin-bottom: 0.12em;
}
.about__desc {
  color: #232536;
  font-size: 1.1em;
  margin-bottom: 0.9em;
}
.about__facts {
  display: flex;
  gap: 1.5em;
  margin-bottom: 1.7em;
}
.about__fact {
  background: #fff;
  border-radius: 1.3em;
  box-shadow: 0 2px 14px 0 rgba(58,129,246,0.10);
  padding: 1.1em 1.2em 1em 1.2em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 180px;
  transition: box-shadow 0.18s, transform 0.18s, background 0.18s;
  will-change: transform;
  animation: factAppear 1.6s cubic-bezier(.7,0,.4,1) backwards;
}
@keyframes factAppear {
  0% { opacity: 0; transform: translateY(24px) scale(0.98);}
  100% { opacity: 1; transform: none;}
}
.about__fact:hover {
  background: #E0E6F7;
  box-shadow: 0 6px 24px 0 rgba(58,129,246,0.14);
  transform: scale(1.04) rotate(-2deg);
}
.about__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F6F8FB;
  border-radius: 1.2em;
  width: 2.4em; height: 2.4em;
  margin-bottom: 0.7em;
  font-size: 1.3em;
  box-shadow: 0 1px 8px 0 rgba(58,129,246,0.10);
  transition: background 0.18s, transform 0.18s;
}
.about__icon--exp i { color: #E63946; }
.about__icon--upd i { color: #3A81F6; }
.about__icon--person i { color: #37C978; }
.about__fact-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08em;
  color: #232536;
  margin-bottom: 0.2em;
}
.about__fact-desc {
  color: #6A7791;
  font-size: 0.99em;
  line-height: 1.33;
}
.about__button {
  margin-top: 1.1em;
  font-size: 1.1em;
  align-self: flex-start;
}
.about__img-wrap {
  flex: 1 1 38%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__img {
  width: 290px;
  max-width: 90vw;
  border-radius: 1.7em;
  box-shadow: 0 6px 30px 0 rgba(58,129,246,0.09);
  background: #fff;
  aspect-ratio: 1/1;
  object-fit: cover;
  animation: imgPopIn 1.7s cubic-bezier(.7,0,.4,1) backwards;
}
@media (max-width: 900px) {
  .about__container { flex-direction: column; gap: 2em;}
  .about__img { width: 180px;}
}
@media (max-width: 600px) {
  .about { padding: 1.5em 0 1.2em 0; }
  .about__container { padding: 0 0.7em;}
  .about__img { width: 120px;}
  .about__facts { flex-direction: column; gap: 0.7em;}
  .about__fact { min-width: 0;}
  .about__title { font-size: 1.1em;}
}
.courses {
  margin: 5em 0 0 0;
  padding: 3em 0 2.7em 0;
  background: #F6F8FB;
  border-radius: 2.1em;
  box-shadow: 0 8px 36px 0 rgba(58,129,246,0.07);
}
.courses__container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.courses__title {
  font-size: 2em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #3A81F6;
  margin-bottom: 0.25em;
}
.courses__subtitle {
  color: #6A7791;
  max-width: 650px;
  text-align: center;
  margin-bottom: 2.1em;
  font-size: 1.11em;
}
.courses__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2em;
  width: 100%;
}
.courses__card {
  background: #fff;
  border-radius: 1.5em;
  box-shadow: 0 2px 18px 0 rgba(58,129,246,0.07);
  padding: 2.2em 1.2em 1.4em 1.2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, transform 0.18s, background 0.18s;
  position: relative;
  min-height: 370px;
  will-change: transform;
  animation: cardAppear 1.4s cubic-bezier(.7,0,.4,1) backwards;
}
@keyframes cardAppear {
  0% { opacity: 0; transform: translateY(40px) scale(0.98);}
  100% { opacity: 1; transform: none;}
}
.courses__card:hover:not(.courses__card--soon) {
  box-shadow: 0 8px 38px 0 rgba(58,129,246,0.15);
  background: #E0E6F7;
  transform: translateY(-6px) scale(1.04) rotate(-1.5deg);
}
.courses__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F6F8FB;
  border-radius: 1.3em;
  width: 2.9em; height: 2.9em;
  margin-bottom: 1.1em;
  font-size: 1.8em;
  transition: background 0.19s, box-shadow 0.18s, transform 0.16s;
  box-shadow: 0 2px 11px 0 rgba(58,129,246,0.13);
}
.courses__card:hover:not(.courses__card--soon) .courses__icon {
  background: #FFC300;
  transform: scale(1.15) rotate(-8deg);
}
.courses__icon--base i { color: #3A81F6;}
.courses__icon--tax i { color: #E63946;}
.courses__icon--invest i { color: #37C978;}
.courses__icon--soon i { color: #6A7791;}
.courses__tag {
  position: absolute;
  top: 1.2em;
  right: 1.2em;
  padding: 0.36em 1.15em;
  font-size: 0.95em;
  border-radius: 1em;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  background: #3A81F6;
  box-shadow: 0 2px 7px 0 rgba(58,129,246,0.10);
  transition: background 0.17s, transform 0.16s;
  z-index: 2;
  animation: tagDrop 1.7s cubic-bezier(.7,0,.4,1) backwards;
}
@keyframes tagDrop {
  0% { opacity:0; transform: translateY(-18px) scale(0.85);}
  100% { opacity:1; transform: none;}
}
.courses__tag--intensive { background: #E63946;}
.courses__tag--support { background: #37C978;}
.courses__tag--soon { background: #6A7791;}
.courses__card-title {
  font-size: 1.21em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 0.7em;
  color: #232536;
  text-align: center;
}
.courses__card-desc {
  color: #6A7791;
  text-align: center;
  font-size: 1em;
  line-height: 1.4;
  margin-bottom: 1.5em;
}
.courses__button {
  margin-top: auto;
  padding: 0.85em 2em;
  font-size: 1.02em;
  box-shadow: 0 5px 18px 0 rgba(58,129,246,0.08);
}
.courses__card--soon .courses__button {
  background: #6A7791;
  pointer-events: none;
  opacity: 0.7;
  color: #fff;
}
@media (max-width: 1000px) {
  .courses__list { grid-template-columns: 1fr 1fr; gap: 1.1em;}
  .courses__card { min-height: 260px;}
}
@media (max-width: 600px) {
  .courses { padding: 1.7em 0 1.1em 0;}
  .courses__container { padding: 0 0.6em;}
  .courses__list { grid-template-columns: 1fr; gap: 0.7em;}
  .courses__card { padding: 1.2em 0.5em; min-height: 0;}
  .courses__title { font-size: 1.12em;}
}
.cta {
  position: relative;
  margin: 4em 0 0 0;
  padding: 4.1em 0 3.2em 0;
  border-radius: 2.1em;
  overflow: hidden;
  background: linear-gradient(93deg, #3A81F60d 25%, #fff 100%);
  box-shadow: 0 8px 40px 0 rgba(58,129,246,0.09);
  text-align: center;
}
.cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.cta__wave {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 180px;
  opacity: 0.7;
  animation: ctaWaveMove 12s infinite alternate;
}
@keyframes ctaWaveMove {
  0% { transform: translateY(-14px) scaleX(1);}
  100% { transform: translateY(10px) scaleX(1.02);}
}
.cta__circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(2px);
  animation: ctaCircleFloat 10s infinite alternate;
}
.cta__circle--blue {
  background: #3A81F6;
  width: 100px; height: 100px; left: 9%; bottom: 18%;
  animation-delay: 0s;
}
.cta__circle--yellow {
  background: #FFC300;
  width: 66px; height: 66px; right: 8%; top: 28%;
  animation-delay: 1.8s;
}
@keyframes ctaCircleFloat {
  0% { transform: translateY(0) scale(1);}
  100% { transform: translateY(-18px) scale(1.10);}
}
.cta__container {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta__icon-wrap {
  margin-bottom: 1.1em;
}
.cta__icon {
  background: #fff;
  border-radius: 1.5em;
  box-shadow: 0 2px 12px 0 rgba(58,129,246,0.13);
  padding: 0.7em 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.17s;
  animation: ctaIconFloat 4.1s infinite alternate;
}
.cta__icon i {
  font-size: 2em;
  color: #3A81F6;
  transition: color 0.18s, transform 0.18s;
}
.cta__icon:hover i {
  color: #E63946;
  transform: scale(1.15) rotate(-9deg);
}
@keyframes ctaIconFloat {
  0% { transform: translateY(0) scale(1);}
  100% { transform: translateY(-10px) scale(1.09);}
}
.cta__title {
  font-size: 1.65em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #232536;
  margin-bottom: 0.4em;
}
.cta__subtitle {
  color: #6A7791;
  font-size: 1.13em;
  margin-bottom: 2em;
}
.cta__button {
  margin-top: 0.4em;
  padding: 0.98em 2.9em;
  font-size: 1.13em;
  font-weight: 700;
  background: linear-gradient(90deg, #3A81F6 80%, #FFC300 100%);
  box-shadow: 0 8px 32px 0 rgba(58,129,246,0.13);
  animation: btnAppear 1.2s cubic-bezier(.7,0,.4,1) backwards;
}
.cta__button:hover {
  background: linear-gradient(90deg, #E63946 80%, #FFC300 100%);
}
@media (max-width: 700px) {
  .cta { padding: 2em 0 1.2em 0;}
  .cta__title { font-size: 1.1em;}
  .cta__container { padding: 0 0.5em;}
}
.reviews {
  background: #fff;
  border-radius: 2.1em;
  margin: 4em 0 0 0;
  padding: 3.4em 0 2.5em 0;
  box-shadow: 0 8px 36px 0 rgba(58,129,246,0.08);
}
.reviews__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reviews__title {
  font-size: 2em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #232536;
  margin-bottom: 0.19em;
}
.reviews__subtitle {
  color: #6A7791;
  max-width: 540px;
  text-align: center;
  margin-bottom: 2.3em;
  font-size: 1.12em;
}
.reviews__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.7em;
  width: 100%;
  margin-bottom: 2em;
}
.reviews__card {
  background: #F6F8FB;
  border-radius: 1.5em;
  box-shadow: 0 2px 16px 0 rgba(58,129,246,0.06);
  padding: 1.8em 1.1em 1.3em 1.1em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 260px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s, background 0.18s;
  animation: reviewsCardUp 1.2s cubic-bezier(.7,0,.4,1) backwards;
  will-change: transform;
  cursor: pointer;
}
@keyframes reviewsCardUp {
  0% { opacity: 0; transform: translateY(32px) scale(0.98);}
  100% { opacity: 1; transform: none;}
}
.reviews__card:hover {
  box-shadow: 0 8px 30px 0 rgba(58,129,246,0.13);
  background: #E0E6F7;
  transform: translateY(-5px) scale(1.04) rotate(-1deg);
}
.reviews__quote {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 1.1em; left: 1.1em;
  background: #fff;
  border-radius: 1.1em;
  width: 2.2em; height: 2.2em;
  box-shadow: 0 2px 11px 0 rgba(58,129,246,0.11);
  font-size: 1.1em;
}
.reviews__quote i { color: #3A81F6; font-size: 1.4em; }
.reviews__person {
  display: flex;
  align-items: center;
  gap: 0.7em;
  margin-bottom: 1em;
  margin-top: 0.6em;
}
.reviews__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 1px 8px 0 rgba(58,129,246,0.10);
}
.reviews__name {
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #232536;
  font-size: 1.03em;
  display: block;
}
.reviews__meta {
  color: #6A7791;
  font-size: 0.97em;
  display: block;
  margin-top: -0.2em;
}
.reviews__text {
  color: #232536;
  font-size: 1em;
  line-height: 1.43;
  margin-top: 0.1em;
  margin-bottom: 0.2em;
}
.reviews__button {
  margin-top: 1em;
  padding: 0.75em 2.2em;
  font-size: 1.07em;
  box-shadow: 0 5px 18px 0 rgba(58,129,246,0.07);
  background: #3A81F6;
}
@media (max-width: 1100px) {
  .reviews__list { grid-template-columns: 1fr 1fr; gap: 1em;}
}
@media (max-width: 600px) {
  .reviews { padding: 1.7em 0 1.2em 0;}
  .reviews__container { padding: 0 0.7em;}
  .reviews__list { grid-template-columns: 1fr; gap: 0.7em;}
  .reviews__card { padding: 1em 0.6em; min-height: 0;}
  .reviews__title { font-size: 1.13em;}
}
.contact {
  background: #F6F8FB;
  border-radius: 2.1em;
  margin: 4em 0 0 0;
  padding: 3.2em 0 2.3em 0;
  box-shadow: 0 8px 32px 0 rgba(58,129,246,0.09);
}
.contact__container {
  max-width: 530px;
  margin: 0 auto;
  padding: 0 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact__title {
  font-size: 2em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #232536;
  margin-bottom: 0.2em;
  text-align: center;
}
.contact__subtitle {
  color: #6A7791;
  text-align: center;
  margin-bottom: 2em;
  font-size: 1.13em;
}
.contact__form {
  background: #fff;
  border-radius: 1.3em;
  box-shadow: 0 2px 12px 0 rgba(58,129,246,0.08);
  padding: 2em 1.3em 1.2em 1.3em;
  display: flex;
  flex-direction: column;
  gap: 1.3em;
  animation: formAppear 1.2s cubic-bezier(.7,0,.4,1) backwards;
}
@keyframes formAppear {
  0% { opacity: 0; transform: translateY(20px) scale(0.97);}
  100% { opacity: 1; transform: none;}
}
.contact__fields {
  display: flex;
  gap: 1em;
}
.contact__label {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  font-size: 1em;
  font-weight: 600;
  color: #3A81F6;
  margin-bottom: 0;
  flex: 1;
}
.contact__label span {
  display: flex;
  align-items: center;
  gap: 0.42em;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #232536;
  font-size: 1em;
}
.contact__input,
.contact__textarea {
  border: 1.5px solid #E0E6F7;
  border-radius: 1em;
  background: #F6F8FB;
  color: #232536;
  padding: 0.7em 1em;
  font-size: 1em;
  font-family: 'Inter', Arial, sans-serif;
  transition: border 0.19s, box-shadow 0.17s;
  outline: none;
  margin-top: 0.18em;
  box-shadow: 0 1px 6px 0 rgba(58,129,246,0.03);
}
.contact__input:focus,
.contact__textarea:focus {
  border-color: #3A81F6;
  box-shadow: 0 3px 12px 0 rgba(58,129,246,0.08);
  background: #fff;
}
.contact__input:invalid {
  border-color: #E63946;
}
.contact__label--textarea {
  margin-bottom: 0.2em;
}
.contact__captcha {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}
.contact__button {
  margin-top: 0.6em;
  align-self: flex-end;
  padding: 0.8em 2.2em;
  font-size: 1.11em;
  background: #3A81F6;
  font-weight: 700;
  box-shadow: 0 8px 32px 0 rgba(58,129,246,0.10);
}
.contact__msg {
  margin-top: 1.1em;
  padding: 1em;
  border-radius: 1em;
  background: #37C978;
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 1.07em;
  box-shadow: 0 2px 14px 0 rgba(55,201,120,0.09);
  display: none;
}
.contact__msg--error {
  background: #E63946;
}
@media (max-width: 600px) {
  .contact { padding: 1.2em 0 1em 0;}
  .contact__container { padding: 0 0.2em;}
  .contact__form { padding: 1em 0.5em;}
  .contact__fields { flex-direction: column; gap: 0.5em;}
  .contact__title { font-size: 1.1em;}
}
.cookie-popup {
  position: fixed;
  left: 0; right: 0; bottom: 1.5em;
  z-index: 5000;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.3s;
  opacity: 0;
  transform: translateY(100px);
  font-size: 1em;
}
.cookie-popup--visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-popup__container {
  background: #fff;
  color: #232536;
  border-radius: 1.2em;
  box-shadow: 0 4px 32px 0 rgba(58,129,246,0.13);
  display: flex;
  align-items: center;
  gap: 1.1em;
  padding: 1.1em 2em;
  max-width: 480px;
  min-width: 210px;
  animation: cookieAppear 1s cubic-bezier(.7,0,.4,1) backwards;
}
@keyframes cookieAppear {
  0% { opacity: 0; transform: scale(0.95) translateY(30px);}
  100% { opacity: 1; transform: none;}
}
.cookie-popup__icon {
  background: #F6F8FB;
  border-radius: 1em;
  padding: 0.45em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 6px 0 rgba(58,129,246,0.06);
  font-size: 1.5em;
  color: #E63946;
  animation: cookieWobble 1.8s infinite alternate;
}
@keyframes cookieWobble {
  0% { transform: rotate(-7deg) scale(1);}
  100% { transform: rotate(7deg) scale(1.13);}
}
.cookie-popup__text {
  font-size: 1em;
  color: #232536;
}
.cookie-popup__text a {
  color: #3A81F6;
  text-decoration: underline dotted;
  transition: color 0.2s;
}
.cookie-popup__text a:hover { color: #E63946;}
.cookie-popup__btn {
  font-size: 1.05em;
  padding: 0.6em 1.4em;
  border-radius: 1em;
  margin-left: 0.8em;
  background: #3A81F6;
  color: #fff;
  font-weight: 700;
  transition: background 0.17s, transform 0.18s;
  box-shadow: 0 3px 18px 0 rgba(58,129,246,0.09);
}
.cookie-popup__btn:hover { background: #E63946; transform: scale(1.05);}
@media (max-width: 600px) {
  .cookie-popup__container { padding: 1em 0.7em; gap: 0.6em;}
  .cookie-popup { font-size: 0.95em;}
}

.pages {
  background: #fff;
  border-radius: 2.1em;
  margin: 4em 0 0 0;
  padding: 2.7em 0 2em 0;
  box-shadow: 0 8px 32px 0 rgba(58,129,246,0.07);
  min-height: 60vh;
}
.pages .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2em;
  display: flex;
  flex-direction: column;
}
.pages h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2em;
  font-weight: 800;
  color: #3A81F6;
  margin-bottom: 1.1em;
  text-align: left;
  letter-spacing: 0.01em;
  border-bottom: 2.5px solid #E0E6F7;
  padding-bottom: 0.45em;
}
.pages h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22em;
  color: #232536;
  margin-top: 2em;
  margin-bottom: 0.7em;
  font-weight: 700;
  letter-spacing: 0.01em;
  position: relative;
}
.pages h2::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #3A81F6;
  margin-right: 0.6em;
  margin-bottom: 0.1em;
}
.pages p {
  color: #232536;
  font-size: 1.05em;
  margin: 0 0 1.1em 0;
  line-height: 1.7;
}
.pages ul {
  padding-left: 1.3em;
  margin-bottom: 1.2em;
}
.pages li {
  color: #6A7791;
  font-size: 1em;
  margin-bottom: 0.55em;
  line-height: 1.55;
  position: relative;
}
.pages li strong {
  color: #3A81F6;
  font-weight: 600;
}
.pages a {
  color: #E63946;
  text-decoration: underline dotted;
  transition: color 0.2s;
  font-weight: 500;
}
.pages a:hover {
  color: #3A81F6;
  text-decoration: underline;
}
@media (max-width: 600px) {
  .pages { padding: 1.2em 0 0.7em 0;}
  .pages .container { padding: 0 0.8em;}
  .pages h1 { font-size: 1.18em;}
  .pages h2 { font-size: 1.01em;}
}
