/* Homepage landing page styles */
/* Common styles */

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Source Code 3", "IBM Plex Mono", monospace;
    font-style: normal;
}

.container {
    max-width: 1390px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    transition: all .3s;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all .3s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

path {
    transition: all .3s;
}


.btn--border {
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 15px;
    border-radius: 333px;
    border: 1px solid #E85711;
    padding: 15px 25px;
    width: fit-content;
}

.btn--border:hover {
    background: #E85711;
    color: #fff;
}



.btn--border:hover path {
    stroke: #fff;
}


.btn--light {
    border-radius: 333px;
    background: #FBFBFB;
    color: #000;
}

.btn--light:hover {
    background: #fff;
    color: #E85711;
}

.btn--light:hover path {
    stroke: #E85711;
}

.btn--accent {
    border-radius: 333px;
    background: linear-gradient(90deg, #E85711 0%, #F37A1E 100%);
    color: #fff !important;
}

.btn--accent:hover {
    filter: brightness(1.08);
}






.header__container {
    border-bottom: 1px solid rgba(22, 21, 26, 0.10);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.header__logo {
    width: 203px;
    max-width: 203px;
    height: 55px;
    display: block;
}

.header__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav__list {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav__link {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    position: relative;
}

.nav__link::after {
    content: "";
    position: absolute;
    display: block;
    top: calc(100% + 3px);
    height: 1px;
    width: 0%;
    background: #E85711;
    transition: width .3s;
}

.nav__link:hover::after {
    width: 100%;
}

.header__actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header__actions .btn {
    padding: 12px 20px;
}

.lang-switch {
    display: flex;
    gap: 2px;
    align-items: center;
}

.lang-switch__text {
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    padding-bottom: 2px;
    border-bottom: 1px solid #E85711;
}


.hero {
    padding: 20px 0;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.hero__info {
    height: 100%;
    border-radius: 25px;
    background: #16151A;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 80px;
    padding-bottom: 35px;
    padding-inline: 35px;
}

.hero__logo {
    width: 203px;
    max-width: 203px;
    height: 55px;
    display: block;
}

.hero__logo img {
    width: 100%;
    height: 100%;
}

.hero__title {
    color: #FFF;
    text-align: center;
    font-size: 45px;
    font-weight: 400;
    line-height: 50px;
    max-width: 523px;
    position: relative;
}

.hero__title span {
    position: absolute;
    top: -12px;
    right: -12px;
}

.hero__text {
    margin-top: 20px;
    color: #FFF;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    max-width: 437px;
}

.hero__buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.hero__buttons .btn {
    padding: 10px 20px;
    gap: 8px;
}


.hero__note {
    color: #FFF;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    padding: 6px 0 6px 15px;
    border-left: 1px solid #E85711;
    margin-top: 44px;
    margin-right: auto;
    max-width: 630px;
}

.hero__note span {
    display: block;
}

.hero__note span+span {
    margin-top: 4px;
}

.hero__media {
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.hero__media-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    z-index: 1;
}

.hero__badge {
    z-index: 2;
    position: relative;
    padding: 10px;
    color: #FFF !important;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    border-radius: 12px;
    background: rgba(22, 21, 26, 0.70);
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all .3s;
}

.hero__badge::after {
    position: absolute;
    content: "";
    display: block;
    top: 5px;
    right: 5px;
    width: 4px;
    height: 4px;
    border-radius: 333px;
    background: #E85711;
}

.hero__badge:hover {
    transform: scale(1.03);
}

.hero__badge--bottom {
    margin-top: auto;
    margin-right: auto;
}

.hero__badge--top {
    margin-bottom: auto;
    margin-left: auto;
}



.why {
    padding: 70px 0;
}

.why__title {
    max-width: 520px;
}

.section-title {
    color: #16151A;
    text-align: center;
    font-size: 45px;
    font-weight: 400;
    line-height: 50px;
    margin: 0 auto;
}

.section-title__accent {
    color: #E85711;
}

.why__list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.why__icon {
    margin-bottom: 15px;
}

.why__icon img {
    width: 71px;
    height: 45px;
    object-fit: contain;
    display: block;
}


.why__item-descr {
    padding-left: 20px;
    border-left: 1px solid #E85711;
}

.why__name {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 8px;
}

.why__text {
    color: rgba(0, 0, 0, 0.80);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.why__btn {
    margin-top: 40px;
    margin-inline: auto;
}


/* ── Services ──────────────────────────────────────── */

.services {
    padding: 70px 0;
}

.services__title {
    max-width: 580px;
}

.services__subtitle {
    max-width: 720px;
}

/* Tier 1 — large cards */

.services__primary {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.services__card {
    padding: 32px;
    border-radius: 25px;
    background: #F3F3F3;
    border: 1px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: border-color .3s, box-shadow .3s;
}

.services__card:hover {
    border-color: rgba(232, 87, 17, 0.22);
    box-shadow: 0 12px 32px rgba(22, 21, 26, 0.07);
}

.services__card-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
}

.services__card-icon img,
.services__card-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.services__card-name {
    color: #1C1B20;
    font-size: 30px;
    font-weight: 400;
    line-height: 34px;
    max-width: calc(100% - 84px);
}

.services__card-divider {
    width: 50px;
    height: 1px;
    background: #E85711;
    margin: 16px 0;
}

.services__card-description {
    color: rgba(0, 0, 0, 0.80);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    flex: 1;
}

.services__card-price {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(28, 27, 32, 0.60);
    font-size: 13px;
    font-weight: 400;
    line-height: 14px;
}

.services__card-price::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #E85711;
    flex-shrink: 0;
    display: block;
}

.services__card-price strong {
    color: #1C1B20;
    font-size: 22px;
    font-weight: 600;
    line-height: 22px;
}

.services__card-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.services__card-actions .btn {
    padding: 13px 22px;
}

/* Tier 2 — small cards */

.services__secondary {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.services__mini-card {
    padding: 24px;
    border-radius: 20px;
    background: #F9F9F9;
    border: 1px solid rgba(22, 21, 26, 0.08);
    display: flex;
    flex-direction: column;
    transition: border-color .3s;
}

.services__mini-card:hover {
    border-color: rgba(232, 87, 17, 0.22);
}

.services__mini-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
}

.services__mini-icon img,
.services__mini-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.services__mini-name {
    color: #1C1B20;
    font-size: 22px;
    font-weight: 400;
    line-height: 26px;
}

.services__mini-divider {
    width: 40px;
    height: 1px;
    background: #E85711;
    margin: 12px 0;
}

.services__mini-description {
    color: rgba(0, 0, 0, 0.70);
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    flex: 1;
}

.services__mini-btn {
    margin-top: 18px;
    padding: 12px 20px;
    width: fit-content;
}


.section-subtitle {
    margin-top: 20px;
    color: rgba(0, 0, 0, 0.80);
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    margin-inline: auto;
}



.press {
    padding: 60px 0;
}

.press__text {
    max-width: 720px;
}

.press__guarantee {
    margin-top: 18px;
    border: 1px solid rgba(22, 21, 26, 0.12);
    border-radius: 12px;
    background: #FBFBFC;
    padding: 14px 16px;
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 8px;
}

.press__guarantee::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #E85711;
}

.press__guarantee-title {
    margin: 0;
    color: #1C1B20;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

.press__guarantee-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.press__guarantee-logo {
    width: 36px;
    min-width: 36px;
    height: 38px;
    object-fit: contain;
	padding: 5px;
	border-radius: 8px;
	background: #1C1B20;
}

.press__guarantee-text {
    margin: 0;
    color: rgba(28, 27, 32, 0.8);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.press__guarantee-link {
    display: inline-block;
    width: fit-content;
    color: #E85711;
    font-size: 13px;
    font-weight: 600;
    line-height: 17px;
    text-decoration: none;
    border-bottom: 1px dashed rgba(232, 87, 17, 0.7);
    transition: border-color .3s, color .3s;
}

.press__guarantee-link:hover {
    color: #1C1B20;
    border-color: rgba(28, 27, 32, 0.45);
}

.press__list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.press__item {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid rgba(22, 21, 26, 0.40);
    align-items: center;
    justify-content: space-between;
}

.press__logo {
    width: 200px;
    height: 54px;
    max-width: 200px;
    padding: 5px;
    background: #fff;
    border-radius: 10px;
}

.press__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.press__name {
    max-width: 800px;
    width: 100%;
    color: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    transition: all .3s;
}

.press__item:hover .press__name {
    color: #E85711;
}

.press__arrow {
    transition: all .3s;
}

.press__item:hover .press__arrow {
    transform: scale(1.05);
}

.cta {
    padding: 40px 0 60px;
}

.cta__text {
    max-width: 750px;
}

.cta__btn {
    margin-top: 40px;
    margin-inline: auto;
}


.footer {
    padding: 40px 0 40px;
    background: #1C1B20;
}

.footer__top {
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__logo {
    width: 203px;
    max-width: 203px;
    height: 55px;
    display: block;
}

.footer__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer__nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.footer__nav a {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    transition: all .3s;
}

.footer__nav a:hover {
    color: #E85711;
}

.btn__footer {
    padding: 15px 25px;
    gap: 10px;
}

.footer__middle {
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 20px;
}

.footer__partner {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 15px;
}

.footer__mail {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 15px;
    transition: all .3s;
    border-bottom: 1px solid #fff;
}

.footer__mail:hover {
    color: #E85711;
    border-color: #E85711;
}

.footer__bottom {
    padding-top: 10px;
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-link {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 15px;
    transition: all .3s;
}

.footer-link:hover {
    color: #E85711;
}

.page {
    position: relative;
    background-image: url("../img/bg-left-1.png"), url("../img/bg-right-2.png"), url("../img/bg-left-3.png"), url("../img/bg-right-4.png");
    background-repeat: no-repeat;
    background-size: 280px auto, 280px auto, 280px auto, 280px auto;
    background-position: left -95px top 14%, right -95px top 42%, left -95px top 74%, right -95px top 102%;
}

@media (max-width: 1400px) {
    .page {
        background-image: none;
    }
}

.consult {
    padding: 70px 0;
}

.consult__container {
    border: 1px solid rgba(28, 27, 32, 0.08);
    border-radius: 25px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F6F6F8 100%);
    padding: 40px;
    box-shadow: 0 18px 45px rgba(28, 27, 32, 0.08);
    position: relative;
}

.consult__head {
    max-width: 920px;
}

.consult__label {
    width: fit-content;
    border-radius: 0 0 12px 12px;
    color: #fff;
    background: #E85711;
    font-size: 14px;
    font-weight: 400;
    line-height: 15px;
    padding: 9px 14px;
    position: absolute;
    top: -1px;
    left: 34px;
}

.consult__title {
    margin-top: 16px;
    color: #16151A;
    font-size: 44px;
    font-weight: 400;
    line-height: 48px;
    max-width: 980px;
}

.consult__text {
    margin-top: 18px;
    color: rgba(22, 21, 26, 0.82);
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    max-width: 860px;
}

.consult__grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1.45fr 0.9fr;
    gap: 22px;
}

.consult__info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.consult__block {
    border-radius: 18px;
    border: 1px solid rgba(22, 21, 26, 0.12);
    background: #FFF;
    padding: 24px;
}

.consult__block--accent {
    background: #1C1B20;
    border-color: transparent;
}

.consult__subtitle {
    color: #16151A;
    font-size: 24px;
    font-weight: 500;
    line-height: 26px;
}

.consult__block--accent .consult__subtitle {
    color: #FFF;
}

.consult__list {
    margin: 0;
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
}

.consult__item {
    position: relative;
    padding-left: 17px;
    color: rgba(22, 21, 26, 0.9);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.consult__item::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(90deg, #E85711 0%, #F37A1E 100%);
}

.consult__block-text {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
}

.consult__offer {
    border-radius: 18px;
    background: #1C1B20;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.consult__offer-title {
    color: #FFF;
    font-size: 34px;
    font-weight: 400;
    line-height: 38px;
}

.consult__offer-text {
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    font-weight: 400;
    line-height: 23px;
}

.consult__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.consult__meta span {
    border-radius: 333px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 15px;
    padding: 8px 11px;
}

.consult__btn {
    width: 100%;
    padding: 16px 22px;
}

@media (max-width: 1200px) {
    .consult__title {
        font-size: 38px;
        line-height: 42px;
    }

    .consult__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .consult {
        padding: 24px 0 44px;
    }

    .consult__container {
        padding: 24px 16px;
    }

    .consult__title {
        font-size: 30px;
        line-height: 34px;
    }

    .consult__block,
    .consult__offer {
        padding: 18px;
    }

    .consult__subtitle {
        font-size: 22px;
        line-height: 24px;
    }

    .consult__offer-title {
        font-size: 28px;
        line-height: 32px;
    }

    .consult__text,
    .consult__item,
    .consult__block-text,
    .consult__offer-text {
        font-size: 16px;
        line-height: 22px;
    }
}

.consult__offer-note {
    color: #E85711;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
}

.consult__btn {
    margin-top: 6px;
}

.faq {
    padding: 40px 0;
}

.faq__container {
    border-radius: 24px;
    background: #FFF;
    border: 1px solid rgba(22, 21, 26, 0.08);
    padding: 40px;
}

.faq__title {
    max-width: 360px;
}

.faq__list {
    margin-top: 40px;
    display: grid;
    gap: 12px;
}

.faq__item {
    border: 1px solid rgba(22, 21, 26, 0.12);
    border-radius: 14px;
    background: #FBFBFC;
    padding: 16px 18px;
    transition: border-color .35s, background .35s, box-shadow .35s;
}

.faq__item[open] {
    background: #FFF;
    border-color: rgba(232, 87, 17, 0.35);
    box-shadow: 0 10px 20px rgba(22, 21, 26, 0.06);
}

.faq__item summary {
    list-style: none;
    cursor: pointer;
    color: #16151A;
    font-size: 21px;
    font-weight: 400;
    line-height: 25px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.faq__item summary::-webkit-details-marker {
    display: none;
}

.faq__item summary::after {
    content: "+";
    color: #E85711;
    font-size: 28px;
    line-height: 18px;
    transition: transform .35s;
}

.faq__item[open] summary::after {
    transform: rotate(45deg);
}

.faq__item p {
    margin-top: 0;
    color: rgba(22, 21, 26, 0.8);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    max-width: 980px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .5s ease-in-out, opacity .35s ease-in-out, margin-top .35s ease-in-out;
}

.faq__item[open] p {
    margin-top: 10px;
    max-height: 240px;
    opacity: 1;
}

* {
    box-sizing: border-box;
}

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

body.menu-open {
    overflow: hidden;
}

.header__burger {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(22, 21, 26, 0.2);
    border-radius: 10px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.header__burger span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #16151A;
    transition: transform .3s ease, opacity .3s ease;
}

.header--menu-open .header__burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header--menu-open .header__burger span:nth-child(2) {
    opacity: 0;
}

.header--menu-open .header__burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }

    .header__container {
        gap: 12px;
    }

    .nav__list {
        gap: 20px;
    }

    .header__actions {
        gap: 12px;
    }

    .header__actions .btn {
        padding: 11px 16px;
    }

    .hero__content {
        gap: 20px;
    }

    .hero__info {
        padding-top: 56px;
        padding-inline: 24px;
    }

    .hero__title,
    .section-title,
    .consult__title {
        font-size: 38px;
        line-height: 42px;
    }

    .why__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    .services__card-name {
        font-size: 26px;
        line-height: 30px;
    }

    .press__item {
        display: grid;
        grid-template-columns: 180px 1fr auto;
        gap: 18px;
    }

    .footer__top,
    .footer__middle,
    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer__nav {
        flex-wrap: wrap;
        row-gap: 10px;
        column-gap: 20px;
    }
}

@media (max-width: 992px) {
    .header__actions {
        margin-left: auto;
        display: none;
    }

    .actions__lang,
    .actions__btn {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 86px;
        right: 0;
        left: 0;
        bottom: 0;
        background: #fff;
        padding: 14px 20px 26px;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
        z-index: 30;
    }

    body.menu-open .header__nav {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .header__nav .nav__list {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        height: 100%;
        overflow-y: auto;
    }

    .header__nav .nav__item {
        width: 100%;
        border-bottom: 1px solid rgba(22, 21, 26, 0.08);
    }

    .header__nav .nav__link {
        display: block;
        width: 100%;
        font-size: 22px;
        line-height: 26px;
        padding: 14px 0;
    }

    .hero,
    .why,
    .services,
    .consult,
    .press,
    .faq,
    .cta {
        padding: 56px 0;
    }

    .press__guarantee {
        margin-top: 16px;
        padding: 14px;
    }

    .press__guarantee-title {
        font-size: 15px;
        line-height: 19px;
    }

    .press__guarantee-text {
        font-size: 13px;
        line-height: 18px;
    }

    .press__guarantee-head {
        gap: 10px;
    }

    .press__guarantee-link {
        width: auto;
    }

    .hero__content {
        grid-template-columns: 1fr;
    }

    .hero__media {
        min-height: 380px;
    }

    .hero__note {
        margin-top: 26px;
    }

    .services__primary,
    .services__secondary {
        grid-template-columns: 1fr;
    }

    .consult__container,
    .faq__container {
        padding: 28px 20px;
    }

    .consult__label {
        position: static;
        border-radius: 333px;
    }

    .consult__title {
        margin-top: 12px;
    }

    .consult__offer-title {
        font-size: 30px;
        line-height: 34px;
    }

    .press {
        padding-top: 50px;
    }

    .press__item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 14px 0;
        position: relative;
    }

    .press__logo {
        width: 180px;
        max-width: 180px;
    }

    .press__arrow {
        margin-left: auto;
        position: absolute;
        right: 0;
        top: 10px;
    }

    .cta__btn,
    .btn__footer {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 12px;
    }

    .header__container {
        padding: 14px 0;
    }

    .header__logo {
        width: 154px;
        max-width: 154px;
        height: 42px;
    }

    .header__nav {
        top: 72px;
        padding: 10px 14px 18px;
    }

    .header__nav .nav__link {
        font-size: 20px;
        line-height: 24px;
    }

    .hero,
    .why,
    .services,
    .consult,
    .press,
    .faq,
    .cta {
        padding: 46px 0;
    }

    .btn {
        line-height: 18px;
        white-space: normal;
        text-align: center;
    }

    .btn svg {
        flex-shrink: 0;
    }

    .hero__info {
        padding: 26px 14px;
    }

    .hero__title,
    .section-title,
    .consult__title {
        font-size: 30px;
        line-height: 34px;
    }

    .hero__title span {
        display: none;
    }

    .section-subtitle,
    .hero__text,
    .consult__text,
    .press__name,
    .faq__item p {
        font-size: 16px;
        line-height: 22px;
    }

    .hero__buttons {
        width: 100%;
    }

    .hero__buttons .btn,
    .why__btn,
    .consult__btn,
    .cta__btn,
    .btn__footer {
        width: 100%;
    }

    .services__card-actions {
        flex-direction: column;
    }

    .services__card-actions .btn,
    .services__mini-btn {
        width: 100%;
    }

    .services__card {
        padding: 22px 16px;
    }

    .services__mini-card {
        padding: 18px 14px;
    }

    .hero__note {
        margin-top: 20px;
        padding-left: 12px;
        font-size: 14px;
        line-height: 20px;
    }

    .hero__media {
        min-height: 320px;
        padding: 16px;
    }

    .hero__badge {
        font-size: 13px;
        line-height: 16px;
        padding: 8px;
    }

    .why__list {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .consult__container,
    .faq__container {
        border-radius: 20px;
    }

    .consult__container {
        padding: 22px 14px;
    }

    .consult__block,
    .consult__offer {
        padding: 16px;
    }

    .consult__offer-title {
        font-size: 26px;
        line-height: 30px;
    }

    .consult__meta span {
        font-size: 13px;
        line-height: 14px;
    }

    .press__name {
        max-width: 100%;
    }

    .faq__item {
        padding: 14px;
    }

    .faq__item summary {
        font-size: 18px;
        line-height: 22px;
    }

    .footer {
        padding: 24px 0 40px;
    }

    .footer__logo {
        width: 154px;
        max-width: 154px;
        height: 42px;
    }

    .footer__nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer__partner {
        align-items: flex-start;
    }

    .ppc-site-header .nav__link::after,
    .ppc-site-header .nav__list a::after {
        display: none !important;
    }
}




a:not([class]):hover,
a:not([class]):focus,
a:not([class]):active {
    color: var(--global-palette-highlight-alt) !important;
    text-underline-offset: .25em;

}