:root {
    color-scheme: light;
    --color-bg: #ffffff;
    --color-surface: #ffffff;
    --color-text: #121411;
    --color-muted: #6e736c;
    --color-accent: #2c7608;
    --color-accent-2: #67ad43;
    --color-soft: #f2f9f1;
    --color-border: rgba(255, 255, 255, 0.55);
    --gradient-accent: linear-gradient(82deg, var(--color-accent) 12%, var(--color-accent-2) 115%);
    --font-display: "Wix Madefor Display", Arial, Helvetica, sans-serif;
    --font-body: "Inter", Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: clip;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
}

a {
    color: inherit;
    text-decoration: none;
}

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

.page-shell {
    width: min(1268px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    z-index: 20;
    top: 55px;
    left: 50%;
    width: min(1268px, calc(100% - 40px));
    min-height: 65px;
    padding: 7px 8px 7px 31px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid var(--color-border);
    border-radius: 35px;
    transform: translateX(-50%);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(18, 20, 17, 0);
    transition: top 280ms ease, background-color 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.site-header.is-scrolled {
    top: 16px;
    background-color: rgba(18, 20, 17, 0.72);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 18px 40px rgba(18, 20, 17, 0.18);
}

.site-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    width: 255px;
    height: 48px;
    overflow: visible;
}

.site-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: left center;
}

.site-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 36px;
}

.site-nav a,
.site-nav__trigger {
    position: relative;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.55;
}

.site-nav > a::after,
.site-nav__trigger::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    opacity: 0;
    transform: scaleX(0.45);
    transform-origin: center;
    transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav__trigger:hover {
    color: rgba(255, 255, 255, 0.75);
}

.site-nav > a.is-active::after,
.site-nav > a[aria-current="page"]::after,
.site-nav__trigger.is-active::after,
.site-nav__trigger[aria-current="page"]::after {
    opacity: 1;
    transform: scaleX(1);
}

.site-nav__item {
    position: relative;
}

.site-nav__trigger {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.site-nav__trigger i {
    font-size: 11px;
    transition: transform 180ms ease;
}

.site-nav__item:hover .site-nav__trigger i,
.site-nav__item:focus-within .site-nav__trigger i,
.site-nav__item.is-open .site-nav__trigger i {
    transform: rotate(180deg);
}

.site-nav__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    z-index: 30;
    width: max-content;
    min-width: 260px;
    max-width: min(360px, 90vw);
    padding: 10px;
    background: rgba(18, 20, 17, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    box-shadow: 0 22px 50px rgba(18, 20, 17, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -8px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(14px);
}

.site-nav__dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 12px;
}

.site-nav__item:hover .site-nav__dropdown,
.site-nav__item:focus-within .site-nav__dropdown,
.site-nav__item.is-open .site-nav__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.site-nav__dropdown-link {
    display: block;
    padding: 11px 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.25;
    border-radius: 10px;
}

.site-nav__dropdown-link:hover,
.site-nav__dropdown-link.is-active,
.site-nav__dropdown-link[aria-current="page"] {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.header-contact {
    flex: 0 0 auto;
    margin-right: 23px;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.header-phone {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1.5px;
    white-space: nowrap;
}

.header-email {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.header-phone:hover,
.header-email:hover {
    color: rgba(255, 255, 255, 0.75);
}

.header-social {
    position: fixed;
    z-index: 21;
    top: 66px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: rgba(18, 20, 17, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    box-shadow: 0 16px 32px rgba(18, 20, 17, 0.16);
    backdrop-filter: blur(10px);
    transition: top 280ms ease, background-color 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.header-social.is-scrolled {
    top: 27px;
    background: rgba(18, 20, 17, 0.76);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 32px rgba(18, 20, 17, 0.24);
}

.header-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    transition: background-color 180ms ease, opacity 180ms ease;
}

.header-social a:hover {
    background: rgba(255, 255, 255, 0.16);
}

.header-social i {
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
}

@media (min-width: 760px) and (max-width: 1600px) {
    .header-social {
        top: auto;
        right: auto;
        bottom: 24px;
        left: 24px;
        flex-direction: column;
        padding: 10px 8px;
        gap: 8px;
    }

    .header-social.is-scrolled {
        top: auto;
    }
}

.mobile-menu-toggle,
.mobile-menu {
    display: none;
}

.nav-button,
.pill-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    gap: 16px;
    width: fit-content;
    max-width: 100%;
    min-width: 185px;
    min-height: 50px;
    padding: 8px 8px 8px 24px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    border: 0;
    border-radius: 35px;
    background: var(--gradient-accent);
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 10px 22px rgba(44, 118, 8, 0);
    transform: translateY(0);
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.nav-button::after,
.pill-button::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.34) 44%, transparent 68%);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-65%);
    transition: opacity 180ms ease, transform 360ms ease;
}

.nav-button:hover,
.nav-button:focus-visible,
.pill-button:not(:disabled):hover,
.pill-button:not(:disabled):focus-visible {
    box-shadow: 0 14px 26px rgba(44, 118, 8, 0.18);
    transform: translateY(-2px);
}

.nav-button:hover::after,
.nav-button:focus-visible::after,
.pill-button:not(:disabled):hover::after,
.pill-button:not(:disabled):focus-visible::after {
    opacity: 1;
    transform: translateX(65%);
}

.nav-button:active,
.pill-button:not(:disabled):active {
    box-shadow: 0 7px 16px rgba(44, 118, 8, 0.14);
    transform: translateY(0) scale(0.98);
}

.pill-button:disabled {
    cursor: wait;
    opacity: 0.72;
    box-shadow: none;
    transform: none;
}

.pill-button:disabled::after {
    opacity: 0;
}

.nav-button {
    flex: 0 0 auto;
    width: 177px;
}

.button-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.nav-button:hover .button-icon,
.nav-button:focus-visible .button-icon,
.pill-button:not(:disabled):hover .button-icon,
.pill-button:not(:disabled):focus-visible .button-icon {
    transform: translateX(3px);
}

.button-icon i {
    color: var(--color-accent);
    font-size: 15px;
    line-height: 1;
}

body.is-modal-open {
    overflow: hidden;
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
}

.contact-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.contact-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 20, 17, 0.58);
    backdrop-filter: blur(6px);
}

.contact-modal__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1fr);
    width: min(860px, calc(100vw - 48px));
    min-height: 500px;
    overflow: visible;
    padding: 0;
    background: #ffffff;
    border: 1px solid rgba(18, 20, 17, 0.08);
    border-radius: 18px;
    box-shadow: 0 28px 90px rgba(18, 20, 17, 0.28);
    transform: translateY(12px);
    transition: transform 180ms ease;
    outline: none;
}

.contact-modal.is-open .contact-modal__dialog {
    transform: translateY(0);
}

.contact-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--color-text);
    background: #f1f5ef;
    border: 1px solid rgba(18, 20, 17, 0.08);
    border-radius: 50%;
    cursor: pointer;
}

.contact-modal__close i {
    font-size: 20px;
    line-height: 1;
}

.contact-modal__info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 32px;
    color: #ffffff;
    background: linear-gradient(140deg, #1f5907 0%, #32840d 100%);
    border-radius: 18px 0 0 18px;
}

.contact-modal__info .section-kicker {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
}

.contact-modal__info .section-kicker i {
    color: #ffffff;
}

.contact-modal h2 {
    margin: 22px 0 12px;
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 500;
    line-height: 1.08;
}

.contact-modal__text {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.55;
}

.contact-modal__contacts {
    display: grid;
    gap: 10px;
    margin-top: auto;
}

.contact-modal__contact {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
}

.contact-modal__contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.contact-modal__contact span span {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
    line-height: 1.2;
}

.contact-modal__contact strong {
    display: block;
    overflow-wrap: anywhere;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.contact-modal__social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.contact-modal__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

.contact-modal__body {
    min-width: 0;
    padding: 72px 32px 30px;
}

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

.contact-modal__form label {
    display: grid;
    gap: 8px;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 600;
}

.contact-modal__form input {
    width: 100%;
    padding: 13px 15px;
    color: var(--color-text);
    font: inherit;
    font-weight: 400;
    line-height: 1.35;
    background: #f7faf6;
    border: 1px solid rgba(18, 20, 17, 0.12);
    border-radius: 14px;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-modal__field-wide,
.contact-modal__legal,
.contact-modal__form .pill-button,
.contact-modal__status {
    grid-column: 1 / -1;
}

.contact-modal__trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-modal__form input:focus {
    background: #ffffff;
    border-color: rgba(44, 118, 8, 0.45);
    box-shadow: 0 0 0 4px rgba(44, 118, 8, 0.1);
}

.contact-modal__legal {
    margin: 2px 0 4px;
    color: var(--color-muted);
    font-size: 12px;
    line-height: 1.45;
}

.contact-modal__legal a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-modal__consent {
    display: flex !important;
    align-items: flex-start;
    gap: 6px;
    font-weight: 400;
    cursor: pointer;
}

.contact-modal__consent input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    flex-shrink: 0;
    width: 14px !important;
    height: 14px !important;
    padding: 0 !important;
    margin-top: 2px;
    border: 1.5px solid rgba(18, 20, 17, 0.3);
    border-radius: 3px;
    background: #f7faf6;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
    position: relative;
}

.contact-modal__consent input[type="checkbox"]:checked {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.contact-modal__consent input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 3px;
    width: 4px;
    height: 7px;
    border: 1.5px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.contact-modal__consent input[type="checkbox"]:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 118, 8, 0.18);
    border-color: var(--color-accent);
}

.contact-modal__status {
    min-height: 20px;
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.4;
}

.contact-modal__status.is-success {
    color: var(--color-accent);
}

.contact-modal__status.is-error {
    color: #b42318;
}

.contact-modal__mobile-phone {
    display: none;
}

.cookie-consent {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 80;
    display: flex;
    align-items: center;
    gap: 16px;
    width: min(420px, calc(100vw - 48px));
    padding: 16px 18px;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(44, 118, 8, 0.18);
    border-radius: 16px;
    box-shadow: 0 20px 55px rgba(18, 20, 17, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
    backdrop-filter: blur(12px);
}

.cookie-consent.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.cookie-consent p {
    margin: 0;
    min-width: 0;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.45;
}

.cookie-consent__button {
    flex: 0 0 auto;
    min-width: 62px;
    padding: 10px 16px;
    color: #ffffff;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    background: var(--gradient-accent);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(44, 118, 8, 0.18);
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(44, 118, 8, 0.24);
}

.cookie-consent__button:focus-visible {
    outline: 3px solid rgba(103, 173, 67, 0.28);
    outline-offset: 3px;
}

.quick-contact {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 75;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px) scale(0.96);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
}

.quick-contact.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.quick-contact__list {
    position: absolute;
    right: 0;
    bottom: calc(100% + 10px);
    display: grid;
    justify-items: center;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.quick-contact.is-open .quick-contact__list {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.quick-contact__action,
.quick-contact__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #ffffff;
    background: var(--gradient-accent);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    box-shadow: 0 14px 30px rgba(44, 118, 8, 0.28);
    backdrop-filter: blur(10px);
}

.quick-contact__action {
    opacity: 0;
    transform: translateY(10px) scale(0.9);
    transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.quick-contact.is-open .quick-contact__action {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.quick-contact.is-open .quick-contact__action:nth-child(2) {
    transition-delay: 25ms;
}

.quick-contact.is-open .quick-contact__action:nth-child(3) {
    transition-delay: 50ms;
}

.quick-contact.is-open .quick-contact__action:nth-child(4) {
    transition-delay: 75ms;
}

.quick-contact.is-open .quick-contact__action:nth-child(5) {
    transition-delay: 100ms;
}

.quick-contact__toggle {
    position: relative;
    padding: 0;
    font: inherit;
    border: 0;
    cursor: pointer;
    isolation: isolate;
    animation: quick-contact-pulse 2600ms ease-out infinite;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.quick-contact__toggle::before {
    content: "";
    position: absolute;
    inset: -8px;
    z-index: -1;
    border-radius: inherit;
    background: rgba(103, 173, 67, 0.2);
    opacity: 0;
    transform: scale(0.82);
    animation: quick-contact-ring 2600ms ease-out infinite;
}

.quick-contact__toggle:hover,
.quick-contact__toggle:focus-visible,
.quick-contact__action:hover,
.quick-contact__action:focus-visible {
    box-shadow: 0 18px 36px rgba(44, 118, 8, 0.34);
    transform: translateY(-2px);
}

.quick-contact__toggle:focus-visible,
.quick-contact__action:focus-visible {
    outline: 3px solid rgba(103, 173, 67, 0.34);
    outline-offset: 4px;
}

.quick-contact__toggle i,
.quick-contact__action i {
    font-size: 20px;
    line-height: 1;
}

@keyframes quick-contact-pulse {
    0%,
    72%,
    100% {
        transform: scale(1);
    }
    82% {
        transform: scale(1.07);
    }
}

@keyframes quick-contact-ring {
    0%,
    70% {
        opacity: 0;
        transform: scale(0.82);
    }
    76% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(1.28);
    }
}

@media (prefers-reduced-motion: reduce) {
    .quick-contact,
    .quick-contact__list,
    .quick-contact__action,
    .quick-contact__toggle {
        transition: none;
        animation: none;
    }

    .quick-contact__toggle::before {
        animation: none;
    }
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.25;
}

.section-kicker i {
    width: 25px;
    color: var(--color-accent);
    font-size: 20px;
    line-height: 1;
    text-align: center;
}

.section-kicker--light i {
    color: #ffffff;
}

.page-hero {
    min-height: 62vh;
    padding-top: 190px;
    padding-bottom: 96px;
}

.page-hero h1 {
    margin: 0 0 20px;
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 0;
}

.page-hero p {
    width: min(560px, 100%);
    margin: 0;
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.55;
}

.section-kicker--light {
    color: #ffffff;
}

.hero-section {
    min-height: 100vh;
    padding-top: 398px;
    color: #ffffff;
    background:
        linear-gradient(rgba(18, 20, 17, 0.28), rgba(18, 20, 17, 0.28)),
        url("../img/hero_image.webp") center / cover no-repeat;
}

.hero-section__inner {
    position: relative;
    min-height: 397px;
}

.hero-section h1,
.about-card h2,
.quality-heading h2,
.choose-content h2,
.section-heading h2 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: 0;
}

.hero-section h1 {
    width: min(611px, 100%);
    margin: 0;
    padding-top: 7px;
    font-size: 62px;
    line-height: 1.25;
}

.hero-section__text {
    width: min(613px, 100%);
    margin: 19px 0 58px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.55;
}

.hero-section__actions {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
}

.hero-section .pill-button {
    width: min(258px, 100%);
    min-width: 258px;
    height: 50px;
    min-height: 50px;
}

.hero-section__secondary-button {
    color: #ffffff;
    background: transparent;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.74);
}

.hero-section__secondary-button .button-icon {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.hero-section__secondary-button .button-icon i {
    color: #ffffff;
}

.hero-feature {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 205px;
    min-height: 85px;
    padding: 19px 22px;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.hero-feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    background: var(--gradient-accent);
    border-radius: 50%;
}

.hero-feature__icon i {
    color: #ffffff;
    font-size: 19px;
    line-height: 1;
}

.hero-feature--top {
    right: 118px;
    top: 180px;
}

.hero-feature--left {
    right: 237px;
    top: 297px;
}

.hero-feature--right {
    right: 0;
    top: 297px;
}

.about-section {
    position: relative;
    display: grid;
    grid-template-columns: 655px 1fr;
    gap: 32px;
    padding-top: 115px;
}

.about-visual {
    position: relative;
    min-height: 396px;
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(18, 20, 17, 0.05) 0%, rgba(18, 20, 17, 0.45) 100%),
        url("../img/about-field-material.webp") center / cover no-repeat;
}

.about-visual__panel {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 29px 20px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 17px;
    backdrop-filter: blur(10px);
}

.about-visual__panel p {
    width: 289px;
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
}

.about-visual__panel .pill-button {
    min-width: 176px;
    flex: 0 0 auto;
}

.about-card {
    min-height: 396px;
    padding: 73px 52px;
    text-align: center;
    border-radius: 25px;
    background: var(--color-soft);
}

.about-card h2 {
    width: min(476px, 100%);
    margin: 13px auto 20px;
    font-size: 48px;
    line-height: 1.25;
}

.about-card p {
    width: min(371px, 100%);
    margin: 0 auto;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.55;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 402px);
    gap: 62px 55px;
    padding-top: 86px;
}

.benefit-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.benefit-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    background: linear-gradient(27deg, var(--color-accent) 55%, var(--color-accent-2) 103%);
    border-radius: 12px;
}

.benefit-item__icon i {
    color: #ffffff;
    font-size: 30px;
    line-height: 1;
}

.benefit-item h3 {
    margin: 0 0 21px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.25;
}

.benefit-item p {
    margin: 0;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.55;
}

.about-side-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 323px;
    height: 286px;
    border-radius: 25px;
    background: url("../img/home/about-packaging-materials.webp") center / cover no-repeat;
}

.quality-section {
    display: grid;
    grid-template-columns: minmax(0, 0.3fr) minmax(0, 0.7fr);
    column-gap: 74px;
    row-gap: 48px;
    padding-top: 145px;
    padding-bottom: 145px;
}

.quality-heading {
    grid-column: 1 / -1;
}

.quality-heading h2 {
    width: min(920px, 100%);
    margin: 7px 0 22px;
    font-size: 48px;
    line-height: 1.25;
}

.quality-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.quality-copy p {
    margin: 0 0 36px;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.55;
}

.quality-copy .pill-button {
    min-width: 198px;
}

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

.stat-card {
    min-height: 266px;
    padding: 31px 32px;
    background: var(--color-soft);
    border-radius: 20px;
}

.stat-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 45px;
}

.stat-card__icon i {
    color: var(--color-accent);
    font-size: 42px;
    line-height: 1;
}

.stat-card strong {
    display: block;
    margin-bottom: 12px;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 500;
    line-height: 1.25;
}

.stat-card span:last-child {
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.55;
}

.choose-section {
    display: grid;
    grid-template-columns: minmax(320px, 424px) minmax(0, 1fr);
    column-gap: clamp(36px, 5vw, 76px);
    row-gap: 32px;
    min-height: 547px;
    padding-bottom: 178px;
}

.choose-image {
    background: url("../img/home/why-farm-packaging.webp") center / cover no-repeat;
    border-radius: 25px;
}

.choose-image--large {
    grid-column: 1;
    grid-row: 1;
    min-height: 547px;
    width: 100%;
    height: 100%;
}

.choose-content {
    grid-column: 2;
    grid-row: 1;
    padding-top: 0;
}

.choose-content h2 {
    width: min(760px, 100%);
    margin: 10px 0 21px;
    font-size: 48px;
    line-height: 1.25;
}

.choose-content > p {
    width: min(650px, 100%);
    margin: 0;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.55;
}

.choose-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: min(536px, 100%);
    margin: 37px 0 0;
    padding: 0;
    list-style: none;
}

.choose-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-text);
    font-size: 20px;
    line-height: 1.55;
}

.choose-list i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    color: var(--color-accent);
    font-size: 20px;
    line-height: 1;
}

.excellence-section {
    padding-bottom: 112px;
}

.section-heading {
    width: min(536px, 100%);
    margin: 0 auto;
    text-align: center;
}

.section-heading h2 {
    margin: 10px 0 21px;
    font-size: 48px;
    line-height: 1.25;
}

.section-heading p {
    margin: 0;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.55;
}

.excellence-layout {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 68px;
}

.excellence-section .section-heading {
    width: min(760px, 100%);
}

.home-product-card {
    position: relative;
    display: block;
    min-height: 300px;
    overflow: hidden;
    color: #ffffff;
    border-radius: 14px;
    background: var(--color-soft);
    box-shadow: 0 18px 42px rgba(18, 20, 17, 0.08);
    transition: transform 320ms ease, box-shadow 320ms ease;
}

.home-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 64px rgba(18, 20, 17, 0.18);
}

.home-product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 20, 17, 0.05) 0%, rgba(18, 20, 17, 0.42) 100%);
    pointer-events: none;
    transition: background 320ms ease;
}

.home-product-card:hover::after {
    background: linear-gradient(180deg, rgba(18, 20, 17, 0.02) 0%, rgba(18, 20, 17, 0.52) 100%);
}

.home-product-card__image,
.home-product-card__placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-product-card__image {
    object-fit: cover;
    transition: transform 620ms ease;
}

.home-product-card:hover .home-product-card__image {
    transform: scale(1.05);
}

.home-product-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.72), transparent 0 16%, transparent 17%),
        linear-gradient(135deg, var(--color-soft) 0%, #dfeeda 100%);
}

.home-product-card__placeholder img {
    width: 72px;
    height: 72px;
    opacity: 0.32;
    object-fit: contain;
}

.home-product-card__panel {
    position: absolute;
    z-index: 1;
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 112px;
    padding: 16px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: background 320ms ease, border-color 320ms ease, transform 320ms ease;
}

.home-product-card:hover .home-product-card__panel {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.72);
    transform: translateY(-2px);
}

.home-product-card__panel h3 {
    min-height: 0;
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.25;
}

.home-product-card__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--color-accent);
    background: #ffffff;
    border-radius: 50%;
    transition: transform 240ms ease, background 240ms ease, color 240ms ease;
}

.home-product-card:hover .home-product-card__button {
    color: #ffffff;
    background: var(--gradient-accent);
    transform: translateX(4px);
}

.home-product-card__button i {
    font-size: 15px;
    line-height: 1;
}

.excellence-empty {
    margin-top: 68px;
}

.intelligence-section {
    position: relative;
    padding-bottom: 17px;
}

.intelligence-top {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr) 185px;
    align-items: start;
    gap: 64px;
}

.intelligence-copy h2 {
    width: min(100%, 560px);
    margin: 0 0 22px;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0;
}

.intelligence-copy p {
    width: min(100%, 520px);
    margin: 0;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.55;
}

.intelligence-top .pill-button {
    margin-top: 139px;
}

.intelligence-graphic {
    position: relative;
    min-height: 475px;
    margin-top: 72px;
}

.agri-wheel {
    position: absolute;
    left: 399px;
    top: 0;
    width: 475px;
    height: 475px;
    overflow: hidden;
    border-radius: 50%;
    contain: paint;
}

.agri-wheel__base,
.agri-wheel__center,
.agri-wheel__stage {
    position: absolute;
}

.agri-wheel__base {
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border: 2px solid rgba(44, 118, 8, 0.15);
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(103, 173, 67, 0.16) 0 27%, transparent 28%),
        repeating-conic-gradient(from -112.5deg, rgba(44, 118, 8, 0.18) 0deg 0.7deg, transparent 0.7deg 45deg),
        conic-gradient(
            from -112.5deg,
            rgba(44, 118, 8, 0.05) 0deg 45deg,
            rgba(103, 173, 67, 0.16) 45deg 90deg,
            rgba(44, 118, 8, 0.05) 90deg 135deg,
            rgba(103, 173, 67, 0.16) 135deg 180deg,
            rgba(44, 118, 8, 0.05) 180deg 225deg,
            rgba(103, 173, 67, 0.16) 225deg 270deg,
            rgba(44, 118, 8, 0.05) 270deg 315deg,
            rgba(103, 173, 67, 0.16) 315deg 360deg
        );
    box-shadow: inset 0 0 0 76px rgba(242, 249, 241, 0.74);
}

.agri-wheel__center {
    z-index: 3;
    left: 113px;
    top: 113px;
    width: 233px;
    height: 233px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 72px;
    line-height: 1;
    background: var(--gradient-accent);
    border: 12px solid #ffffff;
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 22px 50px rgba(18, 20, 17, 0.16);
}

.agri-wheel__stage {
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0;
    color: var(--color-accent);
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
    appearance: none;
    background: transparent;
    border: 0;
    border-radius: 50%;
    clip-path: polygon(50% 50%, 30.87% 3.81%, 69.13% 3.81%);
    cursor: pointer;
    transform: rotate(var(--stage-rotation));
    transition: color 180ms ease, background 180ms ease;
}

.agri-wheel__stage-content {
    position: absolute;
    left: 50%;
    top: 8%;
    width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    pointer-events: none;
    transform: translateX(-50%) rotate(var(--content-rotation));
    transition: color 180ms ease, transform 180ms ease;
}

.agri-wheel__stage i {
    font-size: 28px;
    line-height: 1;
    transition: transform 180ms ease;
}

.agri-wheel__stage:hover,
.agri-wheel__stage:focus-visible,
.agri-wheel__stage.is-active {
    z-index: 2;
    color: #245f08;
    background: rgba(255, 255, 255, 0.52);
}

.agri-wheel__stage:hover .agri-wheel__stage-content,
.agri-wheel__stage:focus-visible .agri-wheel__stage-content,
.agri-wheel__stage.is-active .agri-wheel__stage-content {
    transform: translateX(-50%) rotate(var(--content-rotation)) scale(1.06);
}

.agri-wheel__stage:hover i,
.agri-wheel__stage:focus-visible i,
.agri-wheel__stage.is-active i {
    transform: translateY(-2px);
}

.agri-wheel__stage:focus {
    outline: none;
}

.agri-wheel__stage:focus-visible {
    outline: 3px solid rgba(44, 118, 8, 0.26);
    outline-offset: -16px;
}

.agri-wheel__stage--1 {
    --stage-rotation: 45deg;
    --content-rotation: -45deg;
}

.agri-wheel__stage--2 {
    --stage-rotation: 90deg;
    --content-rotation: -90deg;
}

.agri-wheel__stage--3 {
    --stage-rotation: 270deg;
    --content-rotation: -270deg;
}

.agri-wheel__stage--4 {
    --stage-rotation: 315deg;
    --content-rotation: -315deg;
}

.agri-wheel__stage--5 {
    --stage-rotation: 225deg;
    --content-rotation: -225deg;
}

.agri-wheel__stage--6 {
    --stage-rotation: 180deg;
    --content-rotation: -180deg;
}

.agri-wheel__stage--7 {
    --stage-rotation: 135deg;
    --content-rotation: -135deg;
}

.agri-wheel__stage--8 {
    --stage-rotation: 0deg;
    --content-rotation: 0deg;
}

.callout {
    position: absolute;
    width: 325px;
}

.callout h3 {
    margin: 0 0 22px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.25;
}

.callout p {
    margin: 0;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.55;
}

.callout__catalog-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--color-accent);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    transition: color 180ms ease;
}

.callout__catalog-link:hover,
.callout__catalog-link:focus-visible {
    color: #245f08;
}

.callout--left {
    left: 0;
    top: 237px;
    width: 305px;
    transform: translateY(-50%);
}

.callout--right {
    right: 0;
    top: 237px;
    text-align: right;
    transform: translateY(-50%);
}

.brand-strip {
    display: flex;
    align-items: center;
    min-width: 0;
    max-width: 100%;
    margin-top: 115px;
    overflow: hidden;
    contain: paint;
    mask-image: linear-gradient(90deg, transparent, #000000 8%, #000000 92%, transparent);
}

.brand-strip__track {
    display: flex;
    align-items: center;
    gap: 35px;
    width: max-content;
    animation: brand-strip-loop 34s linear infinite;
}

.brand-strip:hover .brand-strip__track {
    animation-play-state: paused;
}

.brand-strip span {
    display: inline-flex;
    align-items: center;
    gap: 35px;
    flex: 0 0 auto;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.25;
    white-space: nowrap;
}

.brand-strip i {
    width: 25px;
    color: var(--color-accent);
    font-size: 24px;
    line-height: 1;
    text-align: center;
}

@keyframes brand-strip-loop {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 17.5px));
    }
}

/* =============================================
   Product Detail
   ============================================= */

.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding-top: 190px;
    padding-bottom: 64px;
}

.product-hero__content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--color-muted);
}

.breadcrumbs a {
    color: var(--color-muted);
    text-decoration: none;
    transition: color 160ms ease;
}

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

.breadcrumbs__current {
    color: var(--color-text);
    font-weight: 600;
}

.product-hero h1 {
    margin: 0 0 16px;
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.product-hero__description {
    margin: 0 0 24px;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.6;
}

.product-hero__description p {
    margin: 0 0 14px;
}

.product-hero__description p:last-child,
.product-hero__description ul:last-child,
.product-hero__description ol:last-child {
    margin-bottom: 0;
}

.product-hero__description ul,
.product-hero__description ol {
    margin: 0 0 18px;
    padding-left: 20px;
}

.product-hero__description li + li {
    margin-top: 6px;
}

.product-quick-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 28px;
}

.product-quick-facts__item {
    background: var(--color-soft);
    border-radius: 10px;
    padding: 12px 8px;
    text-align: center;
}

.product-quick-facts__value {
    display: block;
    color: var(--color-accent);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
}

.product-quick-facts__label {
    display: block;
    margin-top: 4px;
    color: var(--color-muted);
    font-size: 11px;
    line-height: 1.2;
}

.product-hero__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pill-button--outline {
    color: var(--color-accent);
    background: transparent;
    border: 1.5px solid var(--color-accent);
}

.pill-button--outline .button-icon {
    background: var(--color-accent);
}

.pill-button--outline .button-icon i {
    color: #ffffff;
}

.pill-button--outline:hover {
    color: #ffffff;
    background: var(--color-accent);
}

.pill-button--outline:hover .button-icon {
    background: #ffffff;
}

.pill-button--outline:hover .button-icon i {
    color: var(--color-accent);
}

/* Gallery mosaic */
.product-hero__gallery {
    display: flex;
    align-items: start;
}

.product-gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    width: 100%;
}

.product-gallery-mosaic__item {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
}

.product-gallery-mosaic__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mosaic layout by image count */
.product-gallery-mosaic--1 {
    grid-template-columns: 1fr;
}
.product-gallery-mosaic--2 {
    grid-template-columns: 1fr 1fr;
}
.product-gallery-mosaic--3 .product-gallery-mosaic__item:first-child {
    grid-row: span 2;
}
.product-gallery-mosaic--3 {
    grid-template-columns: 1fr 1fr;
}
.product-gallery-mosaic--4 {
    grid-template-columns: 1fr 1fr;
}
.product-gallery-mosaic--5 {
    grid-template-columns: repeat(3, 1fr);
}
.product-gallery-mosaic--5 .product-gallery-mosaic__item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

/* Section spacing */
.product-section {
    padding-top: 64px;
    padding-bottom: 64px;
}

.product-description {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-text);
    max-width: 820px;
}

/* Variants table */
.product-table-wrap {
    margin-top: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.product-table-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    border: 1px solid #d4dcd0;
    border-radius: 10px;
    overflow: hidden;
}

.product-table-wrap thead {
    background: var(--color-soft);
}

.product-table-wrap th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: var(--color-accent);
    font-size: 13px;
    white-space: nowrap;
}

.product-table-wrap td {
    padding: 10px 16px;
    border-top: 1px solid #e8ece6;
    white-space: nowrap;
}

.product-table-wrap tbody tr:nth-child(even) {
    background: rgba(242, 249, 241, 0.45);
}

/* Application area */
.product-application {
    margin-top: 20px;
    max-width: 900px;
    color: var(--color-text);
    font-size: 15px;
    line-height: 1.75;
}

.product-application p {
    margin: 0 0 16px;
    color: var(--color-muted);
}

.product-application ul {
    margin: 0;
    padding-left: 20px;
}

.product-application li + li {
    margin-top: 6px;
}

/* CTA strip */
.product-cta-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 28px 32px;
    border: 2px solid var(--color-accent);
    border-radius: 14px;
    margin-top: 0;
}

.product-cta-strip p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}

.product-cta-strip p span {
    font-weight: 400;
    color: var(--color-muted);
}

/* Properties + Delivery grid */
.product-props-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.product-props-card {
    background: var(--color-soft);
    border-radius: 14px;
    padding: 28px 32px;
}

.product-props-card h2 {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-accent);
}

.product-props-card ul,
.product-props-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

.product-props-card li {
    margin-bottom: 4px;
}

/* FAQ */
.product-faq {
    position: relative;
    margin-top: 24px;
    padding: 18px;
    max-width: 900px;
    border: 1px solid rgba(139, 183, 67, 0.26);
    border-radius: 22px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 241, 0.92)),
      var(--color-bg);
    box-shadow: 0 24px 58px rgba(35, 51, 31, 0.08);
}

.product-faq details {
    overflow: hidden;
    border: 1px solid rgba(139, 183, 67, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 28px rgba(35, 51, 31, 0.05);
    transition:
      border-color 200ms ease,
      box-shadow 200ms ease,
      transform 200ms ease,
      background 200ms ease;
}

.product-faq details + details {
    margin-top: 10px;
}

.product-faq details[open] {
    border-color: rgba(61, 135, 71, 0.34);
    background: #fff;
    box-shadow: 0 18px 38px rgba(35, 51, 31, 0.08);
}

.product-faq summary {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 62px;
    padding: 16px 18px;
    font-weight: 600;
    font-size: 17px;
    line-height: 1.35;
    cursor: pointer;
    color: var(--color-text);
    list-style: none;
    user-select: none;
    transition: color 200ms ease, background 200ms ease;
}

.product-faq summary::-webkit-details-marker {
    display: none;
}

.product-faq summary::before {
    content: "+";
    display: inline-grid;
    place-items: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    background: #eef6e7;
    border-radius: 50%;
    color: var(--color-accent);
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.product-faq details[open] > summary::before {
    content: "−";
    background-color: var(--color-accent);
    color: #fff;
    transform: rotate(180deg);
}

.product-faq summary:hover {
    color: var(--color-accent);
    background: rgba(246, 250, 241, 0.68);
}

.product-faq summary:hover::before {
    background-color: var(--color-accent);
    color: #fff;
}

.product-faq details[open] > summary:hover::before {
    background-color: var(--color-accent);
    color: #fff;
}

.product-faq .faq-answer,
.product-faq details > p,
.product-faq details > div {
    margin: 0;
    padding: 0 18px 18px 66px;
    font-size: 15px;
    line-height: 1.72;
    color: var(--color-muted);
}

/* Footer CTA */
.product-cta-footer {
    padding: 56px 0 80px;
    text-align: center;
}

.product-cta-footer h2 {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text);
}

.product-cta-footer p {
    margin: 0 0 28px;
    color: var(--color-muted);
    font-size: 16px;
}

.product-cta-footer__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* =============================================
   Catalog Page
   ============================================= */

.catalog-lead {
    padding: 164px 0 72px;
    background: #ffffff;
}

.catalog-lead__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
    gap: 58px;
    align-items: center;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 54px;
    color: var(--color-muted);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

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

.breadcrumbs--light {
    color: rgba(255, 255, 255, 0.72);
}

.breadcrumbs--light a:hover {
    color: #ffffff;
}

.catalog-lead__content h1 {
    max-width: 680px;
    margin: 10px 0 22px;
    font-family: var(--font-display);
    font-size: 58px;
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: 0;
    color: var(--color-text);
}

.catalog-lead__content p {
    max-width: 610px;
    margin: 0 0 34px;
    color: var(--color-muted);
    font-size: 17px;
    line-height: 1.65;
}

.catalog-lead__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.catalog-lead__consult-button {
    color: var(--color-accent);
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(44, 118, 8, 0.22);
}

.catalog-lead__consult-button .button-icon {
    background: var(--color-soft);
}

.catalog-lead__media {
    position: relative;
    min-height: 468px;
}

.catalog-lead__image {
    position: absolute;
    overflow: hidden;
    margin: 0;
    background: var(--color-soft);
    border: 1px solid rgba(18, 20, 17, 0.08);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(18, 20, 17, 0.12);
}

.catalog-lead__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-lead__image--large {
    left: 0;
    bottom: 0;
    width: 68%;
    height: 356px;
}

.catalog-lead__image--top {
    right: 0;
    top: 8px;
    width: 45%;
    height: 202px;
}

.catalog-lead__image--bottom {
    right: 6%;
    bottom: 28px;
    width: 38%;
    height: 168px;
}

.catalog-assortment {
    padding-top: 46px;
    padding-bottom: 112px;
}

.catalog-assortment .section-heading {
    width: min(760px, 100%);
}

.catalog-assortment .section-heading h2 {
    margin: 12px 0 16px;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: 0;
    color: var(--color-text);
}

.catalog-mosaic {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 170px;
    gap: 20px;
    margin-top: 46px;
}

.catalog-tile {
    position: relative;
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    min-height: 340px;
    color: #ffffff;
    background: #182015;
    border-radius: 22px;
    box-shadow: 0 22px 60px rgba(18, 20, 17, 0.15);
    transition: transform 320ms ease, box-shadow 320ms ease;
}

.catalog-tile:nth-child(1) {
    grid-column: span 4;
}

.catalog-tile:nth-child(n + 3) {
    grid-column: span 3;
}

.catalog-tile:nth-child(n + 3):nth-child(odd):last-child {
    grid-column: span 6;
}

.catalog-tile:hover,
.catalog-tile:focus-visible {
    transform: translateY(-6px);
    box-shadow: 0 30px 76px rgba(18, 20, 17, 0.24);
}

.catalog-tile:focus-visible {
    outline: 3px solid var(--color-accent-2);
    outline-offset: 4px;
}

.catalog-tile__image,
.catalog-tile__placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.catalog-tile__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 620ms ease;
}

.catalog-tile:hover .catalog-tile__image img,
.catalog-tile:focus-visible .catalog-tile__image img {
    transform: scale(1.06);
}

.catalog-tile__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.58), transparent 0 18%, transparent 19%),
        linear-gradient(135deg, rgba(232, 244, 228, 0.95) 0%, rgba(167, 205, 150, 0.9) 100%);
}

.catalog-tile__placeholder img {
    width: 76px;
    height: 76px;
    opacity: 0.4;
    object-fit: contain;
}

.catalog-tile__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(18, 20, 17, 0.02) 0%, rgba(18, 20, 17, 0.78) 100%),
        linear-gradient(90deg, rgba(18, 20, 17, 0.58) 0%, rgba(18, 20, 17, 0.14) 62%, rgba(18, 20, 17, 0.34) 100%);
}

.catalog-tile__body {
    position: relative;
    z-index: 2;
    align-self: flex-end;
    width: min(520px, 100%);
    padding: 30px;
}

.catalog-tile__eyebrow {
    display: inline-flex;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.catalog-tile__title {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: 31px;
    font-weight: 500;
    line-height: 1.12;
    color: #ffffff;
}

.catalog-tile__desc {
    display: -webkit-box;
    max-width: 500px;
    margin: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.48;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.catalog-tile__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 20px;
    padding: 10px 14px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    background: rgba(44, 118, 8, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.catalog-consultation {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    margin-top: 36px;
    padding: 30px 34px;
    background: var(--color-soft);
    border: 1px solid rgba(44, 118, 8, 0.1);
    border-radius: 18px;
}

.catalog-consultation__content h2 {
    margin: 10px 0 10px;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: 0;
    color: var(--color-text);
}

.catalog-consultation__content p {
    max-width: 620px;
    margin: 0;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.55;
}

/* ---- Empty State ---- */

.catalog-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 120px;
}

.catalog-empty__icon {
    width: 88px;
    height: 88px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-soft);
    border-radius: 50%;
}

.catalog-empty__icon img {
    width: 40px;
    height: 40px;
    opacity: 0.5;
}

.catalog-empty h2 {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--color-text);
}

.catalog-empty p {
    width: min(380px, 100%);
    margin: 0 0 32px;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.5;
}

/* ---- Contacts ---- */

.contacts-section {
    padding-top: 152px;
    padding-bottom: 112px;
}

.contacts-heading {
    width: min(720px, 100%);
    margin-bottom: 34px;
}

.contacts-heading h1,
.contacts-info-panel h2,
.contacts-map-card__top h2 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: 0;
}

.contacts-heading h1 {
    margin: 14px 0 16px;
    color: var(--color-text);
    font-size: 54px;
    line-height: 1.08;
}

.contacts-heading p {
    width: min(620px, 100%);
    margin: 0;
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.55;
}

.contacts-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
    gap: 24px;
    align-items: stretch;
}

.contacts-info-panel,
.contacts-map-card {
    border-radius: 18px;
}

.contacts-info-panel {
    padding: 34px;
    background: var(--color-soft);
}

.contacts-info-panel h2 {
    margin: 12px 0 24px;
    font-size: 34px;
    line-height: 1.18;
}

.contact-list {
    display: grid;
    gap: 18px;
}

.contact-item {
    display: flex;
    gap: 18px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid rgba(44, 118, 8, 0.08);
    border-radius: 14px;
}

.contact-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    color: #ffffff;
    background: var(--gradient-accent);
    border-radius: 12px;
}

.contact-item h3 {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

.contact-item p,
.contact-item a {
    display: block;
    margin: 0;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.45;
}

.contact-item a:hover {
    color: var(--color-accent);
}

.contacts-messengers {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.contacts-messengers a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 17px;
    color: var(--color-text);
    font-weight: 600;
    background: #ffffff;
    border: 1px solid rgba(44, 118, 8, 0.11);
    border-radius: 999px;
}

.contacts-messengers i {
    color: var(--color-accent);
    font-size: 20px;
    line-height: 1;
}

.contacts-map-card {
    min-height: 560px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(18, 20, 17, 0.08);
}

.contacts-map-card__top {
    min-height: 112px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.contacts-map-card__top span {
    display: block;
    margin-bottom: 7px;
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.contacts-map-card__top h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.18;
}

.contacts-map-card__top a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 16px;
    color: #ffffff;
    font-weight: 600;
    background: var(--gradient-accent);
    border-radius: 999px;
}

.contacts-map-card__top a span {
    margin: 0;
    color: inherit;
    font-size: 14px;
    text-transform: none;
}

.contacts-map {
    position: relative;
    height: 448px;
    background: var(--color-soft);
}

.contacts-map iframe,
.contacts-map > div {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}


/* ---- Responsive ---- */

@media (max-width: 1100px) {
    .contacts-layout {
        grid-template-columns: 1fr;
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .legal-aside {
        position: static;
    }

    .catalog-lead__inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .catalog-lead__media {
        min-height: 390px;
    }

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

    .catalog-tile,
    .catalog-tile:nth-child(1),
    .catalog-tile:nth-child(n + 3),
    .catalog-tile:nth-child(n + 3):nth-child(odd):last-child {
        grid-column: span 1;
    }

    .catalog-consultation {
        grid-template-columns: 1fr;
        justify-items: flex-start;
    }
}

@media (max-width: 759px) {
    .legal-hero {
        padding: 132px 0 58px;
    }

    .legal-section {
        padding: 54px 0 76px;
    }

    .legal-content {
        padding: 30px 24px;
    }

    .legal-content h2 {
        font-size: 24px;
    }

    .contacts-section {
        padding-top: 132px;
        padding-bottom: 80px;
    }

    .contacts-heading {
        margin-bottom: 28px;
    }

    .contacts-heading h1 {
        font-size: 40px;
    }

    .contacts-heading p {
        font-size: 16px;
    }

    .contacts-info-panel {
        padding: 28px 22px;
        border-radius: 16px;
    }

    .contacts-info-panel h2,
    .contacts-map-card__top h2 {
        font-size: 28px;
    }

    .contact-item {
        padding: 18px;
    }

    .contacts-map-card {
        min-height: 0;
        border-radius: 16px;
    }

    .contacts-map-card__top {
        align-items: flex-start;
        flex-direction: column;
        min-height: 0;
        padding: 24px;
    }

    .contacts-map-card__top a {
        width: auto;
        justify-content: center;
    }

    .contacts-map {
        height: 420px;
    }

    .catalog-lead {
        padding-top: 132px;
        padding-bottom: 56px;
    }

    .catalog-lead__content h1 {
        font-size: 40px;
    }

    .catalog-lead__content p {
        font-size: 16px;
    }

    .catalog-lead__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalog-lead__media {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        min-height: 0;
    }

    .catalog-lead__image {
        position: relative;
        inset: auto;
        width: auto;
        height: 180px;
        border-radius: 18px;
    }

    .catalog-lead__image--large {
        grid-column: 1 / -1;
        height: 230px;
    }

    .catalog-assortment {
        padding-top: 36px;
        padding-bottom: 76px;
    }

    .catalog-assortment .section-heading h2 {
        font-size: 34px;
    }

    .catalog-mosaic {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 34px;
    }

    .catalog-tile {
        min-height: 330px;
        border-radius: 18px;
    }

    .catalog-tile__body {
        padding: 24px;
    }

    .catalog-tile__title {
        font-size: 27px;
    }

    .catalog-consultation {
        margin-top: 24px;
        padding: 26px 22px;
        border-radius: 16px;
    }

    .catalog-consultation__content h2 {
        font-size: 27px;
    }

    .catalog-empty h2 {
        font-size: 24px;
    }
}

@media (max-width: 460px) {
    .contacts-heading h1 {
        font-size: 34px;
    }

    .contacts-map-card__top a,
    .contacts-messengers a {
        width: 100%;
    }

    .contact-item {
        flex-direction: column;
    }

    .contacts-map {
        height: 360px;
    }

    .catalog-lead__content h1 {
        font-size: 34px;
    }

    .catalog-lead__actions,
    .catalog-lead__actions .pill-button {
        width: 100%;
    }

    .catalog-lead__media {
        grid-template-columns: 1fr;
    }

    .catalog-lead__image,
    .catalog-lead__image--large {
        height: 210px;
    }

    .catalog-assortment .section-heading h2 {
        font-size: 30px;
    }

    .catalog-tile {
        min-height: 310px;
    }

    .catalog-consultation .pill-button {
        width: 100%;
        justify-content: space-between;
    }
}

/* ---- Reduced motion ---- */

@media (prefers-reduced-motion: reduce) {
    .nav-button,
    .pill-button,
    .nav-button::after,
    .pill-button::after,
    .button-icon {
        transition: none;
    }

    .nav-button:hover,
    .nav-button:focus-visible,
    .pill-button:not(:disabled):hover,
    .pill-button:not(:disabled):focus-visible,
    .nav-button:active,
    .pill-button:not(:disabled):active,
    .nav-button:hover .button-icon,
    .nav-button:focus-visible .button-icon,
    .pill-button:not(:disabled):hover .button-icon,
    .pill-button:not(:disabled):focus-visible .button-icon {
        transform: none;
    }

    .nav-button:hover::after,
    .nav-button:focus-visible::after,
    .pill-button:not(:disabled):hover::after,
    .pill-button:not(:disabled):focus-visible::after {
        opacity: 0;
    }

    .catalog-tile,
    .catalog-tile__image img {
        transition: none;
    }

    .catalog-tile:hover,
    .catalog-tile:focus-visible,
    .catalog-tile:hover .catalog-tile__image img,
    .catalog-tile:focus-visible .catalog-tile__image img {
        transform: none;
    }

    .brand-strip__track {
        animation: none;
    }
}

.site-footer {
    padding: 72px 0 56px;
    color: #ffffff;
    background: #244d1b;
}

.site-footer__inner {
    display: flex;
    flex-direction: column;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(150px, 1fr));
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    width: 180px;
    height: 43px;
    margin-bottom: 36px;
    overflow: visible;
}

.footer-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: left center;
}

.footer-brand p,
.footer-bottom,
.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.55;
}

.footer-brand p {
    width: 307px;
    margin: 0 0 32px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
}

.footer-social i {
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column__links {
    display: grid;
    gap: 25px;
}

.footer-column h2 {
    margin: 0 0 36px;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.25;
}

.footer-column {
    gap: 25px;
}

.footer-column h2 {
    margin-bottom: 11px;
}

.footer-column a:hover,
.footer-legal a:hover {
    color: #ffffff;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.footer-bottom p {
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 36px;
}

.legal-hero {
    padding: 168px 0 76px;
    background: #f3f4f2;
    color: var(--color-text);
}

.legal-hero__inner {
    max-width: 960px;
}

.legal-hero h1 {
    max-width: 820px;
    margin: 14px 0 18px;
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 500;
    line-height: 1.04;
}

.legal-hero p {
    max-width: 720px;
    margin: 0;
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.7;
}

.legal-section {
    padding: 78px 0 110px;
    background: #f7faf5;
}

.legal-layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.legal-aside {
    position: sticky;
    top: 110px;
    padding: 26px;
    border: 1px solid rgba(44, 118, 8, 0.16);
    border-radius: 8px;
    background: #ffffff;
}

.legal-aside span {
    display: block;
    margin-bottom: 8px;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.4;
    text-transform: uppercase;
}

.legal-aside strong {
    display: block;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
}

.legal-aside p {
    margin: 20px 0 0;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.65;
}

.legal-content {
    padding: 44px 52px;
    border-radius: 8px;
    background: #ffffff;
}

.legal-content section + section {
    margin-top: 42px;
    padding-top: 42px;
    border-top: 1px solid rgba(18, 20, 17, 0.1);
}

.legal-content h2 {
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.25;
}

.legal-content p {
    margin: 0;
    color: #3e443b;
    font-size: 17px;
    line-height: 1.8;
}

.legal-content p + p {
    margin-top: 14px;
}

@media (max-width: 1100px) {
    .site-header {
        top: 24px;
    }

    .site-header.is-scrolled {
        top: 14px;
    }

    .site-nav {
        gap: 18px;
    }

    .hero-feature {
        position: static;
        margin-top: 16px;
    }

    .hero-section__inner {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 205px));
        align-items: flex-start;
        gap: 16px;
    }

    .hero-section__inner > .section-kicker,
    .hero-section__inner > h1,
    .hero-section__text,
    .hero-section__actions {
        grid-column: 1 / -1;
    }

    .about-section,
    .choose-section,
    .intelligence-top {
        grid-template-columns: 1fr;
    }

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

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

    .about-side-image {
        position: static;
        width: 100%;
        margin-top: 32px;
    }

    .quality-section {
        column-gap: 32px;
        row-gap: 36px;
    }

    .choose-section {
        gap: 32px;
        padding-bottom: 96px;
    }

    .choose-content,
    .choose-image--large {
        grid-column: auto;
        grid-row: auto;
    }

    .choose-image--large {
        min-height: 0;
        height: 320px;
    }

    .choose-content h2,
    .choose-content > p {
        width: 100%;
    }

    .choose-list {
        width: 100%;
    }

    .intelligence-section {
        padding-bottom: 80px;
    }

    .intelligence-top {
        gap: 28px;
    }

    .intelligence-copy h2,
    .intelligence-copy p {
        width: min(100%, 560px);
    }

    .intelligence-top .pill-button {
        margin-top: 0;
    }

    .intelligence-graphic {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
        min-height: auto;
        margin-top: 56px;
    }

    .agri-wheel,
    .callout {
        position: relative;
        inset: auto;
    }

    .agri-wheel {
        left: auto;
        top: auto;
        justify-self: center;
        order: 1;
        width: min(475px, 100%);
        aspect-ratio: 1;
        height: auto;
    }

    .callout {
        width: min(100%, 420px);
        transform: none;
    }

    .callout--left {
        order: 2;
    }

    .callout--right {
        order: 3;
        justify-self: end;
    }

    .brand-strip {
        margin-top: 56px;
    }

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-hero {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-top: 170px;
    }

    .product-hero__gallery {
        order: -1;
    }

    .product-gallery-mosaic {
        max-height: 380px;
    }
}

@media (max-width: 759px) {
    .page-shell,
    .site-header {
        width: calc(100% - 32px);
        max-width: 1268px;
    }

    .site-header {
        flex-wrap: nowrap;
        min-height: 64px;
        padding: 9px 10px 9px 14px;
        gap: 8px;
        border-radius: 24px;
        overflow: hidden;
    }

    .site-header.is-scrolled {
        top: 12px;
    }

    .header-social {
        display: none;
    }

    .header-social.is-scrolled {
        top: 4px;
    }

    .site-logo {
        flex: 0 0 clamp(120px, 38vw, 160px);
        width: clamp(120px, 38vw, 160px);
        height: 42px;
    }

    .site-nav {
        position: static;
        transform: none;
        display: none;
    }

    .header-contact {
        flex: 1 1 auto;
        min-width: 0;
        margin-left: auto;
        margin-right: 0;
        padding-right: 0;
        align-items: flex-end;
        gap: 0;
    }

    .header-phone {
        display: block;
        max-width: 100%;
        overflow: hidden;
        font-size: clamp(12px, 3.25vw, 16px);
        line-height: 1.15;
        text-overflow: ellipsis;
        text-underline-offset: 4px;
    }

    .header-email {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, 0.34);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.12);
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        position: absolute;
        width: 17px;
        height: 2px;
        background: #ffffff;
        border-radius: 999px;
        transition: transform 180ms ease, opacity 180ms ease;
    }

    .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(-6px);
    }

    .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(6px);
    }

    .site-header.is-menu-open .mobile-menu-toggle span:nth-child(1) {
        transform: rotate(45deg);
    }

    .site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-menu-open .mobile-menu-toggle span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .mobile-menu {
        position: fixed;
        z-index: 19;
        top: 88px;
        left: 50%;
        display: flex;
        flex-direction: column;
        gap: 22px;
        width: min(100% - 32px, 1268px);
        padding: 22px 18px;
        background-color: rgba(18, 20, 17, 0.78);
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 24px;
        box-shadow: 0 20px 45px rgba(18, 20, 17, 0.28);
        transform: translate(-50%, -16px);
        opacity: 0;
        pointer-events: none;
        backdrop-filter: blur(12px);
        transition: top 280ms ease, opacity 180ms ease, transform 180ms ease;
    }

    .mobile-menu.is-scrolled {
        top: 76px;
    }

    .mobile-menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }

    .mobile-menu__nav {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .mobile-menu__nav a {
        padding: 13px 4px;
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.2;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .mobile-menu__catalog {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu__products {
        display: grid;
        gap: 2px;
        padding: 4px 0 10px 14px;
    }

    .mobile-menu__products a {
        padding: 9px 4px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 15px;
        font-weight: 500;
        line-height: 1.25;
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .mobile-menu__nav a.is-active,
    .mobile-menu__nav a[aria-current="page"] {
        color: rgba(255, 255, 255, 0.72);
    }

    .mobile-menu__bottom {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: center;
        gap: 16px;
        min-width: 0;
    }

    .mobile-menu__social {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
    }

    .mobile-menu__social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
    }

    .mobile-menu__social i {
        color: #ffffff;
        font-size: 19px;
        line-height: 1;
    }

    .mobile-menu__email {
        display: block;
        min-width: 0;
        overflow: hidden;
        color: rgba(255, 255, 255, 0.84);
        font-size: 14px;
        font-weight: 600;
        line-height: 1.25;
        text-align: right;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nav-button {
        width: 158px;
        font-size: 14px;
    }

    .hero-section {
        display: flex;
        align-items: center;
        min-height: 100vh;
        min-height: 100svh;
        padding: 128px 0 48px;
    }

    .hero-section__inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        min-height: auto;
    }

    .hero-section h1,
    .about-card h2,
    .quality-heading h2,
    .choose-content h2,
    .section-heading h2,
    .intelligence-copy h2 {
        font-size: 40px;
    }

    .hero-section__text {
        margin: 18px 0 34px;
    }

    .hero-section__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        width: min(100%, 258px);
    }

    .hero-section .pill-button {
        width: 100%;
        min-width: 0;
    }

    .hero-feature {
        display: none;
    }

    .about-section {
        padding-top: 48px;
    }

    .quality-section {
        grid-template-columns: 1fr;
    }

    .about-visual__panel {
        position: static;
        flex-direction: column;
        align-items: flex-start;
        margin: 200px 16px 16px;
    }

    .about-visual__panel p {
        width: auto;
    }

    .about-card {
        padding: 44px 24px;
    }

    .benefit-grid,
    .stat-grid {
        grid-template-columns: 1fr;
    }

    .benefit-grid {
        gap: 34px;
        padding-top: 48px;
    }

    .benefit-item {
        align-items: center;
        text-align: center;
    }

    .benefit-item h3 {
        margin-bottom: 12px;
    }

    .excellence-layout {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 48px;
    }

    .home-product-card {
        min-height: 236px;
    }

    .home-product-card__panel {
        min-height: 86px;
        padding: 13px;
    }

    .home-product-card__panel h3 {
        margin-bottom: 10px;
        font-size: 20px;
    }

    .home-product-card__button {
        width: 32px;
        height: 32px;
    }

    .choose-list li {
        align-items: flex-start;
        font-size: 18px;
    }

    .intelligence-graphic {
        gap: 28px;
    }

    .callout {
        justify-self: center;
        text-align: center;
    }

    .callout--left {
        order: 1;
    }

    .agri-wheel {
        order: 2;
    }

    .callout--right {
        order: 3;
        justify-self: center;
        text-align: center;
    }

    .agri-wheel__center {
        left: 23.8%;
        top: 23.8%;
        width: 49%;
        height: 49%;
    }

    .agri-wheel__stage {
        font-size: 9px;
    }

    .agri-wheel__stage-content {
        top: 8%;
        width: 66px;
        gap: 5px;
    }

    .agri-wheel__stage i {
        font-size: 22px;
    }

    .quality-section {
        gap: 48px;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .stat-grid {
        gap: 14px;
    }

    .stat-card {
        min-height: 0;
        padding: 22px 24px;
    }

    .stat-card__icon {
        width: 52px;
        height: 52px;
        margin-bottom: 18px;
    }

    .stat-card__icon i {
        font-size: 30px;
    }

    .stat-card strong {
        margin-bottom: 8px;
        font-size: 36px;
    }

    .quality-copy p {
        margin-bottom: 36px;
    }

    .site-footer {
        padding: 64px 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-column {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 20px;
    }

    .footer-column h2,
    .footer-column__links {
        grid-column: 1 / -1;
    }

    .footer-column__links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 20px;
    }

    .footer-column[aria-label="Контактная информация"] {
        display: flex;
        gap: 18px;
    }

    .footer-column a,
    .footer-column span {
        overflow-wrap: anywhere;
    }

    .footer-brand p {
        width: min(100%, 307px);
    }

    .footer-legal {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .product-hero h1 {
        font-size: 34px;
    }

    .product-quick-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-props-grid {
        grid-template-columns: 1fr;
    }

    .product-cta-strip {
        flex-direction: column;
        text-align: center;
    }

    .product-cta-footer h2 {
        font-size: 26px;
    }

    .product-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .product-faq {
        padding: 12px;
        border-radius: 18px;
    }

    .product-faq summary {
        gap: 10px;
        min-height: 58px;
        padding: 14px;
        font-size: 15px;
    }

    .product-faq summary::before {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
        font-size: 22px;
    }

    .product-faq .faq-answer,
    .product-faq details > p,
    .product-faq details > div {
        padding: 0 14px 16px 54px;
        font-size: 14px;
    }

    .contact-modal {
        align-items: center;
        padding: 10px;
    }

    .contact-modal__dialog {
        display: block;
        width: 100%;
        min-height: 0;
        max-height: none;
        overflow: visible;
        border-radius: 18px;
    }

    .contact-modal__close {
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
    }

    .contact-modal__info {
        padding: 18px 66px 12px 18px;
        border-radius: 18px 18px 0 0;
    }

    .contact-modal__info .section-kicker {
        display: none;
    }

    .contact-modal h2 {
        margin: 0 0 6px;
        font-size: 23px;
    }

    .contact-modal__text {
        margin: 0;
        font-size: 13px;
        line-height: 1.4;
    }

    .contact-modal__contacts,
    .contact-modal__social--desktop {
        display: none;
    }

    .contact-modal__body {
        padding: 16px 18px 18px;
    }

    .contact-modal__form {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-modal__form label {
        gap: 6px;
        font-size: 13px;
    }

    .contact-modal__form input {
        padding: 11px 12px;
        border-radius: 12px;
    }

    .contact-modal__legal {
        margin: 0;
        font-size: 11px;
        line-height: 1.35;
    }

    .contact-modal__status {
        min-height: 17px;
        font-size: 12px;
    }

    .contact-modal__mobile-phone {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 12px;
        padding-top: 12px;
        color: var(--color-accent);
        font-size: 14px;
        font-weight: 600;
        line-height: 1.2;
        border-top: 1px solid rgba(18, 20, 17, 0.1);
    }

    .cookie-consent {
        left: 16px;
        bottom: 16px;
        width: calc(100vw - 32px);
        align-items: flex-start;
        padding: 14px;
    }

    .quick-contact {
        right: 16px;
        bottom: 16px;
        gap: 8px;
    }

    .quick-contact__list {
        gap: 8px;
    }

    .quick-contact__action,
    .quick-contact__toggle {
        width: 44px;
        height: 44px;
        box-shadow: 0 12px 24px rgba(44, 118, 8, 0.24);
    }

    .quick-contact__toggle i,
    .quick-contact__action i {
        font-size: 18px;
    }
}

@media (max-width: 460px) {
    .site-logo {
        flex-basis: clamp(112px, 38vw, 142px);
        width: clamp(112px, 38vw, 142px);
    }

    .nav-button {
        width: 50px;
        padding-left: 8px;
    }

    .header-contact {
        padding-right: 0;
        width: auto;
        max-width: 38vw;
    }

    .nav-button span:first-child {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
    }

    .hero-section h1,
    .about-card h2,
    .quality-heading h2,
    .choose-content h2,
    .section-heading h2,
    .intelligence-copy h2 {
        font-size: 34px;
    }

    .benefit-item {
        flex-direction: column;
        gap: 16px;
    }

    .stat-card {
        padding: 20px;
    }

    .home-product-card {
        min-height: 220px;
    }

    .home-product-card__panel {
        left: 10px;
        right: 10px;
        bottom: 10px;
        min-height: 78px;
        padding: 12px;
    }

    .home-product-card__panel h3 {
        font-size: 18px;
    }

    .product-hero h1 {
        font-size: 28px;
    }

    .product-hero__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .product-props-card {
        padding: 20px;
    }

    .product-gallery-mosaic {
        gap: 4px;
    }

    .contact-modal {
        padding: 8px;
    }

    .contact-modal__dialog {
        border-radius: 16px;
    }

    .contact-modal__info {
        padding: 16px 60px 10px 14px;
        border-radius: 16px 16px 0 0;
    }

    .contact-modal h2 {
        font-size: 21px;
    }

    .contact-modal__text {
        font-size: 12px;
    }

    .contact-modal__body {
        padding: 14px;
    }

    .contact-modal__form {
        gap: 9px;
    }

    .contact-modal .pill-button {
        width: 100%;
    }

    .cookie-consent {
        flex-direction: column;
        gap: 12px;
        border-radius: 14px;
    }

    .cookie-consent__button {
        width: 100%;
    }

    .quick-contact {
        right: 12px;
        bottom: 12px;
    }

    .quick-contact__action,
    .quick-contact__toggle {
        width: 42px;
        height: 42px;
    }
}
