:root {
    --ink: #14213d;
    --text: #3f4658;
    --muted: #eef3f7;
    --line: #dbe4ec;
    --brand: #006ab6;
    --brand-dark: #003f7f;
    --accent: #28a745;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(20, 33, 61, .12);
}

* { box-sizing: border-box; }
body {
    margin: 0;
    color: var(--text);
    background: #f8fafc;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 9px clamp(18px, 5vw, 72px);
    background: #2f8f59;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}
.topbar a { color: var(--white); }
.topbar-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    color: var(--white);
}
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    padding: 4px 11px 4px 5px;
    border-radius: 999px;
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.social-btn img {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    object-fit: contain;
}
.social-btn.facebook img {
    width: 19px;
    height: 19px;
    border-radius: 0;
}
.social-btn span {
    color: var(--white);
}
.social-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
    opacity: .92;
}
.social-btn.facebook { background: #1877f2; }
.social-btn.instagram { background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 14px clamp(18px, 5vw, 72px);
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}
.brand img { width: 270px; height: auto; }
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.main-nav a {
    padding: 10px 13px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
}
.main-nav a:hover { background: var(--muted); }
.mobile-menu-toggle {
    display: none;
    place-items: center;
    gap: 4px;
    width: 46px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
}
.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
}
.header-search {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.header-search input {
    width: min(280px, 24vw);
    min-width: 180px;
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #f8fbfd;
}
.header-search button {
    padding: 11px 16px;
    border: 0;
    border-radius: 999px;
    background: var(--brand);
    color: var(--white);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}
.header-search-results {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 50;
    width: min(460px, calc(100vw - 28px));
    max-height: 440px;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 22px 50px rgba(5, 25, 52, .16);
}
.header-search-result {
    display: grid;
    grid-template-columns: 62px 1fr;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 12px;
    color: var(--ink);
}
.header-search-result:hover {
    background: #eef7f3;
}
.header-search-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 10px;
    background: #f3f8fb;
    overflow: hidden;
}
.header-search-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.header-search-thumb.is-empty::after {
    content: "Producto";
    color: #8090a3;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}
.header-search-info {
    min-width: 0;
}
.header-search-info strong {
    display: block;
    color: var(--ink);
    font-size: 13px;
    line-height: 1.25;
    font-weight: 900;
}
.header-search-info small {
    display: block;
    margin-top: 4px;
    color: #607086;
    font-size: 11px;
    font-weight: 700;
}
.header-search-all,
.header-search-empty {
    display: block;
    margin-top: 6px;
    padding: 11px 12px;
    border-radius: 10px;
    background: #eef7ff;
    color: var(--brand);
    font-size: 13px;
    font-weight: 900;
    text-align: center;
}
.header-search-empty {
    background: #f6f9fb;
    color: #607086;
}
.search-result-note {
    margin-top: 14px;
    color: var(--ink);
    font-weight: 700;
}

.hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 2048 / 900;
    height: 800px;
    min-height: 0;
    max-height: 800px;
    overflow: hidden;
    background: #eef7ff;
}
.slides-track, .hero-slide {
    position: absolute;
    inset: 0;
}
.hero-slide {
    opacity: 0;
    pointer-events: none;
    transform: translateX(18px);
    transition: opacity .9s ease, transform .9s ease;
}
.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.025);
    transition: transform 5.2s ease, filter .9s ease;
    filter: saturate(.95);
    will-change: transform;
}
.hero-slide.is-active img {
    animation: bannerDrift 5.2s ease forwards;
    filter: saturate(1);
}
.hero-slide.slide-pvc img { object-position: center 52%; }
.hero-slide.slide-ppr img { object-position: center 52%; }
.hero-slide.slide-hdpe img { object-position: center 52%; }
.hero-slide.slide-medidores img { object-position: center 52%; }
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .92) 24%, rgba(255, 255, 255, .28) 47%, rgba(255, 255, 255, 0) 72%);
}
.slide-copy {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: clamp(86px, 9vw, 170px);
    width: min(600px, 36vw);
    opacity: 0;
    transform: translateY(-44%) translateX(-18px);
    transition: opacity .7s ease .2s, transform .7s ease .2s;
}
.hero-slide.is-active .slide-copy {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
.slide-copy p {
    margin: 0 0 10px;
    color: var(--brand);
    font-size: clamp(22px, 2.55vw, 34px);
    font-weight: 900;
    text-transform: uppercase;
    display: inline-block;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid transparent;
}
.hero-slide.is-active .slide-copy p {
    animation:
        typeKicker .95s steps(var(--type-chars), end) .28s forwards,
        typeCaret .72s step-end .28s 4;
    border-right-color: var(--brand);
}
.slide-copy h1,
.slide-copy h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(44px, 5.05vw, 82px);
    line-height: 1;
}
.slide-copy h1 span,
.slide-copy h2 span { display: block; }
.hero-slide.slide-hdpe .slide-copy {
    left: clamp(62px, 7vw, 130px);
    width: min(470px, 30vw);
}
.hero-slide.slide-hdpe .slide-copy h1,
.hero-slide.slide-hdpe .slide-copy h2 {
    font-size: clamp(40px, 4.45vw, 72px);
}
.slide-copy .btn { margin-top: 26px; }
.slider-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    width: 46px;
    height: 58px;
    border: 0;
    border-radius: 6px;
    color: var(--ink);
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 10px 24px rgba(20, 33, 61, .16);
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}
.slider-arrow:hover { background: var(--white); }
.slider-arrow.prev { left: 18px; }
.slider-arrow.next { right: 18px; }
.slider-dots {
    position: absolute;
    z-index: 4;
    left: clamp(20px, 6vw, 88px);
    bottom: 28px;
    display: flex;
    gap: 10px;
}
.slider-dots button {
    width: 42px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(20, 33, 61, .22);
    cursor: pointer;
    transition: width .35s ease, background .35s ease, transform .35s ease;
}
.slider-dots button.is-active {
    width: 56px;
    background: var(--brand);
}

@keyframes bannerDrift {
    0% { transform: scale(1.035) translateX(10px); }
    100% { transform: scale(1) translateX(0); }
}

@keyframes typeKicker {
    from { max-width: 0; }
    to { max-width: calc(var(--type-chars) * 1.14ch + .35em); }
}

@keyframes typeCaret {
    0%, 100% { border-right-color: transparent; }
    50% { border-right-color: var(--brand); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-slide img,
    .slide-copy,
    .slide-copy p,
    .slider-dots button {
        animation: none !important;
        transition: none !important;
    }
    .slide-copy p {
        max-width: none;
        border-right-color: transparent;
    }
}

.modern-hero {
    min-height: 72vh;
    display: grid;
    align-items: end;
    padding: clamp(44px, 7vw, 90px) clamp(18px, 5vw, 72px);
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(8, 18, 38, .88) 0%, rgba(8, 18, 38, .58) 52%, rgba(8, 18, 38, .18) 100%),
        url("https://yadiranicol.com/wp-content/uploads/2026/01/3I3A9340-scaled-580x365.jpg") center / cover;
}
.hero-layer {
    max-width: 820px;
    animation: rise .65s ease both;
}
.modern-hero h1 {
    margin: 0;
    max-width: 820px;
    font-size: clamp(42px, 7vw, 82px);
    line-height: .98;
}
.modern-hero p {
    max-width: 680px;
    font-size: 18px;
}
.modern-hero .eyebrow { color: #8dd7ff; }

.line-showcase {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 22px clamp(18px, 5vw, 72px);
    background: var(--white);
}
.line-card {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    border-radius: 8px;
    background: #101827;
    box-shadow: var(--shadow);
}
.line-card img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    opacity: .82;
    transition: transform .35s ease, opacity .35s ease;
}
.line-card:hover img { transform: scale(1.06); opacity: .95; }
.line-card div {
    position: absolute;
    inset: auto 0 0;
    padding: 22px;
    color: var(--white);
    background: linear-gradient(180deg, transparent, rgba(4, 12, 26, .92));
}
.line-card span {
    display: block;
    margin-bottom: 6px;
    color: #9dd8ff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.line-card h2 {
    margin: 0 0 10px;
    font-size: 26px;
    line-height: 1.05;
}
.line-card small { font-weight: 900; }

.benefit-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 0;
    background: #3f66b5;
}
.benefit-strip article {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    min-height: 120px;
    padding: 26px clamp(18px, 3vw, 44px);
    color: var(--white);
    background: #3f66b5;
    border-right: 1px solid rgba(255, 255, 255, .18);
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.benefit-strip article:last-child { border-right: 0; }
.benefit-strip article:hover {
    background: #3f66b5;
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(20, 33, 61, .22);
    z-index: 1;
}
.benefit-icon {
    width: 58px;
    height: 58px;
}
.benefit-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--white);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.benefit-strip h3 {
    margin: 0 0 5px;
    color: var(--white);
    font-size: 16px;
    line-height: 1.15;
    text-transform: uppercase;
}
.benefit-strip p {
    margin: 0;
    color: rgba(255, 255, 255, .9);
    font-size: 15px;
    line-height: 1.45;
}

.brochure-strip {
    padding: 118px clamp(18px, 5vw, 72px);
    background: var(--white);
}
.brochure-band {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(1190px, 100%);
    min-height: 0;
    margin: 0 auto;
    padding: 24px clamp(32px, 5vw, 80px);
    color: var(--white);
    background: #1dbb54;
    border-radius: 999px;
    overflow: visible;
}
.brochure-card {
    position: absolute;
    left: clamp(96px, 18vw, 300px);
    top: 50%;
    width: 220px;
    aspect-ratio: auto;
    align-self: center;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: 0 22px 42px rgba(20, 33, 61, .2);
    transform: translateY(-50%);
    overflow: hidden;
}
.brochure-card:hover {
    transform: translateY(-50%) scale(1.02);
    box-shadow: 0 26px 48px rgba(20, 33, 61, .24);
}
.brochure-card img {
    width: 100%;
    height: auto;
    border-radius: 13px;
    display: block;
}
.brochure-copy h2 {
    margin: 0 0 10px;
    color: var(--white);
    font-size: clamp(21px, 2.1vw, 28px);
    line-height: 1.05;
    text-transform: uppercase;
}
.brochure-copy {
    width: min(520px, 100%);
    margin-left: clamp(260px, 25vw, 390px);
}
.brochure-copy p {
    margin: 0;
    max-width: 560px;
    font-size: 15px;
    line-height: 1.42;
}

.quality-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(360px, 670px) minmax(340px, 470px);
    justify-content: center;
    gap: clamp(8px, 1.8vw, 24px);
    align-items: center;
    min-height: 410px;
    padding: 26px clamp(18px, 5vw, 72px) 26px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .82) 0%, rgba(255, 255, 255, .7) 45%, rgba(255, 255, 255, .58) 100%),
        url("../images/sections/quality-background.webp") center / cover no-repeat;
    overflow: hidden;
}
.quality-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .72) 12%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, .72) 88%, rgba(255, 255, 255, 1) 100%),
        rgba(255, 255, 255, .18);
    pointer-events: none;
}
.quality-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .08) 48%, rgba(255, 255, 255, .62) 100%);
    pointer-events: none;
}
.quality-figure {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    align-self: end;
    min-height: 384px;
    margin-bottom: -26px;
}
.quality-figure img {
    width: min(690px, 108%);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 34px rgba(20, 33, 61, .18));
    transition: transform .35s ease;
}
.quality-section:hover .quality-figure img { transform: translateY(-6px) scale(1.012); }
.quality-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    min-height: 318px;
    align-self: center;
    padding: clamp(26px, 3.6vw, 42px);
    color: rgba(255, 255, 255, .9);
    background: #3f66b5;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    box-shadow: 0 22px 48px rgba(20, 33, 61, .24);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}
.quality-section:hover .quality-copy {
    transform: translateY(-5px);
    box-shadow: 0 30px 68px rgba(20, 33, 61, .3);
}
.quality-copy::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -88px;
    top: -88px;
    border: 34px solid rgba(255, 255, 255, .11);
    border-radius: 50%;
}
.quality-copy p {
    position: relative;
    margin: 0;
    max-width: 560px;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 400;
}
.quality-copy strong {
    color: var(--white);
    font-weight: 800;
}
.quality-intro {
    color: var(--white);
    font-size: 16px !important;
    line-height: 1.25 !important;
    font-weight: 400;
}
.quality-mark {
    width: 42px;
    height: 4px;
    background: #2f8f59;
    border-radius: 999px;
}

.company-section, .commitment-section, .logistics-section {
    display: grid;
    grid-template-columns: minmax(300px, .95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(28px, 6vw, 78px);
    padding: clamp(48px, 7vw, 90px) clamp(18px, 5vw, 72px);
    background: #f8fafc;
}
.company-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.company-image img, .commitment-section img, .logistics-section img {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
}
.company-copy h2, .commitment-section h2, .logistics-copy h2, .pvc-callout h2 {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: clamp(30px, 5vw, 58px);
    line-height: 1.02;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    background: var(--white);
}
.value-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fbfd;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.value-card:hover {
    color: var(--white);
    background: #3f66b5;
    border-color: transparent;
    box-shadow: 0 20px 42px rgba(20, 33, 61, .18);
    transform: translateY(-6px);
}
.value-card:nth-child(2):hover { background: #2f8f59; }
.value-card img {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    object-fit: contain;
    transition: filter .25s ease, transform .25s ease;
}
.value-card:hover img {
    filter: brightness(0) invert(1);
    transform: scale(1.06);
}
.value-card h3 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 24px;
    transition: color .25s ease;
}
.value-card:hover h3 { color: var(--white); }
.value-card p {
    margin: 0 auto;
    max-width: 440px;
    transition: color .25s ease;
}

.section-head.with-actions {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}
.product-band { background: #edf4f8; }
.product-band.light { background: var(--white); }
.pvc-tabs-section {
    background: var(--white);
    overflow: hidden;
}
.pvc-tabs-layout {
    width: min(100%, 1420px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(180px, 230px) minmax(0, 1120px);
    gap: clamp(28px, 4vw, 52px);
    align-items: start;
    justify-content: center;
}
.pvc-tabs-sidebar {
    position: relative;
    z-index: 2;
    padding-top: 10px;
}
.pvc-tabs-sidebar .eyebrow {
    color: #0a8d3d;
    font-size: clamp(20px, 2.4vw, 25px);
}
.pvc-tab-buttons {
    display: grid;
    gap: 16px;
    margin: 24px 0;
}
.pvc-tab-buttons button {
    width: fit-content;
    padding: 0 0 7px;
    border: 0;
    border-bottom: 2px solid transparent;
    color: #6b7280;
    background: transparent;
    font: inherit;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.1;
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.pvc-tab-buttons button:hover,
.pvc-tab-buttons button.is-active {
    color: var(--ink);
    border-color: #0a8d3d;
    transform: translateX(3px);
}
.pvc-tabs-content {
    min-width: 0;
    width: 100%;
    max-width: 1120px;
}
.pvc-tab-panel {
    display: none;
}
.pvc-tab-panel.is-active {
    display: block;
}
.pvc-carousel {
    overflow: hidden;
    padding: 4px 0 10px;
}
.pvc-carousel-track {
    display: flex;
    gap: 26px;
    transition: transform .6s ease;
    will-change: transform;
}
.pvc-carousel .product-card {
    flex: 0 0 260px;
    box-shadow: none;
    border: 0;
    background: transparent;
}
.pvc-carousel .product-card:hover {
    box-shadow: none;
}
.pvc-carousel .product-image {
    aspect-ratio: 1;
    background: #ffffff;
    border: 1px solid #dbe4ec;
    box-shadow: 0 10px 26px rgba(20, 33, 61, .06);
}
.pvc-carousel .product-body {
    padding: 16px 4px 0;
}
.pvc-carousel .product-body h3 {
    font-size: 14px;
    text-transform: uppercase;
}
.pvc-carousel .product-body p,
.pvc-carousel .text-link {
    display: none;
}
.pvc-carousel .pill {
    background: transparent;
    color: #a3a3a3;
    padding: 0;
    font-size: 12px;
}
.pvc-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    min-height: 20px;
    margin-top: 20px;
}
.pvc-carousel-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 2px solid #b9bec7;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.pvc-carousel-dots button.is-active {
    background: #32343a;
    border-color: #32343a;
    transform: scale(1.08);
}
.irrigation-tabs-section {
    background: var(--white);
}
.irrigation-tabs-sidebar .eyebrow {
    color: #0a8d3d;
}
.empty-carousel {
    min-height: 220px;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--ink);
}

.commitment-section {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 360px;
    padding: 82px 24px 86px;
    overflow: hidden;
    background: var(--white);
    color: var(--white);
    text-align: center;
}
.commitment-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #3f66b5;
    clip-path: polygon(0 0, 50% 18%, 100% 0, 100% 100%, 0 100%);
}
.commitment-section::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 150px;
    height: 64px;
    background: var(--white);
    transform: translateX(-50%);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.commitment-shape {
    position: absolute;
    left: 50%;
    top: 46%;
    z-index: 1;
    width: min(620px, calc(100% - 48px));
    transform: translate(-50%, -50%);
}
.commitment-shape p {
    margin: 0 0 12px;
    color: var(--white);
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.25;
}
.commitment-section h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(34px, 4.6vw, 52px);
    font-weight: 900;
    line-height: 1.12;
}
.solutions-banner {
    min-height: 386px;
}
.solutions-banner .commitment-shape {
    top: 50%;
    width: min(640px, calc(100% - 48px));
}
.solutions-banner .commitment-shape p {
    margin-bottom: 14px;
    font-size: clamp(20px, 2.2vw, 26px);
    line-height: 1.06;
}
.solutions-banner h2 {
    font-size: clamp(38px, 4.7vw, 50px);
    line-height: 1.18;
}

.import-video-section {
    background:
        linear-gradient(90deg, rgba(47, 143, 89, .08), rgba(63, 102, 181, .08)),
        var(--white);
}
.import-video-wrap {
    width: min(100%, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(34px, 6vw, 78px);
}
.import-video-frame {
    position: relative;
    isolation: isolate;
    border-radius: 8px;
}
.import-video-frame::before {
    content: "";
    position: absolute;
    inset: -18px 22px 18px -18px;
    z-index: -1;
    border-radius: 8px;
    background: #2f8f59;
    opacity: .18;
}
.import-video-frame::after {
    content: "";
    position: absolute;
    right: -18px;
    bottom: -18px;
    z-index: -1;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #3f66b5;
    opacity: .22;
}
.import-video-frame video {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: 620px;
    border-radius: 8px;
    object-fit: cover;
    background: #0f172a;
    box-shadow: 0 28px 60px rgba(20, 33, 61, .2);
}
.video-logo-poster {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 22px;
    padding: 34px;
    border: 0;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .78)),
        radial-gradient(circle at 50% 38%, rgba(47, 143, 89, .18), transparent 38%),
        #eef6f4;
    cursor: pointer;
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}
.video-logo-poster::after {
    content: "";
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #2f8f59;
    box-shadow: 0 14px 30px rgba(47, 143, 89, .28);
    clip-path: polygon(38% 27%, 38% 73%, 74% 50%);
}
.video-logo-poster img {
    width: min(260px, 82%);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 20px rgba(20, 33, 61, .12));
}
.video-logo-poster span {
    color: var(--ink);
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.video-logo-poster:hover {
    transform: scale(1.01);
}
.video-logo-poster.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.import-video-copy {
    max-width: 680px;
    padding: clamp(26px, 4vw, 44px);
    border-left: 5px solid #2f8f59;
    border-radius: 8px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 20px 50px rgba(20, 33, 61, .08);
}
.section-mark {
    display: block;
    width: 52px;
    height: 4px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: #2f8f59;
}
.import-video-copy .eyebrow {
    color: #3f66b5;
}
.import-video-copy h2 {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.06;
}
.import-video-copy p {
    margin: 0 0 14px;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.68;
}
.import-video-copy p:last-child {
    margin-bottom: 0;
}
.import-video-copy strong {
    color: var(--ink);
}

.logistics-section {
    grid-template-columns: minmax(320px, 470px) minmax(560px, 790px);
    justify-content: center;
    align-items: center;
    gap: clamp(44px, 7vw, 92px);
    background: var(--white);
    padding: clamp(78px, 8vw, 118px) clamp(18px, 5vw, 72px) clamp(42px, 5vw, 64px);
    overflow: hidden;
}
.logistics-copy {
    align-self: center;
    justify-self: end;
}
.logistics-copy h2 {
    margin: 0 0 28px;
    color: #3f66b5;
    font-size: clamp(42px, 4.9vw, 58px);
    line-height: .94;
    font-weight: 900;
}
.logistics-copy p {
    margin: 0;
    max-width: 500px;
    color: #7a7f87;
    font-size: 16px;
    line-height: 1.56;
}
.logistics-section img {
    width: min(820px, 100%);
    min-height: 0;
    align-self: end;
    justify-self: center;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    transform: translateY(16px);
}

.pvc-callout {
    position: relative;
    isolation: isolate;
    margin: 0;
    padding: clamp(58px, 7vw, 78px) clamp(18px, 5vw, 72px) clamp(66px, 7vw, 92px);
    overflow: hidden;
    background: var(--white);
}
.pvc-callout::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #3f66b5;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 27%, 50% 53%, 100% 27%, 100% 0);
}
.pvc-callout-inner {
    width: min(100%, 1200px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(360px, 580px) minmax(280px, 430px);
    align-items: center;
    justify-content: center;
    gap: clamp(34px, 5vw, 70px);
}
.pvc-callout-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1.58;
    object-fit: cover;
    object-position: center;
}
.pvc-callout-copy h2 {
    margin: 0 0 14px;
    color: #184fa9;
    font-size: clamp(32px, 3.8vw, 42px);
    font-weight: 900;
    line-height: .94;
    text-transform: uppercase;
}
.pvc-callout-copy p {
    margin: 0 0 26px;
    max-width: 390px;
    color: #777;
    font-size: 16px;
    line-height: 1.55;
}
.pvc-callout-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 4px;
    background: #2f8f59;
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.pvc-callout-btn span {
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}
.pvc-callout-btn:hover {
    background: #257849;
    box-shadow: 0 12px 24px rgba(47, 143, 89, .22);
    transform: translateY(-2px);
}
.pvc-mini-products {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(5, minmax(210px, 1fr));
    gap: 24px;
    margin-top: 10px;
    width: min(100%, 1148px);
    justify-self: center;
    justify-content: center;
}
.pvc-mini-card {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: center;
    gap: 14px;
    min-height: 232px;
    padding: 20px 18px 22px;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 16px 34px rgba(20, 33, 61, .06);
    transition: transform .2s ease, box-shadow .2s ease;
}
.pvc-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(20, 33, 61, .12);
}
.pvc-mini-card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    -webkit-user-drag: none;
    user-select: none;
}
.pvc-mini-card strong {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 1.32;
    text-align: center;
    text-transform: uppercase;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.suppliers {
    background: linear-gradient(180deg, #eef7fb 0%, #ffffff 34%, #f5faf7 100%);
    text-align: center;
}
.supplier-head {
    max-width: 980px;
    margin: 0 auto 42px;
}
.supplier-head .eyebrow {
    color: #2f8f59;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.1;
}
.supplier-head h2 {
    margin: 14px auto 0;
    max-width: 920px;
    color: #3f66b5;
    font-size: clamp(36px, 4.4vw, 48px);
    line-height: 1.02;
}
.supplier-instruction {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 22px auto 0;
    padding: 14px 24px;
    border: 1px solid rgba(47, 143, 89, .24);
    border-radius: 999px;
    background: #eaf8f0;
    color: #1f6f47;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.3;
    box-shadow: 0 12px 28px rgba(47, 143, 89, .11);
}
.supplier-instruction::before {
    content: "Click";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    min-height: 34px;
    padding: 0 16px;
    margin-right: 0;
    border-radius: 999px;
    background: var(--brand);
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.supplier-carousel {
    position: relative;
    width: min(100%, 1320px);
    margin: 0 auto;
    padding: 0 64px;
    overflow: visible;
}
.supplier-window {
    width: 100%;
    padding: 28px 2px 18px;
    overflow-x: hidden;
    overflow-y: hidden;
    scrollbar-width: none;
}
.supplier-window::-webkit-scrollbar {
    display: none;
}
.supplier-track {
    display: flex;
    gap: 0;
    width: 100%;
    transition: transform .55s ease;
    transform: translateX(0);
    will-change: transform;
}
.supplier-slide {
    flex: 0 0 100%;
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 190px);
    justify-content: center;
    justify-items: center;
    align-items: center;
    gap: clamp(20px, 2.8vw, 44px);
    min-height: 144px;
    padding: 0 4px;
}
.supplier-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 126px;
    padding: 18px;
    border: 1px solid rgba(0, 106, 182, .12);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(20, 33, 61, .06);
    transform: translateY(0);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.supplier-card img {
    width: 100%;
    height: 82px;
    object-fit: contain;
    filter: grayscale(1) saturate(0) opacity(.58);
    transition: filter .25s ease, transform .25s ease;
}
.supplier-card[hidden],
.supplier-brand-name[hidden] {
    display: none;
}
.supplier-brand-name {
    display: grid;
    place-items: center;
    width: 100%;
    max-width: 152px;
    height: 68px;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.15;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    filter: grayscale(1) saturate(0) opacity(.78);
    transition: color .25s ease, filter .25s ease, transform .25s ease;
}
.supplier-card:hover .supplier-brand-name,
.supplier-card:focus-visible .supplier-brand-name {
    color: var(--brand-dark);
    filter: grayscale(0) saturate(1) opacity(1);
    transform: scale(1.05);
}
.supplier-card:hover,
.supplier-card:focus-visible {
    border-color: rgba(47, 143, 89, .46);
    background: #fbfffd;
    box-shadow: 0 18px 36px rgba(47, 143, 89, .16);
    transform: translateY(-1px);
}
.supplier-card:hover img {
    filter: grayscale(0) saturate(1) opacity(1);
    transform: scale(1.05);
}
.supplier-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(0, 106, 182, .18);
    border-radius: 50%;
    background: var(--white);
    color: var(--brand);
    box-shadow: 0 14px 28px rgba(20, 33, 61, .14);
    transform: translateY(-50%);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.supplier-arrow span {
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
}
.supplier-arrow:hover {
    background: var(--brand);
    color: var(--white);
    box-shadow: 0 18px 34px rgba(0, 106, 182, .22);
    transform: translateY(-50%) scale(1.04);
}
.supplier-arrow-prev {
    left: 4px;
}
.supplier-arrow-next {
    right: 4px;
}
.supplier-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}
.supplier-dots:empty {
    display: none;
}
.supplier-dots button {
    width: 36px;
    height: 10px;
    padding: 0;
    border: 2px solid #b9bec7;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    transition: width .2s ease, background .2s ease, border-color .2s ease;
}
.supplier-dots button.is-active {
    width: 52px;
    background: #2f8f59;
    border-color: #2f8f59;
}

.gallery-hero {
    position: relative;
    display: grid;
    align-items: end;
    min-height: min(680px, 72vh);
    padding: clamp(72px, 11vw, 142px) clamp(20px, 6vw, 92px) clamp(46px, 6vw, 82px);
    overflow: hidden;
    isolation: isolate;
    background-image:
        linear-gradient(90deg, rgba(7, 22, 42, .92) 0%, rgba(7, 22, 42, .68) 42%, rgba(7, 22, 42, .12) 100%),
        var(--gallery-hero-image);
    background-size: cover;
    background-position: center;
    color: var(--white);
}
.gallery-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    z-index: -1;
    background: linear-gradient(180deg, rgba(7, 22, 42, 0) 0%, rgba(7, 22, 42, .72) 100%);
}
.gallery-hero-copy {
    width: min(760px, 100%);
}
.gallery-hero .eyebrow {
    color: #58d38f;
}
.gallery-hero h1 {
    margin: 12px 0 18px;
    max-width: 780px;
    font-size: clamp(42px, 6.5vw, 84px);
    line-height: .94;
    color: var(--white);
}
.gallery-hero p {
    max-width: 680px;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(16px, 1.7vw, 20px);
}
.gallery-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.gallery-hero-actions a,
.gallery-filter button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: var(--white);
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.gallery-hero-actions a:hover,
.gallery-filter button:hover,
.gallery-filter button.is-active {
    border-color: #2f8f59;
    background: #2f8f59;
    color: var(--white);
    transform: translateY(-1px);
}
.gallery-hero-badge {
    position: absolute;
    right: clamp(18px, 5vw, 72px);
    bottom: clamp(22px, 4vw, 58px);
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
    max-width: 260px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 8px;
    background: rgba(7, 22, 42, .58);
    color: var(--white);
}
.gallery-hero-badge strong {
    font-size: 42px;
    line-height: 1;
}
.gallery-hero-badge span {
    font-size: 12px;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
}
.gallery-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: #d8e6f0;
}
.gallery-stats div {
    min-height: 150px;
    padding: clamp(24px, 3vw, 38px);
    background: #f7fbff;
}
.gallery-stats span {
    color: var(--brand);
    font-weight: 900;
}
.gallery-stats strong {
    display: block;
    margin: 8px 0 6px;
    color: var(--ink);
    font-size: 24px;
}
.gallery-stats p {
    margin: 0;
    color: #56627a;
}
.gallery-story {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: #cfdfea;
}
.gallery-story article {
    min-height: 360px;
    padding: clamp(34px, 5vw, 68px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96) 0%, rgba(244, 250, 255, .94) 100%);
}
.gallery-story article:nth-child(2) {
    background:
        linear-gradient(135deg, rgba(11, 34, 55, .96) 0%, rgba(17, 69, 103, .94) 100%);
    color: var(--white);
}
.gallery-story span {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--brand);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.gallery-story article:nth-child(2) span {
    color: #7df0ac;
}
.gallery-story h2 {
    margin: 0 0 18px;
    max-width: 620px;
    color: var(--ink);
    font-size: clamp(30px, 3.7vw, 48px);
    line-height: 1;
}
.gallery-story article:nth-child(2) h2 {
    color: var(--white);
}
.gallery-story p {
    max-width: 680px;
    margin: 0 0 14px;
    color: #526179;
    font-size: 17px;
    line-height: 1.72;
}
.gallery-story article:nth-child(2) p {
    color: rgba(255, 255, 255, .82);
}
.gallery-section {
    padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
    background: linear-gradient(180deg, #ffffff 0%, #f2f7fb 100%);
}
.gallery-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    width: min(1280px, 100%);
    margin: 0 auto 32px;
}
.gallery-section-head h2 {
    margin: 8px 0 0;
    max-width: 720px;
    color: var(--ink);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
}
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}
.gallery-filter button {
    border-color: rgba(0, 106, 182, .18);
    background: var(--white);
    color: var(--brand-dark);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 190px;
    gap: 16px;
    width: min(1280px, 100%);
    margin: 0 auto;
}
.gallery-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: #d7e4ef;
    box-shadow: 0 18px 34px rgba(20, 33, 61, .12);
    cursor: pointer;
    isolation: isolate;
}
.gallery-card[hidden],
.gallery-card.is-hidden {
    display: none !important;
}
.gallery-card.is-wide {
    grid-column: span 2;
}
.gallery-card.is-vertical {
    grid-row: span 2;
}
.gallery-card.is-featured {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform .35s ease, filter .35s ease;
}
.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(7, 22, 42, 0) 38%, rgba(7, 22, 42, .82) 100%);
    opacity: .9;
}
.gallery-card-info {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    display: grid;
    gap: 5px;
    color: var(--white);
    text-align: left;
}
.gallery-card-info small {
    color: #7df0ac;
    font-weight: 900;
    text-transform: uppercase;
}
.gallery-card-info strong {
    font-size: 18px;
    line-height: 1.15;
}
.gallery-card:hover img,
.gallery-card:focus-visible img {
    filter: saturate(1.08);
    transform: scale(1.06);
}
.gallery-card:hover,
.gallery-card:focus-visible {
    outline: 3px solid rgba(47, 143, 89, .38);
    outline-offset: 3px;
}
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 28px clamp(16px, 4vw, 58px);
    background: rgba(7, 22, 42, .9);
}
.gallery-lightbox[hidden] {
    display: none;
}
.gallery-lightbox figure {
    display: grid;
    gap: 14px;
    width: min(1120px, 100%);
    margin: 0;
}
.gallery-lightbox img {
    width: 100%;
    max-height: min(72vh, 760px);
    object-fit: contain;
    border-radius: 8px;
    background: #07162a;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .38);
}
.gallery-lightbox figcaption {
    display: grid;
    gap: 4px;
    color: var(--white);
    text-align: center;
}
.gallery-lightbox figcaption strong {
    font-size: 22px;
}
.gallery-lightbox figcaption span {
    color: rgba(255, 255, 255, .76);
}
.gallery-lightbox-close,
.gallery-lightbox-arrow {
    position: absolute;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
}
.gallery-lightbox-close {
    top: 20px;
    right: 20px;
}
.gallery-lightbox-prev {
    left: clamp(12px, 3vw, 34px);
    top: 50%;
}
.gallery-lightbox-next {
    right: clamp(12px, 3vw, 34px);
    top: 50%;
}
.gallery-lightbox-close:hover,
.gallery-lightbox-arrow:hover {
    background: #2f8f59;
}
body.is-gallery-open {
    overflow: hidden;
}
@media (max-width: 980px) {
    .gallery-hero {
        min-height: 600px;
        background-position: center;
    }
    .gallery-hero-badge {
        position: static;
        margin-top: 28px;
        width: max-content;
    }
    .gallery-stats {
        grid-template-columns: 1fr;
    }
    .gallery-story {
        grid-template-columns: 1fr;
    }
    .gallery-story article {
        min-height: auto;
    }
    .gallery-section-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .gallery-filter {
        justify-content: flex-start;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 180px;
    }
}
@media (max-width: 620px) {
    .gallery-hero {
        min-height: 560px;
        padding-top: 88px;
        background-position: center;
    }
    .gallery-hero h1 {
        font-size: 42px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
    }
    .gallery-card.is-wide,
    .gallery-card.is-vertical,
    .gallery-card.is-featured {
        grid-column: span 1;
        grid-row: span 1;
    }
    .gallery-lightbox {
        padding: 72px 14px 28px;
    }
    .gallery-lightbox-arrow {
        top: auto;
        bottom: 22px;
    }
}

.hero {
    min-height: 78vh;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    align-items: center;
    gap: clamp(26px, 5vw, 70px);
    padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 72px);
    background: linear-gradient(135deg, #f7fbff 0%, #ffffff 52%, #e9f4fb 100%);
}
.hero h1, .page-hero h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(42px, 7vw, 84px);
    line-height: .96;
}
.hero p { max-width: 650px; font-size: 18px; }
.hero-visual {
    position: relative;
    min-height: 430px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 106, 182, .08), rgba(20, 33, 61, .22));
}
.eyebrow {
    margin: 0 0 10px;
    color: var(--brand);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0, 63, 127, .16); }
.btn-primary { background: var(--brand); color: var(--white); }
.btn-ghost { background: var(--white); color: var(--brand-dark); border-color: var(--line); }
.btn-ghost.dark { background: transparent; }
.btn-light { background: var(--white); color: var(--brand-dark); }
.btn-whatsapp { background: var(--accent); color: var(--white); }
.btn-disabled { background: #e6ebf0; color: #7c8796; cursor: default; }

.is-legacy-whatsapp {
    display: none !important;
}
.whatsapp-widget {
    position: fixed;
    right: clamp(18px, 3vw, 34px);
    bottom: clamp(18px, 3vw, 34px);
    z-index: 90;
    display: grid;
    justify-items: end;
}
.whatsapp-widget:not([open]) .whatsapp-chat-panel {
    display: none;
}
.whatsapp-widget summary.floating-whatsapp {
    list-style: none;
    cursor: pointer;
}
.whatsapp-widget summary.floating-whatsapp::-webkit-details-marker {
    display: none;
}
.whatsapp-chat-panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 18px);
    width: min(360px, calc(100vw - 32px));
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 24px 54px rgba(8, 31, 51, .25);
    overflow: hidden;
    transform-origin: right bottom;
    animation: whatsappPanelIn .2s ease both;
}
.whatsapp-chat-head {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: start;
    padding: 22px 24px 20px;
    background: #2bbf45;
    color: var(--white);
}
.whatsapp-chat-mark,
.whatsapp-advisor-avatar,
.whatsapp-advisor-action {
    display: grid;
    place-items: center;
}
.whatsapp-chat-mark {
    width: 42px;
    height: 42px;
    color: var(--white);
}
.whatsapp-chat-mark svg,
.whatsapp-advisor-avatar svg,
.whatsapp-advisor-action svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}
.whatsapp-chat-head strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
}
.whatsapp-chat-head p {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
    color: rgba(255, 255, 255, .92);
}
.whatsapp-chat-body {
    padding: 18px 20px 20px;
    background: #fff;
}
.whatsapp-chat-body > small {
    display: block;
    margin: 0 0 16px;
    color: #a5adba;
    font-size: 12px;
    font-weight: 800;
}
.whatsapp-advisor-list {
    display: grid;
    gap: 15px;
}
.whatsapp-advisor {
    display: grid;
    grid-template-columns: 54px 1fr 24px;
    gap: 14px;
    align-items: center;
    min-height: 72px;
    padding: 12px 13px 12px 16px;
    border-left: 2px solid #25c55a;
    border-radius: 4px;
    background: #f2f4f7;
    color: #4a5565;
    font-size: 15px;
    font-weight: 600;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.whatsapp-advisor:hover {
    color: #18243a;
    background: #eaf9ef;
    box-shadow: 0 14px 24px rgba(37, 197, 90, .16);
    transform: translateX(3px);
}
.whatsapp-advisor-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #26c85a;
    color: var(--white);
    box-shadow: 0 0 0 7px rgba(38, 200, 90, .14);
}
.whatsapp-advisor-avatar svg {
    width: 34px;
    height: 34px;
}
.whatsapp-advisor-action {
    width: 22px;
    height: 22px;
    color: #25c55a;
}
.floating-whatsapp {
    position: fixed;
    right: clamp(18px, 3vw, 34px);
    bottom: clamp(18px, 3vw, 34px);
    z-index: 80;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 9px 10px 9px 17px;
    border-radius: 999px;
    background: #22b848;
    color: var(--white);
    box-shadow: 0 18px 42px rgba(24, 154, 59, .35);
    isolation: isolate;
    overflow: visible;
    animation: whatsappFloat 2.8s ease-in-out infinite;
}
.whatsapp-widget .floating-whatsapp {
    position: relative;
    right: auto;
    bottom: auto;
    border: 0;
    font-family: inherit;
}
.floating-whatsapp::before,
.floating-whatsapp::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: inherit;
    border: 2px solid rgba(34, 184, 72, .32);
    z-index: -1;
    animation: whatsappPulse 2.2s ease-out infinite;
}
.floating-whatsapp::after {
    animation-delay: .7s;
}
.floating-whatsapp:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(24, 154, 59, .46);
}
.floating-whatsapp-text {
    display: grid;
    gap: 2px;
    line-height: 1.08;
    text-align: right;
}
.floating-whatsapp-text small {
    font-size: 11px;
    font-weight: 700;
    opacity: .92;
}
.floating-whatsapp-text strong {
    font-size: 14px;
    font-weight: 900;
}
.floating-whatsapp-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    color: #22b848;
    box-shadow: inset 0 0 0 2px rgba(34, 184, 72, .16);
}
.floating-whatsapp-icon svg {
    width: 31px;
    height: 31px;
    fill: currentColor;
}
.floating-whatsapp-close {
    display: none;
    width: 58px;
    height: 58px;
    place-items: center;
    color: var(--white);
    font-size: 35px;
    font-weight: 400;
    line-height: 1;
}
.whatsapp-widget.is-open .floating-whatsapp {
    width: 58px;
    height: 58px;
    padding: 0;
    border-radius: 50%;
}
.whatsapp-widget[open] .floating-whatsapp {
    width: 58px;
    height: 58px;
    padding: 0;
    border-radius: 50%;
}
.whatsapp-widget.is-open .floating-whatsapp-text,
.whatsapp-widget.is-open .floating-whatsapp-icon {
    display: none;
}
.whatsapp-widget[open] .floating-whatsapp-text,
.whatsapp-widget[open] .floating-whatsapp-icon {
    display: none;
}
.whatsapp-widget.is-open .floating-whatsapp-close {
    display: grid;
}
.whatsapp-widget[open] .floating-whatsapp-close {
    display: grid;
}
@keyframes whatsappPanelIn {
    from { opacity: 0; transform: translateY(12px) scale(.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes whatsappPulse {
    0% { opacity: .75; transform: scale(.92); }
    80%, 100% { opacity: 0; transform: scale(1.22); }
}
@keyframes whatsappFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.section { padding: clamp(48px, 6vw, 82px) clamp(18px, 5vw, 72px); }
.band { background: var(--white); }
.section-head { max-width: 780px; margin-bottom: 28px; }
.section-head h2, .cta-strip h2, .split-section h2, .contact-card h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(26px, 4vw, 46px);
    line-height: 1.08;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.category-card, .product-card, .contact-card, .metric-panel, .admin-form, .table-wrap {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 8px 26px rgba(20, 33, 61, .07);
}
.category-card { padding: 26px; }
.category-card span {
    display: block;
    color: var(--ink);
    font-size: 28px;
    font-weight: 900;
}
.category-card small { color: var(--brand); font-weight: 800; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.product-card { overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-image {
    display: grid;
    place-items: center;
    position: relative;
    aspect-ratio: 1.18;
    padding: 22px;
    background: #f2f6f9;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
}
.product-image img {
    position: absolute;
    inset: 22px;
    width: calc(100% - 44px);
    height: calc(100% - 44px);
    object-fit: contain;
    opacity: 0;
    transition: opacity .35s ease, transform .35s ease;
    -webkit-user-drag: none;
    user-select: none;
}
.product-image img.is-active {
    opacity: 1;
}
.product-card:hover .product-image img.is-active {
    transform: scale(1.04);
}
.product-image-fallback {
    display: none;
    max-width: 82%;
    color: #6b7280;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.35;
    text-align: center;
    text-transform: uppercase;
}
.product-image.has-image-error .product-image-fallback {
    display: block;
}
.product-body { padding: 20px; }
.product-body h3 {
    margin: 10px 0 8px;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.25;
}
.pill {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--brand-dark);
    background: #e6f2fb;
    font-size: 12px;
    font-weight: 900;
}
.text-link { color: var(--brand); font-weight: 900; }

.related-products-section {
    padding-top: clamp(36px, 5vw, 58px);
}
.related-products-section .section-head {
    max-width: 760px;
    margin-bottom: 22px;
}
.related-products-section .section-head h2 {
    font-size: clamp(26px, 3vw, 38px);
}
.related-carousel {
    position: relative;
    width: 100%;
    padding: 0 clamp(44px, 4vw, 62px);
}
.related-carousel-window {
    width: 100%;
    overflow: hidden;
}
.related-product-grid {
    display: flex;
    align-items: stretch;
    gap: clamp(18px, 3vw, 34px);
    max-width: none;
    width: 100%;
    transition: transform .45s ease;
    will-change: transform;
}
.related-product-grid .product-card {
    flex: 0 0 clamp(240px, 24vw, 300px);
    min-width: 0;
}
.related-product-grid .product-image {
    aspect-ratio: 1.08;
    padding: 14px;
}
.related-product-grid .product-image img {
    inset: 14px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
}
.related-product-grid .product-body {
    padding: 14px 16px 16px;
}
.related-product-grid .product-body h3 {
    font-size: 14px;
    line-height: 1.25;
}
.related-product-grid .pill {
    padding: 5px 8px;
    font-size: 10px;
}
.related-product-grid .text-link {
    font-size: 14px;
}
.related-carousel-arrow {
    position: absolute;
    top: 42%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 54px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--brand-dark);
    box-shadow: 0 12px 28px rgba(20, 33, 61, .12);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, opacity .2s ease;
}
.related-carousel-arrow:hover {
    background: #e7f3fb;
    transform: translateY(-2px);
}
.related-carousel-arrow:disabled {
    opacity: .38;
    cursor: default;
    transform: none;
}
.related-carousel-prev {
    left: 0;
}
.related-carousel-next {
    right: 0;
}
.related-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 24px;
}
.related-carousel-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 2px solid #b8c2cf;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.related-carousel-dots button.is-active {
    border-color: var(--ink);
    background: var(--ink);
    transform: scale(1.08);
}

.cta-strip {
    margin: 0 clamp(18px, 5vw, 72px) 70px;
    padding: clamp(28px, 5vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: var(--white);
    background: linear-gradient(135deg, var(--brand-dark), var(--brand));
    border-radius: 8px;
}
.cta-strip h2, .cta-strip .eyebrow { color: var(--white); }

.page-hero {
    padding: clamp(46px, 7vw, 86px) clamp(18px, 5vw, 72px);
    background: #edf6fc;
}
.page-hero.compact h1 { max-width: 900px; font-size: clamp(34px, 5vw, 62px); }
.page-hero p { max-width: 760px; font-size: 18px; }

.about-hero {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(360px, .78fr);
    align-items: center;
    gap: clamp(34px, 6vw, 90px);
    min-height: clamp(560px, 47vw, 760px);
    padding: clamp(54px, 7vw, 96px) clamp(32px, 9vw, 170px);
    background:
        radial-gradient(circle at 83% 18%, rgba(47, 143, 89, .2), transparent 30%),
        linear-gradient(135deg, #eef8f4 0%, #edf6fc 52%, #ffffff 100%);
}
.about-hero-copy {
    max-width: 820px;
}
.about-hero-copy h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(42px, 5.6vw, 78px);
    line-height: .98;
}
.about-hero-copy > p {
    max-width: 720px;
    margin: 22px 0 0;
    color: #40506a;
    font-size: clamp(17px, 1.4vw, 21px);
}
.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}
.about-hero-stats span {
    min-height: 106px;
    padding: 18px;
    border: 1px solid rgba(63, 102, 181, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .84);
    color: var(--ink);
    font-weight: 800;
    box-shadow: 0 16px 34px rgba(20, 33, 61, .08);
}
.about-hero-stats strong {
    display: block;
    color: var(--brand);
    font-size: 34px;
    line-height: 1;
}
.about-hero-visual {
    position: relative;
    justify-self: center;
    width: min(500px, 100%);
    aspect-ratio: 1;
    padding: 12px;
    border: 10px solid var(--brand);
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 28px 70px rgba(20, 33, 61, .2);
    overflow: hidden;
}
.about-hero-visual::after {
    content: "15+ años";
    position: absolute;
    right: 26px;
    bottom: 34px;
    display: grid;
    place-items: center;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    background: #2f8f59;
    color: var(--white);
    font-size: 22px;
    line-height: 1.05;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 16px 34px rgba(20, 33, 61, .18);
}
.about-hero-visual img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
}

.about-store-visual {
    width: min(650px, 100%);
    aspect-ratio: 1.3;
    padding: 8px;
    border-width: 8px;
    border-radius: 18px;
}

.about-store-visual::after {
    display: none;
}

.about-store-visual img {
    border-radius: 10px;
    object-position: center;
}

.about-company-section {
    display: grid;
    grid-template-columns: minmax(300px, .78fr) minmax(0, .9fr);
    align-items: center;
    gap: clamp(34px, 6vw, 88px);
    padding: clamp(58px, 7vw, 96px) clamp(32px, 9vw, 170px);
    background: var(--white);
}
.about-company-image {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow);
}
.about-company-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 10px solid rgba(0, 106, 182, .75);
    border-radius: 18px;
    pointer-events: none;
}
.about-company-image img {
    width: 100%;
    height: clamp(360px, 31vw, 520px);
    object-fit: cover;
}

.about-company-image-full {
    display: grid;
    place-items: center;
    justify-self: center;
    width: fit-content;
    max-width: 100%;
    background: #fff;
    overflow: visible;
    box-shadow: none;
}

.about-company-image-full::after {
    display: none;
}

.about-company-image-full img {
    width: auto;
    max-width: 100%;
    height: clamp(520px, 48vw, 780px);
    padding: 8px;
    border: 8px solid rgba(0, 106, 182, .78);
    border-radius: 18px;
    background: #fff;
    object-fit: contain;
    object-position: center;
    box-shadow: 0 28px 70px rgba(20, 33, 61, .14);
}

.about-company-copy {
    max-width: 720px;
}
.about-company-copy h2 {
    margin: 0 0 18px;
    color: #0f8f3e;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.02;
}
.about-company-copy p {
    color: #1d2b44;
    font-size: 17px;
}

.about-values-band {
    display: grid;
    grid-template-columns: minmax(320px, .82fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(40px, 7vw, 92px);
    padding: clamp(132px, 11vw, 178px) clamp(32px, 10vw, 190px) clamp(76px, 8vw, 112px);
    color: var(--white);
    background: #3f66b5;
    clip-path: polygon(0 0, 72% 17%, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
}
.about-mission-card h2,
.about-values-list > h2 {
    margin: 0 0 24px;
    color: var(--white);
    font-size: clamp(30px, 3.3vw, 44px);
    line-height: 1.04;
    text-transform: uppercase;
}
.about-mission-card p,
.about-value-item p {
    margin: 0 0 13px;
    color: rgba(255, 255, 255, .94);
    font-size: 16px;
    line-height: 1.55;
}
.about-mission-card strong {
    color: var(--white);
}
.about-mission-card,
.about-values-list,
.about-value-item > div {
    min-width: 0;
}
.about-values-list {
    display: grid;
    gap: clamp(22px, 3vw, 38px);
}
.about-value-item {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    align-items: center;
    gap: clamp(22px, 3vw, 34px);
}
.about-value-item img {
    width: 126px;
    height: 126px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    object-fit: contain;
    box-shadow: none;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, .1));
}
.about-value-item h3 {
    margin: 0 0 9px;
    color: var(--white);
    font-size: clamp(22px, 2vw, 29px);
    text-transform: uppercase;
}
.about-value-item p {
    max-width: 760px;
    overflow-wrap: anywhere;
}

.about-certificates-section {
    padding: clamp(58px, 7vw, 96px) clamp(32px, 9vw, 170px);
    background: #f8fafc;
}
.about-certificates-top {
    background: var(--white);
}
.about-certificates-section .section-head {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.about-certificates-section .section-head p:not(.eyebrow) {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.about-certificate-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(22px, 4vw, 42px);
    max-width: 1160px;
    margin: 34px auto 0;
}
.about-certificate-card {
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 18px 40px rgba(20, 33, 61, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}
.about-certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.about-certificate-card span {
    color: var(--brand);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.about-certificate-card img {
    width: 100%;
    aspect-ratio: 1.46;
    border-radius: 8px;
    background: #f2f6f9;
    object-fit: contain;
}
.about-certificate-card strong {
    color: var(--ink);
    font-size: 18px;
}

.about-strengths-section {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    padding: clamp(48px, 6vw, 76px) clamp(32px, 9vw, 170px) clamp(54px, 7vw, 92px);
    background: #f8fafc;
}
.about-strengths-section article {
    min-height: 190px;
    padding: 28px;
    background: #3f66b5;
    color: var(--white);
    transition: transform .25s ease, background .25s ease;
}
.about-strengths-section article:nth-child(even) {
    background: #2f8f59;
}
.about-strengths-section article:hover {
    transform: translateY(-5px);
    background: var(--ink);
}
.about-strengths-section strong {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
}
.about-strengths-section p {
    margin: 0;
    color: rgba(255, 255, 255, .92);
    line-height: 1.45;
}
.filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 24px clamp(18px, 5vw, 72px) 0;
}
.filters a {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    font-weight: 800;
}
.filters .active { background: var(--brand); color: var(--white); border-color: var(--brand); }

.catalog-hero {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(440px, 42vw, 620px);
    padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 72px);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .62) 45%, rgba(255, 255, 255, .72)),
        url("../images/sections/catalog-banner.webp") center / cover no-repeat;
    overflow: hidden;
}
.catalog-hero-copy {
    max-width: 860px;
    text-align: center;
}
.catalog-hero h1 {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: clamp(42px, 5.4vw, 72px);
    line-height: 1.02;
}
.catalog-hero p {
    margin-left: auto;
    margin-right: auto;
    max-width: 620px;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.65;
}
.catalog-search {
    display: flex;
    width: min(100%, 620px);
    margin: 28px auto 0;
    padding: 8px;
    border: 1px solid #d8e2ec;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 42px rgba(20, 33, 61, .08);
}
.catalog-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    padding: 0 14px;
    font: inherit;
    outline: none;
}
.catalog-search button {
    min-height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 6px;
    background: #2f8f59;
    color: var(--white);
    font-weight: 900;
    cursor: pointer;
}
.catalog-shell {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: clamp(26px, 4vw, 48px);
    padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 72px);
    background: var(--white);
}
.catalog-sidebar {
    align-self: start;
    display: grid;
    align-content: start;
    gap: 18px;
}
.catalog-filter-card {
    display: grid;
    gap: 3px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fbfd;
}
.catalog-filter-card h2 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 18px;
}
.catalog-filter-card a,
.brand-filter-list a {
    display: block;
    padding: 6px 9px;
    border-radius: 6px;
    color: #4b5563;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    transition: background .2s ease, color .2s ease;
}
.catalog-filter-card a:hover,
.catalog-filter-card a.active,
.brand-filter-list a.active {
    background: #2f8f59;
    color: var(--white);
}
.brand-filter-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.brand-filter-list .brand-logo-filter {
    display: grid;
    place-items: center;
    min-height: 54px;
    padding: 9px 10px;
    border: 1px solid #dbe6ef;
    background: var(--white);
    box-shadow: 0 8px 18px rgba(20, 33, 61, .04);
}
.brand-filter-list .brand-logo-filter:hover,
.brand-filter-list .brand-logo-filter.active {
    border-color: #2f8f59;
    background: var(--white);
    box-shadow: 0 12px 24px rgba(47, 143, 89, .14);
}
.brand-logo-filter img {
    max-width: 92px;
    max-height: 34px;
    object-fit: contain;
    filter: grayscale(1) saturate(0) opacity(.7);
    transition: filter .2s ease, transform .2s ease;
}
.brand-logo-filter span {
    font-size: 12px;
    font-weight: 900;
    color: #7a818b;
    text-align: center;
}
.brand-logo-filter:hover img,
.brand-logo-filter.active img {
    filter: grayscale(0) saturate(1) opacity(1);
    transform: scale(1.04);
}
.catalog-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}
.catalog-toolbar h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(26px, 3vw, 36px);
}
.active-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.active-filter-chips a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #e7f3fb;
    color: #3f66b5;
    font-size: 13px;
    font-weight: 800;
}
.active-filter-chips span {
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #3f66b5;
    color: var(--white);
    line-height: 1;
}
.clear-filters {
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    font-weight: 900;
    color: var(--brand-dark);
}
.catalog-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    transition: opacity .2s ease;
}
.is-loading-catalog .catalog-product-grid,
.is-loading-catalog .catalog-toolbar,
.is-loading-catalog .catalog-sidebar {
    opacity: .48;
    pointer-events: none;
}
.empty-state {
    padding: clamp(34px, 5vw, 56px);
    border-radius: 8px;
    background: #f5f8fb;
    text-align: center;
}
.empty-state h3 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 28px;
}
.empty-state p {
    max-width: 620px;
    margin: 0 auto 22px;
    color: #64748b;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 6vw, 72px);
    padding: clamp(44px, 7vw, 88px) clamp(18px, 5vw, 72px);
    background: var(--white);
}
.detail-gallery-wrap {
    display: grid;
    gap: 14px;
}
.detail-gallery {
    display: grid;
    place-items: center;
    min-height: 480px;
    padding: 34px;
    background: #f3f7fa;
    border-radius: 8px;
    overflow: hidden;
    cursor: zoom-in;
    -webkit-user-select: none;
    user-select: none;
}
.detail-gallery img {
    max-width: 100%;
    max-height: 440px;
    object-fit: contain;
    transition: transform .16s ease;
    will-change: transform;
    -webkit-user-drag: none;
    user-select: none;
}
.detail-gallery img.is-zoomed {
    transform: scale(2);
}
.detail-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.detail-thumbs button {
    width: 84px;
    height: 84px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
}
.detail-thumbs button.is-active {
    border-color: var(--brand);
    box-shadow: 0 0 0 2px rgba(0, 106, 182, .12);
}
.detail-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.detail-copy h1 { margin: 14px 0; color: var(--ink); font-size: clamp(34px, 5vw, 58px); line-height: 1.04; }
.specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0 0;
}
.specs div { padding: 16px; background: #f7fafc; border: 1px solid var(--line); border-radius: 8px; }
.specs dt { color: var(--brand); font-weight: 900; font-size: 12px; text-transform: uppercase; }
.specs dd { margin: 4px 0 0; color: var(--ink); font-weight: 700; }
.specs .spec-measurements {
    grid-column: 1 / -1;
}
.measurements-table-wrap {
    width: 100%;
    margin-top: 10px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}
.measurements-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.measurements-table th,
.measurements-table td {
    padding: 11px 13px;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
    color: var(--ink);
    font-size: 14px;
    line-height: 1.35;
    text-align: left;
    vertical-align: middle;
    overflow-wrap: anywhere;
    word-break: normal;
}
.measurements-table th {
    background: #e7f3fb;
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.measurements-table tr:last-child td {
    border-bottom: 0;
}
.measurements-table td:last-child {
    border-right: 0;
}

.split-section, .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    padding: clamp(44px, 7vw, 82px) clamp(18px, 5vw, 72px);
}
.metric-panel { display: grid; gap: 16px; padding: 28px; }
.metric-panel strong { display: block; color: var(--brand); font-size: 44px; line-height: 1; }
.metric-panel span { color: var(--ink); font-weight: 800; }
.contact-card { padding: clamp(24px, 4vw, 38px); }
.contact-card.muted { background: #f5f8fb; }

.site-footer {
    background: #2f8f59;
    color: #d8dee9;
}
.footer-main {
    width: min(100%, 1440px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, .9fr) minmax(280px, 1fr) minmax(360px, 1.15fr);
    gap: clamp(28px, 4vw, 56px);
    padding: clamp(42px, 6vw, 68px) clamp(18px, 5vw, 72px);
}
.footer-brand img {
    width: 260px;
    max-width: 100%;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}
.footer-brand p,
.footer-contact p {
    margin: 0 0 12px;
    color: #d8dee9;
    line-height: 1.65;
}
.footer-contact h3 {
    margin: 0 0 16px;
    color: var(--white);
    font-size: 22px;
}
.footer-contact strong {
    color: var(--white);
}
.footer-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
    font-weight: 800;
}
.footer-links a {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 4px;
    color: var(--white);
    transition: background .2s ease, border-color .2s ease;
}
.footer-links a:hover {
    background: #2f8f59;
    border-color: #2f8f59;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-social a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    transition: transform .2s ease, background .2s ease;
}
.footer-social a:hover {
    background: #2f8f59;
    transform: translateY(-2px);
}
.footer-social img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.footer-map {
    min-height: 280px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    box-shadow: 0 22px 42px rgba(0, 0, 0, .22);
}
.footer-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    filter: grayscale(.15) contrast(.95);
}
.footer-copy {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 16px clamp(18px, 5vw, 72px);
    border-top: 1px solid rgba(255, 255, 255, .1);
    background: #3f66b5;
    color: #b8c2cf;
    font-size: 13px;
}
.footer-copy p {
    margin: 0;
}
.footer-copy span {
    font-weight: 700;
}

.admin-body { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; background: #f3f6f9; }
.admin-sidebar { padding: 24px; background: #111827; color: var(--white); }
.admin-logo { display: block; margin-bottom: 28px; font-size: 22px; font-weight: 900; }
.admin-sidebar nav { display: grid; gap: 8px; margin-bottom: 28px; }
.admin-sidebar a, .link-button { color: var(--white); font-weight: 800; }
.admin-sidebar nav a {
    padding: 9px 10px;
    border-radius: 6px;
    transition: background .2s ease;
}
.admin-sidebar nav a:hover {
    background: rgba(255, 255, 255, .1);
}
.link-button { padding: 0; border: 0; background: transparent; cursor: pointer; }
.admin-main { padding: clamp(22px, 4vw, 42px); }
.admin-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 24px; }
.admin-head h1, .login-panel h1 { margin: 0; color: var(--ink); }
.notice, .error {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 6px;
    background: #e9f7ef;
    color: #166534;
    font-weight: 800;
}
.error { background: #fee2e2; color: #991b1b; }
.table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.admin-table th, .admin-table td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; }
.admin-table th { color: var(--ink); font-size: 13px; text-transform: uppercase; }
.table-product { display: flex; align-items: center; gap: 12px; font-weight: 900; color: var(--ink); }
.table-product img { width: 58px; height: 58px; object-fit: contain; background: #f0f4f7; border-radius: 6px; }
.table-actions { display: flex; gap: 12px; align-items: center; }
.table-actions a, .table-actions button { color: var(--brand); border: 0; background: transparent; font-weight: 900; cursor: pointer; }
.admin-search {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 8px 26px rgba(20, 33, 61, .05);
}
.admin-search input {
    flex: 1;
}
.admin-result-note {
    margin: 0 0 14px;
    color: var(--ink);
    font-weight: 800;
}
.admin-brand-logo,
.admin-logo-preview {
    display: inline-grid;
    place-items: center;
    min-width: 96px;
    min-height: 50px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
}
.admin-logo-preview {
    width: max-content;
}
.admin-brand-logo img,
.admin-logo-preview img {
    max-width: 110px;
    max-height: 42px;
    object-fit: contain;
}
.admin-brand-logo strong,
.admin-logo-preview strong {
    color: #6b7280;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}
.admin-brand-logo.text-only {
    min-width: 112px;
}
.muted-text {
    color: #6b7280;
    font-weight: 800;
}
.is-loading-admin-list [data-admin-products-list] {
    opacity: .48;
    pointer-events: none;
}
.admin-form { display: grid; gap: 18px; padding: 24px; }
.admin-form.narrow { max-width: 440px; margin: 0 auto; }
.login-panel { padding: 80px 18px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
label { display: grid; gap: 7px; color: var(--ink); font-weight: 900; }
label small {
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}
input, textarea, select {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid var(--line);
    border-radius: 6px;
    font: inherit;
    background: var(--white);
}
textarea { resize: vertical; }
.check-row { display: flex; gap: 20px; flex-wrap: wrap; }
.check-row label { display: flex; align-items: center; gap: 8px; }
.check-row input { width: auto; }
.admin-product-gallery {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fbfd;
}
.admin-product-gallery > strong {
    color: var(--ink);
}
.admin-product-gallery > div {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
    gap: 12px;
}
.admin-product-gallery span {
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--white);
}
.admin-product-gallery img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.contact-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: clamp(440px, 42vw, 620px);
    padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
    overflow: hidden;
    background: #0f2536;
    color: var(--white);
}
.contact-hero-bg,
.contact-hero-overlay {
    position: absolute;
    inset: 0;
}
.contact-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.contact-hero-overlay {
    background:
        linear-gradient(90deg, rgba(3, 22, 43, .3) 0%, rgba(3, 22, 43, .18) 42%, rgba(3, 22, 43, .04) 100%),
        linear-gradient(180deg, rgba(0, 106, 182, .08), rgba(47, 143, 89, .08));
}
.contact-hero-copy {
    position: relative;
    z-index: 1;
    width: min(780px, 100%);
}
.contact-hero .eyebrow {
    color: #8ed8ff;
}
.contact-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--white);
    font-size: clamp(42px, 6.2vw, 82px);
    line-height: .98;
}
.contact-hero p:not(.eyebrow) {
    max-width: 690px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 1.55;
}
.contact-hero .btn-ghost {
    border-color: rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .08);
    color: var(--white);
}
.contact-hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin-top: 32px;
}
.contact-hero-facts span {
    padding-left: 14px;
    border-left: 3px solid #2f8f59;
    color: rgba(255, 255, 255, .9);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-main-section,
.contact-steps-section {
    padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 72px);
}
.contact-main-section {
    background: #f6f9fc;
    scroll-margin-top: 132px;
}
.contact-section-head {
    width: min(880px, 100%);
    margin-bottom: 30px;
}
.contact-section-head h2,
.contact-map-head h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(30px, 4.2vw, 54px);
    line-height: 1.04;
}
.contact-section-head p:not(.eyebrow),
.contact-map-head p {
    max-width: 760px;
    color: #5b6778;
    font-size: 17px;
}
.contact-shell,
.contact-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
    gap: clamp(24px, 4vw, 46px);
    align-items: start;
}
.contact-content-layout {
    grid-template-columns: 1fr;
}
.contact-map-column,
.contact-detail-column {
    display: grid;
    gap: 22px;
    min-width: 0;
}
.contact-detail-column {
    grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr);
    align-items: start;
}
.contact-form-panel,
.contact-info-card,
.contact-advisors,
.contact-steps-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 36px rgba(20, 33, 61, .08);
}
.contact-form-panel {
    padding: clamp(24px, 3vw, 36px);
}
.contact-form-panel .form-grid {
    gap: 18px;
}
.contact-form-panel label {
    color: #1d2d48;
    font-size: 13px;
    line-height: 1.25;
}
.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
    min-height: 48px;
    border-color: #d6e1eb;
    background: #fbfdff;
    color: var(--ink);
}
.contact-form-panel textarea {
    min-height: 150px;
}
.contact-form-panel input:focus,
.contact-form-panel select:focus,
.contact-form-panel textarea:focus {
    outline: 0;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(0, 106, 182, .12);
}
.contact-form-wide {
    grid-column: 1 / -1;
}
.contact-hp {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.contact-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.contact-form-status {
    margin: 14px 0 0;
    padding: 12px 14px;
    border: 1px solid #b7e3c7;
    border-radius: 8px;
    background: #ecfdf3;
    color: #17663a;
    font-weight: 800;
}
.contact-form-status.is-error {
    border-color: #f3c0c0;
    background: #fff1f1;
    color: #b42318;
}
.contact-product-picker {
    position: relative;
    display: grid;
    gap: 8px;
}
.contact-product-picker > label {
    color: #1d2d48;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.25;
}
.contact-product-search-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
}
.contact-product-search-wrap {
    position: relative;
    min-width: 0;
}
.contact-product-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 35;
    max-height: 330px;
    overflow-y: auto;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 20px 44px rgba(20, 33, 61, .16);
}
.contact-product-option {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    width: 100%;
    min-height: 74px;
    padding: 9px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--ink);
    font: inherit;
    text-align: left;
    cursor: pointer;
}
.contact-product-option:hover {
    background: #eef7f3;
}
.contact-product-option-media,
.contact-selected-product-media {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    overflow: hidden;
    border-radius: 6px;
    background: #f3f7fa;
    color: #7c8796;
    font-size: 10px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}
.contact-product-option-media img,
.contact-selected-product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.contact-product-option-copy {
    display: grid;
    align-content: center;
    gap: 4px;
    min-width: 0;
}
.contact-product-option-copy strong,
.contact-selected-product-info strong {
    color: var(--ink);
    font-size: 13px;
    line-height: 1.25;
    font-weight: 900;
}
.contact-product-option-copy small,
.contact-selected-product-info small {
    color: #65758b;
    font-size: 11px;
    font-weight: 700;
}
.contact-product-help {
    margin: 0;
    color: #65758b;
    font-size: 12px;
    font-weight: 700;
}
.contact-selected-products {
    display: grid;
    gap: 10px;
    margin-top: 6px;
}
.contact-selected-product {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) minmax(118px, 145px) minmax(118px, 145px) auto;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border: 1px solid #dbe6ef;
    border-radius: 8px;
    background: #f8fbfd;
}
.contact-selected-product-info {
    display: grid;
    gap: 4px;
    min-width: 0;
}
.contact-product-field {
    display: grid;
    gap: 5px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
}
.contact-product-field input {
    min-height: 42px;
}
.contact-product-remove {
    min-height: 42px;
    padding: 9px 12px;
    border: 1px solid #ffd0d0;
    border-radius: 6px;
    background: #fff5f5;
    color: #b42318;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}
.contact-product-remove:hover {
    background: #fee2e2;
}
.contact-form-note {
    margin: 16px 0 0;
    color: #65758b;
    font-size: 13px;
    font-weight: 700;
}
.contact-info-panel {
    display: grid;
    gap: 16px;
}
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.contact-info-card {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
}
.contact-info-card-featured {
    border: 0;
    background: #0f4f7d;
    color: var(--white);
}
.contact-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: #e9f7ef;
    color: #2f8f59;
}
.contact-info-card-featured .contact-icon {
    background: rgba(255, 255, 255, .14);
    color: var(--white);
}
.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.contact-info-card strong {
    display: block;
    margin-bottom: 5px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 900;
}
.contact-info-card p {
    margin: 0;
    color: #5b6778;
    font-size: 14px;
    line-height: 1.55;
}
.contact-info-card a {
    color: var(--brand);
    font-weight: 900;
}
.contact-info-card-featured strong,
.contact-info-card-featured p,
.contact-info-card-featured a {
    color: var(--white);
}
.contact-advisors {
    padding: 22px;
}
.contact-advisors h3 {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.15;
}
.contact-advisor-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 56px;
    padding: 12px 14px;
    border-left: 4px solid #2f8f59;
    border-radius: 6px;
    background: #f4fbf7;
    color: var(--ink);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-advisor-link + .contact-advisor-link {
    margin-top: 10px;
}
.contact-advisor-link:hover {
    background: #e8f7ee;
    box-shadow: 0 12px 22px rgba(47, 143, 89, .14);
    transform: translateX(3px);
}
.contact-advisor-link span {
    font-weight: 800;
}
.contact-advisor-link strong {
    color: #2f8f59;
    font-weight: 900;
    white-space: nowrap;
}

.contact-map-section {
    padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 72px);
    background: var(--white);
}
.contact-map-head {
    width: min(920px, 100%);
    margin-bottom: 30px;
}
.contact-map-head-compact {
    margin-bottom: 0;
}
.contact-map-head p {
    margin: 18px 0 0;
}
.contact-map-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(22px, 3vw, 34px);
}
.contact-map-grid-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-map-card {
    display: grid;
    gap: 18px;
    min-width: 0;
}
.contact-map-title {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}
.contact-map-title h3 {
    margin: 0 0 6px;
    color: var(--brand-dark);
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.15;
}
.contact-map-title p {
    margin: 0;
    color: #3f4658;
    font-size: 16px;
    line-height: 1.55;
}
.contact-map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.contact-map-frame {
    min-height: 430px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 22px 42px rgba(20, 33, 61, .12);
}
.contact-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 430px;
}
.contact-map-grid-stack .contact-map-frame,
.contact-map-grid-stack .contact-map-frame iframe {
    min-height: 390px;
}
.contact-steps-section {
    background: #eef6fb;
}
.contact-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.contact-steps-grid article {
    padding: 24px;
}
.contact-steps-grid span {
    display: block;
    margin-bottom: 18px;
    color: #f59e0b;
    font-size: 14px;
    font-weight: 900;
}
.contact-steps-grid h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 20px;
}
.contact-steps-grid p {
    margin: 0;
    color: #65758b;
    font-size: 14px;
    line-height: 1.55;
}
@media (max-width: 1100px) {
    .contact-shell,
    .contact-content-layout,
    .contact-detail-column,
    .contact-map-grid {
        grid-template-columns: 1fr;
    }
    .contact-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .contact-hero {
        align-items: flex-end;
        min-height: 540px;
        padding: 78px 20px 28px;
    }
    .contact-hero-bg {
        object-position: 62% center;
    }
    .contact-hero-overlay {
        background:
            linear-gradient(180deg, rgba(8, 24, 40, .12) 0%, rgba(8, 24, 40, .64) 48%, rgba(8, 24, 40, .92) 100%),
            linear-gradient(90deg, rgba(5, 34, 67, .36), rgba(5, 34, 67, .1));
    }
    .contact-hero h1 {
        font-size: 34px;
    }
    .contact-hero p:not(.eyebrow) {
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.45;
    }
    .contact-hero .actions {
        margin-top: 18px;
    }
    .contact-hero-facts {
        display: none;
    }
    .contact-main-section {
        scroll-margin-top: 275px;
    }
    .contact-hero .actions,
    .contact-form-actions,
    .contact-map-actions,
    .contact-product-search-row {
        display: grid;
        grid-template-columns: 1fr;
    }
    .contact-hero .btn,
    .contact-form-actions .btn,
    .contact-map-actions .btn {
        width: 100%;
    }
    .contact-form-panel .form-grid,
    .contact-info-grid,
    .contact-steps-grid {
        grid-template-columns: 1fr;
    }
    .contact-selected-product {
        grid-template-columns: 58px minmax(0, 1fr);
    }
    .contact-product-field,
    .contact-product-remove {
        grid-column: 1 / -1;
    }
    .contact-info-card,
    .contact-advisor-link {
        overflow-wrap: anywhere;
    }
    .contact-map-frame,
    .contact-map-frame iframe {
        min-height: 330px;
    }
}
.pagination-wrap {
    margin-top: 30px;
}
.pagination-wrap nav > div:first-child {
    display: none;
}
.pagination-wrap nav > div:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.pagination-wrap p {
    margin: 0;
    color: #5b6778;
    font-size: 14px;
}
.pagination-wrap nav > div:last-child > div:last-child > span {
    display: inline-flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--white);
    box-shadow: 0 12px 24px rgba(20, 33, 61, .06);
}
.pagination-wrap a,
.pagination-wrap span[aria-current="page"] > span,
.pagination-wrap span[aria-disabled="true"] > span,
.pagination-wrap span[aria-disabled="true"] + span,
.pagination-wrap nav > div:last-child > div:last-child > span > span > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 40px;
    padding: 0 14px;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    background: var(--white);
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
    line-height: 40px;
    text-align: center;
}
.pagination-wrap nav > div:last-child > div:last-child > span > :first-child > span,
.pagination-wrap nav > div:last-child > div:last-child > span > :first-child > a {
    border-left: 0;
}
.pagination-wrap span[aria-current="page"] > span {
    background: #2f8f59;
    color: var(--white);
}
.pagination-wrap span[aria-disabled="true"] > span {
    color: #aab3bf;
    cursor: default;
}
.pagination-wrap a:hover {
    background: #e7f3fb;
    color: #3f66b5;
}
.pagination-wrap svg {
    display: block;
    width: 18px;
    height: 18px;
    max-width: 18px;
    max-height: 18px;
}
.catalog-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.catalog-pagination-info {
    margin: 0;
    color: #4b5563;
    font-size: 14px;
    font-weight: 600;
}
.catalog-pagination-pages {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 24px rgba(20, 33, 61, .06);
}
.catalog-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 42px;
    padding: 0 15px;
    margin: 0;
    border-left: 1px solid var(--line);
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
    line-height: 42px;
    text-align: center;
    text-decoration: none;
    box-shadow: none;
}
.catalog-page-link:first-child {
    border-left: 0;
}
.catalog-page-link:hover {
    background: #e7f3fb;
    color: #3f66b5;
}
.catalog-page-link.active {
    background: #2f8f59;
    color: var(--white);
}
.catalog-page-link.disabled {
    color: #aab3bf;
    pointer-events: none;
}

.reveal { animation: rise .65s ease both; }
@keyframes rise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
    .about-values-band {
        grid-template-columns: minmax(0, .88fr) minmax(0, 1fr);
        gap: clamp(26px, 3.5vw, 42px);
        padding: clamp(152px, 16vw, 184px) clamp(30px, 6vw, 78px) clamp(82px, 9vw, 112px);
        clip-path: polygon(0 0, 70% 8%, 100% 0, 100% 100%, 0 100%);
    }
    .about-values-list > h2 {
        max-width: 440px;
    }
    .about-value-item {
        grid-template-columns: 108px minmax(0, 1fr);
        gap: 18px;
    }
    .about-value-item img {
        width: 106px;
        height: 106px;
    }
    .about-mission-card p,
    .about-value-item p {
        font-size: 15px;
        line-height: 1.52;
    }
}

@media (max-width: 1080px) {
    .about-values-band {
        grid-template-columns: 1fr;
        gap: 56px;
        padding: 118px clamp(32px, 8vw, 86px) 86px;
        clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 100%);
    }
    .about-values-list,
    .about-mission-card {
        width: min(760px, 100%);
        margin: 0 auto;
    }
    .about-values-list > h2 {
        max-width: none;
    }
    .about-value-item {
        max-width: 760px;
    }
}

@media (max-width: 900px) {
    .topbar { flex-direction: column; gap: 4px; }
    .cta-strip, .pvc-callout, .section-head.with-actions { align-items: flex-start; flex-direction: column; }
    .footer-main {
        grid-template-columns: 1fr;
    }
    .footer-map {
        min-height: 320px;
    }
    .site-header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .mobile-menu-toggle {
        display: inline-grid;
    }
    .site-header .main-nav,
    .site-header .header-search {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
    }
    .site-header.is-menu-open .main-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
    .site-header.is-menu-open .main-nav a {
        border: 1px solid var(--line);
        background: #f8fbfd;
        text-align: center;
    }
    .site-header.is-menu-open .header-search {
        display: flex;
    }
    .hero, .product-detail, .split-section, .contact-layout, .company-section, .commitment-section, .logistics-section, .quality-section, .brochure-band, .pvc-tabs-layout, .import-video-wrap, .catalog-hero, .catalog-shell, .about-hero, .about-company-section, .about-values-band { grid-template-columns: 1fr; }
    .hero { min-height: auto; }
    .hero-visual, .detail-gallery { min-height: 320px; }
    .hero-slider {
        aspect-ratio: 2 / 1;
        height: clamp(340px, 56vw, 460px);
        min-height: 0;
    }
    .hero-slide img {
        object-fit: cover;
        object-position: center 52%;
    }
    .quality-section { padding: 32px 18px; }
    .quality-figure, .quality-copy { min-height: auto; }
    .brochure-band {
        display: grid;
        border-radius: 48px;
        text-align: center;
        width: 100%;
        padding: 28px 24px;
    }
    .brochure-card {
        position: relative;
        left: auto;
        top: auto;
        justify-self: center;
        transform: translateY(-34px);
    }
    .brochure-card:hover { transform: translateY(-34px) scale(1.02); }
    .brochure-copy {
        margin-left: 0;
        justify-self: center;
    }
    .pvc-tabs-sidebar {
        text-align: center;
    }
    .pvc-tab-buttons {
        display: flex;
        justify-content: center;
        gap: 18px;
        flex-wrap: wrap;
    }
    .pvc-tab-buttons button {
        font-size: 20px;
    }
    .pvc-callout-inner {
        grid-template-columns: 1fr;
    }
    .pvc-callout-copy {
        text-align: center;
    }
    .pvc-callout-copy p {
        margin-left: auto;
        margin-right: auto;
    }
    .pvc-mini-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .supplier-slide {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }
    .supplier-track {
        gap: 0;
    }
    .supplier-card {
        flex-basis: 176px;
        width: 176px;
        max-width: 176px;
    }
    .catalog-filter-card {
        position: static;
    }
    .catalog-sidebar {
        position: static;
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }
    .catalog-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .catalog-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }
    .about-hero {
        min-height: auto;
    }
    .about-hero-copy,
    .about-company-copy {
        max-width: none;
    }
    .about-hero-visual {
        width: min(420px, 100%);
    }
    .about-values-band {
        clip-path: polygon(0 0, 100% 7%, 100% 100%, 0 100%);
        padding-top: 118px;
    }
    .about-values-list,
    .about-mission-card {
        width: min(720px, 100%);
        margin: 0 auto;
    }
    .about-certificate-grid,
    .about-strengths-section {
        grid-template-columns: 1fr;
    }
    .import-video-frame {
        width: min(360px, 100%);
        margin: 0 auto;
    }
    .import-video-copy {
        text-align: center;
        border-left: 0;
        border-top: 5px solid #2f8f59;
    }
    .section-mark {
        margin-left: auto;
        margin-right: auto;
    }
    .slide-copy { width: min(520px, 64vw); left: 48px; }
    .category-grid, .product-grid, .line-showcase, .benefit-strip, .supplier-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .related-carousel {
        padding: 0 42px;
    }
    .related-product-grid .product-card {
        flex-basis: min(42vw, 300px);
    }
    .values-grid { grid-template-columns: 1fr; }
    .admin-body { grid-template-columns: 1fr; }
    .admin-sidebar { position: static; }
}

@media (max-width: 620px) {
    .brand img { width: 220px; }
    .main-nav { width: 100%; }
    .main-nav a { padding: 8px 9px; font-size: 13px; }
    .site-header.is-menu-open .main-nav {
        grid-template-columns: 1fr;
    }
    .header-search {
        width: 100%;
    }
    .header-search input {
        width: 100%;
        min-width: 0;
    }
    .hero h1, .page-hero h1 { font-size: 38px; }
    .category-grid, .product-grid, .catalog-product-grid, .specs, .form-grid, .line-showcase, .benefit-strip, .supplier-grid, .about-hero-stats { grid-template-columns: 1fr; }
    .about-hero-copy h1 {
        font-size: 40px;
    }
    .about-value-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-value-item img {
        margin: 0 auto;
    }
    .about-hero-visual::after {
        width: 92px;
        height: 92px;
        font-size: 18px;
    }
    .related-carousel {
        padding: 0;
    }
    .related-product-grid .product-card {
        flex-basis: min(78vw, 300px);
    }
    .related-carousel-arrow {
        display: none;
    }
    .catalog-search {
        flex-direction: column;
        gap: 8px;
    }
    .catalog-search input {
        min-height: 44px;
    }
    .modern-hero, .hero-slider { min-height: 0; }
    .hero-slider {
        aspect-ratio: auto;
        height: 320px;
        max-height: 320px;
    }
    .brochure-strip { padding: 42px 18px; }
    .brochure-band {
        padding: 28px 20px 34px;
        border-radius: 28px;
    }
    .brochure-card { width: min(220px, 100%); }
    .pvc-carousel .product-card {
        flex-basis: 78vw;
    }
    .pvc-mini-products {
        grid-template-columns: 1fr;
    }
    .pvc-mini-card {
        grid-template-columns: 1fr;
    }
    .pvc-mini-card img {
        width: 128px;
        height: 128px;
    }
    .supplier-slide {
        grid-template-columns: minmax(0, 180px);
        gap: 18px;
    }
    .supplier-carousel {
        padding: 0 52px;
    }
    .supplier-track {
        gap: 0;
    }
    .supplier-card {
        flex-basis: 180px;
        width: 180px;
        max-width: 180px;
    }
    .hero-slide img {
        object-fit: cover;
        object-position: center 54%;
    }
    .slide-copy {
        top: 36%;
        width: calc(100% - 40px);
        left: 20px;
    }
    .footer-copy {
        flex-direction: column;
        text-align: center;
    }
    .slide-copy h1,
    .slide-copy h2 { font-size: 44px; }
    .slider-arrow { display: none; }
    .line-card, .line-card img { min-height: 260px; }
    .admin-head { align-items: flex-start; flex-direction: column; }
    .whatsapp-widget {
        right: 16px;
        bottom: 16px;
    }
    .whatsapp-chat-panel {
        width: calc(100vw - 28px);
    }
    .floating-whatsapp {
        padding: 8px;
    }
    .floating-whatsapp-text {
        display: none;
    }
    .floating-whatsapp-icon {
        width: 54px;
        height: 54px;
    }
}
