@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600;700;800;900&display=swap');

:root {
    --green: #006c3d;
    --leaf: #8bad18;
    --ink: #173229;
    --muted: #66746f;
    --line: #dfe8e3;
    --paper: #f7faf7;
    --cream: #fff8ed;
    --white: #fff;
    --shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    background: var(--white);
}

a {
    color: inherit;
}

.site-top-bar {
    min-height: 37px;
    padding: 8px clamp(18px, 4vw, 64px);
    color: rgba(255, 255, 255, .92);
    background: var(--green);
}

.site-top-bar-inner {
    display: flex;
    gap: 22px;
    align-items: center;
    justify-content: flex-end;
    max-width: 1320px;
    margin: 0 auto;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.site-top-bar a {
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
}

.site-top-bar a:hover {
    text-decoration: underline;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 413px 1fr auto;
    gap: 0;
    align-items: center;
    width: min(1320px, 100%);
    min-height: 80px;
    padding: 0;
    margin: 0 auto;
    background: linear-gradient(90deg, var(--green) 0 475px, #fff 475px 100%);
    border-bottom: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.brand {
    align-self: stretch;
    display: flex;
    align-items: center;
}

.brand img {
    display: block;
    width: auto;
    height: 80px;
    margin-left: 62px;
}

.footer-logo {
    display: block;
    width: 154px;
    height: auto;
}

.main-nav ul,
.footer-bottom ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.main-nav {
    justify-self: end;
    margin-right: 32px;
}

html[lang^="en"] .main-nav,
html[lang^="de"] .main-nav {
    margin-right: 0;
}

.main-nav li {
    position: relative;
}

.mobile-nav {
    display: none;
}

.main-nav a {
    min-height: 80px;
    display: flex;
    align-items: center;
    padding: 0 27px;
    color: #233a32;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.main-nav .has-submenu > a {
    display: inline-flex;
    gap: 7px;
    align-items: center;
}

.main-nav .has-submenu > a::after {
    width: 0;
    height: 0;
    border-top: 5px solid currentColor;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    content: "";
    transform: translateY(1px);
}

.main-nav a:hover,
.main-nav a.is-current,
.footer-grid a:hover,
.footer-bottom a:hover {
    color: var(--green);
}

.main-nav a.is-current {
    color: #fff;
    background: var(--leaf);
}

.main-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 30;
    width: 270px;
    display: grid;
    gap: 0;
    padding: 8px 0;
    border: 1px solid rgba(0, 108, 61, .16);
    background: #fff;
    box-shadow: 0 14px 28px rgba(25, 54, 43, .16);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.main-nav .has-submenu:hover .sub-menu,
.main-nav .has-submenu:focus-within .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.main-nav .sub-menu a {
    padding: 10px 18px;
    color: #2d433b;
    font-size: 14px;
    line-height: 1.25;
    text-align: left;
}

.main-nav .sub-menu a:hover {
    color: #fff;
    background: var(--green);
}

.header-actions {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
    padding-right: 34px;
}

.header-contact {
    display: none;
}

.site-header .header-contact {
    display: none !important;
}

.lang-switch {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.lang-switch a {
    display: inline-flex;
    min-width: 0;
    padding: 6px 3px;
    opacity: .72;
    text-decoration: none;
}

.lang-switch a[aria-current="page"] {
    opacity: 1;
}

.lang-switch img {
    display: block;
    width: 18px;
    height: auto;
}

.header-contact,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid var(--green);
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
}

.header-contact,
.button-primary {
    color: var(--white);
    background: var(--green);
}

.button-secondary {
    color: var(--green);
    background: rgba(255, 255, 255, .86);
}

.home-hero {
    position: relative;
    min-height: min(600px, calc(100vh - 96px));
    display: grid;
    place-items: center;
    isolation: isolate;
    overflow: hidden;
}

.home-hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background:
        linear-gradient(0deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .22)),
        linear-gradient(0deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, .10));
}

.home-hero img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero-content {
    width: min(560px, calc(100% - 36px));
    margin: 0;
    color: var(--green);
    text-align: center;
    background: rgba(255, 255, 255, .92);
    border-radius: 6px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--leaf);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-hero h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(52px, 8vw, 112px);
    line-height: .92;
    letter-spacing: 0;
}

.home-hero p:not(.eyebrow) {
    max-width: 640px;
    margin: 20px 0 0;
    font-size: 20px;
}

.home-hero .eyebrow {
    color: #dff78a;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    width: min(760px, 100%);
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .28);
}

.hero-proof span {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, .86);
    font-size: 14px;
    font-weight: 700;
}

.hero-proof span + span::before {
    width: 6px;
    height: 6px;
    margin-right: 20px;
    border-radius: 999px;
    content: "";
    background: var(--leaf);
}

.legacy-home-slider {
    position: relative;
    height: min(560px, calc(100vh - 96px));
    min-height: 420px;
    overflow: hidden;
    background: #f2f2f2;
}

.legacy-slide {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    transition: opacity .7s ease;
}

.legacy-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.legacy-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legacy-slide::after {
    display: none;
}

.legacy-slide p {
    position: relative;
    z-index: 2;
    min-width: min(420px, calc(100% - 52px));
    margin: 0;
    padding: 10px 22px;
    border-radius: 5px;
    color: var(--green);
    font-size: clamp(32px, 4.2vw, 52px);
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
    background: #fff;
    opacity: .78;
}

.legacy-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 42px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 0;
    color: rgba(255, 255, 255, .86);
    cursor: pointer;
    font-size: 56px;
    line-height: 1;
    background: transparent;
    transform: translateY(-50%);
}

.legacy-slider-arrow:hover {
    color: #fff;
}

.legacy-slider-prev {
    left: 15px;
}

.legacy-slider-next {
    right: 15px;
}

.legacy-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    z-index: 3;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.legacy-slider-dots span {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, .8);
    border-radius: 999px;
}

.legacy-slider-dots span.is-active {
    background: rgba(255, 255, 255, .82);
}

.legacy-home-offer-title {
    padding: 42px 18px;
    text-align: center;
    background: #fff;
}

.legacy-home-offer-title h2 {
    margin: 0;
    color: var(--green);
    font-size: clamp(34px, 4vw, 45px);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.legacy-home-offer {
    padding: 66px clamp(18px, 5vw, 72px) 46px;
    background-color: #f0f0f0;
    background-image: url("../img/tlo-elipsa.png");
    background-repeat: no-repeat;
    background-position: 50% 0;
}

.legacy-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    max-width: 1140px;
    margin: 0 auto;
}

.legacy-offer-column {
    display: grid;
    gap: 60px;
}

.legacy-offer-column-center {
    align-content: center;
}

.legacy-offer-card {
    display: block;
    padding: 0 10px 28px;
    border-radius: 20px;
    color: var(--green);
    text-align: center;
    text-decoration: none;
    background: #fff;
    transition: color .25s ease;
}

.legacy-offer-card:hover {
    color: var(--leaf);
}

.legacy-offer-card img {
    display: block;
    width: 100%;
    max-width: 250px;
    height: 170px;
    margin: 0 auto;
    object-fit: contain;
}

.legacy-offer-card span {
    display: block;
    min-height: 50px;
    margin: 9px 0 28px;
    color: currentColor;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.28;
}

.legacy-offer-card b {
    display: inline-flex;
    padding: 13px 38px;
    color: var(--green);
    font-size: 15px;
    font-weight: 500;
    background: #fff;
}

.legacy-offer-card:hover b {
    color: #fff;
    background: var(--leaf);
}

.legacy-home-about {
    padding: 50px clamp(18px, 5vw, 72px);
    background: #fff;
}

.legacy-home-about-inner {
    max-width: 1140px;
    min-height: 360px;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(240px, 1fr);
    align-items: center;
    margin: 0 auto;
}

.legacy-home-about-copy {
    max-width: 760px;
}

.legacy-home-about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.legacy-home-about-image img {
    display: block;
    width: min(100%, 360px);
    height: auto;
}

.legacy-home-about h2 {
    margin: 0 0 30px;
    color: var(--green);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.12;
    text-transform: uppercase;
}

.legacy-home-about p {
    margin: 0 0 26px;
    color: #9c9c9c;
    font-size: 18px;
    line-height: 1.7;
}

.legacy-home-values-title {
    padding: 58px 18px 34px;
    text-align: center;
    background: #fff;
}

.legacy-home-values-title h2 {
    margin: 0;
    color: var(--green);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
}

.page-hero {
    position: relative;
    padding: 56px clamp(18px, 7vw, 96px);
    color: var(--green);
    text-align: center;
    background: linear-gradient(90deg, #f5f5f5, #fff 50%, #f5f5f5);
    overflow: hidden;
}

.page-hero > div {
    position: relative;
    z-index: 1;
}

.page-hero-compact h1 {
    margin: 0;
    color: var(--green);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.14;
    text-transform: uppercase;
}

.product-page-hero {
    min-height: 168px;
    display: grid;
    align-items: center;
    background: #fff url("../img/tlo_oferta.png") 0 0 / cover no-repeat;
}

.page-hero-about,
.page-hero-bio,
.page-hero-certificates {
    min-height: 168px;
    display: grid;
    align-items: center;
    background-color: #fff;
    background-repeat: no-repeat;
}

.page-hero-about,
.page-hero-bio {
    background-image: url("../img/tlo_oferta.png");
    background-position: 0 0;
    background-size: cover;
}

.page-hero-certificates {
    background-image: url("../img/tlo_oferta.png");
    background-position: 0 0;
    background-size: cover;
}

.legacy-page-image {
    min-height: 350px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.legacy-page-image-about {
    background-image: url("../img/page-hero-about-orchard.png");
}

.legacy-page-image-bio {
    background-image: url("../img/page-hero-bio-apple-hand.png");
}

.product-page-hero > div {
    width: min(960px, 100%);
}

.product-page-hero p:not(.eyebrow) {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: 20px;
}

.page-hero .eyebrow {
    display: none;
}

.content-section {
    padding: clamp(54px, 7vw, 96px) clamp(18px, 7vw, 96px);
}

.content-section-about {
    padding: 0;
    background: #fff;
}

.content-section-bio {
    padding: 0;
}

.content-section-certificates {
    padding: 0;
    background: url("../img/tlo-bio.png") 100% 0 / cover no-repeat;
}

.content-section-offer {
    padding: 0;
}

.content-section-product {
    padding: 0;
}

.content-section-contact {
    padding-top: 50px;
}

.content-section.muted {
    background: var(--paper);
}

.content-narrow {
    width: min(900px, 100%);
    margin: 0 auto;
}

.content-narrow.legacy-wide-content {
    width: 100%;
}

.content-narrow.legacy-bio-content {
    width: 100%;
}

.content-narrow.legacy-cert-content {
    width: 100%;
}

.content-narrow.legacy-offer-content {
    width: 100%;
}

.content-narrow.legacy-product-content {
    width: 100%;
}

.content-narrow.legacy-contact-content {
    width: 100%;
}

.content-narrow h2,
.content-narrow h3,
.section-head h2,
.split h2 {
    margin: 0 0 16px;
    color: var(--green);
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.08;
}

.content-narrow p,
.content-narrow li,
.split p {
    color: #43544f;
    font-size: 18px;
}

.content-narrow ul,
.content-narrow ol {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 10px 28px;
    padding-left: 22px;
}

.content-narrow ul:not(.cert-list) {
    gap: 14px;
    padding: 0;
    margin: 28px 0;
    list-style: none;
}

.content-narrow ul:not(.cert-list) li {
    margin: 0;
}

.content-narrow ul:not(.cert-list) a {
    position: relative;
    display: flex;
    min-height: 76px;
    align-items: center;
    padding: 18px 54px 18px 20px;
    border: 1px solid rgba(0, 108, 61, .16);
    border-radius: 8px;
    color: var(--green);
    font-weight: 800;
    line-height: 1.25;
    text-decoration: none;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(247, 250, 247, .96)),
        radial-gradient(circle at top right, rgba(139, 173, 24, .18), transparent 46%);
    box-shadow: 0 1px 0 rgba(23, 50, 41, .04);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.content-narrow ul:not(.cert-list) a::after {
    position: absolute;
    right: 18px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--white);
    font-size: 18px;
    line-height: 1;
    content: "›";
    background: var(--green);
}

.content-narrow ul:not(.cert-list) a:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 108, 61, .34);
    box-shadow: 0 16px 36px rgba(23, 50, 41, .08);
}

.privacy-policy .content-narrow ul,
.privacy-policy .content-narrow ol {
    display: block;
    padding-left: 24px;
    margin: 18px 0 28px;
    list-style: revert;
}

.privacy-policy .content-narrow ul:not(.cert-list) {
    padding-left: 24px;
    margin: 18px 0 28px;
    list-style: disc;
}

.privacy-policy .content-narrow ol {
    list-style: decimal;
}

.privacy-policy .content-narrow ul:not(.cert-list) li,
.privacy-policy .content-narrow ol li {
    margin: 0 0 8px;
}

.privacy-policy .content-narrow ul:not(.cert-list) a {
    display: inline;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: var(--green);
    font-weight: 600;
    line-height: inherit;
    text-decoration: underline;
    background: none;
    box-shadow: none;
}

.privacy-policy .content-narrow ul:not(.cert-list) a::after {
    content: none;
}

.privacy-policy .content-narrow ul:not(.cert-list) a:hover {
    transform: none;
    box-shadow: none;
}

.product-detail-content {
    width: min(1040px, 100%);
}

.product-detail-content > p:first-of-type {
    max-width: 860px;
    color: #334942;
    font-size: clamp(20px, 2.4vw, 25px);
    line-height: 1.55;
}

.product-detail-content ol {
    display: block;
    padding-left: 0;
    margin: 26px 0 40px;
    list-style: none;
}

.product-detail-content ol li {
    display: block;
    min-height: 0;
    padding: 9px 14px;
    border: 0;
    border-radius: 0;
    color: #294139;
    font-size: 16px;
    font-weight: 400;
    background: var(--white);
    box-shadow: none;
}

.product-detail-content ol li:nth-child(odd) {
    background: var(--paper);
}

.legacy-product {
    width: 100%;
    margin: 0 auto;
}

.legacy-product-hero {
    display: grid;
    grid-template-columns: minmax(180px, 285px) minmax(0, 855px);
    gap: 0;
    align-items: center;
    justify-content: center;
    padding: 100px 18px 60px;
    margin: 50px 0 0;
    background-image: url("../img/product-detail-bg.png");
    background-repeat: repeat-x;
    background-position: 50% 50%;
}

.legacy-product-image {
    display: grid;
    min-height: 210px;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    animation: agroconFadeInLeft .85s ease both;
}

.legacy-product-image img {
    display: block;
    width: min(100%, 250px);
    height: auto;
}

.legacy-product h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 174px;
    margin: 0;
    padding: 0 0 41px;
    color: var(--green);
    font-size: 37px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    background: transparent;
    animation: agroconFadeInRight .85s ease .12s both;
}

@keyframes agroconFadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-70px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes agroconFadeInRight {
    from {
        opacity: 0;
        transform: translate3d(70px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .legacy-product-image,
    .legacy-product h1 {
        animation: none;
    }
}

.legacy-product-body {
    width: min(1290px, 100%);
    display: block;
    padding: 20px 18px 50px;
    margin: 0 auto;
}

.legacy-product-copy p {
    width: min(650px, 100%);
    margin: 0 0 18px;
    margin-left: min(8.333%, 95px);
    color: var(--green);
    font-size: 18px;
    line-height: 1.75;
}

.legacy-product-tables {
    width: min(650px, 100%);
    display: block;
    margin-left: min(8.333%, 95px);
}

.legacy-product-tables-side {
    width: min(1040px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 650px) minmax(260px, 1fr);
    gap: 32px;
    align-items: start;
}

.legacy-product-tables-side .legacy-product-table {
    width: 100%;
}

.legacy-product-side-layout {
    width: min(1060px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 650px) minmax(360px, 1fr);
    gap: 30px;
    align-items: start;
    margin-left: min(8.333%, 95px);
}

.legacy-product-side-layout .legacy-product-copy p,
.legacy-product-side-layout .legacy-product-tables {
    width: 100%;
    margin-left: 0;
}

.legacy-product-table h3 {
    margin: 30px 0;
    color: var(--green);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
}

.legacy-product-table table {
    width: 100%;
    border-collapse: collapse;
    color: #2d433b;
    font-size: 16px;
}

.legacy-product-table th {
    padding: 10px 12px;
    color: var(--white);
    text-align: left;
    background: var(--green);
}

.legacy-product-table td {
    padding: 9px 12px;
    border: 0;
}

.legacy-product-table tbody tr:nth-child(odd) {
    background: var(--paper);
}

.legacy-product-table tbody tr:nth-child(even) {
    background: #fff;
}

.legacy-product-table-split {
    width: min(650px, 100%);
}

.legacy-product-table-split table {
    table-layout: fixed;
}

.legacy-product-table-split td {
    width: 50%;
    vertical-align: top;
}

.product-index {
    display: block;
}

.product-index-lead {
    width: min(890px, 100%);
    margin: 0 auto;
    color: var(--green);
    font-size: 20px;
    line-height: 1.75;
    text-align: center;
}

.product-index-lead a,
.product-index-note a {
    color: var(--green);
    text-decoration: none;
}

.product-index-intro {
    min-height: 290px;
    display: grid;
    place-items: center;
    padding: 42px 18px;
    background: #fff;
}

.product-index-offer {
    padding: 50px clamp(18px, 5vw, 72px) 46px;
    background: #f0f0f0;
}

.product-index-offer .legacy-offer-column:first-child {
    animation: agroconFadeInLeft .85s ease both;
}

.product-index-offer .legacy-offer-column:last-child {
    animation: agroconFadeInRight .85s ease both;
}

.product-index-grid {
    width: 100%;
}

.product-index-note {
    min-height: 255px;
    display: grid;
    place-items: center;
    padding: 54px 18px;
    border: 0;
    border-radius: 0;
    background: #fff url("../img/rectangle-4615.png") 50% 100% / cover no-repeat;
}

.product-index-note p {
    width: min(1030px, 100%);
    max-width: none;
    margin: 0 auto;
    color: var(--green);
    font-size: 22px;
    line-height: 1.7;
    text-align: center;
}

.product-detail-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 48px;
}

.product-detail-panel > div {
    padding: 26px;
    border: 1px solid rgba(0, 108, 61, .14);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(247, 250, 247, .94)),
        radial-gradient(circle at top right, rgba(139, 173, 24, .16), transparent 48%);
}

.product-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-chip-grid span {
    display: inline-flex;
    padding: 9px 12px;
    border: 1px solid rgba(0, 108, 61, .16);
    border-radius: 999px;
    color: #294139;
    font-size: 14px;
    font-weight: 800;
    background: var(--white);
}

.product-other {
    margin-top: 54px;
}

.product-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.product-mini-grid a {
    min-height: 64px;
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid rgba(0, 108, 61, .14);
    border-radius: 8px;
    color: var(--green);
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    background: var(--paper);
}

.product-mini-grid a:hover {
    border-color: rgba(0, 108, 61, .34);
    background: var(--white);
}

.product-detail-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    margin-top: 56px;
    padding: clamp(28px, 5vw, 44px);
    border-radius: 8px;
    color: var(--white);
    background:
        linear-gradient(120deg, rgba(0, 73, 42, .96), rgba(0, 108, 61, .86)),
        url("../img/slider_maliny-min.jpg") center/cover;
}

.product-detail-cta h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1;
}

.product-detail-cta p:not(.eyebrow) {
    max-width: 680px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .84);
    font-size: 18px;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
    gap: clamp(28px, 6vw, 72px);
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

.intro-section {
    border-bottom: 1px solid var(--line);
}

.section-head {
    max-width: 800px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-head p:not(.eyebrow) {
    margin: 12px auto 0;
    max-width: 700px;
    color: var(--muted);
    font-size: 18px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    max-width: 1180px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 22px 18px 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 108, 61, .13);
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    background: var(--white);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 108, 61, .35);
    box-shadow: var(--shadow);
}

.product-card small {
    display: none;
}

.product-card img {
    display: block;
    width: 100%;
    max-width: 178px;
    height: 142px;
    margin: 0 auto 18px;
    object-fit: contain;
}

.product-card span {
    position: relative;
    display: block;
    color: var(--green);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.18;
}

.product-card p {
    display: none;
}

.product-card b {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: auto;
    padding: 8px 18px;
    border-radius: 5px;
    color: var(--white);
    background: var(--green);
    font-size: 14px;
}

.values-band {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
    border: 0;
    box-shadow: none;
    background: var(--green);
    overflow: visible;
}

.values-band-apple {
    position: absolute;
    left: 0;
    top: -68px;
    z-index: 5;
    width: 900px;
    height: auto;
    pointer-events: none;
}

.legacy-values-footer {
    position: relative;
    min-height: 360px;
    padding-top: 70px;
    background: url("../img/tlo-elipsa.png") center top / contain no-repeat;
}

.legacy-values-footer h2 {
    margin: 0 0 98px;
    color: var(--green);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
}

.footer-values-band {
    width: 100%;
    margin: 0 auto;
}

.footer-values-apple {
    position: absolute;
    left: 0;
    top: -68px;
    z-index: 5;
    width: 900px;
    height: auto;
    pointer-events: none;
}

.values-band div {
    position: relative;
    z-index: 4;
    min-height: 62px;
    display: grid;
    place-items: center;
    padding: 0 16px;
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.12;
    text-align: center;
    text-transform: uppercase;
    background: var(--green);
}

.values-band div:nth-of-type(2) {
    background: var(--leaf);
}

.rounded-media {
    width: 100%;
    aspect-ratio: 1.2;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.home-about-image {
    max-height: 360px;
    object-fit: contain;
    box-shadow: none;
}

.cert-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.legacy-cert-content .cert-list {
    grid-template-columns: 1fr;
}

.cert-list a {
    position: relative;
    display: flex;
    min-height: 46px;
    align-items: center;
    padding: 0 0 0 54px;
    border: 0;
    border-radius: 0;
    color: var(--green);
    font-size: 20px;
    line-height: 1.35;
    text-decoration: none;
    background: transparent;
}

.cert-list a::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 46px;
    content: "";
    background: url("../img/Icon_pdf.png") center / contain no-repeat;
}

.cert-list a::after {
    content: none;
}

.cert-copy p {
    margin: 0;
}

.cert-copy p + p {
    margin-top: 18px;
}

.cert-current {
    width: min(810px, calc(100% - 36px));
    margin: 0 auto;
    padding: 0 0 86px;
    border-top: 0;
}

.cert-current h2 {
    margin-bottom: 10px;
    font-size: clamp(26px, 3vw, 38px);
}

.cert-current p {
    margin: 0 0 22px;
}

.cert-legacy {
    min-height: 390px;
    display: grid;
    align-items: start;
    padding: 72px 18px 0;
    background: transparent;
}

.cert-copy {
    width: min(810px, 100%);
    margin: 0 auto;
    color: var(--green);
    font-size: 20px;
    line-height: 1.75;
    text-align: center;
}

.cert-logo-band {
    min-height: 236px;
    display: grid;
    place-items: center;
    background: #f1f6e0;
}

.cert-mark {
    display: flex;
    gap: clamp(90px, 13vw, 190px);
    align-items: center;
    justify-content: center;
    margin: 0;
    text-align: center;
}

.cert-mark img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
}

.cert-mark .cert-mark-eko {
    width: 135px;
    max-height: none;
}

.cert-mark .cert-mark-eu {
    width: 147px;
    max-height: none;
}

.about-legacy {
    width: 100%;
}

.about-row {
    width: min(1140px, 100%);
    display: grid;
    grid-template-columns: minmax(220px, .85fr) minmax(0, 1.15fr);
    gap: clamp(24px, 5vw, 58px);
    align-items: center;
    margin: 0 auto;
}

.about-intro-band {
    padding: 46px 18px 34px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
}

.about-row img {
    display: block;
    width: 100%;
    max-height: 360px;
    object-fit: contain;
}

.about-row-intro img {
    max-height: 260px;
}

.about-row p,
.bio-legacy p {
    color: var(--green);
    font-size: clamp(18px, 1.8vw, 21px);
    line-height: 1.7;
}

.about-quality-band {
    min-height: 367px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    align-items: stretch;
    background: linear-gradient(90deg, #2e8f35, #0b783f);
}

.about-quality-copy {
    display: flex;
    align-items: center;
    padding: clamp(36px, 6vw, 78px) clamp(24px, 7vw, 72px);
}

.about-quality-copy p {
    width: min(520px, 100%);
    margin: 0 auto;
    color: #fff;
    font-size: clamp(18px, 1.8vw, 21px);
    line-height: 1.7;
}

.about-quality-band img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 367px;
    object-fit: cover;
}

.bio-legacy {
    max-width: none;
    margin: 0;
    text-align: center;
}

.bio-main-copy {
    min-height: 531px;
    display: grid;
    align-items: center;
    background: url("../img/tlo-bio.png") 100% 50% / cover no-repeat;
}

.bio-main-copy > div {
    width: min(810px, calc(100% - 36px));
    margin: 0 auto;
}

.bio-main-copy p {
    margin: 0;
    color: var(--green);
    font-size: 20px;
    line-height: 1.75;
}

.bio-main-copy p + p {
    margin-top: 16px;
}

.bio-summary-copy {
    min-height: 250px;
    display: grid;
    place-items: center;
    padding: 62px 18px 72px;
}

.bio-summary-copy p {
    width: min(850px, 100%);
    margin: 0;
    color: var(--leaf);
    font-size: 26px;
    line-height: 1.46;
}

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

.legacy-contact {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 5vw, 58px);
    align-items: start;
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 18px;
    color: #6b7772;
    font-size: 17px;
    line-height: 1.55;
}

.legacy-contact h2 {
    margin: 0 0 14px;
    color: var(--green);
    font-size: 22px;
    line-height: 1.2;
}

.legacy-contact p {
    margin: 0 0 13px;
}

.legacy-contact a {
    color: #8bad18;
    text-decoration: none;
}

.legacy-contact-direct {
    padding-top: 6px;
}

.contact-box {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.contact-box h2 {
    margin: 0 0 12px;
    color: var(--green);
    font-size: clamp(19px, 2vw, 24px);
    line-height: 1.2;
}

.agrocon-form-wrap {
    width: min(1290px, calc(100% - 36px));
    margin: 70px auto 0;
    padding: clamp(28px, 5vw, 44px);
    border: 1px solid rgba(0, 108, 61, .14);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(247, 250, 247, .96)),
        radial-gradient(circle at top right, rgba(139, 173, 24, .18), transparent 46%);
    box-shadow: 0 18px 45px rgba(23, 50, 41, .08);
}

.agrocon-form-head {
    max-width: 680px;
    margin-bottom: 26px;
}

.agrocon-form-head h2 {
    margin: 0 0 12px;
    color: var(--green);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
}

.agrocon-form-head p:not(.eyebrow) {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

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

.agrocon-form label {
    display: grid;
    gap: 8px;
    color: #2c4039;
    font-size: 14px;
    font-weight: 800;
}

.agrocon-form input,
.agrocon-form textarea {
    width: 100%;
    border: 1px solid rgba(0, 108, 61, .22);
    border-radius: 8px;
    padding: 13px 14px;
    color: var(--ink);
    font: inherit;
    background: var(--white);
    box-shadow: inset 0 1px 0 rgba(23, 50, 41, .04);
}

.agrocon-form textarea {
    resize: vertical;
}

.agrocon-form input:focus,
.agrocon-form textarea:focus {
    outline: 2px solid rgba(0, 108, 61, .18);
    border-color: rgba(0, 108, 61, .58);
}

.agrocon-form-wide,
.agrocon-form button,
.agrocon-form-message {
    grid-column: 1 / -1;
}

.agrocon-consent {
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    align-items: flex-start;
    font-weight: 700;
}

.agrocon-consent input {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-top: 3px;
}

.agrocon-form button {
    width: fit-content;
    min-width: 190px;
}

.agrocon-form-message {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 800;
}

.agrocon-form-message.is-success {
    color: #0b5634;
    background: rgba(139, 173, 24, .16);
}

.agrocon-form-message.is-error {
    color: #8b1e1e;
    background: rgba(139, 30, 30, .1);
}

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

.site-footer {
    position: relative;
    min-height: 338px;
    padding: 96px clamp(18px, 7vw, 96px) 24px 0;
    color: #9b9b9b;
    background: #fff;
    overflow: hidden;
}

.site-footer-with-values {
    padding: 0 0 24px;
}

.site-footer::before {
    display: none;
}

.trust-section {
    padding: clamp(58px, 7vw, 96px) clamp(18px, 7vw, 96px);
    background: linear-gradient(180deg, var(--cream), #fff);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1180px;
    margin: 36px auto 0;
}

.trust-grid div {
    padding: 28px;
    border: 1px solid rgba(0, 108, 61, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .76);
    box-shadow: 0 10px 30px rgba(23, 50, 41, .06);
}

.trust-grid strong {
    display: block;
    color: var(--green);
    font-size: 21px;
    line-height: 1.2;
}

.trust-grid p {
    margin: 12px 0 0;
    color: #43544f;
}

.final-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    padding: clamp(44px, 6vw, 72px) clamp(18px, 7vw, 96px);
    color: var(--white);
    background:
        linear-gradient(120deg, rgba(0, 75, 43, .96), rgba(0, 108, 61, .86)),
        url("../img/slider_maliny-min.jpg") center/cover;
}

.final-cta h2 {
    margin: 0;
    font-size: clamp(32px, 5vw, 60px);
    line-height: 1;
}

.final-cta p:not(.eyebrow) {
    max-width: 720px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .84);
    font-size: 19px;
}

.final-cta .button {
    min-width: 190px;
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(350px, .92fr) minmax(210px, .62fr) minmax(330px, .82fr);
    gap: clamp(36px, 6vw, 92px);
    align-items: center;
    max-width: 1290px;
    margin: 0 auto;
}

.footer-grid h2 {
    margin: 0 0 8px;
    color: var(--green);
    font-size: 27px;
    font-weight: 600;
    line-height: 1.15;
}

.footer-grid ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-offer {
    align-self: center;
    padding-left: 92px;
}

.footer-offer li {
    position: relative;
    margin: 2px 0;
    padding-left: 16px;
    color: #2f3734;
    font-size: 18px;
    line-height: 1.45;
}

.footer-offer li::before {
    position: absolute;
    left: 0;
    top: .7em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    content: "";
    background: var(--green);
}

.footer-grid a {
    color: inherit;
    text-decoration: none;
}

.footer-grid a:hover {
    color: var(--green);
}

.footer-cert-mark {
    display: grid;
    justify-items: center;
    gap: 24px;
}

.footer-cert-logo-eko {
    display: block;
    width: 118px;
    height: 118px;
    object-fit: contain;
}

.footer-cert-logo-eu {
    display: block;
    width: 116px;
    height: auto;
}

.footer-contact {
    display: grid;
    gap: 16px;
    font-size: 17px;
    line-height: 1.45;
}

.footer-contact-row {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.footer-contact-row > span {
    position: relative;
    width: 28px;
    height: 28px;
    color: var(--leaf);
}

.footer-contact-address > span::before {
    position: absolute;
    left: 7px;
    top: 1px;
    width: 13px;
    height: 13px;
    border: 3px solid currentColor;
    border-radius: 999px;
    content: "";
}

.footer-contact-address > span::after {
    position: absolute;
    left: 10px;
    top: 17px;
    width: 9px;
    height: 9px;
    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    content: "";
    transform: rotate(45deg);
}

.footer-contact-mail > span::before {
    position: absolute;
    inset: 5px 1px 6px;
    border: 3px solid currentColor;
    content: "";
}

.footer-contact-mail > span::after {
    position: absolute;
    left: 4px;
    top: 8px;
    width: 18px;
    height: 12px;
    border-left: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    content: "";
    transform: rotate(-45deg) skew(12deg, 12deg);
}

.footer-contact-phone > span::before {
    position: absolute;
    left: 5px;
    top: 4px;
    color: currentColor;
    content: "☎";
    font-size: 29px;
    line-height: 1;
}

.footer-contact p {
    margin: 0;
}

.footer-contact strong {
    color: var(--green);
    font-size: 21px;
    font-weight: 500;
    letter-spacing: 0;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: flex-end;
    max-width: 1290px;
    padding-top: 10px;
    margin: 28px auto 0;
    color: #9b9b9b;
    font-size: 14px;
}

@media (max-width: 1040px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .legacy-offer-column-center {
        align-content: stretch;
    }
}

@media (max-width: 820px) {
    .site-top-bar {
        padding: 5px 18px;
    }

    .site-top-bar-inner {
        justify-content: center;
        font-size: 12px;
    }

    .site-header {
        position: sticky;
        grid-template-columns: 1fr auto;
        gap: 12px 14px;
        min-height: 82px;
        padding: 0 18px;
        background: linear-gradient(90deg, var(--green) 0 72%, #fff 72% 100%);
    }

    .brand img {
        width: auto;
        height: 72px;
        margin-left: 0;
    }

    .desktop-nav {
        display: none;
    }

    .header-actions {
        justify-content: flex-end;
    }

    .lang-switch a {
        min-width: 30px;
        padding: 6px;
    }

    .mobile-nav {
        display: block;
        grid-column: 1 / -1;
        border-top: 1px solid var(--line);
    }

    .mobile-nav summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 44px;
        color: var(--green);
        font-size: 14px;
        font-weight: 800;
        cursor: pointer;
        list-style: none;
    }

    .mobile-nav summary::-webkit-details-marker {
        display: none;
    }

    .mobile-nav summary:focus {
        outline: none;
    }

    .mobile-nav summary:focus-visible {
        outline: 2px solid rgba(0, 108, 61, .28);
        outline-offset: 3px;
    }

    .mobile-nav summary::after {
        content: "+";
        width: 28px;
        height: 28px;
        display: grid;
        place-items: center;
        border: 1px solid var(--line);
        border-radius: 6px;
        color: var(--green);
        font-size: 20px;
        line-height: 1;
    }

    .mobile-nav[open] summary::after {
        content: "-";
    }

    .mobile-nav ul {
        display: grid;
        gap: 4px;
        padding: 0 0 12px;
        margin: 0;
        list-style: none;
    }

    .mobile-nav a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--line);
        color: #233a32;
        font-size: 16px;
        font-weight: 800;
        text-decoration: none;
    }

    .mobile-subitem a {
        padding-left: 18px;
        color: #496159;
        font-size: 14px;
        font-weight: 600;
    }

    .page-hero-about,
    .page-hero-bio,
    .page-hero-certificates {
        min-height: 180px;
    }

    .page-hero-about,
    .page-hero-bio {
        background-position: center center;
        background-size: cover;
    }

    .page-hero-certificates {
        background-position: right 18px center;
        background-size: auto 150px;
    }

    .home-hero {
        min-height: 560px;
    }

    .home-hero-content {
        width: calc(100% - 36px);
        margin: 0 18px 38px;
    }

    .home-hero h1,
    .page-hero h1 {
        font-size: 52px;
    }

    .home-hero p:not(.eyebrow) {
        font-size: 18px;
    }

    .content-section {
        padding: 48px 18px;
    }

    .content-narrow p,
    .content-narrow li,
    .split p {
        font-size: 17px;
    }

    .split,
    .footer-grid,
    .contact-grid,
    .agrocon-form,
    .product-detail-panel,
    .product-detail-cta,
    .product-index-note,
    .trust-grid,
    .final-cta {
        grid-template-columns: 1fr;
    }

    .cert-legacy {
        grid-template-columns: 1fr;
    }

    .site-footer {
        min-height: 0;
        padding-top: 42px;
        background: #fff;
    }

    .site-footer::before {
        display: none;
    }

    .footer-offer {
        padding-left: 96px;
    }

    .footer-offer li {
        font-size: 18px;
    }

    .footer-cert-mark {
        gap: 16px;
    }

    .footer-contact {
        max-width: 320px;
        margin: 0 auto;
        font-size: 17px;
    }

    .footer-bottom {
        justify-content: center;
        font-size: 15px;
    }

    .product-index-note {
        display: grid;
    }

    .hero-proof {
        gap: 8px;
        margin-top: 22px;
        padding-top: 18px;
    }

    .hero-proof span {
        width: 100%;
        font-size: 13px;
    }

    .hero-proof span + span::before {
        width: 5px;
        height: 5px;
        margin-right: 10px;
    }

    .values-band {
        grid-template-columns: 1fr;
    }

    .values-band-apple {
        left: -4px;
        top: -42px;
        z-index: 5;
        width: 560px;
    }

    .legacy-values-footer {
        min-height: 260px;
        padding-top: 42px;
    }

    .legacy-values-footer h2 {
        margin-bottom: 58px;
        font-size: 30px;
    }

    .footer-values-apple {
        left: -170px;
        top: -42px;
        width: 560px;
    }

    .legacy-home-slider {
        min-height: 340px;
        height: 46vw;
    }

    .legacy-slide p {
        min-width: min(330px, calc(100% - 52px));
        font-size: clamp(27px, 7vw, 40px);
        line-height: 1.35;
    }

    .legacy-home-offer {
        padding-top: 52px;
    }

    .legacy-home-about-inner {
        grid-template-columns: 1fr;
        min-height: 280px;
    }

    .legacy-home-about-image {
        display: none;
    }
}

@media (max-width: 560px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .legacy-offer-grid {
        grid-template-columns: 1fr;
    }

    .legacy-offer-column {
        gap: 28px;
    }

    .legacy-home-offer-title h2 {
        font-size: 34px;
    }

    .legacy-slider-arrow {
        display: none;
    }

    .home-hero h1 {
        font-size: 48px;
    }

    .home-hero p:not(.eyebrow) {
        font-size: 17px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .agrocon-form button {
        width: 100%;
    }

    .product-card {
        min-height: 214px;
    }

    .product-card img {
        max-width: 150px;
        height: 118px;
    }

    .about-row,
    .about-quality-band {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-quality-copy p {
        margin: 0;
    }

    .about-quality-band img {
        min-height: 260px;
    }

    .legacy-product-hero,
    .legacy-product-body,
    .legacy-contact {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .legacy-product-image {
        min-height: 210px;
    }

    .legacy-product-hero {
        padding: 60px 18px 36px;
        margin-top: 28px;
    }

    .legacy-product h1 {
        min-height: 0;
        padding-bottom: 20px;
        font-size: 30px;
    }

    .legacy-product-copy {
        text-align: left;
    }

    .legacy-product-copy p,
    .legacy-product-tables,
    .legacy-product-table-split,
    .legacy-product-side-layout {
        width: 100%;
        margin-left: 0;
    }

    .legacy-product-side-layout,
    .legacy-product-tables-side {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .legacy-product-table table {
        text-align: left;
    }

    .page-hero {
        padding: 54px 18px;
    }

    .page-hero-compact h1 {
        font-size: 40px;
    }

}
