/* StreetBeat Case Study Styles */

/* === BASE === */
* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    margin: 0;
    background-color: #f5f5f7;
    color: #1E1E1E;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, p {
    margin: 0;
}

/* === HERO === */
.sb-hero {
    position: relative;
    width: 100%;
    height: 95vh;
    overflow: hidden;
}

.sb-hero__bg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.sb-hero__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 80px calc((100% - 1160px) / 2);
}

.sb-hero__content .sb-feature__label {
    color: #fff;
}

.sb-hero__title {
    font-size: 96px;
    font-weight: 800 !important;
    line-height: 1;
    margin-bottom: 24px;
    color: #fff;    
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sb-hero__subtitle {
    font-size: 36px;
    font-weight: 500 !important;
    line-height: 1.2;
    color: #fff;
    max-width: 600px;
}

.sb-hero-desc {
    max-width: 1160px;
    margin: 24px auto 0;
    padding: 0 40px;
    font-size: 18px;
    line-height: 1.5;
    color: #555;
    text-align: center;
}

/* === COMMON === */
.sb-section {
    padding: 80px 40px;
    max-width: 1160px;
    margin: 0 auto;
}

.sb-section--dark {
    background: #003B45;
    max-width: 100%;
    padding: 80px 40px;
}

.sb-section--dark .sb-section__inner {
    max-width: 1160px;
    margin: 0 auto;
}

.sb-section--gray {
    background: #f5f5f7;
    max-width: 100%;
    padding: 80px 40px;
}

.sb-section--gray .sb-section__inner {
    max-width: 1160px;
    margin: 0 auto;
}

.sb-section__label {
    font-size: 14px;
    font-weight: 500 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FF7222;
    margin-bottom: 16px;
}

.sb-section__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1E1E1E;
}

.sb-section--dark .sb-section__title {
    color: #fff;
}

.sb-section__text {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
}

.sb-section--dark .sb-section__text {
    color: rgba(255, 255, 255, 0.75);
}

/* === PROBLEM / TASK / SOLUTION === */
.sb-intro {
    display: flex;
    gap: 16px;
    padding: 80px 0;
    max-width: 1160px;
    margin: 0 auto;
}

.sb-intro__col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sb-intro__col--left {
    flex: 1.2;
}

.sb-intro__col--right {
    flex: 1;
}

.sb-intro__card {
    padding: 36px;
    border-radius: 20px;
    background: #fff;
}

.sb-intro__card--problem {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sb-intro__card--image {
    padding: 0;
    overflow: hidden;
    flex: 1;
}

.sb-intro__card--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}


.sb-intro__card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.sb-intro__card-line {
    width: 40px;
    height: 3px;
    border-radius: 2px;
    flex-shrink: 0;
}

.sb-intro__card--problem .sb-intro__card-line {
    background: #FF7222;
}

.sb-intro__card--task .sb-intro__card-line {
    background: #003B45;
}

.sb-intro__card--solution .sb-intro__card-line {
    background: #74FF8F;
}

.sb-intro__card-label {
    font-size: 22px;
    font-weight: 700;
    color: #1E1E1E;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sb-intro__card-text {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
}

/* === REALIZATION === */
.sb-realization-section {
    max-width: 1160px;
    margin: 0 auto;
    padding: 80px 0 0;
}

.sb-realization-header {
    padding: 0;
}

.sb-realization-header .sb-section__title {
    margin-bottom: 32px;
}

.sb-realization-scroll {
    height: 680px;
    overflow: hidden;
    border-radius: 24px;
    background: #f0f0f3;
}

.sb-realization-scroll__track {
    display: flex;
    justify-content: center;
    gap: 32px;
    height: 100%;
    padding: 0 40px;
}

.sb-realization-scroll__col {
    width: 280px;
    flex-shrink: 0;
    will-change: transform;
    transition: transform 0.1s linear;
}

.sb-realization-scroll__col img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.sb-realization-scroll__col--down {
    transform: translateY(0);
}

.sb-realization-scroll__col--up {
    transform: translateY(-500px);
}

/* === SWIPE PREVIEW === */
.sb-swipe {
    position: relative;
    max-width: 1160px;
    margin: 0 auto;
    padding: 120px 0;
}

.sb-swipe__bg {
    position: absolute;
    top: 60px;
    bottom: 60px;
    left: 0;
    right: 0;
    z-index: 0;
    border-radius: 24px;
    overflow: hidden;
    background: #f9f9f9;
}

.sb-swipe__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.sb-swipe__blob--1 {
    width: 500px;
    height: 500px;
    background: #5BF857;
    opacity: 0.3;
    top: -100px;
    right: -80px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.sb-swipe__blob--2 {
    width: 350px;
    height: 350px;
    background: #9af3e3;
    opacity: 0.5;
    bottom: -60px;
    right: 15%;
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
}

.sb-swipe__label {
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 2;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FF7222;
}

.sb-swipe__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 0 48px 0 0;
}

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

.sb-swipe__media {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    margin-right: 60px;
}

.sb-swipe__media img {
    height: 540px;
    width: auto;
    border-radius: 20px;
}

/* Mobile swipe — hidden on desktop */
.sb-swipe__mobile {
    display: none;
}

/* === FEATURE BLOCKS === */
.sb-feature {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 40px;
    max-width: 1160px;
    margin: 0 auto;
}

.sb-feature--reverse {
    flex-direction: row-reverse;
}

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

.sb-feature__media video {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.sb-feature__media--no-shadow img {
    box-shadow: none;
}

.sb-preloader__mobile {
    display: none;
}

.sb-order__mobile {
    display: none;
}

.sb-preloader-media {
    position: relative;
    margin-left: 100px;
}

.sb-preloader-media__main {
    height: 540px;
    width: auto;
    border-radius: 20px;
}

.sb-preloader-media__icon {
    position: absolute;
    top: 52%;
    left: 27%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: auto;
    box-shadow: none;
    animation: sb-fade 2.5s ease-in-out infinite;
}

.sb-feature__content {
    flex: 1;
}

.sb-feature__label {
    font-size: 14px;
    font-weight: 500 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FF7222;
    margin-bottom: 12px;
}

.sb-feature__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #1E1E1E;
}

.sb-feature__text {
    font-size: 18px;
    line-height: 1.5;
    color: #555;
}

.sb-feature__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.sb-feature__list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.5;
    color: #444;
}

.sb-feature__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF7222;
}

/* === VITRINE GRID === */
/* === VITRINES === */
.sb-vitrine-section {
    max-width: 1160px;
    margin: 0 auto;
    padding: 80px 0;
}

.sb-vitrine-section__inner {
    border-radius: 24px;
    padding: 48px 0;
}

.sb-vitrine-section__header {
    margin-bottom: 40px;
}

.sb-vitrine-grid__col--info {
    display: flex;
    flex-direction: column;
}

.sb-vitrine-grid__col--info img {
    margin-bottom: 16px;
    border-radius: 0 !important;
    background: #fff;
    animation: sb-pulse 3s ease-in-out infinite;
}

@keyframes sb-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

@keyframes sb-fade {
    0%, 100% { opacity: 0; }
    30%, 70% { opacity: 1; }
}

.sb-vitrine-grid {
    display: grid;
    grid-template-columns: 0.8fr 0.8fr 0.8fr 1.5fr;
    gap: 16px;
    column-gap: 16px;
}

.sb-vitrine-grid__col:nth-child(4) {
    margin-left: 24px;
}

.sb-vitrine-grid__col img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.sb-vitrine-grid__text {
    font-size: 18px;
    line-height: 1.5;
    color: #555;
    margin-top: 16px;
}

/* Mobile vitrine — hidden on desktop */
.sb-vitrine-mobile {
    display: none;
}

/* === FAST ORDER === */
.sb-fast-order-section {
    max-width: 1160px;
    margin: 0 auto;
    padding: 80px 0;
}

.sb-fast-order-section__inner {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content:space-between;
}

.sb-fast-order__media {
    flex: 0 0 auto;
    position: relative;
    margin-left: 100px;
}

.sb-fast-order__media::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -80px;
    right: -80px;
    bottom: -50px;
    background: linear-gradient(160deg, rgba(91, 248, 87, 0.3) 0%, #f9f9f9 35%, #f9f9f9 65%, rgba(154, 243, 227, 0.5) 100%);
    border-radius: 24px;
    z-index: 0;
}

.sb-fast-order__gif {
    position: relative;
    z-index: 1;
    height: 540px;
    width: auto;
    border-radius: 20px;
}

.sb-fast-order__overlay {
    position: absolute;
    z-index: 2;
    bottom: 0px;
    right: 70px;
    height: 180px;
    width: auto;
    border-radius: 16px;
    animation: sb-pulse 1.5s ease-in-out infinite;
}

.sb-fast-order__content {
    flex: 1;
    max-width: 500px;
}

.sb-fast-order__mobile {
    display: none;
}

/* === SHIMMER === */
.sb-shimmer {
    max-width: 1160px;
    margin: 0 auto;
    padding: 80px 0;
}

.sb-shimmer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background: #f0f0f3;
    border-radius: 24px;
    padding: 48px;
}

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

.sb-shimmer__media {
    flex: 0 0 auto;
    margin-right: 60px;
}

.sb-shimmer__media img {
    height: 540px;
    width: auto;
    border-radius: 20px;
}

.sb-shimmer__mobile {
    display: none;
}

/* === INCREASE CARD === */
.sb-increase {
    position: relative;
    max-width: 1160px;
    margin: 0 auto;
    padding: 120px 0;
}

.sb-increase__bg {
    position: absolute;
    top: 60px;
    bottom: 60px;
    left: 0;
    right: 0;
    z-index: 0;
    border-radius: 24px;
    overflow: hidden;
    background: #f9f9f9;
}

.sb-increase__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 0 48px;
}

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

.sb-increase .sb-swipe__blob--1 {
    right: auto;
    left: -80px;
}

.sb-increase .sb-swipe__blob--2 {
    right: auto;
    left: 15%;
}

.sb-increase__mobile {
    display: none;
}

/* === CONTENT WORK === */
.sb-content-work {
    position: relative;
    max-width: 1160px;
    margin: 0 auto;
    padding: 80px 0;
    display: flex;
    align-items: flex-start;
    min-height: 600px;
}

.sb-content-work__image {
    position: absolute;
    left: -120px;
    top: 30px;
    width: 700px;
    z-index: 0;
}

.sb-content-work__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.sb-content-work__body {
    position: relative;
    z-index: 1;
    margin-left: auto;
    max-width: 500px;
}

.sb-content-work__quote {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px;
    background: #003B45;
    border-radius: 20px;
}

.sb-content-work__quote-left {
    width: 100px;
}

.sb-content-work__quote-logo {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.4;
}

.sb-content-work__quote-text {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

.sb-content-work__mobile {
    display: none;
}

/* === QUOTE === */
.sb-quote {
    background: linear-gradient(135deg, #003B45 0%, #005A6B 100%);
    border-radius: 20px;
    padding: 48px;
    margin: 48px 0;
    position: relative;
}

.sb-quote::before {
    content: '\201C';
    font-size: 80px;
    color: #FF7222;
    position: absolute;
    top: 16px;
    left: 32px;
    line-height: 1;
    font-family: Georgia, serif;
}

.sb-quote__text {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    padding-left: 24px;
}

/* === INTERNAL HEADER === */
.sb-internal-header {
    max-width: 1160px;
    margin: 0 auto;
    padding: 80px 0 0 0;
}

.sb-internal-header__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-bottom: 80px;
}

.sb-internal-header__line {
    flex: 1;
    height: 1px;
    background: #FF7222;
}

.sb-internal-header__title {
    font-size: 36px;
    font-weight: 700;
    color: #1E1E1E;
    text-align: center;
    max-width: 800px;
    line-height: 1.3;
}

/* === SEARCH BLOCK === */
.sb-search-block {
    position: relative;
    max-width: 1160px;
    margin: 0 auto;
    padding: 240px 0;
}

.sb-search-block__content {
    position: relative;
    z-index: 1;
    max-width: 550px;
}

.sb-search-block__mobile {
    display: none;
}

.sb-search-block__image {
    position: absolute;
    right: -680px;
    top: 50%;
    transform: translateY(-50%) translateX(100%);
    height: 540px;
    width: auto;
    border-radius: 20px;
    will-change: transform;
}

/* === STORES === */
.sb-stores {
    max-width: 1160px;
    margin: 0 auto;
    padding: 80px 0;
}

.sb-stores__mobile {
    display: none;
}

/* === PREPAYMENT === */
.sb-prepayment {
    position: relative;
    max-width: 1160px;
    margin: 0 auto;
    padding: 120px 0;
}

.sb-prepayment__bg {
    position: absolute;
    top: 60px;
    bottom: 60px;
    left: 0;
    right: 0;
    z-index: 0;
    border-radius: 24px;
    overflow: hidden;
    background: #f9f9f9;
}

.sb-prepayment__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.sb-prepayment__blob--1 {
    width: 500px;
    height: 500px;
    background: #5BF857;
    opacity: 0.3;
    top: -100px;
    right: -80px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.sb-prepayment__blob--2 {
    width: 350px;
    height: 350px;
    background: #9af3e3;
    opacity: 0.3;
    bottom: -60px;
    right: 15%;
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
}

.sb-prepayment__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 0 48px;
}

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

.sb-prepayment__media {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    margin-left: 60px;
}

.sb-prepayment__media img {
    height: 540px;
    width: auto;
    border-radius: 20px;
}

.sb-prepayment__mobile {
    display: none;
}

/* === PROBLEM BLOCKS === */
.sb-problem-block {
    max-width: 1160px;
    margin: 0 auto;
    padding: 80px 0;
}

.sb-problem-block__inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.sb-problem-block--reverse .sb-problem-block__inner {
    flex-direction: row-reverse;
}

.sb-problem-block__content {
    flex: 1;
    max-width: 540px;
}

.sb-problem-block__media {
    flex: 0 0 auto;
}

.sb-problem-block__media img {
    height: 480px;
    width: auto;
    border-radius: 20px;
}

/* === INTERNAL PROBLEMS GRID (legacy) === */
.sb-problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 48px;
}

.sb-problems-grid__card {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.sb-problems-grid__card:hover {
    transform: translateY(-4px);
}

.sb-problems-grid__card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1E1E1E;
}

.sb-problems-grid__card-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.sb-problems-grid__card--wide {
    grid-column: 1 / -1;
}

/* === RESULTS === */
.sb-results {
    text-align: center;
    padding: 80px 40px;
    max-width: 1160px;
    margin: 0 auto;
}

.sb-results__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1E1E1E;
}

.sb-results__subtitle {
    font-size: 18px;
    color: #777;
    margin-bottom: 48px;
}

.sb-results__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.sb-results__item {
    text-align: center;
}

.sb-results__number {
    font-size: 56px;
    font-weight: 800;
    color: #FF7222;
    line-height: 1;
    margin-bottom: 8px;
}

.sb-results__label {
    font-size: 16px;
    color: #555;
    line-height: 1.4;
}

.sb-results-section {
    max-width: 1160px;
    margin: 0 auto;
    padding: 80px 0;
}

.sb-results__image {
    max-width: 100%;
    border-radius: 20px;
}

/* === CONTACT FORM === */
.sb-contact {
    max-width: 1160px;
    margin: 0 auto;
    padding: 80px 0;
}

.sb-contact__inner {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    background: #fff;
    border-radius: 24px;
    padding: 60px;
}

.sb-contact__left {
    flex: 1;
}

.sb-contact__right {
    flex: 1;
    max-width: 400px;
}

.sb-contact__form-title {
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 600;
    color: #1e1e1e;
    margin: 0 0 16px;
    line-height: 1.2;
    letter-spacing: 0.04em;
}

.sb-contact__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sb-contact__input {
    padding: 16px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #f9f9f9;
    color: #1E1E1E;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
}

.sb-contact__input::placeholder {
    color: #999;
}

.sb-contact__input:focus {
    border-color: #FF7222;
}

.sb-contact__button {
    padding: 16px 40px;
    background: #003B45;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700 !important;
    font-family: 'Gilroy', sans-serif !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sb-contact__button:hover {
    background: #005A6B;
}

.sb-contact__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.sb-contact__checkbox input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: #FF7222;
}

.sb-contact__checkbox span {
    font-size: 13px;
    line-height: 1.4;
    color: #999;
    font-family: 'Gilroy', sans-serif;
}

.sb-contact__checkbox a {
    color: #555;
    text-decoration: underline;
}

.sb-contact__checkbox a:hover {
    color: #FF6B00;
}

/* === RESPONSIVE === */
/* === RESPONSIVE — TABLET (900px) === */
@media (max-width: 900px) {
    .sb-feature__text,
    .sb-section__text,
    .sb-intro__card-text,
    .sb-vitrine-grid__text,
    .sb-content-work__quote-text,
    .sb-feature__list li,
    .sb-contact__checkbox span {
        font-size: 16px;
    }

    /* Hero */
    .sb-hero {
        height: 70vh;
    }

    .sb-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

    .sb-hero__content {
        z-index: 2;
    }

    .sb-hero__title {
        font-size: 64px !important;
    }

    .sb-hero__subtitle {
        font-size: 24px !important;
    }

    .sb-hero__content {
        padding: 48px 32px;
    }

    /* Intro */
    .sb-intro {
        flex-direction: column;
        padding: 60px 16px 30px 16px;
    }

    .sb-intro__card--problem {
        min-height: auto;
    }

    .sb-intro__card--image {
        padding: 0;
        border-radius: 16px;
    }

    .sb-intro__card--image img {
        border-radius: 16px;
    }

    /* Realization */
    .sb-realization-section {
        padding: 60px 16px 0;
    }

    .sb-realization-scroll {
        height: 500px;
    }

    .sb-realization-scroll__col {
        width: 200px;
    }

    /* Vitrines */
    .sb-vitrine-desktop {
        display: none;
    }

    .sb-vitrine-mobile {
        display: block;
    }

    .sb-vitrine-mobile__svg {
        margin-bottom: 24px;
        background: #fff;
        text-align: center;
    }

    .sb-vitrine-mobile__svg img {
        width: 100%;
        animation: sb-pulse 3s ease-in-out infinite;
    }

    .sb-vitrine-mobile__row {
        display: flex;
        gap: 12px;
        justify-content: center;
        overflow: hidden;
    }

    .sb-vitrine-mobile__row img {
        flex: 1;
        min-width: 0;
        border-radius: 16px;
    }

    .sb-vitrine-mobile .sb-vitrine-grid__text {
        margin-top: 24px;
        text-align: left;
        font-size: 14px;
    }

    .sb-vitrine-section__inner {
        padding: 32px 16px;
    }

    /* Swipe / Prepayment */
    .sb-swipe,
    .sb-prepayment {
        padding: 80px 16px;
    }

    .sb-swipe__bg {
        border-radius: 0;
    }

    .sb-swipe__desktop {
        display: none;
    }

    .sb-swipe__mobile {
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 1;
    }

    .sb-swipe__mobile .sb-feature__title {
        margin-bottom: 0;
    }

    .sb-swipe__mobile .sb-swipe__media {
        margin: 24px 0;
    }

    .sb-swipe__mobile .sb-swipe__media img {
        height: auto;
        width: 50%;
    }

    .sb-prepayment__desktop {
        display: none;
    }

    .sb-prepayment__mobile {
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 1;
        padding: 0 16px;
    }

    .sb-prepayment__mobile .sb-feature__title {
        margin-bottom: 0;
    }

    .sb-prepayment__mobile-img {
        margin: 24px auto;
        width: 80%;
        text-align: center;
    }

    .sb-prepayment__mobile-img img {
        width: 80%;
        border-radius: 16px;
    }

    /* Feature / Preloader */
    .sb-feature {
        flex-direction: column !important;
        padding: 60px 16px;
        gap: 24px;
    }

    .sb-feature__content {
        order: 1;
    }

    .sb-feature__content .sb-feature__title {
        margin-bottom: 0;
    }

    .sb-feature__media {
        order: 2;
        max-width: 100%;
    }

    .sb-preloader__desktop {
        display: none;
    }

    .sb-preloader__mobile {
        display: flex;
        flex-direction: column;
        padding: 0 16px;
    }

    .sb-preloader__mobile .sb-feature__title {
        margin-bottom: 0;
    }

    .sb-preloader__mobile .sb-preloader-media {
        margin: 24px auto;
    }

    .sb-preloader__mobile .sb-preloader-media__main {
        height: 420px;
    }

    /* Order structure */
    .sb-order__desktop {
        display: none;
    }

    .sb-order__mobile {
        display: flex;
        flex-direction: column;
        padding: 0 16px;
    }

    .sb-order__mobile .sb-feature__title {
        margin-bottom: 0;
    }

    .sb-order__mobile-img {
        margin: 24px auto;
        width: 50%;
        text-align: center;
    }

    .sb-order__mobile-img img {
        width: 50%;
        border-radius: 16px;
    }

    /* Fast order */
    .sb-fast-order-section {
        padding: 60px 16px;
    }

    .sb-fast-order__desktop {
        display: none;
    }

    .sb-fast-order__mobile {
        display: flex;
        flex-direction: column;
    }

    .sb-fast-order__mobile .sb-fast-order__media {
        margin-top: 40px;
        margin-bottom: 70px;
    }

    .sb-fast-order__mobile .sb-feature__title {
        margin-bottom: 24px;
    }

    .sb-fast-order__mobile .sb-fast-order__media {
        margin-left: 0;
        display: flex;
        justify-content: center;
    }

    .sb-fast-order__mobile .sb-fast-order__gif {
        height: 420px;
    }

    .sb-fast-order__mobile .sb-fast-order__media::before {
        left: -16px;
        right: -16px;
    }

    .sb-fast-order__mobile .sb-fast-order__overlay {
        bottom: 40px;
        right: 40%;
        transform: none;
        height: 40px;
        border-radius: 0;
    }
    /* Shimmer */
    .sb-shimmer {
        padding: 60px 16px;
    }

    .sb-shimmer__desktop {
        display: none;
    }

    .sb-shimmer__mobile {
        display: flex;
        flex-direction: column;
        background: #f0f0f3;
        border-radius: 16px;
        padding: 32px;
    }

    .sb-shimmer__mobile .sb-feature__title {
        margin-bottom: 0;
    }

    .sb-shimmer__mobile .sb-shimmer__media {
        margin: 24px auto;
        text-align: center;
    }

    .sb-shimmer__mobile .sb-shimmer__media img {
        height: auto;
        width: 80%;
    }

    /* Increase */
    .sb-increase {
        padding: 80px 16px;
    }

    .sb-increase__desktop {
        display: none;
    }

    .sb-increase__mobile {
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 1;
    }

    .sb-increase__mobile .sb-feature__title {
        margin-bottom: 24px;
    }

    .sb-increase__mobile div {
        margin: 0 auto 24px;
        width: 80%;
    }

    /* Search */
    .sb-search-block {
        padding: 60px 16px;
    }

    .sb-search-block__desktop-only {
        display: none;
    }

    .sb-search-block__mobile {
        display: flex;
        flex-direction: column;
    }

    .sb-search-block__mobile .sb-feature__title {
        margin-bottom: 0;
    }

    .sb-search-block__mobile-img {
        margin: 24px 0;
        width: 100%;
        border-radius: 16px;
    }

    /* Stores */
    .sb-stores {
        padding: 60px 16px;
    }

    .sb-stores__desktop {
        display: none;
    }

    .sb-stores__mobile {
        display: flex;
        flex-direction: column;
    }

    .sb-stores__mobile .sb-feature__title {
        margin-bottom: 0;
    }

    .sb-stores__mobile-img {
        margin: 24px auto;
        width: 80%;
        text-align: center;
    }

    .sb-stores__mobile-img img {
        width: 80%;
        border-radius: 16px;
    }

    /* Problem blocks */
    .sb-problem-block {
        padding: 60px 16px;
    }

    .sb-problem-block__inner {
        flex-direction: column !important;
        gap: 24px;
    }

    .sb-problem-block__content .sb-feature__title {
        margin-bottom: 0;
    }

    .sb-problem-block__content {
        order: 1;
    }

    .sb-problem-block__media {
        order: 2;
    }

    .sb-problem-block__media img {
        height: 380px;
    }

    /* Content work */
    .sb-content-work {
        padding: 60px 16px;
    }

    .sb-content-work__desktop-only {
        display: none;
    }

    .sb-content-work__mobile {
        display: flex;
        flex-direction: column;
    }

    .sb-content-work__mobile .sb-feature__title {
        margin-bottom: 0;
    }

    .sb-content-work__mobile-image {
        margin: 24px 0;
    }

    .sb-content-work__mobile-image img {
        width: 100%;
        border-radius: 16px;
    }

    .sb-content-work__mobile .sb-content-work__quote {
        margin-bottom: 24px;
        margin-top: 0;
    }

    /* Internal header */
    .sb-internal-header {
        padding: 60px 16px 0;
    }

    .sb-internal-header__title {
        font-size: 28px;
    }

    /* Results */
    .sb-results-section {
        padding: 0 16px;
    }

    /* Contact */
    .sb-contact {
        padding: 60px 16px 0 16px;
    }

    .sb-contact__inner {
        flex-direction: column;
        padding: 40px 32px;
    }

    .sb-contact__right {
        max-width: 100%;
        width: 100%;
    }
}

/* === RESPONSIVE — MOBILE (768px) === */
@media (max-width: 768px) {


    .sb-hero {
        height: 60vh;
    }

    .sb-swipe__mobile .sb-swipe__media img {
        height: auto;
        width: 50%;
    }

    .sb-feature__label,
    .sb-section__label {
        font-size: 12px;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }

    .sb-order__mobile-img {
        margin: 24px auto;
        width: 60%;
        text-align: center;
    }

    .sb-order__mobile-img img {
        width: 60%;
        border-radius: 16px;
    }

    .sb-stores__mobile-img img {
        width: 50%;
        border-radius: 16px;
    }

    .sb-prepayment__mobile-img img {
        width: 50%;
        border-radius: 16px;
    }

    .sb-intro__card,
    .sb-realization-scroll,
    .sb-shimmer__inner,
    .sb-fast-order__media::before,
    .sb-increase__bg,
    .sb-prepayment__bg,
    .sb-vitrine-section__inner,
    .sb-content-work__quote,
    .sb-contact__inner,
    .sb-results__image {
        border-radius: 16px;
    }

    .sb-shimmer__inner {
        padding: 24px;
    }

    .sb-vitrine-section {
        padding: 60px 0 0 0;
    }

    .sb-hero__title {
        font-size: 48px !important;
    }

    .sb-hero__subtitle {
        font-size: 20px !important;
    }

    .sb-hero__content {
        padding: 32px 24px;
    }

    .sb-section__title,
    .sb-feature__title {
        font-size: 26px;
    }

    .sb-feature__text,
    .sb-vitrine-grid__text,
    .sb-feature__list li {
        font-size: 14px;
        text-align: left;
    }

    .sb-intro__card-text,
    .sb-content-work__quote-text {
        font-size: 14px;
        text-align: left;
    }

    .sb-swipe__media img,
    .sb-prepayment__media img,
    .sb-shimmer__media img {
        height: 360px;
    }

    .sb-realization-scroll__track {
        justify-content: center;
    }

    .sb-realization-scroll__col {
        width: 220px;
    }

    .sb-realization-scroll__col:nth-child(2),
    .sb-realization-scroll__col:nth-child(3) {
        display: none;
    }

    .sb-content-work__quote {
        padding: 24px;
    }

    .sb-contact__inner {
        padding: 32px 24px;
        gap: 24px;
    }
}

/* === RESPONSIVE — SMALL MOBILE (480px) === */
@media (max-width: 480px) {
    .sb-hero {
        height: 50vh;
    }

    .sb-hero__title {
        font-size: 36px !important;
    }

    .sb-hero__subtitle {
        font-size: 16px !important;
    }

    .sb-vitrine-mobile__row img {
        flex: 0 0 150px;
        width: 150px;
    }

    .sb-intro__card {
        padding: 24px;
    }

    .sb-intro__card--image {
        padding: 0;
    }

    .sb-intro__card-label {
        font-size: 18px;
    }

    .sb-realization-scroll {
        height: 400px;
    }

    .sb-realization-scroll__col {
        width: 130px;
    }

    .sb-fast-order__gif,
    .sb-preloader-media__main {
        height: 340px;
    }

    .sb-internal-header__inner {
        flex-direction: column;
        gap: 16px;
        padding-bottom: 24px;
    }

    .sb-internal-header__line {
        width: 60px;
    }

    .sb-internal-header__title {
        font-size: 24px;
        text-align: center;
    }
}
