* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body.blog {
    padding: 0px 0px;
}

a {
    cursor: pointer;
}

.bt-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.bt-header__container {
    max-width: 1320px;
    margin: 0 auto;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.bt-header__logo {
    display: flex;
    align-items: center;
}

.bt-header__logo img {
    width: 200px;
    height: auto;
    display: block;
    filter: none;
}

/* NAV */
.bt-header__nav {
    display: flex;
    align-items: center;
    gap: 44px;
}

.bt-header__nav a {
    font-size: 16px;
    color: #161616;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.bt-header__nav a:hover {
    opacity: 0.6;
}

/* RIGHT */
.bt-header__right {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* LANG */
.bt-header__lang {
    display: flex;
    border: 1px solid rgba(54, 31, 28, 0.25);
}

.bt-header__lang-link {
    width: 40px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: #F8F5EE;
    color: #161616;
    text-decoration: none;
}

.bt-header__lang-link--active {
    background: #361F1C;
    color: #fff;
}

/* BURGER */
.bt-header__burger {
    display: none;
    width: 36px;
    height: 28px;
    background: none;
    border: 0;
    cursor: pointer;
}

.bt-header__burger span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: #161616;
}

@media (max-width: 1110px) {
    .bt-header__container {
        padding: 0px 20px;
    }
}

/* MOBILE */
@media (max-width: 820px) {

    .bt-header__burger {
        display: block;
    }

    .bt-header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        display: none;
        flex-direction: column;
        padding: 25px;
        gap: 18px;
        border-top: 1px solid #eee;
    }

    .bt-header__nav.bt-header__nav--active {
        display: flex;
    }

    
}

.bt-hero {
    background: #fff;
    width: 100%;
    padding-top: 100px;
}
.bt-hero__top {
    width: 100%;
    padding: 42px 0 0;
}

.bt-hero__container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 0px;
    box-sizing: border-box;
}

.bt-hero__content {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(320px, 365px);
    gap: 70px;
    align-items: start;
    padding-bottom: 42px;
}

.bt-hero__left {
    min-width: 0;
}

.bt-hero__title {
    margin: 0;
    font-size: 61px;
    line-height: 1.2;
    font-weight: 300;
    text-transform: uppercase;
    color: #222222;
    max-width: 100%;
}

.bt-hero__title span {
    font-weight: 400;
}

.bt-hero__right {
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bt-hero__text {
    margin: 0 0 28px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 400;
    color: #444444;
    max-width: 390px;
}

.bt-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100%;
    height: 54px;
    padding: 0 36px;
    background: #361f1c;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    transition: background 0.3s ease, transform 0.3s ease;
}

.bt-hero__button:hover {
    background: #361814;
    transform: translateY(-2px);
}
.bt-hero__image-wrap {
    position: relative;
    width: 100%;
    height: 640px;
    overflow: hidden;
}

.bt-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bt-hero__badge {
    position: absolute;
    top: 44px;
    left: 0;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 22px 34px;
    background: #161616;
    color: #FFFFFF;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.bt-hero__badge-icon {
    font-size: 34px;
    line-height: 1;
}

.bt-hero__badge-text {
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}
@media (max-width: 1600px) {
    .bt-hero__title {
        font-size: 61px;
    }

    .bt-hero__text {
        font-size: 22px;
    }

    .bt-hero__image-wrap {
        height: 560px;
    }
}
@media (max-width: 1200px) {
    .bt-hero__content {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .bt-hero__right {
        padding-top: 0;
        max-width: 600px;
    }

    .bt-hero__title {
        font-size: 58px;
        max-width: 100%;
    }

    .bt-hero__text {
        max-width: 100%;
        font-size: 20px;
    }

    .bt-hero__button {
        min-width: 280px;
        height: 62px;
        font-size: 20px;
    }

    .bt-hero__image-wrap {
        height: 500px;
    }
}
@media (max-width: 992px) {
    .bt-hero__top {
        padding-top: 30px;
    }

    .bt-hero__container {
        padding: 0 20px;
    }

    .bt-hero__title {
        font-size: 48px;
        line-height: 1.2;
    }

    .bt-hero__text {
        font-size: 18px;
        margin-bottom: 22px;
    }

    .bt-hero__button {
        min-width: 100%;
        max-width: 420px;
        height: 58px;
        font-size: 18px;
    }

    .bt-hero__image-wrap {
        height: 420px;
    }

    .bt-hero__badge {
        top: 24px;
        padding: 16px 24px;
        gap: 12px;
    }

    .bt-hero__badge-icon {
        font-size: 24px;
    }

    .bt-hero__badge-text {
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .bt-hero__title {
        font-size: 38px;
    }

    .bt-hero__image-wrap {
        height: 320px;
    }
}
@media (max-width: 576px) {
    .bt-hero__container {
        padding: 0 16px;
    }

    .bt-hero__top {
        padding-top: 24px;
    }

    .bt-hero__content {
        gap: 24px;
        padding-bottom: 28px;
    }

    .bt-hero__title {
        font-size: 28px;
        line-height: 1.2;
    }

    .bt-hero__text {
        font-size: 16px;
        line-height: 1.45;
        margin-bottom: 18px;
    }

    .bt-hero__button {
        width: 100%;
        min-width: 100%;
        height: 54px;
        padding: 0 20px;
        font-size: 16px;
    }

    .bt-hero__image-wrap {
        height: 240px;
    }

    .bt-hero__badge {
        top: 14px;
        padding: 10px 16px;
        gap: 8px;
    }

    .bt-hero__badge-icon {
        font-size: 16px;
    }

    .bt-hero__badge-text {
        font-size: 12px;
    }
}

.bt-experience {
    background: #fff;
    padding: 80px 20px;
}

.bt-experience__container {
    max-width: 1320px;
    margin: 0 auto;
}

.bt-experience__header {
    margin-bottom: 42px;
}

.bt-experience__title {
    margin: 0 0 18px;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 300;
    text-transform: uppercase;
    color: #111111;
}

.bt-experience__subtitle {
    margin: 0;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 300;
    color: #8E8E8E;
}

.bt-experience__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
}

.bt-experience__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.bt-experience__card {
    position: relative;
    min-height: 208px;
    padding: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bt-experience__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    z-index: 1;
}

.bt-experience__card--light::before {
    background-image:
        linear-gradient(rgba(17, 17, 17, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 17, 17, 0.06) 1px, transparent 1px);
}

.bt-experience__card--dark {
    background: #161616;
    color: #FFFFFF;
}

.bt-experience__card--light {
    background: #F8F5EE;
    border: 1px solid rgba(17, 17, 17, 0.08);
    color: #111111;
}

.bt-experience__card--accent {
    background: #361F1C;
    color: #FFFFFF;
}

.bt-experience__number,
.bt-experience__card-title {
    position: relative;
    z-index: 2;
}

.bt-experience__number {
    display: block;
    font-size: 64px;
    line-height: 1;
    font-weight: 300;
}

.bt-experience__card-title {
    margin: 0;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 300;
    text-transform: uppercase;
    max-width: 420px;
}

.bt-experience__arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: 128px;
    z-index: 2;
    pointer-events: none;
}

.bt-experience__arrow svg {
    display: block;
    width: 100%;
    height: 100%;
}

.bt-experience__image {
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 0;
    align-self: stretch;
}

.bt-experience__image img {
    width: 100%;
    height: 100%;
    max-height: calc((208px * 3) + (16px * 2));
    display: block;
    object-fit: cover;
}
@media (max-width: 1440px) {
    .bt-experience__title {
        font-size: 48px;
    }
}
@media (max-width: 1200px) {

    .bt-experience__image img {
        max-height: calc((190px * 3) + (16px * 2));
    }

    .bt-experience__title {
        font-size: 48px;
    }

    .bt-experience__subtitle {
        font-size: 20px;
    }

    .bt-experience__card {
        min-height: 190px;
    }

    .bt-experience__number {
        font-size: 56px;
    }

    .bt-experience__card-title {
        font-size: 22px;
    }
}
@media (max-width: 992px) {
    .bt-experience {
        padding: 80px 20px;
    }

    .bt-experience__content {
        grid-template-columns: 1fr;
    }

    .bt-experience__image {
        height: auto;
        min-height: 420px;
    }

    .bt-experience__image img {
        height: 420px;
    }

    .bt-experience__title {
        font-size: 40px;
    }

    .bt-experience__subtitle {
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .bt-experience {
        padding: 70px 16px;
    }

    .bt-experience__header {
        margin-bottom: 30px;
    }

    .bt-experience__title {
        font-size: 34px;
        line-height: 1;
    }

    .bt-experience__subtitle {
        font-size: 16px;
        line-height: 1.6;
    }

    .bt-experience__card {
        min-height: 180px;
        padding: 24px;
    }

    .bt-experience__number {
        font-size: 48px;
    }

    .bt-experience__card-title {
        font-size: 20px;
    }

    .bt-experience__arrow {
        width: 100px;
        height: 98px;
        top: -10px;
        right: -10px;
    }

    .bt-experience__image {
        min-height: 360px;
    }

    .bt-experience__image img {
        height: 360px;
    }
}
@media (max-width: 576px) {
    .bt-experience__title {
        font-size: 28px;
    }

    .bt-experience__subtitle {
        font-size: 15px;
    }

    .bt-experience__card {
        min-height: 160px;
        padding: 20px;
    }

    .bt-experience__number {
        font-size: 42px;
    }

    .bt-experience__card-title {
        font-size: 18px;
        max-width: 100%;
    }

    .bt-experience__arrow {
        width: 84px;
        height: 82px;
        top: -8px;
        right: -8px;
    }

    .bt-experience__image {
        min-height: 300px;
    }

    .bt-experience__image img {
        height: 300px;
    }
}

.bt-consult {
    width: 100%;
    background: #161616;
    padding: 80px 20px 78px;
    overflow: hidden;
}

.bt-consult__container {
    max-width: 1320px;
    margin: 0 auto;
}

.bt-consult__title {
    margin: 0 0 52px;
    color: #fff;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.bt-consult__grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 420px);
    gap: 30px;
    align-items: stretch;
}

.bt-consult__items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.bt-consult__item,
.bt-consult__form {
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(rgba(17, 17, 17, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 17, 17, 0.07) 1px, transparent 1px);
    background-size: 64px 64px;
}

.bt-consult__item {
    min-height: 184px;
    background-color: #fff;
    padding: 28px 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bt-consult__icon,
.bt-consult__form-icon {
    width: 60px;
    height: 60px;
    background: #161616;
    color: #F8F5EE;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    position: relative;
    z-index: 2;
}

.bt-consult__item p {
    margin: 0;
    max-width: 330px;
    color: #161616;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.bt-consult__star,
.bt-consult__form-star {
    position: absolute;
    top: 8px;
    right: 10px;
    color: rgba(54, 31, 28, 0.18);
    font-size: 66px;
    line-height: 1;
    z-index: 1;
}

.bt-consult__form {
    min-height: 398px;
    border: 1px solid rgba(248, 245, 238, 0.25);
    background-color: transparent;
    background-image:
        linear-gradient(rgba(248, 245, 238, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(248, 245, 238, 0.08) 1px, transparent 1px);
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.bt-consult__form-icon {
    background: #fff;
    color: #161616;
    margin-bottom: 22px;
}

.bt-consult__form-text {
    margin: 0 0 28px;
    color: #fff;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 300;
    max-width: 300px;
    position: relative;
    z-index: 2;
}

.bt-consult__form input {
    width: 100%;
    height: 48px;
    border: 1px solid #fff;
    background: transparent;
    padding: 0 16px;
    color: #F8F5EE;
    font-size: 16px;
    outline: none;
    margin-bottom: 16px;
    box-sizing: border-box;
}

.bt-consult__form input::placeholder {
    color: rgba(248, 245, 238, 0.6);
}

.bt-consult__form button {
    width: 100%;
    height: 52px;
    border: none;
    background: #fff;
    color: #161616;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    margin-top: 4px;
    transition: 0.25s ease;
}

.bt-consult__form button:hover {
    opacity: 0.85;
}

.bt-consult__telegram {
    margin-top: 18px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
}

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

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

    .bt-consult__form {
        max-width: 100%;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .bt-consult {
        padding: 64px 16px;
    }

    .bt-consult__title {
        font-size: 34px;
        margin-bottom: 34px;
    }

    .bt-consult__items {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bt-consult__grid {
        gap: 16px;
    }

    .bt-consult__item {
        min-height: 150px;
        padding: 22px;
        gap: 20px;
    }

    .bt-consult__item p,
    .bt-consult__form-text {
        font-size: 18px;
    }

    .bt-consult__form {
        padding: 22px;
    }
}

@media (max-width: 480px) {
    .bt-consult__title {
        font-size: 28px;
    }

    .bt-consult__item {
        min-height: 138px;
    }

    .bt-consult__icon,
    .bt-consult__form-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .bt-consult__star,
    .bt-consult__form-star {
        font-size: 52px;
    }

    .bt-consult__form input,
    .bt-consult__form button {
        height: 48px;
        font-size: 14px;
    }
}
.bt-process {
    width: 100%;
    background: #ffffff;
    padding: 80px 20px 92px;
    overflow: hidden;
}

.bt-process__container {
    max-width: 1320px;
    margin: 0 auto;
}

.bt-process__title {
    margin: 0 0 58px;
    color: #161616;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 300;
    text-transform: uppercase;
}

.bt-process__title span {
    font-weight: 400;
}
.bt-process__timeline {
    position: relative;
    width: 100%;
    height: 280px;
}
.bt-process__line {
    position: absolute;
    left: 0;
    right: 0;
    top: 126px;
    height: 1px;
    background: rgba(22, 22, 22, 0.35);
}
.bt-process__point {
    position: absolute;
    top: 118px;
    width: 18px;
    height: 18px;
    background: #161616;
    border-radius: 50%;
    z-index: 3;
    transform: translateX(-50%);
}
.bt-process__point--1 {
    left: 0%;
}

.bt-process__point--2 {
    left: 20%;
}

.bt-process__point--3 {
    left: 40%;
}

.bt-process__point--4 {
    left: 60%;
}

.bt-process__point--5 {
    left: 80%;
}
.bt-process__step {
    position: absolute;
    width: 245px;
    min-height: 110px;
    padding: 14px 18px;
    box-sizing: border-box;
    z-index: 2;
}

.bt-process__step span {
    display: block;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1;
    font-weight: 300;
}

.bt-process__step p {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 300;
}

.bt-process__step--dark {
    background: #161616;
    color: #F8F5EE;
}

.bt-process__step--light {
    background: #F8F5EE;
    color: #161616;
}
.bt-process__step--top {
    top: -10px;
}

.bt-process__step--bottom {
    top: 148px;
}
.bt-process__step--1 {
    left: 0;
}

.bt-process__step--2 {
    left: 20%;
    transform: translateX(0);
}

.bt-process__step--3 {
    left: 40%;
    transform: translateX(0);
}

.bt-process__step--4 {
    left: 60%;
    transform: translateX(0);
}

.bt-process__step--5 {
    left: 80%;
    transform: translateX(0);
}
@media (max-width: 1400px) {
    .bt-process__step {
        width: 240px;
        min-height: 106px;
    }

    .bt-process__step p {
        font-size: 15px;
    }
}
@media (max-width: 1200px) {
    .bt-process__title {
        font-size: 42px;
    }

    .bt-process__timeline {
        height: 270px;
    }

    .bt-process__step {
        width: 230px;
        padding: 14px 16px;
    }

    .bt-process__step span {
        font-size: 22px;
    }

    .bt-process__step p {
        font-size: 14px;
    }
}
@media (max-width: 992px) {
    .bt-process {
        padding: 72px 20px;
    }

    .bt-process__title {
        font-size: 38px;
        margin-bottom: 40px;
    }
    .bt-process__timeline {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 18px;
        height: auto;
        padding-left: 30px;
    }
    .bt-process__line {
        left: 8px;
        top: 0;
        bottom: 0;
        width: 1px;
        height: auto;
        right: auto;
    }
    .bt-process__point {
        left: 8px !important;
        top: auto;
        transform: translateX(-50%);
        width: 16px;
        height: 16px;
        position: absolute;
    }

    .bt-process__point--1 {
        top: 46px;
    }

    .bt-process__point--2 {
        top: 182px;
    }

    .bt-process__point--3 {
        top: 318px;
    }

    .bt-process__point--4 {
        top: 454px;
    }

    .bt-process__point--5 {
        top: 590px;
    }
    .bt-process__step {
        position: relative;
        top: auto;
        left: auto !important;
        right: auto;
        transform: none !important;
        width: 100%;
        max-width: 100%;
        min-height: auto;
    }

    .bt-process__step--top,
    .bt-process__step--bottom {
        top: auto;
    }
}
@media (max-width: 768px) {
    .bt-process {
        padding: 64px 16px;
    }

    .bt-process__title {
        font-size: 34px;
    }

    .bt-process__step {
        padding: 16px;
    }

    .bt-process__step span {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .bt-process__step p {
        font-size: 15px;
        line-height: 1.3;
    }
}
@media (max-width: 576px) {
    .bt-process__title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .bt-process__timeline {
        padding-left: 24px;
        gap: 14px;
    }

    .bt-process__line {
        left: 6px;
    }

    .bt-process__point {
        left: 6px !important;
        width: 14px;
        height: 14px;
    }

    .bt-process__step {
        padding: 14px 15px;
    }

    .bt-process__step span {
        font-size: 20px;
    }

    .bt-process__step p {
        font-size: 14px;
    }
    .bt-process__point--1 {
        top: 42px;
    }

    .bt-process__point--2 {
        top: 170px;
    }

    .bt-process__point--3 {
        top: 298px;
    }

    .bt-process__point--4 {
        top: 426px;
    }

    .bt-process__point--5 {
        top: 554px;
    }
}

.bt-services {
    width: 100%;
    background: #161616;
    padding: 80px 20px 78px;
    overflow: hidden;
}

.bt-services__container {
    max-width: 1320px;
    margin: 0 auto;
}

.bt-services__title {
    margin: 0 0 56px;
    color: #F8F5EE;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 300;
    text-transform: uppercase;
}

.bt-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.bt-services__card {
    position: relative;
    min-height: 230px;
    padding: 32px 30px 28px;
    overflow: hidden;
    border: 1px solid rgba(248, 245, 238, 0.18);
    display: flex;
    flex-direction: column;
}

.bt-services__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(248, 245, 238, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(248, 245, 238, 0.08) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    z-index: 1;
}

.bt-services__card--cream::before,
.bt-services__card--white::before {
    background-image:
        linear-gradient(rgba(22, 22, 22, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22, 22, 22, 0.07) 1px, transparent 1px);
}

.bt-services__card--dark {
    background: #161616;
    color: #F8F5EE;
}

.bt-services__card--cream {
    background: #F8F5EE;
    color: #161616;
}

.bt-services__card--white {
    background: #FFFFFF;
    color: #161616;
}

.bt-services__icon {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    margin-bottom: 42px;
    background: #F8F5EE;
    color: #161616;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    line-height: 1;
}

.bt-services__card--cream .bt-services__icon,
.bt-services__card--white .bt-services__icon {
    background: #161616;
    color: #F8F5EE;
}

.bt-services__star {
    position: absolute;
    top: 16px;
    right: 18px;
    z-index: 2;
    font-size: 70px;
    line-height: 1;
    color: rgba(248, 245, 238, 0.22);
}

.bt-services__card--cream .bt-services__star,
.bt-services__card--white .bt-services__star {
    color: rgba(54, 31, 28, 0.18);
}

.bt-services__card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 16px;
    font-size: 28px;
    line-height: 1.05;
    font-weight: 300;
    text-transform: uppercase;
}

.bt-services__card p {
    position: relative;
    z-index: 2;
    margin: 0 0 28px;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 300;
    color: inherit;
    opacity: 0.82;
}

.bt-services__actions {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.bt-services__btn {
    min-width: 138px;
    height: 48px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    box-sizing: border-box;
}

.bt-services__btn--outline {
    border: 1px solid rgba(248, 245, 238, 0.55);
    color: #F8F5EE;
    background: transparent;
}

.bt-services__btn--light {
    border: 1px solid #F8F5EE;
    background: #F8F5EE;
    color: #161616;
}

.bt-services__btn--outline-dark {
    border: 1px solid #361F1C;
    color: #161616;
    background: transparent;
}

.bt-services__btn--dark {
    border: 1px solid #361F1C;
    background: #361F1C;
    color: #F8F5EE;
}

@media (max-width: 1200px) {
    .bt-services__title {
        font-size: 42px;
    }

    .bt-services__grid {
        gap: 20px;
    }

    .bt-services__card {
        padding: 28px 24px 24px;
    }

    .bt-services__card h3 {
        font-size: 24px;
    }

    .bt-services__card p {
        font-size: 18px;
    }

    .bt-services__btn {
        min-width: 120px;
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .bt-services {
        padding: 72px 20px;
    }

    .bt-services__grid {
        grid-template-columns: 1fr;
    }

    .bt-services__card {
        min-height: 220px;
    }
}

@media (max-width: 768px) {
    .bt-services {
        padding: 64px 16px;
    }

    .bt-services__title {
        font-size: 34px;
        margin-bottom: 36px;
    }

    .bt-services__icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
        margin-bottom: 34px;
    }

    .bt-services__card h3 {
        font-size: 22px;
    }

    .bt-services__card p {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .bt-services__title {
        font-size: 28px;
    }

    .bt-services__card {
        padding: 22px;
        min-height: 210px;
    }

    .bt-services__actions {
        flex-direction: column;
        gap: 10px;
    }

    .bt-services__btn {
        width: 100%;
        min-width: 100%;
        height: 46px;
    }

    .bt-services__star {
        font-size: 54px;
    }
}

.bt-why {
    width: 100%;
    background: #ffffff;
    padding: 80px 20px 78px;
    overflow: hidden;
}

.bt-why__container {
    max-width: 1320px;
    margin: 0 auto;
}

.bt-why__title {
    margin: 0 0 52px;
    color: #161616;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 300;
    text-transform: uppercase;
}

.bt-why__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.bt-why__card {
    position: relative;
    min-height: 220px;
    padding: 36px 34px 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bt-why__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: 64px 64px;
    pointer-events: none;
    z-index: 1;
}

.bt-why__card--accent {
    background: #361F1C;
    color: #F8F5EE;
}

.bt-why__card--accent::before {
    background-image:
        linear-gradient(rgba(248, 245, 238, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(248, 245, 238, 0.08) 1px, transparent 1px);
}

.bt-why__card--light {
    background: #F8F5EE;
    color: #161616;
}

.bt-why__card--light::before {
    background-image:
        linear-gradient(rgba(22, 22, 22, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22, 22, 22, 0.06) 1px, transparent 1px);
}

.bt-why__number {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 28px;
    font-size: 64px;
    line-height: 1;
    font-weight: 300;
}

.bt-why__card h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    max-width: 100%;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 300;
    text-transform: uppercase;
}

.about__page__bt-why__card {
    position: relative!important;
    z-index: 2!important;
    margin: 0!important;
    max-width: 100%!important;
    font-size: 40px!important;
    line-height: 1.15!important;
    font-weight: 300!important;
    text-transform: uppercase!important;
}

.bt-why__arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: 128px;
    z-index: 2;
    color: currentColor;
    opacity: 0.22;
    font-size: 130px;
    line-height: 0.75;
    font-weight: 300;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .bt-why__title {
        font-size: 42px;
    }

    .bt-why__grid {
        gap: 22px;
    }

    .bt-why__card {
        min-height: 200px;
        padding: 30px;
    }

    .bt-why__number {
        font-size: 56px;
    }

    
    .bt-why__card h3 {
        font-size: 26px;
    }

    .about__page__bt-why__card {
        font-size: 30px;
    }
}

@media (max-width: 992px) {
    .bt-why {
        padding: 72px 20px;
    }

    .bt-why__grid {
        grid-template-columns: 1fr;
    }

    .bt-why__title {
        font-size: 38px;
        margin-bottom: 38px;
    }
}

@media (max-width: 768px) {
    .bt-why {
        padding: 64px 16px;
    }

    .bt-why__title {
        font-size: 34px;
    }

    .bt-why__card {
        min-height: 180px;
        padding: 24px;
    }

    .bt-why__number {
        font-size: 48px;
        margin-bottom: 22px;
    }

    .bt-why__card h3 {
        font-size: 22px;
    }

    
    .about__page__bt-why__card {
        font-size: 22px;
    }

    .bt-why__arrow {
        width: 96px;
        height: 94px;
        font-size: 96px;
    }
}

@media (max-width: 480px) {
    .bt-why__title {
        font-size: 28px;
    }

    .bt-why__grid {
        gap: 16px;
    }

    .bt-why__card {
        min-height: 160px;
        padding: 20px;
    }

    .bt-why__number {
        font-size: 42px;
    }

    .bt-why__card h3 {
        font-size: 18px;
    }

    .about__page__bt-why__card {
        font-size: 18px;
    }

    .bt-why__arrow {
        width: 82px;
        height: 80px;
        font-size: 82px;
    }
}

.bt-principles {
    width: 100%;
    background: #161616;
    padding: 82px 20px 78px;
    overflow: hidden;
}

.bt-principles__container {
    max-width: 1320px;
    margin: 0 auto;
}

.bt-principles__title {
    margin: 0 0 56px;
    color: #F8F5EE;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 300;
    text-transform: uppercase;
}

.bt-principles__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-bottom: 28px;
}

.bt-principles__card {
    position: relative;
    min-height: 136px;
    padding: 28px 30px 24px;
    background: #ffffff;
    color: #161616;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bt-principles__card::before,
.bt-principles__statement::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(22, 22, 22, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22, 22, 22, 0.07) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    z-index: 1;
}

.bt-principles__icon {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    margin-bottom: 28px;
    background: #161616;
    color: #F8F5EE;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
}

.bt-principles__card p {
    position: relative;
    z-index: 2;
    margin: 0;
    max-width: 340px;
    color: #161616;
    font-size: 20px;
    line-height: 1.22;
    font-weight: 300;
}

.bt-principles__star {
    position: absolute;
    top: 10px;
    right: 14px;
    z-index: 2;
    color: rgba(54, 31, 28, 0.18);
    font-size: 64px;
    line-height: 1;
}

.bt-principles__statement {
    position: relative;
    min-height: 192px;
    padding: 42px 40px;
    border: 1px solid rgba(248, 245, 238, 0.22);
    overflow: hidden;
    background: #161616;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bt-principles__statement::before {
    background-image:
        linear-gradient(rgba(248, 245, 238, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(248, 245, 238, 0.07) 1px, transparent 1px);
}

.bt-principles__statement p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #F8F5EE;
    text-align: center;
    font-size: 48px;
    line-height: 1.24;
    font-weight: 200;
    text-transform: uppercase;
}

.bt-principles__statement p span {
    font-weight: 400;
}

.bt-principles__statement-arrow {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    color: rgba(248, 245, 238, 0.22);
    font-size: 132px;
    line-height: 0.78;
    font-weight: 300;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .bt-principles__title {
        font-size: 42px;
    }

    .bt-principles__grid {
        gap: 20px;
    }

    .bt-principles__card p {
        font-size: 18px;
    }

    .bt-principles__statement p {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .bt-principles {
        padding: 72px 20px;
    }

    .bt-principles__grid {
        grid-template-columns: 1fr;
    }

    .bt-principles__title {
        font-size: 38px;
        margin-bottom: 38px;
    }

    .bt-principles__card {
        min-height: 130px;
    }

    .bt-principles__statement {
        min-height: 160px;
    }

    .bt-principles__statement p {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .bt-principles {
        padding: 64px 16px;
    }

    .bt-principles__title {
        font-size: 34px;
    }

    .bt-principles__card {
        padding: 24px;
    }

    .bt-principles__card p {
        font-size: 17px;
    }

    .bt-principles__statement {
        padding: 34px 24px;
    }

    .bt-principles__statement p {
        font-size: 24px;
    }

    .bt-principles__statement-arrow {
        font-size: 96px;
    }
}

@media (max-width: 480px) {
    .bt-principles__title {
        font-size: 28px;
    }

    .bt-principles__icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 22px;
    }

    .bt-principles__star {
        font-size: 52px;
    }

    .bt-principles__statement p {
        font-size: 20px;
    }
}

.bt-case {
    width: 100%;
    background: #ffffff;
    padding: 82px 20px 78px;
    overflow: hidden;
}

.bt-case__container {
    max-width: 1320px;
    margin: 0 auto;
}

.bt-case__title {
    margin: 0 0 48px;
    color: #161616;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 300;
    text-transform: uppercase;
}

.bt-case__title span {
    font-weight: 400;
}

.bt-case__box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 378px;
}

.bt-case__col {
    position: relative;
    overflow: hidden;
    padding: 52px 46px;
    display: flex;
    align-items: flex-start;
}

.bt-case__col::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: 64px 64px;
    pointer-events: none;
    z-index: 1;
}

.bt-case__col--dark {
    background: #361F1C;
    color: #ffffff;
}

.bt-case__col--dark::before {
    background-image:
        linear-gradient(rgba(248, 245, 238, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(248, 245, 238, 0.08) 1px, transparent 1px);
}

.bt-case__col--light {
    background: #F8F5EE;
    color: #161616;
}

.bt-case__col--light::before {
    background-image:
        linear-gradient(rgba(22, 22, 22, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22, 22, 22, 0.06) 1px, transparent 1px);
}

.bt-case__col p {
    position: relative;
    z-index: 2;
    margin: 0;
    max-width: 560px;
    font-size: 24px;
    line-height: 1.26;
    font-weight: 400;
}

@media (max-width: 1200px) {
    .bt-case__title {
        font-size: 42px;
    }

    .bt-case__col {
        padding: 42px 34px;
    }

    .bt-case__col p {
        font-size: 21px;
    }
}

@media (max-width: 992px) {
    .bt-case {
        padding: 72px 20px;
    }

    .bt-case__box {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .bt-case__title {
        font-size: 38px;
        margin-bottom: 36px;
    }

    .bt-case__col {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .bt-case {
        padding: 64px 16px;
    }

    .bt-case__title {
        font-size: 34px;
    }

    .bt-case__col {
        padding: 30px 24px;
    }

    .bt-case__col p {
        font-size: 18px;
        line-height: 1.35;
    }
}

@media (max-width: 480px) {
    .bt-case__title {
        font-size: 28px;
    }

    .bt-case__col {
        padding: 24px 20px;
    }

    .bt-case__col p {
        font-size: 16px;
    }
}

.bt-strategy {
    position: relative;
    width: 100%;
    background: #161616;
    padding: 90px 20px 86px;
    overflow: hidden;
}

.bt-strategy__container {
    position: relative;
    z-index: 3;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 610px;
    gap: 70px;
    align-items: center;
}

.bt-strategy__left {
    position: relative;
    min-width: 0;
}

.bt-strategy__title {
    margin: 0 0 34px;
    color: #F8F5EE;
    font-size: 48px;
    line-height: 1.12;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.bt-strategy__text-box {
    max-width: 620px;
}

.bt-strategy__text-box p {
    margin: 0;
    color: #F8F5EE;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 300;
}

.bt-strategy__form {
    width: 100%;
    background: #ffffff;
    padding: 38px 32px 34px;
    box-sizing: border-box;
}

.bt-strategy__form input,
.bt-strategy__form textarea {
    width: 100%;
    border: 1px solid rgba(22, 22, 22, 0.55);
    background: transparent;
    color: #161616;
    font-size: 18px;
    font-weight: 300;
    padding: 0 22px;
    margin-bottom: 20px;
    box-sizing: border-box;
    outline: none;
}

.bt-strategy__form input {
    height: 52px;
}

.bt-strategy__form textarea {
    height: 160px;
    padding-top: 20px;
    resize: none;
}

.bt-strategy__form input::placeholder,
.bt-strategy__form textarea::placeholder {
    color: rgba(22, 22, 22, 0.45);
}

.bt-strategy__form button {
    width: 100%;
    height: 56px;
    border: none;
    background: #361F1C;
    color: #F8F5EE;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.25s ease;
}

.bt-strategy__form button:hover {
    opacity: 0.88;
}

.bt-strategy__telegram {
    display: block;
    margin-top: 22px;
    text-align: center;
    color: #161616;
    font-size: 18px;
    font-weight: 300;
    text-decoration: none;
}

.bt-strategy__bg-star {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.bt-strategy__bg-star svg {
    display: block;
    width: 100%;
    height: 100%;
}

.bt-strategy__bg-star--left {
    left: 0px;
    top: 0px;
    width: 680px;
    height: 730px;
}

.bt-strategy__bg-star--right {
    right: -500px;
    bottom: -470px;
    width: 680px;
    height: 730px;
}

@media (max-width: 1200px) {
    .bt-strategy__container {
        grid-template-columns: 1fr 520px;
        gap: 44px;
    }

    .bt-strategy__title {
        font-size: 42px;
    }

    .bt-strategy__text-box p {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .bt-strategy {
        padding: 72px 20px;
    }

    .bt-strategy__container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .bt-strategy__form {
        max-width: 100%;
    }

    .bt-strategy__title {
        font-size: 38px;
    }

    .bt-strategy__bg-star--left {
        left: -460px;
        top: -160px;
    }

    .bt-strategy__bg-star--right {
        right: -540px;
        bottom: -520px;
    }
}

@media (max-width: 768px) {
    .bt-strategy {
        padding: 64px 16px;
    }

    .bt-strategy__title {
        font-size: 34px;
    }

    .bt-strategy__text-box p {
        font-size: 16px;
        line-height: 1.45;
    }

    .bt-strategy__form {
        padding: 28px 22px 26px;
    }

    .bt-strategy__form input,
    .bt-strategy__form textarea {
        font-size: 16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .bt-strategy__form textarea {
        height: 140px;
    }
}

@media (max-width: 480px) {
    .bt-strategy__title {
        font-size: 28px;
    }

    .bt-strategy__form input {
        height: 48px;
    }

    .bt-strategy__form button {
        height: 50px;
        font-size: 15px;
    }

    .bt-strategy__telegram {
        font-size: 15px;
    }
}

.bt-footer {
    position: relative;
    width: 100%;
    background: #161616;
    padding: 70px 20px 72px;
    overflow: hidden;
}

.bt-footer__container {
    position: relative;
    z-index: 3;
    max-width: 1320px;
    margin: 0 auto;
}

.bt-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 54px;
}

.bt-footer__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.bt-footer__logo img {
    display: block;
    width: 245px;
    height: auto;
}

.bt-footer__copy {
    margin: 0;
    color: #F8F5EE;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 300;
}

.bt-footer__nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 54px;
    margin-bottom: 42px;
}

.bt-footer__nav a {
    color: #F8F5EE;
    text-decoration: none;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 300;
    transition: opacity 0.25s ease;
}

.bt-footer__nav a:hover {
    opacity: 0.65;
}

.bt-footer__note {
    margin: 0;
    color: #F8F5EE;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 300;
}

.bt-footer__star {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.bt-footer__star svg {
    display: block;
    width: 100%;
    height: 100%;
}

.bt-footer__star--right {
    right: 0;
    bottom: 0;
    width: 255px;
    height: 418px;
}
@media (max-width: 1200px) {
    .bt-footer__logo img {
        width: 220px;
    }

    .bt-footer__copy,
    .bt-footer__nav a,
    .bt-footer__note {
        font-size: 19px;
    }

    .bt-footer__nav {
        gap: 36px;
    }
}
@media (max-width: 992px) {
    .bt-footer {
        padding: 62px 20px;
    }

    .bt-footer__top {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 40px;
    }

    .bt-footer__nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 32px;
    }
}
@media (max-width: 768px) {
    .bt-footer {
        padding: 56px 16px;
    }

    .bt-footer__logo img {
        width: 190px;
    }

    .bt-footer__copy,
    .bt-footer__nav a,
    .bt-footer__note {
        font-size: 17px;
    }

    .bt-footer__nav {
        grid-template-columns: 1fr;
        margin-bottom: 34px;
    }

    .bt-footer__star--right {
        right: -80px;
        bottom: -80px;
        width: 220px;
        height: 360px;
    }
}
@media (max-width: 480px) {
    .bt-footer__logo img {
        width: 170px;
    }

    .bt-footer__copy,
    .bt-footer__nav a,
    .bt-footer__note {
        font-size: 15px;
    }
}

.bt-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bt-popup.bt-popup--active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.bt-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(22, 22, 22, 0.78);
    backdrop-filter: blur(6px);
}

.bt-popup__box {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 610px;
    background: #ffffff;
    padding: 50px 36px 36px;
    box-sizing: border-box;
    transform: translateY(24px) scale(0.96);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.bt-popup__close {
    position: absolute;
    top: 8px;
    right: 5px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #161616;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.bt-popup__form input,
.bt-popup__form textarea {
    width: 100%;
    border: 1px solid rgba(22, 22, 22, 0.55);
    background: transparent;
    color: #161616;
    font-size: 18px;
    font-weight: 300;
    padding: 0 22px;
    margin-bottom: 20px;
    box-sizing: border-box;
    outline: none;
}

.bt-popup__form input {
    height: 52px;
}

.bt-popup__form textarea {
    height: 160px;
    padding-top: 20px;
    resize: none;
}

.bt-popup.bt-popup--active .bt-popup__box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.bt-popup__form input::placeholder,
.bt-popup__form textarea::placeholder {
    color: rgba(22, 22, 22, 0.45);
}

.bt-popup__form button {
    width: 100%;
    height: 56px;
    border: none;
    background: #361F1C;
    color: #F8F5EE;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

.bt-popup__telegram {
    display: block;
    margin-top: 22px;
    text-align: center;
    color: #161616;
    font-size: 18px;
    font-weight: 300;
    text-decoration: none;
}

body.bt-popup-lock {
    overflow: hidden;
}

@media (max-width: 576px) {
    .bt-popup__box {
        padding: 38px 22px 28px;
    }

    .bt-popup__form input {
        height: 48px;
    }

    .bt-popup__form textarea {
        height: 130px;
    }

    .bt-popup__form input,
    .bt-popup__form textarea {
        font-size: 15px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .bt-popup__form button {
        height: 50px;
        font-size: 15px;
    }
}

.services-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 100px 20px 90px;
    box-sizing: border-box;
}

.services-hero__minititle {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 297px;
}

.services-hero__minititle p {
    font-weight: 400;
    font-size: 32px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.7;
}

.services-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.services-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2;
}

.services-hero__container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.services-hero__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 42px;
    color: rgba(22, 22, 22, 0.5);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
}

.services-hero__breadcrumbs a {
    color: rgba(22, 22, 22, 0.5);
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.services-hero__breadcrumbs a:hover {
    opacity: 0.7;
}

.services-hero__container .services-hero__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 42px;
    color: rgb(224 224 224);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
}

.services-hero__container .services-hero__breadcrumbs a {
    color: rgb(224 224 224);
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.services-hero__container .services-hero__breadcrumbs a:hover {
    opacity: 0.7;
}

.services-hero__content {
    display: grid;
    grid-template-columns: 2.7fr 1fr;
    gap: 20px;
}

.services-hero__title {
    margin: 0 0 30px;
    color: #ffffff;
    font-size: 64px;
    line-height: 0.95;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    max-width: 1100px;
}

.services-hero__excerpt__button {
    background: #fff;
    padding: 15px 30px;
    width: 100%;
    font-weight: 600;
    font-size: 20px;
    color: #161616;
    border: 0px;
    margin-top: 30px;
    cursor: pointer;
}

.services-hero__excerpt {
    max-width: 700px;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 300;
}
@media (max-width: 1200px) {

    

    .services-hero__title {
        font-size: 64px;
    }

    .services-hero__excerpt {
        font-size: 20px;
    }

    .services-hero__content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}
@media (max-width: 992px) {

    .services-hero {
        
        padding-top: 150px;
        padding-bottom: 70px;
    }

    .services-hero__title {
        font-size: 58px;
    }

    .services-hero__excerpt {
        font-size: 18px;
        max-width: 620px;
    }

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

    .services-hero__minititle p {
        font-size: 25px;
    }
}
@media (max-width: 768px) {

    .services-hero {
        
        padding: 100px 16px 56px;
    }

    .services-hero__breadcrumbs {
        font-size: 14px;
        margin-bottom: 26px;
        align-items: start;
    }

    .services-hero__minititle {
        align-items: start;
        padding-bottom: 150px;
    }

    .services-hero__title {
        font-size: 44px;
        line-height: 1;
        margin-bottom: 22px;
    }

    .services-hero__excerpt {
        font-size: 16px;
        line-height: 1.5;
    }
}
@media (max-width: 480px) {

    .services-hero__minititle p {
        font-size: 20px;
    }

    .services-hero__title {
        font-size: 30px;
        margin-bottom: 0px;
    }

    .services-hero__excerpt {
        font-size: 15px;
    }

    .services-hero__excerpt__button {
        background: #fff;
        padding: 15px 30px;
        width: 100%;
        font-weight: 600;
        font-size: 16px;
        color: #161616;
        border: 0px;
        margin-top: 30px;
        cursor: pointer;
    }
}

.services-why {
    width: 100%;
    background: #ffffff;
    padding: 90px 20px;
    overflow: hidden;
}

.services-why__container {
    max-width: 1320px;
    margin: 0 auto;
}

.services-why__title {
    margin: 0 0 56px;
    color: #161616;
    font-size: 48px;
    line-height: 1.12;
    font-weight: 300;
    text-transform: uppercase;
    max-width: 1100px;
}

.services-why__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.services-why__card {
    position: relative;
    min-height: 300px;
    padding: 34px 34px 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.services-why__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: 64px 64px;
    pointer-events: none;
    z-index: 1;
}

.services-why__card--accent {
    background: #361F1C;
    color: #F8F5EE;
}

.services-why__card--accent::before {
    background-image:
        linear-gradient(rgba(248,245,238,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(248,245,238,0.08) 1px, transparent 1px);
}

.services-why__card--light {
    background: #F8F5EE;
    color: #161616;
}

.services-why__card--light::before {
    background-image:
        linear-gradient(rgba(22,22,22,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22,22,22,0.06) 1px, transparent 1px);
}

.services-why__icon,
.services-why__heading,
.services-why__text,
.services-why__arrow {
    position: relative;
    z-index: 2;
}

.services-why__card--accent .services-why__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.services-why__arrow svg path {
    fill: currentColor;
}

.services-why__card--light .services-why__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #361F1C;
}

.services-why__icon svg {
    width: 100%;
    height: 100%;
    display: block;
    padding: 10px;
}

.services-why__heading {
    margin: 0 0 18px;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 300;
    text-transform: uppercase;
    max-width: 540px;
}

.services-why__text {
    margin: 0;
    max-width: 560px;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 300;
    opacity: 0.85;
}

.services-why__card--accent .services-why__text {
    color: #fff;
}

.services-why__card--light .services-why__text {
    color: rgba(22,22,22,0.72);
}

.services-why__arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: 128px;
    opacity: 0.2;
    pointer-events: none;
}

.services-why__arrow svg {
    width: 100%;
    height: 100%;
    display: block;
}
@media (max-width: 1200px) {

    .services-why__title {
        font-size: 42px;
    }

    .services-why__heading {
        font-size: 24px;
    }

    .services-why__text {
        font-size: 17px;
    }

    .services-why__card {
        min-height: 270px;
    }
}
@media (max-width: 992px) {

    .services-why {
        padding: 72px 20px;
    }

    .services-why__grid {
        grid-template-columns: 1fr;
    }

    .services-why__title {
        font-size: 38px;
        margin-bottom: 40px;
    }
}
@media (max-width: 768px) {

    .services-why {
        padding: 64px 16px;
    }

    .services-why__title {
        font-size: 32px;
    }

    .services-why__card {
        min-height: auto;
        padding: 24px;
    }

    .services-why__icon {
        width: 44px;
        height: 44px;
        margin-bottom: 26px;
    }

    .services-why__heading {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .services-why__text {
        font-size: 16px;
        line-height: 1.5;
    }

    .services-why__arrow {
        width: 96px;
        height: 94px;
    }
}
@media (max-width: 480px) {

    .services-why__title {
        font-size: 28px;
    }

    .services-why__grid {
        gap: 16px;
    }

    .services-why__card {
        padding: 20px;
    }

    .services-why__heading {
        font-size: 18px;
    }

    .services-why__text {
        font-size: 15px;
    }

    .services-why__arrow {
        width: 78px;
        height: 76px;
    }
}

.service {
  background: #ffffff;
  padding: 0px 0;
  font-family: 'Montserrat', sans-serif;
}

.service__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 0px;
}

.service__title {
  font-weight: 300;
  font-size: 48px;
  line-height: 59px;
  text-transform: uppercase;
  color: #161616;
  margin-bottom: 60px;
  max-width: 1100px;
}

.service__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service__item {
  background: #F8F5EE;
  padding: 40px 30px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service__number {
  font-size: 48px;
  line-height: 59px;
  font-weight: 400;
  color: #161616;
  text-transform: uppercase;
}

.service__name {
  font-size: 23px;
  line-height: 29px;
  font-weight: 400;
  text-transform: uppercase;
  color: #161616;
}

.service__text {
  font-size: 16px;
  line-height: 20px;
  color: #161616;
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .service__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service__container {
    padding: 0 20px;
  }
}

@media (max-width: 640px) {
  .service__grid {
    grid-template-columns: 1fr;
  }

  .service__title {
    font-size: 32px;
    line-height: 40px;
  }
}

.service--result {
  padding: 80px 0;
  background: #ffffff;
  font-family: 'Montserrat', sans-serif;
}

.service--result .service__title {
  font-size: 48px;
  line-height: 59px;
  font-weight: 300;
  text-transform: uppercase;
  color: #161616;
  margin-bottom: 30px;
}

.service__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service__card {
  border: 1px solid #161616;
  padding: 40px 20px;
  text-align: center;
}

.service__card-title {
  font-size: 36px;
  line-height: 44px;
  text-transform: uppercase;
  font-weight: 400;
  color: #161616;
  margin-bottom: 10px;
}

.service__card-text {
  font-size: 20px;
  line-height: 24px;
  color: #161616;
  opacity: 0.8;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
    .service--result .service__title {
        font-size: 40px;
        line-height: 150%;
    }

    .service__card-title {
        font-size: 28px;
        line-height: 150%;
    }
}

@media (max-width: 580px) {
    .service--result .service__title {
        font-size: 32px;
        line-height: 150%;
    }

    .service__card-title {
        font-size: 25px;
        line-height: 150%;
    }
}

.service--cta {
  position: relative;
  padding: 80px 0;
  background: #F8F5EE;
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
}
.service--cta .service__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
.service__cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  position: relative;
}
.service__cta-content {
  max-width: 750px;
  z-index: 2;
}
.service__cta-title {
  font-size: 48px;
  line-height: 59px;
  font-weight: 300;
  text-transform: uppercase;
  color: #161616;
  margin-bottom: 25px;
}

.service__cta-title span {
    font-weight: 400;
}
.service__cta-text {
  font-size: 20px;
  line-height: 24px;
  color: #161616;
  max-width: 750px;
  margin-bottom: 35px;
  opacity: 0.9;
}
.service__cta-button {
  display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 80px;
    background: #361F1C;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
   
    transition: 0.3s ease;
    border: 0;
    cursor: pointer;
}
.service__cta-visual {
      flex-shrink: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}

.service__cta-visual svg {
  width: 495px;
  height: auto;
  opacity: 0.2;
  display: block;
}
/* 📱 ADAPTIVE */
@media (max-width: 1024px) {

  .service__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .service__cta-title {
    font-size: 40px;
    line-height: 50px;
  }

  .service__cta-text {
    font-size: 18px;
    line-height: 22px;
  }

  .service__cta-visual {
    align-self: flex-end;
    margin-top: 40px;
    opacity: 0.12;
  }

  .service__cta-visual svg {
    width: 380px;
  }
}

@media (max-width: 768px) {

  .service--cta {
    padding: 80px 0;
  }

  .service__cta-title {
    font-size: 28px;
    line-height: 36px;
  }

  .service__cta-text {
    font-size: 16px;
    line-height: 22px;
  }

  .service__cta-button {
    width: 100%;
  }

  .service__cta-visual {
    display: none;
  }
}

.contact__us {
    padding: 100px 0 100px;
}

.contact__us__container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact__us__breadcrumbs {
    margin-bottom: 30px;

    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;

    color: rgba(22, 22, 22, 0.5);
}

.contact__us__title {
    margin-bottom: 30px;

    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 64px;
    line-height: 78px;
    text-transform: uppercase;

    color: #161616;
}

.contact__us__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact__us__info {
    background: #F8F5EE;
    padding: 133px 30px 40px;
}

.contact__us__phone,
.contact__us__email {
    display: block;

    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 39px;
    text-transform: uppercase;
    text-decoration: none;

    color: #161616;
}

.contact__us__phone {
    margin-bottom: 30px;
}

.contact__us__email {
    margin-bottom: 30px;
}

.contact__us__socials {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact__us__social svg {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.contact__us__form {
    background: #361F1C;
    padding: 40px 30px;

    display: flex;
    flex-direction: column;
}

.contact__us__field {
    margin-bottom: 30px;
}

.contact__us__field input,
.contact__us__field textarea {
    width: 100%;
    padding-bottom: 15px;

    background: transparent;
    border: none;
    border-bottom: 1px solid #FFFFFF;
    outline: none;

    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 29px;

    color: #FFFFFF;
}

.contact__us__field textarea {
    resize: none;
    min-height: 80px;
}

.contact__us__field input::placeholder,
.contact__us__field textarea::placeholder {
    color: #FFFFFF;
}

.contact__us__btn {
    width: 100%;
    height: 54px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #FFFFFF;
    border: none;
    cursor: pointer;

    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;

    color: #161616;

    transition: 0.3s;
}

.contact__us__btn:hover {
    opacity: 0.8;
}

@media (max-width: 992px) {
    .contact__us__wrapper {
        grid-template-columns: 1fr;
    }

    .contact__us__title {
        font-size: 48px;
        line-height: 58px;
    }

    .contact__us__phone,
    .contact__us__email {
        font-size: 24px;
        line-height: 32px;
    }
}

@media (max-width: 576px) {
    .contact__us {
        padding: 120px 0 70px;
    }

    .contact__us__title {
        font-size: 36px;
        line-height: 44px;
    }

    .contact__us__phone,
    .contact__us__email {
        font-size: 18px;
        line-height: 26px;
    }

    .contact__us__field input,
    .contact__us__field textarea {
        font-size: 18px;
        line-height: 24px;
    }

    .contact__us__btn {
        font-size: 15px;
    }

    .contact__us__info {
        padding: 50px 30px 40px;
    }
}

.about__page {
    padding: 80px 0 0px;
}

.about__page__container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
}

.about__page__wrapper {
    display: grid;
    grid-template-columns: 758px 532px;
    justify-content: space-between;
    align-items: start;
    gap: 30px;
}

.about__page__title {
    margin-bottom: 30px;

    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 48px;
    line-height: 59px;
    text-transform: uppercase;

    color: #161616;
}

.about__page__title span {
    font-weight: 400;
}

.about__page__text p {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;

    color: #161616;
}

.about__page__image-wrapper {
    width: 100%;
}

.about__page__image {
    width: 100%;
    height: 501px;

    background: #D9D9D9;
    overflow: hidden;
}

.about__page__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__page__name {
    margin-top: 15px;

    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;

    color: #161616;
    opacity: 0.8;
    text-align: right;
}

@media (max-width: 1200px) {
    .about__page__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__page__content {
        max-width: 100%;
    }

    .about__page__image-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .about__page__image {
        width: 100%;
        height: 600px;
    }
}

@media (max-width: 768px) {
    .about__page {
        padding: 80px 0 0px;
    }

    .about__page__title {
        font-size: 32px;
        line-height: 40px;
    }

    .about__page__text p {
        font-size: 16px;
        line-height: 24px;
    }

    .about__page__image {
        height: 450px;
    }

    .about__page__name {
        font-size: 16px;
        line-height: 22px;
    }
}

@media (max-width: 576px) {
    .about__page__title {
        font-size: 28px;
        line-height: 36px;
    }

    .about__page__image {
        height: 320px;
    }

    .about__page__text p {
        font-size: 15px;
        line-height: 22px;
    }
}

.about__page__founder {
    padding: 80px 0 80px;
}

.about__page__container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
}

.about__page__founder-wrapper {
    display: grid;
    grid-template-columns: 788px 532px;
    gap: 0;
}

.about__page__founder-content {
    background: #F8F5EE;
    padding: 38px 30px;
}

.about__page__founder-title {
    margin-bottom: 30px;

    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 40px;
    line-height: 49px;
    text-transform: uppercase;

    color: #161616;
}

.about__page__founder-title span {
    font-weight: 400;
}

.about__page__founder-text p {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 130.4%;

    color: #161616;
}

.about__page__founder-image-wrapper {
    position: relative;
}

.about__page__founder-image {
    position: relative;

    width: 100%;
    height: 450px;

    background: #D9D9D9;
    overflow: hidden;
}

.about__page__founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__page__founder-quote {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;

    z-index: 2;
}

.about__page__founder-quote span {
    max-width: 371px;

    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    line-height: 130.4%;

    color: #FFFFFF;
}

.about__page__founder-quote img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .about__page__founder-wrapper {
        grid-template-columns: 1fr;
    }

    .about__page__founder-image-wrapper {
        margin-top: 30px;
        max-width: 532px;
    }
}

@media (max-width: 768px) {
    .about__page__founder {
        padding: 80px 0 80px;
    }

    .about__page__founder-title {
        font-size: 30px;
        line-height: 38px;
    }

    .about__page__founder-text p,
    .about__page__founder-quote span {
        font-size: 16px;
    }

    .about__page__founder-image {
        height: 380px;
    }

    .about__page__founder-quote {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}

.about__page__values {
    position: relative;
    background: #161616;
    padding: 100px 0;
    overflow: hidden;
}

.about__page__values-decor {
    position: absolute;
    right: 0;
    top: 0;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.about__page__values-decor svg {
    display: block;
    width: 247px;
    height: auto;
}

/* контейнер */
.about__page__container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;

    position: relative;
    z-index: 2;
}

/* заголовок */
.about__page__values-title {
    margin-bottom: 60px;

    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 48px;
    line-height: 59px;
    text-transform: uppercase;

    color: #FFFFFF;
}

/* сетка карточек */
.about__page__values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* карточка */
.about__page__value {
    background: #FFFFFF;
    padding: 20px 20px 30px;

    min-height: 230px;

    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* иконка */
.about__page__value-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #161616;
    flex-shrink: 0;
}

.about__page__value-icon svg {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* заголовок карточки */
.about__page__value-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;

    color: #161616;
}

/* текст */
.about__page__value-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;

    color: #161616;
}

/* адаптив */
@media (max-width: 1200px) {
    .about__page__values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__page__values-decor {
        right: 0px;
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .about__page__values-title {
        font-size: 32px;
        line-height: 40px;
    }

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

    .about__page__values-decor {
        display: none;
    }
}

.about__page__stats {
    padding: 120px 0;
}

.about__page__container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
}

/* сетка */
.about__page__stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* карточка */
.about__page__stat {
    position: relative;

    height: 247px;
    padding: 40px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    overflow: hidden;
}

/* темная карточка */
.about__page__stat--dark {
    background: #161616;
}

.about__page__stat--dark .about__page__stat-text {
    color: #FFFFFF;
}

/* светлая карточка */
.about__page__stat--light {
    background: #F8F5EE;
}

.about__page__stat--light .about__page__stat-text {
    color: #361F1C;
}

/* текст */
.about__page__stat-text {
    max-width: 550px;

    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 40px;
    line-height: 49px;
    text-transform: uppercase;
}

/* svg справа */
.about__page__stat-svg {
    position: absolute;
    right: 20px;
    bottom: 20px;

    opacity: 0.2;
}

.about__page__stat-svg img {
    width: 130px;
    height: 128px;
}

/* адаптив */
@media (max-width: 1200px) {
    .about__page__stats-grid {
        grid-template-columns: 1fr;
    }

    .about__page__stat-text {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 768px) {
    .about__page__stat {
        height: auto;
        padding: 30px;
    }

    .about__page__stat-text {
        font-size: 24px;
        line-height: 32px;
    }

    .about__page__stat-svg img {
        width: 90px;
        height: 90px;
    }
}

.blog {
    padding: 100px 0;
}

.blog__container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
}

/* top */
.blog__breadcrumbs {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: rgba(22, 22, 22, 0.5);
    margin-bottom: 20px;
}

.blog__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 64px;
    text-transform: uppercase;
    color: #161616;
    margin-bottom: 60px;
}

/* grid */
.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD (link) */
.blog__card {
    display: flex;
    flex-direction: column;
    gap: 15px;

    text-decoration: none;
    color: inherit;

    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* hover эффект */
.blog__card:hover {
    transform: translateY(-6px);
}

/* image */
.blog__image {
    width: 100%;
    height: 316px;
    overflow: hidden;
    background: #ddd;
}

.blog__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog__card:hover .blog__image img {
    transform: scale(1.05);
}

/* tags */
.blog__tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.blog__tags span {
    background: #ffffff;
    padding: 8px 12px;

    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 16px;

    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* title */
.blog__card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;

    color: #161616;
}

/* text */
.blog__card-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;

    color: #161616;
}

/* load more */
.blog__more {
    margin-top: 60px;
}

.blog__more-btn {
    width: 100%;
    height: 54px;

    background: #000;
    color: #fff;

    border: none;
    cursor: pointer;

    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    text-transform: uppercase;

    transition: 0.3s ease;
}

.blog__more-btn:hover {
    opacity: 0.85;
}

.blog__more-btn {
    width: 100%;
    height: 54px;

    background: #000;
    color: #fff;

    border: none;
    cursor: pointer;

    font-family: 'Montserrat';
    font-size: 16px;
    text-transform: uppercase;

    transition: 0.3s ease;
}

.blog__more-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}



/* RESPONSIVE */
@media (max-width: 1200px) {
    .blog__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog__title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .blog {
        padding: 100px 0;
    }

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

    .blog__title {
        font-size: 36px;
        line-height: 44px;
    }

    .blog__image {
        height: 240px;
    }
}

.single-blog {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.single-blog__thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.single-blog__title {
    font-size: 36px;
    margin-top: 20px;
}

.related-posts {
    margin: 60px auto;
}

.related-posts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 40px;
}

.related-post {
    text-decoration: none;
    color: inherit;
}

.related-post__img img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 300px;
}

.single-blog-content {
    padding: 60px 0;
}

.single-blog-content__inner {
    max-width: 1320px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.75;
    color: #222;
}

/* PARAGRAPHS */
.single-blog-content__inner p {
    margin-bottom: 18px;
}

/* HEADINGS */
.single-blog-content__inner h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    line-height: 1.3;
}

.single-blog-content__inner h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    line-height: 1.4;
}

/* LISTS */
.single-blog-content__inner ul,
.single-blog-content__inner ol {
    margin: 20px 0;
    padding-left: 20px;
}

.single-blog-content__inner li {
    margin-bottom: 10px;
}

/* IMAGES */
.single-blog-content__inner img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 25px 0;
    display: block;
}

/* QUOTES */
.single-blog-content__inner blockquote {
    border-left: 4px solid #000;
    padding: 15px 20px;
    margin: 30px 0;
    background: #f7f7f7;
    font-style: italic;
}

/* LINKS */
.single-blog-content__inner a {
    color: #000;
    text-decoration: underline;
}

.single-blog-content__inner a:hover {
    opacity: 0.7;
}

/* TABLES (если будут) */
.single-blog-content__inner table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.single-blog-content__inner table td,
.single-blog-content__inner table th {
    border: 1px solid #ddd;
    padding: 10px;
}

.single-faq {
    padding: 0px 0;
}

.single-faq__title {
        text-align: left;
    font-size: 39px;
    margin-bottom: 30px;
    font-weight: 400;
    text-transform: uppercase;
}

.related-posts__title {
    text-align: left;
    font-size: 39px;
    margin-bottom: 30px;
    font-weight: 400;
    text-transform: uppercase;
}

.single-faq__list {
    max-width: 1320px;
    margin: 0 auto;
}

.container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
}

/* вопрос */
.faq-item summary {
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    list-style: none;
    position: relative;
    padding-right: 25px;
}

/* убираем стандартный маркер */
.faq-item summary::-webkit-details-marker {
    display: none;
}

/* стрелка */
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    transition: 0.3s;
}

/* открытый аккордеон */
.faq-item[open] summary::after {
    content: "–";
}

/* ответ */
.faq-item__content {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;

    animation: fadeIn 0.3s ease;
}

/* плавное появление */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1110px) {
    .single-blog-content {
        padding: 60px 20px;
    }

    .single-faq {
        padding: 0px 20px;
    }

    .related-posts__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding-top: 40px;
    }

    .related-posts {
        margin: 60px 20px;
    }
}

@media (max-width: 992px) {

    .related-posts__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding-top: 40px;
    }
}

@media (max-width: 768px) {

    .related-posts__grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        padding-top: 40px;
    }

    .single-faq__title {
        text-align: left;
    font-size: 26px;
    margin-bottom: 30px;
    font-weight: 400;
}

.related-posts__title {
    text-align: left;
    font-size: 26px;
    margin-bottom: 30px;
    font-weight: 400;
}

    
}