/* Antichrome Page Styles */

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

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

.antichrome-hero__left {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: #0B0D10;
    border-radius: 10px;
    overflow: hidden;
    max-width: 680px;
}


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

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

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

.antichrome-hero__description {
    position: relative;
    z-index: 2;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 125%;
    color: #A9B0B8;
    margin-bottom: 40px;
    max-width: 500px;
}

.antichrome-hero__btn {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    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);
}

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

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

.antichrome-hero__image {
    width: 100%;
    max-width: 680px;
    height: 100%;
    min-width: 550px;
    overflow: hidden;
    position: relative;
}

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

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

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

.antichrome-hero__left {
    animation: antichromeSlideIn 0.8s ease-out;
}

.antichrome-hero__right {
    animation: antichromeImageZoom 0.8s ease-out 0.2s both;
}

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

    .antichrome-hero__left {
        padding: 50px;
    }

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

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



@media (max-width: 992px) {
    .antichrome-hero {
        padding: 0px
    }

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

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

    .antichrome-hero__right {
        padding: 0;
    }

    .antichrome-hero__image {
        min-width: 250px;
        min-height: 400px;
    }

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

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

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

    .antichrome-hero__content {
        gap: 25px;
    }

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

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

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

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

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

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

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

    .antichrome-hero__content {
        gap: 20px;
    }

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

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

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

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

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

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

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

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

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

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

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

/* Brands Section */
.brands-section {
    padding-top: 200px;
    background-color: #ffffff;
}

.brands-section__title {
    font-family: 'Inter', sans-serif;
    font-size: 54px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.05em;
    color: #000000;
    margin: 0 0 60px 0;
    max-width: 1420px;
    text-align: left;
    max-width: 700px;
}

/* Antichrome Form Section */
.antichrome-form-section {
    padding-top: 200px;
    background-color: #ffffff;
}

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

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

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

/* Form Title and Description */
.antichrome-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;
}

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

/* Brands Marquee */
.brands-marquee {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    background-color: #0B0D10;
    padding: 40px 0;
}

.brands-marquee__container {
    width: 100%;
    overflow: hidden;
}

.brands-marquee__track {
    display: flex;
    gap: 40px;
    animation: scroll 30s linear infinite;
    width: calc(340px * 8 + 40px * 8);
}

.brand-card {
    width: 340px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.brand-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.brand-card__logo {
    max-width: 300px;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Form Styles */
.brands-form__form-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.05em;
    color: #000000;
    margin: 0 0 20px 0;
}

.brands-form__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;
}

/* Main Services Section */
.brands-form__main-services {
    margin-bottom: 30px;
}

.brands-form__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 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;
}

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

.brands-form__main-options {
    display: flex;
    gap: 10px;
}

.main-option {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    line-height: 120%;
    letter-spacing: -0.02em;
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-option:hover:not(.main-option--active) {
    background-color: rgba(255, 255, 255, 0.15);
}

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

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

.brands-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 */
.brands-form__discount {
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

.brands-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 */
.brands-form__contact-info {
    background-color: #0B0D10;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

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

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

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

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

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

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

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

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

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

/* Submit Button */
.brands-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;
}

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

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

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

/* Animations */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-340px * 4 - 40px * 4));
    }
}

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

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

.brands-form__left {
    animation: slideInFromLeft 0.8s ease-out;
}

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

/* Hover effects */
.brand-card {
    position: relative;
    overflow: hidden;
}

.brand-card::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;
}

.brand-card:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 1419px) and (min-width: 1200px) {
    .brands-form__content {
        gap: 60px;
    }

    .brands-form__form-container {
        width: 600px;
    }
}

@media (max-width: 1199px) {
    .brands-form__content {
        flex-direction: column;
        gap: 50px;
        align-items: flex-start;
    }

    .brands-form__right {
        justify-content: flex-start;
        width: 100%;
    }

    .brands-form__form-container {
        width: 100%;
        max-width: 720px;
    }

    .brands-form__title {
        font-size: 48px;
        margin-bottom: 40px;
    }
}

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

    .brands-form__content {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

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

    .brands-form__right {
        justify-content: flex-start;
        width: 100%;
    }

    .brands-form__form-container {
        width: 100%;
        max-width: 100%;
    }

    .brands-form__title {
        font-size: 32px;
        margin-bottom: 30px;
        line-height: 110%;
    }

    .brands-marquee {
        padding: 30px 0;
    }

    .brands-marquee__track {
        gap: 20px;
        width: calc(280px * 8 + 20px * 8);
    }

    .brand-card {
        width: 280px;
        height: 60px;
    }

    .brand-card__logo {
        max-width: 240px;
        max-height: 40px;
    }

    .brands-form__form-title {
        font-size: 28px;
    }

    .brands-form__form-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .brands-form__main-options {
        flex-direction: column;
        gap: 12px;
    }

    .main-option {
        height: 60px;
        font-size: 16px;
    }

    .brands-form__main-label,
    .brands-form__additional-label {
        padding: 15px 30px;
        font-size: 16px;
    }

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

    .additional-option {
        font-size: 16px;
        padding: 16px 24px;
        min-width: 180px;
    }

    .brands-form__input {
        height: 56px;
        font-size: 15px;
    }

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

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

    .brands-form__content {
        gap: 30px;
        padding: 0 15px;
    }

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

    .brands-marquee {
        padding: 25px 0;
    }

    .brands-marquee__track {
        gap: 15px;
        width: calc(240px * 8 + 15px * 8);
    }

    .brand-card {
        width: 240px;
        height: 50px;
    }

    .brand-card__logo {
        max-width: 200px;
        max-height: 35px;
    }

    .brands-form__form-title {
        font-size: 24px;
    }

    .brands-form__form-description {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .brands-form__main-options {
        gap: 8px;
    }

    .main-option {
        height: 50px;
        font-size: 14px;
        padding: 15px;
    }

    .brands-form__main-label,
    .brands-form__additional-label {
        padding: 12px 20px;
        font-size: 14px;
    }

    .brands-form__additional-options {
        gap: 8px;
    }

    .additional-option {
        font-size: 14px;
        padding: 14px 20px;
        min-width: 160px;
    }

    .brands-form__input {
        height: 52px;
        font-size: 14px;
        padding: 0 16px;
    }

    .brands-form__submit {
        height: 52px;
        font-size: 14px;
    }
}

/* Antichrome Form Styles */
.antichrome-form__form {
    width: 720px;
}

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

.antichrome-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 */
.antichrome-form__discount {
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

.antichrome-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 */
.antichrome-form__contact-info {
    background-color: #0B0D10;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

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

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

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

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

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

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

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

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

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

/* Submit Button */
.antichrome-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;
}

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

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

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

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

.antichrome-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%;
}

/* Responsive Design for Antichrome Form */
@media (max-width: 1419px) and (min-width: 1200px) {
    .antichrome-form__content {
        gap: 60px;
    }

    .antichrome-form__form {
        width: 600px;
    }
}

@media (max-width: 1199px) {
    .antichrome-form__content {
        flex-direction: column;
        gap: 50px;
        align-items: flex-start;
    }

    .antichrome-form__right {
        justify-content: flex-start;
        width: 100%;
    }

    .antichrome-form__form {
        width: 100%;
        max-width: 720px;
    }
}

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

    .antichrome-form__content {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

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

    .antichrome-form__right {
        justify-content: flex-start;
        width: 100%;
    }

    .antichrome-form__form {
        width: 100%;
        max-width: 100%;
    }

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

    .antichrome-form__description {
        font-size: 16px;
        margin-bottom: 30px;
    }

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

    .additional-option {
        font-size: 16px;
        padding: 16px 24px;
        min-width: 180px;
    }

    .antichrome-form__input {
        height: 56px;
        font-size: 15px;
    }

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

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

    .antichrome-form__content {
        gap: 30px;
        padding: 0 15px;
    }

    .antichrome-form__title {
        font-size: 24px;
    }

    .antichrome-form__description {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .antichrome-form__additional-options {
        gap: 8px;
    }

    .additional-option {
        font-size: 14px;
        padding: 14px 20px;
        min-width: 160px;
    }

    .antichrome-form__input {
        height: 52px;
        font-size: 14px;
        padding: 0 16px;
    }

    .antichrome-form__submit {
        height: 52px;
        font-size: 14px;
    }
}

/* 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(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    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(0, 0, 0, 0.1);
}

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

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

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

/* Advantages Cards Section */
.advantages-section {
    max-width: 1380px;
    margin: 0 auto;
    padding: 20px 0px;
    border-radius: 10px;
    background-color: #0B0D10;
}

.advantages-cards {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 0px;
    display: flex;
    gap: 20px;
    align-items: stretch;
    width: 100%;
}

.advantage-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.advantage-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.advantage-card__icon {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.advantage-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.advantage-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 130%;
    color: #ffffff;
    margin: 0;
}

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

@keyframes advantageCardFadeIn {
    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;
}

.advantage-card {
    animation: advantageCardFadeIn 0.6s ease-out;
}

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

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

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

/* Responsive Design for Cards */
@media (max-width: 1199px) {
    .statistics-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .advantages-cards {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }

    .advantage-card__icon {
        width: 180px;
        height: 180px;
    }

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


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

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

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

    .advantages-cards {
        gap: 15px;
        padding: 15px;
    }

    .advantage-card {
        padding: 30px 20px;
    }

    .advantage-card__icon {
        width: 200px;
        height: 200px;
        margin-bottom: 20px;
    }

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

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

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

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

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

    .stat-card {
        padding: 15px;
    }

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

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

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

    .advantage-card {
        padding: 25px 15px;
    }

    .advantage-card__icon {
        width: 150px;
        height: 150px;
        margin-bottom: 15px;
    }

    .advantage-card__title {
        font-size: 16px;
        line-height: 140%;
    }
}

/* Paint or Film Section */
.paint-film-section {
    padding-top: 200px;
    background-color: #ffffff;
}

.paint-film__title {
    font-family: 'Inter', sans-serif;
    font-size: 54px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.05em;
    color: #000000;
    margin: 0 0 60px 0;
    text-align: left;
    max-width: 650px;
}

.paint-film__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1420px;
    margin: 0 auto;
}

.paint-film__option {
    border-radius: 10px;
    padding: 20px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.paint-film__option--paint {
    background: linear-gradient(135deg, #1458E4 0%, #0f47bd 100%);
    color: #ffffff;
}

.paint-film__option--film {
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    color: #000000;
}

/* Label with background like in form */
.paint-film__label-wrapper {
    margin-bottom: 30px;
    align-self: flex-start;
}

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

.paint-film__option--paint .paint-film__label {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
}

.paint-film__items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 475px;
}

.paint-film__item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.paint-film__icon-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.paint-film__icon-wrapper--cross {
    background-color: #ff4444;
}

.paint-film__text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    flex: 1;
}

.paint-film__check-icon {
    color: #ffffff;
}

.paint-film__cross-icon {
    color: #ffffff;
}

/* Scale bars at bottom */
.paint-film__scale {
    margin-top: 30px;
    height: 8px;
}

.paint-film__scale-bar {
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.paint-film__scale-bar--active {
    background: linear-gradient(90deg, #000000 80%, rgba(0, 0, 0, 0.2) 80%);
}

.paint-film__option--film .paint-film__scale-bar {
    background: linear-gradient(90deg, #000000 15%, rgba(0, 0, 0, 0.2) 15%);
}

/* Animations for Paint/Film Section */
@keyframes paintFilmSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.paint-film__option--paint {
    animation: paintFilmSlideIn 0.8s ease-out;
}

.paint-film__option--film {
    animation: paintFilmSlideIn 0.8s ease-out 0.2s both;
}

/* Hover effects */
.paint-film__option {
    transition: all 0.3s ease;
    cursor: pointer;
}

.paint-film__option:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Paint/Film Section */
@media (max-width: 1199px) {
    .paint-film__content {
        gap: 15px;
    }

    .paint-film__option {
        padding: 18px;
    }
}

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

    .paint-film__title {
        font-size: 48px;
        margin-bottom: 50px;
    }

    .paint-film__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .paint-film__option {
        padding: 20px;
    }
}

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

    .paint-film__title {
        font-size: 36px;
        margin-bottom: 40px;
        line-height: 110%;
    }

    .paint-film__content {
        gap: 25px;
    }

    .paint-film__option {
        padding: 18px;
    }

    .paint-film__label {
        padding: 15px 30px;
        font-size: 16px;
    }

    .paint-film__items {
        gap: 18px;
    }

    .paint-film__icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .paint-film__text {
        font-size: 15px;
    }
}

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

    .paint-film__title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .paint-film__option {
        padding: 16px;
    }

    .paint-film__label {
        padding: 12px 20px;
        font-size: 14px;
    }

    .paint-film__items {
        gap: 16px;
    }

    .paint-film__icon-wrapper {
        width: 35px;
        height: 35px;
    }

    .paint-film__text {
        font-size: 14px;
        line-height: 130%;
    }
}

@media (max-width: 360px) {
    .paint-film__title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .paint-film__option {
        padding: 14px;
    }

    .paint-film__label {
        padding: 10px 16px;
        font-size: 13px;
    }

    .paint-film__items {
        gap: 14px;
    }

    .paint-film__icon-wrapper {
        width: 30px;
        height: 30px;
    }

    .paint-film__text {
        font-size: 13px;
    }
}

/* Quote Section */
.quote-section {
    padding-top: 200px;
    background-color: #ffffff;
}

.quote {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.quote__text {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 140%;
    color: #000000;
    margin-bottom: 40px;
    position: relative;
}

.quote__text::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -30px;
    font-size: 60px;
    color: rgba(20, 88, 228, 0.3);
    font-family: serif;
}

.quote__text::after {
    content: '"';
    position: absolute;
    bottom: -40px;
    right: -30px;
    font-size: 60px;
    color: rgba(20, 88, 228, 0.3);
    font-family: serif;
}

.quote__author {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #6B7280;
    position: relative;
}

.quote__author::before {
    content: '—';
    margin-right: 8px;
    color: #1458E4;
}

/* Анимации для цитаты */
@keyframes quoteFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote {
    animation: quoteFadeIn 0.8s ease-out;
}

/* Portfolio Result Section */
.portfolio-result-section {
    padding-top: 200px;
    background-color: #ffffff;
}

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

.portfolio-result__content {
    text-align: left;
    margin-bottom: 50px;
}

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

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

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

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

.portfolio-result__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;
}

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

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

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

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

.portfolio-result__services {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.portfolio-result__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;
}

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

.portfolio-result__thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

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

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

.portfolio-result__thumbnail.active {
    border-color: #1458E4;
    transform: scale(1.05);
}

.portfolio-result__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-result__navigation {
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

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

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

.portfolio-result__content {
    animation: portfolioResultFadeIn 0.8s ease-out;
}

.portfolio-result__main {
    animation: portfolioResultFadeIn 0.8s ease-out 0.2s both;
}

.portfolio-result__thumbnails {
    animation: thumbnailSlideIn 0.8s ease-out 0.4s both;
}

.portfolio-result__navigation {
    animation: portfolioResultFadeIn 0.8s ease-out 0.6s both;
}

/* Hover эффекты */
.portfolio-result__image {
    transition: all 0.3s ease;
}

.portfolio-result__image:hover {
    transform: scale(1.02);
}

/* Дополнительные стили для лучшего внешнего вида */
.portfolio-result__main {
    border-radius: 10px;
    overflow: hidden;
}

.portfolio-result__info {
    position: relative;
}

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

/* Responsive Design for Portfolio */

@media (max-width: 1380px) {
    .portfolio-result__image {
        width: 650px;
        height: 400px;
    }
}

@media (max-width: 1199px) {
    .portfolio-result__main {
        gap: 15px;
    }

    .portfolio-result__content-wrapper {
        gap: 15px;
        padding: 18px;
    }

    .portfolio-result__image {
        width: 700px;
        height: 530px;
    }

    .portfolio-result__info {
        padding: 18px;
    }

    .portfolio-result__car-title {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .portfolio-result__service-item {
        font-size: 16px;
        padding: 10px 16px;
    }
}

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


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

    .portfolio-result__content {
        margin-bottom: 60px;
    }

    .portfolio-result__title {
        font-size: 48px;
        margin-bottom: 25px;
    }

    .portfolio-result__description {
        font-size: 16px;
    }

    .portfolio-result__main {
        gap: 20px;
    }

    .portfolio-result__content-wrapper {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .portfolio-result__image {
        width: 650px;
        height: 400px;
    }

    .portfolio-result__info {
        order: 2;
        width: 100%;
        padding: 20px;
    }

    .portfolio-result__car-title {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .portfolio-result__service-item {
        font-size: 18px;
        padding: 10px 14px;
    }
}

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

@media (max-width: 768px) {
    .portfolio-result__image {
        width: 400px;
        height: 250px;
        border-radius: 8px;
    }

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

    .portfolio-result__car-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .portfolio-result__service-item {
        font-size: 16px;
        padding: 10px 14px;
    }
}

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

    .portfolio-result__content {
        margin-bottom: 40px;
    }

    .portfolio-result__title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .portfolio-result__description {
        font-size: 14px;
        line-height: 125%;
    }

    .portfolio-result__gallery {
        gap: 12px;
    }

    .portfolio-result__main {
        gap: 12px;
    }

    .portfolio-result__content-wrapper {
        padding: 14px;
        gap: 14px;
    }

    .portfolio-result__image {
        width: 270px;
        height: 200px;
    }

    .portfolio-result__info {
        padding: 14px;
        border-radius: 6px;
    }

    .portfolio-result__car-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .portfolio-result__services {
        gap: 8px;
    }

    .portfolio-result__service-item {
        font-size: 13px;
        padding: 8px 10px;
        border-radius: 4px;
    }

    .portfolio-result__thumbnails {
        gap: 6px;
        margin-top: 14px;
    }

    .portfolio-result__thumbnail {
        width: 70px;
        height: 56px;
        border-radius: 4px;
        border-width: 2px;
    }


    .portfolio-result__nav-btn img {
        width: 14px;
        height: 14px;
    }
}

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

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

    .portfolio-result__description {
        font-size: 13px;
    }

    .portfolio-result__content-wrapper {
        padding: 12px;
        gap: 12px;
    }


    .portfolio-result__image {
        width: 200px;
        height: 140px;
    }

    .portfolio-result__info {
        padding: 12px;
        border-radius: 5px;
    }

    .portfolio-result__car-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .portfolio-result__service-item {
        font-size: 12px;
        padding: 6px 8px;
    }

    .portfolio-result__thumbnails {
        gap: 4px;
        margin-top: 12px;
    }

    .portfolio-result__thumbnail {
        width: 60px;
        height: 48px;
        border-radius: 3px;
    }

}

/* 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;
    }
}

@media (max-width: 992px) {
    .brands-section{
        padding-top: 100px;
    }
    
    .anti-section{
        padding-top: 100px;
    }
    .statistics-section{
        padding-top: 100px;
    }
    .antichrome-form-section{
        padding-top: 100px;
    }
    .paint-film-section{
        padding-top: 100px;
        padding-bottom: 0px;
    }
    .quote-section{
        padding-top: 100px;
    }
    .portfolio-result-section{
        padding-top: 100px;
        padding-bottom: 0px;
    }
    .faq-section{
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 768px) {
    .antichrome-hero{
        padding-bottom: 0px;
    }
    .antichrome-hero__left{
        width: 100%;
    }
    .brands-section{
        padding-top: 100px;
    }

    .brands-section__title{
        font-size: 28px;
        max-width: 400px;
    }
    .brands-section__title{
        margin-bottom: 50px;
    }
    .anti-section{
        padding-top: 100px;
    }
    .statistics-section{
        padding-top: 100px;
    }
    .antichrome-form-section{
        padding-top: 100px;
        padding-bottom: 0px;
    }
    .paint-film-section{
        padding-top: 100px;
        padding-bottom: 0px;
    }
    .quote-section{
        padding-top: 100px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .quote__text{
        font-size: 22px;
    }
    .portfolio-result-section{
        padding-top: 100px;
        padding-bottom: 0px;
    }
    .portfolio-result__title{
        font-size: 28px;
        max-width: 400px;
    }
    .faq-section{
        padding-top: 100px;
        padding-bottom: 100px;
    }
}


@media (max-width: 468px) {
    .brands-section__title{
        font-size: 24px;
    }
    .quote__text{
        font-size: 18px;
    }
    .quote__author{
        font-size: 16px;
    }
    .portfolio-result__title{
        font-size: 24px;
    }
    .paint-film__title{
        font-size: 24px;
    }
}