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


@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;800&family=Roboto:wght@400;500&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #f5f7fa;
  color: #22223b;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  transition: background 0.3s;
  font-size: 16px;
  line-height: 1.7;
  scroll-behavior: smooth;
}

a {
  color: #1e90ff;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #ffd166;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 0;
  color: #373f51;
}

button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #1e90ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.75em 2em;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(30, 144, 255, 0.1);
  transition: background 0.2s, transform 0.2s;
  margin: 10px 0;
  outline: none;
  position: relative;
  overflow: hidden;
}

button:hover, .button:hover {
  background: #ffd166;
  color: #373f51;
  transform: translateY(-2px) scale(1.04);
}


.header {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 2px 18px rgba(55,63,81,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
  width: 100%;
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5em 1.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: #373f51;
  text-decoration: none;
  gap: 10px;
  position: relative;
}

.header__logo-icon {
  width: 32px;
  height: 32px;
  color: #ffd166;
  margin-right: 6px;
  vertical-align: middle;
  transition: transform 0.2s;
}
.header__logo:hover .header__logo-icon {
  transform: scale(1.18) rotate(-8deg);
}

.header__badge {
  font-size: 0.75em;
  background: #1e90ff;
  color: #fff;
  border-radius: 6px;
  padding: 2px 9px;
  margin-left: 8px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.header__nav {
  display: flex;
  gap: 1.2em;
}

.header__nav-link {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  color: #373f51;
  padding: 0.4em 0.9em;
  border-radius: 7px;
  transition: background 0.18s, color 0.15s, box-shadow 0.17s;
  position: relative;
  font-weight: 600;
  gap: 0.6em;
}

.header__nav-link i {
  width: 20px;
  height: 20px;
  color: #1e90ff;
  transition: color 0.18s, transform 0.15s;
}

.header__nav-link:hover, .header__nav-link:focus {
  background: #f0f6ff;
  color: #1e90ff;
  box-shadow: 0 2px 8px rgba(30, 144, 255, 0.09);
}
.header__nav-link:hover i, .header__nav-link:focus i {
  color: #ffd166;
  transform: scale(1.16) rotate(-5deg);
}

.header__nav-link--button {
  background: #1e90ff;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(30,144,255,0.10);
  transition: background 0.22s, color 0.16s, box-shadow 0.18s;
}
.header__nav-link--button i {
  color: #fff;
}
.header__nav-link--button:hover, .header__nav-link--button:focus {
  background: #ffd166;
  color: #373f51;
  box-shadow: 0 4px 14px rgba(255,209,102,0.10);
}
.header__nav-link--button:hover i, .header__nav-link--button:focus i {
  color: #373f51;
}

/* Бургер-меню для мобільних */
.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 7px;
  border-radius: 7px;
  transition: background 0.17s;
}
.header__burger:hover {
  background: #e9ecef;
}
.header__burger i {
  width: 32px;
  height: 32px;
  color: #1e90ff;
}

@media (max-width: 820px) {
  .header__container {
    padding: 0.5em 0.5em;
  }
  .header__nav {
    gap: 0.7em;
  }
}

@media (max-width: 650px) {
  .header__nav {
    position: fixed;
    top: 60px;
    right: -120vw;
    background: #fff;
    box-shadow: 0 4px 18px rgba(30, 144, 255, 0.13);
    flex-direction: column;
    gap: 0;
    width: 220px;
    height: calc(100vh - 60px);
    transition: right 0.22s;
    padding: 1.2em 0;
    z-index: 999;
  }
  .header__nav.active {
    right: 0;
  }
  .header__nav-link {
    padding: 1em 1.6em;
    font-size: 1.15rem;
    border-radius: 0;
    border-bottom: 1px solid #e9ecef;
    justify-content: flex-start;
  }
  .header__burger {
    display: block;
  }
}
.footer {
  background: #373f51;
  color: #fff;
  padding: 3.5em 0 1em 0;
  font-size: 1rem;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -4px 20px rgba(30, 144, 255, 0.08);
  margin-top: 2em;
  position: relative;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5em;
  align-items: start;
  padding: 0 1.5em;
}

.footer__col {
  min-width: 0;
}

.footer__col--logo {
  grid-column: 1/2;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffd166;
  text-decoration: none;
  margin-bottom: 0.6em;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.footer__logo:hover .footer__logo-icon {
  transform: scale(1.15) rotate(-8deg);
}
.footer__logo-icon {
  width: 26px;
  height: 26px;
  color: #ffd166;
  transition: transform 0.2s;
}

.footer__badge {
  background: #1e90ff;
  color: #fff;
  font-size: 0.82em;
  border-radius: 6px;
  padding: 2px 8px;
  margin-left: 8px;
  font-weight: 600;
  letter-spacing: 1px;
}
.footer__tagline {
  font-size: 1em;
  margin-top: 6px;
  opacity: 0.77;
  letter-spacing: 0.5px;
}

.footer__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06em;
  font-weight: 700;
  margin-bottom: 1em;
  color: #ffd166;
  letter-spacing: 1px;
}

.footer__nav-list,
.footer__info-list,
.footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__nav-link,
.footer__info-list a {
  display: flex;
  align-items: center;
  gap: 0.45em;
  color: #fff;
  opacity: 0.92;
  text-decoration: none;
  padding: 0.22em 0;
  font-weight: 500;
  transition: color 0.19s, opacity 0.18s;
}
.footer__nav-link i {
  width: 18px;
  height: 18px;
  color: #ffd166;
  transition: color 0.18s, transform 0.13s;
}
.footer__nav-link:hover, .footer__info-list a:hover {
  color: #ffd166;
  opacity: 1;
}
.footer__nav-link:hover i {
  color: #1e90ff;
  transform: scale(1.13) rotate(-7deg);
}

.footer__info-list a {
  padding: 0.18em 0;
}

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  margin-bottom: 0.65em;
  opacity: 0.93;
  word-break: break-all;
}
.footer__contact-list i {
  width: 19px;
  height: 19px;
  color: #1e90ff;
  flex-shrink: 0;
  margin-top: 1px;
  transition: color 0.15s, transform 0.13s;
}
.footer__contact-list li:hover i {
  color: #ffd166;
  transform: scale(1.09) rotate(-5deg);
}

.footer__bottom {
  margin-top: 2em;
  text-align: center;
  color: #fff;
  opacity: 0.53;
  font-size: 0.97em;
  letter-spacing: 0.5px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Адаптивність футера */
@media (max-width: 900px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 2em;
  }
}
@media (max-width: 600px) {
  .footer__container {
    grid-template-columns: 1fr;
    gap: 1.5em;
    padding: 0 0.5em;
  }
  .footer__col {
    margin-bottom: 1.5em;
  }
  .footer {
    padding-top: 2.2em;
  }
}

.hero {
  width: 100%;
  background: linear-gradient(120deg, #e9ecef 0%, #f5f7fa 100%);
  padding: 4em 0 2em 0;
  min-height: 60vh;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5em;
  display: flex;
  align-items: center;
  gap: 2.5em;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.hero__content {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  gap: 2em;
  min-width: 0;
  z-index: 2;
}

.hero__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: #22223b;
  line-height: 1.16;
  margin-bottom: 0.3em;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.25em;
}

.hero__icon-wrap {
  background: #ffd166;
  border-radius: 50%;
  box-shadow: 0 2px 14px rgba(255, 209, 102, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.22em;
  width: 54px;
  height: 54px;
  animation: bounceIn 1.3s 1;
}

.hero__icon {
  width: 30px;
  height: 30px;
  color: #1e90ff;
  transition: color 0.21s, transform 0.15s;
}

.hero__title:hover .hero__icon {
  color: #ffd166;
  transform: scale(1.16) rotate(-8deg);
}

.hero__subtitle {
  font-size: 1.25rem;
  color: #373f51;
  opacity: 0.93;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 0.4em;
}

.hero__line {
  background: linear-gradient(90deg, #ffd166 0%, #1e90ff 80%);
  color: #fff;
  border-radius: 8px;
  padding: 2px 10px;
  margin-left: 7px;
  margin-right: 7px;
  font-weight: 500;
  font-size: 1.09em;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 0.3em;
  box-shadow: 0 2px 14px rgba(30, 144, 255, 0.11);
  transition: background 0.16s, color 0.13s, transform 0.16s;
  position: relative;
  z-index: 2;
}
.hero__cta i {
  width: 22px;
  height: 22px;
  color: #fff;
  transition: color 0.14s, transform 0.12s;
}
.hero__cta:hover, .hero__cta:focus {
  background: #ffd166;
  color: #373f51;
  transform: scale(1.05);
}
.hero__cta:hover i, .hero__cta:focus i {
  color: #373f51;
  transform: scale(1.1) rotate(-5deg);
}

.hero__image-wrap {
  flex: 1.2;
  position: relative;
  min-width: 240px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero__image {
  width: 340px;
  max-width: 100%;
  border-radius: 22px;
  box-shadow: 0 8px 36px rgba(30, 144, 255, 0.07);
  z-index: 2;
  position: relative;
  background: #fff;
  object-fit: cover;
}

.hero__svg-bg {
  position: absolute;
  left: -10%;
  right: 0;
  bottom: -15px;
  width: 120%;
  pointer-events: none;
  z-index: 1;
}

@keyframes bounceIn {
  0%   { transform: scale(0.4); opacity: 0; }
  50%  { transform: scale(1.1); opacity: 1; }
  70%  { transform: scale(0.98); }
  100% { transform: scale(1); }
}

/* Адаптивність hero */
@media (max-width: 900px) {
  .hero__container {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 2em;
    padding: 0 0.7em;
  }
  .hero__content {
    align-items: flex-start;
    gap: 1.5em;
  }
  .hero__image-wrap {
    width: 100%;
    justify-content: center;
    margin-bottom: 1.7em;
  }
  .hero__image {
    width: 95vw;
    max-width: 320px;
  }
}
@media (max-width: 550px) {
  .hero {
    padding-top: 2.5em;
    padding-bottom: 1.2em;
    min-height: unset;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
  .hero__title {
    font-size: 1.6rem;
    gap: 0.18em;
  }
  .hero__icon-wrap {
    width: 38px;
    height: 38px;
  }
  .hero__image {
    max-width: 93vw;
  }
}
.about {
  background: linear-gradient(104deg, #f5f7fa 70%, #e9ecef 100%);
  padding: 3.5em 0 2.7em 0;
  position: relative;
  overflow: visible;
  z-index: 1;
}

.about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5em;
  display: grid;
  grid-template-areas:
    "intro cards img"
    "cta cards img";
  grid-template-columns: 1.3fr 2fr 1fr;
  gap: 2.5em 3em;
  align-items: start;
  position: relative;
}

.about__intro {
  grid-area: intro;
  align-self: flex-start;
}
.about__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  color: #373f51;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.45em;
  margin-bottom: 0.6em;
}
.about__icon {
  width: 34px;
  height: 34px;
  color: #ffd166;
  transition: color 0.16s, transform 0.17s;
}
.about__title:hover .about__icon {
  color: #1e90ff;
  transform: scale(1.13) rotate(-5deg);
}
.about__text {
  font-size: 1.15rem;
  color: #373f51;
  opacity: 0.9;
  margin-bottom: 0.7em;
}
.about__text span {
  background: #ffd166;
  color: #22223b;
  border-radius: 6px;
  padding: 2px 9px;
  font-weight: 600;
}

.about__cards {
  grid-area: cards;
  display: flex;
  gap: 1.6em;
  justify-content: center;
  align-items: stretch;
}
.about__card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(30, 144, 255, 0.07);
  padding: 2em 1.4em 1.3em 1.4em;
  flex: 1 1 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.19s, transform 0.15s;
  position: relative;
  min-width: 0;
  cursor: pointer;
  z-index: 1;
}
.about__card:hover, .about__card:focus {
  box-shadow: 0 10px 32px rgba(255, 209, 102, 0.13);
  transform: translateY(-5px) scale(1.03);
}
.about__card-icon {
  width: 32px;
  height: 32px;
  color: #1e90ff;
  margin-bottom: 0.6em;
  transition: color 0.17s, transform 0.12s;
}
.about__card:hover .about__card-icon,
.about__card:focus .about__card-icon {
  color: #ffd166;
  transform: scale(1.14) rotate(-7deg);
}
.about__card-title {
  font-size: 1.13rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #373f51;
  margin-bottom: 0.35em;
}
.about__card-text {
  font-size: 1.02rem;
  opacity: 0.83;
  color: #22223b;
}

.about__cta-wrap {
  grid-area: cta;
  margin-top: 2.4em;
}
.about__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 1em;
  box-shadow: 0 2px 14px rgba(30, 144, 255, 0.08);
}
.about__cta i {
  width: 20px;
  height: 20px;
  color: #fff;
  transition: color 0.14s, transform 0.11s;
}
.about__cta:hover, .about__cta:focus {
  background: #ffd166;
  color: #373f51;
  transform: scale(1.04);
}
.about__cta:hover i, .about__cta:focus i {
  color: #373f51;
  transform: scale(1.07) rotate(-5deg);
}

.about__img-block {
  grid-area: img;
  align-self: flex-end;
  justify-self: center;
  margin-top: 2.2em;
  min-width: 150px;
}
.about__img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 32px rgba(30,144,255,0.07);
  background: #fff;
  opacity: 0.96;
  border: 6px solid #e9ecef;
  transition: border-color 0.2s;
}
.about__img-block:hover .about__img {
  border-color: #ffd166;
}

@media (max-width: 900px) {
  .about__container {
    grid-template-areas:
      "intro"
      "img"
      "cards"
      "cta";
    grid-template-columns: 1fr;
    gap: 2em 0;
    padding: 0 0.8em;
  }
  .about__img-block {
    justify-self: left;
    margin-top: 0;
  }
  .about__cards {
    flex-direction: column;
    gap: 1.15em;
    align-items: stretch;
  }
}

@media (max-width: 550px) {
  .about {
    padding-top: 1.3em;
    padding-bottom: 1.3em;
  }
  .about__title {
    font-size: 1.2rem;
  }
  .about__img {
    width: 105px;
    height: 105px;
  }
}
.advantages {
  background: linear-gradient(112deg, #e9ecef 60%, #f5f7fa 100%);
  padding: 3.3em 0 2.7em 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.advantages__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5em;
  position: relative;
  z-index: 2;
}

.advantages__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #373f51;
  margin-bottom: 2em;
  display: flex;
  align-items: center;
  gap: 0.45em;
  position: relative;
  z-index: 2;
}

.advantages__icon {
  width: 32px;
  height: 32px;
  color: #ffd166;
  transition: color 0.17s, transform 0.17s;
}
.advantages__title:hover .advantages__icon {
  color: #1e90ff;
  transform: scale(1.12) rotate(-7deg);
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.7em;
  margin-bottom: 2.2em;
  position: relative;
  z-index: 2;
}

.advantages__item {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 4px 26px rgba(30, 144, 255, 0.09);
  padding: 2em 1.2em 1.2em 1.2em;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.19s, transform 0.19s;
  cursor: pointer;
  min-width: 0;
  will-change: transform;
  z-index: 2;
}

.advantages__item:hover, .advantages__item:focus {
  box-shadow: 0 10px 32px rgba(255, 209, 102, 0.14);
  transform: translateY(-7px) scale(1.035) rotate(-1deg);
}

.advantages__item-icon {
  width: 31px;
  height: 31px;
  color: #1e90ff;
  margin-bottom: 0.8em;
  transition: color 0.17s, transform 0.14s;
}
.advantages__item:hover .advantages__item-icon,
.advantages__item:focus .advantages__item-icon {
  color: #ffd166;
  transform: scale(1.17) rotate(-9deg);
}

.advantages__item-title {
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #373f51;
  font-weight: 700;
  margin-bottom: 0.3em;
}

.advantages__item-text {
  font-size: 1.01rem;
  color: #22223b;
  opacity: 0.82;
  line-height: 1.6;
}

.advantages__cta-wrap {
  text-align: center;
  margin-top: 1.7em;
}
.advantages__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 1.07rem;
  font-weight: 700;
  box-shadow: 0 2px 14px rgba(30, 144, 255, 0.09);
}
.advantages__cta i {
  width: 20px;
  height: 20px;
  color: #fff;
  transition: color 0.12s, transform 0.10s;
}
.advantages__cta:hover, .advantages__cta:focus {
  background: #ffd166;
  color: #373f51;
  transform: scale(1.045);
}
.advantages__cta:hover i, .advantages__cta:focus i {
  color: #373f51;
  transform: scale(1.09) rotate(-5deg);
}

.advantages__svg-bg {
  position: absolute;
  bottom: -60px;
  right: -70px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .advantages__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2em;
  }
  .advantages__svg-bg {
    width: 180px !important;
    height: 180px !important;
    right: -30px;
    bottom: -30px;
  }
}
@media (max-width: 600px) {
  .advantages__grid {
    grid-template-columns: 1fr;
    gap: 1em;
  }
  .advantages__container {
    padding: 0 0.6em;
  }
  .advantages__title {
    font-size: 1.15rem;
    margin-bottom: 1.2em;
  }
}
.blog {
  background: linear-gradient(120deg, #f5f7fa 80%, #e9ecef 100%);
  padding: 3.7em 0 2.8em 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.blog__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5em;
  position: relative;
  z-index: 2;
}

.blog__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #373f51;
  margin-bottom: 2.4em;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.blog__icon {
  width: 32px;
  height: 32px;
  color: #ffd166;
  transition: color 0.18s, transform 0.16s;
}
.blog__title:hover .blog__icon {
  color: #1e90ff;
  transform: scale(1.14) rotate(-6deg);
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2em;
  position: relative;
  z-index: 2;
}

.blog__card {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 4px 26px rgba(30, 144, 255, 0.07);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.17s, transform 0.15s;
  overflow: hidden;
  position: relative;
  min-width: 0;
  cursor: pointer;
}
.blog__card:hover, .blog__card:focus {
  box-shadow: 0 14px 36px rgba(255,209,102,0.11);
  transform: translateY(-8px) scale(1.025);
}
.blog__img-wrap {
  position: relative;
  width: 100%;
  height: 170px;
  overflow: hidden;
  border-top-left-radius: 19px;
  border-top-right-radius: 19px;
  background: #e9ecef;
}
.blog__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.23s;
  border-radius: inherit;
  background: #fff;
}
.blog__card:hover .blog__img,
.blog__card:focus .blog__img {
  transform: scale(1.09);
}
.blog__card-icon {
  position: absolute;
  bottom: 13px;
  right: 13px;
  width: 39px;
  height: 39px;
  color: #1e90ff;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 16px rgba(30,144,255,0.10);
  padding: 7px;
  transition: color 0.18s, transform 0.15s, background 0.15s;
  z-index: 1;
}
.blog__card:hover .blog__card-icon,
.blog__card:focus .blog__card-icon {
  color: #ffd166;
  background: #1e90ff18;
  transform: scale(1.13) rotate(-7deg);
}
.blog__card-content {
  padding: 1.3em 1.4em 1.5em 1.4em;
  display: flex;
  flex-direction: column;
  gap: 1.1em;
}
.blog__card-title {
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #373f51;
  margin-bottom: 0.3em;
}
.blog__card-text {
  font-size: 1.01rem;
  color: #22223b;
  opacity: 0.82;
  line-height: 1.6;
}
.blog__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 1.03rem;
  font-weight: 700;
  margin-top: 0.2em;
  align-self: flex-start;
}
.blog__card-btn i {
  width: 19px;
  height: 19px;
  color: #fff;
  transition: color 0.13s, transform 0.12s;
}
.blog__card-btn:hover, .blog__card-btn:focus {
  background: #ffd166;
  color: #373f51;
  transform: scale(1.045);
}
.blog__card-btn:hover i, .blog__card-btn:focus i {
  color: #373f51;
  transform: scale(1.09) rotate(-5deg);
}

.blog__svg-bg {
  position: absolute;
  left: 0;
  bottom: -15px;
  z-index: 1;
  width: 100%;
  pointer-events: none;
  opacity: 0.94;
}

@media (max-width: 900px) {
  .blog__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.1em;
  }
}
@media (max-width: 700px) {
  .blog__grid {
    grid-template-columns: 1fr;
    gap: 1.1em;
  }
  .blog__container {
    padding: 0 0.6em;
  }
  .blog__img-wrap {
    height: 140px;
  }
  .blog__title {
    font-size: 1.13rem;
    margin-bottom: 1.1em;
  }
}
.process {
  background: linear-gradient(108deg, #e9ecef 85%, #f5f7fa 100%);
  padding: 3em 0 2.4em 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.process__container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1.2em;
  position: relative;
  z-index: 2;
}
.process__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #373f51;
  margin-bottom: 2.1em;
  display: flex;
  align-items: center;
  gap: 0.43em;
}
.process__icon {
  width: 32px;
  height: 32px;
  color: #ffd166;
  transition: color 0.18s, transform 0.16s;
}
.process__title:hover .process__icon {
  color: #1e90ff;
  transform: scale(1.14) rotate(-7deg);
}

.process__steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7em;
  margin-bottom: 2.5em;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.process__step {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 22px rgba(30, 144, 255, 0.07);
  padding: 1.7em 1.3em 1.1em 1.3em;
  flex: 1 1 180px;
  min-width: 170px;
  max-width: 240px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: box-shadow 0.19s, transform 0.16s;
  z-index: 3;
  cursor: pointer;
}
.process__step:hover, .process__step:focus {
  box-shadow: 0 10px 30px rgba(255, 209, 102, 0.11);
  transform: translateY(-6px) scale(1.035);
}
.process__icon-wrap {
  background: #ffd166;
  border-radius: 50%;
  box-shadow: 0 2px 14px rgba(255, 209, 102, 0.17);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5em;
  width: 54px;
  height: 54px;
  animation: bounceIn 1.2s;
}
.process__step-icon {
  width: 28px;
  height: 28px;
  color: #1e90ff;
  transition: color 0.18s, transform 0.14s;
}
.process__step:hover .process__step-icon,
.process__step:focus .process__step-icon {
  color: #373f51;
  transform: scale(1.12) rotate(-7deg);
}
.process__step-num {
  background: #1e90ff;
  color: #fff;
  font-weight: 700;
  font-size: 1.07rem;
  border-radius: 7px;
  padding: 2px 11px;
  margin-bottom: 0.5em;
  margin-top: 0.1em;
  display: inline-block;
}
.process__step-title {
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #373f51;
  font-weight: 700;
  margin-bottom: 0.4em;
  margin-top: 0.1em;
}
.process__step-text {
  font-size: 0.99rem;
  color: #22223b;
  opacity: 0.82;
  margin-bottom: 0.3em;
}
.process__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-width: 38px;
  opacity: 0.7;
}
.process__arrow svg {
  display: block;
  margin: 0;
  width: 40px;
  height: 22px;
}

@media (max-width: 1100px) {
  .process__steps {
    gap: 0.3em;
  }
  .process__step {
    padding: 1.2em 0.7em 1em 0.7em;
    max-width: 220px;
  }
}

@media (max-width: 850px) {
  .process__steps {
    flex-wrap: wrap;
    gap: 1.2em 0.3em;
    justify-content: center;
  }
  .process__step {
    max-width: 340px;
    min-width: 210px;
    margin-bottom: 1.2em;
  }
  .process__arrow {
    display: none;
  }
}

@media (max-width: 600px) {
  .process__steps {
    flex-direction: column;
    gap: 1.4em 0;
    align-items: center;
  }
  .process__step {
    width: 96vw;
    min-width: 0;
    max-width: 99vw;
    margin-bottom: 0.4em;
  }
}

.process__cta-wrap {
  text-align: center;
  margin-top: 1.8em;
}
.process__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 1.08rem;
  font-weight: 700;
  box-shadow: 0 2px 14px rgba(30, 144, 255, 0.09);
}
.process__cta i {
  width: 20px;
  height: 20px;
  color: #fff;
  transition: color 0.12s, transform 0.10s;
}
.process__cta:hover, .process__cta:focus {
  background: #ffd166;
  color: #373f51;
  transform: scale(1.045);
}
.process__cta:hover i, .process__cta:focus i {
  color: #373f51;
  transform: scale(1.09) rotate(-5deg);
}
.contact {
  background: linear-gradient(124deg, #f5f7fa 75%, #e9ecef 100%);
  padding: 3.8em 0 2.6em 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.contact__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5em;
  display: flex;
  gap: 3.2em;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.contact__info {
  flex: 1.2;
  min-width: 250px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 1.1em;
  align-items: flex-start;
}
.contact__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #373f51;
  display: flex;
  align-items: center;
  gap: 0.43em;
  margin-bottom: 0.5em;
}
.contact__icon {
  width: 32px;
  height: 32px;
  color: #ffd166;
  transition: color 0.17s, transform 0.13s;
}
.contact__title:hover .contact__icon {
  color: #1e90ff;
  transform: scale(1.13) rotate(-7deg);
}
.contact__desc {
  font-size: 1.12rem;
  opacity: 0.88;
  color: #22223b;
  margin-bottom: 0.8em;
}
.contact__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.3em 0;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}
.contact__list i {
  width: 19px;
  height: 19px;
  color: #1e90ff;
  margin-right: 0.6em;
}
.contact__map {
  border-radius: 12px;
  width: 100%;
  max-width: 230px;
  margin-top: 0.7em;
  box-shadow: 0 4px 24px rgba(30,144,255,0.07);
}

.contact__form {
  flex: 2.1;
  min-width: 250px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(30,144,255,0.09);
  padding: 2.1em 2em 1.5em 2em;
  display: flex;
  flex-direction: column;
  gap: 1.1em;
  position: relative;
}
.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
  margin-bottom: 0.35em;
}
.contact__field label {
  font-weight: 600;
  color: #373f51;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01em;
  margin-bottom: 0.18em;
}
.contact__input-wrap {
  display: flex;
  align-items: center;
  background: #f5f7fa;
  border-radius: 9px;
  box-shadow: 0 2px 8px rgba(30,144,255,0.04);
  padding: 0.5em 1em;
  transition: box-shadow 0.17s, border 0.15s;
  border: 2px solid transparent;
}
.contact__input-wrap:focus-within {
  border: 2px solid #1e90ff;
  box-shadow: 0 2px 14px rgba(30,144,255,0.08);
}
.contact__input-wrap i {
  width: 19px;
  height: 19px;
  color: #1e90ff;
  margin-right: 0.7em;
  opacity: 0.76;
}
.contact__input-wrap--textarea {
  align-items: flex-start;
}
.contact__input-wrap input,
.contact__input-wrap textarea {
  border: none;
  outline: none;
  background: transparent;
  font-size: 1.04em;
  color: #22223b;
  font-family: 'Roboto', Arial, sans-serif;
  flex: 1;
  padding: 0.3em 0;
  resize: none;
}

.contact__field--captcha label {
  font-weight: 700;
}
.contact__btn {
  margin-top: 0.6em;
  align-self: flex-start;
  font-size: 1.07rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.contact__btn i {
  width: 20px;
  height: 20px;
  color: #fff;
  transition: color 0.12s, transform 0.10s;
}
.contact__btn:hover, .contact__btn:focus {
  background: #ffd166;
  color: #373f51;
  transform: scale(1.045);
}
.contact__btn:hover i, .contact__btn:focus i {
  color: #373f51;
  transform: scale(1.09) rotate(-5deg);
}
.contact__success,
.contact__error {
  margin-top: 1em;
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 1.07em;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 8px;
  padding: 0.7em 1.1em;
  background: #f5f7fa;
  color: #1e90ff;
  opacity: 0.93;
  transition: opacity 0.18s;
  animation: fadeInSuccess 0.3s;
}
.contact__success i {
  color: #14b800;
}
.contact__error {
  color: #e14e0e;
  background: #fff4ed;
}
.contact__error i {
  color: #e14e0e;
}

@keyframes fadeInSuccess {
  0% { opacity: 0; transform: translateY(14px);}
  100% { opacity: 0.93; transform: translateY(0);}
}

@media (max-width: 900px) {
  .contact__container {
    flex-direction: column;
    gap: 2em;
    align-items: stretch;
    padding: 0 0.5em;
  }
  .contact__form {
    padding: 1.5em 1em 1em 1em;
  }
  .contact__map {
    max-width: 100%;
  }
}
.cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 420px;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  opacity: 0;
  transform: translateY(48px) scale(0.96);
  transition: opacity 0.22s, transform 0.27s;
}
.cookie-popup--active {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
}
.cookie-popup__content {
  background: #fff;
  color: #373f51;
  border-radius: 19px;
  box-shadow: 0 6px 40px rgba(30, 144, 255, 0.16);
  padding: 1.3em 1.6em 1.3em 1.2em;
  display: flex;
  align-items: center;
  gap: 1.1em;
  font-size: 1.04em;
  max-width: 100%;
  animation: cookiePopIn 0.6s;
}
@keyframes cookiePopIn {
  0% { opacity: 0; transform: translateY(30px) scale(0.93);}
  80% { opacity: 1; transform: translateY(-6px) scale(1.03);}
  100% { opacity: 1; transform: translateY(0) scale(1);}
}
.cookie-popup__icon {
  width: 32px;
  height: 32px;
  color: #ffd166;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 12px #ffd16622);
  animation: cookieIconPop 1.1s;
}
@keyframes cookieIconPop {
  0% { transform: scale(0.2) rotate(-80deg);}
  60% { transform: scale(1.2) rotate(10deg);}
  100% { transform: scale(1) rotate(0);}
}
.cookie-popup__text {
  flex: 1;
  font-size: 1em;
  color: #373f51;
  line-height: 1.6;
}
.cookie-popup__text a {
  color: #1e90ff;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.14s;
}
.cookie-popup__text a:hover {
  color: #ffd166;
}
.cookie-popup__btn {
  margin-left: 0.8em;
  padding: 0.6em 1.5em;
  border-radius: 9px;
  font-size: 1.01em;
  font-weight: 700;
  background: #1e90ff;
  color: #fff;
  box-shadow: 0 2px 9px #1e90ff15;
  transition: background 0.17s, color 0.13s, transform 0.16s;
}
.cookie-popup__btn:hover,
.cookie-popup__btn:focus {
  background: #ffd166;
  color: #373f51;
  transform: scale(1.08);
}
@media (max-width: 600px) {
  .cookie-popup {
    max-width: 97vw;
    bottom: 13px;
  }
  .cookie-popup__content {
    padding: 1em 0.6em 1em 0.8em;
    font-size: 0.97em;
    gap: 0.7em;
  }
  .cookie-popup__icon {
    width: 24px;
    height: 24px;
  }
}
.pages {
  background: linear-gradient(113deg, #f5f7fa 80%, #e9ecef 100%);
  min-height: 100vh;
  padding: 3.2em 0 2.5em 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.pages .container {
  max-width: 740px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 28px rgba(30, 144, 255, 0.09);
  padding: 2.3em 2.3em 2.4em 2.3em;
  margin: 0 auto;
  color: #22223b;
  font-size: 1.1rem;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.7;
  position: relative;
  animation: fadeInPolicy 0.45s;
}
@keyframes fadeInPolicy {
  0% { opacity: 0; transform: translateY(28px);}
  100% { opacity: 1; transform: translateY(0);}
}

.pages h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.1rem;
  color: #373f51;
  margin-bottom: 0.8em;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.19;
}
.pages h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1e90ff;
  font-size: 1.26rem;
  font-weight: 700;
  margin-top: 2.1em;
  margin-bottom: 0.5em;
  letter-spacing: 0.5px;
}
.pages p {
  margin: 0.7em 0 1em 0;
  opacity: 0.98;
}
.pages ul {
  margin: 1em 0 1.1em 1.2em;
  padding: 0;
  list-style: disc inside;
}
.pages ul li {
  margin-bottom: 0.6em;
  padding-left: 0.3em;
  opacity: 0.97;
}
.pages a {
  color: #1e90ff;
  text-decoration: underline;
  transition: color 0.15s;
  word-break: break-all;
}
.pages a:hover {
  color: #ffd166;
}
.pages strong {
  color: #373f51;
  font-weight: 700;
}
.pages code {
  background: #f5f7fa;
  border-radius: 4px;
  padding: 0.2em 0.4em;
  color: #1e90ff;
  font-family: 'Fira Mono', 'Consolas', monospace;
  font-size: 0.97em;
}

@media (max-width: 700px) {
  .pages .container {
    padding: 1.3em 0.6em 1.5em 0.6em;
    font-size: 0.99rem;
    border-radius: 11px;
  }
  .pages h1 {
    font-size: 1.3rem;
  }
  .pages h2 {
    font-size: 1.05rem;
    margin-top: 1.2em;
  }
}
