/* Brand sell landing — static CSS (no Vite/Tailwind build required) */
.brand-sell-landing {
    background: radial-gradient(circle at 80% 0%, #fff4ec 0%, #efefef 42%, #eceff3 100%);
    color: #031629;
    font-family: inherit;
}

.brand-sell-landing--white {
    background: #ffffff;
}

.brand-sell-landing__inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 4rem 1.25rem;
}

@media (min-width: 1024px) {
    .brand-sell-landing__inner {
        padding: 5rem 3rem;
    }
}

.brand-sell-landing__intro {
    max-width: 48rem;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.brand-sell-landing__trust-row {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: center;
}

.brand-sell-landing__trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    border-radius: 9999px;
    background: #fff;
    border: 1px solid rgba(255, 105, 0, 0.25);
    color: #334155;
    font-size: 0.74rem;
    font-weight: 700;
}

.brand-sell-landing__kpis {
    margin-top: 1.15rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.brand-sell-landing__kpis > div {
    padding: 0.9rem 0.6rem;
    border-radius: 0.9rem;
    background: linear-gradient(145deg, #031629, #0f2740);
    color: #e2e8f0;
    box-shadow: 0 12px 25px rgba(3, 22, 41, 0.2);
}

.brand-sell-landing__kpis strong {
    display: block;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.1;
}

.brand-sell-landing__kpis span {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.68rem;
    font-weight: 600;
}

.brand-sell-landing__eyebrow {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #ff6900;
    margin: 0 0 0.75rem;
}

.brand-sell-landing__title {
    font-size: clamp(1.75rem, 4vw, 2.65rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 1rem;
    color: #031629;
}

.brand-sell-landing__lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #475569;
    margin: 0;
}

.brand-sell-landing__logo {
    margin: 1.5rem auto 0;
    height: 2.75rem;
    width: auto;
}

.brand-sell-landing__row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(100, 116, 139, 0.25);
}

.brand-sell-landing__row:first-child {
    border-top: none;
    padding-top: 0;
}

@media (min-width: 1024px) {
    .brand-sell-landing__row {
        flex-direction: row;
        gap: 4rem;
        padding: 4.5rem 0;
    }

    .brand-sell-landing__row--flip {
        flex-direction: row-reverse;
    }
}

.brand-sell-landing__copy {
    flex: 0 0 46%;
    max-width: 36rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.08);
    border-radius: 1.2rem;
    padding: 1.35rem 1.2rem 1.5rem;
    backdrop-filter: blur(3px);
}

@media (min-width: 1024px) {
    .brand-sell-landing__copy {
        padding: 1.9rem 1.8rem 2rem;
    }
}

.brand-sell-landing__media {
    flex: 0 0 54%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-sell-landing__media img {
    width: 100%;
    max-width: 40rem;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 38px 45px rgba(0, 0, 0, 0.22));
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
    transition: transform 0.45s ease;
}

.brand-sell-landing__row:hover .brand-sell-landing__media img {
    transform: scale(1.03) translateY(-4px);
}

.brand-sell-landing__media--brand-fallback img {
    max-width: 14rem;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.12));
}

.brand-sell-landing__model-label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #ff6900;
    margin: 0 0 0.5rem;
}

.brand-sell-landing__model-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 1rem;
    color: #031629;
}

.brand-sell-landing__desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 1.25rem;
}

.brand-sell-landing__desc--soft {
    margin-top: -0.1rem;
    margin-bottom: 1.1rem;
    color: #64748b;
    font-size: 0.93rem;
    border-left: 3px solid rgba(255, 105, 0, 0.4);
    padding-left: 0.75rem;
}

.brand-sell-landing__bullets {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
}

.brand-sell-landing__bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.45;
}

.brand-sell-landing__check {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 9999px;
    background: #ff6900;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.15rem;
}

.brand-sell-landing__cta,
a.brand-sell-landing__cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem !important;
    background: #ff6900 !important;
    color: #ffffff !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border: none !important;
    border-radius: 6px !important;
    box-shadow: 0 10px 25px rgba(255, 105, 0, 0.35) !important;
    -webkit-text-fill-color: #ffffff !important;
    cursor: pointer;
    transition: background 0.2s ease;
}

.brand-sell-landing__cta:hover,
a.brand-sell-landing__cta:hover {
    background: #031629 !important;
    color: #ffffff !important;
}

.brand-sell-landing__cta-note {
    margin: 0.75rem 0 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}

.brand-sell-landing__steps {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .brand-sell-landing__steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.brand-sell-landing__step-num {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: #ff6900;
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(255, 105, 0, 0.3);
}

.brand-sell-landing__benefits {
    display: grid;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

@media (min-width: 640px) {
    .brand-sell-landing__benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .brand-sell-landing__benefits {
        grid-template-columns: repeat(4, 1fr);
    }
}

.brand-sell-landing__benefit-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 105, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.brand-sell-landing__benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.brand-sell-landing__benefit-card--pop {
    animation: brandBenefitIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--bi, 0) * 0.1s);
}

@keyframes brandBenefitIn {
    from {
        opacity: 0;
        transform: translateY(22px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.brand-sell-landing__benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
    background: linear-gradient(145deg, rgba(255, 105, 0, 0.12), rgba(3, 22, 41, 0.06));
    color: #ff6900;
}

.brand-sell-landing__benefit-icon svg {
    display: block;
}

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

.brand-sell-landing__row--enter {
    animation: brandRowIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--row-i, 0) * 0.08s);
}

@media (prefers-reduced-motion: reduce) {
    .brand-sell-landing__benefit-card--pop,
    .brand-sell-landing__row--enter {
        animation: none !important;
    }

    .brand-sell-landing__media img {
        transition: none;
    }

    .brand-sell-landing__row:hover .brand-sell-landing__media img {
        transform: none;
    }
}

.brand-sell-landing__center-cta {
    text-align: center;
    margin-top: 2.5rem;
}

[dir="rtl"] .brand-sell-landing__copy {
    text-align: right;
}

[dir="rtl"] .brand-sell-landing__desc--soft {
    border-left: none;
    border-right: 3px solid rgba(255, 105, 0, 0.4);
    padding-left: 0;
    padding-right: 0.75rem;
}

[dir="rtl"] .brand-sell-landing__bullets li {
    flex-direction: row-reverse;
    text-align: right;
}

@media (max-width: 639px) {
    .brand-sell-landing__kpis {
        grid-template-columns: 1fr;
    }
}

/* --- scrolling brand strip: logos only (no cards / boxes) --- */
.brand-marquee {
    position: relative;
    margin: 0;
    padding: 0.85rem 0 1rem;
    background: transparent;
    border: none;
    overflow: hidden;
}

.brand-marquee__viewport {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        #000 4%,
        #000 96%,
        transparent 100%
    );
    mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.brand-marquee__track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 2rem;
    width: max-content;
    animation: brandMarqueeX 120s linear infinite;
}

.brand-marquee:hover .brand-marquee__track {
    animation-play-state: paused;
}

@keyframes brandMarqueeX {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

[dir="rtl"] .brand-marquee__track {
    animation-direction: reverse;
}

.brand-marquee__item {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    text-decoration: none !important;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    transition: opacity 0.2s ease, transform 0.25s ease;
}

.brand-marquee__item:hover {
    transform: scale(1.06);
    opacity: 0.92;
}

.brand-marquee__logo {
    display: block;
    height: 2.5rem;
    width: auto;
    max-width: 7rem;
    object-fit: contain;
}

.brand-marquee__fallback {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #475569;
    white-space: nowrap;
    max-width: 8rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (prefers-reduced-motion: reduce) {
    .brand-marquee__track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 0.5rem;
        width: 100%;
    }
}
