:root {
    --bg: #f3efe7;
    --surface: #fffaf3;
    --surface-soft: #f5ede0;
    --surface-dark: #2b3442;
    --surface-dark-2: #213042;
    --text: #223142;
    --text-soft: #766750;
    --text-invert: #fffaf3;
    --line: rgba(34, 49, 66, 0.12);
    --line-strong: rgba(255, 248, 238, 0.18);
    --accent-strong: #ff8a2b;
    --accent: #f57a1f;
    --accent-2: #e56211;
    --accent-shadow: rgba(245, 122, 31, 0.28);
    --shadow: 0 18px 40px rgba(30, 34, 43, 0.12);
    --shadow-soft: 0 10px 26px rgba(30, 34, 43, 0.08);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 14px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at top right, rgba(245, 122, 31, 0.16), transparent 28%),
        radial-gradient(circle at left top, rgba(214, 228, 246, 0.12), transparent 26%),
        linear-gradient(180deg, #f8f3ea 0%, #f1ebe2 100%);
    color: var(--text);
    font-family: "Noto Sans", Arial, sans-serif;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.18s ease;
}

a:hover,
a:focus-visible {
    color: var(--accent-strong);
}

.scroll-top-button {
    position: fixed;
    right: max(24px, env(safe-area-inset-right));
    bottom: max(24px, env(safe-area-inset-bottom));
    z-index: 90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--accent-strong), var(--accent-2));
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(245, 122, 31, 0.34);
    font: 700 30px/1 "Noto Sans", Arial, sans-serif;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.scroll-top-button.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top-button:hover,
.scroll-top-button:focus-visible {
    box-shadow: 0 18px 34px rgba(245, 122, 31, 0.44);
}

.scroll-top-button:focus-visible {
    outline: 3px solid rgba(255, 138, 43, 0.38);
    outline-offset: 4px;
}

.scroll-top-button span {
    display: block;
    transform: translateY(-1px);
}

.contact-icon-link {
    --contact-icon-size: 36px;
    --contact-icon-gap: 12px;
    display: inline-flex;
    align-items: center;
    gap: var(--contact-icon-gap);
    min-height: var(--contact-icon-size);
    max-width: 100%;
}

.contact-icon-link::before {
    content: "";
    flex: 0 0 var(--contact-icon-size);
    width: var(--contact-icon-size);
    height: var(--contact-icon-size);
    border-radius: 50%;
    background-color: var(--accent);
    background-repeat: no-repeat, no-repeat;
    background-position: center, center;
    background-size: 17px 17px, 100% 100%;
    box-shadow: 0 10px 18px rgba(245, 122, 31, 0.24);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-image 0.18s ease;
}

.contact-icon-link:hover::before,
.contact-icon-link:focus-visible::before {
    transform: translateY(-1px);
    box-shadow: 0 14px 22px rgba(245, 122, 31, 0.3);
}

.contact-icon-link--phone::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fffaf3' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2A19.86 19.86 0 0 1 3.08 6.18 2 2 0 0 1 5.06 4h3a2 2 0 0 1 2 1.72c.12.9.33 1.78.63 2.62a2 2 0 0 1-.45 2.11L9.1 11.6a16 16 0 0 0 5.3 5.3l1.15-1.15a2 2 0 0 1 2.11-.45c.84.3 1.72.51 2.62.63A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"),
        linear-gradient(180deg, var(--accent-strong) 0%, var(--accent) 58%, var(--accent-2) 100%);
}

.contact-icon-link--email::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fffaf3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/svg%3E"),
        linear-gradient(180deg, var(--accent-strong) 0%, var(--accent) 58%, var(--accent-2) 100%);
}

.contact-icon-link--email {
    overflow-wrap: anywhere;
    word-break: break-word;
}

button,
input,
textarea,
select {
    font: inherit;
}

.wrap {
    width: min(calc(100% - 18px), 2020px);
    margin: 0 auto;
}

.site-main {
    padding: 0 0 48px;
}

.section-head--split,
.footer-bottom {
    display: flex;
    align-items: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 11px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent-strong) 0%, var(--accent) 48%, var(--accent-2) 100%);
    box-shadow: 0 14px 26px rgba(245, 122, 31, 0.24);
    color: #fffaf3;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:visited {
    color: #fffaf3;
}

.product-panel--summary .button,
.product-panel--summary .button:visited {
    color: #fffaf3 !important;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(245, 122, 31, 0.28);
    color: #fffaf3;
}

.button--ghost {
    background: linear-gradient(180deg, rgba(255, 252, 248, 0.98) 0%, rgba(247, 239, 226, 0.98) 100%);
    border-color: rgba(34, 49, 66, 0.16);
    box-shadow: none;
    color: var(--text);
}

.button--ghost:visited {
    color: var(--text);
}

.product-panel--summary .button--ghost,
.product-panel--summary .button--ghost:visited {
    color: var(--text) !important;
}

.button--ghost:hover,
.button--ghost:focus-visible {
    box-shadow: 0 12px 24px rgba(30, 34, 43, 0.12);
    color: var(--text);
}

.block {
    margin-top: 26px;
    padding: 28px 0;
}

.block--soft {
    padding: 34px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 248, 251, 0.98) 100%);
    box-shadow: var(--shadow);
}

.section-head {
    margin-bottom: 22px;
}

.section-head--split {
    justify-content: space-between;
    gap: 16px;
}

.section-head h1,
.section-head h2,
.page-hero h1,
.product-panel--summary h1,
.empty-state h1,
.empty-state h2 {
    margin: 0;
    font-family: "Noto Sans", Arial, sans-serif;
    font-weight: 700;
    line-height: 1.06;
}

.section-head h2,
.page-card__title,
.catalog-card__title,
.product-card h3 {
    color: var(--text);
}

.section-head h2 {
    font-size: clamp(28px, 2.5vw, 44px);
}

.text-link {
    color: var(--accent);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.catalog-grid,
.product-grid,
.page-card-grid,
.service-showcase,
.contact-grid,
.footer-grid {
    display: grid;
    gap: 18px;
}

.catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border-top: 1px solid #e7e7e7;
    border-left: 1px solid #e7e7e7;
    background: #fff;
}

.catalog-card,
.product-card,
.page-card,
.service-showcase__card,
.service-showcase__card--static,
.contact-card,
.side-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(34, 49, 66, 0.12);
    box-shadow: var(--shadow-soft);
}

.catalog-card {
    position: relative;
    display: grid;
    grid-template-rows: 360px minmax(70px, auto) 1fr;
    min-height: 550px;
    gap: 0;
    padding: 0 30px 26px;
    border: 0;
    border-right: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    transition: background 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.catalog-card:hover,
.catalog-card:focus-visible {
    z-index: 1;
    border-color: rgba(245, 122, 31, 0.34);
    background: #fff8ef;
    box-shadow:
        inset 0 0 0 2px rgba(245, 122, 31, 0.22),
        0 18px 32px rgba(30, 34, 43, 0.12);
}

.catalog-card__media {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 360px;
    padding: 24px 0 0;
    border-radius: 0;
    background: #fff;
    overflow: hidden;
}

.catalog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    box-sizing: border-box;
}

.catalog-card__title {
    align-self: start;
    margin: 16px 0 0;
    color: #111;
    font-family: "Noto Sans", Arial, sans-serif;
    font-size: clamp(17px, 1.4vw, 22px);
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.catalog-card__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    gap: 8px;
    margin-top: 28px;
}

.catalog-card__tags span,
.detail-chip,
.badge {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 16px;
    border-radius: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.catalog-card__tags span {
    border: 1px solid #f1dfcf;
    background: #fffaf3;
    color: #6f604f;
}

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

.block--catalog-home .catalog-card {
    grid-template-rows: 360px minmax(70px, auto) 1fr;
    min-height: 550px;
    gap: 0;
    padding: 0 30px 26px;
    border-radius: 0;
}

.block--catalog-home .catalog-card__media {
    min-height: 360px;
    padding: 24px 0 0;
    border-radius: 0;
}

.block--catalog-home .catalog-card__media img {
    width: 100%;
    max-width: none;
    max-height: none;
    height: 336px;
    object-fit: contain;
    object-position: center bottom;
}

.block--catalog-home .catalog-card__title {
    margin-top: 16px;
    font-size: 16px;
    text-align: center;
}

.block--catalog-home .catalog-card__tags span {
    min-height: 28px;
    padding: 5px 9px;
    font-size: 12px;
}

.product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border-top: 1px solid #e7e7e7;
    border-left: 1px solid #e7e7e7;
    background: #fff;
}

.product-card {
    position: relative;
    display: grid;
    grid-template-rows: 360px minmax(190px, auto);
    min-height: 550px;
    overflow: hidden;
    border: 0;
    border-right: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    transition: background 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card:hover,
.product-card:focus-within {
    z-index: 1;
    border-color: rgba(245, 122, 31, 0.34);
    background: #fff8ef;
    box-shadow:
        inset 0 0 0 2px rgba(245, 122, 31, 0.22),
        0 18px 32px rgba(30, 34, 43, 0.12);
}

.product-card__image {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 360px;
    padding: 24px 28px 0;
    background: #fff;
}

.product-card__image img {
    width: 100%;
    height: 336px;
    object-fit: contain;
    object-position: center bottom;
}

.product-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 0;
    padding: 16px 30px 26px;
}

.product-card h3 {
    margin: 0;
    color: #111;
    font-family: "Noto Sans", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.38;
    text-align: center;
}

.product-card__footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: flex-end;
    gap: 18px;
    margin-top: auto;
    padding-top: 28px;
}

.product-card__price-wrap {
    min-width: 0;
}

.product-card__price {
    color: #bd0000;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.product-card__price--muted {
    color: #6d6d6d;
    white-space: normal;
}

.product-card__note {
    display: grid;
    gap: 3px;
    margin-top: 8px;
    color: #555;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
}

.product-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid #d76612;
    border-radius: 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    background: linear-gradient(180deg, var(--accent-strong) 0%, var(--accent) 55%, var(--accent-2) 100%);
    box-shadow: 0 10px 22px rgba(245, 122, 31, 0.24);
    white-space: nowrap;
}

.product-card__link:visited {
    color: #fff;
}

.product-card__link:hover,
.product-card__link:focus-visible {
    border-color: #bf5713;
    color: #fff;
    box-shadow: 0 12px 26px rgba(245, 122, 31, 0.32);
}

.price {
    color: var(--text);
    font-size: 20px;
    font-weight: 700;
}

.price--muted {
    color: #6d8092;
}

.price--big {
    font-size: clamp(30px, 2.3vw, 44px);
}

.page-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-card {
    display: flex;
    align-items: center;
    min-height: 74px;
    padding: 16px 18px;
    border-radius: 22px;
    font-family: "Noto Sans", Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.18;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-card:hover,
.page-card:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(245, 122, 31, 0.26);
    box-shadow: var(--shadow);
}

.service-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-showcase__card,
.service-showcase__card--static {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 100%;
    padding: 16px;
    border-radius: 0;
}

.service-showcase__image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 248px;
    padding: 18px;
    border-radius: 0;
    background: linear-gradient(180deg, #fbfcfe 0%, #eff4f8 100%);
}

.service-showcase__image img {
    width: 100%;
    height: 210px;
    object-fit: contain;
}

.service-showcase__title {
    font-family: "Noto Sans", Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.16;
}

.company-home__copy {
    display: grid;
    gap: 16px;
    color: var(--text-soft);
    font-size: 18px;
}

.company-home__copy p {
    margin: 0;
}

.company-home {
    position: relative;
}

.partner-band {
    margin-top: 26px;
    padding: 18px 0 10px;
}

.partner-band__track {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
    padding: 28px 18px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(34, 49, 66, 0.12);
    box-shadow: var(--shadow-soft);
}

.partner-band__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 92px;
    border-radius: 0;
    transition: transform 0.18s ease;
}

.partner-band__item:hover,
.partner-band__item:focus-visible {
    transform: translateY(-2px);
}

.partner-band__logo {
    width: 100%;
    max-width: 180px;
    max-height: 76px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.66;
    transition: opacity 0.18s ease, filter 0.18s ease;
}

.partner-band__item:hover .partner-band__logo,
.partner-band__item:focus-visible .partner-band__logo {
    opacity: 1;
    filter: grayscale(0);
}

.hero {
    margin-top: 10px;
}

.hero--carousel {
    position: relative;
}

.hero-carousel {
    position: relative;
    min-height: 620px;
}

.hero-slide {
    position: relative;
    display: none;
    grid-template-columns: minmax(0, 0.92fr) minmax(580px, 1.08fr);
    gap: 22px;
    align-items: stretch;
    min-height: 620px;
    padding: 42px 34px 90px;
    border-radius: 34px;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 20px 40px rgba(30, 34, 43, 0.2);
}

.hero-slide.is-active {
    display: grid;
}

.hero-stage__eyebrow {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 46px;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(180deg, rgba(245, 122, 31, 0.2) 0%, rgba(229, 98, 17, 0.14) 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.18;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.detail-chip {
    background: linear-gradient(180deg, rgba(245, 122, 31, 0.22) 0%, rgba(229, 98, 17, 0.16) 100%);
    color: rgba(255, 248, 241, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-carousel__controls {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.hero-carousel__arrow {
    position: absolute;
    bottom: 18px;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: rgba(239, 244, 248, 0.16);
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(8px);
    pointer-events: auto;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-carousel__arrow[data-slide-prev] {
    left: 18px;
}

.hero-carousel__arrow[data-slide-next] {
    right: 18px;
}

.hero-carousel__arrow:hover,
.hero-carousel__arrow:focus-visible {
    background: rgba(245, 122, 31, 0.82);
    transform: translateY(-1px);
}

.hero-carousel__dots {
    position: absolute;
    left: 50%;
    bottom: 26px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(-50%);
    pointer-events: auto;
}

.hero-carousel__dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease;
}

.hero-carousel__dot.is-active,
.hero-carousel__dot:hover,
.hero-carousel__dot:focus-visible {
    background: var(--accent-strong);
    transform: scale(1.18);
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.feature-strip__card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    min-height: 124px;
    padding: 24px 24px 22px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 88% 18%, rgba(245, 122, 31, 0.14), transparent 30%),
        linear-gradient(180deg, rgba(255, 252, 247, 0.98) 0%, rgba(247, 238, 227, 0.98) 100%);
    border: 1px solid rgba(245, 122, 31, 0.14);
    box-shadow:
        0 18px 34px rgba(30, 34, 43, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.52);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-strip__card::before {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: 0;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--accent-strong) 0%, var(--accent) 52%, var(--accent-2) 100%);
    opacity: 0.95;
}

.feature-strip__card::after {
    content: "";
    position: absolute;
    right: -22px;
    top: -24px;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 122, 31, 0.16) 0%, rgba(245, 122, 31, 0.04) 48%, transparent 72%);
    pointer-events: none;
}

.feature-strip__card:hover,
.feature-strip__card:focus-within {
    transform: translateY(-2px);
    border-color: rgba(245, 122, 31, 0.22);
    box-shadow:
        0 22px 38px rgba(30, 34, 43, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.feature-strip__icon {
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 242, 229, 0.82) 100%),
        linear-gradient(180deg, rgba(255, 138, 43, 0.2) 0%, rgba(229, 98, 17, 0.14) 100%);
    border: 1px solid rgba(245, 122, 31, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 10px 18px rgba(245, 122, 31, 0.08);
}

.feature-strip__icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(29%) sepia(95%) saturate(2247%) hue-rotate(356deg) brightness(98%) contrast(92%);
}

.feature-strip__title {
    position: relative;
    z-index: 1;
    min-width: 0;
    font-family: "Noto Sans", Arial, sans-serif;
    font-size: clamp(19px, 1.08vw, 23px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.breadcrumbs {
    margin: 0 0 16px;
    color: var(--text-soft);
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--accent);
}

.page-hero,
.product-hero {
    margin-top: 22px;
    padding: 34px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(34, 49, 66, 0.12);
    box-shadow: var(--shadow);
}

.page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
    gap: 24px;
}

.page-hero__main {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-hero__aside {
    align-self: stretch;
}

.page-hero h1,
.product-panel--summary h1 {
    font-size: clamp(38px, 3vw, 62px);
}

.product-panel--summary h1 {
    font-size: clamp(19px, 1.5vw, 31px);
}

.product-panel--summary .price--big {
    font-size: clamp(15px, 1.15vw, 22px);
}

.page-hero__main > p {
    margin: 0;
    color: var(--text-soft);
    font-size: 18px;
}

.side-card {
    padding: 20px;
    border-radius: 28px;
}

.side-link-list {
    display: grid;
    gap: 10px;
}

.side-link-list a {
    display: block;
    padding: 13px 16px;
    border-radius: 16px;
    color: var(--text-soft);
    font-weight: 700;
    background: #f7f0e4;
}

.side-link-list a:hover,
.side-link-list a:focus-visible,
.side-link-list .is-active {
    background: linear-gradient(180deg, rgba(245, 122, 31, 0.2) 0%, rgba(245, 122, 31, 0.12) 100%);
    color: #223142;
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: 24px;
}

.product-panel {
    min-width: 0;
    border-radius: 30px;
}

.product-panel--media {
    --product-media-height: clamp(500px, 34vw, 595px);
    align-self: start;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--product-media-height);
    min-height: 0;
    padding: 3px;
    overflow: hidden;
    background: linear-gradient(180deg, #fbfcfe 0%, #eef3f8 100%);
}

.product-panel--media img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    background: #fff;
    border-radius: 0;
    object-fit: contain;
    object-position: center;
}

.product-panel--summary {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.product-summary-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.product-summary-head.has-certificate {
    grid-template-columns: minmax(0, 1fr) minmax(116px, 150px);
}

.product-summary-heading {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
}

.product-summary-content {
    display: block;
}

.product-summary-content__main {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
}

.product-certificate {
    display: grid;
    justify-items: center;
    justify-self: end;
    width: min(150px, 100%);
    gap: 9px;
    text-align: center;
}

.product-certificate__preview {
    display: grid;
    place-items: center;
    width: 118px;
    height: 144px;
    padding: 8px;
    border: 1px solid rgba(34, 49, 66, 0.16);
    border-radius: 0;
    background: #ffffff;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(34, 49, 66, 0.1);
}

.product-certificate__preview:hover,
.product-certificate__preview:focus-visible {
    border-color: var(--accent);
    box-shadow: 0 14px 30px rgba(245, 122, 31, 0.22);
    outline: none;
}

.product-certificate__preview img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-certificate__pdf-preview {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
}

.product-certificate__pdf-preview iframe {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border: 0;
    background: #ffffff;
    pointer-events: none;
}

.product-certificate__pdf-fallback {
    position: absolute;
    inset: 16px 18px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(245, 122, 31, 0.82);
    background: linear-gradient(180deg, #ffffff 0%, #fff4eb 100%);
    color: var(--accent);
    font-weight: 800;
}

.product-certificate__download {
    color: var(--accent);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.product-certificate__download:hover,
.product-certificate__download:focus-visible {
    color: var(--accent-2);
}

.detail-chip {
    align-self: flex-start;
    background: rgba(247, 239, 226, 0.96);
    color: var(--text-soft);
    border: 1px solid rgba(34, 49, 66, 0.12);
}

.badge {
    align-self: flex-start;
    background: rgba(245, 122, 31, 0.16);
    color: #bf5713;
}

.order-note {
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(245, 122, 31, 0.14);
    color: #8f4d17;
    font-weight: 700;
}

.richtext {
    color: var(--text-soft);
    font-size: 18px;
}

.product-panel--summary .richtext {
    color: #000;
}

.richtext > :first-child {
    margin-top: 0;
}

.richtext > :last-child {
    margin-bottom: 0;
}

.richtext a {
    color: var(--accent);
}

body.product-certificate-modal-open {
    overflow: hidden;
}

.product-certificate-modal {
    position: fixed;
    inset: 0;
    z-index: 2400;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
}

.product-certificate-modal[hidden] {
    display: none;
}

.product-certificate-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.product-certificate-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 16, 22, 0.84);
}

.product-certificate-modal__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(1180px, 96vw);
    height: min(860px, 92vh);
    padding: 18px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(12, 16, 22, 0.42);
}

.product-certificate-modal__content {
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 0;
    background: #f5f7fa;
}

.product-certificate-modal__image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: pointer;
    background: #ffffff;
}

.product-certificate-modal__frame {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #ffffff;
}

.product-certificate-modal__close {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(23, 27, 32, 0.92);
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(12, 16, 22, 0.22);
}

.product-certificate-modal__close:hover,
.product-certificate-modal__close:focus-visible {
    background: var(--accent-strong);
}

.empty-state {
    padding: 40px;
    text-align: center;
}

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

.contact-card {
    display: grid;
    gap: 8px;
    padding: 22px;
    border-radius: 24px;
}

.contact-card__label {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-card .contact-icon-link {
    color: var(--text);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.contact-card .contact-icon-link--email {
    font-size: 16px;
    font-weight: 600;
    word-break: break-word;
}

.site-footer {
    margin-top: 32px;
    padding: 38px 0 18px;
    background: linear-gradient(180deg, #1a2633 0%, #121b25 100%);
    color: rgba(240, 245, 249, 0.88);
}

.footer-brand {
    display: grid;
    align-content: start;
    gap: 18px;
}

.footer-grid {
    grid-template-columns: 1.25fr repeat(5, minmax(0, 1fr));
    gap: 24px;
}

.footer-brand__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    min-height: 110px;
    padding: 14px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
}

.footer-brand__logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-brand__text,
.footer-note,
.footer-bottom {
    color: rgba(240, 245, 249, 0.72);
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-column h2 {
    margin: 0 0 6px;
    color: #fff;
    font-family: "Noto Sans", Arial, sans-serif;
    font-size: 22px;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
    color: var(--accent-strong);
}

.footer-bottom {
    justify-content: space-between;
    gap: 16px;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
}

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

.hero--home {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 24px;
    margin-top: 22px;
}

.hero-copy,
.hero-copy--home,
.hero-stage,
.hero-stage__panel {
    min-width: 0;
}

.hero-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.hero-quick-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(248, 250, 252, 0.96);
    font-weight: 700;
}

.hero-stage {
    display: grid;
    gap: 18px;
}

.hero-stage__figure {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.hero-stage__figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

.hero-stage__products {
    display: grid;
    gap: 14px;
}

.hero-stage__product {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
}

.hero-stage__product-copy {
    display: grid;
    gap: 6px;
}
