/* Shum Page Styles */

/* Shum Hero Section */
.shum-hero {
    padding-top: 200px;
    background-color: #ffffff;
}

.shum-hero__content {
    display: flex;
    gap: 20px;
    align-items: stretch;
    min-height: 600px;
}

.shum-hero__left {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: linear-gradient(135deg, #1458E4 0%, #0f47bd 100%);
    border-radius: 10px;
    overflow: hidden;
    max-width: 680px;
}

.shum-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 88, 228, 0.9) 0%, rgba(15, 71, 189, 0.9) 100%);
    z-index: 1;
}

.shum-hero__title {
    position: relative;
    z-index: 2;
    font-family: 'Inter', sans-serif;
    font-size: 54px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #ffffff;
    margin-bottom: 30px;
}

.shum-hero__title-highlight {
    display: inline-block;
    background-color: #ffffff;
    color: #1458E4;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    margin-right: 20px;
}

.shum-hero__title-text {
    display: inline;
}

.shum-hero__description {
    position: relative;
    z-index: 2;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 125%;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 500px;
}

.shum-hero__btn {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.02em;
    width: 280px;
    height: 62px;
    border-radius: 1000px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.shum-hero__btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.shum-hero__right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shum-hero__image {
    width: 100%;
    max-width: 680px;
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(20, 88, 228, 0.2);
}

.shum-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Анимации для появления элементов */
@keyframes shumSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shumImageZoom {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.shum-hero__left {
    animation: shumSlideIn 0.8s ease-out;
}

.shum-hero__right {
    animation: shumImageZoom 0.8s ease-out 0.2s both;
}

/* Statistics Cards Section */
.statistics-section {
    padding-top: 200px;
    padding-bottom: 20px;
    background-color: #ffffff;
}

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

.stat-card {
    background-color: rgba(20, 88, 228, 0.05);
    border: 1px solid rgba(20, 88, 228, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(20, 88, 228, 0.15);
    background-color: rgba(20, 88, 228, 0.08);
    border-color: rgba(20, 88, 228, 0.2);
}

.stat-card__number {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 100%;
    color: #1458E4;
    margin-bottom: 10px;
}

.stat-card__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    color: #1458E4;
    margin-bottom: 8px;
}

.stat-card__description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    color: #6B7280;
}

/* Анимации для карточек статистики */
@keyframes statCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card {
    animation: statCardFadeIn 0.6s ease-out;
}

.stat-card:nth-child(2) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* New Feature Section */
.feature-section {
    padding: 0px 0px 200px;
    background-color: #ffffff;
}

.feature-content {
    display: flex;
    gap: 20px;
    align-items: stretch;
    min-height: 400px;
}

.feature-card {
    position: relative;
    width: 330px;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.feature-card__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.feature-card__title {
    position: relative;
    z-index: 2;
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.05em;
    color: #000000;
    margin: 0;
    z-index: 1000;
}

.feature-card__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card__icon img {
    width: 300px;
    height: 300px;
    object-fit: contain;
}

.feature-backdrop {
    position: relative;
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    background-color: #0B0D10;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-backdrop__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0B0D10;
    z-index: 1;
}

.feature-backdrop__title {
    position: relative;
    z-index: 2;
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #ffffff;
    margin: 0 0 30px 0;
}

.feature-backdrop__description {
    position: relative;
    z-index: 2;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 600px;
}

/* Анимации для нового блока */
@keyframes featureCardSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes featureBackdropSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-card {
    animation: featureCardSlideIn 0.8s ease-out;
}

.feature-backdrop {
    animation: featureBackdropSlideIn 0.8s ease-out 0.2s both;
}

/* Interactive Soundproofing Zones Section */
.soundproofing-zones {
    padding: 150px 0 100px;
    background-color: #ffffff;
}

.zones-header {
    text-align: left;
    margin-bottom: 50px;
}

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

.zones-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 125%;
    color: #A9B0B8;
    margin-bottom: 0;
    max-width: 600px;
}

.zones-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.zones-image-container {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.zones-main-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: #ffffff;
}



.zones-buttons {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 450px;
}

.zone-btn {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 140px;
    position: relative;
}

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

.zone-btn.active {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

.zone-btn span {
    position: relative;
    z-index: 2;
}

.zone-btn .zone-btn__title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #000000;
    margin: 0;
}

.zone-btn.active .zone-btn__title {
    color: #ffffff;
}

.zone-btn .zone-btn__description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 125%;
    color: #A9B0B8;
    margin: 0;
    opacity: 1;
    transition: all 0.3s ease;
}

.zone-btn.active .zone-btn__description {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin: 0;
}

/* Полное описание зоны в кнопке */
.zone-btn__full-description {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 140%;
    color: #6B7280;
    margin-top: 8px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.zone-btn.active .zone-btn__full-description {
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    max-height: 200px;
    margin-top: 12px;
}

/* Анимации для блока зон */
@keyframes zonesSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.soundproofing-zones {
    animation: zonesSlideIn 0.8s ease-out;
}

/* Убраны анимации для мгновенного появления всех кнопок */

/* Responsive Design */
@media (max-width: 1199px) {
    .shum-hero__content {
        gap: 15px;
    }

    .shum-hero__left {
        padding: 50px;
    }

    .shum-hero__title {
        font-size: 48px;
    }

    .shum-hero__description {
        font-size: 16px;
    }

    .statistics-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .feature-content {
        gap: 15px;
    }

    .feature-backdrop__title {
        font-size: 42px;
    }

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

    .zones-content {
        gap: 40px;
    }

    .zones-title {
        font-size: 42px;
    }

    .zones-subtitle {
        font-size: 16px;
    }



    .zones-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .shum-hero {
        padding: 100px 0 80px;
    }

    .shum-hero__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        min-height: auto;
    }

    .shum-hero__left {
        padding: 50px;
        min-height: 500px;
    }

    .shum-hero__right {
        padding: 0;
    }

    .shum-hero__image {
        min-height: 400px;
    }

    .shum-hero__title {
        font-size: 42px;
    }

    .shum-hero__btn {
        width: 250px;
        height: 58px;
        font-size: 16px;
    }

    .statistics-section {
        padding: 60px 0;
    }

    .statistics-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-content {
        flex-direction: column;
        gap: 20px;
        min-height: auto;
    }

    .feature-card {
        width: 100%;
        min-height: 300px;
    }

    .feature-card__icon img {
        width: 200px;
        height: 200px;
    }

    .feature-backdrop {
        padding: 30px;
    }

    .feature-backdrop__title {
        font-size: 36px;
    }

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

    .soundproofing-zones {
        padding: 80px 0;
    }

    .zones-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .zones-image-container {
        width: 100%;
        max-width: 600px;
        height: 450px;
    }



    .zones-buttons {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        max-width: 600px;
        width: 100%;
    }

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

    .zones-subtitle {
        font-size: 16px;
    }


}

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

    .shum-hero__content {
        gap: 25px;
    }

    .shum-hero__left {
        padding: 40px 30px;
        min-height: 450px;
    }

    .shum-hero__title {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .shum-hero__title-highlight {
        display: block;
        margin-bottom: 15px;
        margin-right: 0;
        max-width: fit-content;
    }

    .shum-hero__description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .shum-hero__btn {
        width: 100%;
        max-width: 280px;
        height: 56px;
        font-size: 15px;
    }

    .shum-hero__image {
        min-height: 350px;
    }

    .statistics-section {
        padding: 40px 0;
    }

    .feature-card {
        min-height: 250px;
        padding: 15px;
    }

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

    .feature-card__icon img {
        width: 150px;
        height: 150px;
    }

    .feature-backdrop {
        padding: 25px;
    }

    .feature-backdrop__title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .feature-backdrop__description {
        font-size: 15px;
    }

    .soundproofing-zones {
        padding: 60px 0;
    }

    .zones-header {
        margin-bottom: 60px;
    }

    .zones-content {
        gap: 30px;
    }

    .zones-image-container {
        max-width: 500px;
    }



    .zones-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 500px;
    }

    .zones-title {
        font-size: 32px;
    }

    .zones-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }



    .zone-btn {
        padding: 15px;
        min-height: 100px;
    }

    .zone-btn .zone-btn__title {
        font-size: 16px;
    }

    .zone-btn .zone-btn__description {
        font-size: 13px;
    }
}

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

    .shum-hero__content {
        gap: 20px;
    }

    .shum-hero__left {
        padding: 30px 20px;
        min-height: 400px;
    }

    .shum-hero__title {
        font-size: 28px;
        line-height: 110%;
    }

    .shum-hero__title-highlight {
        font-size: 24px;
        padding: 8px 16px;
        margin-bottom: 12px;
    }

    .shum-hero__description {
        font-size: 15px;
        line-height: 130%;
        margin-bottom: 25px;
    }

    .shum-hero__btn {
        height: 52px;
        font-size: 14px;
    }

    .shum-hero__image {
        min-height: 300px;
    }

    .stat-card {
        padding: 15px;
    }

    .stat-card__number {
        font-size: 48px;
        margin-bottom: 8px;
    }

    .stat-card__subtitle {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .stat-card__description {
        font-size: 13px;
    }

    .feature-card {
        min-height: 200px;
        padding: 12px;
    }

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

    .feature-card__icon img {
        width: 120px;
        height: 120px;
    }

    .feature-backdrop {
        padding: 20px;
    }

    .feature-backdrop__title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .feature-backdrop__description {
        font-size: 14px;
    }

    .soundproofing-zones {
        padding: 40px 0;
    }

    .zones-header {
        margin-bottom: 40px;
    }

    .zones-content {
        gap: 25px;
    }

    .zones-image-container {
        max-width: 400px;
    }



    .zones-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 400px;
    }

    .zones-title {
        font-size: 28px;
    }

    .zones-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }



    .zone-btn {
        padding: 12px;
        min-height: 90px;
    }

    .zone-btn .zone-btn__title {
        font-size: 15px;
    }

    .zone-btn .zone-btn__description {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .shum-hero__left {
        padding: 25px 15px;
        min-height: 380px;
    }

    .shum-hero__title {
        font-size: 24px;
    }

    .shum-hero__title-highlight {
        font-size: 20px;
        padding: 6px 12px;
        margin-bottom: 10px;
    }

    .shum-hero__description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .shum-hero__btn {
        height: 48px;
        font-size: 13px;
    }

    .stat-card__number {
        font-size: 36px;
    }

    .stat-card__subtitle {
        font-size: 14px;
    }

    .feature-card {
        min-height: 180px;
        padding: 10px;
    }

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

    .feature-card__icon img {
        width: 100px;
        height: 100px;
    }

    .feature-backdrop {
        padding: 15px;
    }

    .feature-backdrop__title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .feature-backdrop__description {
        font-size: 13px;
    }

    .soundproofing-zones {
        padding: 30px 0;
    }

    .zones-header {
        margin-bottom: 30px;
    }

    .zones-content {
        gap: 20px;
    }

    .zones-image-container {
        max-width: 350px;
    }



    .zones-buttons {
        gap: 8px;
        max-width: 350px;
    }

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

    .zones-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }



    .zone-btn {
        padding: 10px;
        min-height: 80px;
    }

    .zone-btn .zone-btn__title {
        font-size: 13px;
    }

    .zone-btn .zone-btn__description {
        font-size: 11px;
    }
}

/* Shum Form Section - Адаптировано из антихрома */
.shum-form-section {
    padding-top: 200px;
    background-color: #ffffff;
}

.shum-form__content {
    max-width: 1420px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.shum-form__left {
    flex: 1;
    max-width: 600px;
}

.shum-form__right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Form Title and Description */
.shum-form__title {
    font-family: 'Inter', sans-serif;
    font-size: 54px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.05em;
    color: #000000;
    max-width: 1420px;
    text-align: left;
    max-width: 700px;
}

.shum-form__description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 125%;
    color: #6B7280;
    margin: 0 0 40px 0;
    max-width: 500px;
    margin-top: 20px;
}

/* Additional Services Section */
.shum-form__additional-services {
    margin-bottom: 30px;
}

.shum-form__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: 0 0 20px 0;
    border: 1px solid rgba(11, 13, 16, 0.5);
    border-radius: 10px;
    background-color: rgba(11, 13, 16, 0.05);
    width: fit-content;
}

/* Discount Section */
.shum-form__discount {
    margin-bottom: 20px;
}

.shum-form__discount-wrapper {
    background-color: #0B0D10;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

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

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

.shum-form__discount-text {
    flex: 1;
}

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

.shum-form__discount-info {
    margin-top: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 100%;
}

.shum-form__discount-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    color: #A9B0B8;
}

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

.shum-form__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: center;
    min-width: 200px;
    flex: 0 1 auto;
}

.additional-option:hover:not(.additional-option--selected) {
    background-color: rgba(134, 134, 134, 0.3);
}

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

/* Contact Information Form */
.shum-form__contact-info {
    background-color: #0B0D10;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.shum-form__form-group {
    margin-bottom: 20px;
}

.shum-form__form-group:last-child {
    margin-bottom: 0;
}

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

.shum-form__input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.shum-form__input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.shum-form__input:hover:not(:focus) {
    background-color: rgba(255, 255, 255, 0.12);
}

.shum-form__input:invalid {
    border-color: #ff4444;
}

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

.shum-form__error.active {
    display: block;
}

/* Submit Button */
.shum-form__submit {
    width: 100%;
    height: 60px;
    border: 1px solid #000000;
    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;
    background-color: transparent;
    color: #000000;
}

.shum-form__submit:not(:disabled) {
    background-color: #1458E4;
    color: #ffffff;
    border-color: #1458E4;
}

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

.shum-form__submit:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

/* Animations for Shum Form */
.shum-form__left {
    animation: slideInFromLeft 0.8s ease-out;
}

.shum-form__right {
    animation: slideInFromRight 0.8s ease-out;
}

/* Hover effects for additional options */
.additional-option {
    position: relative;
    overflow: hidden;
}

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

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

/* Process Steps Section */
.process-steps-section {
    padding: 150px 0 200px;
    background-color: #ffffff;
}

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

.process-steps__content {
    text-align: left;
}

.process-steps__title {
    font-family: 'Inter', sans-serif;
    font-size: 54px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.05em;
    color: #000000;
    margin-bottom: 80px;
    max-width: 800px;
}

.process-steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
    position: relative;
}

.process-step {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

.process-step__number {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 100%;
    color: #1458E4;
    margin-bottom: 20px;
    background-color: rgba(20, 88, 228, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step__title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    color: #000000;
    margin: 0 0 20px 0;
}

.process-step__details {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.process-step:hover .process-step__details {
    opacity: 1;
    visibility: visible;
    max-height: 200px;
}

.process-step__details-item {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    color: #000000;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    text-align: left;
}

.process-step__details-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1458E4;
    font-size: 16px;
    font-weight: 600;
}

.process-step__details-item:last-child {
    margin-bottom: 0;
}

.process-step--with-details {
    background-color: #1458E4;
    border-color: #1458E4;
}

.process-step--with-details .process-step__number {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.process-step--with-details .process-step__title {
    color: #ffffff;
}

.process-step-details {
    background-color: #0B0D10;
    border-radius: 10px;
    padding: 40px;
    color: #ffffff;
    position: relative;
}

.process-step-details__title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 120%;
    color: #ffffff;
    margin-bottom: 30px;
}

.process-step-details__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.process-step-details__item {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    color: rgba(255, 255, 255, 0.9);
    padding-left: 20px;
    position: relative;
}

.process-step-details__item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1458E4;
    font-size: 18px;
    font-weight: 600;
}

/* Hover Effects for Process Steps */
.process-step-hover-details {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #0B0D10;
    border-radius: 10px;
    padding: 30px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.process-step:hover .process-step-hover-details {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.process-step-hover-details__title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 15px;
}

.process-step-hover-details__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.process-step-hover-details__item {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 15px;
    position: relative;
}

.process-step-hover-details__item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1458E4;
    font-size: 16px;
}

/* Анимации для блока этапов */
@keyframes processStepsSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-steps-section {
    animation: processStepsSlideIn 0.8s ease-out;
}

/* Responsive Design для блока этапов */
@media (max-width: 1199px) {
    .process-steps__grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .process-steps__title {
        font-size: 48px;
        margin-bottom: 60px;
    }
}

@media (max-width: 992px) {
    .process-steps-section {
        padding: 80px 0 100px;
    }

    .process-steps__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-steps__title {
        font-size: 42px;
        margin-bottom: 50px;
        text-align: center;
    }

    .process-step {
        padding: 30px 25px;
        min-height: 160px;
    }

    .process-step__details-item {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .process-step__details-item {
        font-size: 12px;
        margin-bottom: 5px;
        padding-left: 18px;
    }

    .process-step-details {
        padding: 30px;
    }
}

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

    .process-steps__title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .process-steps__grid {
        gap: 15px;
    }

    .process-step {
        padding: 25px 20px;
        min-height: 140px;
    }

    .process-step__number {
        font-size: 28px;
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .process-step__title {
        font-size: 16px;
    }

    .process-step-details {
        padding: 25px;
    }

    .process-step-details__title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .process-step-details__item {
        font-size: 15px;
    }
}

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

    .process-steps__title {
        font-size: 28px;
        margin-bottom: 30px;
        text-align: center;
    }

    .process-steps__grid {
        gap: 12px;
    }

    .process-step {
        padding: 20px 15px;
        min-height: 120px;
    }

    .process-step__number {
        font-size: 24px;
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }

    .process-step__title {
        font-size: 14px;
    }

    .process-step-details {
        padding: 20px;
    }

    .process-step-details__title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .process-step-details__item {
        font-size: 14px;
    }
}

/* Shum Results Section - Улучшенный дизайн галереи */
.shum-results-section {
    padding-top: 200px;
    background-color: #ffffff;
}

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

.shum-results__content {
    text-align: left;
    margin-bottom: 50px;
}

.shum-results__title {
    font-family: 'Inter', sans-serif;
    font-size: 54px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.05em;
    color: #000000;
    margin-bottom: 30px;
}

.shum-results__description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    color: #6B7280;
    max-width: 800px;
    margin: 0;
}

.shum-results__gallery {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.shum-results__main {
    position: relative;
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.shum-results__content-wrapper {
    flex: 1;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background-color: #0B0D10;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 20px;
}

.shum-results__image {
    width: 830px;
    height: 530px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.shum-results__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.shum-results__image:hover img {
    transform: scale(1.05);
}

.shum-results__info {
    flex: 1;
    padding: 20px;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
}

.shum-results__car-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
}

.shum-results__services {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shum-results__service-item {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #E5E7EB;
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
}

.shum-results__service-item:hover {
    background-color: rgba(20, 88, 228, 0.2);
    transform: translateX(5px);
}

.shum-results__service-badge {
    background-color: #1458E4;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    min-width: 80px;
    text-align: center;
}

.shum-results__service-text {
    flex: 1;
    color: #E5E7EB;
}

.shum-results__thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.shum-results__thumbnail {
    width: 100px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
}

.shum-results__thumbnail:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.shum-results__thumbnail.active {
    border-color: #1458E4;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(20, 88, 228, 0.5);
}

.shum-results__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.shum-results__thumbnail:hover img {
    transform: scale(1.1);
}

.shum-results__navigation {
    display: flex;
    gap: 10px;
    z-index: 10;
}

.shum-results__nav-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.shum-results__nav-btn:hover {
    background-color: #1458E4;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 88, 228, 0.3);
}

.shum-results__nav-btn img {
    width: 20px;
    height: 20px;
    filter: none;
}

/* Анимации для блока результатов */
@keyframes portfolioResultFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes thumbnailSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes imageSlideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.shum-results__content {
    animation: portfolioResultFadeIn 0.8s ease-out;
}

.shum-results__main {
    animation: portfolioResultFadeIn 0.8s ease-out 0.2s both;
}

.shum-results__thumbnails {
    animation: thumbnailSlideIn 0.8s ease-out 0.4s both;
}

.shum-results__navigation {
    animation: portfolioResultFadeIn 0.8s ease-out 0.6s both;
}

/* Hover эффекты для лучшей интерактивности */
.shum-results__main {
    border-radius: 10px;
    overflow: hidden;
}

.shum-results__info {
    position: relative;
}

.shum-results__info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Дополнительные стили для лучшего внешнего вида */
.shum-results__content-wrapper {
    position: relative;
}

.shum-results__content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 88, 228, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    border-radius: 10px;
}

/* Анимации для новых блоков */
@keyframes formSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes resultsSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shum-form-section {
    animation: formSlideIn 0.8s ease-out;
}

.shum-results-section {
    animation: resultsSlideIn 0.8s ease-out;
}

/* Responsive Design для улучшенного блока результатов */
@media (max-width: 1380px) {
    .shum-results__image {
        width: 650px;
        height: 400px;
    }
}

@media (max-width: 1199px) {
    .shum-form__content {
        gap: 40px;
        padding: 50px;
    }

    .shum-form__title {
        font-size: 32px;
    }

    .shum-form__description {
        font-size: 15px;
    }

    .shum-results__main {
        gap: 15px;
    }

    .shum-results__content-wrapper {
        gap: 15px;
        padding: 18px;
    }

    .shum-results__image {
        width: 700px;
        height: 530px;
    }

    .shum-results__info {
        padding: 18px;
    }

    .shum-results__car-title {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .shum-results__service-item {
        font-size: 16px;
        padding: 10px 16px;
    }
}

@media (max-width: 1110px) {
    .shum-results__image {
        width: 500px;
        height: 300px;
    }
}

@media (max-width: 992px) {
    .shum-form-section {
        padding: 80px 0;
    }

    .shum-form__content {
        flex-direction: column;
        gap: 40px;
        padding: 40px;
        align-items: center;
        text-align: center;
    }

    .shum-form__left {
        max-width: 100%;
    }

    .shum-form__right {
        max-width: 100%;
        width: 100%;
    }

    .shum-form__title {
        font-size: 28px;
    }

    .shum-results-section {
        padding: 80px 0;
    }

    .shum-results__content {
        margin-bottom: 60px;
    }

    .shum-results__title {
        font-size: 48px;
        margin-bottom: 25px;
    }

    .shum-results__description {
        font-size: 16px;
    }

    .shum-results__main {
        gap: 20px;
    }

    .shum-results__content-wrapper {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .shum-results__image {
        width: 650px;
        height: 400px;
    }

    .shum-results__info {
        order: 2;
        width: 100%;
        padding: 20px;
    }

    .shum-results__car-title {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .shum-results__service-item {
        font-size: 18px;
        padding: 10px 14px;
    }
}

@media (max-width: 850px) {
    .shum-results__image {
        width: 500px;
        height: 350px;
    }
}

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

    .shum-form__content {
        padding: 30px;
        gap: 30px;
    }

    .shum-form__title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .shum-form__description {
        font-size: 14px;
    }

    .shum-form__additional-options {
        justify-content: center;
    }

    .additional-option {
        font-size: 13px;
        padding: 8px 12px;
    }

    .shum-results-section {
        padding: 60px 0;
    }

    .shum-results {
        gap: 40px;
    }

    .shum-results__title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .shum-results__description {
        font-size: 16px;
    }

    .shum-results__content-wrapper {
        padding: 25px;
        gap: 25px;
    }

    .shum-results__car-title {
        font-size: 24px;
    }

    .shum-results__service-item {
        font-size: 16px;
        padding: 10px 14px;
    }

    .shum-results__service-badge {
        font-size: 14px;
        padding: 8px 14px;
        min-width: 70px;
    }

    .shum-results__service-text {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .shum-results__image {
        width: 340px;
        height: 220px;
    }

    .shum-results__car-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .shum-results__service-item {
        font-size: 16px;
        padding: 10px 14px;
    }
}

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

    .shum-form__content {
        padding: 20px;
        gap: 25px;
    }

    .shum-form__title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .shum-form__description {
        font-size: 13px;
    }

    .shum-form__input {
        height: 44px;
        font-size: 13px;
    }

    .shum-form__submit {
        height: 44px;
        font-size: 14px;
    }

    .shum-results-section {
        padding: 40px 0;
    }

    .shum-results {
        gap: 30px;
    }

    .shum-results__title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .shum-results__description {
        font-size: 14px;
    }

    .shum-results__gallery {
        gap: 12px;
    }

    .shum-results__main {
        gap: 12px;
    }

    .shum-results__content-wrapper {
        padding: 14px;
        gap: 14px;
    }

    .shum-results__image {
        width: 270px;
        height: 200px;
    }

    .shum-results__info {
        padding: 14px;
        border-radius: 6px;
    }

    .shum-results__car-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .shum-results__services {
        gap: 8px;
    }

    .shum-results__service-item {
        font-size: 13px;
        padding: 8px 10px;
        border-radius: 4px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .shum-results__service-badge {
        min-width: auto;
        font-size: 12px;
        padding: 6px 12px;
    }

    .shum-results__service-text {
        font-size: 13px;
    }

    .shum-results__thumbnails {
        gap: 6px;
        margin-top: 14px;
    }

    .shum-results__thumbnail {
        width: 70px;
        height: 56px;
        border-radius: 4px;
        border-width: 2px;
    }

    .shum-results__nav-btn {
        width: 40px;
        height: 40px;
    }

    .shum-results__nav-btn img {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 400px) {
    .shum-results__image {
        width: 230px;
        height: 160px;
    }
}

@media (max-width: 360px) {
    .shum-results__title {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .shum-results__description {
        font-size: 13px;
    }

    .shum-results__content-wrapper {
        padding: 12px;
        gap: 12px;
    }

    .shum-results__image {
        width: 200px;
        height: 140px;
    }

    .shum-results__info {
        padding: 12px;
        border-radius: 5px;
    }

    .shum-results__car-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .shum-results__service-item {
        font-size: 12px;
        padding: 6px 8px;
    }

    .shum-results__service-badge {
        font-size: 11px;
        padding: 4px 8px;
    }

    .shum-results__service-text {
        font-size: 12px;
    }

    .shum-results__thumbnails {
        gap: 4px;
        margin-top: 12px;
    }

    .shum-results__thumbnail {
        width: 60px;
        height: 48px;
        border-radius: 3px;
    }

    .shum-results__nav-btn {
        width: 36px;
        height: 36px;
    }

    .shum-results__nav-btn img {
        width: 12px;
        height: 12px;
    }
}

/* FAQ Section - Скопировано из антихрома для идентичного вида */
.faq-section {
    padding-top: 200px;
    padding-bottom: 200px;
    background-color: #ffffff;
}

.faq-container {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.faq-item {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.faq-item:hover {
    background-color: rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

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

.faq-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: #1458E4;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.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);
}

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

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

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

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

.faq-item.active {
    background-color: rgba(20, 88, 228, 0.05);
    border-color: rgba(20, 88, 228, 0.2);
}

/* Анимации для FAQ */
@keyframes faqItemFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: faqItemFadeIn 0.6s ease-out;
}

.faq-item:nth-child(2) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(6) {
    animation-delay: 0.5s;
}

/* Responsive Design for FAQ */
@media (max-width: 1199px) {
    .faq-container {
        gap: 18px;
    }

    .faq-header {
        padding: 18px;
    }

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

    .faq-icon-wrapper {
        width: 45px;
        height: 45px;
    }

    .faq-icon {
        width: 18px;
        height: 18px;
    }

    .faq-content.active {
        max-height: 220px;
        padding: 0 18px 18px 18px;
    }

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

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

    .faq-container {
        gap: 15px;
        padding: 0 20px;
    }

    .faq-header {
        padding: 15px;
    }

    .faq-title {
        font-size: 16px;
        padding-right: 15px;
        line-height: 1.3;
    }

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

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

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

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

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

    .faq-container {
        gap: 12px;
        padding: 0 15px;
    }

    .faq-header {
        padding: 12px;
    }

    .faq-title {
        font-size: 15px;
        padding-right: 12px;
    }

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

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

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

    .faq-description {
        font-size: 14px;
        line-height: 1.4;
    }
}
