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

:root {
  --accent: #4FBAA7;
  --dark: #23272F;
  --light: #F4F8FA;
  --accent2: #7A5CF4;
  --white: #fff;

  --font-main: 'Inter', Arial, sans-serif;
  --font-logo: 'Unbounded', 'Inter', Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background: var(--light);
  color: var(--dark);
  font-family: var(--font-main);
  margin: 0;
  min-height: 100vh;
  font-size: 18px;
  line-height: 1.65;
  transition: background 0.3s, color 0.3s;
  letter-spacing: 0.01em;
}

a {
  color: var(--accent2);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover,
a:focus {
  color: var(--accent);
  text-decoration: underline wavy var(--accent2) 1.5px;
}

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

ul, ol {
  padding-left: 1.3em;
}

button, .btn {
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 1em;
  font-weight: 600;
  padding: 0.7em 2em;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(79, 186, 167, 0.08);
}

button:hover, .btn:hover {
  background: var(--accent2);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 16px rgba(122, 92, 244, 0.13);
}


/* HEADER styles */
.header {
  background: var(--white);
  box-shadow: 0 2px 18px 0 rgba(79, 186, 167, 0.06);
  position: sticky;
  top: 0;
  z-index: 10;
  transition: box-shadow 0.2s;
}

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

.header__logo {
  display: flex;
  align-items: center;
  font-family: var(--font-logo);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--accent2);
  gap: 0.55em;
  letter-spacing: 0.03em;
  text-decoration: none;
  position: relative;
}

.header__logo-icon {
  font-size: 1.25em;
  color: var(--accent);
  filter: drop-shadow(0 2px 8px #4fbaa740);
}

.header__country {
  font-size: 1rem;
  background: var(--accent2);
  color: var(--white);
  border-radius: 0.7em;
  padding: 0.1em 0.65em;
  margin-left: 0.8em;
  letter-spacing: 0.06em;
  font-family: var(--font-main);
  font-weight: 600;
  opacity: 0.88;
}

.header__nav {
  display: flex;
  gap: 1.5em;
  align-items: center;
}

.header__link {
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.18s, background 0.18s, box-shadow 0.2s;
  border-radius: 0.5em;
  padding: 0.44em 1.1em;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3em;
}

.header__link:hover,
.header__link:focus {
  color: var(--accent2);
  background: var(--light);
  box-shadow: 0 4px 14px rgba(122, 92, 244, 0.07);
  text-decoration: none;
}

.header__link--cta {
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  transition: background 0.17s, transform 0.13s;
  box-shadow: 0 2px 8px rgba(79,186,167,0.10);
}
.header__link--cta:hover {
  background: var(--accent2);
  color: var(--white);
  transform: scale(1.04) translateY(-1px);
}

.header__burger {
  display: none;
  background: none;
  border: none;
  color: var(--accent2);
  font-size: 2rem;
  cursor: pointer;
  margin-left: 1em;
  padding: 0.2em 0.3em;
  transition: color 0.18s;
}

.header__burger:active,
.header__burger:focus {
  color: var(--accent);
}

@media (max-width: 850px) {
  .header__nav {
    position: absolute;
    right: 0;
    top: 100%;
    flex-direction: column;
    background: var(--white);
    gap: 1em;
    min-width: 180px;
    box-shadow: 0 2px 16px rgba(79, 186, 167, 0.10);
    border-radius: 1em;
    padding: 1.2em 0.8em;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px) scale(0.98);
    transition: opacity 0.21s, transform 0.22s;
    z-index: 21;
  }
  .header__nav.header__nav--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .header__burger {
    display: block;
  }
}

@media (max-width: 500px) {
  .header__container {
    flex-direction: row;
    padding: 0.5em 0.5em;
  }
  .header__logo {
    font-size: 1.23rem;
  }
  .header__country {
    font-size: 0.78rem;
    padding: 0.1em 0.5em;
    margin-left: 0.4em;
  }
}
/* FOOTER styles */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 2.8em 1em 1.2em 1em;
  font-size: 1.08em;
  position: relative;
  box-shadow: 0 -3px 32px 0 rgba(122,92,244,0.10);
}

.footer__container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.2em 2em;
  align-items: flex-start;
}

.footer__logo {
  display: flex;
  align-items: center;
  font-family: var(--font-logo);
  font-size: 1.53rem;
  font-weight: 700;
  color: var(--accent2);
  letter-spacing: 0.02em;
  text-decoration: none;
  gap: 0.55em;
  margin-bottom: 0.7em;
}

.footer__logo-icon {
  color: var(--accent);
  font-size: 1.25em;
  margin-right: 0.18em;
}

.footer__country {
  font-size: 0.99em;
  background: var(--accent2);
  color: var(--white);
  border-radius: 0.8em;
  padding: 0.08em 0.7em;
  margin-left: 0.65em;
  font-family: var(--font-main);
  font-weight: 600;
  opacity: 0.83;
}

.footer__desc {
  font-size: 1em;
  color: var(--light);
  opacity: 0.93;
  margin-bottom: 0.45em;
}

.footer__title {
  font-family: var(--font-logo);
  color: var(--accent2);
  font-size: 1.07em;
  margin-bottom: 0.45em;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.footer__nav,
.footer__info,
.footer__contacts {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1em;
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}

.footer__nav a,
.footer__info a,
.footer__contacts a {
  color: var(--light);
  text-decoration: none;
  transition: color 0.16s;
  font-weight: 500;
}

.footer__nav a:hover,
.footer__info a:hover,
.footer__contacts a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer__contacts i {
  color: var(--accent2);
  margin-right: 0.6em;
  font-size: 1em;
}

.footer__contacts li {
  display: flex;
  align-items: center;
}

.footer__copy {
  margin-top: 2em;
  padding-top: 1em;
  border-top: 1.5px solid rgba(122,92,244,0.13);
  text-align: center;
  font-size: 0.97em;
  color: var(--light);
  opacity: 0.85;
  letter-spacing: 0.015em;
}

/* Адаптивність */
@media (max-width: 950px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 2em 1.1em;
  }
}
@media (max-width: 650px) {
  .footer__container {
    grid-template-columns: 1fr;
    gap: 1.5em 0;
  }
  .footer {
    padding: 2em 0.5em 1em 0.5em;
  }
  .footer__logo {
    font-size: 1.09rem;
  }
}
/* HERO styles */
.hero {
  padding: 4.5em 1em 3em 1em;
  background: linear-gradient(95deg, var(--light) 60%, #e6f8f3 100%);
  position: relative;
  overflow: hidden;
}
.hero__container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.3em;
  flex-wrap: wrap;
}
.hero__text {
  flex: 1 1 340px;
  z-index: 2;
  min-width: 300px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border-radius: 1.3em;
  padding: 0.19em 1.1em 0.19em 0.38em;
  box-shadow: 0 1px 9px 0 rgba(122,92,244,0.10);
  font-size: 1.05em;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--accent2);
  margin-bottom: 1.1em;
  position: relative;
  gap: 0.7em;
  min-width: 98px;
  animation: heroBadgeFloat 3.7s ease-in-out infinite;
}
@keyframes heroBadgeFloat {
  0%, 100% { transform: translateY(0);}
  45% { transform: translateY(-6px);}
  70% { transform: translateY(3px);}
}
.hero__badge-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  background: #eaeaea;
  box-shadow: 0 0 0 2px var(--accent2);
}

.hero__title {
  font-family: var(--font-logo);
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--accent2);
  margin: 0 0 0.47em 0;
  line-height: 1.06;
  min-height: 68px;
  letter-spacing: 0.025em;
  position: relative;
}

.hero__typed-cursor {
  display: inline-block;
  width: 1.05em;
  color: var(--accent);
  font-weight: 400;
  animation: blink 1.1s infinite;
  font-family: monospace;
}
@keyframes blink {
  0%,100% { opacity: 1;}
  40% { opacity: 0;}
}

.hero__desc {
  font-size: 1.15rem;
  color: #4b4d59;
  max-width: 35em;
  margin-bottom: 1.7em;
  opacity: 0.85;
}
.hero__btn {
  font-size: 1.09em;
  padding: 0.8em 2.3em;
  margin-top: 0.6em;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(79,186,167,0.10);
  font-family: var(--font-main);
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}

.hero__visual {
  flex: 1 1 310px;
  min-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
}

.hero__svg {
  width: 240px;
  height: auto;
  max-width: 96vw;
  filter: drop-shadow(0 6px 26px #7A5CF430);
}
.hero__svg-wave {
  transform-origin: center;
  animation: heroWaveMove 4.3s ease-in-out infinite;
}
@keyframes heroWaveMove {
  0%,100% { transform: scaleX(1) scaleY(1);}
  33% { transform: scaleX(1.05) scaleY(1.12);}
  66% { transform: scaleX(0.96) scaleY(0.94);}
}
.hero__flag {
  /* animate with JS */
  transform-box: fill-box;
}

@media (max-width: 900px) {
  .hero__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 3em;
  }
  .hero__visual {
    margin: 0 auto;
  }
}
@media (max-width: 550px) {
  .hero__container {
    padding: 0;
    gap: 1.7em;
  }
  .hero {
    padding: 2.6em 0.3em 1.2em 0.3em;
  }
}
/* ABOUT styles */
.about {
  background: #fff;
  padding: 3.7em 1em 2.7em 1em;
  position: relative;
}
.about__container {
  max-width: 1100px;
  margin: 0 auto;
}
.about__header {
  text-align: center;
  margin-bottom: 2.5em;
  position: relative;
}
.about__suptitle {
  display: inline-flex;
  align-items: center;
  background: var(--accent2);
  color: #fff;
  font-weight: 600;
  border-radius: 2em;
  font-size: 1.02em;
  padding: 0.15em 1em 0.15em 0.55em;
  gap: 0.6em;
  box-shadow: 0 2px 14px #7a5cf430;
  margin-bottom: 0.65em;
  letter-spacing: 0.03em;
  position: relative;
  animation: fadeInUp 1.2s 0.1s both;
}
.about__title {
  font-family: var(--font-logo);
  color: var(--accent2);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 700;
  margin: 0.3em 0 0.38em 0;
  letter-spacing: 0.012em;
  animation: fadeInUp 1.2s 0.3s both;
}
.about__desc {
  color: #495057;
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.08em;
  opacity: 0.88;
  animation: fadeInUp 1.2s 0.5s both;
}

.about__features {
  display: flex;
  justify-content: center;
  gap: 2.7em;
  margin: 2.7em 0 2.4em 0;
  flex-wrap: wrap;
}
.about__feature {
  background: var(--light);
  border-radius: 1.2em;
  box-shadow: 0 2px 16px 0 rgba(79,186,167,0.08);
  padding: 2.2em 1.2em 1.5em 1.2em;
  min-width: 230px;
  max-width: 300px;
  text-align: center;
  position: relative;
  animation: fadeInUp 1s both;
  transition: transform 0.22s, box-shadow 0.2s;
  cursor: pointer;
}
.about__feature--one { animation-delay: 0.12s;}
.about__feature--two { animation-delay: 0.27s;}
.about__feature--three { animation-delay: 0.42s;}
.about__feature:hover, .about__feature:focus {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 6px 24px #7a5cf42a;
}
.about__icon {
  font-size: 2.2em;
  color: var(--accent);
  margin-bottom: 0.39em;
  transition: color 0.18s, transform 0.18s;
}
.about__feature:hover .about__icon {
  color: var(--accent2);
  transform: scale(1.18) rotate(-6deg);
}
.about__feature-title {
  font-size: 1.19em;
  font-weight: 700;
  color: var(--accent2);
  margin-bottom: 0.33em;
  letter-spacing: 0.02em;
}
.about__feature p {
  color: #4b4d59;
  opacity: 0.91;
  font-size: 1em;
  margin: 0 auto;
}

.about__stats {
  display: flex;
  justify-content: center;
  gap: 3.5em;
  margin: 2.3em 0 0 0;
  flex-wrap: wrap;
}
.about__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 110px;
  margin-bottom: 0.9em;
}
.about__stat-number {
  font-family: var(--font-logo);
  color: var(--accent2);
  font-size: 2.1em;
  font-weight: 700;
  margin-bottom: 0.13em;
  letter-spacing: 0.015em;
  transition: color 0.24s;
}
.about__stat-label {
  color: var(--accent);
  font-size: 1em;
  opacity: 0.88;
  font-weight: 600;
  letter-spacing: 0.01em;
}

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

/* Адаптив */
@media (max-width: 950px) {
  .about__features, .about__stats {
    gap: 1.3em;
  }
  .about__feature, .about__stat {
    min-width: 180px;
    max-width: 96vw;
  }
}
@media (max-width: 650px) {
  .about__features, .about__stats {
    flex-direction: column;
    align-items: center;
    gap: 1.1em;
  }
  .about {
    padding: 2.1em 0.1em 1.7em 0.1em;
  }
}
/* ANALYTICS styles */
.analytics {
  background: linear-gradient(85deg, #f8fafb 70%, #e5edff 100%);
  padding: 3.8em 1em 3.2em 1em;
  position: relative;
  overflow: hidden;
}
.analytics__container {
  max-width: 1100px;
  margin: 0 auto;
}
.analytics__header {
  text-align: center;
  margin-bottom: 2.3em;
}
.analytics__suptitle {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: 2em;
  font-size: 1.03em;
  padding: 0.14em 1em 0.14em 0.58em;
  gap: 0.5em;
  box-shadow: 0 2px 12px #4fbaa730;
  margin-bottom: 0.5em;
  letter-spacing: 0.03em;
}
.analytics__title {
  font-family: var(--font-logo);
  color: var(--accent2);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 700;
  margin: 0.33em 0 0.31em 0;
  letter-spacing: 0.01em;
}
.analytics__desc {
  color: #495057;
  max-width: 520px;
  margin: 0 auto;
  font-size: 1.08em;
  opacity: 0.85;
}

.analytics__cards {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
  justify-content: center;
}
.analytics__card {
  background: #fff;
  border-radius: 1.25em;
  box-shadow: 0 2px 16px 0 rgba(122,92,244,0.08);
  padding: 2.2em 1.3em 1.7em 1.3em;
  min-width: 230px;
  max-width: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  margin-bottom: 1.2em;
  opacity: 0;
  transform: translateY(38px) scale(0.97);
  transition: box-shadow 0.22s, transform 0.22s, opacity 0.33s;
  animation: fadeInUp 1.05s both;
  cursor: pointer;
  will-change: transform, opacity;
}
.analytics__card:nth-child(1) { animation-delay: 0.12s;}
.analytics__card:nth-child(2) { animation-delay: 0.27s;}
.analytics__card:nth-child(3) { animation-delay: 0.42s;}
.analytics__card:nth-child(4) { animation-delay: 0.57s;}
.analytics__card:hover, .analytics__card:focus {
  box-shadow: 0 8px 36px #4fbaa72a, 0 2px 12px #7a5cf418;
  transform: translateY(-9px) scale(1.045) rotate(-1.2deg);
  z-index: 3;
}
.analytics__card-icon {
  font-size: 2em;
  color: var(--accent2);
  margin-bottom: 0.35em;
  transition: color 0.2s, transform 0.18s;
}
.analytics__card:hover .analytics__card-icon {
  color: var(--accent);
  transform: scale(1.19) rotate(7deg);
}
.analytics__card-title {
  font-family: var(--font-logo);
  font-size: 1.15em;
  color: var(--accent2);
  margin-bottom: 0.38em;
  font-weight: 700;
}
.analytics__card-desc {
  color: #4b4d59;
  opacity: 0.91;
  font-size: 1em;
  margin-bottom: 1.3em;
}
.analytics__card-btn {
  margin-top: auto;
  font-size: 1.04em;
  padding: 0.6em 1.2em;
  border-radius: 0.9em;
  background: var(--accent2);
  color: #fff;
  box-shadow: 0 2px 10px #7a5cf417;
}
.analytics__card-btn:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.04);
}

@media (max-width: 1100px) {
  .analytics__cards {
    gap: 1em;
  }
  .analytics__card {
    max-width: 45vw;
    min-width: 180px;
  }
}
@media (max-width: 700px) {
  .analytics__cards {
    flex-direction: column;
    align-items: center;
  }
  .analytics__card {
    min-width: 96vw;
    max-width: 99vw;
    padding: 1.4em 0.9em 1.3em 0.9em;
  }
  .analytics {
    padding: 2em 0.2em 1.4em 0.2em;
  }
}
/* CONTACT styles */
.contact {
  background: linear-gradient(105deg, #f4f8fa 60%, #e7f7ee 100%);
  padding: 3.6em 1em 3em 1em;
}
.contact__container {
  max-width: 540px;
  margin: 0 auto;
}
.contact__header {
  text-align: center;
  margin-bottom: 2.1em;
}
.contact__suptitle {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: 2em;
  font-size: 1.03em;
  padding: 0.14em 1em 0.14em 0.58em;
  gap: 0.5em;
  box-shadow: 0 2px 12px #4fbaa730;
  margin-bottom: 0.5em;
  letter-spacing: 0.03em;
}
.contact__title {
  font-family: var(--font-logo);
  color: var(--accent2);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0.25em 0 0.32em 0;
}
.contact__desc {
  color: #495057;
  max-width: 400px;
  margin: 0 auto;
  font-size: 1.06em;
  opacity: 0.85;
}

.contact__form {
  background: #fff;
  border-radius: 1.3em;
  box-shadow: 0 4px 32px #4fbaa715, 0 1.5px 7px #7a5cf416;
  padding: 2.1em 1.1em 1.3em 1.1em;
  margin-top: 1.2em;
  display: flex;
  flex-direction: column;
  gap: 1.18em;
  position: relative;
  animation: fadeInUp 1s both;
}
.contact__row {
  display: flex;
  gap: 1.2em;
}
.contact__field {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  margin-bottom: 0.45em;
}
.contact__field label {
  font-weight: 600;
  color: var(--accent2);
  font-size: 1em;
  letter-spacing: 0.01em;
  margin-bottom: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.contact__field input,
.contact__field textarea {
  border: 1.5px solid #e6e6f0;
  border-radius: 0.7em;
  font-family: var(--font-main);
  font-size: 1.04em;
  padding: 0.8em 1.1em;
  background: #f8fafb;
  transition: border 0.18s, box-shadow 0.22s;
  resize: none;
  color: var(--dark);
}
.contact__field input:focus,
.contact__field textarea:focus {
  border: 1.5px solid var(--accent2);
  outline: none;
  box-shadow: 0 2px 10px #7a5cf416;
}
.contact__field textarea {
  min-height: 92px;
  max-height: 300px;
}
.contact__field--captcha label {
  font-size: 0.98em;
  color: var(--accent);
  font-weight: 600;
}
.contact__captcha-wrap {
  display: flex;
  align-items: center;
  gap: 0.8em;
  background: #f8fafb;
  border-radius: 0.7em;
  padding: 0.4em 0.8em;
}
#captchaQuestion {
  font-size: 1.07em;
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--accent2);
  letter-spacing: 0.04em;
}
.contact__captcha-row {
  align-items: flex-end;
}

.contact__btn {
  margin-left: auto;
  min-width: 170px;
  font-size: 1.09em;
  padding: 0.7em 1.5em;
  border-radius: 0.8em;
  background: var(--accent2);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 10px #7a5cf417;
  display: flex;
  align-items: center;
  gap: 0.7em;
  transition: background 0.18s, transform 0.18s;
}
.contact__btn:hover {
  background: var(--accent);
  transform: scale(1.04);
}
.contact__success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  background: #eafaf4;
  color: var(--accent2);
  border-radius: 0.9em;
  font-weight: 700;
  font-size: 1.14em;
  margin-top: 1.1em;
  min-height: 52px;
  animation: fadeInUp 1s both;
}
.contact__success i {
  font-size: 1.23em;
  color: var(--accent);
}

@media (max-width: 650px) {
  .contact__form, .contact__container {
    padding: 0.4em 0.1em;
  }
  .contact__row {
    flex-direction: column;
    gap: 0.6em;
  }
}
/* COOKIE POPUP styles */
.cookie-popup {
  position: fixed;
  left: 50%;
  bottom: 2.3em;
  transform: translateX(-50%) translateY(80px) scale(0.96);
  background: #fff;
  box-shadow: 0 6px 32px #4fbaa729, 0 1px 5px #7a5cf416;
  border-radius: 1.2em;
  padding: 1.5em 1.8em 1.1em 1.4em;
  z-index: 2222;
  max-width: 97vw;
  min-width: 250px;
  max-width: 390px;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 0.9em;
  transition: opacity 0.44s, transform 0.43s;
  font-size: 1.08em;
}
.cookie-popup.cookie-popup--active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.cookie-popup__content {
  display: flex;
  align-items: center;
  gap: 1.2em;
}

.cookie-popup__icon i {
  font-size: 2.2em;
  color: var(--accent2);
  filter: drop-shadow(0 2px 8px #7a5cf428);
}

.cookie-popup__text {
  color: #37424e;
  line-height: 1.45;
  font-size: 1.01em;
}
.cookie-popup__text a {
  color: var(--accent2);
  text-decoration: underline;
}
.cookie-popup__text a:hover {
  color: var(--accent);
}
.cookie-popup__btn {
  margin-left: 0.5em;
  background: var(--accent2);
  color: #fff;
  font-weight: 700;
  border-radius: 0.7em;
  font-size: 1em;
  padding: 0.7em 1.7em;
  box-shadow: 0 1px 6px #7a5cf412;
  transition: background 0.16s, transform 0.12s;
}
.cookie-popup__btn:hover {
  background: var(--accent);
  transform: scale(1.045);
}
@media (max-width: 550px) {
  .cookie-popup {
    padding: 1em 0.6em 0.7em 0.7em;
    font-size: 0.98em;
    min-width: 140px;
    max-width: 99vw;
    border-radius: 0.7em;
  }
  .cookie-popup__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6em;
  }
}
/* POLICY / PAGES styles */
.pages {
  background: linear-gradient(94deg, #f8fafb 75%, #e5edff 100%);
  padding: 3.1em 1em 3.1em 1em;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

.pages .container {
  max-width: 740px;
  background: #fff;
  margin: 0 auto;
  border-radius: 1.3em;
  box-shadow: 0 6px 32px #4fbaa713, 0 1.5px 7px #7a5cf413;
  padding: 2.5em 2.2em 2em 2.2em;
  font-family: var(--font-main);
}

.pages h1 {
  font-family: var(--font-logo);
  color: var(--accent2);
  font-size: clamp(1.35rem, 3.7vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 0.78em;
  line-height: 1.13;
}
.pages h2 {
  color: var(--accent);
  font-size: 1.15em;
  font-family: var(--font-main);
  font-weight: 700;
  margin-top: 2.1em;
  margin-bottom: 0.5em;
  letter-spacing: 0.015em;
}
.pages p {
  margin-bottom: 1.2em;
  color: #37424e;
  font-size: 1.08em;
  line-height: 1.62;
}
.pages ul, .pages ol {
  margin-bottom: 1.2em;
  padding-left: 1.3em;
}
.pages li {
  font-size: 1.07em;
  color: #434959;
  margin-bottom: 0.45em;
  position: relative;
  line-height: 1.48;
  padding-left: 0.04em;
}
.pages ul li::before {
  content: "•";
  color: var(--accent2);
  font-weight: 900;
  margin-right: 0.6em;
  font-size: 1em;
  position: relative;
  top: -1px;
}
.pages strong {
  color: var(--accent2);
  font-weight: 700;
}
.pages a {
  color: var(--accent2);
  text-decoration: underline;
  transition: color 0.16s;
}
.pages a:hover {
  color: var(--accent);
  text-decoration: underline wavy var(--accent2) 1.5px;
}
@media (max-width: 700px) {
  .pages .container {
    padding: 1.3em 0.5em 1.1em 0.5em;
    border-radius: 0.9em;
  }
  .pages {
    padding: 1.5em 0.2em 1.6em 0.2em;
  }
  .pages h1 {
    font-size: 1.25rem;
  }
}
