:root {
    /* фирменные цвета */
    --color-primary: #82599F;
    --color-primary-hover: #6F4C8A;
    --color-primary-light: #F3EEF8;
    --color-accent: #9A3EFF;
    --color-accent-hover: #7E2ED6;
    --color-accent-light: #EFE1FF;

    /* нейтральные цвета */
    --color-white: #FFFFFF;
    --color-background: #F7F7F7;
    --color-surface: #FFFFFF;
    --color-section: #F7F5FA;
    --color-header: #F7F7F7;
    --color-text: #1A1A1A;
    --color-text-secondary: #6B6B6B;
    --color-border: #E5E3EA;

    /* размеры */
    --container-width: 1200px;
    --header-height: 72px;
    --radius: 16px;
    --side-padding: 20px;

    --blob-primary: #9A3EFF;
    --blob-secondary: #C2ABFF;
    --blob-light: #E7DCFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Manrope", Arial, sans-serif;
    background: var(--color-white);
    min-height: 100vh;
    color: var(--color-text);
}

img {
    display: block;
    max-width: 100%;
}

button {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

/* HEADER */

.header {
    position: sticky;
    top: 0;
    background: var(--color-header);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
}

.header__inner {
    max-width: var(--container-width);
    min-height: var(--header-height);
    margin: 0 auto;
    padding: 0 var(--side-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header__logo {
    display: flex;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
}

.header__logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__link {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    transition: color .2s;
}

.nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width .2s;
}

.nav__link:hover::after {
    width: 100%;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header__instagram {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__instagram img {
    width: 26px;
    height: 26px;
    opacity: .4;
    transition: opacity .2s;
}

.header__instagram:hover img {
    opacity: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.btn--primary {
    position: relative;
    overflow: hidden;
    background: var(--color-accent);
    color: var(--color-white);
}

.btn--primary span {
    position: relative;
    z-index: 2;
}

.btn--primary::before,
.btn--primary::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    pointer-events: none;
    z-index: 1;
}

.btn--primary::before {
    background: var(--color-accent-hover);
}

.btn--primary::after {
    background: var(--color-accent);
}

.btn--primary.is-darkening::before {
    animation: btnDarken .2s linear forwards;
}

.btn--primary.is-lightening::after {
    animation: btnLighten .2s linear forwards;
}

@keyframes btnDarken {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes btnLighten {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.btn--primary.is-dark {
    background: var(--color-accent-hover);
}

.btn--primary.is-light {
    background: var(--color-accent);
}

/* ABOUT AGENCY */

.agency-story {
    max-width: 1200px;
    margin: 60px auto;
    padding: 80px 20px;
    position: relative;
    box-sizing: border-box;
    scroll-margin-top: 140px;
}

.agency-story__timeline {
    position: relative;
    height: 320px;
    transition: opacity .4s ease, transform .4s ease;
}

.agency-story__timeline.is-hidden {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.agency-story__line {
    position: absolute;
    top: 200px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-primary);
}

.agency-story__active-dot {
    position: absolute;
    top: 202px;
    left: 15%;
    width: 22px;
    height: 22px;
    background: var(--color-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: left .6s ease;
    z-index: 10;
    box-shadow: 0 0 0 6px rgba(154, 62, 255, .12);
}

.agency-story__step {
    position: absolute;
    top: 0;
    width: 320px;
    transform: translateX(-50%);
    text-align: center;
}

.agency-story__step--1 {
    left: 15%;
}

.agency-story__step--2 {
    left: 50%;
}

.agency-story__step--3 {
    left: 85%;
}

.agency-story__card {
    padding: 24px;
    border: 2px solid var(--color-primary);
    border-radius: 20px;
    background: var(--color-surface);
    transform: translateY(-50px);
    opacity: 0;
    visibility: hidden;
    filter: blur(4px);
    transition: opacity .35s ease,
    transform .35s ease,
    filter .35s ease,
    visibility .35s ease;
}

.agency-story__card.is-visible {
    opacity: 1;
    visibility: visible;
    filter: blur(0);
    transform: translateY(-50px) translateY(0);
}

.agency-story__text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
}

.agency-story__year {
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translate(-50%, 28px) translateY(6px);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease,
    transform .25s ease,
    visibility .25s ease;
}

.agency-story__year.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 28px) translateY(0);
}

.agency-story__controls {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 16px;
    transition: opacity .3s ease;
}

.agency-story__controls.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.agency-story__btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-white);
    cursor: pointer;
    transition: box-shadow .2s ease,
    transform .08s ease,
    opacity .2s ease;
}

.agency-story__btn:hover {
    box-shadow: 0 0 0 6px rgba(154, 62, 255, .12);
}

.agency-story__btn:active {
    transform: translateY(1px);
}

.agency-story__btn:disabled {
    opacity: .35;
    cursor: default;
    box-shadow: none;
}

.agency-story__btn.is-final {
    width: auto;
    padding: 0 18px;
    border-radius: 26px;
    font-size: 16px;
    font-weight: 600;
}

.agency-story__btn.is-final svg {
    margin-left: 10px;
}

.agency-story__final {
    display: none;
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding: 56px 40px;
    text-align: center;
    border-radius: 32px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f1ff 100%);
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .4s ease, transform .4s ease;
}

.agency-story__final.is-visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.agency-story__final-year {
    display: block;
    margin-bottom: 12px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-primary);
}

.agency-story__final-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text);
}

.agency-story__back {
    margin-top: 32px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary);
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity .2s ease;
}

.agency-story__back:hover {
    opacity: .7;
}

.agency-story__final > * {
    position: relative;
    z-index: 1;
}

.agency-story__blob {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    animation: agencyBlobFloat 13s ease-in-out infinite;
    will-change: transform, border-radius;
    filter: blur(4px);
}

.agency-story__blob--1 {
    width: 190px;
    height: 170px;
    top: -55px;
    left: -75px;
    background: #C2ABFF;
    opacity: .42;
    border-radius: 58% 42% 46% 54% / 44% 52% 48% 56%;
    animation-delay: 0s;
}

.agency-story__blob--2 {
    width: 130px;
    height: 115px;
    top: 26px;
    right: -28px;
    background: #9A3EFF;
    opacity: .24;
    border-radius: 44% 56% 63% 37% / 45% 41% 59% 55%;
    animation-delay: 1.3s;
}

.agency-story__blob--3 {
    width: 96px;
    height: 84px;
    bottom: 18px;
    left: 8%;
    background: #E7DCFF;
    opacity: .72;
    border-radius: 60% 40% 52% 48% / 42% 58% 46% 54%;
    animation-delay: 2.1s;
}

.agency-story__blob--4 {
    width: 150px;
    height: 128px;
    bottom: -48px;
    right: 10%;
    background: #C2ABFF;
    opacity: .34;
    border-radius: 49% 51% 39% 61% / 55% 39% 61% 45%;
    animation-delay: .7s;
}

@keyframes agencyBlobFloat {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(16px, -20px) rotate(3deg) scale(1.05);
    }
    50% {
        transform: translate(-14px, -30px) rotate(-3deg) scale(1.08);
    }
    75% {
        transform: translate(18px, -14px) rotate(2deg) scale(1.04);
    }
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

/* SERVICES */

.services {
    padding: 90px 20px;
}

.services__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.services__title {
    margin-bottom: 36px;
    font-size: 34px;
    font-weight: 600;
    color: var(--color-text);
}

.services__grid {
    display: grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap: 20px 40px;
    align-items: start;
}

.service-card {
    background: var(--blob-light);
    border-radius: 20px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: background .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
    align-self: start;
}

.service-card:not(.is-open):hover {
    background: var(--blob-secondary);
    box-shadow: 0 6px 18px rgba(130, 89, 159, .08);
}

.service-card__header {
    width: 100%;
    min-height: 90px;
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.service-card__title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--color-text);
}

.service-card__icon {
    flex-shrink: 0;
    font-size: 48px;
    font-weight: lighter;
    line-height: .6;
    color: var(--color-text);
    transition: transform .25s ease;
}

.service-card.is-open .service-card__icon {
    transform: rotate(45deg);
}

.service-card:not(.is-open):hover .service-card__icon {
    transform: scale(1.2);
}

.service-card.is-open:hover .service-card__icon {
    transform: rotate(45deg) scale(1.2);
}

.service-card__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .32s ease;
}

.service-card__content p {
    padding: 0 24px 26px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

@media (max-width: 900px) {
    .services__grid {
        grid-template-columns:1fr;
    }

    .service-card__title {
        font-size: 18px;
    }
}

/* CASES */

.cases {
    padding: 100px 20px;
}

.cases__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.cases__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.cases__title {
    font-size: 34px;
    font-weight: 600;
}

.cases__nav {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.cases__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.cases__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cases__logo {
    max-width: 110px;
    max-height: 40px;
    object-fit: contain;
    display: block;
    transition: opacity .2s, transform .2s;
}

.cases__btn:hover .cases__logo {
    opacity: 1;
}

.cases__btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.cases__btn.is-active::after {
    transform: scaleX(1);
}

.cases__body {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 48px;
    align-items: start;
}

.case-item {
    display: none;
}

.case-item.is-active {
    display: block;
    animation: fade .3s ease;
}

.case-item__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}

.case-item__text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 18px;
}

.case-item__results-title {
    font-weight: 600;
    margin-bottom: 12px;
}

.case-item ul {
    padding-left: 18px;
    display: grid;
    gap: 10px;
}

/* MEDIA */

.cases__media {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cases__video {
    width: 100%;
    height: 320px;
    overflow: hidden;
    display: none;
    align-items: start;
    justify-content: center;
    font-size: 20px;
    color: var(--color-text-secondary);
}

.cases__video.is-active {
    display: flex;
}

.cases__video-player {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.cases__dots {
    margin-top: 16px;
    display: flex;
    gap: 10px;
}

.cases__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(130, 89, 159, .25);
    cursor: pointer;
}

.cases__dot.is-active {
    background: var(--color-primary);
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .cases__body {
        grid-template-columns:1fr;
    }
}

/* BRANDS */

.brands {
    padding: 100px 0;
    overflow: hidden;
}

.brands__head {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.brands__label {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.brands__title {
    margin-bottom: 14px;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-text);
}

.brands__subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

.brands__slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 18px;
}

.brands__track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
}

.brands__track--right {
    animation: brandsMoveRight 18s linear infinite;
}

.brands__track--left {
    animation: brandsMoveLeft 20s linear infinite;
}

.brands__track--slow {
    animation-duration: 22s;
}

.brand-pill {
    flex: 0 0 auto;
    min-width: max-content;
    height: 64px;
    margin-right: 18px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(130, 89, 159, .12);
    box-shadow: 0 8px 22px rgba(130, 89, 159, .06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    white-space: nowrap;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.brand-pill img {
    width: auto;
    height: auto;
    max-width: 36px;
    max-height: 36px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.brand-pill img[src*="redbull"] {
    max-width: 80px;
    max-height: 80px;
}

.brand-pill img[src*="americana-group"] {
    max-width: 80px;
    max-height: 40px;
}

.brand-pill img[src*="metro"] {
    max-width: 90px;
    max-height: 40px;
}

.brand-pill img[src*="jaguar-land-rover"] {
    max-width: 40px;
    max-height: 25px;
}

.brand-pill img[src*="unionpay"] {
    max-width: 50px;
    max-height: 30px;
}

.brand-pill img[src*="nike"] {
    max-width: 50px;
    max-height: 30px;
}

.brand-pill img[src*="frutonyanya"] {
    max-width: 70px;
    max-height: 50px;
}

.brand-pill span {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: var(--color-text);
}

/* FOOTER */

.footer {
    background: var(--color-header);
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 20px 28px;
}

.footer__grid {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer__label {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text);
}

.footer__holding {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    min-height: 220px;
    overflow: hidden;
    z-index: 1;
    width: 420px;
}

.footer__holding-content {
    position: relative;
    z-index: 1;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__holding-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    margin-bottom: 15px;
}

.footer__holding-description {
    max-width: 420px;
}

.footer__dasm-logo {
    width: 50px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

.footer__brand-logo {
    height: 30px;
    width: auto;
    display: block;
    margin-bottom: 5px;
}

.footer__holding-tagline {
    font-size: 17px;
    font-weight: 500;
    color: var(--color-text);
    margin: 0;
}

.footer__holding-tagline strong,
.footer__holding-tagline b {
    font-weight: 600;
}

.footer__holding-subtext {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-muted);
    max-width: 420px;
    margin: 0;
}

.footer__socials {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 5px;
}

.footer__social {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.footer__social:hover {
    transform: scale(1.15);
}

.footer__social img {
    width: 20px;
    height: 20px;
    display: block;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    z-index: 1;
    width: 360px;
}

.footer__address {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0;
}

.footer__cta {
    margin-top: 16px;
}

.footer__cta-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 14px;
    color: var(--color-text);
}

.footer__cta-link {
    position: relative;
    display: inline-block;
    margin-top: 10px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text);
    text-decoration: none;
    transition: transform 0.2s ease;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    cursor: pointer;
    appearance: none;
}

.footer__cta-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 3px;
    background: var(--color-primary);
    transition: width 0.25s ease;
}

.footer__cta-link:hover::after {
    width: 100%;
}

.footer__cta-link:hover {
    transform: translateX(2px);
}

.footer__bottom {
    border-top: 1px solid var(--color-border);
}

.footer__copyright {
    text-align: center;
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 0;
}

.footer__phone {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition);
}

.footer__phone:hover {
    color: var(--color-accent);
}

/* MODAL */

.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition);
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(4px);
}

.modal__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 32px;
    border-radius: 24px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: 0 24px 80px var(--color-shadow);
    transform: translateY(16px);
    transition: transform var(--transition);
}

.modal.is-open .modal__content {
    transform: translateY(0);
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: var(--color-section);
    color: var(--color-text);
    font: inherit;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.modal__close:hover {
    background: var(--color-primary-light);
    border-color: rgba(130, 89, 159, 0.18);
    transform: scale(1.04);
}

.modal__close:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.modal__title {
    margin: 0 48px 24px 0;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 600;
    color: var(--color-text);
}

.modal__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal__field {
    display: block;
}

.modal__form input,
.modal__form textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-section);
    color: var(--color-text-secondary);
    font: inherit;
    font-size: 16px;
    line-height: 1.4;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.modal__form input::placeholder,
.modal__form textarea::placeholder {
    color: var(--color-text-light);
}

.modal__form input:focus,
.modal__form textarea:focus {
    outline: none;
    background: var(--color-white);
    border-color: rgba(130, 89, 159, 0.3);
    box-shadow: 0 0 0 4px rgba(130, 89, 159, 0.1);
}

.modal__form textarea {
    min-height: 132px;
    resize: vertical;
}

.modal__status {
    min-height: 20px;
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-text-muted);
    transition: opacity var(--transition);
}

.modal__status--success {
    color: #0A8F4D;
    background: rgba(10, 143, 77, 0.08);
    border: 1px solid rgba(10, 143, 77, 0.18);
    padding: 10px 14px;
    border-radius: var(--radius);
}

.modal__status--error {
    color: #D92D20;
    background: rgba(217, 45, 32, 0.08);
    border: 1px solid rgba(217, 45, 32, 0.18);
    padding: 10px 14px;
    border-radius: var(--radius);
}

.modal__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 24px;
    margin-top: 4px;
    border: none;
    border-radius: var(--radius);
    background: var(--color-primary);
    color: var(--color-white);
    font: inherit;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
    box-shadow: 0 12px 30px rgba(130, 89, 159, 0.22);
}

.modal__submit:hover {
    background: var(--color-primary-hover);
    transform: translateY(-1px);
}

.modal__submit:active {
    transform: translateY(0);
}

.modal__submit:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

.modal__submit:disabled,
.modal__submit:disabled:hover {
    background: var(--color-border);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.body--locked {
    overflow: hidden;
}

/* RESPONSIVE */

@keyframes brandsMoveRight {
    0% {
        transform: translateX(-33.3333%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes brandsMoveLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.3333%);
    }
}

@media (max-width: 900px) {
    .brands {
        padding: 80px 16px;
    }

    .brands__title {
        font-size: 30px;
    }

    .brands__subtitle {
        font-size: 16px;
    }

    .brand-pill {
        height: 58px;
        margin-right: 14px;
        padding: 0 18px;
        gap: 12px;
        border-radius: 18px;
    }

    .brand-pill img {
        max-width: 30px;
        max-height: 30px;
    }

    .brand-pill span {
        font-size: 15px;
    }
}