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


/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Montserrat:wght@700&display=swap');

body {
  min-height: 100vh;
  background: #F8F9FB;
  color: #253858;
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A73E8;
  margin-top: 0;
  margin-bottom: 0.7em;
  letter-spacing: 0.01em;
}

a {
  color: #1A73E8;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}

a:hover, a:focus {
  color: #FF705B;
  text-decoration: underline wavy 1.5px;
}

::-webkit-scrollbar {
  width: 10px;
  background: #E0E5EB;
}

::-webkit-scrollbar-thumb {
  background: #1A73E8;
  border-radius: 10px;
}

* {
  box-sizing: border-box;
}

.header {
  background: #fff;
  box-shadow: 0 2px 18px -4px rgba(26, 115, 232, 0.04);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: box-shadow 0.18s;
}

.header__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.header__logo {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  gap: 10px;
  color: #1A73E8;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.header__logo-icon {
  display: flex;
  align-items: center;
  animation: sparkleRotate 2.5s linear infinite;
}
@keyframes sparkleRotate {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}

.header__logo-text {
  font-family: 'Montserrat', Arial, sans-serif;
}

.header__nav {
  display: block;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__item {
  position: relative;
}

.header__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px 9px 12px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
  color: #253858;
  background: transparent;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.header__link:hover,
.header__link:focus {
  background: #F2F6FC;
  color: #1A73E8;
  box-shadow: 0 1px 8px -2px rgba(26,115,232,0.07);
}

.header__icon {
  display: flex;
  align-items: center;
  transition: transform 0.18s;
}
.header__link:hover .header__icon,
.header__link:focus .header__icon {
  transform: translateY(-3px) scale(1.13) rotate(-4deg);
  filter: drop-shadow(0 2px 6px #1A73E820);
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 24px;
  padding: 8px 0;
}
.header__burger span {
  width: 27px;
  height: 3.3px;
  background: #253858;
  border-radius: 2px;
  transition: all 0.26s;
  display: block;
}

@media (max-width: 850px) {
  .header__container {
    padding: 0 12px;
  }
  .header__menu {
    gap: 14px;
  }
}
@media (max-width: 680px) {
  .header__nav {
    position: absolute;
    top: 74px;
    right: 0;
    width: 240px;
    background: #fff;
    box-shadow: 0 6px 30px -8px #1A73E820;
    transform: translateX(120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.28s cubic-bezier(.7,.02,.38,.97);
    z-index: 99;
  }
  .header__nav.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
  }
  .header__menu {
    flex-direction: column;
    gap: 0;
  }
  .header__item {
    width: 100%;
    border-bottom: 1px solid #F2F6FC;
  }
  .header__link {
    width: 100%;
    justify-content: flex-start;
    padding: 16px 32px;
    font-size: 1.07rem;
  }
  .header__burger {
    display: flex;
  }
}

/* Анімація для бургеру */
.header__burger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__burger.open span:nth-child(2) {
  opacity: 0;
}
.header__burger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.footer {
  background: #fff;
  border-top: 1.5px solid #E0E5EB;
  padding: 54px 0 30px 0;
  font-size: 1rem;
  box-shadow: 0 -6px 32px -10px #1A73E810;
}

.footer__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer__logo-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A73E8;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 0.18s;
}
.footer__logo-icon {
  display: flex;
  animation: sparkleRotate 4s linear infinite;
}
.footer__logo-text {
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer__made {
  font-size: 0.98rem;
  color: #B0B7C3;
  opacity: 0.82;
}

.footer__title {
  font-size: 1.09rem;
  font-weight: 600;
  color: #253858;
  margin-bottom: 13px;
  letter-spacing: 0.01em;
}

.footer__nav,
.footer__info,
.footer__contacts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 7px;
}

.footer__nav a, .footer__info a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #253858;
  padding: 5px 0 5px 0;
  border-radius: 6px;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.16s, background 0.17s;
  position: relative;
}
.footer__nav a:hover, .footer__info a:hover {
  color: #FF705B;
  background: #F8F9FB;
}

.footer__icon {
  display: flex;
  align-items: center;
  transition: transform 0.13s;
}
.footer__nav a:hover .footer__icon {
  transform: translateY(-2px) scale(1.11);
  filter: drop-shadow(0 1.5px 5px #FF705B18);
}

.footer__contacts li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 1rem;
  color: #253858;
  margin-bottom: 7px;
}

.footer__contact-icon {
  display: flex;
  align-items: center;
  margin-top: 2px;
  min-width: 19px;
}

@media (max-width: 900px) {
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
@media (max-width: 600px) {
  .footer__container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 12px;
  }
  .footer {
    padding: 32px 0 24px 0;
  }
  .footer__logo-col {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    justify-content: flex-start;
  }
}
.hero {
  background: linear-gradient(109deg, #F8F9FB 60%, #e0f1ff 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 36px 0 0 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 36px;
}
.hero__content {
  flex: 1 1 540px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
}
.hero__title {
  font-size: 2.7rem;
  font-weight: 700;
  color: #253858;
  line-height: 1.17;
  margin-bottom: 0.16em;
  letter-spacing: 0.01em;
  word-break: break-word;
}
.hero__highlight {
  color: #FF705B;
  font-weight: 700;
  background: linear-gradient(90deg,#FF705B 55%,#1A73E8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero__brand {
  color: #1A73E8;
  letter-spacing: 0.04em;
}

.hero__desc {
  color: #50648a;
  font-size: 1.22rem;
  margin-bottom: 0.1em;
  font-weight: 500;
  max-width: 540px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  position: relative;
}

.hero__chip {
  background: #fff;
  border-radius: 32px;
  padding: 8px 22px 8px 16px;
  color: #1A73E8;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 12px -4px #1A73E830;
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.16s, transform 0.18s;
  will-change: transform;
  animation: chipWave 3s ease-in-out infinite;
  animation-delay: calc(var(--i,0) * 0.2s);
}
.hero__chip:hover {
  background: #1A73E8;
  color: #fff;
  transform: translateY(-4px) scale(1.09) rotate(-2deg);
  box-shadow: 0 4px 18px -3px #1A73E880;
}
.hero__chip-icon {
  flex-shrink: 0;
  stroke: currentColor;
  transition: stroke 0.2s;
}

/* Кожна чіпа трохи по-різному анімована */
.hero__chip:nth-child(1) { --i: 0; }
.hero__chip:nth-child(2) { --i: 1; animation-duration: 3.4s; }
.hero__chip:nth-child(3) { --i: 2; animation-duration: 3.2s; }
.hero__chip:nth-child(4) { --i: 3; animation-duration: 3.7s; }
.hero__chip:nth-child(5) { --i: 4; animation-duration: 3.6s; }

@keyframes chipWave {
  0%, 100% { transform: translateY(0) scale(1);}
  20% { transform: translateY(-7px) scale(1.07);}
  60% { transform: translateY(6px) scale(1.05);}
  80% { transform: translateY(-2px) scale(1.02);}
}

.hero__btn {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(93deg, #1A73E8 0%, #FF705B 120%);
  color: #fff;
  font-size: 1.12rem;
  font-weight: 600;
  padding: 15px 38px;
  border-radius: 32px;
  box-shadow: 0 6px 20px -8px #1A73E8aa;
  border: none;
  cursor: pointer;
  transition: transform 0.13s, box-shadow 0.19s, background 0.23s;
  will-change: transform;
  position: relative;
  overflow: hidden;
}
.hero__btn:hover, .hero__btn:focus {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 34px -10px #FF705B90;
  background: linear-gradient(95deg, #FF705B 15%, #1A73E8 90%);
}
.hero__btn-icon {
  flex-shrink: 0;
  stroke: #fff;
}

.hero__img-wrap {
  flex: 1 1 370px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-width: 0;
  z-index: 2;
  position: relative;
  height: 350px;
  max-width: 420px;
}
.hero__img {
  display: block;
  width: 100%;
  height: 350px;
  max-width: 390px;
  object-fit: contain;
  border-radius: 34px;
  box-shadow: 0 6px 38px -12px #1A73E870;
  background: #e0f1ff;
  animation: heroImageBounce 3s infinite;
}
@keyframes heroImageBounce {
  0%, 100% { transform: translateY(0);}
  30% { transform: translateY(-7px);}
  60% { transform: translateY(5px);}
}

@media (max-width: 900px) {
  .hero__container {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 44px;
  }
  .hero__img-wrap {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    justify-content: center;
    height: 210px;
  }
  .hero__img {
    height: 210px;
    max-width: 210px;
    border-radius: 24px;
  }
  .hero__content {
    gap: 19px;
  }
  .hero__title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 18px 0 0 0;
  }
  .hero__container {
    padding: 0 10px;
  }
  .hero__title {
    font-size: 1.3rem;
  }
  .hero__img-wrap {
    max-width: 100vw;
    height: 130px;
  }
  .hero__img {
    height: 120px;
    max-width: 120px;
    border-radius: 16px;
  }
}

.about {
  background: #f8f9fb;
  padding: 78px 0 44px 0;
  position: relative;
}
.about__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 46px;
  flex-wrap: wrap;
}
.about__content {
  flex: 1 1 420px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 27px;
}
.about__title {
  font-size: 2rem;
  color: #1A73E8;
  margin-bottom: 0.25em;
}
.about__desc {
  font-size: 1.15rem;
  color: #253858;
  margin-bottom: 0.5em;
}
.about__desc-accent {
  color: #FF705B;
  font-weight: 600;
  display: inline-block;
  margin-top: 0.4em;
}
.about__features {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.about__feature {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 28px -12px #1A73E820;
  padding: 20px 18px;
  flex: 1 1 180px;
  min-width: 170px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  transition: transform 0.17s, box-shadow 0.18s, background 0.16s;
  cursor: pointer;
  position: relative;
  will-change: transform;
  animation: featureAppear 0.8s cubic-bezier(.22,1.02,.26,1.14) both;
}
.about__feature:hover {
  background: #e0f1ff;
  transform: translateY(-6px) scale(1.06) rotate(-1.5deg);
  box-shadow: 0 10px 34px -12px #1A73E850;
}
.about__feature-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.about__feature-title {
  font-weight: 700;
  color: #253858;
  font-size: 1.07rem;
  margin-bottom: 4px;
}
.about__feature-desc {
  font-size: 0.99rem;
  color: #50648a;
}

@keyframes featureAppear {
  0% { opacity: 0; transform: translateY(28px) scale(0.96);}
  100% { opacity: 1; transform: translateY(0) scale(1);}
}

.about__btn {
  margin-top: 18px;
  display: inline-block;
  background: linear-gradient(95deg,#FF705B 0%,#1A73E8 85%);
  color: #fff;
  font-weight: 700;
  border-radius: 32px;
  font-size: 1.13rem;
  padding: 13px 38px;
  border: none;
  box-shadow: 0 6px 20px -8px #1A73E850;
  cursor: pointer;
  transition: background 0.19s, box-shadow 0.19s, transform 0.13s;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.about__btn:hover, .about__btn:focus {
  background: linear-gradient(100deg,#1A73E8 0%, #FF705B 90%);
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 12px 34px -10px #FF705B90;
}

.about__team {
  flex: 1 1 270px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.about__team-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 8px 34px -12px #1A73E830;
  background: #e0f1ff;
  margin-bottom: 6px;
}
.about__team-caption {
  font-size: 1rem;
  color: #1A73E8;
  font-weight: 500;
  text-align: center;
  max-width: 220px;
  letter-spacing: 0.01em;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .about__container {
    flex-direction: column;
    gap: 36px;
    padding: 0 10px;
    align-items: flex-start;
  }
  .about__team {
    align-items: flex-start;
    max-width: 90vw;
  }
}

@media (max-width: 600px) {
  .about {
    padding: 46px 0 24px 0;
  }
  .about__team-img {
    width: 120px;
    height: 120px;
    border-radius: 16px;
  }
  .about__team-caption {
    font-size: 0.97rem;
    max-width: 150px;
  }
  .about__title {
    font-size: 1.22rem;
  }
  .about__features {
    flex-direction: column;
    gap: 12px;
  }
}
.market {
  background: linear-gradient(101deg, #f8f9fb 74%, #e0f1ff 100%);
  padding: 72px 0 44px 0;
  position: relative;
}
.market__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.market__info {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 280px;
}
.market__title {
  font-size: 2rem;
  color: #253858;
  margin-bottom: 8px;
}
.market__desc {
  font-size: 1.13rem;
  color: #50648a;
  font-weight: 500;
}
.market__facts {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.market__fact {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 15px -6px #1A73E820;
  padding: 13px 18px;
  font-size: 1.04rem;
  font-weight: 500;
  color: #253858;
  transition: box-shadow 0.17s, transform 0.16s, background 0.18s;
  cursor: pointer;
  will-change: transform;
  animation: marketFactAppear 1s cubic-bezier(.18,1.09,.3,1.11) both;
}
.market__fact:hover {
  box-shadow: 0 8px 32px -10px #1A73E880;
  background: #e0f1ff;
  transform: scale(1.03) translateY(-3px) rotate(-1deg);
}
.market__fact-icon {
  flex-shrink: 0;
  display: flex;
}

@keyframes marketFactAppear {
  0% { opacity: 0; transform: translateY(28px) scale(0.96);}
  100% { opacity: 1; transform: translateY(0) scale(1);}
}

.market__tip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff3eb;
  color: #FF705B;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 10px;
  font-size: 1.03rem;
  box-shadow: 0 2px 8px -6px #FF705B33;
}
.market__tip a {
  color: #1A73E8;
  font-weight: 500;
  text-decoration: underline dotted 1.2px;
  transition: color 0.16s;
}
.market__tip a:hover {
  color: #FF705B;
}
.market__tip-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.market__btn {
  margin-top: 14px;
  background: linear-gradient(93deg, #1A73E8 0%, #FF705B 120%);
  color: #fff;
  font-size: 1.07rem;
  font-weight: 700;
  border-radius: 32px;
  padding: 13px 36px;
  border: none;
  box-shadow: 0 6px 20px -8px #1A73E8aa;
  cursor: pointer;
  transition: transform 0.13s, box-shadow 0.19s, background 0.23s;
  will-change: transform;
  display: inline-block;
  text-decoration: none;
}
.market__btn:hover, .market__btn:focus {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 34px -10px #FF705B90;
  background: linear-gradient(95deg, #FF705B 15%, #1A73E8 90%);
}

.market__imgbox {
  flex: 1 1 280px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  max-width: 390px;
}
.market__img {
  width: 100%;
  height: 220px;
  max-width: 330px;
  object-fit: cover;
  border-radius: 22px;
  background: #e0f1ff;
  box-shadow: 0 8px 34px -12px #1A73E830;
  margin-bottom: 4px;
  animation: marketImgBounce 2.6s infinite;
}
@keyframes marketImgBounce {
  0%, 100% { transform: translateY(0);}
  36% { transform: translateY(-6px);}
  60% { transform: translateY(4px);}
}
.market__img-caption {
  font-size: 0.99rem;
  color: #1A73E8;
  font-weight: 500;
  text-align: center;
  max-width: 260px;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .market__container {
    flex-direction: column-reverse;
    gap: 32px;
    padding: 0 10px;
    align-items: flex-start;
  }
  .market__imgbox {
    max-width: 99vw;
  }
}
@media (max-width: 600px) {
  .market {
    padding: 38px 0 18px 0;
  }
  .market__img {
    height: 115px;
    max-width: 140px;
    border-radius: 12px;
  }
  .market__img-caption {
    font-size: 0.94rem;
    max-width: 110px;
  }
  .market__title {
    font-size: 1.1rem;
  }
}
.cta {
  background: linear-gradient(102deg,#1A73E8 48%,#FF705B 98%);
  padding: 65px 0 65px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.cta__container {
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.cta__icon {
  margin-bottom: 12px;
  animation: rocketFloat 3.2s infinite cubic-bezier(.39,.14,.43,.97);
}
@keyframes rocketFloat {
  0%,100% { transform: translateY(0) scale(1);}
  40% { transform: translateY(-12px) scale(1.09);}
  70% { transform: translateY(7px) scale(1.04);}
}
.cta__title {
  font-size: 2.03rem;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0.01em;
  margin-bottom: 0.13em;
}
.cta__accent {
  color: #fff3eb;
  background: linear-gradient(90deg, #fff3eb 60%, #e0f1ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.cta__desc {
  font-size: 1.14rem;
  opacity: 0.93;
  margin-bottom: 0.2em;
  font-weight: 500;
}
.cta__btn {
  margin-top: 6px;
  background: linear-gradient(93deg, #FF705B 0%, #1A73E8 120%);
  color: #fff;
  font-size: 1.11rem;
  font-weight: 700;
  border-radius: 32px;
  padding: 14px 40px;
  border: none;
  box-shadow: 0 8px 28px -8px #FF705B99;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.19s, transform 0.13s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  will-change: transform;
  position: relative;
}
.cta__btn:hover, .cta__btn:focus {
  background: linear-gradient(95deg, #1A73E8 20%, #FF705B 90%);
  box-shadow: 0 12px 40px -12px #fff4;
  transform: translateY(-3px) scale(1.07);
}
.cta__btn-icon {
  flex-shrink: 0;
  stroke: #fff;
}

/* Плаваючі декори */
.cta__decor {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  opacity: 0.13;
  pointer-events: none;
  filter: blur(6px);
  animation: ctaDecorFloat 6s infinite alternate;
}
.cta__decor--1 {
  width: 210px;
  height: 210px;
  background: #fff;
  top: -60px;
  left: -70px;
  animation-delay: 0s;
}
.cta__decor--2 {
  width: 140px;
  height: 140px;
  background: #fff3eb;
  bottom: -40px;
  right: -40px;
  animation-delay: 1.5s;
}
@keyframes ctaDecorFloat {
  0% { transform: scale(1) translateY(0);}
  100% { transform: scale(1.12) translateY(22px);}
}

@media (max-width:600px) {
  .cta { padding: 32px 0; min-height: 200px;}
  .cta__title { font-size: 1.09rem;}
  .cta__btn { font-size: 1.01rem; padding: 11px 22px;}
  .cta__container { gap: 14px;}
  .cta__icon { margin-bottom: 8px;}
}

.reviews {
  background: #fff;
  padding: 68px 0 55px 0;
  position: relative;
}
.reviews__container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}
.reviews__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1A73E8;
  margin-bottom: 0.24em;
  text-align: center;
}
.reviews__desc {
  color: #50648a;
  font-size: 1.13rem;
  text-align: center;
  margin-bottom: 35px;
}
.reviews__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.reviews__item {
  background: #f8f9fb;
  border-radius: 24px;
  box-shadow: 0 4px 24px -10px #1A73E825;
  padding: 25px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.17s, transform 0.16s, background 0.18s;
  position: relative;
  min-width: 0;
  animation: reviewAppear 1s cubic-bezier(.18,1.09,.3,1.11) both;
  cursor: pointer;
  will-change: transform;
}
.reviews__item:hover {
  background: #e0f1ff;
  box-shadow: 0 10px 32px -10px #1A73E890;
  transform: scale(1.04) translateY(-4px) rotate(-1.5deg);
}
.reviews__avatar {
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
}
.reviews__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #e0f1ff;
  object-fit: cover;
  box-shadow: 0 2px 10px -2px #1A73E815;
}
.reviews__text {
  font-size: 1.08rem;
  color: #253858;
  text-align: center;
  margin-bottom: 19px;
  position: relative;
  min-height: 64px;
}
.reviews__quote {
  display: inline-flex;
  align-items: center;
  margin-right: 7px;
  vertical-align: text-top;
}
.reviews__meta {
  font-size: 1rem;
  color: #50648a;
  opacity: 0.91;
  display: flex;
  gap: 6px;
  align-items: center;
}
.reviews__name {
  font-weight: 600;
}
.reviews__city {
  font-size: 0.99rem;
  color: #FF705B;
}

@keyframes reviewAppear {
  0% { opacity: 0; transform: translateY(30px) scale(0.96);}
  100% { opacity: 1; transform: translateY(0) scale(1);}
}

@media (max-width: 900px) {
  .reviews__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .reviews {
    padding: 36px 0 28px 0;
  }
  .reviews__title {
    font-size: 1.09rem;
  }
  .reviews__desc {
    font-size: 0.99rem;
    margin-bottom: 16px;
  }
  .reviews__list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .reviews__item {
    padding: 18px 11px 14px 11px;
  }
}


.contact {
  background: linear-gradient(108deg, #e0f1ff 62%, #f8f9fb 100%);
  padding: 76px 0 55px 0;
  position: relative;
}
.contact__container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 50px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact__info {
  flex: 1 1 390px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact__title {
  font-size: 2rem;
  color: #1A73E8;
  margin-bottom: 0.17em;
}
.contact__desc {
  color: #50648a;
  font-size: 1.12rem;
  font-weight: 500;
  margin-bottom: 0.5em;
}
.contact__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.contact__benefits li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
  color: #253858;
}
.contact__benefit-icon {
  flex-shrink: 0;
  margin-right: 3px;
  display: flex;
}

.contact__form {
  flex: 1 1 380px;
  min-width: 260px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px -10px #1A73E825;
  padding: 36px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  animation: formAppear 1s cubic-bezier(.18,1.09,.3,1.11) both;
  position: relative;
}
@keyframes formAppear {
  0% { opacity: 0; transform: translateY(34px) scale(0.98);}
  100% { opacity: 1; transform: translateY(0) scale(1);}
}
.contact__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__field {
  position: relative;
  display: flex;
  flex-direction: column;
}
.contact__field input,
.contact__field textarea {
  background: #f8f9fb;
  border: 1.6px solid #E0E5EB;
  border-radius: 11px;
  font-size: 1.09rem;
  padding: 12px 14px 12px 14px;
  color: #253858;
  font-family: inherit;
  resize: none;
  outline: none;
  transition: border 0.17s, box-shadow 0.16s;
  margin-bottom: 0;
}
.contact__field input:focus,
.contact__field textarea:focus {
  border: 1.6px solid #1A73E8;
  box-shadow: 0 2px 12px -6px #1A73E820;
}
.contact__field label {
  font-size: 0.97rem;
  color: #50648a;
  margin-bottom: 4px;
  margin-top: 2px;
  transition: color 0.16s;
  opacity: 0.87;
}
.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: #B0B7C3;
  opacity: 0.7;
}
.contact__field--captcha label {
  font-weight: 700;
  color: #1A73E8;
  margin-bottom: 5px;
  margin-top: 0;
}
.contact__btn {
  margin-top: 8px;
  background: linear-gradient(93deg, #1A73E8 0%, #FF705B 120%);
  color: #fff;
  font-size: 1.09rem;
  font-weight: 700;
  border-radius: 32px;
  padding: 14px 38px;
  border: none;
  box-shadow: 0 6px 22px -10px #1A73E890;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.19s, transform 0.13s;
  will-change: transform;
}
.contact__btn:hover, .contact__btn:focus {
  background: linear-gradient(95deg, #FF705B 15%, #1A73E8 90%);
  box-shadow: 0 10px 32px -10px #FF705B80;
  transform: translateY(-2px) scale(1.05);
}
.contact__btn {
  background: linear-gradient(95deg,#FF705B 0%,#1A73E8 85%);
  color: #fff;
  font-weight: 700;
  border-radius: 32px;
  font-size: 1.13rem;
  padding: 13px 38px;
  border: none;
  box-shadow: 0 6px 20px -8px #1A73E850;
  cursor: pointer;
  transition: background 0.19s, box-shadow 0.19s, transform 0.13s;
  text-decoration: none;
  letter-spacing: 0.01em;
  margin-top: 6px;
  will-change: transform;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact__btn:hover, .contact__btn:focus {
  background: linear-gradient(100deg,#1A73E8 0%, #FF705B 90%);
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 12px 34px -10px #FF705B90;
}
.contact__success {
  width: 100%;
  margin-top: 13px;
  color: #1A73E8;
  background: #e0f1ff;
  border-radius: 12px;
  padding: 11px 0;
  font-size: 1.09rem;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 2px 12px -4px #1A73E820;
  animation: contactSuccessFade 1.3s;
}
@keyframes contactSuccessFade {
  0% { opacity: 0; transform: translateY(24px);}
  100% { opacity: 1; transform: translateY(0);}
}

/* Адаптивність */
@media (max-width: 600px) {
  .contact {
    padding: 36px 0 22px 0;
  }
  .contact__container {
    padding: 0 6px;
    border-radius: 14px;
  }
  .contact__fields {
    flex-direction: column;
    gap: 7px;
  }
  .contact__title {
    font-size: 1.1rem;
  }
  .contact__btn {
    font-size: 1.01rem;
    padding: 10px 20px;
  }
  #captchaText {
    font-size: 0.99rem;
    padding: 5px 7px;
    min-width: 50px;
  }
}
.cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 32px -10px #1A73E810;
  padding: 17px 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s cubic-bezier(.45,.85,.46,.97);
  font-size: 1.05rem;
  min-width: 240px;
  max-width: 98vw;
  will-change: opacity;
}
.cookie-popup.show {
  opacity: 1;
  pointer-events: all;
}
.cookie-popup__inner {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-popup__icon {
  flex-shrink: 0;
  margin-right: 2px;
}
.cookie-popup__text a {
  color: #1A73E8;
  text-decoration: underline dotted 1.2px;
  font-weight: 500;
  transition: color 0.14s;
}
.cookie-popup__text a:hover {
  color: #FF705B;
}
.cookie-popup__btn {
  background: linear-gradient(95deg,#FF705B 0%,#1A73E8 85%);
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  font-size: 1.03rem;
  padding: 7px 18px;
  border: none;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.19s, transform 0.14s;
}
.cookie-popup__btn:hover {
  background: linear-gradient(100deg,#1A73E8 0%, #FF705B 90%);
  transform: scale(1.07) translateY(-2px);
}
@media (max-width:600px) {
  .cookie-popup {
    padding: 11px 9px;
    border-radius: 8px;
    font-size: 0.93rem;
    gap: 7px;
    bottom: 8px;
  }
  .cookie-popup__inner {gap: 7px;}
}

.pages {
  background: #f8f9fb;
  padding: 68px 0 56px 0;
  min-height: 80vh;
}
.pages .container {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 22px 34px 22px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 38px -14px #1A73E820;
  font-size: 1.08rem;
  color: #253858;
  line-height: 1.7;
}
.pages h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A73E8;
  font-size: 2.2rem;
  margin-bottom: 0.7em;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.pages h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FF705B;
  font-size: 1.33rem;
  margin-top: 2.1em;
  margin-bottom: 0.55em;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.pages p {
  margin-bottom: 1.12em;
  color: #253858;
  font-size: 1.06rem;
}
.pages ul {
  margin: 0 0 1.2em 1.3em;
  padding: 0;
  list-style: none;
}
.pages ul li {
  position: relative;
  padding-left: 31px;
  margin-bottom: 0.72em;
  color: #50648a;
  font-size: 1.05rem;
}
.pages ul li strong {
  color: #1A73E8;
  font-weight: 600;
}
.pages ul li:before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 19px; height: 19px;
  background: linear-gradient(95deg,#FF705B 0%,#1A73E8 95%);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 1.5px 7px #FF705B13;
  mask-image: url('data:image/svg+xml;utf8,<svg width="19" height="19" fill="none" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24"><polyline points="20 6 9 17 4 12"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg width="19" height="19" fill="none" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24"><polyline points="20 6 9 17/></svg>');
}