/* Базовий 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=Inter:wght@400;600&family=Manrope:wght@700&display=swap');

:root {
  --primary: #364FC7;
  --accent: #FFBE0B;
  --background: #F6F9FC;
  --secondary: #F9FAFB;
  --text: #1A1B1F;
  --muted: #ADB5BD;
  --shadow: 0 4px 24px 0 rgba(36, 41, 46, 0.09);
  --radius: 1.25rem;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--text);
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.5;
  min-height: 100vh;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5 {
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 700;
  margin-top: 0;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.header {
  background: var(--secondary);
  box-shadow: 0 2px 14px 0 rgba(54, 79, 199, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow .25s;
}

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

.header__logo span {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 2rem;
  color: var(--primary);
  letter-spacing: 0.1em;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header__menu {
  list-style: none;
  display: flex;
  gap: 2.4rem;
  margin: 0;
  padding: 0;
}

.header__menu li {
  display: flex;
}

.header__menu a {
  display: flex;
  align-items: center;
  font-size: 1.07rem;
  font-weight: 600;
  gap: 0.6em;
  color: var(--text);
  border-radius: var(--radius);
  padding: 0.5em 1.1em;
  transition: 
    background .23s cubic-bezier(.29,.83,.45,.99),
    color .18s,
    transform .19s;
  position: relative;
}

.header__menu a i {
  font-size: 1.2em;
  color: var(--primary);
  transition: color .2s;
}

.header__menu a:hover, 
.header__menu a:focus {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 2px 16px 0 rgba(54,79,199,0.10);
}

.header__menu a:hover i,
.header__menu a:focus i {
  color: var(--accent);
}

/* Mobile burger */
@media (max-width: 800px) {
  .header__nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1rem;
  }
  .header__menu {
    gap: 1.2rem;
    width: 100%;
    justify-content: flex-start;
  }
  .header__logo span {
    font-size: 1.5rem;
    margin-bottom: .7rem;
    display: inline-block;
  }
}

@media (max-width: 540px) {
  .header__nav {
    padding: .7rem .6rem;
  }
  .header__menu a {
    font-size: .98rem;
    padding: .38em .7em;
  }
  .header__logo span {
    font-size: 1.12rem;
  }
}

.footer {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 -2px 12px 0 rgba(54, 79, 199, 0.07);
  padding: 3.5rem 0 0 0;
  position: relative;
}

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

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer__col--logo {
  gap: 0.6rem;
}

.footer__logo {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, #fff 30%, var(--accent) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .2em;
  display: inline-block;
}

.footer__tagline {
  font-size: 1.04rem;
  color: #f9faff;
  opacity: 0.84;
  font-weight: 400;
  margin-top: .2em;
}

.footer__title {
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.2em;
  font-size: 1.11rem;
  color: var(--accent);
  text-transform: uppercase;
}

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

.footer__nav a, .footer__info a {
  color: #fff;
  transition: color .18s;
  display: flex;
  align-items: center;
  gap: 0.53em;
}

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

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

.footer__contacts a {
  color: #fff;
  transition: color .2s;
  text-decoration: underline dotted;
}

.footer__contacts a:hover {
  color: var(--accent);
}

.footer__contacts i, .footer__nav i {
  font-size: 1.08em;
  color: var(--accent);
  opacity: 0.88;
  min-width: 18px;
  text-align: center;
}

.footer__bottom {
  text-align: center;
  padding: 1.1rem 0 1.5rem 0;
  color: #e6eaff;
  font-size: .99rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 2rem;
}

/* Мобільна адаптивність */
@media (max-width: 1000px) {
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .footer__container {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    padding: 0 1rem;
  }
  .footer {
    padding-top: 2.1rem;
  }
  .footer__logo {
    font-size: 1.15rem;
  }
}
  

.hero {
  background: linear-gradient(115deg, var(--secondary) 70%, var(--accent) 180%);
  padding: 4.5rem 0 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.5rem;
  padding: 0 2rem;
  flex-wrap: wrap;
}

.hero__content {
  flex: 1 1 430px;
  display: flex;
  flex-direction: column;
  gap: 2.1rem;
  z-index: 1;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s, transform .8s;
}

.hero__title {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 2.9rem;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.17;
  letter-spacing: 0.01em;
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: 0.6em;
}

.hero__flag {
  font-size: 2.2rem;
  filter: grayscale(.18) brightness(1.15);
}

.hero__subtitle {
  font-size: 1.27rem;
  color: var(--text);
  font-weight: 400;
  min-height: 2.5em;
  letter-spacing: 0.01em;
}

.hero__btn {
  background: var(--primary);
  color: #fff;
  font-size: 1.12rem;
  font-family: 'Manrope', Arial, sans-serif;
  padding: .82em 2.2em;
  border-radius: 2.3em;
  font-weight: 700;
  margin-top: .7em;
  box-shadow: var(--shadow);
  border: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  cursor: pointer;
  transition: 
    background .21s, 
    transform .17s cubic-bezier(.52,1.29,.36,1),
    box-shadow .17s;
  position: relative;
  z-index: 2;
}

.hero__btn:hover,
.hero__btn:focus {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 6px 30px 0 rgba(255,190,11,0.14);
}

.hero__btn i {
  font-size: 1.14em;
}

.hero__image {
  flex: 1 1 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 260px;
  z-index: 1;
}

.hero__image img {
  width: 270px;
  height: 270px;
  object-fit: cover;
  border-radius: 100%;
  border: 7px solid #fff;
  box-shadow: 0 8px 36px 0 rgba(54,79,199,0.16);
  background: #fff;
  position: relative;
  z-index: 2;
}

.hero__blob {
  position: absolute;
  left: 24px;
  top: 44px;
  width: 250px;
  height: 230px;
  background: radial-gradient(circle at 60% 45%, var(--accent) 62%, var(--primary) 100%);
  filter: blur(44px) opacity(.7);
  z-index: 1;
  pointer-events: none;
  border-radius: 40% 60% 60% 40%/60% 30% 70% 40%;
  animation: heroBlobAnim 8s infinite linear alternate;
}

@keyframes heroBlobAnim {
  0%   { border-radius: 42% 58% 54% 46%/65% 35% 60% 40%; }
  100% { border-radius: 60% 40% 40% 60%/40% 70% 35% 65%; }
}

@media (max-width: 900px) {
  .hero__container {
    flex-direction: column-reverse;
    gap: 2.3rem;
    text-align: center;
    align-items: center;
  }
  .hero__image {
    margin-bottom: 0;
  }
}

@media (max-width: 540px) {
  .hero__container {
    padding: 0 0.4rem;
  }
  .hero__title {
    font-size: 1.53rem;
  }
  .hero__image img {
    width: 140px;
    height: 140px;
    border-width: 3px;
  }
  .hero__blob {
    width: 120px; height: 90px; left: 6px; top: 15px;
  }
}
.about {
  background: var(--secondary);
  padding: 4rem 0 2.7rem 0;
  position: relative;
  overflow: hidden;
}

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

.about__title {
  font-size: 2.05rem;
  color: var(--primary);
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  gap: .6em;
  margin-bottom: 1.4rem;
}

.about__icon {
  color: var(--accent);
  font-size: 1.5em;
  animation: aboutLightbulb 2.5s infinite alternate;
}
@keyframes aboutLightbulb {
  0% { filter: drop-shadow(0 0 0px #ffd700c7); }
  70% { filter: drop-shadow(0 0 12px #ffd700b2); }
  100% { filter: drop-shadow(0 0 0px #ffd700c7); }
}

.about__subtitle {
  color: var(--text);
  font-size: 1.15rem;
  text-align: center;
  margin-bottom: 2.1rem;
  max-width: 540px;
  opacity: .88;
}

.about__features {
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.about__feature {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem 1.5rem 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 275px;
  min-width: 210px;
  min-height: 255px;
  transition: transform .19s, box-shadow .16s;
  position: relative;
  overflow: hidden;
}

.about__feature:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 6px 26px 0 rgba(54,79,199,0.12);
}

.about__feature-icon {
  background: linear-gradient(130deg, var(--accent) 55%, var(--primary) 130%);
  color: #fff;
  border-radius: 50%;
  width: 62px; height: 62px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 3px 18px 0 rgba(54,79,199,0.10);
  transition: transform .5s cubic-bezier(.5,1.55,.5,1.1), box-shadow .17s;
  opacity: 0;
  transform: scale(0.6) translateY(30px);
}

.about__feature-title {
  color: var(--primary);
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.14rem;
  margin-bottom: .65em;
  text-align: center;
}

.about__feature-desc {
  color: var(--text);
  font-size: 1rem;
  text-align: center;
  opacity: .82;
}

@media (max-width: 900px) {
  .about__features {
    flex-direction: column;
    gap: 1.8rem;
    align-items: center;
  }
  .about__feature {
    width: 98%;
    min-width: 180px;
  }
}
.platform {
  background: var(--background);
  padding: 4.1rem 0 2.7rem 0;
  position: relative;
}

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

.platform__title {
  font-size: 2rem;
  color: var(--primary);
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  gap: .65em;
  margin-bottom: 2.3rem;
}

.platform__icon {
  color: var(--accent);
  font-size: 1.35em;
}

.platform__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

.platform__item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.1rem 1.3rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 210px;
  transition: box-shadow .18s, transform .18s;
  cursor: default;
  text-align: center;
  position: relative;
  z-index: 1;
}

.platform__item:hover {
  box-shadow: 0 10px 34px 0 rgba(255,190,11,0.12);
  transform: translateY(-6px) scale(1.03);
}

.platform__item-icon {
  background: linear-gradient(115deg, var(--primary) 65%, var(--accent) 120%);
  color: #fff;
  border-radius: 50%;
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.58rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 16px 0 rgba(54,79,199,0.11);
  transition: background .24s;
}

.platform__item-title {
  color: var(--primary);
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.14rem;
  margin-bottom: .5em;
}

.platform__item-desc {
  color: var(--text);
  font-size: .98rem;
  opacity: .85;
}

@media (max-width: 900px) {
  .platform__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem;
  }
}

@media (max-width: 600px) {
  .platform__grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
  .platform__title {
    font-size: 1.22rem;
  }
}
.poland {
  background: var(--accent);
  background: linear-gradient(110deg, var(--accent) 87%, #fff4b2 100%);
  padding: 4.1rem 0 2.7rem 0;
  position: relative;
  overflow: hidden;
}

.poland__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.poland__title {
  font-size: 2rem;
  color: var(--primary);
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  gap: .7em;
  margin-bottom: 2.3rem;
}

.poland__icon {
  color: var(--primary);
  font-size: 1.5em;
}

.poland__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.1rem;
  width: 100%;
}

.poland__fact {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 180px;
  position: relative;
  transition: transform .17s, box-shadow .18s;
  border-left: 7px solid var(--primary);
  text-align: left;
}

.poland__fact:hover {
  box-shadow: 0 8px 36px 0 rgba(54,79,199,0.13);
  transform: translateY(-5px) scale(1.025);
}

.poland__fact-icon {
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: .8rem;
  box-shadow: 0 2px 11px 0 rgba(54,79,199,0.12);
}

.poland__fact-title {
  color: var(--primary);
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.11rem;
  margin-bottom: .43em;
}

.poland__fact-desc {
  color: var(--text);
  font-size: .97rem;
  opacity: .85;
}

@media (max-width: 800px) {
  .poland__grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .poland__title {
    font-size: 1.23rem;
  }
}
.contact {
  background: var(--secondary);
  padding: 4rem 0 2.5rem 0;
  position: relative;
}

.contact__container {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact__title {
  font-size: 1.7rem;
  color: var(--primary);
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .6em;
  margin-bottom: 1.8rem;
}

.contact__icon {
  color: var(--accent);
  font-size: 1.4em;
}

.contact__form {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem 1.2rem 1.4rem 1.2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact__row {
  display: flex;
  gap: 1.1rem;
  width: 100%;
}

.contact__row--captcha {
  align-items: flex-end;
  gap: .8rem;
}

.contact__field {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: .38rem;
}

.contact__field label {
  color: var(--primary);
  font-weight: 600;
  font-size: .99rem;
  margin-bottom: .1em;
}

.contact__field input,
.contact__field textarea {
  padding: .74em 1em;
  border: 1.5px solid var(--muted);
  border-radius: .89em;
  font-size: 1.02rem;
  font-family: inherit;
  background: var(--background);
  color: var(--text);
  outline: none;
  transition: border .19s, background .17s;
  resize: none;
}

.contact__field input:focus,
.contact__field textarea:focus {
  border: 1.5px solid var(--primary);
  background: #fff;
}

.contact__field--captcha input {
  width: 100px;
}

.contact__btn {
  background: var(--primary);
  color: #fff;
  font-family: 'Manrope', Arial, sans-serif;
  padding: .8em 2.1em;
  border-radius: 2em;
  font-weight: 700;
  font-size: 1.09rem;
  border: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  gap: .7em;
  cursor: pointer;
  margin-left: auto;
  transition: background .17s, box-shadow .13s, color .17s;
  box-shadow: var(--shadow);
}

.contact__btn:hover,
.contact__btn:focus {
  background: var(--accent);
  color: var(--primary);
}

.contact__success, .contact__error {
  display: flex;
  align-items: center;
  gap: .5em;
  border-radius: .9em;
  margin-top: 1rem;
  padding: 1em 1.3em;
  font-weight: 600;
  font-size: 1.04rem;
}

.contact__success {
  background: #f3ffe2;
  color: #36b37e;
}

.contact__error {
  background: #ffe9ea;
  color: #d12c41;
}

.contact__success i, .contact__error i {
  font-size: 1.5em;
}

@media (max-width: 700px) {
  .contact__container { padding: 0 .1rem;}
  .contact__form { padding: 1.5rem .3rem 1.1rem .3rem;}
}

@media (max-width: 480px) {
  .contact__row, .contact__row--captcha {
    flex-direction: column;
    gap: .5rem;
  }
  .contact__field--captcha input {
    width: 100%;
  }
}
.faq {
  background: var(--background);
  padding: 4.2rem 0 2.8rem 0;
  position: relative;
}

.faq__container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq__title {
  font-size: 1.7rem;
  color: var(--primary);
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .6em;
  margin-bottom: 2.2rem;
}

.faq__icon {
  color: var(--accent);
  font-size: 1.3em;
}

.faq__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow .16s, background .17s;
  padding: 0;
  overflow: hidden;
}

.faq__item[open] {
  box-shadow: 0 8px 28px 0 rgba(54,79,199,0.10);
  background: #f9fbff;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15em 1.4em;
  font-size: 1.08rem;
  color: var(--primary);
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .9em;
  user-select: none;
  position: relative;
  transition: color .18s;
  outline: none;
}

.faq__item summary i {
  color: var(--accent);
  font-size: 1.12em;
  min-width: 24px;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary::after {
  content: '\f078';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: .98em;
  color: var(--muted);
  margin-left: auto;
  transition: transform .2s;
  display: inline-block;
}

.faq__item[open] summary::after {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq__item div {
  color: var(--text);
  font-size: .99rem;
  padding: 0 1.8em 1.2em 3.3em;
  opacity: .97;
  animation: faqFade .45s;
  line-height: 1.6;
}

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

.faq__item a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
}
.cookie-popup {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 2.2rem;
  transform: translateX(-50%);
  background: #fff;
  color: var(--text);
  border-radius: 1.2em;
  box-shadow: 0 4px 26px 0 rgba(54,79,199,0.09);
  z-index: 2000;
  min-width: 285px;
  max-width: 97vw;
  padding: 1.12em 1.45em;
  animation: cookiePopupFadeIn .7s;
  font-size: 1rem;
}

@keyframes cookiePopupFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(45px);}
  to { opacity: 1; transform: translateX(-50%) translateY(0);}
}

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

.cookie-popup__icon i {
  font-size: 1.45em;
  color: var(--accent);
}

.cookie-popup__text {
  flex: 1 1 180px;
}

.cookie-popup__text a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  transition: color .18s;
}

.cookie-popup__btn {
  background: var(--primary);
  color: #fff;
  border: none;
  outline: none;
  padding: .72em 1.9em;
  border-radius: 1.8em;
  font-weight: 700;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 1.03rem;
  cursor: pointer;
  box-shadow: 0 1px 8px 0 rgba(54,79,199,0.09);
  margin-left: .6em;
  transition: background .17s, color .15s;
}

.cookie-popup__btn:hover, .cookie-popup__btn:focus {
  background: var(--accent);
  color: var(--primary);
}
.pages {
  background: var(--background);
  min-height: 100vh;
  padding: 4rem 0 2rem 0;
  display: flex;
  align-items: flex-start;
}

.pages .container {
  background: #fff;
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.7rem 2.2rem 2.4rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  animation: fadeInPolicy .7s;
}

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

.pages h1 {
  font-size: 2.2rem;
  color: var(--primary);
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 800;
  margin: 0 0 1.1rem 0;
  letter-spacing: 0.01em;
}

.pages h2 {
  font-size: 1.18rem;
  color: var(--accent);
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 700;
  margin: 2.1rem 0 .6rem 0;
  letter-spacing: 0.01em;
}

.pages p {
  color: var(--text);
  font-size: 1.03rem;
  line-height: 1.67;
  margin: 0 0 1rem 0;
  opacity: .92;
}

.pages ul {
  padding-left: 1.3em;
  margin: 0 0 1.2rem 0;
  display: flex;
  flex-direction: column;
  gap: .45em;
}

.pages li {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.65;
  opacity: .92;
  position: relative;
  padding-left: .35em;
}

.pages li::marker {
  color: var(--primary);
  font-size: 1.11em;
}

.pages a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
  transition: color .17s;
  word-break: break-all;
}

.pages a:hover {
  color: var(--accent);
}

@media (max-width: 700px) {
  .pages .container {
    padding: 1.4rem 1rem 1.3rem 1rem;
    max-width: 97vw;
  }
  .pages h1 { font-size: 1.29rem;}
  .pages h2 { font-size: 1rem;}
}
