/* Базовий 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;
}
/* ----------- */


/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Sora:wght@700&display=swap');

body {
  font-family: 'Inter', Arial, sans-serif;
  background: linear-gradient(120deg, #EAF6FF 0%, #F5F6FA 100%);
  color: #1E293B;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  letter-spacing: 0.01em;
  transition: background 0.4s;
}

h1, h2, h3, h4 {
  font-family: 'Sora', 'Inter', Arial, sans-serif;
  font-weight: 700;
  margin: 0 0 0.4em 0;
}

a {
  color: #36BFE8;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: #1E293B;
  text-decoration: underline;
}

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

::-webkit-scrollbar {
  width: 10px;
  background: #EAF6FF;
}
::-webkit-scrollbar-thumb {
  background: #36BFE8;
  border-radius: 5px;
}

/* Utility */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
/* style.css (додаємо до попереднього) */

/* HEADER */
.header {
  background: rgba(250, 252, 255, 0.9);
  box-shadow: 0 2px 16px rgba(54,191,232,0.06), 0 1.5px 10px rgba(30,41,59,0.02);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: background 0.3s;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.header__logo {
  font-family: 'Sora', 'Inter', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #36BFE8;
  display: flex;
  align-items: center;
  gap: 0.7em;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.header__logo:hover {
  color: #1E293B;
}

.header__badge {
  display: inline-block;
  background: linear-gradient(90deg, #1E293B 70%, #36BFE8 100%);
  color: #fff;
  font-size: 0.87rem;
  border-radius: 1.2em;
  padding: 0.2em 0.85em;
  letter-spacing: 0.06em;
  margin-left: 0.2em;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(30,41,59,0.08);
}

.header__nav {
  display: block;
}

.header__menu {
  display: flex;
  gap: 2.3em;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__item {
}

.header__link {
  font-size: 1.1rem;
  font-weight: 500;
  color: #1E293B;
  padding: 0.4em 0.6em;
  border-radius: 0.8em;
  transition: background 0.2s, color 0.2s;
  position: relative;
}

.header__link:hover,
.header__link:focus {
  background: linear-gradient(100deg, #EAF6FF 80%, #36BFE8 100%);
  color: #36BFE8;
}

.header__link--accent {
  background: #36BFE8;
  color: #fff !important;
  transition: background 0.2s, color 0.2s;
}
.header__link--accent:hover,
.header__link--accent:focus {
  background: #1E293B;
  color: #fff !important;
}

/* Бургер-меню */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  margin-left: 2em;
}

.header__burger span {
  display: block;
  width: 28px;
  height: 3.5px;
  background: #36BFE8;
  border-radius: 2.5px;
  transition: 0.3s;
}

/* Адаптивність */
@media (max-width: 900px) {
  .header__menu {
    gap: 1.3em;
  }
  .header__logo {
    font-size: 1.4rem;
  }
}
@media (max-width: 650px) {
  .header__nav {
    position: fixed;
    right: 0;
    top: 0;
    background: #F8FAFC;
    width: 70vw;
    height: 100vh;
    transform: translateX(120%);
    transition: transform 0.3s;
    box-shadow: -8px 0 24px rgba(30,41,59,0.11);
    z-index: 102;
    display: flex;
    align-items: center;
  }
  .header__nav.active {
    transform: translateX(0);
  }
  .header__menu {
    flex-direction: column;
    gap: 2.1em;
    width: 100%;
    padding: 0;
    align-items: flex-start;
  }
  .header__burger {
    display: flex;
  }
}
/* style.css (додаємо до попереднього) */

/* FOOTER */
.footer {
  background: linear-gradient(90deg, #EAF6FF 75%, #36BFE8 100%);
  color: #1E293B;
  padding: 3.2em 0 1em 0;
  border-top: 1px solid #D1E7F6;
  box-shadow: 0 -3px 24px rgba(54,191,232,0.05);
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.6em;
  align-items: start;
}

.footer__col {
  min-width: 0;
}

.footer__logo {
  font-family: 'Sora', 'Inter', Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #36BFE8;
  letter-spacing: 0.03em;
  display: inline-block;
  margin-bottom: 0.4em;
  transition: color 0.2s;
}

.footer__logo:hover {
  color: #1E293B;
}

.footer__badge {
  display: inline-block;
  background: linear-gradient(90deg, #1E293B 70%, #36BFE8 100%);
  color: #fff;
  font-size: 0.8rem;
  border-radius: 1em;
  padding: 0.18em 0.8em;
  margin-left: 0.4em;
  font-weight: 600;
  vertical-align: middle;
}

.footer__smalltxt {
  font-size: 0.99rem;
  color: #64748B;
  margin-top: 0.4em;
  line-height: 1.5;
}

.footer__title {
  font-family: 'Sora', 'Inter', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: 1em;
  color: #1E293B;
  letter-spacing: 0.02em;
}

.footer__menu,
.footer__list,
.footer__contacts {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.85;
}

.footer__menu li a,
.footer__list li a,
.footer__contacts li a {
  color: #1E293B;
  font-size: 1.01rem;
  transition: color 0.18s;
  padding: 0.1em 0.2em;
  border-radius: 0.5em;
}

.footer__menu li a:hover,
.footer__list li a:hover,
.footer__contacts li a:hover {
  color: #36BFE8;
  background: #e1f7ff;
  text-decoration: none;
}

.footer__contacts li {
  margin-bottom: 0.5em;
  word-break: break-all;
}

/* Нижня лінія футера */
.footer__bottom {
  border-top: 1px solid #D1E7F6;
  padding-top: 0.7em;
  margin-top: 2.4em;
  font-size: 0.98rem;
  color: #64748B;
  background: transparent;
  text-align: center;
  letter-spacing: 0.01em;
}

/* Адаптивність */
@media (max-width: 900px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 2em;
  }
  .footer__col--logo {
    grid-column: span 2;
  }
}
@media (max-width: 650px) {
  .footer__container {
    grid-template-columns: 1fr;
    gap: 1.4em;
  }
  .footer__col--logo {
    text-align: left;
  }
}
/* style.css (додаємо до попереднього) */

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  padding: 4em 0 2em 0;
  display: flex;
  align-items: center;
  background: transparent;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4em;
  z-index: 2;
}

.hero__content {
  flex: 1 1 50%;
  max-width: 540px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2em;
  animation: fadein 1.2s cubic-bezier(.33,1.4,.62,1) 0.1s both;
}
@keyframes fadein {
  from { opacity: 0; transform: translateY(18px);}
  to { opacity: 1; transform: none;}
}
.hero__title {
  font-size: 2.6rem;
  color: #1E293B;
  line-height: 1.11;
  letter-spacing: 0.01em;
}
.hero__subtitle {
  font-size: 1.18rem;
  color: #64748B;
  line-height: 1.7;
  max-width: 470px;
}
.hero__btn {
  display: inline-block;
  background: linear-gradient(93deg, #36BFE8 60%, #1E293B 120%);
  color: #fff;
  font-size: 1.13rem;
  padding: 0.75em 2.1em;
  border-radius: 1.3em;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(54,191,232,0.13);
  margin-top: 1.1em;
  letter-spacing: 0.03em;
  transition: background 0.25s, transform 0.2s;
  outline: none;
  border: none;
  cursor: pointer;
}
.hero__btn:hover, .hero__btn:focus {
  background: linear-gradient(93deg, #1E293B 30%, #36BFE8 100%);
  transform: translateY(-2px) scale(1.04);
  color: #fff;
}

.hero__image {
  flex: 1 1 40%;
  min-width: 220px;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein 1.3s cubic-bezier(.33,1.4,.62,1) 0.2s both;
}
.hero__image img {
  width: 100%;
  height: auto;
  border-radius: 2.2em;
  box-shadow: 0 8px 36px rgba(30,41,59,0.10), 0 1.5px 10px rgba(54,191,232,0.07);
  background: #EAF6FF;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero__container {
    flex-direction: column;
    gap: 2.8em;
    align-items: flex-start;
  }
  .hero__image {
    max-width: 330px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 650px) {
  .hero {
    padding: 2em 0 1em 0;
    min-height: 40vh;
  }
  .hero__title {
    font-size: 1.55rem;
  }
  .hero__subtitle {
    font-size: 1rem;
  }
  .hero__image img {
    border-radius: 1.1em;
  }
}
/* style.css (додаємо до попереднього) */

.about {
  padding: 4em 0 2.5em 0;
  background: linear-gradient(120deg, #F5F6FA 70%, #EAF6FF 100%);
  position: relative;
}

.about__container {
  display: flex;
  gap: 3.8em;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about__textblock {
  flex: 1 1 420px;
  min-width: 290px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1.8em;
  z-index: 2;
}

.about__title {
  font-family: 'Sora', 'Inter', Arial, sans-serif;
  font-size: 2.15rem;
  color: #1E293B;
  margin-bottom: 0.2em;
  letter-spacing: 0.01em;
  line-height: 1.13;
}

.about__desc {
  font-size: 1.13rem;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 0.8em;
}

.about__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5em 0;
  display: flex;
  flex-direction: column;
  gap: 1.15em;
}
.about__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.88em;
  font-size: 1.08rem;
  color: #334155;
  position: relative;
  transition: color 0.2s;
}
.about__features li:hover {
  color: #36BFE8;
}
.about__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-top: 0.08em;
  transition: transform 0.18s;
}
.about__features li:hover .about__icon {
  transform: scale(1.13) rotate(-4deg);
}

.about__action {
  margin-top: 0.8em;
}

.about__btn {
  display: inline-block;
  background: linear-gradient(90deg, #36BFE8 60%, #D6F5D6 100%);
  color: #1E293B;
  font-weight: 600;
  padding: 0.65em 2.1em;
  border-radius: 1.1em;
  font-size: 1.07rem;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 24px rgba(54,191,232,0.08);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  outline: none;
  border: none;
  cursor: pointer;
}
.about__btn:hover, .about__btn:focus {
  background: linear-gradient(93deg, #1E293B 20%, #36BFE8 100%);
  color: #fff;
  transform: translateY(-1.5px) scale(1.03);
}

.about__visual {
  flex: 1 1 290px;
  min-width: 230px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.about__imgwrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 1.5em;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(30,41,59,0.10), 0 1.5px 10px rgba(54,191,232,0.08);
  margin-bottom: 0.7em;
  background: #EAF6FF;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.about__estonia-flag {
  position: absolute;
  left: 1em; bottom: 1em;
  width: 2.25em; height: 1.4em;
  border-radius: 0.3em;
  box-shadow: 0 2px 12px rgba(30,41,59,0.09);
  background:
    linear-gradient(to bottom, #0072CE 33.3%, #000 33.3% 66.7%, #fff 66.7%);
  border: 2px solid #fff;
}

.about__hint {
  font-size: 0.99rem;
  color: #64748B;
  margin-top: 0.13em;
  text-align: center;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .about__container {
    flex-direction: column;
    gap: 3em;
    align-items: flex-start;
  }
  .about__visual {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 650px) {
  .about {
    padding: 2em 0 1em 0;
  }
  .about__title {
    font-size: 1.25rem;
  }
  .about__desc,
  .about__features li {
    font-size: 1rem;
  }
  .about__visual {
    max-width: 100%;
  }
  .about__imgwrap {
    border-radius: 0.7em;
  }
}
/* style.css (додаємо до попереднього) */

.audience {
  padding: 3.2em 0 2.5em 0;
  background: linear-gradient(110deg, #F5F6FA 80%, #EAF6FF 100%);
}

.audience__title {
  font-family: 'Sora', 'Inter', Arial, sans-serif;
  font-size: 2rem;
  color: #1E293B;
  margin-bottom: 2em;
  text-align: center;
  letter-spacing: 0.01em;
}

.audience__list {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2em;
}

.audience__card {
  background: #fff;
  border-radius: 1.3em;
  box-shadow: 0 4px 24px rgba(54,191,232,0.10);
  padding: 2.1em 1.2em 1.2em 1.2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.17s, box-shadow 0.23s;
  position: relative;
  cursor: default;
}
.audience__card:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 12px 36px rgba(54,191,232,0.17);
}

.audience__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9em;
  background: #EAF6FF;
  border-radius: 50%;
  width: 3.1em;
  height: 3.1em;
  transition: background 0.18s;
}
.audience__card:hover .audience__icon {
  background: #36BFE8;
}
.audience__card:hover .audience__icon svg {
  stroke: #fff;
}

.audience__subtitle {
  font-family: 'Sora', 'Inter', Arial, sans-serif;
  font-size: 1.13rem;
  color: #1E293B;
  font-weight: 600;
  margin-bottom: 0.7em;
  letter-spacing: 0.01em;
  transition: color 0.18s;
}

.audience__card:hover .audience__subtitle {
  color: #36BFE8;
}

.audience__card p {
  font-size: 1.01rem;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
  min-height: 3.1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Мікроанімація карток при появі */
.audience__card {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUpCard 0.7s cubic-bezier(.33,1.4,.62,1) forwards;
}
.audience__card:nth-child(1) { animation-delay: 0.04s;}
.audience__card:nth-child(2) { animation-delay: 0.11s;}
.audience__card:nth-child(3) { animation-delay: 0.19s;}
.audience__card:nth-child(4) { animation-delay: 0.26s;}

@keyframes fadeUpCard {
  from { opacity: 0; transform: translateY(22px);}
  to { opacity: 1; transform: none;}
}

/* Адаптив — підсумок */
@media (max-width: 1000px) {
  .audience__list {
    grid-template-columns: 1fr 1fr;
    gap: 1.6em;
  }
}
@media (max-width: 650px) {
  .audience__list {
    grid-template-columns: 1fr;
    gap: 1.1em;
  }
  .audience__card {
    padding: 1.1em 0.7em 1em 0.7em;
  }
  .audience__subtitle {
    font-size: 1.01rem;
    margin-bottom: 0.45em;
  }
}
.courses {
  padding: 3.4em 0 2.5em 0;
  background: linear-gradient(120deg, #EAF6FF 80%, #F5F6FA 100%);
}

.courses__title {
  font-family: 'Sora', 'Inter', Arial, sans-serif;
  font-size: 2rem;
  color: #1E293B;
  text-align: center;
  margin-bottom: 2em;
  letter-spacing: 0.01em;
}

.courses__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.3em;
}

.courses__card {
  background: #fff;
  border-radius: 1.6em;
  box-shadow: 0 6px 30px rgba(54,191,232,0.11);
  padding: 2.1em 1.1em 1.3em 1.1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.18s, box-shadow 0.22s;
  cursor: default;
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUpCourse 0.7s cubic-bezier(.33,1.4,.62,1) forwards;
}
.courses__card:nth-child(1) { animation-delay: 0.04s;}
.courses__card:nth-child(2) { animation-delay: 0.12s;}
.courses__card:nth-child(3) { animation-delay: 0.20s;}
.courses__card:nth-child(4) { animation-delay: 0.28s;}

@keyframes fadeUpCourse {
  from { opacity: 0; transform: translateY(22px);}
  to { opacity: 1; transform: none;}
}

.courses__icon {
  background: #EAF6FF;
  border-radius: 50%;
  width: 3.2em;
  height: 3.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1em;
  transition: background 0.19s;
}
.courses__card:hover .courses__icon {
  background: #36BFE8;
}
.courses__card:hover .courses__icon svg {
  stroke: #fff;
}
.courses__card:hover .courses__icon {
  background: #36BFE8;
}

.courses__name {
  font-family: 'Sora', 'Inter', Arial, sans-serif;
  font-size: 1.15rem;
  color: #1E293B;
  font-weight: 700;
  margin-bottom: 0.65em;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.courses__card:hover .courses__name {
  color: #36BFE8;
}

.courses__desc {
  color: #64748B;
  font-size: 1.01rem;
  line-height: 1.5;
  margin-bottom: 1.5em;
  min-height: 3.1em;
}

.courses__btn {
  display: inline-block;
  background: linear-gradient(90deg, #36BFE8 60%, #D6F5D6 100%);
  color: #1E293B;
  font-size: 1.06rem;
  padding: 0.63em 2.2em;
  border-radius: 1.1em;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 14px rgba(54,191,232,0.09);
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, transform 0.15s;
}
.courses__btn:hover, .courses__btn:focus {
  background: linear-gradient(93deg, #1E293B 20%, #36BFE8 100%);
  color: #fff;
  transform: translateY(-1.5px) scale(1.04);
}

/* Адаптивність */
@media (max-width: 1000px) {
  .courses__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.3em;
  }
}
@media (max-width: 700px) {
  .courses__grid {
    grid-template-columns: 1fr;
    gap: 1em;
  }
  .courses__card {
    padding: 1.4em 0.8em 1.1em 0.8em;
  }
  .courses__name {
    font-size: 1.01rem;
  }
}
.reviews {
  padding: 3.3em 0 2.2em 0;
  background: linear-gradient(120deg, #F5F6FA 80%, #EAF6FF 100%);
  position: relative;
  overflow: hidden;
}
.reviews__title {
  font-family: 'Sora', 'Inter', Arial, sans-serif;
  font-size: 2rem;
  color: #1E293B;
  text-align: center;
  margin-bottom: 2.4em;
  letter-spacing: 0.01em;
}
.reviews__cloud {
  position: relative;
  width: 100%;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.9em;
  z-index: 2;
}

.review {
  display: flex;
  align-items: flex-end;
  margin-bottom: 0.7em;
  max-width: 480px;
  width: fit-content;
  position: relative;
  opacity: 0;
  transform: translateY(35px);
  animation: reviewPop 0.65s cubic-bezier(.33,1.4,.62,1) forwards;
}
.review__icon {
  margin-right: 0.85em;
  margin-bottom: 0.25em;
  min-width: 28px;
  display: flex;
  align-items: center;
}
.review__bubble {
  background: rgba(255,255,255,0.85);
  border-radius: 1.5em 1.5em 1.5em 0.5em;
  box-shadow: 0 2px 18px rgba(54,191,232,0.10);
  padding: 1.1em 1.5em 1.1em 1.1em;
  min-width: 180px;
  position: relative;
  transition: box-shadow 0.18s, background 0.18s;
}
.review__name {
  display: block;
  font-weight: 700;
  font-size: 1.02rem;
  color: #36BFE8;
  margin-bottom: 0.45em;
  letter-spacing: 0.01em;
}

.review__text {
  color: #334155;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.01em;
}

/* Bubble orientation and highlight */
.review--right {
  align-self: flex-end;
  flex-direction: row-reverse;
}
.review--right .review__icon {
  margin-right: 0;
  margin-left: 0.85em;
}
.review--right .review__bubble {
  border-radius: 1.5em 1.5em 0.5em 1.5em;
}

.review--highlight .review__bubble {
  background: linear-gradient(93deg, #EAF6FF 70%, #D6F5D6 100%);
  box-shadow: 0 4px 22px rgba(54,191,232,0.13);
}

/* Анімація появи "бульбашок" з затримкою для кожної */
.review:nth-child(1) { animation-delay: 0.07s;}
.review:nth-child(2) { animation-delay: 0.22s;}
.review:nth-child(3) { animation-delay: 0.37s;}
.review:nth-child(4) { animation-delay: 0.55s;}

@keyframes reviewPop {
  from { opacity: 0; transform: translateY(35px);}
  to { opacity: 1; transform: none;}
}

/* Декоративний фон-сітка/blur */
.reviews::before {
  content: '';
  position: absolute;
  top: 16%;
  left: 55%;
  width: 340px;
  height: 340px;
  background: radial-gradient(ellipse at center, #36BFE855 30%, transparent 80%);
  filter: blur(35px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}
.reviews::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: 8%;
  width: 190px;
  height: 190px;
  background: radial-gradient(ellipse at center, #D6F5D6 20%, transparent 85%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.23;
}

/* Адаптивність */
@media (max-width: 900px) {
  .reviews__cloud {
    min-height: 210px;
    gap: 1.1em;
  }
  .review {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .reviews__title {
    font-size: 1.2rem;
  }
  .reviews__cloud {
    min-height: 80px;
  }
  .review__bubble {
    padding: 0.88em 0.8em 0.88em 0.8em;
    font-size: 0.97rem;
  }
  .review__name {
    font-size: 0.98rem;
    margin-bottom: 0.3em;
  }
  .review {
    max-width: 97vw;
  }
}
.benefits {
  padding: 3.3em 0 2.2em 0;
  background: linear-gradient(120deg, #EAF6FF 80%, #F5F6FA 100%);
}
.benefits__title {
  font-family: 'Sora', 'Inter', Arial, sans-serif;
  font-size: 2rem;
  color: #1E293B;
  text-align: center;
  margin-bottom: 2.2em;
  letter-spacing: 0.01em;
}
.benefits__line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.2em;
  position: relative;
  margin: 0 auto;
  max-width: 1170px;
}

.benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 170px;
  max-width: 230px;
  z-index: 2;
  position: relative;
  text-align: center;
}
.benefit__circle {
  background: #fff;
  border: 2.5px solid #36BFE8;
  width: 3.2em;
  height: 3.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(54,191,232,0.09);
  margin-bottom: 1em;
  font-size: 1.23em;
  position: relative;
  transition: background 0.18s, border-color 0.19s, transform 0.17s;
  z-index: 1;
}
.benefit__circle:hover {
  background: #36BFE8;
  border-color: #1E293B;
  transform: scale(1.11) rotate(-4deg);
}
.benefit__circle:hover svg {
  stroke: #fff;
}
.benefit__name {
  font-family: 'Sora', 'Inter', Arial, sans-serif;
  font-size: 1.11rem;
  color: #1E293B;
  font-weight: 600;
  margin-bottom: 0.5em;
  letter-spacing: 0.01em;
}
.benefit__desc {
  font-size: 0.99rem;
  color: #64748B;
  line-height: 1.5;
  max-width: 210px;
  margin-bottom: 0.6em;
}

.benefits__line::before {
  content: '';
  position: absolute;
  top: 1.6em; left: 5%;
  right: 5%;
  height: 0.19em;
  background: linear-gradient(90deg, #36BFE8 0%, #D6F5D6 100%);
  z-index: 0;
  border-radius: 2em;
}
.benefit:not(:first-child) {
  margin-left: 0.2em;
}
.benefit:not(:last-child) {
  margin-right: 0.2em;
}

/* Мікроанімація появи */
.benefit {
  opacity: 0;
  transform: translateY(20px);
  animation: benefitPop 0.6s cubic-bezier(.33,1.4,.62,1) forwards;
}
.benefit:nth-child(1) { animation-delay: 0.03s;}
.benefit:nth-child(2) { animation-delay: 0.10s;}
.benefit:nth-child(3) { animation-delay: 0.18s;}
.benefit:nth-child(4) { animation-delay: 0.26s;}
.benefit:nth-child(5) { animation-delay: 0.34s;}
@keyframes benefitPop {
  from { opacity: 0; transform: translateY(20px);}
  to { opacity: 1; transform: none;}
}

/* Адаптив */
@media (max-width: 1100px) {
  .benefits__line {
    gap: 1.3em;
  }
  .benefit {
    min-width: 150px;
    max-width: 180px;
  }
}
@media (max-width: 700px) {
  .benefits__line {
    flex-direction: column;
    align-items: center;
    gap: 2.7em;
    max-width: 99vw;
  }
  .benefits__line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 2.3em;
    bottom: 0.5em;
    width: 0.16em;
    height: calc(100% - 4em);
    background: linear-gradient(180deg, #36BFE8 0%, #D6F5D6 100%);
    border-radius: 2em;
    z-index: 0;
    transform: translateX(-50%);
  }
  .benefit {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 99vw;
    min-width: 0;
    text-align: left;
    gap: 1.1em;
  }
  .benefit__circle {
    margin-bottom: 0;
    margin-right: 1.1em;
  }
  .benefit__name {
    margin-bottom: 0.2em;
    font-size: 1rem;
  }
}
.contact {
  padding: 3.1em 0 2.6em 0;
  background: linear-gradient(120deg, #F5F6FA 80%, #EAF6FF 100%);
}
.contact__container {
  display: flex;
  gap: 3em;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact__left {
  flex: 1 1 270px;
  min-width: 220px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
.contact__title {
  font-family: 'Sora', 'Inter', Arial, sans-serif;
  font-size: 2rem;
  color: #1E293B;
  margin-bottom: 0.6em;
}
.contact__desc {
  font-size: 1.08rem;
  color: #64748B;
  margin-bottom: 1.2em;
}
.contact__info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  font-size: 1rem;
}
.contact__info li {
  display: flex;
  align-items: center;
  gap: 0.85em;
}
.contact__info a {
  color: #1E293B;
  text-decoration: none;
  transition: color 0.16s;
  font-weight: 500;
}
.contact__info a:hover {
  color: #36BFE8;
}
.contact__info svg {
  min-width: 20px;
}

.contact__form {
  flex: 1 1 340px;
  min-width: 220px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  background: #fff;
  border-radius: 1.4em;
  padding: 2.1em 1.6em 1.2em 1.6em;
  box-shadow: 0 4px 32px rgba(54,191,232,0.11);
  position: relative;
  z-index: 1;
}
.contact__label {
  font-size: 1rem;
  color: #1E293B;
  font-weight: 600;
  margin-bottom: 0.2em;
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}
.contact__input {
  font-size: 1rem;
  padding: 0.7em 1em;
  border-radius: 0.9em;
  border: 1.5px solid #D1E7F6;
  background: #F8FAFC;
  color: #1E293B;
  transition: border-color 0.15s, box-shadow 0.13s;
  outline: none;
  margin-top: 0.2em;
  resize: none;
}
.contact__input:focus {
  border-color: #36BFE8;
  box-shadow: 0 0 0 2px #EAF6FF;
}

.contact__btn {
  margin-top: 0.2em;
  background: #36BFE8;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
  border: none;
  padding: 0.78em 2em;
  border-radius: 1.1em;
  box-shadow: 0 4px 20px rgba(54,191,232,0.12);
  transition: background 0.18s, transform 0.15s;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.contact__btn:hover, .contact__btn:focus {
  background: #1E293B;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.contact__captcha {
  display: flex;
  align-items: center;
  gap: 1em;
}
#captcha-question {
  font-size: 1.08rem;
  font-weight: 500;
  color: #36BFE8;
}
.contact__result {
  margin-top: 1em;
  font-size: 1.07rem;
  font-weight: 600;
  color: #1E293B;
  min-height: 2em;
  transition: color 0.2s;
}

@media (max-width: 900px) {
  .contact__container {
    flex-direction: column;
    gap: 2em;
  }
  .contact__form, .contact__left {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .contact__form {
    padding: 1em 0.6em 1em 0.6em;
    border-radius: 1em;
  }
  .contact__title {
    font-size: 1.1rem;
  }
}
.cookie-popup {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  transition: opacity 0.33s cubic-bezier(.33,1.4,.62,1);
  opacity: 0;
}
.cookie-popup.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-popup__body {
  display: flex;
  align-items: center;
  gap: 1.2em;
  background: rgba(255,255,255,0.98);
  border: 2px solid #EAF6FF;
  border-radius: 1.5em 1.5em 0 0;
  box-shadow: 0 -4px 28px rgba(54,191,232,0.14);
  padding: 1.15em 2em 1.15em 1.3em;
  max-width: 520px;
  margin: 2em 1em 0 1em;
  font-size: 1rem;
  animation: popupUp 0.8s cubic-bezier(.33,1.4,.62,1);
}
@keyframes popupUp {
  from { transform: translateY(110px); opacity: 0;}
  to { transform: none; opacity: 1;}
}
.cookie-popup__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-popup__text {
  color: #1E293B;
  line-height: 1.55;
}
.cookie-popup__text a {
  color: #36BFE8;
  text-decoration: underline;
}
.cookie-popup__btn {
  background: #36BFE8;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 1em;
  padding: 0.6em 1.7em;
  margin-left: 1.2em;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(54,191,232,0.07);
  transition: background 0.18s;
}
.cookie-popup__btn:hover, .cookie-popup__btn:focus {
  background: #1E293B;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-popup__body {
    flex-direction: column;
    align-items: flex-start;
    padding: 1em 0.7em 1em 0.9em;
    font-size: 0.98rem;
    margin: 1em 0.3em 0 0.3em;
  }
  .cookie-popup__btn {
    margin: 0.6em 0 0 0;
    width: 100%;
  }
}

.pages {
  background: linear-gradient(110deg, #EAF6FF 70%, #F5F6FA 100%);
  min-height: 74vh;
  padding: 3.4em 0 3.1em 0;
  display: flex;
  align-items: flex-start;
}

.pages .container {
  max-width: 750px;
  margin: 0 auto;
  background: #fff;
  border-radius: 1.4em;
  box-shadow: 0 6px 28px rgba(54,191,232,0.09);
  padding: 2.8em 2.2em 2.6em 2.2em;
  font-family: 'Inter', Arial, sans-serif;
  color: #1E293B;
  line-height: 1.7;
}

.pages h1 {
  font-family: 'Sora', 'Inter', Arial, sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1.3em;
  color: #36BFE8;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.pages h2 {
  font-family: 'Sora', 'Inter', Arial, sans-serif;
  font-size: 1.19rem;
  color: #1E293B;
  font-weight: 600;
  margin: 2.1em 0 0.85em 0;
  letter-spacing: 0.01em;
}

.pages p {
  font-size: 1.06rem;
  margin-bottom: 1.2em;
  color: #334155;
}

.pages ul, .pages ol {
  margin: 1em 0 1.2em 1.5em;
  padding: 0;
  font-size: 1.05rem;
  color: #334155;
}
.pages li {
  margin-bottom: 0.7em;
  padding-left: 0.1em;
}
.pages li strong {
  color: #36BFE8;
  font-weight: 600;
}

.pages a {
  color: #36BFE8;
  text-decoration: underline;
  word-break: break-all;
  transition: color 0.18s;
}
.pages a:hover {
  color: #1E293B;
  text-decoration: none;
}

@media (max-width: 900px) {
  .pages .container {
    padding: 1.6em 1em 2em 1em;
  }
  .pages h1 {
    font-size: 1.2rem;
  }
  .pages h2 {
    font-size: 1rem;
    margin-top: 1.4em;
  }
  .pages p, .pages ul, .pages ol {
    font-size: 0.99rem;
  }
}
