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

/* style.css - Загальний стиль body */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Inter:400,500,700&display=swap');

.body {
    font-family: 'Inter', Arial, sans-serif;
    background-color: #F5F7FA;
    color: #222C35;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-size: 18px;
    letter-spacing: 0.01em;
    line-height: 1.65;
    box-sizing: border-box;
    transition: background 0.5s;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', Arial, sans-serif;
    letter-spacing: 0.02em;
    font-weight: 700;
}

a {
    color: #3861FB;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover, a:focus {
    color: #2ECDA7;
}

::-webkit-scrollbar {
    width: 10px;
    background: #E1E8ED;
}
::-webkit-scrollbar-thumb {
    background: #3861FB;
    border-radius: 6px;
}
.header {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 14px rgba(34,44,53,0.04);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: headerAppear 0.9s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes headerAppear {
  from { opacity:0; transform:translateY(-30px);}
  to { opacity:1; transform:translateY(0);}
}
.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1220px;
    margin: 0 auto;
    padding: 18px 3vw;
}
.header__logo {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3861FB;
    display: flex;
    align-items: center;
    letter-spacing: 0.02em;
    gap: 14px;
    text-decoration: none;
    transition: color .2s;
    position: relative;
}
.header__logo-icon {
    font-size: 1.4em;
    color: #2ECDA7;
    animation: spin 3.6s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0);}
  100% { transform: rotate(360deg);}
}
.header__flag {
    font-size: 1.4em;
    margin-left: 6px;
    filter: drop-shadow(0 1px 2px #FFD24C99);
    animation: flagWave 1.6s infinite ease-in-out;
    display: inline-block;
}
@keyframes flagWave {
  0%, 100% { transform: rotate(0);}
  25% { transform: rotate(10deg);}
  75% { transform: rotate(-12deg);}
  50% { transform: rotate(8deg);}
}
.header__nav {}
.header__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 38px;
}
.header__item {}
.header__link {
    display: flex;
    align-items: center;
    font-size: 1.08rem;
    font-family: inherit;
    color: #222C35;
    font-weight: 500;
    padding: 6px 15px 6px 10px;
    border-radius: 1.4em;
    transition: background 0.2s, color 0.2s;
    gap: 10px;
    position: relative;
}
.header__link:hover, .header__link:focus {
    background: #F5F7FA;
    color: #3861FB;
    box-shadow: 0 1px 8px #3861FB0A;
}
.header__icon {
    font-size: 1.18em;
    color: #2ECDA7;
    margin-right: 3px;
    transition: color .2s;
}
.header__link:hover .header__icon, .header__link:focus .header__icon {
    color: #FFD24C;
}
@media (max-width: 820px) {
  .header__container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 15px 3vw;
  }
  .header__list {
    gap: 20px;
    flex-wrap: wrap;
  }
  .header__logo { font-size: 1.3rem; }
}
@media (max-width: 540px) {
  .header__container {
    padding: 10px 2vw;
  }
  .header__list { gap: 12px; }
}
.footer {
    background: linear-gradient(97deg, #3861FB 0%, #2ECDA7 100%);
    color: #fff;
    padding: 48px 0 0 0;
    font-size: 1rem;
    position: relative;
    box-shadow: 0 -3px 16px #3861FB15;
    margin-top: 0;
}
.footer__container {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 38px;
    padding: 0 3vw;
}
.footer__col { 
    display: flex; 
    flex-direction: column; 
    gap: 13px;
}
.footer__col--logo {
    gap: 16px;
}
.footer__logo {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD24C;
    display: flex;
    align-items: center;
    letter-spacing: 0.02em;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 2px;
}
.footer__logo-icon {
    font-size: 1.4em;
    color: #fff;
    animation: spin 2.5s linear infinite;
}
.footer__flag {
    font-size: 1.1em;
    margin-left: 5px;
    animation: flagWave 1.4s infinite ease-in-out;
    display: inline-block;
}
.footer__slogan {
    color: #eaf6ff;
    font-size: 1rem;
    opacity: 0.88;
    margin-bottom: 12px;
    margin-top: 0;
    line-height: 1.55;
}
.footer__title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #FFD24C;
    letter-spacing: 0.01em;
}
.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; flex-direction: column; gap: 7px;
}
.footer__list a {
    color: #fff;
    text-decoration: none;
    transition: color .2s;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.98;
    font-size: 1rem;
}
.footer__list a:hover, .footer__list a:focus {
    color: #FFD24C;
    opacity: 1;
}
.footer__contacts {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; flex-direction: column; gap: 10px;
    font-size: 1rem;
}
.footer__contacts li {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.94;
}
.footer__contacts i {
    color: #FFD24C;
    font-size: 1.08em;
}
.footer__contacts a, .footer__contacts span {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color .2s;
}
.footer__contacts a:hover, .footer__contacts a:focus {
    color: #2ECDA7;
}
.footer__bottom {
    border-top: 1.5px solid #ffffff22;
    margin-top: 38px;
    padding: 13px 3vw 10px 3vw;
    text-align: center;
    color: #FFD24C;
    font-size: 0.98rem;
    background: linear-gradient(93deg, #2ECDA7cc 0%, #3861FBcc 100%);
    letter-spacing: 0.03em;
}
@media (max-width: 900px) {
    .footer__container {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}
@media (max-width: 620px) {
    .footer__container {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .footer__col--logo {
        align-items: flex-start;
    }
}
.hero {
    position: relative;
    min-height: 74vh;
    padding: 76px 0 36px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(123deg, #F5F7FA 50%, #e3edfa 100%);
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
#heroWave {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    width: 100%; height: 220px;
    opacity: 0.77;
}
.hero__dots {
    position: absolute;
    right: 4vw; top: 16%;
    width: 80px; height: 120px;
    pointer-events: none;
}
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1220px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
    flex-wrap: wrap;
}
.hero__textblock {
    flex: 1 1 400px;
    min-width: 260px;
}
.hero__title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.6rem;
    color: #222C35;
    margin: 0 0 22px 0;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg, #3861FB 20%, #2ECDA7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero__accent {
    color: #FFD24C;
    -webkit-text-fill-color: initial;
    background: none;
}
.hero__subtitle {
    font-size: 1.15rem;
    color: #3861FB;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 500;
    margin-bottom: 32px;
    min-height: 26px;
    letter-spacing: 0.01em;
}
.hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.08rem;
    font-family: inherit;
    background: linear-gradient(90deg, #3861FB 60%, #FFD24C 100%);
    color: #fff;
    font-weight: 600;
    padding: 13px 34px;
    border-radius: 2em;
    box-shadow: 0 3px 18px #3861FB17;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .22s, transform .13s;
    position: relative;
    overflow: hidden;
}
.hero__btn i { font-size: 1.17em; }
.hero__btn:hover, .hero__btn:focus {
    background: linear-gradient(90deg, #FFD24C 20%, #2ECDA7 100%);
    color: #222C35;
    transform: translateY(-3px) scale(1.04);
}
.hero__imgwrap {
    flex: 1 1 340px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
    min-width: 220px;
    max-width: 340px;
}
.hero__img {
    width: 100%;
    max-width: 320px;
    border-radius: 2em;
    box-shadow: 0 10px 28px #3861FB1f;
    z-index: 2;
    transition: transform .22s, box-shadow .22s;
}
.hero__imgwrap:hover .hero__img, .hero__imgwrap:focus-within .hero__img {
    transform: scale(1.04) rotate(-2.2deg);
    box-shadow: 0 18px 32px #FFD24C1f, 0 1px 20px #3861FB1c;
}
.hero__img-bubble {
    position: absolute;
    bottom: 10px; left: -24px;
    width: 78px; height: 78px;
    background: radial-gradient(circle at 25% 55%, #2ECDA7 0%, #FFD24C 80%, transparent 100%);
    opacity: 0.54;
    filter: blur(7px);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: bubblePulse 2.8s infinite alternate ease-in-out;
}
@keyframes bubblePulse {
  0% { transform: scale(0.94);}
  100% { transform: scale(1.08);}
}
@media (max-width: 920px) {
  .hero__content { flex-direction: column; gap: 32px; align-items: flex-start;}
  .hero__imgwrap { align-self: center; }
}
@media (max-width: 600px) {
  .hero { padding: 36px 0 18px 0; }
  .hero__title { font-size: 1.46rem; }
  .hero__btn { font-size: 1rem; padding: 11px 22px; }
  .hero__img { max-width: 190px; }
}
.hero__dot {
    position: absolute;
    background: #FFD24C;
    border-radius: 50%;
    opacity: 0.58;
    animation: dotFloat 2.7s infinite alternate;
    box-shadow: 0 0 6px #3861FB33;
    transition: background .18s;
}
@keyframes dotFloat {
  0% { transform: translateY(0);}
  100% { transform: translateY(-12px) scale(1.07);}
}
.stories {
    padding: 56px 0 36px 0;
    background: linear-gradient(120deg, #e3edfa 0%, #F5F7FA 100%);
    position: relative;
    z-index: 2;
}
.stories__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stories__title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2rem;
    color: #3861FB;
    margin-bottom: 38px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 14px;
    letter-spacing: 0.01em;
}
.stories__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    width: 100%;
    margin-bottom: 30px;
}
@media (max-width: 980px) {
  .stories__grid { grid-template-columns: 1fr 1fr; gap: 26px;}
}
@media (max-width: 600px) {
  .stories__grid { grid-template-columns: 1fr; gap: 20px;}
  .stories__title { font-size: 1.2rem;}
}
.story-card {
    background: #fff;
    border-radius: 2em;
    box-shadow: 0 2px 24px #2ECDA70c, 0 1px 8px #3861FB14;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 26px 22px 22px 22px;
    position: relative;
    min-width: 0;
    cursor: pointer;
    transform: translateY(30px) scale(0.97);
    opacity: 0;
    transition: box-shadow .22s, transform .22s, opacity .28s;
    will-change: transform, box-shadow, opacity;
}
.story-card__icon {
    font-size: 2.3em;
    color: #2ECDA7;
    margin-right: 2px;
    margin-top: 2px;
    filter: drop-shadow(0 1px 4px #FFD24C77);
    transition: color .18s, filter .18s;
}
.story-card__content { flex: 1; min-width: 0;}
.story-card__name {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    color: #222C35;
    font-size: 1.16rem;
    margin-bottom: 2px;
    letter-spacing: 0.01em;
}
.story-card__role {
    color: #3861FB;
    font-size: 0.97rem;
    font-weight: 500;
    margin-bottom: 9px;
    opacity: 0.8;
}
.story-card__quote {
    color: #222C35;
    font-size: 1.08rem;
    font-style: italic;
    opacity: 0.96;
    transition: color .14s;
}
.story-card:hover, .story-card:focus-within {
    box-shadow: 0 9px 40px #FFD24C19, 0 3px 20px #3861FB0e;
    transform: scale(1.045) rotate(-1.5deg) translateY(-7px);
    z-index: 2;
}
.story-card:hover .story-card__icon {
    color: #FFD24C;
    filter: drop-shadow(0 0px 8px #3861FB88);
}
.story-card:hover .story-card__quote {
    color: #2ECDA7;
}
.stories__btn {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.08rem;
    background: linear-gradient(90deg, #3861FB 70%, #2ECDA7 100%);
    color: #fff;
    font-weight: 600;
    padding: 13px 38px;
    border-radius: 2em;
    box-shadow: 0 3px 18px #3861FB18;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .22s, transform .13s;
    position: relative;
    overflow: hidden;
}
.stories__btn i { font-size: 1.19em; }
.stories__btn:hover, .stories__btn:focus {
    background: linear-gradient(90deg, #FFD24C 20%, #2ECDA7 100%);
    color: #222C35;
    transform: translateY(-3px) scale(1.04);
}
.techdays {
    padding: 56px 0 36px 0;
    background: #fff;
    position: relative;
    z-index: 2;
}
.techdays__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.techdays__title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2rem;
    color: #3861FB;
    margin-bottom: 38px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 14px;
    letter-spacing: 0.01em;
}
.techdays__timeline {
    display: flex;
    gap: 32px;
    width: 100%;
    justify-content: space-between;
    position: relative;
}
@media (max-width: 990px) {
  .techdays__timeline { flex-direction: column; gap: 24px; }
}
.techdays__step {
    background: linear-gradient(103deg, #2ECDA70e 0%, #3861FB09 100%);
    border-radius: 1.5em;
    box-shadow: 0 1px 14px #2ECDA70d;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 22px 30px;
    position: relative;
    min-width: 0;
    opacity: 0;
    transform: translateY(36px) scale(0.97);
    transition: box-shadow .22s, transform .22s, opacity .27s;
    will-change: transform, box-shadow, opacity;
}
.techdays__step.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.techdays__iconwrap {
    min-width: 52px;
    min-height: 52px;
    background: linear-gradient(130deg, #FFD24C 35%, #2ECDA7 100%);
    border-radius: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 12px #FFD24C19;
    font-size: 2em;
    color: #3861FB;
    margin-right: 6px;
    animation: iconPulse 2.1s infinite alternate;
}
@keyframes iconPulse {
  0% { box-shadow: 0 1px 8px #FFD24C13;}
  100% { box-shadow: 0 4px 28px #2ECDA728;}
}
.techdays__heading {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.14rem;
    color: #222C35;
    margin-bottom: 4px;
}
.techdays__desc {
    font-size: 1.05rem;
    color: #3861FB;
    opacity: 0.85;
    line-height: 1.4;
}
@media (max-width: 700px) {
    .techdays__step { flex-direction: column; align-items: flex-start; padding: 18px 14px; }
    .techdays__iconwrap { margin-bottom: 7px; }
}
.about {
    padding: 58px 0 38px 0;
    background: linear-gradient(120deg, #F5F7FA 30%, #e3edfa 100%);
    position: relative;
    z-index: 2;
}
.about__container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 3vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 46px;
    flex-wrap: wrap;
}
.about__textblock {
    flex: 1 1 400px;
    min-width: 270px;
    opacity: 0;
    transform: translateY(36px) scale(0.97);
    transition: opacity .6s, transform .7s;
}
.about__title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2rem;
    color: #3861FB;
    margin-bottom: 26px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 13px;
    letter-spacing: 0.01em;
}
.about__desc {
    color: #222C35;
    font-size: 1.17rem;
    opacity: 0.91;
    margin-bottom: 20px;
    line-height: 1.6;
}
.about__values {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.about__values li {
    font-size: 1.08rem;
    color: #3861FB;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}
.about__icon {
    background: linear-gradient(90deg, #2ECDA7 60%, #FFD24C 100%);
    color: #fff;
    font-size: 1.4em;
    border-radius: 0.6em;
    padding: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 10px #2ECDA730;
    margin-right: 6px;
    transition: background .23s;
}
.about__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.08rem;
    background: linear-gradient(90deg, #3861FB 70%, #FFD24C 100%);
    color: #fff;
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 2em;
    box-shadow: 0 3px 18px #3861FB15;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .22s, transform .13s;
    position: relative;
    overflow: hidden;
    margin-top: 8px;
}
.about__btn:hover, .about__btn:focus {
    background: linear-gradient(90deg, #FFD24C 20%, #2ECDA7 100%);
    color: #222C35;
    transform: translateY(-3px) scale(1.04);
}
.about__imgwrap {
    flex: 1 1 330px;
    min-width: 220px;
    max-width: 340px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about__img {
    width: 100%;
    max-width: 320px;
    border-radius: 2em;
    box-shadow: 0 7px 32px #3861FB17;
    z-index: 2;
    transition: transform .24s, box-shadow .22s;
    position: relative;
}
.about__imgwrap:hover .about__img, .about__imgwrap:focus-within .about__img {
    transform: scale(1.035) rotate(-1.5deg);
    box-shadow: 0 16px 30px #FFD24C22, 0 1px 16px #2ECDA714;
}
.about__img-glow {
    position: absolute;
    bottom: 14px; left: 18px;
    width: 88px; height: 88px;
    background: radial-gradient(circle at 38% 55%, #2ECDA7 0%, #FFD24C 80%, transparent 100%);
    opacity: 0.48;
    filter: blur(13px);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: bubblePulse 2.8s infinite alternate;
}
@media (max-width: 900px) {
    .about__container { flex-direction: column; gap: 32px; }
    .about__imgwrap { align-self: center; }
    .about__textblock { width: 100%; }
}
@media (max-width: 600px) {
    .about__title { font-size: 1.13rem; }
    .about__desc { font-size: 1.02rem; }
    .about__img { max-width: 180px; }
}
.faq {
    padding: 54px 0 36px 0;
    background: linear-gradient(120deg, #e3edfa 0%, #F5F7FA 100%);
    position: relative;
    z-index: 2;
}
.faq__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 3vw;
}
.faq__title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2rem;
    color: #3861FB;
    margin-bottom: 36px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 13px;
    letter-spacing: 0.01em;
    justify-content: flex-start;
}
.faq__list {
    display: flex;
    flex-direction: column;
    gap: 17px;
}
.faq__item {
    background: #fff;
    border-radius: 1.4em;
    box-shadow: 0 2px 18px #2ECDA710, 0 1px 8px #3861FB08;
    overflow: hidden;
    transition: box-shadow .18s;
}
.faq__item.open {
    box-shadow: 0 6px 28px #FFD24C1e, 0 2px 16px #2ECDA711;
}
.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    background: none;
    border: none;
    outline: none;
    font-size: 1.14rem;
    font-family: 'Inter', Arial, sans-serif;
    color: #222C35;
    font-weight: 600;
    padding: 19px 24px 19px 18px;
    cursor: pointer;
    text-align: left;
    gap: 13px;
    transition: color .15s;
    position: relative;
}
.faq__icon {
    background: linear-gradient(90deg, #FFD24C 40%, #2ECDA7 100%);
    color: #fff;
    font-size: 1.23em;
    border-radius: 0.55em;
    padding: 7px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 9px #FFD24C1c;
    margin-right: 7px;
    transition: background .19s;
}
.faq__toggle {
    margin-left: auto;
    display: flex;
    align-items: center;
    color: #2ECDA7;
    font-size: 1.25em;
    transition: transform .23s, color .2s;
}
.faq__item.open .faq__toggle i {
    transform: rotate(180deg);
    color: #FFD24C;
}
.faq__answer {
    max-height: 0;
    opacity: 0;
    padding: 0 24px 0 58px;
    font-size: 1.03rem;
    color: #3861FB;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    transition: max-height .43s cubic-bezier(.44,.44,.04,1.02), opacity .3s;
    overflow: hidden;
    line-height: 1.5;
}
.faq__item.open .faq__answer {
    padding: 10px 24px 18px 58px;
    max-height: 280px;
    opacity: 1;
    transition: max-height .49s cubic-bezier(.4,.74,.09,.98), opacity .31s;
}
@media (max-width: 600px) {
    .faq__title { font-size: 1.18rem;}
    .faq__question { font-size: 1.01rem; padding: 16px 12px 16px 9px;}
    .faq__answer { font-size: 0.97rem; padding-left: 38px;}
}
.contact {
    padding: 60px 0 40px 0;
    background: linear-gradient(120deg, #e3edfa 0%, #F5F7FA 100%);
}
.contact__container {
    max-width: 520px;
    margin: 0 auto;
    padding: 0 3vw;
}
.contact__title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2rem;
    color: #3861FB;
    margin-bottom: 34px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 13px;
    letter-spacing: 0.01em;
    justify-content: flex-start;
}
.contact__form {
    background: #fff;
    border-radius: 1.5em;
    box-shadow: 0 2px 18px #2ECDA710, 0 1px 8px #3861FB08;
    padding: 34px 24px 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 21px;
    position: relative;
}
.contact__row {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.contact__row label {
    font-weight: 500;
    color: #222C35;
    font-size: 1.03rem;
    font-family: 'Montserrat', Arial, sans-serif;
    margin-bottom: 0;
}
.contact__row input,
.contact__row textarea {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.06rem;
    padding: 11px 14px;
    border-radius: 1em;
    border: 1.5px solid #2ECDA7;
    outline: none;
    background: #F5F7FA;
    color: #222C35;
    transition: border .19s, box-shadow .18s;
    resize: none;
}
.contact__row input:focus,
.contact__row textarea:focus {
    border-color: #3861FB;
    box-shadow: 0 1px 9px #3861FB18;
}
.contact__row--captcha label {
    font-weight: 700;
    color: #3861FB;
    letter-spacing: 0.01em;
}
.contact__btn {
    margin-top: 7px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.08rem;
    background: linear-gradient(90deg, #3861FB 70%, #FFD24C 100%);
    color: #fff;
    font-weight: 600;
    padding: 13px 38px;
    border-radius: 2em;
    box-shadow: 0 3px 18px #3861FB18;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .22s, transform .13s;
    position: relative;
    overflow: hidden;
}
.contact__btn i { font-size: 1.19em; }
.contact__btn:hover, .contact__btn:focus {
    background: linear-gradient(90deg, #FFD24C 20%, #2ECDA7 100%);
    color: #222C35;
    transform: translateY(-3px) scale(1.04);
}
.contact__success, .contact__error {
    display: none;
    font-size: 1.12rem;
    margin-top: 12px;
    text-align: center;
    border-radius: 1em;
    padding: 9px 0;
    opacity: 0;
    transition: opacity .5s;
}
.contact__success {
    color: #fff;
    background: linear-gradient(90deg, #2ECDA7 70%, #FFD24C 100%);
    font-weight: 600;
    box-shadow: 0 2px 12px #2ECDA711;
}
.contact__error {
    color: #fff;
    background: linear-gradient(90deg, #FF3E55 70%, #FFD24C 100%);
    font-weight: 500;
    box-shadow: 0 2px 10px #FFD24C11;
}
.contact__success.show,
.contact__error.show {
    display: block;
    opacity: 1;
    animation: popIn 0.7s cubic-bezier(.6,.66,.46,1.32);
}
@keyframes popIn {
    0% {transform: scale(0.7);}
    80% {transform: scale(1.04);}
    100% {transform: scale(1);}
}
.cookie-popup {
    position: fixed;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    z-index: 9999;
    background: #fff;
    border-radius: 1.3em;
    box-shadow: 0 4px 36px #3861FB1c;
    padding: 18px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.04rem;
    color: #222C35;
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s, transform .5s;
    max-width: 92vw;
    min-width: 220px;
}
.cookie-popup.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.cookie-popup__content {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cookie-popup__icon {
    color: #FFD24C;
    font-size: 1.9em;
    margin-right: 6px;
    filter: drop-shadow(0 1px 8px #FFD24C1a);
    animation: cookieBounce 2.7s infinite alternate;
}
@keyframes cookieBounce {
    0% { transform: scale(1) rotate(-3deg);}
    60% { transform: scale(1.13) rotate(4deg);}
    100% { transform: scale(1) rotate(-3deg);}
}
.cookie-popup__link {
    color: #3861FB;
    text-decoration: underline dotted;
    font-weight: 500;
    transition: color .2s;
}
.cookie-popup__link:hover { color: #2ECDA7; }
.cookie-popup__btn {
    background: linear-gradient(90deg, #3861FB 70%, #FFD24C 100%);
    color: #fff;
    font-family: inherit;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    border-radius: 2em;
    padding: 10px 25px;
    margin-left: 16px;
    box-shadow: 0 2px 14px #2ECDA70a;
    cursor: pointer;
    transition: background .19s, color .15s, transform .13s;
}
.cookie-popup__btn:hover, .cookie-popup__btn:focus {
    background: linear-gradient(90deg, #FFD24C 20%, #2ECDA7 100%);
    color: #222C35;
    transform: scale(1.07);
}
@media (max-width: 540px) {
    .cookie-popup, .cookie-popup__content { gap: 8px; padding: 13px 9px;}
    .cookie-popup__btn { padding: 8px 15px; font-size: 0.99rem;}
    .cookie-popup__icon { font-size: 1.1em;}
}
.pages {
    padding: 58px 0 58px 0;
    background: linear-gradient(120deg, #F5F7FA 30%, #e3edfa 100%);
    min-height: 70vh;
}
.container {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 3vw;
    background: #fff;
    border-radius: 1.7em;
    box-shadow: 0 3px 22px #3861FB12, 0 1px 8px #2ECDA70d;
    padding-top: 38px;
    padding-bottom: 38px;
    position: relative;
    animation: policyPopIn 1.2s cubic-bezier(.52,.84,.25,1.15);
}
@keyframes policyPopIn {
    0% {opacity: 0; transform: translateY(32px) scale(0.98);}
    80% {opacity: 1; transform: translateY(-2px) scale(1.02);}
    100% {opacity: 1; transform: translateY(0) scale(1);}
}
.pages h1, .pages h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #3861FB;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 22px;
    letter-spacing: 0.01em;
}
.pages h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    line-height: 1.18;
    background: linear-gradient(90deg, #3861FB 30%, #2ECDA7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pages h2 {
    font-size: 1.28rem;
    margin-top: 36px;
    margin-bottom: 14px;
    color: #FFD24C;
    background: none;
    -webkit-text-fill-color: initial;
}
.pages p, .pages ul, .pages ol {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.07rem;
    color: #222C35;
    line-height: 1.72;
    margin-bottom: 18px;
    opacity: 0.94;
}
.pages ul, .pages ol {
    margin-bottom: 20px;
    padding-left: 24px;
}
.pages li {
    margin-bottom: 8px;
    padding-left: 2px;
    position: relative;
}
.pages li strong {
    color: #2ECDA7;
    font-weight: 600;
}
.pages a {
    color: #3861FB;
    text-decoration: underline dotted;
    transition: color .17s;
    font-weight: 500;
}
.pages a:hover {
    color: #2ECDA7;
}
@media (max-width: 700px) {
    .container { padding: 22px 7vw 22px 7vw; }
    .pages h1 { font-size: 1.19rem; }
    .pages h2 { font-size: 1.05rem; }
}
