* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body.commercial-page {
    margin: 0;
    background: #eef2f7;
    color: #1f2937;
    font-family: 'Inter', 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.commercial-shell {
    width: min(1080px, 100%);
    min-height: 100dvh;
    margin: 0 auto;
    padding: clamp(18px, 3vw, 32px);
}

.commercial-close {
    position: fixed;
    top: max(16px, env(safe-area-inset-top));
    right: max(16px, env(safe-area-inset-right));
    z-index: 10;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(215, 222, 234, 0.95);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #1f2937;
    box-shadow: 0 16px 36px rgba(24, 33, 51, 0.16);
    cursor: pointer;
}

.commercial-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
    gap: clamp(22px, 4vw, 46px);
    align-items: center;
    min-height: calc(100dvh - clamp(36px, 6vw, 64px));
}

.commercial-media {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(215, 222, 234, 0.95);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(24, 33, 51, 0.14);
}

.commercial-gallery-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.commercial-gallery-track::-webkit-scrollbar {
    display: none;
}

.commercial-gallery-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
}

.commercial-gallery-slide img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.commercial-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(215, 222, 234, 0.95);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #1f2937;
    box-shadow: 0 12px 26px rgba(24, 33, 51, 0.18);
    cursor: pointer;
    transform: translateY(-50%);
}

.commercial-gallery-nav--prev {
    left: 14px;
}

.commercial-gallery-nav--next {
    right: 14px;
}

.commercial-gallery-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 4;
    display: flex;
    gap: 7px;
    transform: translateX(-50%);
}

.commercial-gallery-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 1px 4px rgba(24, 33, 51, 0.22);
    cursor: pointer;
}

.commercial-gallery-dot.is-active {
    width: 20px;
    background: #ffffff;
}

.commercial-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: calc(100% - 36px);
    padding: 10px 14px;
    border-radius: 999px;
    background: #41cf8a;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 12px 26px rgba(23, 143, 88, 0.24);
}

.commercial-content {
    display: grid;
    gap: 16px;
}

.commercial-eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 8px 13px;
    border-radius: 999px;
    background: #ffffff;
    color: #263247;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.commercial-content h1 {
    margin: 0;
    color: #182133;
    font-family: 'Archivo', 'Inter', sans-serif;
    font-size: clamp(2rem, 4.6vw, 4.2rem);
    font-weight: 950;
    line-height: 0.98;
    letter-spacing: 0;
}

.commercial-content p {
    margin: 0;
    color: #5f6978;
    font-size: clamp(0.98rem, 1.3vw, 1.12rem);
    font-weight: 650;
    line-height: 1.55;
}

.commercial-summary {
    color: #323b4b !important;
    font-size: clamp(1.1rem, 1.6vw, 1.28rem) !important;
    font-weight: 780 !important;
}

.commercial-list {
    display: grid;
    gap: 10px;
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
}

.commercial-list li {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: #384355;
    font-size: 0.98rem;
    font-weight: 760;
    line-height: 1.35;
}

.commercial-list i {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 999px;
    background: #41cf8a;
    color: #ffffff;
    font-size: 0.8rem;
}

.commercial-action {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 8px;
    padding: 13px 18px;
    border-radius: 999px;
    background: #155bd6;
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(21, 91, 214, 0.22);
}

@media (max-width: 760px) {
    .commercial-shell {
        padding: 72px 16px 28px;
    }

    .commercial-close {
        width: 42px;
        height: 42px;
    }

    .commercial-hero {
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
        align-items: start;
        min-height: 0;
    }

    .commercial-media {
        border-radius: 20px;
    }

    .commercial-media img {
        aspect-ratio: 16 / 10;
    }

    .commercial-gallery-slide img {
        aspect-ratio: 16 / 10;
    }

    .commercial-gallery-nav {
        width: 38px;
        height: 38px;
    }

    .commercial-badge {
        left: 14px;
        bottom: 14px;
        padding: 9px 12px;
        font-size: 0.72rem;
    }

    .commercial-content {
        gap: 13px;
    }

    .commercial-content h1 {
        font-size: clamp(2rem, 11vw, 2.8rem);
    }

    .commercial-list li {
        font-size: 0.92rem;
    }
}
