/* Автозвук: дополнения к общей дизайн-системе установочного центра. */
body[data-page-type="autozvuk"] {
    background: var(--paper);
}

body[data-page-type="autozvuk"] .section--soft {
    background: #f0f3f5;
}

body[data-page-type="autozvuk"] .section:not(.contacts):not(.relaxation-area):not(.reviews-section):not(.faq-section):not(.search-intents) h2 {
    max-width: 900px;
    margin: 10px 0 16px;
}

.az-icon,
.az-related-services__icon {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.az-hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    color: var(--white);
    background: #111720;
}

.az-hero__backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(9, 13, 20, .98) 0%, rgba(9, 13, 20, .9) 43%, rgba(9, 13, 20, .55) 72%, rgba(9, 13, 20, .82) 100%),
        linear-gradient(0deg, rgba(9, 13, 20, .5), rgba(9, 13, 20, .12));
}

.az-hero__media {
    position: absolute;
    inset: 0;
}

.az-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 44%;
}

.az-hero__backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 255, 255, .018) 19px);
    pointer-events: none;
}

.az-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(330px, .7fr);
    gap: 64px;
    align-items: center;
    min-height: 650px;
    padding-top: 54px;
    padding-bottom: 54px;
}

.az-hero__content {
    max-width: 780px;
}

.az-hero h1 {
    color: var(--white);
    text-shadow: 0 0 34px var(--accent-vivid-glow);
}

.az-hero__content > p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .8);
    font-size: 20px;
    line-height: 1.55;
}


.az-service-directory {
    position: relative;
    padding: 58px 0 60px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.az-service-directory__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.az-service-directory__grid a {
    position: relative;
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    min-height: 138px;
    padding: 20px 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 9px 24px rgba(22, 26, 34, .045);
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.az-service-directory__grid a::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 0;
    width: 3px;
    border-radius: 0 999px 999px 0;
    background: var(--brand);
    opacity: 0;
    transform: scaleY(.55);
    transition: opacity .2s ease, transform .2s ease;
}

.az-service-directory__grid a:hover {
    z-index: 1;
    border-color: rgba(var(--brand-rgb), .26);
    background: var(--brand-selected-bg);
    box-shadow: 0 15px 32px rgba(22, 26, 34, .08), inset 0 0 0 1px rgba(var(--brand-rgb), .1);
    transform: translateY(-1px);
}

.az-service-directory__grid a:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

.az-service-directory__visual {
    position: relative;
    display: block;
    width: 104px;
    height: 86px;
    overflow: hidden;
    align-self: start;
    border: 1px solid rgba(22, 26, 34, .12);
    border-radius: 13px;
    background: #151a22;
    box-shadow: 0 5px 14px rgba(22, 26, 34, .11);
    transform: translateZ(0);
}

.az-service-directory__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
    pointer-events: none;
}

.az-service-directory__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--az-service-image-position, 50% 50%);
    filter: saturate(.92) contrast(1.03);
    transition: transform .35s ease, filter .35s ease;
}

.az-service-directory__grid a:hover .az-service-directory__visual img {
    filter: saturate(1) contrast(1.04);
    transform: scale(1.045);
}

.az-service-directory__content strong,
.az-service-directory__content small {
    display: block;
}

.az-service-directory__content strong {
    margin-bottom: 7px;
    font-size: 18px;
    line-height: 1.25;
}

.az-service-directory__content small {
    max-width: 340px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.az-service-directory__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.az-service-directory__meta b {
    color: var(--brand-dark);
    font-size: 13px;
}

.az-service-directory__arrow {
    display: grid;
    width: 32px;
    height: 32px;
    margin-right: -2px;
    place-items: center;
    border: 1px solid rgba(var(--brand-rgb), .16);
    border-radius: 50%;
    color: var(--brand-dark);
    background: rgba(var(--brand-rgb), .045);
    opacity: .9;
    transition: border-color .2s ease, color .2s ease, background .2s ease, transform .2s ease;
}

.az-service-directory__arrow .az-icon {
    width: 18px;
    height: 18px;
}

.az-service-directory__grid a:hover .az-service-directory__arrow {
    border-color: rgba(var(--brand-rgb), .3);
    color: var(--brand);
    background: rgba(var(--brand-rgb), .09);
    opacity: 1;
    transform: translateX(2px);
}

body[data-page-type="autozvuk"] .intent-grid__comic-outline {
    fill-opacity: 0;
    stroke: var(--intent-icon-main);
    stroke-width: 3px;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
    pointer-events: none;
}

body[data-page-type="autozvuk"] .intent-grid__comic-svg [stroke="var(--intent-icon-main)"] {
    stroke-width: 3px;
    vector-effect: non-scaling-stroke;
}

body[data-page-type="autozvuk"] .intent-grid__media--contrast .intent-grid__comic-outline,
body[data-page-type="autozvuk"] .intent-grid__media--contrast .intent-grid__comic-svg [stroke="var(--intent-icon-main)"] {
    stroke: var(--intent-icon-dark);
}

/* Preserve a clearly visible hair fill in the two custom comic scenes. */
body[data-page-type="autozvuk"] .intent-grid__comic-svg .intent-grid__comic-hair,
body[data-page-type="autozvuk"] .intent-grid__media--contrast .intent-grid__comic-svg .intent-grid__comic-hair {
    fill: var(--intent-icon-soft);
    stroke: none;
}

.az-related-services__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 24px;
}

.az-related-services__head h2 {
    margin-bottom: 0 !important;
}

.az-related-services__head > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    padding-bottom: 8px;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.az-related-services__head > a .az-icon {
    width: 16px;
    height: 16px;
    transition: transform .2s ease;
}

.az-related-services__head > a:hover {
    color: var(--brand);
}

.az-related-services__head > a:hover .az-icon {
    transform: translateX(2px);
}

.az-related-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.az-related-services__grid > a {
    position: relative;
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 12px 16px;
    align-items: start;
    min-height: 160px;
    padding: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 9px 24px rgba(22, 26, 34, .045);
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.az-related-services__grid > a::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 0;
    width: 3px;
    border-radius: 0 999px 999px 0;
    background: var(--brand);
    opacity: 0;
    transform: scaleY(.55);
    transition: opacity .2s ease, transform .2s ease;
}

.az-related-services__icon {
    grid-row: 1 / span 2;
    align-self: center;
    width: 56px;
    height: 56px;
    margin: 0 auto;
    color: var(--brand-dark);
}

.az-related-services__visual {
    position: relative;
    display: block;
    grid-row: 1 / span 2;
    width: 104px;
    height: 86px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(22, 26, 34, .12);
    border-radius: 13px;
    background: #151a22;
    box-shadow: 0 6px 16px rgba(22, 26, 34, .13);
    transform: translateZ(0);
}

.az-related-services__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
    pointer-events: none;
}

.az-related-services__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--az-service-image-position, 50% 50%);
    filter: saturate(.92) contrast(1.03);
    transition: transform .35s ease, filter .35s ease;
}

.az-related-services__grid > a:hover {
    z-index: 1;
    border-color: rgba(var(--brand-rgb), .26);
    background: var(--brand-selected-bg);
    box-shadow: 0 15px 32px rgba(22, 26, 34, .08), inset 0 0 0 1px rgba(var(--brand-rgb), .1);
    transform: translateY(-1px);
}

.az-related-services__grid > a:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

.az-related-services__grid > a:hover .az-related-services__visual img {
    filter: saturate(1) contrast(1.04);
    transform: scale(1.045);
}

.az-related-services__content strong,
.az-related-services__content small {
    display: block;
}

.az-related-services__content strong {
    margin-bottom: 7px;
    font-size: 18px;
    line-height: 1.25;
}

.az-related-services__content small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.az-related-services__meta {
    display: flex;
    grid-column: 2;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.az-related-services__meta b {
    color: var(--brand-dark);
    font-size: 13px;
    white-space: nowrap;
}

.az-related-services__arrow {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(var(--brand-rgb), .16);
    border-radius: 50%;
    color: var(--brand-dark);
    background: rgba(var(--brand-rgb), .045);
    opacity: .9;
    transition: border-color .2s ease, color .2s ease, background .2s ease, transform .2s ease;
}

.az-related-services__arrow .az-icon {
    width: 18px;
    height: 18px;
}

.az-related-services__grid > a:hover .az-related-services__arrow {
    border-color: rgba(var(--brand-rgb), .3);
    color: var(--brand);
    background: rgba(var(--brand-rgb), .09);
    opacity: 1;
    transform: translateX(2px);
}

.az-prices {
    position: relative;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 88% 12%, rgba(var(--brand-rgb), .055), transparent 26%),
        repeating-linear-gradient(135deg, rgba(26, 32, 41, .018) 0 1px, transparent 1px 16px),
        #f2f5f6;
}

.az-price-head {
    max-width: 760px;
}

.az-price-head p strong {
    color: var(--ink);
}

.az-price-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 332px;
    gap: 18px;
    align-items: start;
}

.az-price-list {
    overflow: hidden;
    border: 1px solid rgba(26, 32, 41, .15);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 20px 46px rgba(22, 26, 34, .09);
}

.az-price-service {
    border-bottom: 1px solid rgba(26, 32, 41, .15);
    background: var(--white);
}

.az-price-service:last-child {
    border-bottom: 0;
}

.az-price-service__head {
    position: relative;
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 82px;
    padding: 14px 22px;
    border-bottom: 1px solid rgba(26, 32, 41, .1);
    background:
        radial-gradient(circle at 100% 0, rgba(var(--brand-rgb), .08), transparent 36%),
        repeating-linear-gradient(135deg, rgba(26, 32, 41, .015) 0 1px, transparent 1px 14px),
        #f7f8fa;
}

.az-price-service__head::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: var(--accent-line);
}

.az-price-service__icon {
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    border: 0;
    border-radius: 0;
    color: var(--brand-dark);
    background: transparent;
    box-shadow: none;
}

.az-price-sprite {
    --az-price-icon-left: 0%;
    --az-price-icon-top: 0%;
    position: relative;
    display: block;
    width: 30px;
    aspect-ratio: 1;
    flex: 0 0 auto;
    overflow: hidden;
}

.az-price-sprite::before {
    content: "";
    position: absolute;
    top: var(--az-price-icon-top);
    left: var(--az-price-icon-left);
    width: 400%;
    height: 300%;
    background: currentColor;
    -webkit-mask-image: url("/avtozvuk/assets/img/az-price.svg");
    mask-image: url("/avtozvuk/assets/img/az-price.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.az-price-sprite--head-unit { --az-price-icon-left: 0%; --az-price-icon-top: 0%; }
.az-price-sprite--speaker { --az-price-icon-left: -100%; --az-price-icon-top: 0%; }
.az-price-sprite--amplifier { --az-price-icon-left: -200%; --az-price-icon-top: 0%; }
.az-price-sprite--subwoofer-box { --az-price-icon-left: -300%; --az-price-icon-top: 0%; }
.az-price-sprite--speaker-podium { --az-price-icon-left: 0%; --az-price-icon-top: -100%; }
.az-price-sprite--subwoofer-enclosure { --az-price-icon-left: -100%; --az-price-icon-top: -100%; }
.az-price-sprite--door-card { --az-price-icon-left: -200%; --az-price-icon-top: -100%; }
.az-price-sprite--install-panel { --az-price-icon-left: 0%; --az-price-icon-top: -200%; }
.az-price-sprite--bracket { --az-price-icon-left: -100%; --az-price-icon-top: -200%; }
.az-price-sprite--amplifier-panel { --az-price-icon-left: -200%; --az-price-icon-top: -200%; }
.az-price-sprite--wiring-panel {
    --az-price-icon-left: calc(-300% + 3px);
    --az-price-icon-top: calc(-200% + 8px);
}

.az-price-service__icon .az-price-sprite {
    width: 58px;
}

.az-price-service__title h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
}

.az-price-service__rows {
    padding: 2px 22px 5px 96px;
}

.az-price-option {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    min-width: 0;
    min-height: 49px;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
}

.az-price-option:last-child {
    border-bottom: 0;
}

.az-price-option strong,
.az-price-option small {
    display: block;
}

.az-price-option strong {
    font-size: 14px;
    line-height: 1.42;
}

.az-price-option small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11.5px;
    line-height: 1.35;
}

.az-price-option b {
    display: block;
    color: var(--brand-dark);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    text-align: right;
    white-space: nowrap;
}

.az-price-fabrication {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(290px, .82fr) minmax(0, 1.48fr);
    gap: 24px;
    margin-top: 14px;
    overflow: hidden;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    color: var(--white);
    background:
        radial-gradient(circle at 0 0, rgba(var(--brand-rgb), .18), transparent 32%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .022) 0 1px, transparent 1px 14px),
        var(--dark-card-bg);
    box-shadow: var(--shadow-dark-card);
}

.az-price-fabrication__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 3px 24px 3px 3px;
    border-right: 1px solid rgba(255, 255, 255, .13);
}

.az-price-fabrication__head > span {
    grid-column: 1;
    color: var(--brand-light);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.az-price-fabrication__head h3 {
    grid-column: 1;
    margin: 7px 0 0;
    color: var(--white);
    font-size: 27px;
    line-height: 1.1;
}

.az-price-fabrication__lead {
    grid-column: 1;
    margin-top: 12px;
    margin-bottom: 16px;
}

.az-price-fabrication__lead p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 12.5px;
    line-height: 1.5;
}

.az-price-fabrication__cta {
    width: 100%;
    min-height: 42px;
    margin-top: auto;
    padding: 0 18px;
    font-size: 12px;
}

.az-price-fabrication__technology {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    margin: 0;
    overflow: hidden;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 11px;
    background: rgba(0, 0, 0, .11);
}

.az-price-fabrication__technology > div {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 0;
}

.az-price-fabrication__technology span {
    display: block;
    color: rgba(255, 255, 255, .67);
    font-size: 10.5px;
    line-height: 1.35;
}

.az-price-fabrication__content {
    display: grid;
    gap: 10px;
    align-content: start;
    min-width: 0;
}

.az-price-fabrication__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 13px;
    background: rgba(255, 255, 255, .035);
}

.az-price-fabrication--compact .az-price-fabrication__grid {
    grid-template-columns: 1fr;
}

.az-price-fabrication--compact .az-price-fabrication__content {
    grid-template-rows: minmax(0, 1fr) auto;
    align-content: stretch;
}

.az-price-fabrication--compact .az-price-fabrication__grid article {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.az-price-fabrication--compact .az-price-fabrication__grid article:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.az-price-fabrication--compact .az-price-fabrication__grid article:last-child {
    border-bottom: 0;
}

.az-price-fabrication__grid article {
    position: relative;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-width: 0;
    min-height: 78px;
    padding: 12px 14px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, .09);
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    background: transparent;
}

.az-price-fabrication__grid article:nth-child(2n) {
    border-right: 0;
}

.az-price-fabrication__grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.az-price-fabrication__icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 13px;
    color: rgba(255, 255, 255, .96);
    background: linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .035));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .1),
        inset 0 0 0 1px rgba(255, 119, 119, .07),
        0 8px 18px rgba(0, 0, 0, .18);
}

.az-price-fabrication__icon .az-price-sprite {
    width: 52px;
}

.az-price-fabrication__grid h4 {
    margin: 0 0 4px;
    color: var(--white);
    font-size: 14px;
    line-height: 1.25;
}

.az-price-fabrication__grid p {
    margin: 0;
    color: rgba(255, 255, 255, .64);
    font-size: 11px;
    line-height: 1.4;
}

@media (min-width: 901px) {
    .az-price-fabrication--compact {
        grid-template-columns: minmax(320px, .95fr) minmax(380px, 1.05fr);
    }

    .az-price-fabrication--compact .az-price-fabrication__grid {
        grid-template-rows: repeat(2, minmax(0, 1fr));
    }

    .az-price-fabrication--compact .az-price-fabrication__grid article {
        min-height: 0;
        padding-right: 16px;
        padding-left: 16px;
    }
}

.az-price-summary {
    position: relative;
    display: grid;
    grid-template-columns: minmax(190px, .7fr) minmax(360px, 1.25fr) minmax(270px, .8fr);
    gap: 34px;
    align-items: center;
    margin-top: 24px;
    overflow: hidden;
    padding: 28px 30px;
    border-radius: var(--radius);
    color: var(--white);
    background:
        radial-gradient(circle at 100% 0, rgba(var(--brand-rgb), .15), transparent 34%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .022) 0 1px, transparent 1px 14px),
        var(--dark-card-bg);
    box-shadow: var(--shadow-dark-card);
}

.az-price-layout .az-price-summary {
    position: sticky;
    top: 92px;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 0;
    padding: 24px;
}

.az-price-layout .az-price-summary ul {
    grid-template-columns: 1fr;
    gap: 10px;
}

.az-price-layout .az-price-summary__action {
    display: grid;
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.az-price-layout .az-price-summary__action p {
    margin: 0;
    font-size: 10.5px;
    line-height: 1.5;
}

.az-price-layout .az-price-summary__action .btn {
    min-height: 50px;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 14px;
    white-space: nowrap;
}

.az-price-summary::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--accent-line);
}

.az-price-summary__title span {
    display: block;
    margin-bottom: 8px;
    color: var(--brand-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.az-price-summary__title h3 {
    margin: 0;
    color: var(--white);
    font-size: 23px;
}

.az-price-summary ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.az-price-summary li {
    position: relative;
    min-height: 22px;
    padding-left: 29px;
    color: rgba(255, 255, 255, .82);
    font-size: 12.5px;
    line-height: 1.42;
}

.az-price-summary li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border: 1px solid rgba(var(--brand-rgb), .32);
    border-radius: 50%;
    color: var(--brand-light);
    background: rgba(var(--brand-rgb), .1);
    font-size: 10px;
    font-weight: 800;
}

.az-price-summary__action p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .62);
    font-size: 10px;
    line-height: 1.45;
}

.az-shop-choice {
    overflow: hidden;
}

.az-shop-choice__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
    gap: 64px;
    align-items: end;
    margin-bottom: 34px;
}

body[data-page-type="autozvuk"] .az-shop-choice__intro h2 {
    max-width: 760px;
    margin: 8px 0 0;
    color: var(--white);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.06;
}

.az-shop-choice__copy {
    display: grid;
    gap: 18px;
}

.az-shop-choice__copy > p {
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 17px;
    line-height: 1.55;
}

.az-shop-choice__copy ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.az-shop-choice__copy li {
    position: relative;
    padding-left: 21px;
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
    line-height: 1.4;
}

.az-shop-choice__copy li::before {
    content: "";
    position: absolute;
    top: .47em;
    left: 1px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-light);
    box-shadow: 0 0 0 4px rgba(var(--brand-rgb), .15);
}

.az-shop-choice__copy .btn {
    width: fit-content;
}

.az-shop-gallery {
    display: grid;
    height: clamp(410px, 40vw, 520px);
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018)),
        rgba(255, 255, 255, .02);
    box-shadow: 0 24px 56px rgba(4, 8, 14, .24);
}

.az-shop-gallery__rail {
    display: contents;
}

.az-shop-gallery__item {
    position: relative;
    display: block;
    min-width: 0;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 10px;
    background: #151a22;
    cursor: pointer;
}

.az-shop-gallery__item--featured {
    grid-column: span 2;
    grid-row: span 2;
}

.az-shop-gallery__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 14, 20, 0) 55%, rgba(10, 14, 20, .2)),
        linear-gradient(135deg, rgba(var(--brand-rgb), .08), transparent 38%);
    pointer-events: none;
    transition: opacity .25s ease;
}

.az-shop-gallery__item picture,
.az-shop-gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
}

.az-shop-gallery__item img {
    object-fit: cover;
    object-position: var(--az-shop-image-position, 50% 50%);
    filter: saturate(.92) contrast(1.03);
    transition: transform .35s ease, filter .35s ease;
}

.az-shop-gallery__item:hover img {
    filter: saturate(1) contrast(1.05);
    transform: scale(1.025);
}

.az-shop-gallery__item:hover::after {
    opacity: .55;
}

.az-shop-gallery__item:focus-visible {
    z-index: 2;
    outline: 2px solid var(--brand-light);
    outline-offset: 3px;
}

.az-shop-choice__note {
    max-width: 920px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .58);
    font-size: 12.5px;
    line-height: 1.5;
}

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

.az-work-filters {
    margin-bottom: 26px;
}

.az-work-filters button {
    transition: color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.az-work-filters button:hover {
    color: var(--ink);
    -webkit-text-fill-color: var(--ink);
    border-color: var(--wood-line);
    background:
        linear-gradient(180deg, rgba(var(--brand-rgb), .14), rgba(255, 255, 255, 0)),
        var(--white);
}

.az-work-filters button.active {
    color: var(--work-filter-active-color);
    -webkit-text-fill-color: var(--work-filter-active-color);
    border-color: var(--work-filter-active-bg);
    background-color: var(--work-filter-active-bg);
    background-image: var(--brand-button-surface);
    box-shadow: var(--brand-button-shadow-soft);
}

.az-work-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 40px rgba(26, 30, 38, .05);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.az-work-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--brand-rgb), .34);
    box-shadow: 0 22px 54px rgba(26, 30, 38, .11);
}

.az-work-card__cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: #111;
    cursor: pointer;
}

.az-work-card__cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(5, 7, 11, .72));
    pointer-events: none;
}

.az-work-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.az-work-card:hover .az-work-card__cover img {
    transform: scale(1.035);
}

.az-work-card__photo-count {
    position: absolute;
    z-index: 1;
    bottom: 14px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .02em;
}

.az-work-card__photo-count {
    left: 14px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    background: rgba(7, 10, 16, .55);
    backdrop-filter: blur(7px);
}

.az-work-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.az-work-card__meta {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    justify-content: space-between;
}

.az-work-card__meta > span,
.az-case-detail__top > span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.az-work-card h3 {
    display: -webkit-box;
    min-height: 50px;
    margin: 13px 0 10px;
    overflow: hidden;
    font-size: 20px;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.az-work-card__body > p {
    display: -webkit-box;
    min-height: 60px;
    margin: 0 0 18px;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.az-work-card__open.link-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    align-self: stretch;
    gap: 16px;
    width: 100%;
    min-height: 42px;
    margin-top: auto;
    padding: 14px 0 0;
    border: 0;
    border-top: 1px solid rgba(190, 197, 204, .7);
    border-radius: 0;
    color: var(--ink);
    background: transparent;
    box-shadow: none;
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
    transition: color .18s ease, border-color .18s ease;
}

.az-work-card__open:focus-visible {
    outline: 2px solid var(--brand-light);
    outline-offset: 2px;
}

.az-work-card__open.link-button:hover {
    color: var(--brand-dark);
    border-color: rgba(var(--brand-rgb), .34);
    background: transparent;
    box-shadow: none;
}

.az-work-card__open > span:first-child {
    color: var(--brand-dark);
    transition: color .18s ease;
}

.az-work-card__open:hover > span:first-child {
    color: var(--brand-dark);
}

.az-work-card__arrow {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    margin-right: -2px;
    border: 1px solid rgba(var(--brand-rgb), .16);
    border-radius: 50%;
    color: var(--brand-dark);
    background: rgba(var(--brand-rgb), .045);
    opacity: .9;
    transition: border-color .2s ease, color .2s ease, background .2s ease, opacity .2s ease, transform .2s ease;
}

.az-work-card__arrow svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.az-work-card__open:hover .az-work-card__arrow,
.az-work-card:hover .az-work-card__arrow {
    border-color: rgba(var(--brand-rgb), .3);
    color: var(--brand);
    background: rgba(var(--brand-rgb), .09);
    opacity: 1;
    transform: translateX(2px);
}

.az-work-lead {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 44px;
    align-items: center;
    margin-top: 28px;
    overflow: hidden;
    padding: 28px 30px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--radius);
    color: var(--white);
    background:
        radial-gradient(circle at 0 0, rgba(var(--brand-rgb), .2), transparent 34%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .022) 0 1px, transparent 1px 14px),
        var(--dark-card-bg);
    box-shadow: var(--shadow-dark-card);
}

.az-work-lead::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -90px;
    right: 190px;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(var(--brand-rgb), .12);
    border-radius: 50%;
    box-shadow: 0 0 0 42px rgba(var(--brand-rgb), .025);
}

.az-work-lead__copy > span {
    display: block;
    margin-bottom: 8px;
    color: var(--brand-light);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.az-work-lead__copy h3 {
    margin: 0;
    color: var(--white);
    font-size: clamp(24px, 2.25vw, 32px);
    line-height: 1.1;
}

.az-work-lead__copy p {
    max-width: 760px;
    margin: 11px 0 0;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    line-height: 1.5;
}

.az-work-lead__cta {
    width: 100%;
    min-height: 48px;
    padding-right: 18px;
    padding-left: 18px;
    font-size: 13px;
}

.az-case-modal {
    position: fixed;
    z-index: 120;
    inset: 0;
    display: none;
    place-items: center;
    padding: 24px;
}

.az-case-modal.is-open {
    display: grid;
}

.az-case-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 10, 18, .88);
}

.az-case-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 26px;
    background: var(--white);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
}

.az-case-modal__dialog:focus {
    outline: none;
}

.az-case-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
    min-height: 640px;
}

.az-case-detail__media {
    padding: 20px;
    background: #101318;
}

.az-case-detail__main {
    display: grid;
    height: 500px;
    overflow: hidden;
    border-radius: 16px;
    background: #080a0e;
    place-items: center;
}

.az-case-detail__main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.az-case-detail__thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.az-case-detail__thumbs button {
    height: 86px;
    overflow: hidden;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    background: #080a0e;
    opacity: .64;
    cursor: pointer;
}

.az-case-detail__thumbs button.is-active {
    border-color: var(--brand);
    opacity: 1;
}

.az-case-detail__thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.az-case-detail__content {
    display: flex;
    flex-direction: column;
    padding: 46px 42px 38px;
}

.az-case-detail__top {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    justify-content: space-between;
    padding-right: 38px;
}

.az-case-detail__content h2 {
    margin: 18px 0 26px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.06;
}

.az-case-detail__facts {
    display: grid;
    gap: 0;
    margin: 0 0 30px;
}

.az-case-detail__facts > div {
    padding: 15px 0;
    border-top: 1px solid var(--line);
}

.az-case-detail__facts dt {
    margin-bottom: 6px;
    color: var(--ink);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.az-case-detail__facts dd {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.62;
}

.az-case-detail__result {
    margin: 0 -16px;
    padding: 16px !important;
    border: 0 !important;
    border-radius: 14px;
    background: #f4f7f9;
}

.az-case-detail__content > .btn {
    align-self: flex-start;
    margin-top: auto;
}

@media (max-width: 1100px) {
    .az-shop-choice__intro {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .az-shop-choice__copy {
        max-width: 820px;
    }

    .az-shop-gallery {
        height: auto;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-template-rows: repeat(3, 170px);
    }

    .az-shop-gallery__rail > .az-shop-gallery__item:nth-child(5),
    .az-shop-gallery__rail > .az-shop-gallery__item:nth-child(6) {
        grid-column: span 2;
    }

    .az-hero__grid {
        gap: 30px;
    }

    .az-price-summary {
        grid-template-columns: minmax(190px, .65fr) minmax(0, 1.35fr);
    }

    .az-price-summary__action {
        display: grid;
        grid-column: 1 / -1;
        grid-template-columns: minmax(0, 1fr) 290px;
        gap: 24px;
        align-items: center;
    }

    .az-price-summary__action p {
        margin: 0;
    }

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

    .az-related-services__grid > a:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc((100% - 14px) / 2);
    }

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

    .az-case-detail {
        grid-template-columns: 1fr;
    }

    .az-case-detail__main {
        height: min(55vw, 520px);
    }
}

@media (max-width: 900px) {
    .az-work-lead {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .az-work-lead__cta {
        max-width: 320px;
    }

    .az-price-fabrication {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .az-price-fabrication__head {
        padding: 0 0 14px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .13);
    }

    .az-price-fabrication__lead {
        margin-top: 10px;
        margin-bottom: 0;
    }

    .az-price-fabrication__cta {
        max-width: 320px;
        margin-top: 16px;
    }

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

    .az-service-directory__grid {
        grid-template-columns: 1fr;
    }

    .az-service-directory__grid a,
    .az-service-directory__grid a:nth-child(2n + 1),
    .az-service-directory__grid a:last-child {
        grid-column: auto;
        border: 1px solid var(--line);
    }

    .az-hero__grid {
        grid-template-columns: 1fr;
    }

    .az-hero__grid {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .az-price-layout {
        grid-template-columns: 1fr;
    }

    .az-price-layout .az-price-summary {
        position: relative;
        top: auto;
        margin-top: 0;
    }

    .az-price-summary {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .az-price-summary__action {
        grid-column: auto;
    }

    .az-work-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 720px) {
    .az-hero {
        min-height: auto;
    }

    .az-hero__backdrop {
        background:
            linear-gradient(180deg, rgba(9, 13, 20, .85) 0%, rgba(9, 13, 20, .97) 49%, rgba(9, 13, 20, 1) 100%);
    }

    .az-hero__media img {
        height: 360px;
        object-position: center top;
    }

    .az-hero__grid {
        width: calc(100% - 30px);
        min-height: 0;
        padding-top: 44px;
        padding-bottom: 42px;
    }

    .az-hero__content > p {
        font-size: 16px;
    }

    .az-service-directory {
        padding: 38px 0 42px;
    }

    .az-service-directory__grid a {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 12px;
        min-height: 0;
        padding: 16px 14px;
    }

    .az-service-directory__visual {
        width: 76px;
        height: 66px;
        border-radius: 10px;
    }

    .az-service-directory__content strong {
        margin-bottom: 6px;
        font-size: 17px;
    }

    .az-service-directory__content small {
        font-size: 11.5px;
        line-height: 1.42;
    }

    .az-service-directory__meta {
        grid-column: 2;
        justify-content: space-between;
        width: 100%;
        margin-top: 0;
    }

    .az-related-services__head {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 22px;
    }

    .az-related-services__head > a {
        padding-bottom: 0;
    }

    .az-related-services__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .az-related-services__grid > a {
        grid-template-columns: 76px minmax(0, 1fr);
        grid-template-rows: auto auto;
        gap: 10px 12px;
        min-height: 0;
        padding: 16px 14px;
    }

    .az-related-services__grid > a:last-child:nth-child(odd) {
        grid-column: auto;
        width: 100%;
    }

    .az-related-services__grid > a::before {
        top: 14px;
        bottom: 14px;
    }

    .az-related-services__visual {
        width: 76px;
        height: 66px;
        border-radius: 10px;
    }

    .az-related-services__icon {
        width: 44px;
        height: 44px;
    }

    .az-related-services__content strong {
        margin-bottom: 6px;
        font-size: 17px;
    }

    .az-related-services__content small {
        font-size: 11.5px;
        line-height: 1.42;
    }

    .az-related-services__meta {
        grid-column: 2;
    }

    .az-shop-choice__intro {
        gap: 18px;
        margin-bottom: 24px;
    }

    body[data-page-type="autozvuk"] .az-shop-choice__intro h2 {
        font-size: 28px;
    }

    .az-shop-choice__copy {
        gap: 15px;
    }

    .az-shop-choice__copy > p {
        font-size: 15px;
        line-height: 1.5;
    }

    .az-shop-choice__copy .btn {
        width: 100%;
    }

    .az-shop-gallery {
        width: 100%;
        max-width: 100%;
        height: auto;
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto auto;
        gap: 8px;
        margin: 0;
        padding: 7px;
        overflow: hidden;
        border-radius: 13px;
    }

    .az-shop-gallery > .az-shop-gallery__item--featured {
        grid-column: 1;
        grid-row: 1;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .az-shop-gallery__rail {
        display: grid;
        width: 100%;
        min-width: 0;
        grid-template-columns: none;
        grid-template-rows: 108px;
        grid-auto-flow: column;
        grid-auto-columns: clamp(145px, 42vw, 166px);
        gap: 8px;
        padding: 0 0 3px;
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline mandatory;
        scroll-padding-inline: 0;
        scrollbar-width: none;
    }

    .az-shop-gallery__rail::-webkit-scrollbar {
        display: none;
    }

    .az-shop-gallery__rail > .az-shop-gallery__item,
    .az-shop-gallery__rail > .az-shop-gallery__item:nth-child(5),
    .az-shop-gallery__rail > .az-shop-gallery__item:nth-child(6) {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
        scroll-snap-align: start;
    }

    .az-shop-choice__note {
        margin-top: 11px;
        font-size: 11.5px;
    }

    .az-price-service {
        display: block;
    }

    .az-price-service__head {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 12px;
        min-height: 0;
        padding: 13px 14px 13px 16px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .az-price-service__icon {
        width: 56px;
        height: 56px;
    }

    .az-price-service__icon .az-price-sprite {
        width: 52px;
    }

    .az-price-service__title h3 {
        font-size: 16px;
    }

    .az-price-service__rows {
        display: block;
        padding: 2px 16px 5px 72px;
    }

    .az-price-option {
        min-height: 52px;
        gap: 12px;
        padding: 8px 0;
    }

    .az-price-option strong {
        font-size: 13px;
    }

    .az-price-option b {
        margin-top: 0;
        padding-top: 0;
        font-size: 15px;
        text-align: right;
    }

    .az-price-summary {
        padding: 22px;
    }

    .az-price-layout .az-price-summary {
        padding: 22px;
    }

    .az-price-summary ul,
    .az-price-summary__action {
        display: grid;
        grid-template-columns: 1fr;
    }

    .az-price-summary__action {
        gap: 16px;
    }

    .az-price-fabrication {
        margin-top: 18px;
        padding: 14px;
        border-radius: 14px;
    }

    .az-price-fabrication__head {
        margin-bottom: 0;
        padding-bottom: 12px;
    }

    .az-price-fabrication__head h3 {
        font-size: 21px;
        line-height: 1.15;
    }

    .az-price-fabrication__lead p {
        font-size: 12px;
    }

    .az-price-fabrication__cta {
        width: 100%;
        max-width: none;
        min-height: 42px;
    }

    .az-price-fabrication__technology {
        grid-template-columns: 1fr;
    }

    .az-price-fabrication__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .az-price-fabrication--compact .az-price-fabrication__grid {
        grid-template-columns: 1fr;
    }

    .az-price-fabrication--compact .az-price-fabrication__grid article {
        min-height: 0;
    }

    .az-price-fabrication__grid article {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 11px;
        align-items: start;
        min-height: 0;
        padding: 11px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .09);
    }

    .az-price-fabrication__grid article:nth-last-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, .09);
    }

    .az-price-fabrication__grid article:last-child {
        border-bottom: 0;
    }

    .az-price-fabrication__icon {
        width: 50px;
        height: 50px;
    }

    .az-price-fabrication__icon .az-price-sprite {
        width: 46px;
    }

    .az-price-fabrication__grid h4 {
        margin: 0 0 4px;
    }

    .az-price-fabrication__technology > div {
        padding: 0;
    }

}

@media (max-width: 700px) {
    .az-work-lead {
        gap: 18px;
        margin-top: 24px;
        padding: 21px 20px;
    }

    .az-work-lead::after {
        top: -130px;
        right: -105px;
    }

    .az-work-lead__copy h3 {
        font-size: 23px;
    }

    .az-work-lead__copy p {
        font-size: 12.5px;
    }

    .az-work-lead__cta {
        max-width: none;
        min-height: 44px;
    }

    .az-work-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .az-work-card h3 {
        min-height: 0;
        font-size: 20px;
    }

    .az-work-card__body > p {
        min-height: 0;
    }

    .az-case-modal {
        padding: 0;
    }

    .az-case-modal__dialog {
        width: 100%;
        height: 100%;
        max-height: none;
        border: 0;
        border-radius: 0;
    }

    .az-case-detail__media {
        padding: 0 0 12px;
    }

    .az-case-detail__main {
        height: 56vh;
        min-height: 340px;
        border-radius: 0;
    }

    .az-case-detail__thumbs {
        gap: 6px;
        padding: 0 12px;
    }

    .az-case-detail__thumbs button {
        height: 66px;
    }

    .az-case-detail__content {
        padding: 28px 20px 110px;
    }

    .az-case-detail__top {
        display: block;
        padding-right: 0;
    }

    .az-case-detail__content h2 {
        margin: 14px 0 22px;
        font-size: 30px;
    }

    .az-case-detail__content > .btn {
        position: fixed;
        z-index: 2;
        right: 14px;
        bottom: 16px;
        left: 14px;
        width: auto;
    }
}

@media (max-width: 480px) {
    .az-price-list {
        border-radius: 14px;
        box-shadow: 0 14px 32px rgba(22, 26, 34, .08);
    }

    .az-price-layout .az-price-summary {
        padding: 20px;
    }

    .az-price-service__head {
        grid-template-columns: 56px minmax(0, 1fr);
        grid-template-rows: auto;
        gap: 12px;
        padding: 12px 14px 12px 16px;
    }

    .az-price-service__icon {
        width: 56px;
        height: 56px;
        grid-row: 1;
    }

    .az-price-service__icon .az-price-sprite {
        width: 52px;
    }

    .az-price-service__title {
        grid-column: 2;
        grid-row: 1;
    }

    .az-price-service__title h3 {
        font-size: 15px;
        line-height: 1.25;
    }

    .az-price-service__rows {
        padding: 2px 14px 5px;
    }

    .az-price-fabrication__grid {
        grid-template-columns: 1fr;
    }

    .az-price-fabrication__grid article {
        min-height: 0;
    }

    .az-price-option {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
        min-height: 50px;
    }

    .az-price-option strong {
        font-size: 12px;
    }

    .az-price-option small {
        font-size: 11px;
    }

    .az-price-option b {
        font-size: 14px;
    }
}




@media (prefers-reduced-motion: reduce) {
    .az-related-services__grid > a,
    .az-shop-gallery__item img,
    .az-shop-gallery__item::after {
        transition: none;
    }
}
