/* Базовий 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 {
  font-family: 'Inter', Arial, sans-serif;
  background: #e4f0ff;
  color: #222942;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-size: 18px;
  min-height: 100vh;
  box-sizing: border-box;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #222942;
  font-weight: 700;
  margin: 0 0 0.4em 0;
}
a {
  color: #377dff;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #feae34;
}
button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #377dff;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.75em 2em;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(55, 125, 255, 0.08);
  transition: background .2s, transform .15s;
  outline: none;
}
button:hover, .button:hover {
  background: #feae34;
  color: #222942;
  transform: translateY(-3px) scale(1.05);
}
img {
  max-width: 100%;
  border-radius: 12px;
  background: #fff;
  display: block;
}
::-webkit-scrollbar {
  width: 8px;
  background: #e4f0ff;
}
::-webkit-scrollbar-thumb {
  background: #377dff;
  border-radius: 4px;
}
.header {
  background: #fff;
  box-shadow: 0 2px 18px rgba(55, 125, 255, 0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 99;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2em 2em;
}
.header__logo {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #377dff;
  letter-spacing: 1px;
  gap: 0.6em;
  text-decoration: none;
  transition: color .22s;
}
.header__logo-icon {
  font-size: 1.6em;
  color: #feae34;
  margin-right: 0.25em;
}
.header__flag {
  display: inline-block;
  margin-left: 0.2em;
  font-size: 1.3em;
  color: #377dff;
}
.header__nav {
  flex: 1 1 auto;
  margin-left: 3em;
}
.header__nav-list {
  list-style: none;
  display: flex;
  gap: 2.2em;
  margin: 0;
  padding: 0;
}
.header__nav-link {
  display: flex;
  align-items: center;
  gap: 0.55em;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.07em;
  font-weight: 600;
  color: #222942;
  padding: 0.4em 0.9em;
  border-radius: 8px;
  transition: background .18s, color .15s, box-shadow .19s;
  position: relative;
}
.header__nav-link:hover,
.header__nav-link:focus {
  background: #e4f0ff;
  color: #377dff;
  box-shadow: 0 2px 14px rgba(55, 125, 255, 0.10);
  outline: none;
}
.header__nav-link--cta {
  background: #377dff;
  color: #fff;
  transition: background .21s, color .14s, transform .15s;
  box-shadow: 0 2px 14px rgba(55, 125, 255, 0.10);
}
.header__nav-link--cta:hover,
.header__nav-link--cta:focus {
  background: #feae34;
  color: #222942;
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 2px 16px rgba(254, 174, 52, 0.12);
}
.header__burger {
  display: none;
  background: transparent;
  border: none;
  font-size: 2em;
  color: #377dff;
  cursor: pointer;
  transition: color .16s;
}
.header__burger:hover { color: #feae34; }

@media (max-width: 900px) {
  .header__container {
    flex-wrap: wrap;
    padding: 1em 1em;
  }
  .header__nav {
    margin-left: 1.2em;
  }
  .header__logo {
    font-size: 1.4rem;
  }
}
@media (max-width: 720px) {
  .header__nav-list {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #fff;
    flex-direction: column;
    gap: 0.5em;
    box-shadow: 0 5px 24px rgba(55, 125, 255, 0.13);
    padding: 1em 2em 1.2em 2em;
    display: none;
  }
  .header__nav-list.active { display: flex; }
  .header__burger {
    display: block;
    margin-left: 1em;
  }
}
.footer {
  background: #222942;
  color: #e4f0ff;
  padding: 3em 0 1em 0;
  position: relative;
  font-size: 1.04em;
}
.footer__container {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.5fr 1.5fr;
  gap: 2.2em;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2em;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.footer__col--logo .footer__logo {
  display: flex;
  align-items: center;
  font-size: 1.4em;
  font-weight: 700;
  color: #e4f0ff;
  text-decoration: none;
  letter-spacing: 1px;
  gap: 0.5em;
  margin-bottom: 0.4em;
}
.footer__logo-icon {
  color: #feae34;
  font-size: 1.6em;
}
.footer__uk {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-top: 0.25em;
  opacity: 0.87;
  font-size: 1em;
}
.footer__uk-emoji {
  font-size: 1.35em;
}
.footer__uk-text {
  font-size: 1em;
}
.footer__title {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #feae34;
  font-size: 1.07em;
  font-weight: 700;
  margin-bottom: 0.2em;
  letter-spacing: 0.5px;
}
.footer__nav-list,
.footer__info-list,
.footer__contacts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}
.footer__nav-list a,
.footer__info-list a {
  color: #e4f0ff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.55em;
  transition: color .19s;
  font-weight: 500;
  font-size: 1em;
}
.footer__nav-list a:hover,
.footer__info-list a:hover {
  color: #feae34;
}
.footer__contacts-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  font-size: 0.99em;
}
.footer__contacts-list a {
  color: #e4f0ff;
  text-decoration: none;
  transition: color .18s;
}
.footer__contacts-list a:hover {
  color: #feae34;
}
.footer__copy {
  border-top: 1px solid #334060;
  margin-top: 2.2em;
  text-align: center;
  font-size: 0.97em;
  color: #9cb6dd;
  padding-top: 1.2em;
  letter-spacing: 0.2px;
}

/* Адаптив */
@media (max-width: 1100px) {
  .footer__container {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 1.5em;
    padding: 0 1.2em;
  }
}
@media (max-width: 800px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 2em;
  }
  .footer__col { margin-bottom: 1.8em; }
}
@media (max-width: 520px) {
  .footer__container {
    grid-template-columns: 1fr;
    gap: 1em;
    padding: 0 0.5em;
  }
  .footer__col { margin-bottom: 1.2em; }
  .footer__logo { font-size: 1.1em; }
}
.hero {
  background: linear-gradient(120deg, #e4f0ff 60%, #fff 100%);
  padding: 4em 0 3.5em 0;
  position: relative;
  overflow: hidden;
}
.hero__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2em;
  padding: 0 2em;
}
.hero__text {
  flex: 1.5 1 0;
  display: flex;
  flex-direction: column;
  gap: 1.7em;
  min-width: 0;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: #feae34;
  color: #222942;
  font-weight: 600;
  font-size: 1.08em;
  border-radius: 18px;
  padding: 0.35em 1.2em;
  box-shadow: 0 2px 10px rgba(254,174,52,0.08);
  margin-bottom: 0.7em;
  letter-spacing: 0.2px;
  animation: hero-badge-in 1.1s cubic-bezier(.36,2,.45,.85) 0.2s backwards;
}
@keyframes hero-badge-in {
  from { opacity: 0; transform: translateY(-30px) scale(0.85);}
  to { opacity: 1; transform: none; }
}
.hero__title {
  font-size: 2.7em;
  line-height: 1.14;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #222942;
  margin-bottom: 0.35em;
  letter-spacing: 0.5px;
}
.hero__highlight {
  background: linear-gradient(90deg,#377dff 60%,#feae34 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.hero__uk {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}
.hero__uk-emoji { font-size: 1.05em; margin-left: 0.23em; }
.hero__desc {
  color: #3a4569;
  font-size: 1.18em;
  margin-bottom: 0.6em;
}
.hero__magic-word {
  background: #e4f0ff;
  color: #377dff;
  border-radius: 9px;
  padding: 0.09em 0.35em;
  font-weight: 600;
  box-shadow: 0 1px 8px rgba(55,125,255,0.05);
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  margin-top: 0.5em;
  font-size: 1.13em;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: box-shadow .18s, background .18s, color .13s, transform .13s;
  box-shadow: 0 3px 20px rgba(55,125,255,0.12);
  will-change: transform;
}
.hero__cta:hover {
  background: #feae34;
  color: #222942;
  transform: scale(1.06) translateY(-2px);
}

.hero__visual {
  flex: 1.2 1 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.hero__img-wrap {
  position: relative;
  width: 330px;
  height: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero__img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 4px 26px rgba(34,41,66,0.13);
  background: #fff;
  z-index: 2;
  position: relative;
}
.hero__card {
  position: absolute;
  min-width: 145px;
  max-width: 170px;
  background: #fff;
  color: #222942;
  font-size: 1em;
  font-weight: 600;
  border-radius: 14px;
  padding: 0.8em 1.1em;
  box-shadow: 0 3px 16px rgba(55,125,255,0.10);
  display: flex;
  align-items: center;
  gap: 0.7em;
  opacity: 0.97;
  transition: transform .19s, box-shadow .18s;
  cursor: pointer;
  z-index: 100;
}
.hero__card--left {
  left: -62px;
  top: 32px;
  background: #e4f0ff;
  animation: hero-card-left-in .95s cubic-bezier(.36,2,.45,.85) 0.3s backwards;
}
.hero__card--right {
  right: -48px;
  bottom: 35px;
  background: #feae34;
  color: #222942;
  animation: hero-card-right-in .93s cubic-bezier(.36,2,.45,.85) 0.5s backwards;
}
.hero__card:hover {
  transform: scale(1.08) translateY(-6px) rotate(-3deg);
  box-shadow: 0 6px 26px rgba(55,125,255,0.14);
}
@keyframes hero-card-left-in {
  from { opacity:0; transform:translateX(-90px) scale(0.7);}
  to { opacity:1; transform:none;}
}
@keyframes hero-card-right-in {
  from { opacity:0; transform:translateX(90px) scale(0.7);}
  to { opacity:1; transform:none;}
}
/* Декоративні точки */
.hero__dots {
  position: absolute;
  right: -23px;
  top: 10%;
  width: 55px;
  height: 110px;
  background: radial-gradient(circle, #377dff 0 25%, transparent 50% 100%);
  border-radius: 40% 60% 50% 70%;
  opacity: 0.18;
  filter: blur(1.5px);
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 980px) {
  .hero__content {
    flex-direction: column;
    gap: 3em;
    align-items: stretch;
    padding: 0 0.6em;
  }
  .hero__visual { justify-content: flex-start; }
  .hero__img-wrap { width: 85vw; max-width: 330px; }
}
@media (max-width: 540px) {
  .hero { padding: 2.2em 0 1.3em 0; }
  .hero__title { font-size: 1.23em; }
  .hero__img-wrap { width: 97vw; max-width: 97vw; height: 220px; }
  .hero__img { height: 200px; border-radius: 13px; }
  .hero__card { font-size: 0.91em; padding: 0.6em 0.7em;}
  .hero__card--left { left: 2vw; top: 7vw; }
  .hero__card--right { right: 2vw; bottom: 8vw;}
  .hero__desc { font-size: 1em;}
}

.about {
  background: linear-gradient(112deg, #e4f0ff 60%, #fff 100%);
  position: relative;
  padding: 4em 0 0 0;
  z-index: 1;
}
.about__container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2.5em;
  padding: 0 2em;
  align-items: flex-start;
}
.about__info {
  flex: 1.5 1 0;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  min-width: 0;
}
.about__title {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.28em;
  color: #377dff;
  margin-bottom: 0.7em;
  letter-spacing: 0.5px;
}
.about__headline {
  font-size: 1.7em;
  color: #222942;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 0.6em;
}
.about__highlight {
  color: #feae34;
  background: #fff6e1;
  border-radius: 7px;
  padding: 0 0.28em;
  font-weight: 700;
}
.about__text-blue {
  color: #377dff;
  font-weight: 700;
}
.about__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1em;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-size: 1.08em;
  color: #3a4569;
  background: #fff;
  border-radius: 11px;
  padding: 0.65em 1.2em;
  box-shadow: 0 1px 10px rgba(55,125,255,0.05);
  transition: box-shadow .15s, transform .13s;
}
.about__list li:hover {
  box-shadow: 0 4px 22px rgba(55,125,255,0.13);
  transform: scale(1.03) translateY(-2px);
}
.about__list i {
  font-size: 1.25em;
  color: #377dff;
  background: #e4f0ff;
  border-radius: 50%;
  padding: 0.37em;
  margin-right: 0.2em;
  transition: background .18s;
}
.about__list li:hover i {
  background: #feae34;
  color: #222942;
}

.about__approach {
  flex: 1 1 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(55,125,255,0.09);
  padding: 2.3em 1.5em 2em 1.5em;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  min-width: 260px;
  max-width: 370px;
  margin-top: 0.5em;
  animation: about-approach-in 0.96s cubic-bezier(.36,2,.45,.85) 0.2s backwards;
}
@keyframes about-approach-in {
  from { opacity:0; transform: translateY(80px) scale(.91);}
  to { opacity:1; transform: none;}
}
.about__approach-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14em;
  font-weight: 700;
  color: #377dff;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.about__approach-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.9em 0;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}
.about__approach-list li {
  display: flex;
  align-items: center;
  gap: 0.7em;
  color: #222942;
  font-size: 1.06em;
}
.about__approach-list i {
  color: #feae34;
  font-size: 1.18em;
  margin-right: 0.2em;
}
.about__button {
  margin-top: 0.7em;
  align-self: flex-start;
}

.about__wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100vw;
  min-width: 100vw;
  height: 78px;
  z-index: 2;
  display: block;
  pointer-events: none;
}

@media (max-width: 900px) {
  .about__container {
    flex-direction: column;
    gap: 3em;
    padding: 0 1em;
    align-items: stretch;
  }
  .about__approach {
    max-width: 100vw;
    width: 100%;
    min-width: 0;
    margin-top: 0;
  }
}

@media (max-width: 520px) {
  .about { padding: 2.3em 0 0 0; }
  .about__container { gap: 1.2em; }
  .about__headline { font-size: 1em; }
  .about__approach { padding: 1.1em 0.6em 1em 0.6em; }
}
.benefits {
  background: linear-gradient(115deg, #e4f0ff 60%, #fff 100%);
  padding: 4em 0 3em 0;
  position: relative;
  z-index: 2;
}
.benefits__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.benefits__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2em;
  color: #222942;
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 2.5em;
  letter-spacing: 0.5px;
}
.benefits__brand {
  color: #377dff;
  background: #e4f0ff;
  border-radius: 8px;
  padding: 0 0.32em;
  margin-left: 0.2em;
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2em;
  width: 100%;
  margin-bottom: 2em;
}
.benefits__item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 18px rgba(55,125,255,0.09);
  padding: 2.2em 1.2em 2em 1.2em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1em;
  position: relative;
  transition: box-shadow .19s, transform .14s;
  animation: benefit-in .95s cubic-bezier(.38,1.8,.4,.9) backwards;
}
.benefits__item:hover {
  box-shadow: 0 8px 36px rgba(55,125,255,0.19);
  transform: translateY(-8px) scale(1.04);
}
@keyframes benefit-in {
  from { opacity: 0; transform: translateY(40px) scale(0.95);}
  to { opacity: 1; transform: none;}
}
.benefits__icon {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  margin-bottom: 0.6em;
  transition: box-shadow .16s, background .16s, transform .11s;
  box-shadow: 0 2px 12px rgba(55,125,255,0.07);
  background: #e4f0ff;
}
.benefits__icon--blue { background: #e4f0ff; color: #377dff; }
.benefits__icon--yellow { background: #fff6e1; color: #feae34; }
.benefits__icon--green { background: #e6f9ea; color: #16a34a; }
.benefits__icon--purple { background: #ede8fd; color: #8b5cf6; }
.benefits__item:hover .benefits__icon {
  transform: scale(1.13) rotate(-8deg);
  box-shadow: 0 6px 22px rgba(254,174,52,0.13);
}
.benefits__name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.16em;
  color: #222942;
  margin-bottom: 0.15em;
}
.benefits__desc {
  font-size: 1.01em;
  color: #3a4569;
  opacity: 0.95;
}
.benefits__cta {
  margin-top: 1.6em;
  font-size: 1.13em;
  padding: 0.8em 2.2em;
}

@media (max-width: 1020px) {
  .benefits__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2em 1.2em;
  }
}
@media (max-width: 650px) {
  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 1.1em;
  }
  .benefits__title {
    font-size: 1.15em;
    margin-bottom: 1.1em;
  }
}
.cta {
  background: linear-gradient(104deg, #377dff 0%, #e4f0ff 100%);
  padding: 3.2em 0 3.5em 0;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.cta__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2em;
  display: flex;
  align-items: center;
  gap: 2em;
  justify-content: space-between;
}
.cta__content {
  flex: 1.5 1 0;
  display: flex;
  flex-direction: column;
  gap: 1.7em;
  color: #fff;
  align-items: flex-start;
  min-width: 0;
}
.cta__icon {
  font-size: 2.7em;
  color: #feae34;
  margin-bottom: 0.4em;
  animation: cta-icon-in 1.1s cubic-bezier(.36,2,.45,.85) 0.2s backwards;
}
@keyframes cta-icon-in {
  from { opacity:0; transform:translateY(-30px) scale(0.85);}
  to { opacity:1; transform:none;}
}
.cta__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2em;
  line-height: 1.19;
  margin: 0 0 0.2em 0;
  letter-spacing: 0.6px;
  color: #fff;
}
.cta__subtitle {
  font-size: 1.19em;
  color: #e4f0ff;
  margin-bottom: 0.5em;
}
.cta__highlight {
  color: #feae34;
  background: #fff6e1;
  border-radius: 6px;
  padding: 0 0.27em;
  font-weight: 700;
}
.cta__button {
  margin-top: 1em;
  font-size: 1.18em;
  background: #feae34;
  color: #222942;
  box-shadow: 0 3px 18px rgba(254,174,52,0.11);
  padding: 0.85em 2.5em;
  transition: background .18s, color .13s, box-shadow .14s, transform .13s;
}
.cta__button:hover {
  background: #fff;
  color: #377dff;
  box-shadow: 0 6px 26px rgba(55,125,255,0.11);
  transform: scale(1.06) translateY(-2px);
}
.cta__img-wrap {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.cta__img {
  width: 220px;
  height: auto;
  object-fit: cover;
  border-radius: 17px;
  background: none;
}
@media (max-width: 850px) {
  .cta__container {
    flex-direction: column;
    gap: 1.5em;
    padding: 0 0.6em;
    align-items: stretch;
  }
  .cta__img-wrap { margin-top: 1em; }
}
@media (max-width: 540px) {
  .cta { padding: 1.5em 0 2em 0; }
  .cta__title { font-size: 1.18em; }
  .cta__img { width: 99vw; max-width: 240px; height: 120px; }
}
.testimonials {
  background: #fff;
  padding: 4em 0 3em 0;
  position: relative;
  z-index: 2;
}
.testimonials__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.8em;
  color: #222942;
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 2.2em;
  letter-spacing: 0.5px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em 1.4em;
  width: 100%;
  margin-bottom: 2.5em;
}
.testimonial {
  background: #e4f0ff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(55,125,255,0.11);
  padding: 2.2em 1.6em 2em 1.6em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
  position: relative;
  animation: testimonial-in .9s cubic-bezier(.36,2,.45,.85) backwards;
  transition: box-shadow .17s, transform .13s;
  border-left: 7px solid #377dff;
}
@keyframes testimonial-in {
  from { opacity: 0; transform: translateY(60px) scale(0.93);}
  to { opacity: 1; transform: none;}
}
.testimonial:hover {
  box-shadow: 0 10px 38px rgba(55,125,255,0.17);
  transform: translateY(-6px) scale(1.025);
}
.testimonial__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 2px 9px rgba(55,125,255,0.07);
  margin-bottom: 0.5em;
}
.testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial__info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1em;
  width: 100%;
  margin-bottom: 0.1em;
}
.testimonial__name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #222942;
  font-size: 1.11em;
}
.testimonial__country {
  color: #377dff;
  font-size: 0.97em;
  margin-left: 0.6em;
}
.testimonial__stars {
  color: #feae34;
  font-size: 1em;
  margin-left: auto;
}
.testimonial__text {
  color: #3a4569;
  font-size: 1.09em;
  margin-top: 0.6em;
}
.testimonials__cta {
  margin-top: 1.2em;
  font-size: 1.13em;
  padding: 0.9em 2.2em;
}

@media (max-width: 900px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 1.2em;
  }
}
@media (max-width: 520px) {
  .testimonials { padding: 2em 0 1em 0; }
  .testimonials__title { font-size: 1em; margin-bottom: 1.2em;}
  .testimonials__grid { gap: 1em; }
  .testimonial { padding: 1.2em 0.7em 1em 0.7em; }
}
.contact {
  background: #e4f0ff;
  padding: 4em 0 3.5em 0;
  position: relative;
  z-index: 2;
}
.contact__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2em;
  display: flex;
  gap: 3em;
  align-items: flex-start;
  justify-content: space-between;
}
.contact__info {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 1.4em;
  min-width: 0;
  max-width: 410px;
}
.contact__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3em;
  color: #377dff;
  display: flex;
  align-items: center;
  gap: 0.55em;
  margin-bottom: 0.4em;
}
.contact__desc {
  color: #3a4569;
  font-size: 1.09em;
  margin-bottom: 0.3em;
}
.contact__facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9em;
}
.contact__facts li {
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: #222942;
  font-size: 0.97em;
}
.contact__facts i {
  color: #feae34;
  font-size: 1.13em;
}
.contact__form {
  flex: 1 1 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(55,125,255,0.08);
  padding: 2.3em 2em 2em 2em;
  display: flex;
  flex-direction: column;
  gap: 1.3em;
  min-width: 0;
  max-width: 430px;
  animation: contact-form-in 0.93s cubic-bezier(.36,2,.45,.85) backwards;
}
@keyframes contact-form-in {
  from { opacity:0; transform: translateY(60px) scale(.93);}
  to { opacity:1; transform: none;}
}
.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.contact__form label {
  font-size: 1.04em;
  color: #377dff;
  font-weight: 600;
  margin-bottom: 0.17em;
}
.contact__form input, .contact__form textarea {
  border: 1.5px solid #e4f0ff;
  border-radius: 8px;
  padding: 0.72em 1em;
  font-size: 1em;
  font-family: 'Inter', Arial, sans-serif;
  color: #222942;
  background: #fafdff;
  transition: border-color .17s, box-shadow .16s;
  resize: none;
}
.contact__form input:focus, .contact__form textarea:focus {
  border-color: #377dff;
  box-shadow: 0 1px 9px rgba(55,125,255,0.10);
  outline: none;
}
.contact__captcha {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-top: 0.3em;
}
#captcha-question {
  background: #e4f0ff;
  color: #222942;
  border-radius: 6px;
  padding: 0.18em 0.65em;
  font-weight: 600;
  font-size: 1.04em;
  margin-left: 0.2em;
}
.contact__button {
  margin-top: 1.3em;
  font-size: 1.13em;
  padding: 0.8em 2em;
  align-self: flex-start;
}
.contact__success {
  display: flex;
  align-items: center;
  gap: 0.7em;
  color: #16a34a;
  background: #e6f9ea;
  font-weight: 600;
  border-radius: 7px;
  padding: 0.85em 1.1em;
  margin-top: 1.2em;
  font-size: 1.07em;
  animation: fadeInSuccess .8s cubic-bezier(.48,2,.35,.9);
}
@keyframes fadeInSuccess {
  from {opacity:0; transform:scale(0.94);}
  to {opacity:1; transform:none;}
}
@media (max-width: 900px) {
  .contact__container { flex-direction: column; gap: 2.5em; padding: 0 1em;}
  .contact__info, .contact__form { max-width: 100vw; width: 100%;}
}
@media (max-width: 500px) {
  .contact { padding: 2em 0 1em 0;}
  .contact__form { padding: 1.2em 0.5em 1em 0.5em;}
}
.cookie-popup {
  position: fixed;
  bottom: 2.5em;
  right: 2.3em;
  z-index: 2000;
  background: #fff;
  color: #222942;
  border-radius: 16px;
  box-shadow: 0 6px 34px rgba(55,125,255,0.15);
  padding: 1.2em 1.4em 1.2em 1em;
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 1.07em;
  max-width: 340px;
  min-width: 200px;
  transition: transform .3s cubic-bezier(.65,-0.02,.42,1.2), opacity .24s;
  opacity: 0;
  transform: translateY(60px) scale(.96);
  pointer-events: none;
  visibility: hidden;
}
.cookie-popup.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  visibility: visible;
}
.cookie-popup__icon {
  font-size: 2em;
  color: #feae34;
  margin-right: 0.3em;
  animation: cookie-bounce 1.4s cubic-bezier(.4,1.6,.3,1.13) infinite alternate;
}
@keyframes cookie-bounce {
  from { transform: translateY(0);}
  to { transform: translateY(-7px) scale(1.08);}
}
.cookie-popup__text {
  flex: 1 1 0;
  font-size: 0.98em;
  color: #222942;
}
.cookie-popup__text a {
  color: #377dff;
  text-decoration: underline;
  font-weight: 500;
  transition: color .16s;
}
.cookie-popup__text a:hover {
  color: #feae34;
}
.cookie-popup__button {
  font-size: 1em;
  background: #feae34;
  color: #222942;
  border-radius: 7px;
  box-shadow: 0 2px 7px rgba(254,174,52,0.07);
  padding: 0.6em 1.4em;
  font-weight: 600;
  transition: background .17s, color .13s, box-shadow .14s, transform .13s;
  margin-left: 0.8em;
}
.cookie-popup__button:hover {
  background: #377dff;
  color: #fff;
  transform: scale(1.05);
}
@media (max-width: 650px) {
  .cookie-popup {
    right: 0.6em;
    left: 0.6em;
    bottom: 1em;
    max-width: 97vw;
    min-width: 0;
    padding: 1.1em 0.7em;
    font-size: 1em;
  }
}
.pages {
  background: linear-gradient(120deg, #e4f0ff 60%, #fff 100%);
  min-height: 85vh;
  padding: 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 1;
}
.pages .container {
  max-width: 740px;
  margin: 4em auto 3em auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(55,125,255,0.08);
  padding: 2.7em 2.1em 2.5em 2.1em;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  animation: page-fade-in 0.88s cubic-bezier(.36,2,.45,.85) backwards;
}
@keyframes page-fade-in {
  from {opacity:0; transform: translateY(40px) scale(.97);}
  to {opacity:1; transform: none;}
}
.pages h1 {
  display: flex;
  align-items: center;
  gap: 0.65em;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #377dff;
  font-size: 2.1em;
  font-weight: 800;
  margin: 0 0 0.7em 0;
  letter-spacing: 0.5px;
  border-bottom: 2.5px solid #e4f0ff;
  padding-bottom: 0.33em;
}
.pages h1:before {
  content: "\f6c3";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #feae34;
  font-size: 1.25em;
  background: #e4f0ff;
  border-radius: 9px;
  padding: 0.14em 0.33em;
  margin-right: 0.05em;
  display: inline-block;
}
.pages h2 {
  color: #222942;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13em;
  font-weight: 700;
  margin-top: 1.4em;
  margin-bottom: 0.45em;
  letter-spacing: 0.3px;
  position: relative;
  padding-left: 0.33em;
}
.pages h2:before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #feae34;
  margin-right: 0.5em;
  vertical-align: middle;
  margin-left: -0.9em;
  position: relative;
  top: -2px;
}
.pages p {
  color: #3a4569;
  font-size: 1.07em;
  margin: 0 0 0.95em 0;
  line-height: 1.7;
}
.pages ul {
  margin: 0 0 1.3em 1.4em;
  padding: 0;
  list-style: none;
}
.pages ul li {
  position: relative;
  color: #222942;
  background: #e4f0ff;
  border-radius: 7px;
  margin-bottom: 0.68em;
  padding: 0.65em 1.1em 0.65em 2.2em;
  font-size: 1em;
  box-shadow: 0 1px 7px rgba(55,125,255,0.04);
  transition: box-shadow .16s, background .14s;
}
.pages ul li:before {
  content: "\f111";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #377dff;
  position: absolute;
  left: 0.7em;
  top: 0.94em;
  font-size: 0.78em;
}
.pages a {
  color: #377dff;
  text-decoration: underline;
  transition: color .17s;
  font-weight: 600;
  word-break: break-all;
}
.pages a:hover {
  color: #feae34;
}
@media (max-width: 680px) {
  .pages .container {
    padding: 1.2em 0.5em 1.2em 0.5em;
    border-radius: 11px;
  }
  .pages h1 { font-size: 1.18em; }
}
