/* Базовий 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=IBM+Plex+Sans:wght@400;700&family=Montserrat:wght@700&display=swap');

body {
  min-height: 100vh;
  background: linear-gradient(120deg, #f9fafc 0%, #e8f5ee 100%);
  color: #1e2432;
  font-family: 'IBM Plex Sans', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 0;
  color: #073863;
  letter-spacing: 0.02em;
}

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

button,
.button {
  font-family: inherit;
  font-weight: 700;
  padding: 0.75em 2em;
  background: linear-gradient(100deg, #267c53 40%, #5cb1a7 100%);
  color: #fff;
  border: none;
  border-radius: 2em;
  box-shadow: 0 2px 16px rgba(38,124,83,0.08);
  cursor: pointer;
  transition: background 0.23s cubic-bezier(.4,0,.2,1), transform 0.13s cubic-bezier(.4,0,.2,1);
  outline: none;
}
button:hover,
.button:hover {
  background: linear-gradient(100deg, #195a39 0%, #267c53 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 24px rgba(38,124,83,0.12);
}

::-webkit-scrollbar {
  width: 8px;
  background: #e8f5ee;
}
::-webkit-scrollbar-thumb {
  background: #b8e0d2;
  border-radius: 6px;
}
.header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px rgba(7, 56, 99, 0.07);
  position: sticky;
  top: 0;
  z-index: 99;
  animation: headerAppear 0.8s cubic-bezier(.7,0,.2,1);
}

@keyframes headerAppear {
  from { opacity: 0; transform: translateY(-24px);}
  to { opacity: 1; transform: none;}
}

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

.header__logo {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2em;
  font-weight: 700;
  color: #073863;
  text-decoration: none;
  letter-spacing: -1.5px;
  display: flex;
  align-items: center;
  gap: 0.2em;
  transition: transform 0.16s cubic-bezier(.5,0,.2,1);
}
.header__logo:hover {
  transform: scale(1.05) rotate(-2deg);
}
.header__logo-accent {
  color: #267c53;
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-right: 1px;
}

.header__nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2em;
  margin: 0;
  padding: 0;
}
.header__nav-link {
  position: relative;
  font-weight: 700;
  font-size: 1.13em;
  color: #073863;
  padding: 0.3em 0.7em;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}

.header__nav-link:hover {
  color: #267c53;
}
.header__nav-link:hover::after {
  width: 100%;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
}
.header__burger span {
  display: block;
  width: 30px;
  height: 3px;
  background: #267c53;
  border-radius: 2px;
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
}

@media (max-width: 900px) {
  .header__container {
    padding: 1em 1em;
  }
  .header__nav-list {
    gap: 1em;
  }
}

@media (max-width: 700px) {
  .header__nav {
    position: fixed;
    top: 64px;
    right: 0;
    width: 220px;
    height: calc(100vh - 64px);
    background: #fff;
    box-shadow: -2px 0 14px rgba(7, 56, 99, 0.07);
    transform: translateX(100%);
    transition: transform 0.25s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 98;
  }
  .header__nav-list {
    flex-direction: column;
    gap: 1.5em;
    padding: 2em 1.5em;
  }
  .header__nav.open {
    transform: none;
  }
  .header__burger {
    display: flex;
  }
}

.footer {
  background: linear-gradient(100deg, #f2f7f4 60%, #e3ebf6 100%);
  color: #222;
  padding: 3em 0 1em 0;
  font-size: 1em;
  margin-top: 4em;
  box-shadow: 0 -2px 24px rgba(38,124,83,0.07);
}

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

.footer__logo {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  color: #073863;
  text-decoration: none;
  margin-bottom: 0.2em;
  display: inline-block;
  letter-spacing: -1.2px;
  transition: color 0.19s cubic-bezier(.5,0,.2,1);
}
.footer__logo:hover { color: #267c53; }
.footer__logo-accent { color: #267c53; font-weight: 900; letter-spacing: 0.5px;}

.footer__country {
  font-size: 0.9em;
  color: #267c53;
  margin-top: 0.5em;
  letter-spacing: 0.07em;
  opacity: 0.85;
}

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

.footer__nav-list,
.footer__info-list,
.footer__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__nav-list li,
.footer__info-list li,
.footer__contact-list li {
  margin-bottom: 0.7em;
}
.footer__nav-list a,
.footer__info-list a {
  color: #195a39;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
.footer__nav-list a:hover,
.footer__info-list a:hover {
  color: #267c53;
}

.footer__contact-list i {
  margin-right: 0.5em;
  color: #267c53;
  font-size: 1em;
  vertical-align: middle;
}

.footer__contact-list a, 
.footer__contact-list span {
  color: #073863;
  font-weight: 400;
  text-decoration: none;
}

.footer__bottom {
  text-align: center;
  font-size: 0.98em;
  color: #708d95;
  border-top: 1px solid #e5ecec;
  margin-top: 2em;
  padding-top: 1em;
  letter-spacing: 0.02em;
}

/* Адаптив */
@media (max-width: 950px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 2em;
  }
}
@media (max-width: 700px) {
  .footer__container {
    grid-template-columns: 1fr;
    gap: 1em;
    padding: 0 1em;
  }
  .footer__col { margin-bottom: 1.5em; }
}
.hero {
  min-height: 72vh;
  padding: 4.5em 0 3em 0;
  background: linear-gradient(120deg, #e8f5ee 60%, #e3ebf6 100%);
  position: relative;
  overflow: hidden;
  animation: heroFadeIn 1.1s cubic-bezier(.8,.25,.1,1);
}

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

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3em;
  position: relative;
  z-index: 1;
  padding: 0 2em;
}
.hero__content {
  flex: 1.3;
  min-width: 300px;
}
.hero__title {
  font-size: 2.7em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #073863;
  line-height: 1.12;
  margin-bottom: 0.35em;
  letter-spacing: -0.02em;
  position: relative;
  animation: heroSlide 1s 0.13s cubic-bezier(.7,0,.2,1) backwards;
}
@keyframes heroSlide {
  from { opacity: 0; transform: translateY(18px);}
  to { opacity: 1; transform: none;}
}
.hero__title-main {
  display: inline-block;
  background: linear-gradient(90deg,#267c53 20%, #073863 80%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin-right: 0.22em;
}
.hero__title-sub {
  display: block;
  font-size: 0.52em;
  font-weight: 500;
  color: #267c53;
  margin-top: 0.23em;
  letter-spacing: 0.05em;
}
.hero__desc {
  font-size: 1.18em;
  color: #2d3d4d;
  margin-bottom: 1.8em;
  max-width: 560px;
  animation: heroSlide 1s 0.22s cubic-bezier(.7,0,.2,1) backwards;
}
.hero__uk-accent {
  display: inline-block;
  margin-top: 0.6em;
  font-size: 0.93em;
  color: #073863;
  letter-spacing: 0.07em;
  opacity: 0.85;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  font-size: 1.15em;
  margin-top: 0.7em;
  box-shadow: 0 2px 24px rgba(38,124,83,0.13);
  animation: heroBtnPop 0.7s 0.55s cubic-bezier(.7,0,.2,1) backwards;
}
@keyframes heroBtnPop {
  from { opacity: 0; transform: scale(0.86);}
  to { opacity: 1; transform: none;}
}
.hero__btn i {
  font-size: 1.15em;
}
.hero__btn:hover {
  background: linear-gradient(100deg, #073863 20%, #267c53 90%);
  box-shadow: 0 6px 28px rgba(38,124,83,0.17);
  transform: translateY(-2px) scale(1.035);
}

.hero__visual {
  flex: 1;
  min-width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero__img {
  width: 290px;
  height: 290px;
  object-fit: cover;
  border-radius: 1.9em;
  box-shadow: 0 2px 36px rgba(7,56,99,0.13);
  background: #f1f6f4;
  animation: heroImgIn 1s 0.17s cubic-bezier(.7,0,.2,1) backwards;
}
@keyframes heroImgIn {
  from { opacity: 0; transform: scale(0.93) translateY(40px);}
  to { opacity: 1; transform: none;}
}

/* Декоративні SVG */
.hero__shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.67;
  z-index: 2;
}
.hero__shape--1 { top: 10%; left: 68%; animation: heroShape1 3.5s infinite alternate cubic-bezier(.6,.2,.3,1);}
.hero__shape--2 { top: 76%; left: 82%; animation: heroShape2 4.5s infinite alternate-reverse cubic-bezier(.4,0,.2,1);}
.hero__shape--3 { top: 16%; left: 94%; animation: heroShape3 3.8s infinite alternate cubic-bezier(.8,.1,.2,1);}
@keyframes heroShape1 { from {transform: translateY(0);} to {transform: translateY(18px) rotate(7deg);} }
@keyframes heroShape2 { from {transform: scale(1);} to {transform: scale(1.18) rotate(-14deg);} }
@keyframes heroShape3 { from {transform: translateY(0);} to {transform: translateY(-16px) rotate(11deg);} }

/* Адаптивність */
@media (max-width: 900px) {
  .hero__container { flex-direction: column-reverse; gap: 2.3em; padding: 0 1em;}
  .hero__visual, .hero__content { width: 100%; min-width: 0;}
  .hero__img { width: 220px; height: 220px; }
}
@media (max-width: 600px) {
  .hero { padding-top: 2em; }
  .hero__title { font-size: 1.5em; }
  .hero__img { width: 140px; height: 140px; }
}
.about {
  background: linear-gradient(120deg, #e3ebf6 80%, #f9fafc 100%);
  padding: 5em 0 4em 0;
  position: relative;
  overflow: hidden;
}

.about__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about__intro {
  text-align: center;
  margin-bottom: 2.2em;
  animation: fadeInUp 1s cubic-bezier(.7,0,.2,1);
}
.about__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2em;
  color: #073863;
  margin-bottom: 0.6em;
  letter-spacing: 0.03em;
}
.about__desc {
  color: #234651;
  font-size: 1.19em;
  line-height: 1.5;
}
.about__accent {
  color: #267c53;
  font-weight: 600;
  background: linear-gradient(90deg,#5cb1a7 40%,#e3ebf6 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.about__features {
  display: flex;
  justify-content: center;
  gap: 2.8em;
  margin-bottom: 2.5em;
  flex-wrap: wrap;
}
.about__feature {
  background: #fff;
  border-radius: 1.8em;
  box-shadow: 0 2px 22px rgba(38,124,83,0.09);
  padding: 2em 1.5em;
  min-width: 260px;
  max-width: 340px;
  text-align: center;
  transition: transform 0.16s cubic-bezier(.5,0,.2,1), box-shadow 0.18s;
  animation: fadeInUp 1.1s cubic-bezier(.7,0,.2,1) forwards;
  opacity: 0;
}
.about__feature--1 { animation-delay: 0.05s; }
.about__feature--2 { animation-delay: 0.25s; }
.about__feature--3 { animation-delay: 0.45s; }
.about__feature:hover {
  transform: translateY(-9px) scale(1.03) rotate(-1deg);
  box-shadow: 0 6px 32px rgba(38,124,83,0.17);
}
.about__icon {
  color: #267c53;
  font-size: 2.2em;
  margin-bottom: 0.7em;
  transition: color 0.17s cubic-bezier(.5,0,.2,1);
}
.about__feature:hover .about__icon {
  color: #073863;
}

.about__feature h3 {
  margin-top: 0;
  margin-bottom: 0.6em;
  font-size: 1.22em;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #073863;
}
.about__feature p {
  font-size: 1em;
  color: #345265;
  margin-bottom: 0;
}

.about__cta {
  margin-top: 1.1em;
}
.about__btn {
  font-size: 1.06em;
  padding: 0.75em 2.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  box-shadow: 0 2px 16px rgba(38,124,83,0.12);
}
.about__btn i {
  font-size: 1.16em;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(38px);}
  80% { opacity: 0.67;}
  100% { opacity: 1; transform: none;}
}

@media (max-width: 900px) {
  .about__features { gap: 1.5em; }
}
@media (max-width: 700px) {
  .about__features { flex-direction: column; gap: 1.2em;}
  .about__feature { max-width: 100%; }
  .about__container { padding: 0 1em;}
}

.insight {
  background: linear-gradient(120deg, #e8f5ee 50%, #f2f7f4 100%);
  padding: 5em 0 3.5em 0;
  position: relative;
  overflow: hidden;
}

.insight__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.insight__intro {
  text-align: center;
  margin-bottom: 2em;
  animation: fadeInUp 0.95s cubic-bezier(.7,0,.2,1) backwards;
}
.insight__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2em;
  color: #073863;
  margin-bottom: 0.5em;
  letter-spacing: 0.03em;
}
.insight__desc {
  color: #234651;
  font-size: 1.13em;
}
.insight__highlight {
  color: #267c53;
  font-weight: 600;
  background: linear-gradient(90deg,#5cb1a7 40%,#e3ebf6 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.insight__cards {
  display: flex;
  justify-content: center;
  gap: 2em;
  margin-bottom: 2.5em;
  flex-wrap: wrap;
}

.insight__card {
  background: #fff;
  border-radius: 1.5em;
  box-shadow: 0 2px 18px rgba(38,124,83,0.10);
  padding: 2em 1.4em 1.6em 1.4em;
  max-width: 340px;
  min-width: 240px;
  text-align: center;
  transition: transform 0.17s cubic-bezier(.5,0,.2,1), box-shadow 0.18s;
  opacity: 0;
  animation: fadeInUp 1.05s cubic-bezier(.7,0,.2,1) forwards;
}
.insight__card--1 { animation-delay: 0.07s; }
.insight__card--2 { animation-delay: 0.33s; }
.insight__card--3 { animation-delay: 0.59s; }

.insight__card:hover {
  transform: translateY(-8px) scale(1.025) rotate(1.5deg);
  box-shadow: 0 7px 28px rgba(38,124,83,0.15);
}

.insight__emoji {
  font-size: 2em;
  color: #267c53;
  margin-bottom: 0.65em;
  transition: color 0.17s cubic-bezier(.5,0,.2,1);
}

.insight__card:hover .insight__emoji { color: #073863; }

.insight__card h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.17em;
  color: #073863;
  margin-bottom: 0.55em;
  margin-top: 0;
}

.insight__card p {
  font-size: 1em;
  color: #345265;
  margin-bottom: 0;
}

.insight__cta {
  margin-top: 1.1em;
}
.insight__btn {
  font-size: 1.09em;
  padding: 0.75em 2em;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  box-shadow: 0 2px 18px rgba(38,124,83,0.11);
}
.insight__btn i {
  font-size: 1.15em;
}

.insight__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 900px) {
  .insight__cards { gap: 1.2em;}
}
@media (max-width: 700px) {
  .insight__cards { flex-direction: column; gap: 1.2em;}
  .insight__card { max-width: 100%; }
  .insight__container { padding: 0 1em;}
}
.contact {
  background: linear-gradient(120deg, #f2f7f4 90%, #e8f5ee 100%);
  padding: 4em 0 2.5em 0;
  position: relative;
  overflow: hidden;
}

.contact__container {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 2em;
  box-shadow: 0 3px 32px rgba(38,124,83,0.13);
  padding: 2.5em 2.2em 2.2em 2.2em;
  position: relative;
  z-index: 2;
}

.contact__info {
  text-align: center;
  margin-bottom: 1.8em;
}
.contact__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2em;
  color: #073863;
  margin-bottom: 0.5em;
  letter-spacing: 0.03em;
}
.contact__title-accent {
  color: #267c53;
  font-weight: 700;
  margin-left: 0.17em;
  background: linear-gradient(90deg,#5cb1a7 20%,#267c53 80%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.contact__desc {
  color: #234651;
  font-size: 1.09em;
}
.contact__uk-hint {
  font-size: 0.95em;
  color: #267c53;
  opacity: 0.8;
  margin-top: 0.4em;
  display: inline-block;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}

.contact__fields {
  display: flex;
  gap: 1em;
}
.contact__input,
.contact__textarea {
  background: #f9fafc;
  border: 1.5px solid #e3ebf6;
  border-radius: 1.3em;
  font-size: 1em;
  font-family: inherit;
  padding: 1em;
  transition: border 0.15s, box-shadow 0.13s;
  outline: none;
  width: 100%;
}
.contact__input:focus,
.contact__textarea:focus {
  border: 1.5px solid #267c53;
  box-shadow: 0 1px 12px rgba(38,124,83,0.11);
}

.contact__textarea {
  min-height: 90px;
  max-height: 220px;
  resize: vertical;
}

.contact__captcha {
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 1em;
}
#captcha-question {
  font-weight: 600;
  color: #073863;
}

.contact__btn {
  align-self: flex-end;
  min-width: 160px;
  font-size: 1.1em;
  padding: 0.85em 2.1em;
  box-shadow: 0 2px 18px rgba(38,124,83,0.11);
}
.contact__btn i {
  font-size: 1.2em;
  margin-right: 0.7em;
}

.contact__success {
  color: #267c53;
  font-size: 1.1em;
  text-align: center;
  margin-top: 1em;
  font-weight: 700;
  letter-spacing: 0.02em;
  animation: fadeInUp 0.6s cubic-bezier(.7,0,.2,1) forwards;
}

.contact__bg {
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 100vw;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 700px) {
  .contact__container { padding: 1.2em 0.6em;}
  .contact__fields { flex-direction: column; gap: 0.7em;}
}
.cta {
  background: linear-gradient(90deg, #e8f5ee 55%, #e3ebf6 100%);
  padding: 3.7em 0 2.5em 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta__container {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 2.2em;
  box-shadow: 0 3px 34px rgba(38,124,83,0.11);
  padding: 2.8em 2.5em 2.4em 2.5em;
  overflow: hidden;
}

.cta__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.1em;
  color: #073863;
  margin-bottom: 0.5em;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.15;
  animation: fadeInUp 0.8s cubic-bezier(.7,0,.2,1);
}

.cta__accent {
  color: #267c53;
  font-weight: 900;
  background: linear-gradient(90deg,#5cb1a7 40%,#267c53 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.cta__desc {
  font-size: 1.18em;
  color: #234651;
  margin-bottom: 2em;
  animation: fadeInUp 0.95s 0.18s cubic-bezier(.7,0,.2,1) backwards;
}

.cta__ai {
  font-size: 0.97em;
  color: #267c53;
  margin-top: 0.7em;
  display: inline-block;
  opacity: 0.82;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-size: 1.15em;
  padding: 0.85em 2.6em;
  margin-top: 1em;
  background: linear-gradient(100deg, #267c53 40%, #5cb1a7 100%);
  box-shadow: 0 2px 16px rgba(38,124,83,0.14);
  border: none;
  border-radius: 2em;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: background 0.23s cubic-bezier(.4,0,.2,1), transform 0.13s cubic-bezier(.4,0,.2,1);
  animation: ctaBtnPop 1s 0.26s cubic-bezier(.7,0,.2,1) backwards;
  position: relative;
  overflow: hidden;
}

@keyframes ctaBtnPop {
  from { opacity: 0; transform: scale(0.86);}
  to { opacity: 1; transform: none;}
}
.cta__btn:hover {
  background: linear-gradient(90deg, #073863 20%, #267c53 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 28px rgba(38,124,83,0.19);
}
.cta__arrow {
  display: inline-block;
  margin-left: 0.7em;
  transition: transform 0.2s;
  animation: arrowWiggle 1.3s infinite alternate;
}
@keyframes arrowWiggle {
  from { transform: translateX(0);}
  to { transform: translateX(8px);}
}

.cta__bg {
  position: absolute;
  right: 2em;
  bottom: -1em;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 700px) {
  .cta__container { padding: 1.4em 0.7em;}
  .cta__title { font-size: 1.2em; }
}

.faq {
  background: linear-gradient(120deg, #e8f5ee 95%, #f2f7f4 100%);
  padding: 4em 0 3.5em 0;
}

.faq__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2em;
}

.faq__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2em;
  color: #073863;
  margin-bottom: 2em;
  text-align: center;
  position: relative;
  font-weight: 800;
}
.faq__icon {
  color: #267c53;
  margin-left: 0.4em;
  font-size: 1.2em;
  vertical-align: middle;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1.1em;
}

.faq__item {
  background: #fff;
  border-radius: 1.3em;
  box-shadow: 0 2px 18px rgba(38,124,83,0.09);
  overflow: hidden;
  transition: box-shadow 0.18s cubic-bezier(.5,0,.2,1);
}
.faq__item.open {
  box-shadow: 0 7px 34px rgba(38,124,83,0.16);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.3em 1.2em 1.3em 1.2em;
  font-size: 1.07em;
  font-family: inherit;
  font-weight: 700;
  color: #073863;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.15s;
  outline: none;
}
.faq__question i {
  color: #267c53;
  margin-right: 1em;
  font-size: 1.12em;
}
.faq__toggle {
  margin-left: 1.2em;
  color: #267c53;
  font-size: 1.13em;
  transition: transform 0.3s;
}
.faq__item.open .faq__toggle {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 2.7em 1.5em 3.2em;
  font-size: 1em;
  color: #345265;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.43s cubic-bezier(.6,0,.3,1), opacity 0.35s cubic-bezier(.5,0,.2,1);
}

.faq__item.open .faq__answer {
  max-height: 200px;
  opacity: 1;
}

@media (max-width: 600px) {
  .faq__container { padding: 0 0.4em;}
  .faq__title { font-size: 1.2em;}
  .faq__answer { padding: 0 1em 1.3em 2.1em;}
}
.cookie-popup {
  position: fixed;
  left: 50%;
  bottom: 2em;
  transform: translateX(-50%) translateY(100px);
  width: calc(100vw - 2em);
  max-width: 410px;
  z-index: 9999;
  background: rgba(255,255,255,0.98);
  border-radius: 1.7em;
  box-shadow: 0 7px 32px rgba(38,124,83,0.18);
  padding: 1.1em 1.3em 1.1em 1.1em;
  display: flex;
  align-items: center;
  gap: 1em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.39s cubic-bezier(.6,0,.2,1), transform 0.48s cubic-bezier(.5,0,.2,1);
  font-size: 1.01em;
}

.cookie-popup.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.cookie-popup__icon {
  font-size: 2.1em;
  color: #267c53;
  margin-right: 0.4em;
  flex-shrink: 0;
}

.cookie-popup__text {
  color: #234651;
  line-height: 1.5;
  flex: 1;
}
.cookie-popup__text a {
  color: #267c53;
  font-weight: 600;
  text-decoration: underline dotted;
  transition: color 0.18s;
}
.cookie-popup__text a:hover {
  color: #073863;
}

.cookie-popup__btn {
  margin-left: 1em;
  background: linear-gradient(100deg, #267c53 40%, #5cb1a7 100%);
  padding: 0.7em 1.6em;
  font-size: 1em;
  border-radius: 1.3em;
  box-shadow: 0 2px 8px rgba(38,124,83,0.10);
  font-weight: 700;
}

@media (max-width: 600px) {
  .cookie-popup { flex-direction: column; align-items: stretch; gap: 0.6em; font-size: 0.95em;}
  .cookie-popup__btn { width: 100%; margin-left: 0; }
}
.pages {
  background: linear-gradient(120deg, #e8f5ee 88%, #e3ebf6 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5em 0 3em 0;
}

.container {
  background: #fff;
  border-radius: 2.1em;
  box-shadow: 0 4px 40px rgba(38,124,83,0.13);
  max-width: 720px;
  width: 100%;
  padding: 2.8em 2.2em 2.6em 2.2em;
  margin: 0 auto;
  animation: policyFadeIn 0.95s cubic-bezier(.7,0,.2,1);
}

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

.container h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.1em;
  color: #073863;
  margin-bottom: 1.1em;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
}

.container h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #267c53;
  font-size: 1.18em;
  margin-top: 2.1em;
  margin-bottom: 0.7em;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.container p {
  color: #234651;
  font-size: 1.09em;
  margin-bottom: 1.2em;
  line-height: 1.68;
}

.container ul {
  padding-left: 1.2em;
  margin-bottom: 1.2em;
}
.container ul li {
  margin-bottom: 0.6em;
  color: #345265;
  font-size: 1.02em;
  position: relative;
  padding-left: 0.8em;
}
.container ul li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #267c53;
  position: absolute;
  left: 0;
  top: 0.65em;
  opacity: 0.17;
}

.container strong {
  color: #267c53;
  font-weight: 700;
}

.container a {
  color: #267c53;
  font-weight: 600;
  text-decoration: underline dotted;
  transition: color 0.18s;
  word-break: break-all;
}
.container a:hover {
  color: #073863;
  text-decoration: underline;
}

@media (max-width: 650px) {
  .container {
    padding: 1.4em 0.7em 1.4em 0.7em;
    border-radius: 1.2em;
  }
  .container h1 { font-size: 1.17em; }
  .container h2 { font-size: 1em; }
}
