:root {
    --ink: #172033;
    --muted: #5f6878;
    --surface: #ffffff;
    --surface-soft: #f5f7fb;
    --line: #e5e9f0;
    --orange: #f26522;
    --orange-dark: #d94d0d;
    --blue: #1659a8;
    --radius-lg: 28px;
    --radius-md: 18px;
    --shadow-soft: 0 20px 60px rgba(23, 32, 51, 0.09);
}

html {
    scroll-padding-top: 86px;
}

body {
    color: var(--ink);
    background: var(--surface);
}

.container {
    width: min(1180px, calc(100% - 40px));
}

.section-title {
    color: var(--ink);
    letter-spacing: -0.035em;
}

.section-subtitle {
    color: var(--muted);
}

.text-gradient {
    background: linear-gradient(105deg, var(--orange) 0%, #d84a10 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Header uses the original wordmark without a separate flame. */
.header {
    height: 78px;
    padding: 0;
    border-bottom: 1px solid rgba(229, 233, 240, 0.85);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: none;
    backdrop-filter: blur(18px);
}

.nav {
    min-height: 78px;
}

.brand {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    text-decoration: none;
    flex-shrink: 0;
}

.brand-wordmark-img {
    position: static !important;
    display: block !important;
    width: 148px !important;
    max-width: 148px !important;
    height: auto !important;
    max-height: 34px !important;
    margin: 0 !important;
    object-fit: contain !important;
    transform: none !important;
    filter: none !important;
}

.nav-links {
    gap: 8px;
}

.nav-links a {
    padding: 10px 14px;
    color: #313b4e;
    font-weight: 600;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--orange);
}

.nav-links .nav-cta,
.mobile-header-cta {
    border-radius: 12px;
    background: var(--orange);
    color: #fff;
    box-shadow: 0 8px 20px rgba(242, 101, 34, 0.22);
}

.mobile-header-cta {
    display: none;
}

/* Hero photo dissolves into the page instead of sitting in a card */
.hero {
    min-height: 0;
    padding: 112px 0 52px;
    overflow: hidden;
    background:
        radial-gradient(circle at 7% 8%, rgba(247, 190, 67, 0.17), transparent 33%),
        linear-gradient(115deg, #fffdf9 0%, #ffffff 56%, #eef5fb 100%);
    color: var(--ink);
}

.hero::before,
.hero-glow {
    display: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0 0 0 43%;
    z-index: 0;
    display: block;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    opacity: 1;
    transform: none;
    animation: none;
    box-shadow: none;
    clip-path: none;
    background:
        linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.94) 10%, rgba(255, 255, 255, 0.34) 34%, transparent 56%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 70%, rgba(255, 255, 255, 0.48)),
        url("images/decorative/hero-arcade2.webp") center 44% / cover no-repeat;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-flex {
    position: relative;
    display: block;
    min-height: 580px;
    isolation: isolate;
}

.hero-text {
    position: relative;
    z-index: 2;
    width: 54%;
    max-width: 630px;
    padding: 50px 0 34px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 22px;
    padding: 9px 14px;
    border: 1px solid rgba(242, 101, 34, 0.18);
    border-radius: 999px;
    background: #fff5e9;
    color: #804019;
    font-size: 13px;
    font-weight: 700;
    box-shadow: none;
}

.hero-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 5px rgba(242, 101, 34, 0.12);
}

.hero-title {
    max-width: 620px;
    margin: 0 0 22px;
    color: var(--ink);
    font-size: clamp(43px, 4vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.048em;
    text-shadow: none;
}

.hero-subtitle {
    max-width: 620px;
    margin: 0 0 30px;
    color: #566173;
    font-size: 19px;
    line-height: 1.65;
    text-shadow: none;
}

.hero-buttons {
    gap: 12px;
    margin-bottom: 38px;
}

.hero .btn {
    min-height: 52px;
    padding: 15px 21px;
    border-radius: 13px;
    font-size: 15px;
}

.hero .btn-primary {
    border: 1px solid var(--orange);
    background: var(--orange);
    box-shadow: 0 12px 28px rgba(242, 101, 34, 0.25);
}

.hero .btn-primary:hover {
    background: var(--orange-dark);
}

.hero .btn-secondary {
    border: 1px solid #d6dce6;
    background: #fff;
    color: var(--ink);
    box-shadow: none;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 650px;
    margin: 0;
    padding: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
    min-width: 0;
    padding: 0 18px;
    text-align: center;
}

.stat-item:first-child {
    padding-left: 18px;
}

.stat-number {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    color: #ad4217;
    font-size: clamp(22px, 2.4vw, 31px);
    line-height: 1.15;
    white-space: nowrap;
}

.stat-label {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    min-height: 32px;
    margin-top: 7px;
    color: #697283;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.stat-divider {
    width: 1px;
    height: 52px;
    background: #dfe4ec;
}

.hero-image {
    display: none;
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.52)),
        linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.86) 14%, rgba(255, 255, 255, 0.26) 34%, transparent 52%);
    pointer-events: none;
}

.hero-arcade-img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    object-position: 50% 45%;
    filter: saturate(0.9) contrast(1.03);
}

/* Advantages: open benefit strip with the original illustrated icons */
.advantages {
    padding: 96px 0;
    background: #fff;
}

.advantages-grid {
    align-items: stretch;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 46px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.advantage-card {
    min-height: 350px;
    padding: 28px 25px 30px;
    border: 0;
    border-right: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
}

.advantage-card:last-child {
    border-right: 0;
}

.advantage-card:hover {
    transform: translateY(-3px);
    background: linear-gradient(180deg, rgba(255, 246, 237, 0.75), rgba(255, 255, 255, 0));
    box-shadow: none;
}

.advantage-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 118px;
    height: 118px;
    margin: 0 auto 18px;
    border-radius: 0;
    background: transparent;
}

.advantage-icon img {
    width: 118px;
    height: 118px;
    object-fit: contain;
}

.advantage-card h3 {
    min-height: 54px;
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 21px;
    line-height: 1.22;
}

.advantage-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.62;
}

/* Target segments: restore the photographic setting and larger arcade icons */
.segments {
    padding: 98px 0;
    position: relative;
    background-color: #1a2230 !important;
    background-image: url("images/decorative/locations-bg.webp") !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    color: #fff !important;
}

.segments::before {
    display: block;
    background:
        radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.08), transparent 46%),
        linear-gradient(105deg, rgba(10, 18, 31, 0.58), rgba(10, 18, 31, 0.36));
}

.segments .container {
    position: relative;
    z-index: 2;
    width: min(1380px, calc(100% - 40px));
    max-width: 1380px;
    padding-right: 0;
    padding-left: 0;
}

.segments .section-title {
    color: #fff !important;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.28);
}

.segments .section-subtitle {
    color: rgba(255, 255, 255, 0.82) !important;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.34);
}

.segments-grid {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    flex-wrap: initial !important;
    gap: 10px;
}

.segment-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 300px;
    padding: 25px 14px 22px;
    border: 1px solid rgba(255, 255, 255, 0.46) !important;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.07) 54%, rgba(255, 255, 255, 0.12)),
        rgba(255, 255, 255, 0.08) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.56),
        inset 0 -1px 0 rgba(255, 255, 255, 0.12),
        0 18px 42px rgba(5, 12, 24, 0.17);
    color: #fff !important;
    text-align: center;
    backdrop-filter: blur(18px) saturate(155%) contrast(1.03);
    -webkit-backdrop-filter: blur(18px) saturate(155%) contrast(1.03);
}

.segment-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.42), transparent 35%),
        linear-gradient(100deg, rgba(255, 255, 255, 0.12), transparent 48%, rgba(255, 255, 255, 0.08));
    pointer-events: none;
}

.segment-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.72) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.1) 54%, rgba(255, 255, 255, 0.16)),
        rgba(255, 255, 255, 0.11) !important;
}

.segment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 132px;
    height: 132px;
    margin: 0 auto 14px;
    border-radius: 0;
    background: transparent;
}

.segment-icon img {
    width: 132px;
    height: 132px;
    object-fit: contain;
}

.segment-card h3 {
    min-height: 46px;
    margin: 0 0 9px;
    color: #fff !important;
    font-size: 17px;
    line-height: 1.28;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.46);
}

.segment-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 13px;
    line-height: 1.42;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.38);
}

/* Catalog: restore the warm field and moving arcade-icon canvas */
.catalog {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 52%, #fed7aa 100%);
}

.catalog-bg-canvas {
    opacity: 0.54;
}

.catalog-header .section-subtitle {
    margin-top: 12px;
    color: #4f596a;
    font-size: 17px;
    font-weight: 600;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.product-card {
    height: auto !important;
    min-height: 0;
    overflow: hidden;
    border: 1px solid #e2e6ec;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(23, 32, 51, 0.09);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(23, 32, 51, 0.14);
}

.product-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.product-image {
    flex: none;
    height: 310px;
    background: #f2f3f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    position: static;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
    background: #fff;
}

.product-content::before {
    display: none;
}

.product-title {
    color: var(--ink) !important;
    font-size: 22px;
    line-height: 1.25;
}

.product-desc {
    min-height: 48px;
    color: var(--muted) !important;
    line-height: 1.55;
}

.product-footer {
    margin-top: auto;
    border-top: 1px solid var(--line);
}

.product-price {
    color: #5f6878;
}

.product-price span {
    color: var(--ink);
}

.product-specs span {
    background: #f1f4f8;
    color: #4d586a;
    backdrop-filter: none;
}

.product-footer .btn {
    pointer-events: none;
}

/* Real installations */
.locations-gallery {
    padding: 100px 0;
    background: #fff;
}

.gallery-grid {
    gap: 16px;
}

.gallery-item {
    isolation: isolate;
    border-radius: 20px;
    box-shadow: 0 12px 34px rgba(23, 32, 51, 0.1);
    transition:
        transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item::before {
    content: none;
}

.gallery-item img {
    position: relative;
    z-index: 1;
    min-height: 260px;
}

.gallery-overlay {
    z-index: 2;
    background: linear-gradient(180deg, transparent 30%, rgba(10, 17, 28, 0.88));
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.locations-gallery .gallery-item {
    background: transparent;
}

.locations-gallery .gallery-item img {
    min-height: 0;
    object-fit: cover;
    object-position: center;
    background: transparent;
}

.locations-gallery .gallery-item:hover img {
    transform: none;
}

@media (hover: hover) and (pointer: fine) {
    .locations-gallery .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 44px rgba(23, 32, 51, 0.16);
    }
}

/* Compact cookie consent; contact buttons, including Telegram, stay visible. */
.cookie-banner {
    right: 18px;
    bottom: 18px;
    left: auto;
    width: min(520px, calc(100% - 36px));
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: #172033;
    box-shadow: 0 16px 45px rgba(8, 15, 28, 0.24);
}

.cookie-content {
    gap: 18px;
    padding: 14px 16px;
}

.cookie-content p {
    font-size: 12px;
    line-height: 1.45;
}

.cookie-btn {
    padding: 9px 13px;
    border-radius: 9px;
    font-size: 12px;
}

.floating-contact {
    z-index: 9500;
}

@media (max-width: 1280px) {
    .segments-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .segment-card {
        min-height: 260px;
    }
}

@media (max-width: 1024px) {
    .hero-text {
        width: 61%;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    html {
        scroll-padding-top: 66px;
    }

    section[id] {
        scroll-margin-top: 78px;
    }

    .container {
        width: min(100% - 28px, 1180px);
    }

    .header {
        display: flex !important;
        height: 62px !important;
        padding: 0 !important;
    }

    .nav {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        width: min(100% - 28px, 1180px) !important;
        max-width: 1180px !important;
        height: 62px !important;
        min-height: 62px;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        width: 100% !important;
        padding: 0 14px !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .brand {
        position: relative;
        z-index: 10001;
    }

    .brand-wordmark-img {
        width: 118px !important;
        max-width: 118px !important;
        max-height: 26px !important;
    }

    .mobile-header-cta {
        display: none !important;
    }

    .mobile-menu-toggle {
        position: relative !important;
        right: auto !important;
        display: block !important;
        width: 44px !important;
        height: 44px !important;
        padding: 0 !important;
    }

    .mobile-menu-toggle span {
        position: absolute !important;
        left: 11px !important;
        width: 22px !important;
        height: 2px !important;
        transform-origin: center !important;
    }

    .mobile-menu-toggle span:nth-child(1) {
        top: 14px !important;
    }

    .mobile-menu-toggle span:nth-child(2) {
        top: 21px !important;
    }

    .mobile-menu-toggle span:nth-child(3) {
        top: 28px !important;
    }

    .mobile-menu-toggle.active span:nth-child(1),
    .mobile-menu-toggle.active span:nth-child(3) {
        top: 21px !important;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) !important;
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0 !important;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) !important;
    }

    .nav-links {
        top: 62px !important;
        display: none !important;
        padding: 18px 14px 22px !important;
        border-top: 1px solid var(--line);
        background: #fff !important;
        box-shadow: 0 18px 35px rgba(23, 32, 51, 0.1) !important;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links li,
    .nav-links li:last-child {
        display: block !important;
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 13px 14px;
        text-align: center;
    }

    .hero {
        min-height: 0 !important;
        padding: 88px 0 300px !important;
        background:
            radial-gradient(circle at 0 0, rgba(247, 190, 67, 0.18), transparent 35%),
            #fff !important;
    }

    .hero::after {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        inset: auto 0 0 !important;
        width: 100%;
        height: 330px;
        background:
            linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.22) 26%, transparent 58%, rgba(255, 255, 255, 0.48) 100%),
            url("images/decorative/hero-arcade2.webp") center 42% / cover no-repeat !important;
    }

    .hero-flex {
        display: flex !important;
        flex-direction: column !important;
        min-height: 0 !important;
        gap: 0 !important;
    }

    .hero-text {
        position: relative;
        z-index: 2;
        width: 100% !important;
        max-width: none !important;
        padding: 0 !important;
        text-align: left !important;
    }

    .hero-badge {
        margin: 0 0 18px !important;
        padding: 8px 12px !important;
        font-size: 11px !important;
    }

    body .hero .hero-content .hero-title {
        margin: 0 0 18px !important;
        color: var(--ink) !important;
        font-size: clamp(33px, 9.4vw, 39px) !important;
        line-height: 1.04 !important;
        text-align: left !important;
        text-shadow: none !important;
    }

    body .hero .hero-content .hero-subtitle {
        margin: 0 0 24px !important;
        color: #566173 !important;
        font-size: 16px !important;
        line-height: 1.55 !important;
        text-align: left !important;
        text-shadow: none !important;
    }

    .hero-buttons {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        margin: 0 0 30px !important;
    }

    .hero-buttons .btn {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        font-size: 14px !important;
    }

    .hero-stats {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr) 1px minmax(0, 1fr);
        align-items: center !important;
        width: 100% !important;
        gap: 0 !important;
        padding: 0 !important;
    }

    .stat-item {
        width: 100% !important;
        max-width: none !important;
        padding: 0 6px !important;
        align-items: center !important;
        text-align: center !important;
    }

    .stat-item:first-child {
        padding-left: 6px !important;
    }

    body .hero .stat-number {
        justify-content: center !important;
        width: 100% !important;
        min-height: 30px !important;
        font-size: 21px !important;
        line-height: 1.12 !important;
        white-space: nowrap !important;
    }

    .stat-label {
        justify-content: center !important;
        width: 100% !important;
        min-height: 27px !important;
        font-size: 9px !important;
        line-height: 1.35 !important;
        text-align: center !important;
    }

    .stat-divider {
        display: block !important;
        height: 46px !important;
    }

    .hero-image {
        display: none !important;
    }

    .hero-image::before {
        inset: 0 !important;
        border-radius: 0 !important;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 58%, #fff 100%),
            linear-gradient(90deg, rgba(255, 255, 255, 0.35), transparent 22%) !important;
    }

    .hero-arcade-img {
        display: block !important;
        border-radius: 0 !important;
        object-position: 50% 43% !important;
    }

    .advantages,
    .segments,
    .catalog,
    .locations-gallery {
        padding: 70px 0 !important;
    }

    body .advantages .advantages-grid,
    body .catalog .catalog-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    body.public-page .public-catalog .catalog-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    body.public-page .public-catalog .product-card {
        min-height: 0 !important;
    }

    body.public-page .public-catalog .product-card-link {
        width: 100% !important;
        height: auto !important;
    }

    body .segments .segments-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    body .catalog .product-card {
        min-height: 0 !important;
    }

    body .catalog .product-card-link {
        height: auto !important;
    }

    body .catalog .product-image {
        flex: none !important;
        height: 300px !important;
        min-height: 0 !important;
    }

    body .catalog .product-image img {
        height: 100% !important;
        object-fit: cover !important;
    }

    body .catalog .product-content {
        flex: none !important;
        padding: 20px !important;
    }

    body .catalog .product-title {
        font-size: 19px !important;
    }

    body .catalog .product-desc {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    body .catalog .product-specs span {
        padding: 5px 8px !important;
        font-size: 10px !important;
    }

    body .catalog .product-price {
        font-size: 13px !important;
    }

    body .catalog .product-price span {
        font-size: 22px !important;
    }

    body .catalog .product-card .btn {
        padding: 9px 12px !important;
        font-size: 11px !important;
    }

    body .advantages .advantage-card,
    body .advantages .advantage-card:nth-child(odd),
    body .advantages .advantage-card:nth-child(even) {
        width: 100% !important;
        max-width: none !important;
        min-height: 0 !important;
        display: grid !important;
        grid-template-columns: 76px minmax(0, 1fr) !important;
        grid-template-rows: auto 1fr;
        column-gap: 16px !important;
        margin: 0 !important;
        padding: 20px 6px !important;
        border-right: 0 !important;
        border-bottom: 1px solid var(--line) !important;
        text-align: left !important;
    }

    .advantage-card:last-child {
        border-bottom: 0 !important;
    }

    body .advantages .advantage-icon {
        grid-row: 1 / 3;
        width: 76px !important;
        height: 76px !important;
        margin: 0 !important;
    }

    body .advantages .advantage-icon img {
        width: 76px !important;
        height: 76px !important;
    }

    body .advantages .advantage-card h3 {
        min-height: 0 !important;
        margin: 2px 0 6px !important;
        font-size: 17px !important;
        line-height: 1.2 !important;
        text-align: left !important;
    }

    body .advantages .advantage-card p {
        font-size: 13px !important;
        line-height: 1.45 !important;
        text-align: left !important;
    }

    body .segments .segment-card {
        min-height: 202px !important;
        padding: 16px 8px !important;
        text-align: center !important;
    }

    body .segments .segment-icon {
        width: 72px !important;
        height: 72px !important;
        margin: 0 auto 10px !important;
    }

    body .segments .segment-icon img {
        width: 72px !important;
        height: 72px !important;
    }

    body .segments .segment-card h3 {
        min-height: 34px !important;
        margin: 0 0 8px !important;
        font-size: 13px !important;
        line-height: 1.25 !important;
    }

    body .segments .segment-card p {
        font-size: 11px !important;
        line-height: 1.35 !important;
    }

    body .how-it-works .step-card {
        padding: 14px 8px !important;
    }

    body .how-it-works .step-icon img {
        width: 68px !important;
        height: 68px !important;
    }

    body .how-it-works .step-number {
        width: 20px !important;
        height: 20px !important;
        font-size: 10px !important;
    }

    body .how-it-works .step-card h3 {
        margin: 8px 0 5px !important;
        font-size: 13px !important;
        line-height: 1.25 !important;
    }

    body .how-it-works .step-card p {
        font-size: 11px !important;
        line-height: 1.4 !important;
    }

    body .about .about-facts {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    body .about .fact {
        display: grid !important;
        grid-template-columns: 48px minmax(0, 1fr);
        align-items: center !important;
        min-height: 72px;
        padding: 12px 16px !important;
        text-align: left !important;
    }

    body .about .fact .fact-number {
        font-size: 22px !important;
        text-align: center;
    }

    body .about .fact .fact-label {
        font-size: 11px !important;
        line-height: 1.35 !important;
        text-align: left !important;
    }

    .product-image {
        height: 300px !important;
    }

    .segments .container {
        width: min(100% - 20px, 1180px) !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .cookie-banner {
        right: 10px;
        bottom: 10px;
        width: calc(100% - 20px);
    }

    .cookie-content {
        display: block;
        padding: 13px;
    }

    .cookie-buttons {
        margin-top: 10px;
    }

    .floating-contact {
        right: 12px;
        bottom: 20px;
    }
}

/* Compact mobile density pass: two-column cards without tiny unreadable type. */
@media (max-width: 767px) {
    .hero {
        padding: 88px 0 44px !important;
    }

    .hero::after {
        display: none !important;
    }

    body .advantages,
    body .segments,
    body .catalog,
    body .locations-gallery {
        padding: 52px 0 !important;
    }

    body .advantages .advantages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
        margin-top: 24px !important;
        border: 0 !important;
    }

    body .advantages .advantage-card,
    body .advantages .advantage-card:nth-child(odd),
    body .advantages .advantage-card:nth-child(even) {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
        min-height: 174px !important;
        padding: 14px 10px !important;
        border: 1px solid var(--line) !important;
        border-radius: 16px !important;
        background: #fff !important;
        margin: 0 !important;
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
        text-align: center !important;
    }

    body .advantages .advantage-icon {
        display: flex !important;
        flex: 0 0 54px !important;
        width: 54px !important;
        height: 54px !important;
        margin: 0 auto 8px !important;
    }

    body .advantages .advantage-icon img {
        width: 54px !important;
        height: 54px !important;
    }

    body .advantages .advantage-card h3 {
        min-height: 34px !important;
        margin: 0 0 6px !important;
        font-size: 14px !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }

    body .advantages .advantage-card p {
        margin: 0 !important;
        font-size: 11px !important;
        line-height: 1.35 !important;
        text-align: center !important;
    }

    body .segments .segments-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    body .segments .segment-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        min-height: 154px !important;
        padding: 12px 7px !important;
        border-radius: 15px !important;
    }

    body .segments .segment-icon {
        flex: 0 0 54px !important;
        width: 54px !important;
        height: 54px !important;
        margin: 0 auto 7px !important;
    }

    body .segments .segment-icon img {
        width: 54px !important;
        height: 54px !important;
    }

    body .segments .segment-card h3 {
        min-height: 30px !important;
        margin: 0 0 5px !important;
        font-size: 12px !important;
        line-height: 1.25 !important;
    }

    body .segments .segment-card p {
        margin: 0 !important;
        font-size: 10px !important;
        line-height: 1.3 !important;
    }

    body .catalog .catalog-grid,
    body.public-page .public-catalog .catalog-grid,
    body.public-page .related-products .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    body .catalog .product-card,
    body.public-page .public-catalog .product-card,
    body.public-page .related-products .product-card {
        display: flex !important;
        min-height: 0 !important;
        border-radius: 16px !important;
    }

    body .catalog .product-card-link,
    body.public-page .public-catalog .product-card-link,
    body.public-page .related-products .product-card-link {
        display: flex !important;
        width: 100% !important;
        height: 100% !important;
    }

    body .catalog .product-image,
    body.public-page .public-catalog .product-image,
    body.public-page .related-products .product-image {
        flex: none !important;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 3 / 4 !important;
        padding: 0 !important;
        background: transparent !important;
        overflow: hidden !important;
    }

    body .catalog .product-image img,
    body.public-page .public-catalog .product-image img,
    body.public-page .related-products .product-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        border-radius: 12px !important;
        transform: none !important;
    }

    body .catalog .product-content,
    body.public-page .public-catalog .product-content,
    body.public-page .related-products .product-content {
        display: flex !important;
        flex: 1 1 auto !important;
        flex-direction: column !important;
        padding: 12px !important;
    }

    body .catalog .product-title,
    body.public-page .public-catalog .product-title,
    body.public-page .related-products .product-title {
        min-height: 35px !important;
        margin: 0 0 6px !important;
        font-size: 14px !important;
        line-height: 1.25 !important;
    }

    body .catalog .product-desc,
    body .catalog .product-specs,
    body.public-page .public-catalog .product-desc,
    body.public-page .public-catalog .product-specs,
    body.public-page .related-products .product-desc,
    body.public-page .related-products .product-specs {
        display: none !important;
    }

    body .catalog .product-footer,
    body.public-page .public-catalog .product-footer,
    body.public-page .related-products .product-footer {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        margin-top: auto !important;
        padding-top: 10px !important;
    }

    body .catalog .product-price,
    body.public-page .public-catalog .product-price,
    body.public-page .related-products .product-price {
        font-size: 9px !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
    }

    body .catalog .product-price span,
    body.public-page .public-catalog .product-price span,
    body.public-page .related-products .product-price span {
        font-size: 17px !important;
    }

    body .catalog .product-card .btn,
    body.public-page .public-catalog .product-card .btn,
    body.public-page .related-products .product-card .btn {
        width: 100% !important;
        min-height: 34px !important;
        margin: 0 !important;
        padding: 8px 5px !important;
        font-size: 10px !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }

    body.public-page .related-products {
        padding-bottom: 64px !important;
    }

    body.public-page .related-products > h2 {
        margin-bottom: 22px !important;
        font-size: 26px !important;
        line-height: 1.1 !important;
    }

    body .locations-gallery .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    body .locations-gallery .gallery-item {
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 4 / 3 !important;
        border-radius: 14px !important;
        background: transparent !important;
    }

    body .locations-gallery .gallery-item img {
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        object-fit: cover !important;
        object-position: center !important;
        border-radius: inherit !important;
        background: transparent !important;
        transform: none !important;
    }

    body .locations-gallery .gallery-overlay {
        padding: 9px !important;
        transform: translateY(0) !important;
        opacity: 1 !important;
        background: linear-gradient(180deg, transparent 10%, rgba(10, 17, 28, 0.9)) !important;
    }

    body .locations-gallery .gallery-overlay h4 {
        margin-bottom: 2px !important;
        font-size: 11px !important;
        line-height: 1.2 !important;
    }

    body .locations-gallery .gallery-overlay p {
        font-size: 9px !important;
        line-height: 1.25 !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-reduced-transparency: reduce) {
    .segment-card,
    .segment-card:hover {
        background: rgba(31, 45, 63, 0.92) !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}
