﻿body {
    font-family: "SF Pro Display";
}

/* ============== Constructor alternating backgrounds ============== */
.main > section:nth-of-type(odd)  { background: #ffffff; }
.main > section:nth-of-type(even) { background: #F4F4F4; }
.main > section.cta-inline        { background: var(--color-accent); }

.case > section:nth-of-type(odd)  { background: #F4F4F4; }
.case > section:nth-of-type(even) { background: #fff; }

/* ============== Layout ============== */
.container {
    max-width: var(--container);
    padding: 0 var(--container-pad);
    margin: 0 auto;
}


.page { margin: 0 auto; }
.section { padding: 60px 0; }
.section__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); }


/* ============== Wysiwyg block ============== */
.wysiwyg-block { padding: 30px 0 100px; }
.wysiwyg-block:nth-child(n+3) {
  padding: 100px 0 100px;
}
.wysiwyg-block__container { margin: 0 auto; padding: 0 var(--container-pad); max-width: var(--container); }
.wysiwyg-block__body h1 { font-size: 40px; margin-bottom: 30px; font-weight: 700; }
.wysiwyg-block__body { font-size: 20px;line-height: normal; color: var(--color-text); }
.wysiwyg-block__body h2 { font-size: 32px; margin-top: 60px; margin-bottom: 20px; }
.wysiwyg-block__body h2:first-child { margin-top: 0; }
.wysiwyg-block__body h3 { font-size: 20px; margin-bottom: 20px; }
.wysiwyg-block__body p { margin-bottom: 2px; color: #5C5C5C; line-height: normal; }
.wysiwyg-block__body ul, .wysiwyg-block__body ol { margin: 0 0 18px 30px; }
.wysiwyg-block__body ul { list-style: disc; }
.wysiwyg-block__body ol { list-style: decimal; }
.wysiwyg-block__body li { margin-bottom: 6px; color: #5C5C5C; }
.wysiwyg-block__body a { text-decoration: underline; text-underline-offset: 3px; }
.wysiwyg-block__body p img {
    width: 100%;
}
.wysiwyg-block__body .table-wrap {
    overflow-x: auto;
    margin-bottom: 60px;
    margin-top: 60px;
    border-radius: 10px;
    background-color: #fff;
}
.wysiwyg-block__body table {
    width: 100%;
    min-width: max-content;
    border-collapse: collapse;
    margin-bottom: 0;
    background: #fff;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}
.wysiwyg-block__body th,
.wysiwyg-block__body td { min-width: 236px; }
.wysiwyg-block__body th {
    padding: 13px 20px 13px;
    text-align: left;
    background: #FFF14E;
    color: #121212;
    font-family: "SF Pro Display";
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    border: none;
}
.wysiwyg-block__body th:first-child { border-radius: 10px 0 0 0; }
.wysiwyg-block__body th:last-child  { border-radius: 0 10px 0 0; padding-right: 0; }
.wysiwyg-block__body td {
    padding: 13px 20px 13px;
    text-align: left;
    color: #121212;
    font-family: "SF Pro Display";
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
    border: none;
    border-bottom: 1px solid #ccc;
}
.wysiwyg-block__body td:last-child { padding-right: 0; }
.wysiwyg-block__body tr:last-child td { border-bottom: none; }

.wysiwyg-block__body tr {
    padding-left: 20px;
}

.wysiwyg-block  #first-section {
      margin-top: 100px ;
}
@media (max-width: 768px){
    .wysiwyg-block  #first-section {
          margin-top: 40px ;
    }
}

/* ============== Hero ============== */
.hero { padding: 60px 0 100px; }
.hero__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "title  media"
        "body   media";
    gap: 0 20px;
    align-items: start;
    margin-bottom: 60px;
}
.hero__title { grid-area: title; }
.hero__media { grid-area: media; align-self: center; }
.hero__body  { grid-area: body; }
.hero__title { font-size: 40px; line-height: normal; margin-bottom: 20px; font-family: "SF Pro Display"; font-weight: 700; }
.hero__subtitle { font-size: 20px; color: var(--color-text-secondary); font-family: "SF Pro Display" ;margin-bottom: 20px; }
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 10px;
    background-color: #3140a5;
    border-radius: 100px;
    margin-bottom: 20px;
}
.hero__badge-icon { width: 25px; height: 25px; flex-shrink: 0; }
.hero__badge-text { color: #fff; font-size: 16px; font-weight: 500; font-family: "SF Pro Display"; white-space: nowrap; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__logos { display: flex; flex-wrap: wrap; gap: 24px; width: 100%; align-items: center; justify-content: space-between; mix-blend-mode: luminosity; }
.hero__logos img { max-height: 82px; opacity: .8; }
.hero__media img { width: 100%; border-radius: var(--radius-lg); }
.hero__logos-wrap { display: flex; gap: 24px; align-items: center; }
.logos-hero {
    overflow: hidden;
}
.logos-hero:not(:last-child){margin-bottom: 60px;}
.hero__logos[aria-hidden="true"] { display: none; }


.btn-text--mobile { display: none; }

/* ============== CTA ============== */
.cta { padding: 60px 0; }
.cta__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); text-align: center; }
.cta__title { font-size: 36px;  margin-bottom: 30px; line-height: normal; }
.cta__text { font-size: 20px; color: var(--color-text-secondary); margin: 0 auto 40px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ============== FAQ ============== */
.faq { padding: 100px 0; }
.faq__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; }
.faq__title { text-align: center; }
.faq__list { display: flex; flex-direction: column; gap: 20px; width: 100%; }
.main .faq-groups .faq__list .faq__item {
    background-color: #F4F4F4;;
}
.faq__item { background: #fff; border-radius: 20px; padding: 13px 20px; }
.main > section:nth-of-type(odd) .faq__item { background: #F4F4F4; }
.main > section:nth-of-type(even) .faq__item { background: #fff; }

.main > section:nth-of-type(even) .reviews__card { background: #fff; }
.main > .case > section:nth-of-type(odd) .reviews__card { background: #fff; }


.faq__question {
    font-size: 20px; font-weight: 600; cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    color: #121212;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__icon { width: 40px; height: 40px; border-radius: 20px; background: #FFF14E; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .2s; }
.faq__icon-svg { width: 19px; height: 19px; }
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__answer { margin-top: 10px; padding-top: 15px; border-top: 1px solid #e0e0e0; font-size: 18px; color: #5b5b5b; line-height: normal; overflow: hidden; }

/* ============== Reviews ============== */
.reviews { padding: 100px 0; }
.reviews__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; }
.reviews__title { text-align: center; }
.reviews__slider { display: flex; flex-direction: column; align-items: center; gap: 30px; width: 100%; }
.reviews__row { display: flex; align-items: center; gap: 50px; width: 100%; }
.reviews__viewport { flex: 1; min-width: 0; overflow: hidden; }
.reviews__track { display: flex; transition: transform 0.35s ease; }
.reviews__slide { min-width: 100%; }
.reviews__card { background: #f3f3f3; border-radius: 20px; padding: 30px; display: flex; flex-direction: column; gap: 20px; }
.reviews__author { display: flex; align-items: center; gap: 20px; }
.reviews__avatar { width: 100px; height: 100px; object-fit: cover; flex-shrink: 0; }
.reviews__name { font-size: 28px; font-weight: 600; color: #121212; }
.reviews__position { font-size: 16px; font-weight: 500; color: #121212; margin-top: 10px; }
.reviews__body { display: flex; align-items: flex-end; gap: 15px; }
.reviews__body-inner { display: flex; align-items: flex-start; gap: 15px; flex: 1; }
.reviews__quote-icon { width: 40px; height: 40px; flex-shrink: 0; }
.reviews__quote-icon--close { transform: rotate(180deg); }
.reviews__quote-icon--open { margin-top: auto; }
.reviews__text { flex: 1; font-size: 20px; font-weight: 400; color: #121212; line-height: normal; margin: 0; }
.reviews__text p { margin: 0 0 1em; }
.reviews__text p:last-child { margin-bottom: 0; }
.reviews__btn { width: 50px; height: 50px; border-radius: 50%; border: none; background: #F6F6F6; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: background .2s; }
.reviews__btn:hover { background: #FFF14E; }
.reviews__dots { display: none; }

/* ============== Benefits ============== */
.benefits { padding: 100px 0; }
.benefits:nth-of-type(even) .benefits__item {
    background: #fff;
}
.benefits__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; }
.benefits__title { text-align: center; margin-bottom: 0; }
.benefits__text { color: var(--color-text-secondary); text-align: center; margin-bottom: 0; font-size: 20px; }
.benefits__header { display: flex; flex-direction: column; align-items: center; gap: 30px; width: 100%; }
.benefits__list { display: grid; grid-template-columns: repeat(3 , 1fr);; justify-content: center; gap: 20px; width: 100%; }
.benefits--2col .benefits__list { grid-template-columns: repeat(2, 1fr); }
@media (min-width:768px){
    .benefits__list:has(> :nth-child(4):last-child) { grid-template-columns: repeat(2, 1fr); }
}

.benefits--2col .benefits__item { min-height: 200px;}
.benefits__item { background: #f3f3f3; padding: 20px; border-radius: 10px; display: flex; flex-direction: column; align-items: flex-start; }
.benefits__icon { width: 50px; height: 50px; flex-shrink: 0; margin-bottom: 20px; }
.benefits__item-title { font-size: 20px; font-family: var(--desktop-title-2-font-family); font-weight: 600; margin-bottom: 10px;}
.benefits__item-text { color: var(--color-text-secondary); line-height: normal; font-size: 18px; }
.benefits__item--center { align-items: center; }
.benefits__item--center .benefits__item-title { text-align: center; }
.benefits__item--center .benefits__item-text { text-align: center; }


/* ============== Values (Вакансии) ============== */
.values { padding: 100px 0; background: #f3f3f3; }
.values__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; }
.values__header { display: flex; flex-direction: column; align-items: center; gap: 30px; width: 100%; }
.values__title { text-align: center; margin-bottom: 0; }
.values__text { color: var(--color-text-secondary); text-align: center; margin-bottom: 0; font-size: 20px; }
.values__list { display: flex; align-items: stretch; gap: 20px; width: 100%; list-style: none; padding: 0; margin: 0; }
.values__item { flex: 1; background: #fff; padding: 20px; border-radius: 10px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.values__icon { width: 50px; height: 50px; flex-shrink: 0; }
.values__item-title { font-size: 20px; font-family: var(--desktop-title-2-font-family); font-weight: 600; margin-bottom: 0; }
.values__item-text { color: var(--color-text-secondary); font-size: 16px; line-height: normal; margin-bottom: 0; font-weight: 300; }

/* ============== Resume CTA (Вакансии) ============== */
.resume-cta { padding:60px 0; }
.resume-cta__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 30px; }
.resume-cta__title { text-align: center; margin-bottom: 0; }
.resume-cta__text { color: var(--color-text-secondary); text-align: center; margin-bottom: 0; font-size: 20px; max-width: 780px; }

/* ============== Clients ============== */
.clients { padding: 100px 0; }
.clients:nth-of-type(odd) .clients__item--white { background-color: rgba(244, 244, 244, 1); }
.clients__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; }
.clients__title { text-align: center; }
.clients__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; list-style: none; padding: 0; margin: 0; }
.clients__item { display: flex; flex-direction: column; gap: 10px; padding: 20px; border-radius: 10px; min-height: 112px; min-width: 280px; flex-grow: 1; }
.clients__item--white { background: #fff; }
.clients__item--yellow { background: #fff04e; }
.clients__item--dark { background: #121212; }
.clients__value { font-size: 40px; font-weight: 700; line-height: normal; color: #121212; }
.clients__item--dark .clients__value { color: #fff04e; }
.clients__label { font-size: 20px; color: #5b5b5b; line-height: normal; }
.clients__item--dark .clients__label { color: #fff; }

/* ============== Proof ============== */
.proof {
    padding: 100px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.proof__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 100%;
}
.proof__intro {
    margin: 0;
    text-align: center;
    color: #5b5b5b;
    font-family: "SF Pro Display", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: normal;
}
.proof__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    gap: 20px;
    width: 100%;
}
.proof__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;
    border-radius: 10px;
}
.proof__item--dark   { background: #121212; }
.proof__item--gray   { background: #e8e8e8; }
.proof__item--light  { background: #ffffff; }
.proof__item--accent { background: #fff04e; }

.proof__head {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}
.proof__value {
    font-family: "SF Pro Display", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: normal;
    color: #121212;
}
.proof__item--dark .proof__value { color: #fff04e; }

.proof__label {
    font-family: "SF Pro Display", Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: normal;
    color: #121212;
}
.proof__item--dark .proof__label { color: #fff04e; }

.proof__desc {
    margin: 0;
    font-family: "SF Pro Display", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #5b5b5b;
}
.proof__item--dark .proof__desc { color: #ffffff; }

.proof__total {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}
.proof__total-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background: #fff04e;
    border-radius: 100px;
    flex: 0 0 auto;
}
.proof__total-value,
.proof__total-label {
    font-family: "SF Pro Display", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: normal;
    color: #121212;
}
.proof__total-value { white-space: nowrap; }

.page-template-page-kejsy .hero {
    padding-bottom: 0;
}


/* ============== How it works ============== */
.how-it-works { padding: 100px 0; }
.how-it-works:nth-of-type(odd) {
    .how-it-works__step {
        background-color: #F4F4F4;;
    }
}
.how-it-works__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; }
.how-it-works__head { display: flex; flex-direction: column; align-items: center; gap: 30px; width: 100%; }
.how-it-works__title { text-align: center; margin-bottom: 0;  }
.how-it-works__text { font-size: 20px; color: var(--color-text-secondary); text-align: center; margin-bottom: 0; }
.how-it-works__list { display: grid; grid-template-columns: repeat(2, 1fr); justify-content: center; gap: 20px; width: 100%; list-style: none; margin: 0; padding: 0; }
.how-it-works__step { display: flex; flex-direction: column; gap: 15px;  background: #fff; border-radius: 10px; padding: 20px; }
.how-it-works__num {  font-weight: 600;   display: inline-flex; align-items: center; justify-content: center; padding: 5px 20px; background: #fff04e; border-radius: 100px; font-family: var(--desktop-title-1-font-family); font-weight: var(--desktop-title-1-font-weight);  font-size: 28px; color: #121212; align-self: flex-start; }
.how-it-works__step-body { display: flex; flex-direction: column; gap: 10px; }
.how-it-works__step-title { font-weight: 600; font-family: var(--desktop-title-1-font-family); font-size: 20px; color: #121212; }
.how-it-works__step-text { font-size: 18px; color: #5b5b5b; line-height: normal; min-height: 130px; }
.how-it-works__img { width: 100%; border-radius: 6px; object-fit: cover; margin-top: auto; }


/* ============== Features ============== */
.features { padding: 100px 0; }
.features__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; }
.features__head { display: flex; flex-direction: column; align-items: center; gap: 30px; width: 100%; }
.features__title { text-align: center; margin-bottom: 0; }
.features__text { font-size: 20px; color: var(--color-text-secondary); text-align: center; margin-bottom: 0; }
.features__media { width: 100%; height: 430px; border-radius: var(--radius-md); overflow: hidden; }
.features__media img { width: 100%; height: 100%; object-fit: contain; }
.features__media iframe { width: 100%; height: 100%; border: 0; }
.features__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; width: 100%; }
.features__item { display: flex; flex-direction: column; align-items: center; gap: 15px; width: calc(33% - 16px); }
.features__icon { width: 50px; height: 50px; flex-shrink: 0; }
.features__item-title { font-size: 20px; font-weight: 600; color: #121212; text-align: center; }
.features__item-text { font-size: 16px; font-weight: 400; color: #5b5b5b; line-height: normal; text-align: center; }
.features__item--left { align-items: flex-start; }
.features__item--left .features__item-title { text-align: left; }
.features__item--left .features__item-text { text-align: left; }


/* ============== Solutions cards ============== */
.solutions-cards { padding: 100px 0; }
.solutions-cards__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; }
.solutions-cards__title { text-align: center; margin-bottom: 0; }
.solutions-cards__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; width: 100%; }
.solutions-cards__list > li { flex: 1; min-width: 340px; display: flex; max-width: 50%; }
.solutions-cards__item { flex: 1; background: #fff; border-radius: 10px; padding: 20px; display: flex; flex-direction: column; gap: 30px; transition: background .2s; text-decoration: none; }
.solutions-cards__item:hover { background: #fff14e; }
.solutions-cards__img { width: 100%; aspect-ratio: 1.7 / 1; object-fit: cover; border-radius: 6px; }
.solutions-cards__body { display: flex; flex-direction: column; gap: 15px; flex: 1; }
.solutions-cards__name { font-size: 20px; font-weight: 600; color: #121212; }
.solutions-cards__subtitle { font-size: 16px; font-weight: 500; color: #121212; }
.solutions-cards__desc { font-size: 16px; font-weight: 400; color: #5b5b5b; line-height: normal; margin: 0; }
.solutions-cards__link { display: inline-flex; align-items: center; gap: 5px; font-size: 16px; font-weight: 700; color: #121212; margin-top: auto; }
.solutions-cards__item:hover .solutions-cards__link { text-decoration: underline; }
.solutions-cards__arrow { flex-shrink: 0; }

/* ============== Industries ============== */
.industries { padding: 100px 0; }
.industries__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; }
.industries__head { display: flex; flex-direction: column; align-items: center; gap: 30px; width: 100%; }
.industries__title { text-align: center; margin-bottom: 0; }
.industries__text { font-size: 20px; color: var(--color-text-secondary); text-align: center; margin-bottom: 0; }
.industries__list { display: grid; grid-template-columns: repeat(3, 1fr); justify-content: center; gap: 20px; width: 100%; }
.industries__list > li { flex: 0 0 380px; display: flex; }
.industries__item { display: flex; flex-direction: column; width: 100%; min-height: 406px; text-decoration: none; }
.industries__img-wrap { width: 100%; aspect-ratio: 380/220; flex-shrink: 0; }
.industries__img { width: 100%; height: 100%; object-fit: cover; display: block; }

.industries:nth-of-type(even) .industries__body {background-color: #fff;}
.industries__body { background: #f3f3f3; border-radius: 0 0 10px 10px; padding: 20px; height: 100%; display: flex; flex-direction: column; justify-content: space-between; gap: 10px; }
.industries__text-group { display: flex; flex-direction: column; gap: 10px; }
.industries__name { font-size: 20px; font-weight: 600; color: #121212; margin: 0; }
.industries__desc { font-size: 18px; font-weight: 400; color: #5b5b5b; line-height: normal; margin: 0; }
.industries__link { display: inline-flex; align-items: center; gap: 5px; font-size: 16px; color: #121212; font-weight: 700; }
.industries__arrow { flex-shrink: 0; }
.industries__img-wrap { position: relative; border-radius: 10px 10px 0 0; overflow: hidden; }
.industries__img-wrap::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background 0.25s; }
.industries__item { transition: none; }
.industries__body { transition: background 0.25s; }
.industries__item:hover .industries__img-wrap::after { background: rgba(0,0,0,0.3); }
.industries__item:hover .industries__body { background: #fff14e; }
.industries__item:hover .industries__link { text-decoration: underline; }


/* ============== Surfaces ============== */
.surfaces { padding: 100px 0; }
.surfaces__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; }
.surfaces__head { text-align: center; }
.surfaces__title { margin-bottom: 30px; }
.surfaces__text { font-size: 20px; color: var(--color-text-secondary); }
.surfaces__list { display: grid; grid-template-columns: repeat(4, 1fr); justify-content: center; gap: 50px 20px; width: 100%; }
.surfaces__card { display: flex; flex-direction: column; width: 100%; gap: 15px; }
.surfaces__img { width: 100%; height: 200px; object-fit: cover; display: block; }
.surfaces__name { font-size: 20px; font-weight: 600; text-align: center; }


/* ============== Case preview ============== */
.case-preview { padding: 100px 0; }
.case-preview__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; }
.case-preview__head { text-align: center; }
.case-preview__title { margin-bottom: 30px; }
.case-preview__text { font-size: 20px; color: var(--color-text-secondary); }
.case-preview__card { background: #f3f3f3; border-radius: 10px; padding: 15px; width: 100%; }
.case-preview__body { display: flex; align-items: center; gap: 15px; }
.case-preview__img { flex: 1; max-width: 50%; align-self: stretch; object-fit: cover; display: block; }
.case-preview__blocks { flex: 1; display: flex; flex-direction: column; gap: 15px; max-width: 50%;  }
.case-preview__block-label { font-size: 20px; font-weight: 600; color: #121212; margin-bottom: 5px; }
.case-preview__block {
    border-radius: 10px;
    background: #FFF;
    padding: 15px;
}
.case-preview__block-text { font-size: 18px; color: #5b5b5b; line-height: normal; }

/* ============== Case detail ============== */
.case-detail { padding: 60px 0; }
.case-detail__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); }
.case-detail__title { margin-bottom: 32px; }
.case-detail__img { width: 100%; border-radius: var(--radius-lg); margin-bottom: 40px; }
.case-detail__block { margin-bottom: 32px; }
.case-detail__block:last-of-type { margin-bottom: 40px; }
.case-detail__block-label {
    font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
    color: var(--color-text-secondary); margin-bottom: 10px;
    padding-bottom: 10px; border-bottom: 1px solid var(--color-line);
}
.case-detail__block-text { font-size: 16px; line-height: normal; color: var(--color-text); }
.case-detail__btn { margin-top: 8px; }

/* ============== Two images ============== */
.two-images { padding: 60px 0; }
.two-images__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); }
.two-images__head { margin-bottom: 40px; }
.two-images__title { margin-bottom: 16px; }
.two-images__text { font-size: 18px; color: var(--color-text-secondary); max-width: 720px; }
.two-images__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.two-images__col { display: flex; flex-direction: column; gap: 16px; }
.two-images__img { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 4/3; object-fit: cover; }
.two-images__link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--color-text); }
.two-images__link::after { content: "в†’"; }
.two-images__link:hover { opacity: .7; }

/* ============== Media rows ============== */
.media-rows { padding: 100px 0; }
.media-rows__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; gap: 60px; }
.media-rows__head { display: flex; flex-direction: column; gap: 20px; width: 100%; }
.media-rows__title { font-size: 40px; font-weight: 700; line-height: normal; margin-bottom: 0; text-align: center; }
.media-rows__text { font-size: 20px; color: var(--color-text-secondary); line-height: normal; margin-bottom: 0; text-align: center; }
.media-rows__list { display: flex; flex-direction: column; gap: 80px; }
.media-rows__row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.media-rows__row:nth-child(even) { direction: rtl; }
.media-rows__row:nth-child(even) > * { direction: ltr; }
.media-rows__img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; display: block; }
.media-rows__body { display: flex; flex-direction: column; gap: 20px; }
.media-rows__item-title { font-size: 36px; font-weight: 700; line-height: normal; margin-bottom: 0; }
.media-rows__item-text { font-size: 20px; color: var(--color-text-secondary); line-height: normal; margin-bottom: 0; }
.media-rows__link { display: inline-flex; align-items: center; gap: 6px; font-size: 16px; font-weight: 600; color: var(--color-text); }
.media-rows__link svg { width: 20px; height: 20px; flex-shrink: 0; }
.media-rows__link:hover { opacity: .7; }

/* ============== Split cards ============== */
.split-cards { padding: 60px 0; }
.split-cards__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); }
.split-cards__head { margin-bottom: 40px; }
.split-cards__title { margin-bottom: 16px; }
.split-cards__text { font-size: 18px; color: var(--color-text-secondary); max-width: 720px; }
.split-cards__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.split-cards__item { background: #fff; border-radius: var(--radius-md); padding: 28px 24px; display: flex; flex-direction: column; gap: 14px; }
.split-cards__icon { width: 40px; height: 40px; }
.split-cards__item-text { font-size: 15px; color: var(--color-text-secondary); line-height: normal; }

/* ============== Cards-links ============== */
.cards-links { padding: 60px 0; }
.cards-links__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); }
.cards-links__head { margin-bottom: 40px; }
.cards-links__title { margin-bottom: 16px; }
.cards-links__text { font-size: 18px; color: var(--color-text-secondary); max-width: 720px; }
.cards-links__list { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin-bottom: 40px; }
.cards-links__card { display: block; border-radius: var(--radius-lg); overflow: hidden; background: var(--color-bg-light); transition: box-shadow .2s; }
a.cards-links__card:hover { box-shadow: 2px 2px 16px rgba(0,0,0,.09); }
.cards-links__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.cards-links__card-text { padding: 16px 20px; font-size: 15px; line-height: normal; color: var(--color-text); }
.cards-links__btn { display: block; width: max-content; }

/* ============== Cards grid (шаблоны/отрасли с кнопкой) ============== */
.cards-grid { padding: 100px 0; }
.cards-grid__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; }
.cards-grid__head { text-align: center; }
.cards-grid__title { margin-bottom: 30px; }
.cards-grid__text { font-size: 20px; color: var(--color-text-secondary); margin-bottom: 0; }
.cards-grid__list { display: grid; grid-template-columns: repeat(4, 1fr); column-gap: 20px;row-gap: 50px; width: 100%; }
.cards-grid__card { display: block; transition: opacity .2s; }
a.cards-grid__card:hover { opacity: .8; }
.cards-grid__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; border-radius: var(--radius-lg); margin-bottom: 15px; }
.cards-grid__card-text { font-size: 20px; font-weight: 600; text-align: center; line-height: normal; color: var(--color-text); }

/* ============== CTA inline ============== */
.cta-inline { padding: 60px 0; background: var(--color-accent); }
.cta-inline__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); }
.cta-inline__body { display: flex; flex-wrap: wrap; align-items: center; gap: 24px 48px; }
.cta-inline__bold { font-size: 28px; font-weight: 700; flex: 1 1 260px; }
.cta-inline__text { font-size: 16px; color: var(--color-text-secondary); flex: 1 1 260px; }
.cta-inline__actions { display: flex; flex-wrap: wrap; gap: 12px; flex-shrink: 0; }

/* ============== Video block ============== */
.video-block { padding: 80px 0; }
.video-block__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); }
.video-block__head { margin-bottom: 60px; text-align: center; }
.video-block__title { margin-bottom: 30px; }
.video-block__text { font-size: 18px; color: var(--color-text-secondary); margin-bottom: 0; }
.video-block__wrap { border-radius: var(--radius-lg); overflow: hidden; position: relative; aspect-ratio: 16/9; background: var(--color-bg-light); }
.video-block__iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-block__poster { position: absolute; inset: 0; cursor: pointer; }
.video-block__poster-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-block__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70px; height: 70px; padding: 23px 22px 22px 23px; border-radius: 50%; background: #fff; border: none; display: flex; justify-content: center; align-items: center; gap: 10px; cursor: pointer; transition: opacity .2s; aspect-ratio: 1/1; }
.video-block__play svg { width: 25px; height: 25px; flex-shrink: 0; aspect-ratio: 1/1;     transform: translate(3px, 0px); }
.video-block__play:hover { opacity: .85; }
.video-block__poster:hover .video-block__play { opacity: .85; }

/* ============== Latest articles ============== */
.latest-articles { padding: 100px 0; }
.latest-articles:nth-of-type(even) .article-card__body {
    background-color: #fff;
}
.latest-articles__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; }
.latest-articles__title { text-align: center; margin-bottom: 0; }
.latest-articles__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; width: 100%; }

.article-card { display: flex; flex-direction: column; height: 100%; background: var(--color-bg-light); border-radius: var(--radius-lg); overflow: hidden; }
.article-card__img-wrap { display: block; overflow: hidden; }
.article-card__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .3s; display: block; }
.article-card__img-wrap:hover .article-card__img { transform: scale(1.03); }
.article-card__body { padding: 20px; display: flex; flex-direction: column; gap: 20px; flex: 1; }
.article-card__cat { font-size: 14px; font-weight: 400; color: var(--color-text-secondary); text-transform: uppercase; letter-spacing: .04em; }
.article-card__cat:hover { color: var(--color-text); }
.article-card__title { font-size: 20px; font-weight: 600; line-height: normal; flex: 1; }
.article-card__link { color: var(--color-text); }
.article-card__link:hover { color: var(--color-text-secondary); }
.article-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }
.article-card__more { display: inline-flex; align-items: center; gap: 4px; font-size: 16px; font-weight: 700; color: var(--color-text); }
.article-card__more svg { width: 20px; height: 20px; flex-shrink: 0; }
.article-card__more:hover { opacity: .7; }
.article-card__date { font-size: 14px; color: var(--color-text-secondary); white-space: nowrap; font-weight: 400; }


/* ============== Interlinking ============== */
.interlinking { padding: 40px 0; border-top: 1px solid var(--color-line); }
.interlinking__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); }
.interlinking__list { display: flex; flex-wrap: wrap; gap: 10px 6px; align-items: baseline; }
.interlinking__item--heading { width: 100%; margin-top: 24px; }
.interlinking__item--heading:first-child { margin-top: 0; }
.interlinking__heading { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--color-text-secondary); }
.interlinking__link {
    display: inline-block; padding: 6px 14px;
    font-size: 14px; color: var(--color-text);
    border: 1px solid var(--color-line); border-radius: 100px;
    transition: border-color .2s, background .2s;
}
.interlinking__link:hover { background: var(--color-bg-light); border-color: transparent; }

/* ============== Benefits modifiers ============== */
ul.benefits__list.benefits--2col { grid-template-columns: repeat(2, 1fr); }

/* ============== HIW Results ============== */
.hiw-results { padding: 100px 0; }
.hiw-results__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; }
.hiw-results__head { display: flex; flex-direction: column; align-items: center; gap: 30px; width: 100%; }
.hiw-results__title { text-align: center; margin-bottom: 0; }
.hiw-results__text { font-size: 20px; color: var(--color-text-secondary); text-align: center; margin-bottom: 0; }
.hiw-results__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; width: 100%; list-style: none; margin: 0; padding: 0; }
.hiw-results__item { background: #f3f3f3; border-radius: 10px; padding: 20px; display: flex; flex-direction: column; align-items: center; text-align: center; flex: 0 0 calc(33.333% - 14px); }
.hiw-results__icon { width: 50px; height: 50px; flex-shrink: 0; margin-bottom: 20px; }
.hiw-results__item-title { font-size: 20px; font-weight: 600; color: #121212; margin-bottom: 10px; }
.hiw-results__item-text { font-size: 18px; color: #5b5b5b; line-height: normal; margin-bottom: 0; }

/* ============== HIW TOC ============== */
.hiw-toc { padding: 100px 0; }
.hiw-toc__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); }
.hiw-toc__card { background: #f3f3f3; }
.hiw-toc__title { font-size: 28px;
font-style: normal;
font-weight: 600; color: #121212; margin-bottom: 30px; }

.hiw-toc__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.hiw-toc__item {
    list-style: disc;
    color: #5b5b5b;
    margin-left: 20px;
}
.hiw-toc__link {color: #5C5C5C;

    text-decoration: underline;
/* Desktop/Subtitle 2 */
font-family: "SF Pro Display";
font-size: 20px;
font-style: normal;
font-weight: 400;}
.hiw-toc__link:hover { color: #5b5b5b; text-decoration: underline; text-underline-offset: 3px; }

/* ============== HIW Hero ============== */
.hiw-hero { padding: 30px 0 100px; }
.hiw-hero__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 30px; text-align: center; }
.hiw-hero__title { margin-bottom: 0; }
.hiw-hero__text { font-size: 20px; color: var(--color-text-secondary); margin-bottom: 0; font-weight: 400; line-height: normal; margin-bottom: 10px;  }
.hiw-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ============== HIW Data flow ============== */
.hiw-data { padding: 100px 0; }
.hiw-data__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; }
.hiw-data__head { display: flex; flex-direction: column; align-items: center; gap: 30px; width: 100%; }
.hiw-data__title { text-align: center; margin-bottom: 0; }
.hiw-data__intro { font-size: 20px; color: var(--color-text-secondary); text-align: center; margin-bottom: 0; }
.hiw-data__img { width: 100%; border-radius: var(--radius-lg); display: block; }
.hiw-data__list { display: flex; flex-direction: column; gap: 60px; width: 100%; list-style: none; margin: 0; padding: 0; }
.hiw-data__item { display: flex; flex-direction: column; gap: 30px; }
.hiw-data__item-title { font-size: 32px; font-weight: 700; color: #121212; margin-bottom: 0; }
.hiw-data__item-text { font-size: 20px; font-weight: 400; color: #5b5b5b; line-height: normal; margin-bottom: 0; }

/* ============== HIW Monitoring ============== */
.hiw-monitoring { padding: 100px 0; }
.hiw-monitoring__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; }
.hiw-monitoring__head { display: flex; flex-direction: column; align-items: center; gap: 30px; width: 100%; }
.hiw-monitoring__title { text-align: center; margin-bottom: 0; }
.hiw-monitoring__text { font-size: 20px; color: var(--color-text-secondary); text-align: center; margin-bottom: 0; }
.hiw-monitoring__rows { display: flex; flex-direction: column; gap: 60px; width: 100%; }
.hiw-monitoring__row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hiw-monitoring__row:nth-child(even) { direction: rtl; }
.hiw-monitoring__row:nth-child(even) > * { direction: ltr; }
.hiw-monitoring__img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; display: block; }
.hiw-monitoring__body { display: flex; flex-direction: column; gap: 20px; }
.hiw-monitoring__row-title { font-size: 32px; font-weight: 700; color: #121212; margin-bottom: 0; }
.hiw-monitoring__row-text { font-size: 20px; font-weight: 400; color: #5b5b5b; line-height: normal; margin-bottom: 0; }

/* ============== HIW Terms ============== */
.hiw-terms { padding: 100px 0; }
.hiw-terms__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; }
.hiw-terms__title { text-align: center; margin-bottom: 0; }
.hiw-terms__list { display: flex; flex-direction: column; gap: 30px; width: 100%; list-style: none; margin: 0; padding: 0; }
.hiw-terms__text { font-size: 20px; color: #5b5b5b; line-height: normal; margin-bottom: 0; }
.hiw-terms__text strong { font-weight: 600; color: #121212; }

/* ============== HIW Author ============== */
.hiw-author { padding: 100px 0; }
.hiw-author__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; text-align: center; }
.hiw-author__title { text-align: center; margin-bottom: 0; }
.hiw-author__card { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.hiw-author__photo { width: 280px; height: 280px; border-radius: 20px; object-fit: cover; object-position: top; display: block; margin-bottom: 10px; }
.hiw-author__name { font-size: 20px; font-weight: 600; color: #121212; }
.hiw-author__role { font-size: 16px; color: #5b5b5b; }
.hiw-author__text { font-size: 18px; color: #5b5b5b; line-height: normal; margin-bottom: 0; text-align: center; }

/* ============== See also ============== */
.see-also { padding: 100px 0; }
.see-also__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); }
.see-also__title { font-size: 36px; font-weight: 700; text-align: center; margin-bottom: 60px; }
.see-also__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; }
.see-also__col { display: flex; flex-direction: column; gap: 16px; }
.see-also__col-title { font-size: 20px; font-weight: 600; color: #121212; margin-bottom: 0; }
.see-also__col-title--link { font-size: 20px; font-weight: 600; color: #121212; text-decoration: underline; text-decoration-thickness: auto; text-underline-offset: auto; }
.see-also__col-title--link:hover { opacity: .7; }
.see-also__links { display: flex; flex-direction: column; gap: 10px; list-style: disc; padding-left: 18px; }
.see-also__link { font-size: 16px; font-weight: 500; color: #121212; text-decoration: underline; text-decoration-thickness: auto; text-underline-offset: auto; }
.see-also__link:hover { opacity: .7; }

/* ============== service-page header actions ============== */
.service-page__meta { font-size: 16px; color: var(--color-text-secondary); line-height: normal; max-width: 760px; margin-bottom: 24px; }
.service-page__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============== Demo request page ============== */
.demo-page { padding: 40px 0 80px; }
.demo-page__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); }
.demo-page__grid { display: flex; align-items: flex-start; gap: 50px; }
.demo-page__info { flex: 1; display: flex; flex-direction: column; gap: 40px; min-width: 0; }
.demo-page__intro { display: flex; flex-direction: column; gap: 30px; }
.demo-page__title { font-size: 40px; line-height: normal; margin: 0; }
.demo-page__lead { font-size: 20px; color: #5b5b5b; line-height: normal; margin: 0; }
.demo-page__badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 15px; background: #f3f3f3; border-radius: 100px; font-size: 18px; font-weight: 400; align-self: flex-start; margin: 0; }
.demo-page__badge-icon { width: 35px; height: 35px; flex-shrink: 0; }
.demo-page__benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 0; padding: 0; list-style: none; }
.demo-page__benefit { display: flex; flex-direction: column; gap: 15px; padding: 20px; background: #f3f3f3; border-radius: 10px; }
.demo-page__benefit-icon { width: 40px; height: 40px; flex-shrink: 0; color: var(--color-accent); }
.demo-page__benefit-title { font-size: 16px; font-weight: 600; margin-bottom: 10px; line-height: normal; }
.demo-page__benefit-text { font-size: 15px; color: #5b5b5b; line-height: normal; margin: 0; }
.demo-page__form-wrap { flex: 1; display: flex; flex-direction: column; gap: 15px; min-width: 0; }
.demo-page__form-wrap .form { max-width: none; padding: 30px; background: #f3f3f3; border-radius: 20px; box-shadow: 0 4px 20px rgba(0, 0, 0, .04); gap: 25px; }
.demo-page__form-wrap .form__input { background: #fff; height: 45px; border-radius: 10px; padding: 13px; border: 1px solid transparent; }
.demo-page__form-wrap .form__input:focus { border-color: var(--color-accent); outline: none; }
.demo-page__form-wrap .form__input--error { border-color: #F00; }
.form__error { position: absolute; top: 100%; left: 0; margin-top: 2px; color: #F00; font-family: "SF Pro Display"; font-size: 12px; font-style: normal; font-weight: 400; line-height: normal; white-space: nowrap; }
.demo-page__form-wrap .form__label { font-size: 16px; color: #121212; font-weight: 400; }
.demo-page__form-wrap .form__label [aria-hidden="true"] { color: #ff0000; }
.demo-page__form-wrap .form__submit { background: #fff04e; color: #121212; border-radius: 10px; padding: 13px 20px; font-weight: 700; border: 0; cursor: pointer; align-self: stretch; width: 100%; text-align: center; }
.demo-page__form-wrap .form__submit:hover { background: #ffe600; }
.demo-page__privacy { display: inline-flex; align-items: center; gap: 5px; font-size: 14px; color: #5b5b5b; margin: 0 auto; align-self: flex-start; }
.demo-page__privacy-icon { width: 16px; height: 16px; flex-shrink: 0; }
.form__row { display: flex; gap: 20px; }
.form__row .form__field { flex: 1; min-width: 0; }
.demo-page__form-wrap .form__field { position: relative; }
.form__checkbox-wrap { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #121212; line-height: normal; }
.form__checkbox-wrap input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    margin: 0px 0 0;
    flex-shrink: 0;
    width: 21px;
    height: 21px;
    padding: 5px 3px;
    border: 1px solid #B0B0B0;
    background: #FFF;
    border-radius: 0;
    cursor: pointer;
    display: inline-block;
    position: relative;
}
.form__checkbox-wrap input[type="checkbox"]:checked {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='15' height='11' viewBox='0 0 15 11' fill='none'><path fill-rule='evenodd' clip-rule='evenodd' d='M14.7 0.737985L5.02194 10.5L0 5.4345L0.731639 4.69651L5.02194 9.02403L13.9684 0L14.7 0.737985Z' fill='%23121212'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 13px 9px;
}
.form__checkbox-wrap input[type="checkbox"].form__input--error { border-color: #F00; }
.form__checkbox-wrap input[type="checkbox"]:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}
.form__checkbox-wrap a { color: var(--color-text); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 900px) {
    .demo-page__grid { flex-direction: column; }
    .demo-page__benefits { grid-template-columns: 1fr 1fr;  gap: 14px; }
    .demo-page__benefit {padding: 15px;}
    .form__row { flex-direction: column; }
}

/* ============== About page ============== */
/* Переопределяем фон секций about-страницы (специфичность 0,2,1 — перебивает чередующееся правило) */

.about-hero { padding: 60px 0; }
.about-hero__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 30px; }
.about-hero__title { font-size: 40px; line-height: normal; margin: 0; text-align: center; }
.about-hero__intro { display: flex; flex-direction: column; gap: 16px; text-align: center; }
.about-hero__subtitle { font-size: 24px; font-weight: 700; color: var(--color-text); margin: 0; }
.about-hero__text { font-size: 20px; line-height: normal; color: var(--color-text-secondary); margin: 0; }

.about-info { padding: 100px 0; }
.about-info__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; gap: 20px; }
.about-info__title { margin: 0;margin-bottom: 40px; text-align: center; }
.about-info__banner { padding: 25px; border-radius: 20px; background: #fff04e; }
.about-info__banner-text { font-size: 20px; font-weight: 400; color: var(--color-text); line-height: normal; margin: 0; }
.about-info__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-info__card { padding: 25px; border-radius: 20px; background: #fff; display: flex; flex-direction: column; gap: 15px; }
.about-info__card--dark { background: #121212; }
.about-info__contact { font-size: 24px; font-weight: 400; color: #fff; line-height: normal; margin: 0; text-decoration: none; display: block; }
.about-info__contact:hover { opacity: .8; }
.about-info__req { font-size: 20px; font-weight: 400; color: var(--color-text); line-height: normal; margin: 0; }

.about-spec { padding: 100px 0; }
.about-spec__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; }
.about-spec__head { display: flex; flex-direction: column; align-items: center; gap: 30px; width: 100%; }
.about-spec__title { margin: 0; text-align: center; }
.about-spec__text { font-size: 20px; font-weight: 400; color: var(--color-text-secondary); line-height: normal; margin: 0; text-align: center; }
.about-spec__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; width: 100%; }
.about-spec__card { display: flex; flex-direction: column; border-radius: 10px; overflow: hidden; }
.about-spec__card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.about-spec__card-body { display: flex; aspect-ratio: 340 / 160; flex-direction: column; gap: 10px; padding: 20px; background: #f3f3f3; border-radius: 0 0 10px 10px; flex: 1; }
.about-spec__card-info { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.about-spec__card-title { font-size: 20px; font-weight: 600; color: #121212; line-height: normal; margin: 0; }
.about-spec__card-text { font-size: 18px; font-weight: 400; color: #5c5c5c; line-height: normal; margin: 0; }
.about-spec__card-btn { display: inline-flex; align-items: center; gap: 5px; font-family: "SF Pro Display"; font-size: 16px; font-weight: 700; font-style: normal; color: #121212; text-align: center; text-decoration: none; line-height: normal; }
.about-spec__card-btn svg { flex-shrink: 0; }
.about-spec__footer { display: flex; justify-content: center; }

.about-facts { padding: 100px 0; }
.about-facts__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; }
.about-facts__title { margin: 0; text-align: center; }
.about-facts__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; width: 100%; }
.about-fact { padding: 15px; background: #121212; border-radius: 10px; display: flex; flex-direction: column; gap: 15px; }
.about-fact--wide { grid-column: span 2; }
.about-fact__value { font-size: 28px; font-weight: 600; color: #fff04e; line-height: normal; }
.about-fact__label { font-size: 18px; font-weight: 400; color: #fff; line-height: normal; }

.about-timeline { padding: 100px 0; }
.about-timeline__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; }
.about-timeline__title { margin: 0; text-align: center; }
.about-timeline__list { list-style: none; padding: 0; margin: 0; width: 100%; display: flex; flex-direction: column; }
.about-timeline__item { display: grid; grid-template-columns: 1fr 40px 1fr; align-items: start; gap: 20px; }
.about-timeline__year-col { display: flex; justify-content: flex-end; }
.about-timeline__item:nth-child(even) .about-timeline__year-col { order: 3; justify-content: flex-start; }
.about-timeline__item:nth-child(even) .about-timeline__connector { order: 2; }
.about-timeline__item:nth-child(even) .about-timeline__body { order: 1; text-align: right; }
.about-timeline__item:nth-child(odd) .about-timeline__body { text-align: left; }
.about-timeline__year { display: inline-flex; align-items: center; padding: 5px 20px; background: #fff04e; border-radius: 100px; font-size: 20px; font-weight: 600; color: var(--color-text); white-space: nowrap; }
.about-timeline__connector { display: flex; align-items: start; justify-content: center; align-self: stretch; position: relative; }
.about-timeline__connector::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; background: #e0e0e0; transform: translateX(-50%); }
.about-timeline__dot { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 5px solid #fff04e; position: relative; z-index: 1; flex-shrink: 0; }
.about-timeline__body {  display: flex; flex-direction: column; gap: 10px; }
.about-timeline__item-title { font-size: 20px; font-weight: 600; color: #121212; line-height: normal; margin: 0; }
.about-timeline__item-text { font-size: 18px; font-weight: 400; color: #5c5c5c; line-height: normal; margin-bottom: 60px; }

.about-team { padding: 100px 0; }
.about-team__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; }
.about-team__title { margin: 0; text-align: center; margin-bottom: 30px; }
.about-team__text {font-size: 20px; font-weight: 400; margin-bottom: 45px; text-align: center; color: rgba(92, 92, 92, 1)}
.about-team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; width: 100%; }
.about-member { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.about-member__photo-wrap { width: 100%; aspect-ratio: 1; background: #fff; border-radius: 10px; overflow: hidden; margin-bottom: 10px; }
.about-member__photo { width: 100%; height: 100%; object-fit: cover; }
.about-member__name { font-size: 20px; font-weight: 600; margin: 0; line-height: normal; text-align: center; }
.about-member__role { font-size: 18px; color: var(--color-text-secondary); line-height: normal; text-align: center; }

.about-steps { padding: 100px 0; }
.about-steps__container { max-width: var(--container); margin: 0 auto; margin-bottom: 80px; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; }
.about-steps__title { margin: 0; margin-bottom: 30px; text-align: center; }
.about-steps__text { margin: 0; color: #5C5C5C;
text-align: center;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;

}
.about-steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; width: 100%; }
.about-step { padding: 20px; background: var(--color-bg-light); border-radius: 10px; display: flex; flex-direction: column; gap: 10px; }
.about-step__num { display: inline-flex; align-items: center; align-self: flex-start; margin-bottom: 5px; padding: 5px 20px; background: #fff04e; border-radius: 100px; font-size: 20px; font-weight: 600; color: var(--color-text); margin: 0; }
.about-step__title { font-size: 20px; font-weight: 600; line-height: normal; margin: 0; }
.about-step__text { font-size: 16px; color: var(--color-text-secondary); line-height: normal; margin: 0; }

.about-results { padding: 100px 0; }
.about-results__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; }
.about-results__title { margin: 0; text-align: center; }
.about-results__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; width: 100%; }
.about-result { padding: 20px; aspect-ratio: 340 / 221;  background: #121212; border-radius: 10px; display: flex; flex-direction: column; gap: 15px; }
.about-result__title { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 28px; font-weight: 600; color: #fff04e; line-height: normal; margin: 0; }
.about-result__title svg { flex-shrink: 0; }
.about-result__text { font-size: 20px; font-weight: 400; color: #fff; line-height: normal; margin: 0; margin-top: auto; }

/* ============== Auth pages (login / signup stubs) ============== */
.auth-page { padding: 60px 0 80px; }
.auth-page__container { max-width: 520px; margin: 0 auto; padding: 0 var(--container-pad); }
.auth-page__card { background: var(--color-bg-light); border-radius: var(--radius-lg); padding: 40px; }
.auth-page__title { font-size: 28px; margin-bottom: 12px; }
.auth-page__lead { font-size: 16px; color: var(--color-text-secondary); margin-bottom: 28px; line-height: normal; }
.auth-page__btn { width: 100%; justify-content: center; }
.auth-page__help { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--color-line); }
.auth-page__help-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--color-text-muted); margin-bottom: 16px; }
.auth-page__help-list { display: flex; flex-direction: column; gap: 14px; list-style: none; padding: 0; margin: 0; }
.auth-page__help-item { display: flex; gap: 12px; align-items: flex-start; }
.auth-page__help-icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--color-text-secondary); }
.auth-page__help-link-title { font-size: 15px; font-weight: 600; display: block; color: var(--color-text); }
.auth-page__help-link-title:hover { color: var(--color-text-secondary); }
.auth-page__help-text { font-size: 13px; color: var(--color-text-muted); margin: 2px 0 0; }
.auth-page__privacy { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--color-text-muted); margin-top: 20px; }
.auth-page__privacy-icon { width: 16px; height: 16px; flex-shrink: 0; }
.auth-page__switch { font-size: 14px; color: var(--color-text-secondary); margin-top: 20px; text-align: center; }
.auth-page__switch a { color: var(--color-text); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ============== Contacts page ============== */
.contacts { padding: 30px 0 100px; }
.contacts__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; }
.contacts__head { display: flex; flex-direction: column; align-items: center; gap: 30px; width: 100%; }
.contacts__title { margin: 0; text-align: center; }
.contacts__desc { font-size: 20px; font-weight: 400; color: var(--color-text-secondary); text-align: center; margin: 0; line-height: normal; }
.contacts__cards { display: flex; align-items: stretch; gap: 20px; width: 100%; }
.contacts__card { flex: 1; border-radius: 20px; padding: 25px; }
.contacts__card--dark { background: #121212; color: #fff; }
.contacts__card--yellow { background: var(--color-accent); color: var(--color-text); }
.contacts__card-inner { display: flex; flex-direction: column; gap: 15px; height: 100%; }
.contacts__card-info { display: flex; flex-direction: column; gap: 15px; }
.contacts__card-info p { font-size: 24px; font-weight: 400; margin: 0; line-height: normal; }
.contacts__card--dark .contacts__card-info p { color: #fff; }
.contacts__link { color: inherit; text-decoration: none; }
.contacts__link:hover { opacity: .8; }
.contacts__tagline { font-size: 24px; font-weight: 400; margin: 0; line-height: normal; color: #fff; }
.contacts__social { display: flex; align-items: center; gap: 15px; margin-top: auto; }
.contacts__social-label { font-size: 24px; font-weight: 400; color: #fff;  line-height: normal; }
.contacts__card--yellow .contacts__card-inner p { font-size: 20px; font-weight: 400; color: var(--color-text); margin: 0; line-height: normal; }

.contacts-map { padding: 100px 0; background: var(--color-bg-light); }
.contacts-map__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; }
.contacts-map__title { margin: 0; text-align: center; }
.contacts-map__card { background: #fff; border-radius: 20px; padding: 25px; display: flex; align-items: stretch; gap: 25px; width: 100%; }
.contacts-map__info { width: 355px; flex-shrink: 0; display: flex; flex-direction: column; justify-content: space-between; gap: 20px; }
.contacts-map__address { display: flex; flex-direction: column; gap: 20px; }
.contacts-map__address p { font-size: 24px; font-weight: 400; color: var(--color-text); margin: 0; line-height: normal; }
.contacts-map__links { display: flex; flex-direction: column; gap: 20px; }
.contacts-map__links .btn { width: 100%; justify-content: center; }
.contacts-map__visual { height: 500px; border-radius: 10px; overflow: hidden; }
@media (min-width:768px){
      .contacts-map__visual {
        flex: 1;
      }
}

.contacts-cta { padding: 60px 0; }
.contacts-cta__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; }
.contacts-cta__container h2 { margin: 0; text-align: center; }

@media (max-width: 900px) {
    .contacts__cards { flex-direction: column; }
    .contacts-map__card { flex-direction: column; }
    .contacts-map__info { width: 100%; }
    .contacts-map__visual { height: 300px; }
}

/* ============== FAQ Page ============== */
.faq-page-hero { padding: 30px 0 100px; }
.faq-page-hero__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); padding-top: 20px; margin-bottom: 100px; display: flex; flex-direction: column;  gap: 30px;  }
.faq-page-hero__title { margin-bottom: 0; }
.faq-page-hero__text { font-size: 20px; color: var(--color-text-secondary); margin-bottom: 0;}

.main > section.faq-groups { background: #fff; padding-top: 0; }
.faq-groups { padding: 100px 0; }
.faq-groups__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; gap: 100px; }
.faq-group__title { font-size: 36px; font-weight: 700; color: #121212; margin-bottom: 40px; }
.faq-groups .faq__item { background: #F4F4F4; }
.faq-group { counter-reset: faq-num; }
.faq-group .faq__question::before { content: counter(faq-num) ". "; counter-increment: faq-num; flex-shrink: 0; }
.faq__question-text { flex: 1; min-width: 0; text-align: left; }

/* ============== Cases Archive ============== */
.cases-archive__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Filter tabs */
.cases-archive__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.cases-archive__filter a {
    display: inline-flex;
    align-items: center;
    padding: 13px 15px;
    background: #f3f3f3;
    border-radius: 100px;
    font-family: "SF Pro Display", Helvetica;
    font-size: 16px;
    font-weight: 700;
    color: rgba(18, 18, 18, 0.5);
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}
.cases-archive__filter.is-active a,
.cases-archive__filter a:hover {
    background: #fff04e;
    color: #121212;
}

/* Cards grid */
.cases-archive__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.cases-archive__item {
    flex: 0 0 calc(33.333% - 14px);
    display: flex;
}

/* Case card */
.case-card {
    display: flex;
    flex-direction: column;
    background: #f3f3f3;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}
.case-card__img-wrap {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}
.case-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.case-card__img-wrap:hover img { transform: scale(1.03); }
.case-card__body {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    flex: 1;
}
.case-card__category {
    font-size: 14px;
    font-weight: 400;
    color: #5b5b5b;
}
.case-card__title {
    font-size: 20px;
    font-weight: 400;
    color: #121212;
    line-height: normal;
    margin: 0;
    flex: 1;
}
.case-card__more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: "SF Pro Display", Helvetica;
    font-size: 16px;
    font-weight: 700;
    color: #121212;
    margin-top: auto;
    transition: opacity 0.2s;
}
.case-card__more:hover { opacity: 0.7; }

/* Pagination */
.cases-archive__pagination { display: flex; gap: 15px;}
.cases-archive__pagination .nav-links {
    display: flex;
    align-items: center;
}
.cases-archive__pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 25px;
    width: 25px;
    height: 25px;
    padding: 0;
    border-radius: 5px;
    font-family: "SF Pro Display", Helvetica;
    font-size: 16px;
    font-weight: 400;
    color: rgba(18, 18, 18, 0.5);
    transition: color 0.2s;
}
.cases-archive__pagination .page-numbers.current {
    background: #fff04e;
    color: #121212;
}
.cases-archive__pagination .page-numbers:hover { color: #121212; }
.cases-archive__pagination .prev.page-numbers,
.cases-archive__pagination .next.page-numbers {
    background: none;
    border-radius: 0;
    padding: 0;
    width: 25px;
    height: 25px;
}
.cases-archive__empty {
    font-size: 16px;
    color: #5b5b5b;
}

/* ============== Case Single ============== */
.case__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 30px var(--container-pad) 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.case__title {
    font-size: 40px;
    font-weight: 700;
    color: #121212;
    line-height: normal;
}
.case__text {
    font-size: 20px;
    font-weight: 400;
    color: #5b5b5b;
    line-height: normal;
    margin-bottom: 10px;
}
.case__cover {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.case__cover img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

/* Похожие проекты */
.similar-cases { padding: 100px 0; }
.similar-cases__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.similar-cases__title {
    font-size: 32px;
    font-weight: 700;
    color: #121212;
}
.similar-cases__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.similar-cases__item {
    flex: 0 0 calc(33.333% - 14px);
    display: flex;
}

/* ============== Case About block ============== */
.case-about { padding: 100px 0; background: #f3f3f3; }
.case-about__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; gap: 60px; }
.case-about__title { font-size: 36px; font-weight: 700; color: #121212; margin: 0; }
.case-about__card { background: #fff; border-radius: 10px; padding: 15px; }
.case-about__body { display: flex; flex-wrap: wrap; align-items: center; gap: 15px; }
.case-about__img { flex: 1; min-width: 340px; aspect-ratio: 1.55; object-fit: cover; border-radius: 6px; display: block; }
.case-about__info { flex: 1; min-width: 340px; background: #f3f3f3; border-radius: 10px; padding: 15px; }
.case-about__text { font-size: 18px; font-weight: 400; color: #5b5b5b; line-height: normal; margin: 0; }
.case-about__text p { margin: 0; }
.case-about__text p + p { margin-top: 10px; }

/* ============== Question page (Задать вопрос) ============== */
.question-page { padding: 30px 0 100px 0; }
.question-page__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 50px; }
.question-page__head { display: flex; flex-direction: column; align-items: center; gap: 30px; width: 100%; }
.question-page__title { font-size: 40px; font-weight: 700; color: #121212; text-align: center; margin: 0; }
.question-page__lead { font-size: 20px; font-weight: 400; color: #5b5b5b; text-align: center; margin: 0; }
.question-page__form-wrap { width: 100%; max-width: 550px; display: flex; flex-direction: column; gap: 15px; }
.question-page__form-wrap .form { max-width: none; position: relative; padding: 30px; background: #f3f3f3; border-radius: 20px; box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.15); gap: 25px; }
.question-page__form-wrap .form__input { background: #fff; height: 45px; border-radius: 10px; padding: 13px; border: 1px solid transparent; font-size: 16px; color: #121212; font-family: "SF Pro Display", Helvetica; }
.question-page__form-wrap .form__input::placeholder { color: #121212; opacity: 0.5; }
.question-page__form-wrap .form__input:focus { border-color: var(--color-accent); outline: none; }
.question-page__form-wrap .form__input--error { border-color: #f00; }
.question-page__form-wrap .form__input--textarea { height: auto; min-height: 150px; resize: none; }
.question-page__form-wrap .form__label { font-size: 16px; color: #121212; font-weight: 400; }
.question-page__form-wrap .form__label [aria-hidden="true"] { color: #ff0000; }
.question-page__form-wrap .form__submit { background: #fff04e; color: #121212; border-radius: 10px; padding: 13px 20px; font-size: 16px; font-weight: 700; border: 0; cursor: pointer; align-self: stretch; width: 100%; text-align: center; }
.question-page__form-wrap .form__submit:hover { background: #ffe600; }
/* custom select */
.custom-select { position: relative; }
.custom-select__trigger { display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%; text-align: left; cursor: pointer; background: none; border: none; padding: 0; font: inherit; }
.custom-select__trigger.form__input { padding: 13px; }
.custom-select__value { flex: 1; color: #121212; opacity: 0.5; font-size: 16px; font-family: "SF Pro Display", Helvetica; line-height: normal; }
.custom-select__value--selected { opacity: 1; }
.custom-select__arrow { flex-shrink: 0; transition: transform 0.2s ease; }
.custom-select--open .custom-select__arrow { transform: rotate(180deg); }
.custom-select--open .custom-select__trigger { border-color: var(--color-accent); }
.custom-select__dropdown { position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: #fff; border-radius: 10px; box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.10); z-index: 100; padding: 8px 0; margin: 0; list-style: none; }
.custom-select__option { padding: 12px 16px; font-size: 16px; font-family: "SF Pro Display", Helvetica; color: #121212; cursor: pointer; line-height: normal; }
.custom-select__option:hover { background: #f3f3f3; }
.custom-select__option[aria-selected="true"] { font-weight: 500; }
.custom-select--error .custom-select__trigger { border-color: #f00; }
/* privacy */
.question-page__privacy { display: flex; align-items: center; justify-content: center; gap: 5px; font-size: 14px; color: #5c5c5c; margin: 0; font-family: "SF Pro Display", Helvetica; font-weight: 400; line-height: normal; }
.question-page__privacy-icon { width: 16px; height: 16px; flex-shrink: 0; }

/* ============== Resume page (Отправьте резюме) ============== */
.resume-page { padding: 30px 0 100px 0; }
.resume-page__container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); display: flex; flex-direction: column; align-items: center; gap: 60px; }
.resume-page__head { display: flex; flex-direction: column; align-items: center; gap: 30px; width: 100%; }
.resume-page__title { font-size: 40px; font-weight: 700; color: #121212; text-align: center; margin: 0; }
.resume-page__lead { font-size: 20px; font-weight: 400; color: #5b5b5b; text-align: center; margin: 0;  }
.resume-page__form-wrap { width: 100%; max-width: 550px; display: flex; flex-direction: column; gap: 15px; }
.resume-page__form-wrap .form { max-width: none; padding: 30px; background: #f3f3f3; border-radius: 20px; box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.15); gap: 25px; }
.resume-page__form-wrap .form__input { background: #fff; height: 45px; border-radius: 10px; padding: 13px; border: 1px solid transparent; font-size: 16px; color: #121212; font-family: "SF Pro Display", Helvetica; }
.resume-page__form-wrap .form__input::placeholder { color: #121212; opacity: 0.5; }
.resume-page__form-wrap .form__input:focus { border-color: var(--color-accent); outline: none; }
.resume-page__form-wrap .form__input--error { border-color: #f00; }
.resume-page__form-wrap .form__label { font-size: 16px; color: #121212; font-weight: 400; }
.resume-page__form-wrap .form__label [aria-hidden="true"] { color: #ff0000; }
.resume-page__form-wrap .form__submit { background: #fff04e; color: #121212; border-radius: 10px; padding: 13px 20px; font-size: 16px; font-weight: 700; border: 0; cursor: pointer; align-self: stretch; width: 100%; text-align: center; }
.resume-page__form-wrap .form__submit:hover { background: #ffe600; }
/* upload button */
.resume-page__form-wrap .form__field { position: relative; }
.resume-upload { display: flex; flex-direction: column;  cursor: pointer; }
.resume-upload__input { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.resume-upload__btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 13px 20px; background: #121212; color: #fff; border-radius: 10px; font-size: 16px; font-weight: 700; font-family: "SF Pro Display", Helvetica; line-height: normal; transition: background 0.2s; border: 2px solid transparent; }
.resume-upload:hover .resume-upload__btn { background: #2a2a2a; }
.resume-upload__filename { font-size: 14px; color: #5b5b5b; font-family: "SF Pro Display", Helvetica; line-height: normal; }
/* privacy */
.resume-page__privacy { display: flex; align-items: center; justify-content: center; gap: 5px; font-size: 14px; color: #5c5c5c; margin: 0; font-family: "SF Pro Display", Helvetica; font-weight: 400; line-height: normal; }
.resume-page__privacy-icon { width: 16px; height: 16px; flex-shrink: 0; }

