/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}



/* Premium Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
        filter: blur(2px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes diamondShine {

    0%,
    100% {
        box-shadow: 0 0 8px rgba(20, 88, 228, 0.15);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 16px rgba(20, 88, 228, 0.25), 0 0 20px rgba(255, 255, 255, 0.05);
        transform: scale(1.005);
    }
}

@keyframes magneticPull {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 20px 40px rgba(20, 88, 228, 0.2);
    }

    100% {
        transform: translateY(-12px) scale(1.08);
        box-shadow: 0 25px 50px rgba(20, 88, 228, 0.3);
    }
}

@keyframes imageZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(20, 88, 228, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(20, 88, 228, 0.5), 0 0 60px rgba(255, 255, 255, 0.1);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroImageAppear {
    0% {
        opacity: 0;
        transform: scale(0.9) translateZ(0);
        filter: blur(3px);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.05) translateZ(0);
        filter: blur(1px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateZ(0);
        filter: blur(0);
    }
}

/* Container */
.container {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-hero {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-news {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__left {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo {
    width: 64px;
    height: 55px;
    background-color: #ffffff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

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

.nav {
    display: flex;
    gap: 30px;
    background-color: #212121;
    height: 55px;
    padding: 0 30px;
    border-radius: 5px;
    align-items: center;
}

.nav__link {
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: #1458E4;
}

.btn-primary {
    background-color: #1458E4;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.02em;
    width: 231px;
    height: 55px;
    border: none;
    border-radius: 1000px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    position: relative;
    overflow: hidden;
    animation: diamondShine 4s ease-in-out infinite;
    animation-delay: 2s;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: left 0.8s ease;
    opacity: 0;
}

.btn-primary:hover {
    background-color: #0f47bd;
    animation: diamondShine 1.5s ease-in-out infinite;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(20, 88, 228, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
    left: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 95px;
}

.hero__background {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: -1;
    border-radius: 10px;
    overflow: hidden;
}

.hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroImageAppear 1s ease-out 0.2s both;
}

.hero__content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 0 calc(150px + 20px);
    gap: 60px;
    min-height: calc(100vh - 95px);
    position: relative;
    width: 100%;
}

.hero__title {
    font-size: 80px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #ffffff;
    max-width: 700px;
    flex-shrink: 0;
}

.hero__description {
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    color: #ffffff;
    max-width: 420px;
    text-align: right;
    margin-left: auto;
    flex-shrink: 0;
}

.hero__tabs {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.tabs {
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(33, 33, 33, 0.2);
    border-radius: 1000px;
    backdrop-filter: blur(10px);
    outline: none;
    box-shadow: none;
}

.tabs__wrapper {
    display: flex;
    gap: 10px;
}

.tabs__item {
    background-color: #ffffff;
    color: #ffffff;
    font-size: 16px;
    color: #000000;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.02em;
    padding: 10px 30px;
    border: none;
    border-radius: 1000px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;


}

@media (max-width: 500px) {
    .tabs {
        padding: 10px;
    }

    .tabs__wrapper {
        gap: 10px;
    }

    .tabs__item {
        padding-top: 15px;
        padding-bottom: 15px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 390px) {
    .tabs {
        padding: 10px;
    }

    .tabs__wrapper {
        gap: 8px;
    }

    .tabs__item {
        font-size: 15px;
        padding-top: 15px;
        padding-bottom: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }
}


.tabs__item--active {
    background-color: #0B0D10;
    color: white;
}

.tabs__item:hover {
    background-color: rgb(20, 88, 228, 0.3);
    color: white;
}

/* Tabs Scroll Animation - Enhanced */
.tabs--visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: blur(0px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 1000px;
}

.tabs--hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(150%) scale(0.9);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: blur(2px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    pointer-events: none;
    /* Отключаем взаимодействие со скрытыми табами */
}

/* Enhanced animations for different tab types */
.hero__tabs.tabs--visible {
    animation: heroTabsAppear 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero__tabs.tabs--hidden {
    animation: heroTabsDisappear 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.page-tabs.tabs--visible {
    animation: pageTabsAppear 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.page-tabs.tabs--hidden {
    animation: pageTabsDisappear 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.bottom-tabs.tabs--visible {
    animation: bottomTabsAppear 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.bottom-tabs.tabs--hidden {
    animation: bottomTabsDisappear 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Keyframes for enhanced tab animations */
@keyframes heroTabsAppear {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(200%) scale(0.8);
        filter: blur(4px);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }

    50% {
        opacity: 0.7;
        transform: translateX(-50%) translateY(-20%) scale(1.05);
        filter: blur(1px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
        filter: blur(0px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
}

@keyframes heroTabsDisappear {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
        filter: blur(0px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(50%) scale(0.95);
        filter: blur(1px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(150%) scale(0.9);
        filter: blur(2px);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
}

@keyframes pageTabsAppear {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(100%) scale(0.85);
        filter: blur(3px);
    }

    60% {
        opacity: 0.8;
        transform: translateX(-50%) translateY(-10%) scale(1.02);
        filter: blur(0.5px);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
        filter: blur(0px);
    }
}

@keyframes pageTabsDisappear {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
        filter: blur(0px);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(80%) scale(0.95);
        filter: blur(1px);
    }
}

@keyframes bottomTabsAppear {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
        filter: blur(2px);
    }

    70% {
        opacity: 0.9;
        transform: translateY(-5px) scale(1.02);
        filter: blur(0.3px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

@keyframes bottomTabsDisappear {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }

    100% {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
        filter: blur(1px);
    }
}

/* Enhanced tab items animation */
.tabs__item {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tabs__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.6s ease;
}

.tabs--visible .tabs__item {
    animation: tabItemGlow 2s ease-in-out infinite;
    animation-delay: calc(var(--item-index, 0) * 0.2s);
}

@keyframes tabItemGlow {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(20, 88, 228, 0);
    }

    50% {
        box-shadow: 0 0 20px rgba(20, 88, 228, 0.3);
    }
}

/* Responsive adjustments for tab animations */
@media (max-width: 768px) {
    .tabs--hidden {
        transform: translateX(-50%) translateY(120%) scale(0.9);
    }

    .hero__tabs.tabs--hidden {
        transform: translateX(-50%) translateY(120%) scale(0.85);
    }

    .page-tabs.tabs--hidden {
        transform: translateX(-50%) translateY(100%) scale(0.9);
    }
}

@media (max-width: 480px) {
    .tabs--hidden {
        transform: translateX(-50%) translateY(100%) scale(0.85);
    }

    .hero__tabs.tabs--hidden {
        transform: translateX(-50%) translateY(100%) scale(0.8);
    }
}

/* Bottom Tabs Section */
.bottom-tabs {
    padding: 40px 0 0 0;
    background-color: #ffffff;
}

.bottom-tabs .tabs {
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(33, 33, 33, 0.2);
    border-radius: 1000px;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
}

.bottom-tabs .tabs__wrapper {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.bottom-tabs .tabs__item {
    background-color: #ffffff;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.02em;
    padding: 10px 30px;
    border: none;
    border-radius: 1000px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-tabs .tabs__item--active {
    background-color: #0B0D10;
    color: white;
}

.bottom-tabs .tabs__item:hover {
    background-color: rgb(20, 88, 228, 0.3);
    color: white;
}

/* Page Tabs Section */
.page-tabs {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background-color: transparent;
    padding: 0;
}

.page-tabs .tabs {
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(33, 33, 33, 0.2);
    border-radius: 1000px;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
}

.page-tabs .tabs__wrapper {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.page-tabs .tabs__item {
    background-color: #ffffff;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.02em;
    padding: 10px 30px;
    border: none;
    border-radius: 1000px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-tabs .tabs__item--active {
    background-color: #0B0D10;
    color: white;
}

.page-tabs .tabs__item:hover {
    background-color: rgb(20, 88, 228, 0.3);
    color: white;
}

/* Page Tabs Responsive */
@media (max-width: 500px) {
    .page-tabs .tabs {
        padding: 10px;
    }

    .page-tabs .tabs__wrapper {
        gap: 10px;
    }

    .page-tabs .tabs__item {
        padding: 15px 20px;
    }
}

@media (max-width: 390px) {
    .page-tabs .tabs {
        padding: 10px;
    }

    .page-tabs .tabs__wrapper {
        gap: 8px;
    }

    .page-tabs .tabs__item {
        font-size: 15px;
        padding: 15px;
    }
}

/* Features Section */
.features {
    padding: 150px 0 100px;
}

.features__title {
    font-size: 54px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #000000;
    margin-bottom: 50px;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px dashed rgba(0, 0, 0, 0.2);
    border-left: 1px dashed rgba(0, 0, 0, 0.2);
}

/* Responsive для планшетов - две колонки на ширине меньше 1350px */
@media (max-width: 1349px) and (min-width: 769px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .feature-card {
        padding: 30px 25px;
    }
}

.feature-card {
    padding: 20px 20px;
    border-right: 1px dashed rgba(0, 0, 0, 0.2);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-card__icon {
    width: 60px;
    height: 60px;
}

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

.feature-card__content {
    margin-top: auto;
}

.feature-card__title {
    font-size: 27px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #000000;
    margin-bottom: 15px;
}

.feature-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(20, 88, 228, 0.05) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(20, 88, 228, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 10px;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card__icon {
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 10px 20px rgba(20, 88, 228, 0.3));
}

.feature-card__title {
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover .feature-card__title {
    transform: translateX(5px);
}

.feature-card__description {
    font-size: 18px;
    font-weight: 400;
    line-height: 125%;
    color: #A9B0B8;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover .feature-card__description {
    color: #6B7C93;
    transform: translateX(5px);
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #ffffff;
}

.services__content {
    max-width: 1420px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding: 0 0px;
}

.services__left {
    flex: 1;
    max-width: 500px;
}

.services__title {
    font-size: 54px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #000000;
    margin-bottom: 30px;
}

.services__description {
    font-size: 18px;
    font-weight: 400;
    line-height: 125%;
    color: #A9B0B8;
}

.services__right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.services__form {
    width: 940px;
    margin-left: auto;
}

.services__main-label {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #000000;
    padding: 15px 50px;
    margin: 0;
    border: 1px solid rgba(11, 13, 16, 0.5);
    border-radius: 10px;
    background-color: rgba(11, 13, 16, 0.05);
    width: fit-content;
}

.services__main-section {
    margin: 10px 0 20px 0;
}

.services__image-block {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
}

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

.services__main-options {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.main-option {
    flex: 1;
    background-color: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    border: none;
    color: black;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    line-height: 120%;
    letter-spacing: -0.02em;
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.main-option--active {
    background-color: #1458E4;
    color: white;
}

.main-option:hover:not(.main-option--active) {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Световой блик эффект для main-option */
.main-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: left 0.5s ease;
}

.main-option:hover::before {
    left: 100%;
}

.services__additional-label {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #000000;
    padding: 15px 50px;
    margin: 20px 0 10px 0;
    border: 1px solid rgba(11, 13, 16, 0.5);
    border-radius: 10px;
    background-color: rgba(11, 13, 16, 0.05);
    width: fit-content;
}

.services__additional-section {
    background-color: #0B0D10;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.services__additional-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.additional-option {
    background-color: rgba(134, 134, 134, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    line-height: 120%;
    letter-spacing: -0.02em;
    padding: 20px 40px;
    border-radius: 1000px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    max-width: fit-content;
    width: auto;
    min-width: 200px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.additional-option:hover:not(.additional-option--selected) {
    background-color: rgba(134, 134, 134, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(134, 134, 134, 0.2);
}

/* Световой блик эффект для additional-option */
.additional-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.5s ease;
}

.additional-option:hover::before {
    left: 100%;
}

.additional-option--selected {
    background-color: #1458E4;
}

.additional-option--selected:hover {
    background-color: #1458E4;
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 88, 228, 0.3);
}

.services__cta {
    width: 100%;
    height: 62px;
    background-color: #A9B0B8;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    line-height: 120%;
    letter-spacing: -0.02em;
    border: none;
    border-radius: 1000px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.services__cta:not(:disabled) {
    background-color: #1458E4;
}

.services__cta:not(:disabled):hover {
    background-color: #0f47bd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 88, 228, 0.3);
}

/* Световой блик эффект для services__cta */
.services__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.5s ease;
}

.services__cta:hover::before {
    left: 100%;
}

.services__cta:disabled {
    cursor: not-allowed;
}

/* Services Section Responsive - меньше 1420px */
@media (max-width: 1419px) and (min-width: 1200px) {
    .services__content {
        flex-direction: column;
        gap: 50px;
        align-items: flex-start;
        padding: 0 20px;
    }

    .services__form {
        width: 100%;
        margin: 0;
        padding: 0px;
        box-sizing: border-box;
        height: auto;
    }

    .services__image-block {
        height: 550px;
    }

    .services__title {
        margin-bottom: 20px;
    }

    .services__left {
        max-width: 700px;
    }

    .main-option {
        height: 100px;
    }
}

/* Reviews Section */
.reviews {
    padding: 150px 0 100px;
    background-color: #ffffff;
}

/* Reviews Slider Animation */
.reviews__container {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.review-card.fade-out {
    opacity: 0;
    transform: translateX(-20px) scale(0.98);
}

.review-card.fade-in {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.reviews__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    max-width: 1420px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.reviews__title {
    font-family: 'Inter', sans-serif;
    font-size: 54px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #000000;
    max-width: 776px;
    margin: 0;
}

.reviews__link {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #000000;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    text-transform: uppercase;
    margin: 0;
    padding-bottom: 10px;
}

.reviews__slider {
    position: relative;
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews__container {
    display: flex;
    gap: 20px;
    overflow: hidden;
    width: 100%;
    align-items: flex-start;
}

.review-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card-wrapper--main {
    width: 820px;
    flex-shrink: 0;
}

.review-card-wrapper--side {
    width: 340px;
    flex-shrink: 0;
}

.review-card {
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.review-card--main {
    width: 100%;
    background-color: #0B0D10;
}

.review-card--side {
    width: 100%;
    height: 330px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.5);
}

.review-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-card__stars img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.review-card__content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    flex: 1;
}

.review-card__divider {
    width: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    align-self: stretch;
    margin-top: 5px;
}

.review-card--side .review-card__divider {
    background-color: rgba(0, 0, 0, 0.5);
}

.review-card__text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #ffffff;
    flex: 1;
}

.review-card--side .review-card__text {
    color: #000000;
}

.review-card__text--truncated {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 3;
}

.review-card__image {
    border-radius: 10px;
    overflow: hidden;
}


.review-card--main .review-card__image {
    border-radius: 10px;
}

.review-card--main .review-card__image img {
    width: 780px;
    height: 400px;
    object-fit: cover;
}

.review-card--side .review-card__image img {
    width: 300px;
    height: 154px;
    object-fit: cover;
}

/* Reviews navigation positioned to the right of main card at bottom */
.reviews__navigation {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

/* Tags positioned below each card */
.review-card__tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.review-card__tags--main {
    justify-content: flex-start;
}

.review-card__tags--side {
    justify-content: flex-start;
}

.review-tag {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    color: #000000;
    padding: 10px 25px;
    border: 1px solid black;
    border-radius: 1000px;
    background-color: transparent;
    white-space: nowrap;
}

.review-card__tags--side .review-tag {
    color: #000000;
    border-color: rgba(0, 0, 0, 0.5);
}

.reviews__nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: opacity 0.3s ease;
}

.reviews__nav-btn:hover {
    opacity: 0.7;
}

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

/* News and Articles Section */
.news-section {
    padding: 0 0 100px;
    margin-top: 150px;
    background-color: #ffffff;
}

.news__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    max-width: 1420px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.news__title {
    font-family: 'Inter', sans-serif;
    font-size: 54px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #000000;
    max-width: 776px;
    margin: 0;
}

.news__link {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #000000;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    text-transform: uppercase;
    margin: 0;
}

.news__content {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 20px;
}

.news__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.news-card {
    width: 320px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-card--news {
    background-color: #0B0D10;
    padding: 20px;
    height: auto;
}

.news-card--article {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.5);
    padding: 20px;

}

.news-card {
    height: fit-content;
}

.news-card__image {
    border-radius: 10px;
    overflow: hidden;
}

.news-card__image img {
    width: 300px;
    height: 223px;
    object-fit: cover;
}

.news-card__content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-card__date {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    color: #A9B0B8;
    margin-bottom: 5px;
}

.news-card__title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 120%;
    color: #ffffff;
    margin: 0;
}

.news-card--news .news-card__title {
    font-size: 18px;
}

.news-card--article .news-card__title {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
}

.news-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(20, 88, 228, 0.05) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(20, 88, 228, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 10px;
    z-index: 1;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.news-card:hover::before {
    opacity: 1;
}

.news-card__title {
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-card:hover .news-card__title {
    transform: translateX(3px);
}

.news-card__description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 125%;
    color: #A9B0B8;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-card:hover .news-card__description {
    color: #6B7C93;
    transform: translateX(3px);
}

.news-card__tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.news-tag {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #000000;
    padding: 10px 25px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 1000px;
    background-color: transparent;
    white-space: nowrap;
}

/* White tags for news cards */
.news-card--news .news-tag {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

/* About Section */
.about-section {
    background-color: #0B0D10;
    border-radius: 10px;
    margin: 20px;
    width: calc(100% - 40px);
    padding: 0 20px;
}

.about-content {
    max-width: 1420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 0;
}

.about-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #2A2725;
    max-width: 1300px;
    margin: 0 0 25px 0;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #2A2725 0%, #2A2725 50%, #FFFFFF 100%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(42, 39, 37, 0.5));
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-btn {
    width: auto;
    max-width: 400px;
    padding: 25px 40px;
    background-color: rgba(134, 134, 134, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 25px;
    border-radius: 1000px;
    position: relative;
    overflow: hidden;
}

.about-btn:hover {
    background-color: rgba(134, 134, 134, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(134, 134, 134, 0.2);
}

/* Световой блик эффект для about-btn */
.about-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.5s ease;
}

.about-btn:hover::before {
    left: 100%;
}

.about-contact-text {
    width: 940px;
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -5%;
    color: #ffffff;
    margin-left: auto;
    margin-top: 150px;
    text-align: left;
    position: relative;
}

/* About Contact Info */
.about-contact-info {
    margin-top: 50px;
    margin-left: auto;
    max-width: 940px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.contact-info-item {
    display: flex;
    align-items: center;
}

.contact-link {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.05em;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #1458E4;
}

/* About Location */
.about-location {
    margin-top: 150px;
    width: 100%;
    max-width: 1420px;
    margin-left: auto;
    margin-right: auto;
}

.location-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.address-container {
    width: 460px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.address-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.05em;
    color: #ffffff;
    margin: 0;
    text-align: left;
}

.address-description {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 125%;
    letter-spacing: -0.02em;
    color: #5B5A5A;
    margin: 0;
    width: 408px;
    margin-bottom: 20px;
}

.map-container {
    width: 940px;
    height: 550px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Labels */
.contact-label {
    position: absolute;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    color: #ffffff;
    background-color: rgb(20, 88, 228, 0.3);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 25px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 10;
    transition: transform 0.1s ease-out;
}

.contact-label--first {
    top: -20px;
    left: 50px;
    transform: rotate(-5deg);
    z-index: 1;
}

.contact-label--second {
    bottom: 1%;
    right: 50px;
    z-index: 2;
    transform: rotate(15deg);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: #ffffff;
}

.gallery__title {
    font-size: 54px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #000000;
    margin-bottom: 50px;
    text-align: left;
    max-width: 776px;
}

.gallery__content {
    display: grid;
    grid-template-columns: 560px 780px;
    gap: 20px;
    margin-bottom: 20px;
}

.gallery__column--left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery__column--right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery__item {
    border-radius: 10px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.gallery__item--tall {
    height: 760px;
}

.gallery__item--medium {
    height: 500px;
}

.gallery__item--wide {
    height: 500px;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(20, 88, 228, 0.1) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(20, 88, 228, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.gallery__item:hover::before {
    opacity: 1;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__button {
    display: inline-block;
    width: 100%;
    max-width: 1420px;
    height: 62px;
    background-color: #000000;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    line-height: 120%;
    letter-spacing: -0.02em;
    text-decoration: none;
    border: none;
    border-radius: 1000px;
    text-align: center;
    line-height: 62px;
    transition: background-color 0.3s ease;
}

.gallery__button:hover {
    background-color: #333333;
}

@media (max-width: 1420px) {
    .gallery__content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}


/* Gallery Responsive */
@media (max-width: 1199px) {
    .gallery__content {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .gallery__item--tall {
        height: 600px;
    }

    .gallery__item--medium {
        height: 400px;
    }

    .gallery__item--wide {
        height: 450px;
    }
}

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

    .gallery__title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .gallery__content {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .gallery__item--tall {
        height: 400px;
    }

    .gallery__item--medium {
        height: 300px;
    }

    .gallery__item--wide {
        height: 350px;
    }

    .gallery__button {
        height: 56px;
        font-size: 16px;
        line-height: 56px;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 40px 0;
    }

    .gallery__title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .gallery__content {
        gap: 12px;
        margin-bottom: 25px;
    }

    .gallery__item--tall {
        height: 300px;
    }

    .gallery__item--medium {
        height: 250px;
    }

    .gallery__item--wide {
        height: 280px;
    }

    .gallery__button {
        height: 52px;
        font-size: 14px;
        line-height: 52px;
    }
}


@media (max-width: 1480px) {
    .header__content {
        padding-left: 20px;
        padding-right: 20px;
    }
}


@media (max-width: 1300px) {

    .container-hero {
        max-width: 1420px;
        margin: 0 0;
    }

    .hero__content {
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        gap: 20px;
        padding-bottom: 150px;
        padding-left: 50px;
    }

    .hero__description {
        text-align: left;
        margin-left: 0;
        max-width: 395px;
    }
}


/* Burger Menu Styles */
.burger-menu {
    display: none;
    position: relative;
    z-index: 1001;
}

.burger-menu__toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #1458E4;
    border: none;
    border-radius: 5px;
    padding: 15px;
    width: 180px;
    height: 55px;
    cursor: pointer;
    transition: width 0.4s ease;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.burger-menu__toggle:hover {
    background-color: #0f47bd;
}

.burger-menu__toggle.active {
    width: 360px;
}

.burger-menu__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

.burger-menu__icon--burger {
    display: block;
}

.burger-menu__icon--close {
    display: none;
}

.burger-menu__toggle.active .burger-menu__icon--burger {
    display: none;
}

.burger-menu__toggle.active .burger-menu__icon--close {
    display: block;
}

.burger-menu__text {
    white-space: nowrap;
    z-index: 2;
    position: relative;
}

.burger-menu__dropdown {
    position: absolute;
    top: 60px;
    left: 0;
    width: 1px;
    height: 5px;
    background-color: #1458E4;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1002;
}

.burger-menu__dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    width: 360px;
    height: auto;
    background-color: #1458E4;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.burger-menu__content {
    padding: 10px 20px;
    overflow: hidden;
}

.burger-menu__link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 500;
    letter-spacing: -0.01em;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.5s;
}

.burger-menu__link:nth-child(2) {
    transition-delay: 0.6s;
}

.burger-menu__link:nth-child(3) {
    transition-delay: 0.7s;
}

.burger-menu__dropdown.active .burger-menu__link {
    opacity: 1;
    transform: translateY(0);
}

/* При закрытии меню ссылки исчезают сразу */
.burger-menu__dropdown:not(.active) .burger-menu__link {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.1s ease, transform 0.1s ease;
}

.burger-menu__link:last-child {
    border-bottom: none;
}

.burger-menu__link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Burger Menu Overlay */
.burger-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.burger-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hide contact labels on screens smaller than 1000px */
@media (max-width: 999px) {
    .contact-label {
        display: none;
    }

    .about-contact-text {
        margin: 0px;
    }

    .about-contact-info {
        margin-left: 0px;
    }


    /* Show burger menu and hide regular nav on mobile */
    .nav {
        display: none;
    }

    .burger-menu {
        display: block;
    }
}



/* Media query for screens smaller than 850px - move button to burger menu */
@media (max-width: 850px) {

    /* Hide the primary button in header */
    .btn-primary {
        display: none;
    }

    .hero__title {
        font-size: 56px;
        max-width: 500px;
    }
}

@media (max-width: 620px) {
    .hero__title {
        font-size: 48px;
        max-width: 400px;
    }
}


@media (max-width: 550px) {
    .hero__content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero__title {
        font-size: 38px;
        max-width: 400px;
    }

    .hero__description {
        font-size: 16px;
        max-width: 320px;
    }
}

@media (max-width: 400px) {
    .hero__title {
        font-size: 38px;
        max-width: 360px;
    }

    .hero__description {
        font-size: 16px;
        max-width: 300px;
    }
}


/* Style the button in burger menu */
.burger-menu__btn {
    width: 100%;
    margin-top: 20px;
    padding: 15px 20px;
    background-color: #ffffff;
    color: #0B0D10;
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.02em;
    border: none;
    border-radius: 1000px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    height: 55px;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    z-index: 1;
}

/* Button appears after dropdown animation */
.burger-menu__dropdown.active .burger-menu__btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* Button disappears immediately when dropdown closes */
.burger-menu__dropdown:not(.active) .burger-menu__btn {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.1s ease, transform 0.1s ease;
}

.burger-menu__btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-1px);
}

/* Adjust burger menu dropdown width for button */
.burger-menu__dropdown.active {
    width: 360px;
}


/* Медиа-запрос после базовых стилей */
@media (min-width: 851px) {
    .burger-menu__btn {
        display: none;
    }
}

@media (max-width: 510px) {
    .burger-menu__dropdown.active {
        max-width: 300px;
    }

    .burger-menu__toggle.active {
        max-width: 300px;
    }

    .burger-menu__link {
        font-size: 32px;
    }
}

@media (max-width: 450px) {
    .burger-menu__dropdown.active {
        max-width: 250px;
    }

    .burger-menu__toggle.active {
        max-width: 250px;
    }

    .burger-menu__link {
        font-size: 32px;
    }
}


@media (max-width: 400px) {
    .burger-menu__dropdown.active {
        max-width: 210px;
    }

    .burger-menu__toggle.active {
        max-width: 210px;
    }

    .burger-menu__link {
        font-size: 24px;
    }

    .burger-menu__btn {
        height: 50px;
        font-size: 14px;
    }

    .burger-menu__toggle {
        width: 140px;
    }
}

/* Services Section Responsive - меньше 1200px */
@media (max-width: 1199px) {
    .services__content {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
        padding: 0 40px;
    }

    .services__title {
        font-size: 48px;
        text-align: left;
    }

    .services__form {
        width: 100%;
        margin: 0 auto;
        max-width: 800px;
    }

    .services__image-block {
        height: 400px;
    }

    .services__main-options {
        gap: 12px;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .main-option {
        padding: 16px 24px;
        font-size: 17px;
        min-height: 52px;
    }

    .services__main-label,
    .services__additional-label {
        padding: 16px 40px;
        font-size: 17px;
    }

    .services__additional-section {
        padding: 24px;
    }

    .services__additional-options {
        gap: 12px;
        justify-content: flex-start;
    }

    .additional-option {
        font-size: 16px;
        padding: 16px 28px;
        min-width: 200px;
        min-height: 54px;
    }

    .services__cta {
        height: 60px;
        font-size: 17px;
    }
}

/* Упрощаем адаптивность - убираем лишние медиа-запросы */

@media (max-width: 992px) {

    .feature-card {
        padding: 30px 20px;
        gap: 60px;
    }

    .feature-card__title {
        font-size: 24px;
    }

    .feature-card__description {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .features {
        padding: 80px 0 60px;
    }

    .features__title {
        font-size: 32px;
        margin-bottom: 40px;
    }

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

    .feature-card {
        padding: 30px 20px;
        gap: 40px;
    }

    .feature-card__icon {
        width: 50px;
        height: 50px;
    }

    .feature-card__title {
        font-size: 22px;
    }

    .feature-card__description {
        font-size: 16px;
    }

    /* Services Mobile */
    .services {
        padding: 60px 0;
    }

    .services__content {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .services__title {
        font-size: 32px;
    }

    .services__description {
        font-size: 16px;
    }

    .services__form {
        max-width: 100%;
    }

    .services__image-block {
        height: 280px;
    }

    .services__main-options {
        gap: 8px;
        bottom: 12px;
        left: 12px;
        right: 12px;
    }

    .main-option {
        padding: 14px 16px;
        font-size: 15px;
        min-height: 48px;
    }

    .services__main-label,
    .services__additional-label {
        padding: 16px 24px;
        font-size: 16px;
        margin-left: 0;
    }

    .services__additional-section {
        padding: 20px;
        margin-bottom: 20px;
    }

    .services__additional-options {
        gap: 12px;
        justify-content: left;
    }

    .additional-option {
        font-size: 15px;
        padding: 16px 24px;
        min-width: 180px;
        min-height: 56px;
        flex: 0 1 auto;
        max-width: calc(50vw - 20px);
    }

    .services__cta {
        height: 60px;
        font-size: 16px;
        margin-top: 10px;
    }
}

@media (max-width: 446px) {
    .services__additional-options {
        justify-content: center;
    }

    .additional-option {
        width: 100%;
    }
}


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

    .features__title {
        font-size: 26px;
    }


    /* Services Extra Small Mobile */
    .services__content {
        padding: 0 15px;
    }

    .services__title {
        font-size: 28px;
    }

    .services__image-block {
        height: 240px;
    }

    .services__main-options {
        gap: 4px;
        bottom: 8px;
        left: 8px;
        right: 8px;
    }

    .main-option {
        padding: 10px 12px;
        font-size: 12px;
        min-height: 40px;
        line-height: 1.1;
    }

    .services__main-label,
    .services__additional-label {
        padding: 14px 20px;
        font-size: 14px;
    }

    .services__additional-section {
        padding: 16px;
    }

    .services__additional-options {
        gap: 10px;
    }

    .additional-option {
        font-size: 13px;
        padding: 14px 20px;
        min-width: 160px;
        min-height: 52px;
        max-width: calc(100vw - 40px);
        box-sizing: border-box;
    }

    .services__cta {
        height: 56px;
        font-size: 14px;
    }
}

/* Reviews Section Responsive */
@media (max-width: 1199px) {
    .reviews__container {
        gap: 15px;
    }

    .review-card-wrapper--main {
        width: 700px;
    }

    .review-card-wrapper--side {
        width: 280px;
    }

    .review-card--main .review-card__image img {
        width: 660px;
        height: 340px;
        border-radius: 10px;
        object-fit: cover;
    }

    .review-card--side .review-card__image img {
        width: 240px;
        height: 124px;
        border-radius: 10px;
        object-fit: cover;
    }

    .reviews__title {
        font-size: 48px;
    }

    .reviews__navigation {
        bottom: 15px;
        right: 15px;
    }
}

/* Mobile Reviews - Single main card only */
@media (max-width: 999px) {
    .reviews__container {
        justify-content: left;
    }

    .review-card-wrapper--main {
        width: 100%;
    }

    .review-card-wrapper--side {
        display: none;
    }

    .review-card--main {
        max-width: 100%;
    }

    .review-card--main .review-card__image img {
        width: 100%;
        height: auto;
    }

    .reviews__navigation {
        position: static;
        justify-content: flex-end;
        margin-bottom: 20px;
        gap: 10px;
    }

    .reviews__slider {
        display: flex;
        flex-direction: column-reverse;
    }
}

@media (min-width: 1000px) and (max-width: 1199px) {
    .reviews__container {
        gap: 15px;
    }

    .review-card-wrapper--main {
        width: 700px;
    }

    .review-card-wrapper--side {
        width: 280px;
    }

    .review-card--main .review-card__image img {
        width: 660px;
        height: 340px;
    }

    .review-card--side .review-card__image img {
        width: 240px;
        height: 124px;
    }

    .reviews__title {
        font-size: 48px;
    }

    .reviews__navigation {
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 850px) {
    .reviews__header {
        display: block;
    }

    .reviews__title {
        margin-bottom: 20px;
    }
}


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

    .reviews__title {
        font-size: 32px;
    }

    .reviews__link {
        font-size: 16px;
    }

    .review-card {
        padding: 15px;
    }

    .review-card__text {
        font-size: 18px;
    }

    .review-card--main .review-card__image img {
        height: 250px;
    }

    .review-card--side .review-card__image img {
        height: 160px;
    }

    .review-tag {
        font-size: 16px;
        padding: 8px 20px;
    }
}

@media (max-width: 480px) {
    .reviews {
        padding: 60px 0 40px;
    }

    .reviews__header {
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .reviews__title {
        font-size: 26px;
    }

    .reviews__link {
        font-size: 14px;
    }

    .reviews__slider {
        padding: 0 15px;
    }

    .review-card {
        padding: 12px;
    }

    .review-card__text {
        font-size: 16px;
    }

    .review-card--main .review-card__image img {
        height: 200px;
    }

    .review-card--side .review-card__image img {
        height: 140px;
    }

    .review-tag {
        font-size: 14px;
        padding: 6px 16px;
    }


}

/* News Section Responsive */
@media (max-width: 1480px) and (min-width: 769px) {
    .news__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 20px;
    }

    .news-card {
        width: 100%;
        min-height: 100%;
        display: flex;
        flex-direction: column;

    }

    .news-card__image img {
        width: 100%;
        height: 280px
    }


    .news-card__content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .news-card__title {
        flex: 1;
    }

    .news-card--news {
        height: 100%;
    }

    .news-card--article {
        height: 100%;
    }
}

@media (max-width: 1199px) {
    .news__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .news-card__image img {
        width: 100%;
        height: 220px
    }

    .news-card {
        width: 100%;
        max-width: 340px;
    }

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

@media (max-width: 992px) {
    .news__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .news-card {
        width: 100%;
        max-width: none;
    }

    .news__title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 0 0 60px;
        margin-top: 80px;
    }

    .news__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .news__title {
        font-size: 32px;
        max-width: 100%;
    }

    .news__link {
        font-size: 16px;
        align-self: flex-start;
    }

    .news__content {
        padding: 0 20px;
    }

    .news__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 0;
    }

    .news-card {
        width: 100%;
        max-width: none;
    }

    .news-card__image img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .news-card--article .news-card__title {
        font-size: 22px;
    }

    .news-card--news .news-card__title {
        font-size: 16px;
    }

    .news-card__description {
        font-size: 16px;
    }

    .news-tag {
        font-size: 14px;
        padding: 8px 20px;
    }
}

@media (max-width: 480px) {
    .news-section {
        padding: 0 0 40px;
        margin-top: 60px;
    }

    .news__header {
        margin-bottom: 25px;
        padding: 0 15px;
    }

    .news__title {
        font-size: 26px;
    }

    .news__link {
        font-size: 14px;
    }

    .news__content {
        padding: 0 15px;
    }

    .news__grid {
        gap: 15px;
    }

    .news-card {
        padding: 15px;
    }

    .news-card__image img {
        height: 200px;
    }

    .news-card--article .news-card__title {
        font-size: 20px;
    }

    .news-card--news .news-card__title {
        font-size: 15px;
    }

    .news-card__description {
        font-size: 15px;
    }

    .news-tag {
        font-size: 13px;
        padding: 6px 16px;
    }
}

/* About Section Responsive */
@media (max-width: 1199px) {
    .about-title {
        width: 100%;
        font-size: 38px;
    }

    .about-contact-text {
        max-width: 800px;
        font-size: 36px;
        margin-top: 120px;
    }

    .address-title {
        font-size: 36px;
    }

    .about-contact-info {
        max-width: 800px;
    }

    .contact-link {
        font-size: 36px;
    }

}

@media (max-width: 992px) {
    .about-title {
        font-size: 32px;
    }

    .about-contact-info {
        gap: 12px;
    }

    .contact-link {
        font-size: 32px;
    }

    .about-content {
        padding: 60px 0;
    }

    .about-btn {
        max-width: 350px;
        padding: 20px 35px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .about-section {
        margin: 15px;
        width: calc(100% - 30px);
        padding: 0px;
    }

    .about-content {
        padding: 50px 0;
    }

    .about-title {
        font-size: 28px;
        width: 100%;
        text-align: left;
    }

    .about-contact-info {
        gap: 10px;
    }

    .contact-link {
        font-size: 28px;
    }

    .about-location {
        margin-top: 80px;
    }

    .location-content {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }


    .map-container {
        max-width: 100%;
        height: 350px;
    }

    .about-btn {
        max-width: 100%;
        width: 100%;
        padding: 18px 30px;
        font-size: 15px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .about-section {
        margin: 10px;
        width: calc(100% - 20px);
        padding: 0 10px;
    }

    .about-content {
        padding: 40px 0;
    }

    .about-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .about-contact-info {
        gap: 8px;
        margin-top: 30px;
    }

    .contact-link {
        font-size: clamp(20px, 6vw, 28px);
        text-align: center;
    }

    .about-location {
        margin-top: 60px;
    }

    .map-container {
        width: 100%;
        height: 300px;
    }

    .about-btn {
        padding: 16px 25px;
        font-size: 14px;
        margin-top: 18px;
    }

    /* Contact Labels Mobile */
    .contact-label {
        font-size: 14px;
        padding: 8px 20px;
    }

    .contact-label--first {
        top: -15px;
        right: 20px;
    }

    .contact-label--second {
        bottom: 15px;
        left: 20px;
    }
}

/* FAQ Section inside About */
.about-content .faq-container {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
    position: relative;
    width: 100%;
    margin-left: auto;
    max-width: calc(1420px - 40px);
}

.about-content .faq-item {
    width: 940px;
    background-color: rgba(134, 134, 134, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-content .faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    user-select: none;
}

.about-content .faq-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
    color: #ffffff;
    margin: 0;
    padding-right: 20px;
}

.about-content .faq-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: #0B0D10;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-content .faq-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.about-content .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-content .faq-content.active {
    max-height: 200px;
    padding: 0 20px 20px 20px;
}

.about-content .faq-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.25;
    color: #A9B0B8;
    margin: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.about-content .faq-content.active .faq-description {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Animation States */
.about-content .faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* FAQ Responsive inside About */
@media (max-width: 1199px) {}

@media (max-width: 1080px) {
    .about-content .faq-container {
        margin-top: 40px;
        gap: 15px;
    }

    .about-content .faq-item {
        width: 100%;
        max-width: 100%px;
    }

    .about-content .faq-title {
        font-size: 18px;
    }

    .about-content .faq-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .about-content .faq-container {
        margin-top: 30px;
        gap: 15px;
    }

    .about-content .faq-header {
        padding: 15px;
    }

    .about-content .faq-title {
        font-size: 16px;
        padding-right: 15px;
    }

    .about-content .faq-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .about-content .faq-icon {
        width: 16px;
        height: 16px;
    }

    .about-content .faq-content.active {
        max-height: 250px;
        padding: 0 15px 15px 15px;
    }

    .about-content .faq-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .about-content .faq-container {
        margin-top: 25px;
        gap: 12px;
    }

    .about-content .faq-header {
        padding: 12px;
    }

    .about-content .faq-title {
        font-size: 15px;
        line-height: 1.3;
    }

    .about-content .faq-icon-wrapper {
        width: 36px;
        height: 36px;
    }

    .about-content .faq-icon {
        width: 14px;
        height: 14px;
    }

    .about-content .faq-content.active {
        max-height: 300px;
        padding: 0 12px 12px 12px;
    }

    .about-content .faq-description {
        font-size: 14px;
    }
}

/* Footer Section */
.footer {
    margin-top: 20px;
    padding: 0;
}

.footer__container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}

.footer__image {
    width: 520px;
    height: 370px;
    flex-shrink: 0;
}

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

.footer__cta-block {
    width: 100%;
    height: 370px;
    background-color: #1458E4;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    display: block;

    position: relative;
}

.footer__title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0;
}

.footer__description {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #ffffff;
    width: 560px;
    margin: 0px;
    margin-top: 20px;
}

.footer__button {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 1000px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #ffffff;
    padding: 25px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer__button:hover {
    background-color: rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
}

.footer__bottom {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}

.footer__copyright {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #A9B0B8;
}

.footer__privacy {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #000000;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer__privacy:hover {
    color: #1458E4;
}

/* Footer Responsive */
@media (max-width: 1599px) {
    .footer__container {
        max-width: 100%;
        padding: 0 20px;
    }

    .footer__content {
        gap: 15px;
    }

    .footer__image {
        width: 480px;
        height: 340px;
    }

    .footer__cta-block {
        width: calc(100% - 495px);
        height: 340px;
        padding: 18px;
    }

    .footer__title {
        font-size: 38px;
    }

    .footer__description {
        font-size: 18px;
        width: 500px;
    }

    .footer__button {
        padding: 22px 35px;
        font-size: 16px;
    }
}

@media (max-width: 1200px) {
    .footer__image {
        width: 350px;
    }

    .footer__cta-block {
        width: 100%;
    }
}

@media (max-width: 1000px) {
    .footer__content {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .footer__image {
        display: none;
    }

    .footer__cta-block {
        width: 100%;
        height: 370px;
        padding: 20px;
    }

    .footer__title {
        font-size: 42px;
    }

    .footer__description {
        font-size: 20px;
        width: 560px;
    }

    .footer__button {
        padding: 25px 40px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .footer {
        margin-top: 15px;
    }

    .footer__container {
        padding: 0 15px;
    }

    .footer__content {
        gap: 15px;
    }

    .footer__cta-block {
        width: 100%;
        height: 300px;
        padding: 20px;
    }

    .footer__title {
        font-size: 28px;
    }

    .footer__description {
        font-size: 16px;
        width: 100%;
        max-width: 400px;
    }


    .footer__bottom {
        margin-top: 8px;
        padding: 15px 0;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        text-align: center;
    }

    .footer__copyright,
    .footer__privacy {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footer {
        margin-top: 12px;
    }

    .footer__container {
        padding: 0 10px;
    }

    .footer__content {
        gap: 12px;
    }

    .footer__image {
        display: block;
        width: 100%;
        height: 220px;
    }

    .footer__cta-block {
        height: 250px;
        padding: 20px;
    }

    .footer__title {
        font-size: 22px;
    }

    .footer__description {
        font-size: 14px;
    }

    .footer__button {

        font-size: 13px;
    }

    .footer__bottom {
        margin-top: 6px;
        padding: 12px 0;
        gap: 8px;
    }

    .footer__copyright,
    .footer__privacy {
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .services__cta {
        font-size: 12px;
    }
}

/* Multi-step Popup Modal Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup {
    width: 540px;
    max-width: 100%;
    height: 600px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border: 1px solid #ffffff;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease, height 0.3s ease;
    box-sizing: border-box;
}

.popup.popup--compact {
    height: 380px;
}

.popup-overlay.active .popup {
    transform: scale(1);
}

.popup__header {
    position: relative;
    padding-top: 20px;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;

}

.popup__title-bg {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 0px;
    position: relative;
    width: 436px;
    box-sizing: border-box;
    margin-left: 20px;
}

.popup__title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #000000;
    margin: 0 0 10px 0;
    text-align: left;
}

.popup__discount-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    color: #A9B0B8;
    margin: 0;
    text-align: left;
}

.popup__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
    background-color: #ffffff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.popup__close:hover {
    background-color: #f5f5f5;
    transform: scale(1.05);
}

.popup__close-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.popup__content {
    flex: 1;
    padding: 0 20px;
    overflow-y: auto;
    padding-bottom: 20px;
    overflow: hidden;
}

.popup__step {
    display: none;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    justify-content: center;
    height: auto;
    margin-top: 50px;
}

.popup__step--active {
    display: flex;
}

.popup__step-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #000000;
    margin: 0 0 20px 0;
    text-align: center;
}

.popup__form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.popup__input {
    width: 100%;
    height: 60px;
    background-color: #262A30;
    border: none;
    border-radius: 10px;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.popup__input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.popup__input:focus {
    outline: none;
    color: #ffffff;
    background-color: #2A3038;
}

.popup__input:hover:not(:focus) {
    background-color: #2A3038;
}

.popup__input:invalid {
    border: 1px solid #ff4444;
}

.popup__error {
    color: #ff4444;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    min-height: 18px;
    display: none;
}

.popup__error.active {
    display: block;
}

.popup__main-services {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup__service-btn {
    width: 100%;
    height: 70px;
    background-color: transparent;
    border: 1px solid #000000;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.popup__service-btn:hover {
    background-color: #262A30;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.popup__service-btn--active {
    background-color: #262A30;
    border-color: #1458E4;
}

.popup__service-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #000000;
    text-align: center;
}

.popup__service-btn--active .popup__service-text {
    color: #ffffff;
}

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

.popup__additional-services {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 100%;
}

.popup__additional-services::-webkit-scrollbar {
    width: 4px;
}

.popup__additional-services::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.popup__additional-services::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.popup__additional-btn {
    background-color: transparent;
    border: 1px solid #000000;
    border-radius: 1000px;
    padding: 20px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    flex-shrink: 0;
}

.popup__additional-btn:hover {
    background-color: #262A30;
    transform: translateY(-1px);
}

.popup__additional-btn--selected {
    background-color: #262A30;
}

.popup__additional-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #000000;
}

.popup__additional-btn--selected .popup__additional-text {
    color: #ffffff;
}

.popup__discount {
    margin-top: 10px;
    max-width: 436px;
}

.popup__discount-wrapper {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;

    max-width: 436px;
}

.popup__discount-badge {
    width: 105px;
    height: 49px;
    background-color: #1458E4;
    border-radius: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.popup__discount-percent {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.popup__discount-text {
    flex: 1;
}

.popup__discount-label {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #000000;
}

.popup__success {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    height: 100%;
}

.popup__success-content {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.popup__success-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #000000;
    margin: 0;
    text-align: center;
}

.popup__success-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.05em;
    color: #A9B0B8;
    margin: 0;
    text-align: center;
}

.popup__footer {
    padding: 20px;
    flex-shrink: 0;
}

.popup__btn {
    width: 100%;
    height: 62px;
    border: none;
    border-radius: 1000px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup__btn--continue {
    background-color: #1458E4;
    color: #ffffff;
}

.popup__btn--continue:hover {
    background-color: #0f47bd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 88, 228, 0.3);
}

.popup__btn--submit {
    background-color: #1458E4;
    color: #ffffff;
}

.popup__btn--submit:hover {
    background-color: #0f47bd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 88, 228, 0.3);
}

.popup__btn--success {
    background-color: #1458E4;
    color: #ffffff;
}

.popup__btn--success:hover {
    background-color: #0f47bd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 88, 228, 0.3);
}

/* Discount Popup Styles */
.popup--discount {
    height: 600px;
}

.popup__form-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
    justify-content: center;
    margin-top: 50px;
}

.popup__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Success Popup Styles */
.popup--success {
    height: 360px;
}

.popup__success-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    color: #A9B0B8;
    margin: 0;
    text-align: left;
}

/* Popup Mobile Responsive */
@media (max-width: 768px) {
    .popup-overlay {
        padding: 15px;
        padding-top: calc(15px + env(safe-area-inset-top, 0px));
        padding-bottom: calc(15px + env(safe-area-inset-bottom, 0px));
    }

    .popup {
        width: 100%;
        height: 500px;
        border-radius: 10px;
    }

    .popup__header {
        padding: 15px 60px 0 15px;
        position: relative;
    }

    .popup__title-bg {
        padding: 15px;
        width: auto;
        margin-left: 0px;
        margin-right: 20px;
    }

    .popup__title {
        font-size: 24px;
        line-height: 1.2;
    }

    .popup__close {
        width: 45px;
        height: 45px;
        top: 15px;
        right: 15px;
        position: absolute;
        z-index: 10;
    }

    .popup__close-icon {
        width: 24px;
        height: 24px;
    }

    .popup__content {
        padding: 0 15px;
        padding-bottom: 15px;
        height: calc(100% - 120px);
        overflow: hidden;
    }

    .popup__step {
        margin-top: 20px;
        gap: 15px;
        height: calc(100% - 20px);
        justify-content: flex-start;
    }

    .popup__additional-container {
        max-width: 100%;
    }

    .popup__input {
        height: 56px;
        padding: 0 16px;
        font-size: 15px;
    }

    .popup__service-btn {
        height: 60px;
    }

    .popup__service-text {
        font-size: 18px;
    }

    .popup__additional-btn {
        padding: 16px 24px;
    }

    .popup__additional-text {
        font-size: 16px;
    }



    .popup__discount-badge {
        width: 90px;
        height: 42px;
    }

    .popup__discount-percent {
        font-size: 20px;
    }

    .popup__discount-label {
        font-size: 20px;
    }

    .popup__success-content {
        padding: 30px 15px;
    }

    .popup__success-title {
        font-size: 24px;
    }

    .popup__success-description {
        font-size: 16px;
    }

    .popup__footer {
        padding: 15px;
    }

    .popup__btn {
        height: 56px;
        font-size: 16px;
    }

    .popup__form-section {
        margin-top: 20px;
    }

    .popup__discount-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .popup-overlay {
        padding: 10px;
    }


    .popup__title-bg {
        padding: 12px;
        margin-right: 10px;
        width: auto;
    }

    .popup__title {
        font-size: 20px;
    }

    .popup__close {
        width: 40px;
        height: 40px;
    }

    .popup__close-icon {
        width: 20px;
        height: 20px;
    }

    .popup__content {
        padding: 0 12px;
        padding-bottom: 12px;
    }

    .popup__input {
        height: 52px;
        padding: 0 14px;
        font-size: 14px;
    }

    .popup__service-btn {
        height: 56px;
    }

    .popup__service-text {
        font-size: 16px;
    }

    .popup__additional-btn {
        padding: 14px 20px;
    }

    .popup__additional-text {
        font-size: 15px;
    }

    .popup__discount-wrapper {
        padding: 10px;
        gap: 10px;
    }

    .popup__discount-badge {
        width: 80px;
        height: 38px;
    }

    .popup__discount-percent {
        font-size: 18px;
    }

    .popup__discount-label {
        font-size: 16px;
    }

    .popup__success-content {
        padding: 25px 12px;
        gap: 15px;
    }

    .popup__success-title {
        font-size: 20px;
    }

    .popup__success-description {
        font-size: 15px;
    }

    .popup__footer {
        padding: 12px;
    }

    .popup__btn {
        height: 52px;
        font-size: 15px;
    }
}

@media (max-width: 360px) {
    .popup__title {
        font-size: 18px;
    }
}

@media (max-width: 1050px) {
    .reviews__title {
        max-width: 600px;
    }
}


@media (max-width: 1540px) {
    .location-content {
        display: block;
    }

    .address-container {
        max-width: 100%;
    }

    .address-title {
        max-width: 600px;
    }

    .address-description {
        width: 800px;
    }

    .about-content .faq-container {
        align-items: flex-start;
    }
}


@media (max-width: 1080px) {
    .location-content {
        max-width: 100%;
    }

    .map-container {
        width: 100%;
    }

}

@media (max-width: 1000px) {
    .about-contact-text {
        font-size: 28px;
        max-width: 100%;
    }

    .contact-link {
        font-size: 28px;
    }

    .address-title {
        font-size: 28px;
        max-width: 400px;
    }

    .address-description {
        font-size: 18px;
        max-width: 600px;
    }
}


@media (max-width: 768px) {
    .about-contact-text {
        max-width: 100%;
    }

    .address-description {
        max-width: 100%;
    }
}

@media (max-width: 550px) {
    .about-contact-text {
        font-size: 24px;
    }

    .contact-link {
        font-size: 24px;
    }

    .address-description {
        font-size: 16px;
    }
}

/* Back to Top Button in Footer */
.footer__back-to-top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 40px 0;
    background-color: #0B0D10;
}

.footer__back-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.02em;
    padding: 15px 25px;
    border-radius: 1000px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
}

.footer__back-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.footer__back-btn svg {
    transition: transform 0.3s ease;
}

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

/* Back to Top Button in Footer Responsive */
@media (max-width: 768px) {
    .footer__back-to-top {
        padding: 15px 0 30px 0;
    }

    .footer__back-btn {
        font-size: 15px;
        padding: 12px 20px;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .footer__back-to-top {
        padding: 12px 0 25px 0;
    }

    .footer__back-btn {
        font-size: 14px;
        padding: 10px 18px;
        gap: 6px;
    }
}