:root {
    --primary: #04a105;
    --primary-light: #f0f7f0;
    --primary-dark: #038a04;
    --text-main: #111111;
    --text-sub: #555555;
    --bg: #ffffff;
    --nav-h: 132px;
    --utility-h: 40px;
    --mainnav-h: 92px;
    --step-padding-x: 6%;
    --step-max-width: 1280px;
}
@media (max-width: 768px) {
    :root {
        --step-padding-x: 5%;
        --nav-h: 80px;
    }
}

html { overflow-x: hidden; }

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
        scroll-padding-top: var(--nav-h);
    }
    /* Product: GSAP + ScrollTrigger — native smooth scroll fights scrubbed timeline */
    html:has(body.page-product) {
        scroll-behavior: auto;
        scroll-padding-top: 0;
    }
}
*::-webkit-scrollbar:horizontal { height: 0; background: transparent; display: none; }
body.nav-mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Refinement */
h1,
h2,
h3 {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: #000;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #222;
}

h3 {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--primary);
}

p {
    font-weight: 400;
    color: var(--text-sub);
    line-height: 1.7;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
}

/* Header: utility bar + main nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100000;
    background: #fff;
    box-shadow: 0 1px 0 #eee;
}

/* Right rail: contact bar + standalone scroll-top */
.site-right-rail {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999999999999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    pointer-events: none;
}

.site-right-rail > * {
    pointer-events: auto;
}

/* Fixed right contact bar (phone / WhatsApp / email + brand strip) */
.contact-float {
    display: flex;
    flex-direction: column;
    width: 42px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-float-icons {
    background: #012000;
    display: flex;
    flex-direction: column;
    border-radius: 8px 0 0 0;
}

.contact-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
    transition: background 0.2s ease, color 0.2s ease;
}

.contact-float-btn--last {
    border-bottom: none;
}

.contact-float-btn:hover {
    background: #000a00;
    color: #fff;
}

.contact-float-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: -2px;
    z-index: 1;
}

.contact-float-svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.contact-float-svg--wa {
    width: 20px;
    height: 20px;
}

.contact-float-brand {
    flex: 1;
    min-height: 5.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.28rem;
    position: relative;
    overflow: hidden;
    background: var(--primary);
    border-radius: 0 0 0 8px;
}

.contact-float-brand::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("./images/elite_flexiibles_logo-white.webp") center / 85% auto no-repeat;
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
    transform: rotate(270deg);
    height: 35px;
    width: 90px;
    margin-left: -23px;
    margin-top: 40px;
}

.contact-float-brand::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
    background-size: 8px 8px;
    background-position: center;
    pointer-events: none;
    z-index: 1;
}

.contact-float-brand-text {
    position: relative;
    z-index: 2;
    display: block;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #fff;
    font-size: 0.54rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: none;
    white-space: nowrap;
    line-height: 1.2;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

.scroll-top-standalone {
    flex-shrink: 0;
}

.scroll-top-standalone__btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0.35rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    color: #666;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease, color 0.2s ease;
}

.scroll-top-standalone__btn.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.scroll-top-standalone__btn:hover {
    color: var(--primary-dark);
}

.scroll-top-standalone__btn:hover .scroll-top-standalone__arrow {
    color: var(--primary-dark);
}

.scroll-top-standalone__btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 2px;
}

.scroll-top-standalone__arrow {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: #111;
    display: block;
}

@media (max-width: 900px) {
    .site-right-rail {
        top: auto;
        bottom: max(1rem, env(safe-area-inset-bottom, 0px));
        transform: none;
        gap: 0.55rem;
    }
    .contact-float {
        width: 38px;
    }
    .contact-float-btn {
        min-height: 38px;
    }
    .contact-float-brand {
        min-height: 5.8rem;
        padding: 0.45rem 0.25rem;
    }
    .contact-float-brand-text {
        font-size: 0.5rem;
        letter-spacing: 0.1em;
    }
    .scroll-top-standalone__arrow {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .contact-float-brand-text {
        font-size: 0.5rem;
    }
}

.header-utility {
    height: var(--utility-h);
    background: var(--primary-light);
    background-image: radial-gradient(circle, rgba(4, 161, 5, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.utility-left { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.utility-right { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.utility-left a,
.utility-right a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}
.utility-left a:hover,
.utility-right a:hover { color: var(--primary); }
.icon-svg { width: 14px; height: 14px; flex-shrink: 0; }

.lang-dropdown {
    position: relative;
    padding-left: 1.25rem;
    margin-left: 0.25rem;
    border-left: 1px solid rgba(0,0,0,0.12);
}
.lang-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: none;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0.2rem 0;
    transition: color 0.2s;
}
.lang-dropdown-trigger:hover { color: var(--primary); }
.lang-dropdown-trigger::after {
    content: "";
    width: 0; height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid currentColor;
    opacity: 0.7;
}
.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    margin-top: 0.35rem;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 4px;
    list-style: none;
    padding: 0.35rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 10001;
}
.lang-dropdown:hover .lang-dropdown-menu,
.lang-dropdown:focus-within .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-dropdown-menu li { margin: 0; }
.lang-dropdown-menu a {
    display: block;
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: none;
    color: #555;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.lang-dropdown-menu a:hover { background: var(--primary-light); color: var(--primary); }
.lang-dropdown-menu a.is-active { color: #111; font-weight: 600; }

.nav-main {
    height: var(--mainnav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(40px);
}

.nav-main .logo { flex-shrink: 0; }
.nav-main .nav-menu { flex: 1; justify-content: center; margin: 0 2rem; }
.nav-main .nav-actions { flex-shrink: 0; }

.logo img { height: 68px; width: auto; object-fit: contain; display: block; }
.logo { display: flex; align-items: center; text-decoration: none; }

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.nav-menu > li { position: relative; }
.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.6rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.nav-menu > li > a:hover { background: rgba(0,0,0,0.04); color: var(--primary); }
.nav-menu > li > a[aria-current="page"] { color: var(--primary); font-weight: 600; }
.nav-menu .has-dropdown > a::after {
    content: "";
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 0.2rem;
    opacity: 0.7;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    border-radius: 0 0 6px 6px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    list-style: none;
    margin: 0;
    z-index: 1000;
}
.nav-menu .has-dropdown:hover .nav-dropdown,
.nav-menu .has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-menu .has-dropdown:hover > a { color: var(--primary); background: rgba(0,0,0,0.04); }
.nav-dropdown::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 1.5rem;
    border: 8px solid transparent;
    border-bottom-color: var(--primary);
}
.nav-dropdown li { margin: 0; }
.nav-dropdown a {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    color: #333;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover { background: var(--primary-light); color: var(--primary); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: #24660d;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.btn-nav:visited {
    color: #fff;
    text-decoration: none;
}
.btn-nav:hover {
    background: #2d8010;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}
.btn-nav .icon-svg { width: 16px; height: 16px; }

/* Laptops / small desktop (≈13" 1280–1440px): keep single-row nav without clipping */
@media (max-width: 1440px) and (min-width: 901px) {
    .header-utility {
        padding: 0 clamp(1rem, 3vw, 5%);
        font-size: 0.74rem;
    }
    .utility-left,
    .utility-right {
        gap: 0.85rem;
    }
    /* Long address only — keep phone & email readable */
    .utility-left > a:first-child {
        max-width: min(30ch, 36vw);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .nav-main {
        padding: 0 clamp(1rem, 3vw, 5%);
    }
    .logo img {
        height: 56px;
    }
    .nav-main .nav-menu {
        margin: 0 0.75rem;
        min-width: 0;
    }
    .nav-menu {
        gap: 0.2rem;
        flex-wrap: nowrap;
    }
    .nav-menu > li > a {
        padding: 0.5rem 0.5rem;
        font-size: 0.72rem;
        letter-spacing: 0.07em;
        white-space: nowrap;
    }
    .nav-actions {
        gap: 0.4rem;
    }
    .btn-nav {
        padding: 0.42rem 0.75rem;
        font-size: 0.68rem;
        gap: 0.35rem;
    }
    .btn-nav .icon-svg {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 1200px) and (min-width: 901px) {
    .logo img {
        height: 52px;
    }
    .nav-main .nav-menu {
        margin: 0 0.45rem;
    }
    .nav-menu > li > a {
        padding: 0.45rem 0.38rem;
        font-size: 0.68rem;
        letter-spacing: 0.06em;
    }
    .btn-nav span {
        display: none;
    }
    .btn-nav {
        padding: 0.4rem 0.6rem;
    }
}

@media (max-width: 1024px) {
    .header-utility { display: none; }
    :root { --nav-h: 92px; }
    .nav-main .nav-menu { margin: 0 0.5rem; }
    .nav-menu { gap: 0.25rem; }
    .nav-menu > li > a { padding: 0.5rem 0.5rem; font-size: 0.72rem; }
    .nav-actions { gap: 0.4rem; }
    .btn-nav { padding: 0.4rem 0.7rem; font-size: 0.68rem; }
    .btn-nav span { display: none; }
}
@media (max-width: 900px) {
    .nav-actions .btn-nav { padding: 0.4rem 0.6rem; }
}

    .nav-toggle {
        display: none;
        width: 42px;
        height: 42px;
        padding: 0;
        margin: 0;
        border: none;
        background: transparent;
        cursor: pointer;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        z-index: 100001;
        -webkit-tap-highlight-color: transparent;
        border-radius: 12px;
        transition: background 0.2s ease;
    }
.nav-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: #111;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

@media (min-width: 901px) {
    .nav-mobile-stack {
        display: contents;
    }
    .nav-mobile-social,
    .nav-mobile-lang {
        display: none !important;
    }
}

@media (max-width: 900px) {
    :root { --nav-h: 80px; }
    body.nav-mobile-menu-open {
        --nav-h: 92px;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-toggle:hover,
    .nav-toggle:focus-visible {
        background: rgba(0, 0, 0, 0.05);
    }
    .nav-mobile-stack {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 100000;
        background: #f8f9f8;
        overflow: hidden;
        box-shadow: none;
        opacity: 0;
        pointer-events: none;
        transform: translate3d(0, -8px, 0);
        transition:
            opacity 0.28s ease,
            transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .nav-main.nav-mobile-open .nav-mobile-stack {
        opacity: 1;
        pointer-events: auto;
        transform: translate3d(0, 0, 0);
    }
    .nav-mobile-stack .nav-menu {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        flex: 0 1 auto;
        min-height: 0;
        max-height: calc(100vh - var(--nav-h) - 15rem);
        max-height: calc(100dvh - var(--nav-h) - 15rem);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        background: transparent;
        box-shadow: none;
        padding: 0.5rem 0 0.65rem;
        margin: 0;
        gap: 0.35rem;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        border-top: none;
    }
    .nav-mobile-stack .nav-menu > li {
        border-bottom: none;
        margin: 0 0.9rem;
    }
    .nav-mobile-stack .nav-menu > li > a {
        display: flex;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
        padding: 0.9rem 1.05rem;
        min-height: 48px;
        font-size: 0.9375rem;
        font-weight: 500;
        -webkit-tap-highlight-color: transparent;
        color: #222;
        letter-spacing: 0.055em;
        text-transform: uppercase;
        border-left: none;
        border-radius: 12px;
        transition: background 0.18s ease, color 0.18s ease;
    }
    .nav-mobile-stack .nav-menu > li > a:hover,
    .nav-mobile-stack .nav-menu > li > a:focus-visible {
        background: rgba(4, 161, 5, 0.08);
        color: var(--primary-dark);
    }
    .nav-mobile-stack .nav-menu > li > a[aria-current="page"] {
        color: var(--primary-dark);
        background: rgba(4, 161, 5, 0.1);
        font-weight: 600;
    }
    /* Masaüstü .nav-dropdown::before (yeşil üçgen) position:static ile yanlış kutuya yapışıyordu; mobilde kapat */
    .nav-mobile-stack .nav-menu .nav-dropdown::before {
        display: none;
    }
    .nav-mobile-stack .nav-menu .has-dropdown .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        margin: 0;
        padding: 0;
        max-height: none;
        overflow: visible;
        transition: none;
        background: transparent;
        border-radius: 0;
        list-style: none;
    }
    .nav-mobile-stack .nav-menu .has-dropdown.nav-dropdown-open .nav-dropdown {
        display: block;
        max-height: min(52vh, 340px);
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0.35rem 0 0.5rem;
        margin: 0.15rem 0 0;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 10px;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    .nav-mobile-stack .nav-menu .has-dropdown > a::after {
        transition: transform 0.22s ease;
        opacity: 0.35;
        margin-left: auto;
    }
    .nav-mobile-stack .nav-menu .has-dropdown.nav-dropdown-open > a::after {
        transform: rotate(180deg);
    }
    .nav-mobile-stack .nav-menu .has-dropdown.nav-dropdown-open > a {
        color: var(--primary-dark);
        background: rgba(4, 161, 5, 0.08);
    }
    .nav-mobile-stack .nav-menu .nav-dropdown a {
        display: block;
        padding: 0.62rem 0.85rem 0.62rem 1.1rem;
        min-height: 44px;
        font-size: 0.875rem;
        color: #555;
        font-weight: 500;
        letter-spacing: 0.035em;
        line-height: 1.45;
        border-radius: 8px;
        margin: 0 0.35rem 0.15rem;
        box-sizing: border-box;
        transition: color 0.15s ease, background 0.15s ease;
    }
    .nav-mobile-stack .nav-menu .nav-dropdown a:hover,
    .nav-mobile-stack .nav-menu .nav-dropdown a:focus-visible {
        color: var(--primary-dark);
        background: rgba(4, 161, 5, 0.07);
    }
    .nav-mobile-stack .nav-actions {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: auto;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: stretch;
        gap: 0.55rem;
        padding: 1rem 1rem 0.65rem;
        background: transparent;
        border-top: none;
        z-index: 1;
        box-shadow: none;
        flex-shrink: 0;
    }
    .nav-mobile-stack .nav-actions .btn-nav {
        flex: 1 1 auto;
        width: 100%;
        min-width: 0;
        max-width: none;
        justify-content: center;
        min-height: 48px;
        padding: 0.88rem 1.15rem;
        font-size: 0.8125rem;
        font-weight: 600;
        letter-spacing: 0.09em;
        border-radius: 12px;
        background: var(--primary);
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
        transition: background 0.2s, transform 0.15s;
    }
    .nav-mobile-stack .nav-actions .btn-nav:hover {
        background: var(--primary-dark);
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(4, 161, 5, 0.25);
    }
    .nav-mobile-stack .nav-actions .btn-nav span { display: inline; }
    .nav-mobile-lang {
        flex-shrink: 0;
        padding: 0.35rem 1rem 0.5rem;
        text-align: center;
    }
    .nav-mobile-lang__label {
        margin: 0 0 0.45rem 0;
        font-size: 0.65rem;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #999;
    }
    .nav-mobile-lang__list {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 0;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .nav-mobile-lang__item {
        display: inline-flex;
        align-items: center;
    }
    .nav-mobile-lang__item:not(:first-child)::before {
        content: "·";
        color: #ccc;
        font-weight: 300;
        margin-inline-end: 0.45rem;
        font-size: 1rem;
        line-height: 1;
    }
    .nav-mobile-lang__link {
        font-family: 'Outfit', sans-serif;
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-decoration: none;
        color: #666;
        padding: 0.4rem 0.2rem;
        border-radius: 6px;
        transition: color 0.15s ease, background 0.15s ease;
    }
    .nav-mobile-lang__link:hover,
    .nav-mobile-lang__link:focus-visible {
        color: var(--primary-dark);
        background: rgba(4, 161, 5, 0.08);
    }
    .nav-mobile-lang__link.is-active {
        color: var(--primary-dark);
    }
    .nav-mobile-social {
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.65rem;
        row-gap: 0.5rem;
        padding: 0.5rem 1rem max(1rem, env(safe-area-inset-bottom, 0px));
        border-top: none;
        background: transparent;
        position: relative;
    }
    .nav-mobile-social::before {
        display: none;
    }
    .nav-mobile-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        height: auto;
        min-width: 2.5rem;
        min-height: 2.5rem;
        padding: 0.35rem;
        border-radius: 0;
        border: none;
        background: transparent;
        color: #555;
        box-shadow: none;
        transition: color 0.2s ease, opacity 0.2s ease;
    }
    .nav-mobile-social a:hover {
        background: transparent;
        color: var(--primary-dark);
        border-color: transparent;
        transform: none;
        box-shadow: none;
        opacity: 1;
    }
    .nav-mobile-social a:focus-visible {
        outline: 2px solid var(--primary);
        outline-offset: 4px;
        border-radius: 4px;
        color: var(--primary-dark);
    }
    .nav-mobile-social svg {
        width: 22px;
        height: 22px;
    }
    /* backdrop-filter fixed çocukların containing block'unu nav-main yapar; mobil sheet viewport'a göre boyutlanmaz ve görünmez olur */
    .nav-main {
        min-height: 56px;
        height: auto;
        padding: max(0.85rem, env(safe-area-inset-top, 0px)) 4% 0.65rem;
        align-items: center;
        gap: 0.75rem;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        transition: padding 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .nav-main.nav-mobile-open {
        align-items: center;
    }
    .nav-main .logo {
        flex: 0 0 auto;
        min-width: 0;
    }
    .nav-main .nav-toggle {
        flex: 0 0 auto;
        margin-left: auto;
    }
    .nav-main .logo img {
        height: 48px;
        width: auto;
        transition: height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }
}

@media (max-width: 900px) and (prefers-reduced-motion: reduce) {
    .nav-mobile-stack {
        transition: none;
    }
    .nav-main .logo img {
        transition: none;
    }
}

@media (max-width: 480px) {
    .nav-mobile-stack .nav-menu > li {
        margin: 0 0.65rem;
    }
    .nav-mobile-stack .nav-menu > li > a {
        padding: 0.85rem 0.95rem;
        font-size: 0.9375rem;
    }
    .nav-mobile-stack .nav-actions .btn-nav {
        padding: 0.9rem 1.1rem;
        font-size: 0.8125rem;
    }
}
@media (max-width: 768px) {
    .ui-fixed {
        top: calc(var(--nav-h) + 20px);
        align-items: flex-start;
    }
    .ui-fixed .step {
        padding-top: 34vh;
        padding-bottom: 1.25rem;
    }
    .ui-fixed #step1 {
        padding-top: 14vh;
    }
    .step-main-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    .step1-intro { font-size: 0.85rem; margin-bottom: 0.4rem; line-height: 1.6; }
    .step1-cta { margin-top: 1rem; font-size: 0.75rem; letter-spacing: 0.15em; }
    .step2-lead,
    .step3-lead { font-size: 0.85rem; line-height: 1.6; margin-bottom: 1rem; }
    .step4-sub { font-size: 0.85rem; line-height: 1.55; margin-bottom: 1rem; }
    .step-simple-lead,
    .step6-lead { font-size: 0.85rem; line-height: 1.6; margin-bottom: 1rem; }
    .step2-group-title,
    #step3 .step2-group-title,
    #step4 .step2-group-title { font-size: 0.75rem; margin-bottom: 0.5rem; }
    .step2-list li,
    #step3 .step2-list li,
    #step4 .step2-list li { font-size: 0.8rem; padding: 0.5rem 0; }
    #step3 .step2-list strong,
    #step4 .step2-list strong { font-size: 0.8rem; }
    .step5-item strong { font-size: 0.8rem; }
    .step5-item span { font-size: 0.8rem; }
    .step5-grid { gap: 1rem 1.5rem; margin-top: 1.25rem; }
    .step5-item { padding-bottom: 1rem; }
    #step7 .step4-tagline,
    #step8 .step4-tagline { font-size: 0.9rem; margin-bottom: 1.25rem; }
    #step7 .step4-cta,
    #step8 .step4-cta { padding: 12px 32px; font-size: 0.75rem; }
}
@media (max-width: 480px) {
    .ui-fixed .step { padding-top: 32vh; padding-bottom: 1rem; }
    .ui-fixed #step1 { padding-top: 12vh; }
    .step-main-title { font-size: 1.1rem; margin-bottom: 0.6rem; }
    .step1-intro { font-size: 0.8rem; }
    .step2-lead,
    .step3-lead,
    .step4-sub,
    .step-simple-lead,
    .step6-lead { font-size: 0.8rem; }
    .step2-list li,
    #step3 .step2-list li,
    #step4 .step2-list li { font-size: 0.75rem; }
}
@media (max-width: 768px) {
    #step5.step-simple {
        padding-left: var(--step-padding-x);
        padding-right: var(--step-padding-x);
    }
}

/* Button Modern (hero / CTA) */
.btn-lite {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 0.8rem;
    line-height: 1.25;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn-lite:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

#viewport {
    height: 1400vh;
    position: relative;
}

/* 3D Scene Layer */
.scene-fixed {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-h));
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 3500px;
    z-index: 5;
    pointer-events: none;
}

/* UI Content Layer */
.ui-fixed {
    position: fixed;
    top: calc(var(--nav-h) + 40px);
    left: 0;
    width: 100%;
    z-index: 1000;
    pointer-events: none;
    display: flex;
    justify-content: center;
}

/* Product page: WebGL model-viewer can composite above low z-index fixed UI; keep steps/tooltips above scene */
.page-product .ui-fixed {
    z-index: 99999;
}

.step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0 var(--step-padding-x);
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
}

/* Unified step main titles — same size/format across all steps */
.step-main-title {
    font-size: clamp(1.45rem, 3.5vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin: 0 0 1rem 0;
}

#step1 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.step1-intro {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

.step1-cta {
    margin-top: 48px;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--primary);
    font-size: 0.85rem;
}

#step5.step-simple { 
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    padding-left: calc(var(--step-padding-x) + 5rem);
    padding-right: calc(var(--step-padding-x) + 5rem);
    box-sizing: border-box;
    text-align: left;
}
.step5-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2.5rem;
    max-width: 100%;
    margin: 2rem auto 0;
    text-align: left;
}
.step5-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding-bottom: 1.5rem;
    transition: border-color 0.2s ease;
}
.step5-item:hover {
    border-bottom-color: rgba(4, 161, 5, 0.25);
}
.step5-item strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
    letter-spacing: 0.02em;
    text-transform: none;
}
.step5-item span {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}
.step5-item--sustainability strong {
    color: var(--primary);
}
.step5-item--sustainability:hover {
    border-bottom-color: var(--primary);
}
@media (max-width: 600px) {
    .step5-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* Step 6: Sectors — content left, product right (same layout as Step 2) */
#step6.step6-layout {
    grid-template-columns: 1fr 36%;
}
.step6-article {
    min-width: 0;
    max-width: 56ch;
    pointer-events: auto;
    max-height: calc(100vh - var(--nav-h) - 100px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-right: 0.5rem;
}
.step6-article::-webkit-scrollbar { width: 6px; }
.step6-article::-webkit-scrollbar-track { background: rgba(0,0,0,0.04); border-radius: 3px; }
.step6-article::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 3px; }
.step6-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #333;
    margin: 0 0 1.75rem 0;
}
.step6-right {
    min-height: 360px;
}
.step6-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    margin: 0;
    text-align: left;
}
@media (max-width: 600px) {
    .step6-grid { grid-template-columns: 1fr; }
}
.step6-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.2s ease, border-color 0.2s;
}
.step6-item:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
    border-color: var(--primary);
}
.step6-item-img {
    display: block;
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    min-width: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Real <img> must stay inside the square (flex min-width:auto was stretching the card) */
.step6-item-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.step6-item-img--placeholder {
    background-color: #eee;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23bbb' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpolyline points='21 15 16 10 5 21'/%3E%3C/svg%3E");
    background-size: 32px 32px;
}
.step6-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111;
    line-height: 1.35;
    padding: 1rem 1rem 1rem 0;
}
.step6-item:hover .step6-item-title {
    color: var(--primary);
}
@media (max-width: 900px) {
    .step-layout-grid.step6-layout {
        grid-template-columns: 1fr !important;
    }
    .step6-right { display: none; }
}

/* Step 7: Sectors — content left, product right */
#step7 {
    text-align: left;
    pointer-events: auto;
    width: 100%;
    padding-top: 0;
}

#step7 .step-main-title {
    margin-bottom: 1rem;
}

#step7 .step4-tagline,
#step8 .step4-tagline {
    max-width: 520px;
    margin: 0 auto 2rem;
    padding: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

#step7 .step4-cta,
#step8 .step4-cta {
    display: inline-block;
    padding: 14px 40px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: var(--primary);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

#step7 .step4-cta:hover,
#step8 .step4-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Content Grids */
.rich-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 40px auto;
    text-align: left;
    pointer-events: auto;
}

.card-modern {
    background: #ffffff;
    padding: 35px;
    border-radius: 4px;
    border-left: 3px solid var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s ease;
}

.card-modern h4 {
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.card-modern p {
    margin: 0;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.55;
}

.card-modern li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #444;
    list-style: none;
    border-bottom: 1px solid #f9f9f9;
    padding-bottom: 8px;
}

/* Common layout styles for Step 2, 3, 4 */
.step-layout-grid {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    display: grid;
    gap: 2.5rem;
    max-width: var(--step-max-width);
    margin: 0 auto;
    padding: 0 var(--step-padding-x);
    box-sizing: border-box;
    text-align: left;
    align-items: start;
}

/* Step 2: article left, product right */
#step2.step2-layout {
    grid-template-columns: 1fr 36%;
}

.step2-article {
    min-width: 0;
    max-width: 56ch;
    pointer-events: auto;
    max-height: calc(100vh - var(--nav-h) - 100px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-right: 0.5rem;
}
.step2-article::-webkit-scrollbar { width: 6px; }
.step2-article::-webkit-scrollbar-track { background: rgba(0,0,0,0.04); border-radius: 3px; }
.step2-article::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 3px; }

.step2-right {
    min-height: 360px;
}

.step2-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #333;
    margin: 0 0 1.75rem 0;
}

.step2-group {
    margin-top: 1.75rem;
}

.step2-group:first-of-type { margin-top: 0; }

.step2-group-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.75rem 0;
}

.step2-list {
    list-style: disc;
    margin: 0 0 0 1.25rem;
    padding: 0;
}

.step2-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 0.5rem;
}

.step2-list li:last-child { margin-bottom: 0; }

.step2-list strong {
    font-weight: 600;
    color: #111;
}

@media (max-width: 900px) {
    .step-layout-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    .step2-right,
    .step3-right,
    .step4-left {
        min-height: 0;
        display: none;
    }
    .step2-article,
    .step3-article,
    .step4-content {
        max-width: none;
    }
}

/* Technical Details Grid */
.tech-icon-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 40px auto;
    pointer-events: auto;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.5s ease;
}

.tech-item .img-box {
    width: 70px;
    height: 70px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: 0.4s;
}

.tech-item:hover .img-box {
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(4, 161, 5, 0.08);
    transform: translateY(-5px);
}

.tech-item img {
    height: 35px;
    width: auto;
}

.tech-item__label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #555;
}

.tech-item--tip {
    position: relative;
    cursor: help;
    outline: none;
}

.tech-item--tip:focus-visible {
    border-radius: 4px;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--primary);
}

.tech-item__popup {
    position: absolute;
    left: 100%;
    top: 50%;
    margin-left: 12px;
    bottom: auto;
    transform: translateY(-50%) translateX(-6px) scale(0.98);
    min-width: 13.5rem;
    max-width: min(20rem, 85vw);
    padding: 0;
    background: transparent;
    color: #333;
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: normal;
    text-transform: none;
    text-align: left;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 80;
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.45)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
    transition:
        opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.tech-item__popup-card {
    position: relative;
    margin: 0;
    padding: 0.85rem 1rem 0.95rem;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    border-top: 3px solid var(--primary);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(0, 0, 0, 0.4);
}

/* Popup shell uses pointer-events: none; card + link need hit targets for “more info” */
.tech-item--tip .tech-item__popup-card {
    pointer-events: auto;
}

.tech-item__popup-title {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    line-height: 1.35;
    margin: 0 0 0.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-shadow: 0 0 24px rgba(4, 161, 5, 0.35);
}

.tech-item__popup-text {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 400;
    color: #ccc;
    line-height: 1.55;
}

.tech-item__popup-more {
    display: block;
    margin-top: 0.65rem;
    padding-top: 0.55rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--primary);
    line-height: 1.35;
}

.tech-item__popup-more:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.tech-item__popup-more:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.tech-item__popup::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    margin-top: -7px;
    border: 7px solid transparent;
    border-right: 8px solid #161616;
    filter: drop-shadow(-2px 0 2px rgba(0, 0, 0, 0.3));
}

.tech-item--tip:hover .tech-item__popup,
.tech-item--tip:focus .tech-item__popup,
.tech-item--tip:focus-within .tech-item__popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0) scale(1);
}

/* RTL: popup opens on the logical “other” side of the icon */
.page-product--rtl .tech-item__popup {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 12px;
    transform: translateY(-50%) translateX(6px) scale(0.98);
}

.page-product--rtl .tech-item__popup::after {
    left: auto;
    right: -8px;
    margin-top: -7px;
    border: 7px solid transparent;
    border-left: 8px solid #161616;
    filter: drop-shadow(2px 0 2px rgba(0, 0, 0, 0.3));
}

.page-product--rtl .tech-item--tip:hover .tech-item__popup,
.page-product--rtl .tech-item--tip:focus .tech-item__popup,
.page-product--rtl .tech-item--tip:focus-within .tech-item__popup {
    transform: translateY(-50%) translateX(0) scale(1);
}

/* Step 3 (Materials): article left, product right */
#step3.step3-layout {
    grid-template-columns: 1fr 36%;
}
/* Step 4 (Sustainability): product left, article right */
#step4.step3-layout {
    grid-template-columns: 36% 1fr;
}
#step4 .step3-right { order: 1; }
#step4 .step3-article { order: 2; padding-left: 1.5rem; }

.step3-article {
    min-width: 0;
    max-width: 56ch;
    pointer-events: auto;
    max-height: calc(100vh - var(--nav-h) - 100px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-right: 0.5rem;
}
.step3-article::-webkit-scrollbar { width: 6px; }
.step3-article::-webkit-scrollbar-track { background: rgba(0,0,0,0.04); border-radius: 3px; }
.step3-article::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 3px; }

.step3-right {
    min-height: 360px;
}

/* Step 3: simple centered (for other steps using step-simple) */
.step-simple {
    text-align: center;
    pointer-events: auto;
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
    padding: 0 var(--step-padding-x);
    box-sizing: border-box;
}
#step6.step-simple {
    text-align: left;
    max-width: 960px;
    padding-left: calc(var(--step-padding-x) + 7rem);
    padding-right: calc(var(--step-padding-x) + 2rem);
}
@media (max-width: 768px) {
    #step6.step-simple {
        padding-left: calc(var(--step-padding-x) + 1.5rem);
        padding-right: calc(var(--step-padding-x) + 1rem);
    }
}
@media (max-width: 480px) {
    #step6.step-simple {
        padding-left: var(--step-padding-x);
        padding-right: var(--step-padding-x);
    }
}
.step3-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #555;
    margin: 0 0 2rem 0;
    font-weight: 400;
}

.step-simple-lead {
    font-size: 1rem;
    line-height: 1.65;
    color: #555;
    margin: 0 0 1.5rem 0;
}
.step3-group {
    margin-top: 2rem;
}
.step3-group:first-of-type { margin-top: 0; }
#step3 .step2-group-title,
#step4 .step2-group-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #111;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 0.75rem 0;
}
#step4 .step2-group-title { display: none; }
#step3 .step2-list,
#step4 .step2-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
#step3 .step2-list li,
#step4 .step2-list li {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
#step3 .step2-list li:last-child,
#step4 .step2-list li:last-child { border-bottom: none; }
#step3 .step2-list strong,
#step4 .step2-list strong {
    font-weight: 600;
    color: #111;
    display: inline-block;
    margin-right: 0.25rem;
}

.step-simple-block {
    margin-top: 1.5rem;
    text-align: left;
}
.step-simple-block:first-of-type { margin-top: 0; }
.step-simple-sub {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.6rem 0;
}
.step-simple-list {
    margin: 0 0 0 1.25rem;
    padding: 0;
}
.step-simple-list li { margin-bottom: 0.4rem; }

.step3-sustainability-block {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.step3-sustainability-block .step2-group-title {
    color: var(--primary);
}
.step3-sustainability-tagline {
    font-size: 0.9rem;
    color: #555;
    margin: 0 0 1rem 0;
    line-height: 1.6;
    font-style: normal;
}
.step5-item--sustainability {
    grid-column: 1 / -1;
}
.icon-leaf { width: 14px; height: 14px; flex-shrink: 0; }
.link-sustainability {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.link-sustainability:hover { color: var(--primary); }
.footer-brand .footer-utility-links .link-sustainability { color: #555; }
.footer-brand .footer-utility-links .link-sustainability:hover { color: var(--primary); }

/* Step 5: Features — product left, content right (wider text column for 7-across grid) */
#step5.step4-layout {
    grid-template-columns: 30% 1fr;
    pointer-events: auto;
}

#step5.step-layout-grid {
    max-width: 1440px;
}

.step4-left {
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.step4-content {
    min-width: 0;
    pointer-events: auto;
    max-height: calc(100vh - var(--nav-h) - 100px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-right: 0.5rem;
}

/* Step 5: let features + tooltips use page scroll (no inner scrollbar) */
#step5 .step4-content {
    max-height: none;
    overflow-y: visible;
    overflow-x: hidden;
}

.step4-content::-webkit-scrollbar { width: 6px; }
.step4-content::-webkit-scrollbar-track { background: rgba(0,0,0,0.04); border-radius: 3px; }
.step4-content::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 3px; }

#step5 .step-main-title { margin-bottom: 0.5rem; }
.step4-sub {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0 0 1.5rem 0;
    max-width: none;
}

.step4-product-zone {
    min-height: 200px;
    width: 100%;
    margin-bottom: 0;
}

.step4-tech-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px 8px;
    max-width: 100%;
    width: 100%;
    margin: 0;
    text-align: center;
}

/* Tooltips extend above the grid; stack above FEATURES heading, subtitle, peer cells, and 3D layer quirks */
#step5 .step4-tech-grid {
    position: relative;
    z-index: 30;
    isolation: isolate;
}

#step5 .step4-tech-grid .tech-item--tip:hover,
#step5 .step4-tech-grid .tech-item--tip:focus-within {
    z-index: 2147483646;
}

#step5 .step4-tech-grid .tech-item__popup {
    position: absolute;
    z-index: 2147483647;
}

@media (max-width: 900px) {
    #step5.step4-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .step4-left {
        min-height: 0;
        display: none;
    }
    .step4-content { max-width: none; }
}

.step4-tech-grid .tech-item {
    padding: 2px 0;
}

.step4-tech-grid .tech-item .img-box {
    width: 72px;
    height: 72px;
    margin: 0 auto 6px;
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 0;
}

.step4-tech-grid .tech-item:hover .img-box {
    border-color: transparent;
    box-shadow: none;
}

.step4-tech-grid .tech-item img {
    height: 44px;
    width: auto;
}

.step4-tech-grid .tech-item__label {
    font-size: 9px;
    line-height: 1.25;
}

@media (max-width: 1100px) {
    .step4-tech-grid { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 900px) {
    .step4-tech-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
    .step4-tech-grid { grid-template-columns: repeat(3, 1fr); gap: 4px 8px; }
    .step4-tech-grid .tech-item__label { font-size: 8px; }
}
@media (max-width: 400px) {
    .step4-tech-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 3D Model Original Theme */
.pkg-move {
    position: relative;
    transform: translateY(220px);
}

.pkg-3d {
    width: 380px;
    height: 608px;
    position: relative;
    transform-style: preserve-3d;
}

/* Model-viewer styling */
model-viewer {
    width: 380px !important;
    height: 708px !important;
    display: block !important;
    position: relative;
    z-index: 0;
    background: transparent;
    --poster-color: transparent;
}

/* model-viewer: poster slot = loading until first frame */
.model-viewer-poster {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.45);
    pointer-events: none;
    z-index: 1;
}

.modal-3d-body .model-viewer-poster {
    background: rgba(250, 250, 250, 0.88);
}

.model-viewer-spinner {
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    border: 3px solid #999;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: ef-model-viewer-spin 0.75s linear infinite;
}

@keyframes ef-model-viewer-spin {
    to {
        transform: rotate(360deg);
    }
}
@media (max-width: 768px) {
    model-viewer {
        width: 220px !important;
        height: 400px !important;
    }
    .pkg-move model-viewer { width: 220px !important; height: 400px !important; }
    .pkg-3d { width: 220px; height: 352px; }
    #threejs-canvas { width: 220px !important; height: 352px !important; }
}
@media (max-width: 480px) {
    model-viewer {
        width: 180px !important;
        height: 320px !important;
    }
    .pkg-move model-viewer { width: 180px !important; height: 320px !important; }
    .pkg-3d { width: 180px; height: 288px; }
    #threejs-canvas { width: 180px !important; height: 288px !important; }
}

/* Main page model-viewer: interactive turntable. The .ui-fixed overlay (z-index 99999)
   has pointer-events:none on the container and on .step itself, so its empty placeholder
   columns let pointer events fall through to the model below. The model-viewer must opt
   back in explicitly because its parent .scene-fixed is pointer-events:none. */
#model-viewer {
    cursor: grab;
    touch-action: pan-y;
    pointer-events: auto !important;
}

#model-viewer:active {
    cursor: grabbing;
}

/* Make the model's parent column transparent to events so the model itself is the hit
   target — parent .scene-fixed already has pointer-events:none, but .pkg-move defaults
   to auto and would otherwise catch events on padding around the model. */
.pkg-move {
    pointer-events: none;
}

/* Re-enable on the model itself (already handled by the rule above, but kept explicit
   here so future changes don't regress). */
.pkg-move > model-viewer {
    pointer-events: auto;
}

/* Step containers must NOT block pointer events on their empty placeholder columns
   (.step2-right, .step3-right, .step6-right, .step4-product-zone). Visible children
   of the .step (text/articles/links) keep their default pointer-events:auto and remain
   interactive. This lets the user grab the model through the empty columns. */
.step {
    pointer-events: none;
}

.step2-right,
.step3-right,
.step6-right,
.step4-left,
.step4-product-zone {
    pointer-events: none;
}

/* Modal model-viewer: grab cursor enabled */
#modal-model-viewer {
    cursor: grab;
}

#modal-model-viewer:active {
    cursor: grabbing;
}

#threejs-canvas {
    width: 380px !important;
    height: 608px !important;
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: relative;
    z-index: 10;
    background: transparent;
    pointer-events: none;
}

/* Hide CSS 3D model when using 3D viewer */
#pkg {
    display: none !important;
    visibility: hidden !important;
}

.side {
    position: absolute;
    background-color: #fff;
    background-image: url('example-image.png');
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.05);
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.front {
    width: 380px;
    height: 608px;
    transform: translateZ(76px);
}

.front::before {
    content: "";
    position: absolute;
    bottom: 50px;
    width: 80%;
    height: 4px;
    background: var(--primary);
    border-radius: 1px;
    pointer-events: none;
}

.back {
    width: 380px;
    height: 608px;
    transform: rotateY(180deg) translateZ(76px);
    filter: brightness(0.96);
}

.left {
    width: 152px;
    height: 608px;
    left: 114px;
    transform: rotateY(-90deg) translateZ(190px);
    filter: brightness(0.93);
    background-color: #004000;
    background-image: none;
}

.right {
    width: 152px;
    height: 608px;
    left: 114px;
    transform: rotateY(90deg) translateZ(190px);
    filter: brightness(0.93);
    background-color: #004000;
    background-image: none;
}

.bottom {
    width: 380px;
    height: 152px;
    top: 228px;
    transform: rotateX(-90deg) translateZ(304px);
    background-color: var(--primary);
    background-image: none;
    filter: brightness(0.8);
}

/* Footer */
footer {
    background: #ffffff;
    padding: 100px 5% 60px;
    border-top: 1px solid #eee;
    position: relative;
    z-index: 9999;
    display: block;
}

.footer-con {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    gap: 48px 32px;
    padding: 0 40px;
}

.footer-brand img {
    height: 68px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    font-size: 0.9rem;
    font-weight: 300;
    color: #555;
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
}

.footer-brand .footer-utility-links {
    display: flex;
    gap: 1.25rem;
    font-size: 0.85rem;
}

.footer-brand .footer-utility-links a {
    color: #555;
    text-decoration: none;
}

.footer-brand .footer-utility-links a:hover { color: var(--primary); }

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: none;
    color: #111;
    margin: 0 0 1.25rem 0;
}

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

.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col ul li a {
    font-size: 0.9rem;
    color: #555;
    text-decoration: none;
}

.footer-col ul li a:hover { color: var(--primary); }

.footer-contact p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.footer-contact p a {
    color: #555;
    text-decoration: none;
}

.footer-contact p a:hover { color: var(--primary); }
.footer-social {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(85, 85, 85, 0.7);
    transition: color 0.2s;
}
.footer-social a:hover { color: var(--primary); }
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
    max-width: 1280px;
    margin: 48px auto 0;
    padding: 24px 40px 0;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: #999;
}
.footer-bottom-copy { flex-shrink: 0; }

.footer-bottom-aside {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(0.65rem, 2vw, 1rem);
    margin-left: auto;
    justify-content: flex-end;
}

.footer-bottom .footer-credit {
    max-width: none;
    margin: 0;
    padding: 0;
    text-align: inherit;
}

.footer-bottom .footer-credit__link {
    justify-content: flex-start;
}

.footer-lang {
    position: relative;
}
.footer-lang.lang-dropdown {
    border-left: 1px solid rgba(0,0,0,0.1);
    padding-left: 1rem;
    margin-left: 0;
}
.footer-lang .lang-dropdown-trigger {
    font-size: 0.8rem;
    color: #999;
}
.footer-lang .lang-dropdown-trigger:hover { color: var(--primary); }
.footer-lang .lang-dropdown-menu {
    right: 0;
    left: auto;
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 0.35rem;
    transform: translateY(4px);
}
.footer-lang:hover .lang-dropdown-menu,
.footer-lang:focus-within .lang-dropdown-menu {
    transform: translateY(0);
}

/* Standalone .footer-credit removed from flow — use .footer-bottom .footer-credit */

.footer-credit__link {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem 0.55rem;
    max-width: 100%;
    margin: 0 auto;
    text-decoration: none;
    color: #999;
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.35;
    text-transform: none;
    transition: color 0.2s ease;
}

.footer-credit__text {
    color: #999;
}

.footer-credit__link:hover,
.footer-credit__link:focus-visible {
    color: #666;
    outline: none;
}

.footer-credit__link:hover .footer-credit__text,
.footer-credit__link:focus-visible .footer-credit__text {
    color: #666;
}

.footer-credit__link:focus-visible {
    outline: 1px solid rgba(0, 0, 0, 0.18);
    outline-offset: 6px;
    border-radius: 2px;
}

.footer-credit__logo {
    height: 22px;
    width: auto;
    display: block;
    flex-shrink: 0;
    opacity: 0.88;
    transition: opacity 0.2s ease;
}

.footer-credit__link:hover .footer-credit__logo,
.footer-credit__link:focus-visible .footer-credit__logo {
    opacity: 1;
}

@media (max-width: 1024px) {
    .footer-con {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    footer { padding: 60px 4% 40px; }
    .footer-con {
        grid-template-columns: 1fr 1fr;
        gap: 36px 24px;
        padding: 0;
    }
    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 0.5rem;
    }
    .footer-brand p { font-size: 0.85rem; }
    .footer-col h4 { font-size: 0.75rem; margin-bottom: 1rem; }
    .footer-col ul li a { font-size: 0.85rem; }
    .footer-contact p { font-size: 0.85rem; }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 20px 0 0;
    }
    .footer-bottom-aside {
        width: 100%;
        margin-left: 0;
        justify-content: flex-start;
    }
    .footer-lang.lang-dropdown {
        border-left: none;
        border-top: 1px solid rgba(0,0,0,0.1);
        padding-left: 0;
        padding-top: 0.75rem;
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 500px) {
    .footer-con {
        grid-template-columns: 1fr 1fr;
        gap: 28px 16px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-col h4 { font-size: 0.7rem; margin-bottom: 0.75rem; }
    .footer-col ul li { margin-bottom: 0.4rem; }
    .footer-col ul li a { font-size: 0.8rem; }
}

/* AR & 3D Viewer Section - Before Footer
   Match .page-product .ui-fixed (99999) so fixed step UI does not paint over this block */
.section-3d-viewer {
    background: #ffffff;
    padding: 70px 5% 90px;
    border-top: 1px solid #eee;
    position: relative;
    z-index: 99999;
}

.section-3d-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.section-3d-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #333;
    margin: 0 0 0.75rem 0;
}

.section-3d-subtitle {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0 0 3rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-3d-buttons {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-3d-minimal,
.btn-ar-minimal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 0;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #444;
    -webkit-tap-highlight-color: transparent;
}

.btn-3d-minimal:hover,
.btn-ar-minimal:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-3d-minimal:active,
.btn-ar-minimal:active {
    transform: translateY(-2px);
}

.btn-3d-minimal:focus,
.btn-ar-minimal:focus {
    outline: none;
}

.btn-icon-large {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-3d-minimal:hover .btn-icon-large,
.btn-ar-minimal:hover .btn-icon-large {
    transform: scale(1.08);
}

.btn-icon-large svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.icon-image,
.ar-icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) opacity(0.7);
    transition: filter 0.3s;
}

.btn-3d-minimal:hover .icon-image,
.btn-ar-minimal:hover .ar-icon-image {
    filter: brightness(0) sepia(1) hue-rotate(90deg) saturate(3) opacity(1);
}

.btn-text {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: currentColor;
    transition: all 0.3s;
    opacity: 0.8;
}

.btn-3d-minimal:hover .btn-text,
.btn-ar-minimal:hover .btn-text {
    opacity: 1;
}

@media (max-width: 768px) {
    .section-3d-viewer {
        padding: 60px 5% 80px;
    }
    .section-3d-buttons {
        gap: 3rem;
    }
    .btn-icon-large {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 600px) {
    .section-3d-viewer {
        padding: 50px 5% 70px;
    }
    .section-3d-buttons {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
    }
    .btn-icon-large {
        width: 40px;
        height: 40px;
    }
    .btn-text {
        font-size: 0.8rem;
    }
}
@media (max-width: 400px) {
    .section-3d-buttons {
        gap: 1rem;
    }
    .btn-icon-large {
        width: 36px;
        height: 36px;
    }
    .btn-3d-minimal,
    .btn-ar-minimal {
        gap: 0.75rem;
    }
}

/* 3D Viewer Modal */
.modal-3d-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-3d-viewer[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.modal-3d-content {
    width: 90%;
    max-width: 900px;
    height: 80vh;
    max-height: 800px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-3d-viewer[aria-hidden="false"] .modal-3d-content {
    transform: scale(1);
}

.modal-3d-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
}

.modal-3d-title {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #111;
    margin: 0;
}

.modal-3d-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #666;
    transition: all 0.2s;
}

.modal-3d-close:hover {
    background: #f5f5f5;
    color: #111;
}

.modal-3d-close svg {
    width: 20px;
    height: 20px;
}

.modal-3d-body {
    flex: 1;
    position: relative;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-3d-body model-viewer {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .modal-3d-content {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }
    .modal-3d-header {
        padding: 1rem 1.5rem;
    }
}

/* =========================================================
   HOME — scroll layout, no 3D (primary + greys, Outfit)
   ========================================================= */
.page-home .home-main {
    padding-top: var(--nav-h);
}

.home-inner {
    max-width: var(--step-max-width);
    margin: 0 auto;
    padding-left: var(--step-padding-x);
    padding-right: var(--step-padding-x);
    box-sizing: border-box;
}

.home-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #333;
    opacity: 0.9;
    margin: 0 0 1rem 0;
}

.home-hero {
    padding: 3.5rem 0 4rem;
    text-align: center;
    background: var(--bg);
}

.home-hero-title {
    margin-bottom: 1rem;
}

.home-hero-lead {
    max-width: 64ch;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #555;
}

.home-hero-actions {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* HOME hero — sustainable (full-bleed bg: images/hero-banner-bg.jpg) */
.home-hero--sustainable {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: clamp(2rem, 4.5vw, 3rem) 0 clamp(2.25rem, 5.5vw, 3.75rem);
    background: #fff;
    min-height: clamp(360px, 60vh, 680px);
    overflow: hidden;
}

.home-hero--sustainable::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('images/hero-banner-slider-elite-flexibles.jpg') right bottom / cover no-repeat;
    pointer-events: none;
}

.home-hero--sustainable::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
90deg, #fff 0%, rgba(255, 255, 255, 0.42) 50%, rgba(255, 255, 255, 0.42) 56%, rgba(255, 255, 255, 0.08) 72%, transparent 100%);
    pointer-events: none;
}

.home-hero--sustainable .home-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--step-max-width);
    margin-left: 0;
    margin-right: auto;
    padding-left: max(1.35rem, var(--step-padding-x));
}

.home-hero__grid {
    display: grid;
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: start;
    grid-template-columns: 1fr;
}

.home-hero__grid--copy-only {
    max-width: min(36rem, 100%);
}

.home-hero__copy {
    min-width: 0;
}

.home-hero__headline {
    margin: 0 0 1rem;
    font-size: clamp(1.65rem, 3.8vw, 2.55rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.14;
    color: #111;
}

.home-hero__hl-line {
    display: block;
}

.home-hero__hl-line--accent {
    color: var(--primary);
    font-weight: 600;
}

.home-hero__hl-line--bold {
    color: #111;
    font-weight: 600;
}

.home-hero__hl-line--rest {
    color: #111;
    font-weight: 400;
}

.home-hero__lead {
    max-width: min(38ch, 100%);
    margin: 0;
    font-size: clamp(0.92rem, 1.6vw, 1.02rem);
    line-height: 1.65;
    color: #555;
}

.home-hero-actions--sustainable {
    justify-content: flex-start;
    margin-top: 1.35rem;
}

.home-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.home-hero__cta-icon {
    flex-shrink: 0;
}

.home-hero__edit-hint {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #666;
    max-width: 32rem;
    line-height: 1.45;
}

@media (max-width: 899px) {
    .home-hero--sustainable::after {
        background: linear-gradient(
            180deg,
            #fff 0%,
            rgba(255, 255, 255, 0.94) 32%,
            rgba(255, 255, 255, 0.55) 52%,
            rgba(255, 255, 255, 0.12) 78%,
            transparent 100%
        );
    }

    .home-hero__grid--copy-only {
        max-width: 100%;
    }
}

/* HOME — editorial rhythm (contact page language) */
.page-home .step-main-title {
    color: #111;
    letter-spacing: 0.08em;
}

/* Match global .home-section-head: centered title, rule, sub (same “concept” on all sections) */
.page-home .home-section-head {
    text-align: center;
    max-width: min(44rem, 100%);
    margin: 0 auto 2.5rem;
}

.page-home .home-section-head .home-section-sub--wide {
    margin-left: auto;
    margin-right: auto;
}

.page-home .home-section-head .home-rule {
    margin-left: auto;
    margin-right: auto;
}

.page-home .home-section--cta .home-rule {
    margin-left: auto;
    margin-right: auto;
}

.page-home .home-section--muted {
    background: #fafafa;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 22px 22px;
}

.page-home .home-pack-card {
    border-color: #eee;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.page-home .home-pack-card:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

.page-home .home-pillar:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.page-home .home-cap-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.page-home .home-section--process {
    background: #fafafa;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
    background-size: 20px 20px;
}

.page-home .home-industry-media {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

/* CTA: same readable width as .home-section-head, centered inside .home-inner */
.page-home .home-cta-block--editorial {
    text-align: center;
    max-width: min(44rem, 100%);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.page-home .home-cta-block--editorial .home-cta-lead {
    margin: 0.85rem auto 0;
    max-width: 52ch;
}

.home-btn.btn-lite {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 9px 20px;
}

.home-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #111;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s, transform 0.2s;
}
.home-link:hover { color: var(--primary); transform: translateY(-2px); }
.home-link--inline { margin-top: 1rem; text-transform: none; letter-spacing: 0.04em; font-size: 0.9rem; }

.home-section {
    padding: 4rem 0;
    background: var(--bg);
}

.home-section--muted {
    background: var(--primary-light);
    background-image: radial-gradient(circle, rgba(4, 161, 5, 0.06) 1px, transparent 1px);
    background-size: 22px 22px;
}

.home-section--cta {
    padding: 4.5rem 0 5rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.home-section-head {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto 2.5rem;
}

.home-section-title {
    margin-bottom: 0;
}

.home-rule {
    display: block;
    width: 48px;
    height: 2px;
    background: var(--primary);
    margin: 0.85rem auto 1rem;
    border-radius: 1px;
}

.home-section-sub {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    font-weight: 400;
}

.home-section-sub--wide {
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
}

/* Home — scroll reveal (premium, minimal; requires html.ef-home-motion) */
:root {
    --home-reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --home-reveal-duration: 0.68s;
    --home-reveal-shift: 20px;
}

/* Exclude --stagger-grid: parent must stay opaque; only > * animate (parent opacity would hide children) */
html.ef-home-motion .home-reveal:not(.home-reveal--block-stagger):not(.home-reveal--stagger-grid):not(.is-visible) {
    opacity: 0;
    transform: translate3d(0, var(--home-reveal-shift), 0);
}

html.ef-home-motion .home-reveal:not(.home-reveal--block-stagger):not(.home-reveal--stagger-grid).is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

html.ef-home-motion .home-reveal:not(.home-reveal--block-stagger):not(.home-reveal--stagger-grid) {
    transition:
        opacity var(--home-reveal-duration) var(--home-reveal-ease),
        transform var(--home-reveal-duration) var(--home-reveal-ease);
}

html.ef-home-motion .home-reveal--block-stagger:not(.is-visible) > * {
    opacity: 0;
    transform: translate3d(0, var(--home-reveal-shift), 0);
}

html.ef-home-motion .home-reveal--block-stagger.is-visible > * {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
        opacity var(--home-reveal-duration) var(--home-reveal-ease),
        transform var(--home-reveal-duration) var(--home-reveal-ease);
}

html.ef-home-motion .home-reveal--block-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
html.ef-home-motion .home-reveal--block-stagger.is-visible > *:nth-child(2) { transition-delay: 0.13s; }
html.ef-home-motion .home-reveal--block-stagger.is-visible > *:nth-child(3) { transition-delay: 0.21s; }
html.ef-home-motion .home-reveal--block-stagger.is-visible > *:nth-child(4) { transition-delay: 0.29s; }

html.ef-home-motion .home-reveal--stagger-grid:not(.is-visible) > * {
    opacity: 0;
    transform: translate3d(0, calc(var(--home-reveal-shift) * 0.85), 0);
}

html.ef-home-motion .home-reveal--stagger-grid.is-visible > * {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 0.58s var(--home-reveal-ease),
        transform 0.58s var(--home-reveal-ease);
}

html.ef-home-motion .home-reveal--stagger-grid.is-visible > *:nth-child(1) { transition-delay: 0.03s; }
html.ef-home-motion .home-reveal--stagger-grid.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
html.ef-home-motion .home-reveal--stagger-grid.is-visible > *:nth-child(3) { transition-delay: 0.13s; }
html.ef-home-motion .home-reveal--stagger-grid.is-visible > *:nth-child(4) { transition-delay: 0.18s; }
html.ef-home-motion .home-reveal--stagger-grid.is-visible > *:nth-child(5) { transition-delay: 0.23s; }
html.ef-home-motion .home-reveal--stagger-grid.is-visible > *:nth-child(6) { transition-delay: 0.28s; }
html.ef-home-motion .home-reveal--stagger-grid.is-visible > *:nth-child(7) { transition-delay: 0.33s; }
html.ef-home-motion .home-reveal--stagger-grid.is-visible > *:nth-child(8) { transition-delay: 0.38s; }
html.ef-home-motion .home-reveal--stagger-grid.is-visible > *:nth-child(9) { transition-delay: 0.43s; }
html.ef-home-motion .home-reveal--stagger-grid.is-visible > *:nth-child(10) { transition-delay: 0.48s; }
html.ef-home-motion .home-reveal--stagger-grid.is-visible > *:nth-child(11) { transition-delay: 0.53s; }
html.ef-home-motion .home-reveal--stagger-grid.is-visible > *:nth-child(12) { transition-delay: 0.58s; }

@media (prefers-reduced-motion: reduce) {
    html.ef-home-motion .home-reveal:not(.home-reveal--block-stagger):not(.home-reveal--stagger-grid):not(.is-visible),
    html.ef-home-motion .home-reveal--block-stagger:not(.is-visible) > *,
    html.ef-home-motion .home-reveal--stagger-grid:not(.is-visible) > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Split — Recyclable (reference: product left, copy right) */
.home-split__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

/* Wider visual column so the product / uploaded image reads larger */
.home-split--recyclable .home-split__grid {
    grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
    gap: clamp(1.75rem, 4vw, 3.25rem);
}

.home-split__content {
    text-align: left;
    max-width: 52ch;
}

.home-heading-brush {
    margin: 0 0 1.25rem 0;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #111;
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    line-height: 1.25;
}

.home-heading-brush__line {
    position: relative;
    display: inline;
}

.home-heading-brush__line::after {
    content: "";
    position: absolute;
    left: -0.1em;
    right: -0.1em;
    bottom: 0.02em;
    height: 0.42em;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'%3E%3Cpath d='M4 10 C 40 4 80 12 120 8 C 150 5 180 9 196 7' stroke='%2304a105' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round' opacity='0.85'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
    z-index: 0;
    pointer-events: none;
}

.home-heading-brush__rest {
    font-weight: 300;
}

.home-split--recyclable .home-heading-brush {
    font-weight: 600;
    font-size: clamp(1.65rem, 3.8vw, 2.35rem);
    letter-spacing: 0.12em;
}

.home-split--recyclable .home-heading-brush__line {
    display: block;
    letter-spacing: 0;
}

.home-split--recyclable .home-heading-brush__rest {
    display: block;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.home-split__lead {
    margin: 0 0 0.5rem 0;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #555;
}

.home-split__cta {
    margin-top: 1.25rem;
}

/* Decorative pouch scene (CSS only — no 3D) */
.home-pouch-scene {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.home-pouch {
    width: 150px;
    height: 230px;
    border-radius: 14px 14px 28px 28px;
    background: linear-gradient(155deg, var(--primary-dark) 0%, var(--primary) 55%, #036d04 100%);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.14);
    position: relative;
}

.home-pouch--front {
    transform: translateX(-18px) rotate(-7deg);
    z-index: 2;
}

.home-pouch--back {
    position: absolute;
    transform: translateX(52px) rotate(9deg);
    opacity: 0.96;
    background: linear-gradient(165deg, #038a04 0%, var(--primary) 100%);
}

.home-pouch-pattern {
    position: absolute;
    inset: 10%;
    border-radius: 8px;
    opacity: 0.22;
    background-image:
        radial-gradient(circle at 20% 30%, #fff 0, #fff 3px, transparent 3px),
        radial-gradient(circle at 45% 55%, #fff 0, #fff 2.5px, transparent 2.5px),
        radial-gradient(circle at 70% 25%, #fff 0, #fff 2px, transparent 2px),
        repeating-linear-gradient(
            125deg,
            transparent 0,
            transparent 6px,
            rgba(255,255,255,0.12) 6px,
            rgba(255,255,255,0.12) 7px
        );
}

.home-pouch-brand {
    position: absolute;
    left: 10%;
    bottom: 8%;
    font-size: 0.55rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.home-pouch-recycle {
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: 12%;
    height: 28px;
    border-top: 1px solid rgba(255,255,255,0.25);
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.08));
    border-radius: 0 0 8px 8px;
}

.home-recyclable-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 0;
    width: 100%;
}

.home-recyclable__img {
    display: block;
    width: 100%;
    max-width: min(100%, 680px);
    height: auto;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

/* Fallback CSS pouches — match larger visual weight when no upload */
.home-split--recyclable .home-pouch {
    width: 182px;
    height: 278px;
}

.home-split--recyclable .home-pouch--front {
    transform: translateX(-22px) rotate(-7deg);
}

.home-split--recyclable .home-pouch--back {
    transform: translateX(58px) rotate(9deg);
}

.home-split--recyclable .home-pouch-scene {
    min-height: 320px;
}

.home-split__visual--edit .home-recyclable-upload {
    margin-top: 0.75rem;
}

/* Packaging Solutions grid (4 + 4) */
.home-pack-grid {
    display: grid;
    gap: 1.25rem;
}

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

.home-pack-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: calc(75% + 2rem);
    margin: 1.25rem auto 0;
}

.home-pack-grid--packaging-row2 {
    margin-top: 1.25rem;
}

.home-pack-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 14px;
    padding: 1rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 6px 22px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.home-pack-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.1);
    border-color: rgba(4, 161, 5, 0.28);
}

.home-pack-thumb {
    aspect-ratio: 1;
    border-radius: 10px;
    margin-bottom: 0.85rem;
    overflow: hidden;
}

/* Abstract thumbs — greys + primary only */
.home-pack-thumb--a {
    background: linear-gradient(145deg, #333 0%, #555 100%);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.home-pack-thumb--b {
    background:
        radial-gradient(circle at 30% 35%, rgba(255,255,255,0.2) 0%, transparent 45%),
        linear-gradient(155deg, var(--primary-dark), var(--primary));
}
.home-pack-thumb--c {
    background: linear-gradient(160deg, #222 0%, #444 100%);
}
.home-pack-thumb--d {
    background:
        repeating-linear-gradient(-18deg, rgba(255,255,255,0.1) 0 2px, transparent 2px 10px),
        linear-gradient(150deg, var(--primary-dark), var(--primary));
}
.home-pack-thumb--e {
    background: linear-gradient(90deg, #666 0%, #999 50%, #666 100%);
}
.home-pack-thumb--f {
    background: linear-gradient(180deg, #111 0%, #333 60%, #555 100%);
    border-radius: 10px 10px 40% 40%;
}
.home-pack-thumb--g {
    background: linear-gradient(175deg, #555 0%, #777 100%);
}
.home-pack-thumb--h {
    background:
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(0, 0, 0, 0.35) 0%, transparent 55%),
        linear-gradient(168deg, #333 0%, #111 45%, #444 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.home-pack-label {
    font-size: 0.88rem;
    font-weight: 500;
    color: #333;
    text-align: center;
    letter-spacing: 0.02em;
}

/* Packaging Solutions — premium grid */
.home-section--packaging-premium.home-section--muted {
    background: linear-gradient(180deg, #fafafa 0%, #f4f4f4 100%);
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.034) 1px, transparent 1px);
    background-size: 24px 24px;
}

.home-packaging-inner {
    max-width: min(1400px, 100%);
}

.home-packaging-head .home-packaging-sub {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.home-pack-grid--premium {
    gap: clamp(1.1rem, 2.4vw, 2rem);
}

.home-pack-card--premium {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: clamp(0.7rem, 1.6vw, 1rem);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.88) inset,
        0 12px 36px rgba(0, 0, 0, 0.065);
    transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.25s ease;
}

.home-pack-card.home-pack-card--premium.home-pack-card--has-img {
    padding: 0;
    padding-bottom: 16px;
    border-radius: 6px;
}

.home-pack-card__hit {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1 1 auto;
    min-height: 0;
    text-decoration: none;
    color: inherit;
}

.home-pack-card--premium:hover {
    transform: translateY(-3px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.92) inset,
        0 22px 50px rgba(0, 0, 0, 0.095);
    border-color: rgba(4, 161, 5, 0.32);
}

.home-pack-card--premium .home-pack-thumb--premium {
    margin-bottom: 0.7rem;
    border-radius: 0;
    border: 0;
    box-shadow: none;
}

.home-pack-thumb--premium.home-pack-thumb--photo {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.home-pack-thumb__img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto;
}

.home-pack-label--premium {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #222;
}

.home-pack-upload {
    margin-top: 0.6rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.75rem;
}

.home-pack-upload__btn {
    font-size: 0.7rem;
    padding: 6px 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-pack-upload__hint {
    font-size: 0.65rem;
    color: #666;
    letter-spacing: 0.05em;
}

.home-pack-link-hint {
    margin: 0.45rem 0 0;
    padding-top: 0.45rem;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    font-size: 0.65rem;
    color: #666;
    line-height: 1.35;
    word-break: break-all;
}

.home-pack-link-hint__label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #555;
}

.page-home .home-pack-card--premium {
    border-color: rgba(0, 0, 0, 0.065);
}

.page-home .home-pack-card--premium:hover {
    transform: translateY(-3px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.92) inset,
        0 22px 50px rgba(0, 0, 0, 0.095);
}

/* Industry — horizontal strip + arrow navigation */
.home-industry-carousel {
    position: relative;
    margin-inline: calc(-1 * var(--step-padding-x));
    padding-inline: var(--step-padding-x);
}

.home-industry-scroll-outer {
    margin-inline: 0;
    padding-inline: 0;
}

.home-industry-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scroll-padding-inline: var(--step-padding-x);
    padding-bottom: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.home-industry-scroll::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.home-industry-nav {
    position: absolute;
    z-index: 4;
    top: 38%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    background: #fff;
    color: #222;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.home-industry-nav:hover:not(:disabled) {
    border-color: rgba(4, 161, 5, 0.45);
    color: var(--primary);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    transform: translateY(calc(-50% - 2px));
}

.home-industry-nav:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.home-industry-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.home-industry-nav--prev {
    left: max(0.25rem, env(safe-area-inset-left, 0px));
}

.home-industry-nav--next {
    right: max(0.25rem, env(safe-area-inset-right, 0px));
}

[dir="rtl"] .home-industry-nav--prev {
    left: auto;
    right: max(0.25rem, env(safe-area-inset-right, 0px));
}

[dir="rtl"] .home-industry-nav--next {
    right: auto;
    left: max(0.25rem, env(safe-area-inset-left, 0px));
}

@media (max-width: 480px) {
    .home-industry-nav {
        width: 38px;
        height: 38px;
    }

    .home-industry-nav svg {
        width: 18px;
        height: 18px;
    }
}

.home-industry-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    width: max-content;
    padding-inline-end: max(1rem, var(--step-padding-x));
}

.home-industry-card {
    flex: 0 0 auto;
    width: min(280px, 78vw);
    scroll-snap-align: start;
    text-align: left;
    text-decoration: none;
    color: inherit;
    display: block;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.home-industry-card:hover {
    transform: translateY(-2px);
}

.home-industry-card:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    .home-industry-scroll {
        scroll-snap-type: none;
    }

    .home-industry-card {
        transition: none;
    }

    .home-industry-card:hover {
        transform: none;
    }

    .home-industry-nav {
        transition: none;
    }

    .home-industry-nav:hover:not(:disabled) {
        transform: translateY(-50%);
    }
}

.home-industry-media {
    border-radius: 12px;
    overflow: hidden;
    background: #eee;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
}

.home-industry-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 320 / 210;
}

.home-industry-name {
    margin: 1rem 0 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--primary);
    line-height: 1.3;
}

.home-industry-text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #666;
}

.home-cta-block {
    text-align: center;
}

.home-cta-lead {
    max-width: 52ch;
    margin: 1rem auto 0;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #555;
}

/* Why Elite — pillar grid (trust, competitor-style value strip) */
.home-section--pillars {
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.home-pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.home-pillar {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 1.35rem 1.25rem;
    text-align: left;
    transition: border-color 0.2s ease, box-shadow 0.25s ease;
}

.home-pillar:hover {
    border-color: rgba(4, 161, 5, 0.22);
    box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}

.home-pillar-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 0.5rem;
}

.home-pillar-stat {
    margin: 0 0 0.5rem 0;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--primary);
    line-height: 1.1;
}

.home-pillar-text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #555;
}

/* Capabilities grid */
.home-cap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.home-cap-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 12px;
    padding: 1.35rem 1.25rem;
    text-align: left;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-cap-item:hover {
    transform: translateY(-2px);
    border-color: rgba(4, 161, 5, 0.2);
    box-shadow: 0 10px 28px rgba(0,0,0,0.07);
}

.home-cap-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.home-cap-icon svg {
    width: 28px;
    height: 28px;
}

.home-cap-title {
    margin: 0 0 0.45rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #111;
}

.home-cap-text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

/* Process steps */
.home-section--process {
    background: var(--primary-light);
    background-image: radial-gradient(circle, rgba(4, 161, 5, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

.home-process {
    list-style: none;
    margin: 1rem 0 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    counter-reset: none;
}

.home-process-step {
    position: relative;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 12px;
    padding: 1.35rem 1.15rem 1.25rem;
    text-align: left;
}

.home-process-num {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.home-process-title {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #111;
}

.home-process-text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #666;
}

/* From brief to shelf — premium */
.home-section--process-premium {
    background: linear-gradient(180deg, #f7f7f7 0%, #fafafa 55%, #fff 100%);
    background-image: radial-gradient(circle, rgba(4, 161, 5, 0.045) 1px, transparent 1px);
    background-size: 22px 22px;
}

.home-process-inner {
    max-width: min(1180px, 100%);
}

.home-process-head .home-process-sub {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.home-process--premium {
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-top: 1.35rem;
}

.home-process-step--premium {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: clamp(1.15rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.35rem) 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    background: #fff;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 10px 32px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.25s ease;
}

.home-process-step--premium:hover {
    transform: translateY(-3px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 18px 44px rgba(0, 0, 0, 0.09);
    border-color: rgba(4, 161, 5, 0.28);
}

.home-process-step--premium .home-process-num {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.45rem;
}

.home-process-step--premium .home-process-title {
    letter-spacing: 0.1em;
    font-size: 0.82rem;
}

.home-process-step--has-img .home-process-media {
    margin: 0 0 0.85rem 0;
}

.home-process-media {
    order: -1;
    margin: 0 0 0.85rem 0;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    background: linear-gradient(165deg, #f5f5f5 0%, #ececec 100%);
    aspect-ratio: 5 / 3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.home-process-media__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.home-process-upload {
    margin-top: 0.75rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.75rem;
}

.home-process-upload__btn {
    font-size: 0.68rem;
    padding: 6px 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-process-upload__hint {
    font-size: 0.62rem;
    color: #666;
    letter-spacing: 0.05em;
}

.page-home .home-process-step--premium:hover {
    transform: translateY(-3px);
}

/* Capabilities — interactive detail */
.home-cap-toggle {
    margin-top: 0.85rem;
    padding: 0.35rem 0;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    cursor: pointer;
    text-align: left;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.home-cap-toggle:hover {
    color: var(--primary-dark);
    border-bottom-color: rgba(4, 161, 5, 0.35);
}

.home-cap-toggle:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.home-cap-link {
    display: inline-block;
    margin-top: 0.85rem;
    padding: 0.35rem 0;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--primary);
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.home-cap-link:hover {
    color: var(--primary-dark);
    border-bottom-color: rgba(4, 161, 5, 0.35);
}

.home-cap-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.home-cap-extra {
    margin: 0.65rem 0 0 0;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0,0,0,0.07);
    font-size: 0.88rem;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 900px) {
    .home-pillar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .home-cap-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .home-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .home-split__grid {
        grid-template-columns: 1fr;
    }
    .home-split--recyclable .home-split__grid {
        grid-template-columns: 1fr;
    }
    .home-pouch-scene {
        min-height: 260px;
        order: -1;
    }
    .home-pack-grid--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .home-pack-grid--3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 100%;
    }
    .home-pack-grid--packaging-row2 {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .home-hero-lead,
    .home-hero__lead,
    .home-split__lead,
    .home-section-sub,
    .home-cta-lead {
        font-size: 0.9rem;
    }
    .home-pillar-grid {
        grid-template-columns: 1fr;
    }
    .home-cap-grid {
        grid-template-columns: 1fr;
    }
    .home-process {
        grid-template-columns: 1fr;
    }
    .home-pack-grid--4,
    .home-pack-grid--3 {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   ABOUT — editorial (contact / home language)
   ========================================================= */
.page-about .about-main {
    padding-top: var(--nav-h);
    background: #fff;
}

.about-hero {
    text-align: left;
    padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2.25rem, 4vw, 3.25rem);
    border-bottom: 1px solid #eee;
}

.about-hero__inner {
    max-width: var(--step-max-width);
    margin: 0 auto;
    padding-left: var(--step-padding-x);
    padding-right: var(--step-padding-x);
    box-sizing: border-box;
}

.about-hero__grid {
    display: grid;
    gap: clamp(1.75rem, 4vw, 2.75rem);
    align-items: center;
    grid-template-columns: 1fr;
}

@media (min-width: 900px) {
    .about-hero__grid:not(.about-hero__grid--single) {
        grid-template-columns: minmax(0, 1fr) minmax(0, 42%);
    }
}

.about-hero__copy {
    min-width: 0;
}

.about-hero__media {
    min-width: 0;
}

.about-hero__figure {
    position: relative;
    margin: 0;
}

.about-hero__img {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(52vh, 520px);
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #fafafa;
}

.about-hero__img--placeholder {
    min-height: min(40vw, 280px);
    aspect-ratio: 4 / 3;
    background: linear-gradient(145deg, #f5f5f5 0%, #eee 100%);
    border: 1px dashed #ddd;
}

.about__eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #999;
    margin: 0 0 1rem;
}

.about__title {
    font-size: clamp(1.85rem, 3.2vw, 2.5rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #111;
    margin: 0 0 1.25rem;
    line-height: 1.2;
    max-width: min(38ch, 100%);
}

.about-hero__copy .about__lead {
    max-width: min(48ch, 100%);
}

.about__lead {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #666;
    max-width: min(40ch, 100%);
}

.about-section {
    padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.about-section--muted {
    background: #fafafa;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 22px 22px;
}

.about-section--border {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.about__h2 {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 0.85rem;
}

.page-about .home-rule {
    margin-left: 0;
    margin-right: auto;
}

.about-section-head {
    text-align: left;
    max-width: min(40rem, 100%);
    margin: 0 0 2.5rem;
}

.about-section-lead {
    margin: 0.85rem 0 0;
    font-size: 1rem;
    line-height: 1.65;
    color: #666;
}

.about-prose p {
    margin: 0 0 1.1rem;
    font-size: 1rem;
    line-height: 1.75;
    color: #555;
}

.about-prose p:last-child {
    margin-bottom: 0;
}

.about-prose strong {
    color: #111;
    font-weight: 600;
}

.about-prose--wide {
    max-width: min(52rem, 100%);
}

/* Printing: footer .footer-con uses 1280px + 40px side padding; .home-inner uses 6% which is narrower. Match footer inset; use full inner width for CMS prose. */
@media (min-width: 769px) {
    .page-printing .home-inner,
    .page-printing .about-hero__inner {
        padding-left: 40px;
        padding-right: 40px;
    }
}

.page-printing .about-prose--wide {
    max-width: 100%;
}

.page-printing .about__title {
    max-width: min(48ch, 100%);
}

.page-printing .about__lead,
.page-printing .about-hero__copy .about__lead {
    max-width: min(72ch, 100%);
}

.page-printing .printing-cms h2 {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111;
    margin: 2rem 0 0.85rem;
}

.page-printing .printing-cms h2:first-child {
    margin-top: 0;
}

.page-printing .printing-cms h3 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #222;
    margin: 1.75rem 0 0.65rem;
}

.page-printing .printing-cms h4 {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #333;
    margin: 1.35rem 0 0.5rem;
}

.page-printing .printing-cms ol,
.page-printing .printing-cms ul {
    margin: 0 0 1.1rem;
    padding-left: 1.35rem;
    color: #555;
    font-size: 1rem;
    line-height: 1.75;
}

.page-printing .printing-cms li {
    margin-bottom: 0.45rem;
}

.page-printing .printing-cms li::marker {
    color: var(--primary);
}

.page-printing .ef-editable[data-ef-mode="section-html"] {
    display: block;
    outline-offset: 4px;
}

.page-printing .printing-cms img,
.page-materials .materials-cms img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.page-materials .materials-cms h2 {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111;
    margin: 2rem 0 0.85rem;
}

.page-materials .materials-cms h2:first-child {
    margin-top: 0;
}

.page-materials .materials-cms h3 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #222;
    margin: 1.75rem 0 0.65rem;
}

.page-materials .materials-cms h4 {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #333;
    margin: 1.35rem 0 0.5rem;
}

.page-materials .materials-cms h4:first-child {
    margin-top: 0;
}

.page-materials .materials-cms ol,
.page-materials .materials-cms ul {
    margin: 0 0 1.1rem;
    padding-left: 1.35rem;
    color: #555;
    font-size: 1rem;
    line-height: 1.75;
}

.page-materials .materials-cms li {
    margin-bottom: 0.45rem;
}

.page-materials .materials-cms li::marker {
    color: var(--primary);
}

.page-materials .ef-editable[data-ef-mode="section-html"] {
    display: block;
    outline-offset: 4px;
}

/* Materials — full-width column (padding from --step-padding-x only) */
.page-materials .home-inner,
.page-materials .about-hero__inner {
    max-width: none;
    width: 100%;
}

.page-materials .about-prose--wide {
    max-width: none;
}

.page-materials .about__title,
.page-materials .about__lead,
.page-materials .about-hero__copy .about__lead {
    max-width: none;
}

.page-materials .materials-cms > ul {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.65rem, 1.8vw, 1rem);
}

.page-materials .materials-cms > ul > li {
    margin: 0;
    padding: clamp(1rem, 2vw, 1.35rem) 1rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.45;
    color: #555;
}

.page-materials .about-section--muted .materials-cms > ul > li {
    text-align: center;
}

.page-materials .about-section--border .materials-cms > ul > li {
    text-align: left;
}

@media (max-width: 900px) {
    .page-materials .materials-cms > ul {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 901px) and (max-width: 1100px) {
    .page-materials .materials-cms > ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Materials inquiry form */
.about-section--materials-form {
    padding-bottom: clamp(3.5rem, 7vw, 5rem);
}

.materials-inquiry {
    max-width: none;
}

.materials-inquiry__heading {
    margin: 0 0 1.35rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--primary);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--primary);
}

.materials-inquiry__alert {
    margin: 0 0 1.25rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: #fafafa;
    font-size: 0.9rem;
    color: #333;
}

.materials-inquiry__alert p {
    margin: 0;
}

.materials-inquiry__form {
    margin: 0;
}

.materials-inquiry__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
    margin-bottom: 1rem;
}

.materials-inquiry__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 0;
}

.materials-inquiry__field--full {
    grid-column: 1 / -1;
}

.materials-inquiry__field label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #333;
}

.materials-inquiry__field input,
.materials-inquiry__field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 0.9rem;
    border: 1px solid transparent;
    border-radius: 6px;
    background: #eee;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #111;
}

.materials-inquiry__field textarea {
    min-height: 8rem;
    resize: vertical;
}

.materials-inquiry__field input:focus,
.materials-inquiry__field textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 1px;
}

.materials-inquiry__field--error input,
.materials-inquiry__field--error textarea {
    outline: 1px solid #c00;
}

.materials-inquiry__req {
    color: var(--primary);
}

.materials-inquiry__msg {
    font-size: 0.8rem;
    color: #c00;
}

.materials-inquiry__msg--terms {
    display: block;
    margin: -0.35rem 0 0.5rem;
}

.materials-inquiry__field--math {
    max-width: 12rem;
    margin-bottom: 1rem;
}

.materials-inquiry__math-label {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    text-transform: none;
    letter-spacing: 0.02em;
}

.materials-inquiry__math-sum {
    font-variant-numeric: tabular-nums;
}

.materials-inquiry__terms {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0 0 1.25rem;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #111;
}

.materials-inquiry__terms input {
    margin-top: 0.2rem;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.materials-inquiry__terms label {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.02em;
    color: #111;
}

.materials-inquiry__terms--error label {
    color: #333;
}

.materials-inquiry__actions {
    margin-top: 0.25rem;
}

.materials-inquiry__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.materials-inquiry__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(4, 161, 5, 0.35);
}

.materials-inquiry__send-icon {
    flex-shrink: 0;
}

.materials-inquiry__success-title {
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: #111;
    margin: 0 0 0.75rem;
}

.materials-inquiry__success-text {
    margin: 0 0 1.5rem;
    font-size: 1rem;
    line-height: 1.65;
    color: #555;
}

@media (max-width: 600px) {
    .materials-inquiry__grid {
        grid-template-columns: 1fr;
    }
}

.about-formats-intro {
    margin: 1.25rem 0 0.5rem;
}

.about-formats {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem 1.5rem;
}

.about-formats li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

.about-formats li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
}

@media (max-width: 520px) {
    .about-formats {
        grid-template-columns: 1fr;
    }
}

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

.about-values--commitment {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

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

@media (min-width: 1000px) {
    .about-values--industries {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.about-outro {
    padding: clamp(2rem, 4vw, 3rem) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
}

.about-outro__text {
    margin: 0;
    max-width: none;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 500;
    font-style: italic;
    line-height: 1.55;
    color: #333;
    letter-spacing: 0.02em;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: start;
}

.about-story__main .about__h2 {
    margin-bottom: 0.85rem;
}

.about-highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.about-highlight {
    display: grid;
    gap: 0.35rem;
    padding: 1.15rem 1.25rem;
    border-bottom: 1px solid #eee;
}

.about-highlight:last-child {
    border-bottom: none;
}

.about-highlight__label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #999;
}

.about-highlight__value {
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--primary);
    line-height: 1.15;
}

.about-highlight__note {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #666;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.about-value-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1.35rem 1.25rem;
    text-align: left;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-value-card:hover {
    border-color: rgba(4, 161, 5, 0.22);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.about-value-card__title {
    margin: 0 0 0.65rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #111;
}

.about-value-card__text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #666;
}

.about-steps {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: min(48rem, 100%);
}

.about-steps__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem 1.5rem;
    padding: 1.35rem 0;
    border-bottom: 1px solid #eee;
    align-items: start;
}

.about-steps__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.about-steps__num {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--primary);
    padding-top: 0.15rem;
}

.about-steps__title {
    margin: 0 0 0.45rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #111;
}

.about-steps__text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: #666;
}

.about-section--cta {
    padding: clamp(3.25rem, 6vw, 4.5rem) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #fafafa;
}

.about-cta {
    text-align: left;
    max-width: min(40rem, 100%);
}

.about-cta__title {
    margin-bottom: 0.85rem;
}

.about-cta__lead {
    margin: 0.85rem 0 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.about-cta__actions {
    margin-top: 1.35rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 900px) {
    .about-story {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .about__lead,
    .about-section-lead,
    .about-cta__lead {
        font-size: 0.9rem;
    }

    .about-steps__item {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .about-steps__num {
        padding-top: 0;
    }
}

/* =========================================================
   CONTACT — split layout (ref: minimal 50/50 + greyscale map)
   ========================================================= */
.page-contact .contact-main {
    padding-top: var(--nav-h);
}

.contact-split {
    display: block;
    position: relative;
    background: #fff;
}

.contact-split__left {
    box-sizing: border-box;
    width: 50%;
    max-width: 50%;
    border-right: 1px solid #eee;
    padding-top: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
    /* Align with site .home-inner left edge (centered max-width column), not viewport edge */
    padding-left: max(var(--step-padding-x), calc((100vw - var(--step-max-width)) / 2));
    padding-right: var(--step-padding-x);
}

.contact-split__inner {
    max-width: min(32rem, 100%);
}

.contact-split__eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #999;
    margin: 0 0 1rem;
}

.contact-split__title {
    font-size: clamp(1.85rem, 3.2vw, 2.5rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #111;
    margin: 0 0 1.25rem;
    line-height: 1.2;
}

.contact-split__lead {
    margin: 0 0 2.5rem;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #666;
    max-width: 36ch;
}

.contact-split__direct {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 2.75rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #eee;
}

.contact-direct__label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.45rem;
}

.contact-direct__value {
    font-size: 1rem;
    font-weight: 500;
    color: #111;
    text-decoration: none;
}

a.contact-direct__value:hover {
    color: var(--primary-dark);
}

.contact-direct__value--block {
    margin: 0;
    font-weight: 400;
    line-height: 1.55;
}

.contact-direct__value--block a {
    color: #111;
    text-decoration: none;
}

.contact-direct__value--block a:hover {
    color: var(--primary-dark);
}

.contact-form-error {
    padding: 0.85rem 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.88rem;
    color: #333;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
}

.contact-form-error p {
    margin: 0;
    font-size: 0.88rem;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.contact-form--split {
    gap: 1.25rem;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    text-align: left;
}

.contact-form--split .contact-field label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #666;
}

.contact-req {
    color: var(--primary);
}

.contact-form--split .contact-field input,
.contact-form--split .contact-field textarea {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #111;
    padding: 0.95rem 1.1rem;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
    transition: border-color 0.2s ease;
}

.contact-form--split .contact-field textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.55;
}

.contact-form--split .contact-field input::placeholder,
.contact-form--split .contact-field textarea::placeholder {
    color: #999;
}

.contact-form--split .contact-field input:focus,
.contact-form--split .contact-field textarea:focus {
    outline: none;
    border-color: #bbb;
}

.contact-form--split .contact-field--error input,
.contact-form--split .contact-field--error textarea {
    border-color: #ccc;
}

.contact-field-msg {
    font-size: 0.78rem;
    color: #666;
}

.contact-form-note {
    margin: 0;
    font-size: 0.75rem;
    color: #999;
}

.contact-field--math {
    margin-top: 0.35rem;
}

.contact-field--math .contact-math__label {
    font-size: 0.9rem;
}

.contact-math__label {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.25rem 0.4rem;
    margin-bottom: 0.4rem;
    cursor: pointer;
    text-transform: none;
}

.contact-math__prefix {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #666;
}

.contact-math__sum {
    display: inline-block;
    padding: 0.12rem 0.4rem 0.14rem;
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #111;
    text-transform: none;
    font-variant-numeric: tabular-nums;
    line-height: 1.25;
    background: rgba(4, 161, 5, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(4, 161, 5, 0.28);
}

.contact-math__suffix {
    font-size: clamp(0.95rem, 1.35vw, 1.05rem);
    font-weight: 600;
    color: #111;
}

.contact-math__req {
    font-size: 0.75rem;
    vertical-align: middle;
}

.contact-form--split .contact-field--math input[type="number"] {
    max-width: 5.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: #111;
    padding: 0.6rem 0.75rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.2s ease;
    -moz-appearance: textfield;
}

.contact-form--split .contact-field--math input[type="number"]:focus {
    outline: none;
    border-color: #bbb;
}

.contact-form--split .contact-field--math input[type="number"]::-webkit-outer-spin-button,
.contact-form--split .contact-field--math input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.contact-field--math .contact-field-msg {
    display: block;
    margin-top: 0.45rem;
}

.contact-submit {
    align-self: flex-start;
    margin-top: 0.35rem;
    padding: 11px 26px;
    line-height: 1.25;
    letter-spacing: 0.14em;
    border-radius: 10px;
    box-shadow: none;
}

.contact-success {
    text-align: center;
    padding: 2rem 0.5rem 1rem;
}

.contact-success--split {
    text-align: left;
    padding: 0;
    margin-top: 0.5rem;
}

.contact-success--split .contact-success__mark {
    margin: 0 0 1.25rem;
}

.contact-success__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 1.25rem;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    background: #fafafa;
    position: relative;
}

.contact-success__mark::after {
    content: "";
    width: 10px;
    height: 18px;
    border: solid var(--primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -2px);
}

.contact-success-title {
    font-size: clamp(1.2rem, 2.2vw, 1.4rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: none;
    color: #111;
    margin: 0 0 0.75rem;
}

.contact-success-text {
    font-size: 0.95rem;
    color: #666;
    margin: 0 0 1.5rem;
    max-width: 36ch;
    margin-left: 0;
    margin-right: auto;
}

.contact-success-text a {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-success-text a:hover {
    color: var(--primary-dark);
}

.contact-success-btn {
    display: inline-flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 10px 22px;
    border-radius: 10px;
}

.contact-split__right {
    position: fixed;
    top: var(--nav-h);
    right: 0;
    width: 50vw;
    height: calc(100vh - var(--nav-h));
    min-height: calc(100vh - var(--nav-h));
    background: #e8e8e8;
    z-index: 1;
}

.contact-map-wrap--split {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Fine-tune overlay vs Google’s pin (embed UI shifts the map slightly) */
    --map-pin-x: 50%;
    --map-pin-y: calc(50% + 14px);
}

.contact-map-wrap--split .contact-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    min-height: 0;
    filter: grayscale(1) contrast(1.02);
}

.contact-map-pin {
    position: absolute;
    left: var(--map-pin-x);
    bottom: var(--map-pin-y);
    transform: translate(-50%, 0);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    max-width: min(240px, calc(100% - 2rem));
    transition: transform 0.2s ease, filter 0.2s ease;
    /* Tail tip sits on the map point; bubble sits above */
}

.contact-map-pin:hover {
    transform: translate(-50%, -4px);
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.2));
}

.contact-map-pin:focus-visible {
    outline: none;
}

.contact-map-pin:focus-visible .contact-map-pin__bubble {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.contact-map-pin__bubble {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.85rem 0.6rem;
    background: var(--primary);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-map-pin__logo {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #fff;
    padding: 3px;
    object-fit: contain;
    box-sizing: border-box;
}

.contact-map-pin__text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    text-align: left;
    min-width: 0;
}

.contact-map-pin__name {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.2;
}

.contact-map-pin__sub {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.3;
}

.contact-map-pin__tail {
    width: 0;
    height: 0;
    margin-top: -1px;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 12px solid var(--primary);
}

@media (max-width: 900px) {
    .contact-split {
        min-height: 0;
    }
    .contact-split__left {
        width: 100%;
        max-width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    .contact-split__right {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 45vh;
        z-index: auto;
    }
    .contact-map-wrap--split {
        position: relative;
        min-height: 45vh;
        height: 45vh;
    }
}

@media (max-width: 768px) {
    .contact-split__lead {
        max-width: none;
    }
    .contact-split__title {
        font-size: 1.65rem;
    }
}

/* Industry / sectors — same content column as footer .footer-con (1280px max + 40px horizontal padding) */
@media (min-width: 769px) {
    .page-industry .home-inner {
        padding-left: 40px;
        padding-right: 40px;
    }
}

.page-industry .industry-rail {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

html[dir="rtl"] .page-industry .industry-rail {
    margin-left: 0;
    margin-right: 0;
}

.page-industry .industry-rail .blog-prose {
    max-width: none;
}

.page-industry .industry-rail .about__title {
    max-width: none;
}

.page-industry .industry-rail .about__lead,
.page-industry .industry-rail .blog-article-lead {
    max-width: none;
}

/* Narrow content column on desktop for article-style pages (industry detail + newsletter article).
   Cover/feature image is also narrowed so it sits flush with the text column. */
@media (min-width: 769px) {
    .page-industry .industry-rail,
    .page-industry .blog-article-feature-wrap,
    .page-newsletter--article .home-inner {
        max-width: 880px;
        margin-left: auto;
        margin-right: auto;
    }
    .page-industry .blog-article-feature,
    .page-newsletter--article .blog-article-feature {
        width: 100%;
        height: auto;
    }
}

.industry-related {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e3e0;
}

.industry-related__title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary, #04a105);
    margin: 0 0 1rem;
}

.industry-related__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

@media (min-width: 600px) {
    .industry-related__list {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem 1.25rem;
    }
}

.industry-related__item {
    margin: 0;
}

.industry-related__link {
    display: block;
    padding: 0.85rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #111;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.industry-related__link:hover {
    border-color: var(--primary, #04a105);
    color: var(--primary, #04a105);
    box-shadow: 0 2px 8px rgba(4, 161, 5, 0.08);
}

/* —— Newsletter / blog (CMS) —— */
.page-newsletter .blog-empty {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: #555;
    max-width: 36rem;
    line-height: 1.55;
}

.page-newsletter .blog-empty code {
    font-size: 0.9em;
    color: #333;
}

.page-newsletter .blog-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .page-newsletter .blog-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem 2rem;
    }
}

.page-newsletter .blog-card {
    margin: 0;
}

.page-newsletter .blog-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: #111;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.page-newsletter .blog-card__link:hover {
    border-color: var(--primary);
    box-shadow: 0 6px 24px rgba(4, 161, 5, 0.12);
    transform: translateY(-2px);
}

.page-newsletter .blog-card__media {
    aspect-ratio: 16 / 9;
    background: #f0f0f0;
    overflow: hidden;
}

.page-newsletter .blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-newsletter .blog-card__body {
    padding: 1.25rem 1.35rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    font-family: 'Outfit', sans-serif;
}

.page-newsletter .blog-card__date {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 0.5rem;
}

.page-newsletter .blog-card__title {
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.32;
    margin: 0 0 0.5rem;
    color: #111;
}

.page-newsletter .blog-card__excerpt {
    font-size: 0.8125rem;
    font-weight: 400;
    color: #666;
    line-height: 1.45;
    margin: 0 0 0.85rem;
    flex: 1;
}

.page-newsletter .blog-card__excerpt p {
    margin: 0 0 0.35rem;
}

.page-newsletter .blog-card__excerpt p:last-child {
    margin-bottom: 0;
}

.page-newsletter .blog-card__cta {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
}

.page-newsletter .blog-back-link {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
}

.page-newsletter .blog-back-link:hover {
    text-decoration: underline;
}

.page-newsletter .blog-article-hero {
    padding: 2.5rem 0 1.5rem;
}

.page-newsletter--article .blog-article-title {
    margin-top: 0.75rem;
}

.page-newsletter .blog-article-meta {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #666;
}

.page-newsletter .blog-article-lead {
    margin-top: 1rem;
    font-size: 1.05rem;
    line-height: 1.55;
    color: #333;
}

.page-newsletter .blog-article-lead p {
    margin: 0 0 0.65rem;
}

.page-newsletter .blog-article-lead p:last-child {
    margin-bottom: 0;
}

.page-newsletter .blog-article-feature-wrap {
    margin-bottom: 0;
}

.page-newsletter .blog-article-feature {
    width: 100%;
    max-height: min(70vh, 520px);
    object-fit: cover;
    display: block;
    border: 1px solid #e5e5e5;
}

.page-newsletter .blog-prose {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: #222;
    max-width: 42rem;
}

.page-newsletter .blog-prose h2,
.page-newsletter .blog-prose h3 {
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #111;
    margin: 2rem 0 0.75rem;
}

.page-newsletter .blog-prose h2 {
    font-size: 1.1rem;
}

.page-newsletter .blog-prose h3 {
    font-size: 1rem;
}

.page-newsletter .blog-prose p {
    margin: 0 0 1rem;
}

.page-newsletter .blog-prose ul,
.page-newsletter .blog-prose ol {
    margin: 0 0 1rem 1.25rem;
    padding: 0;
}

.page-newsletter .blog-prose li {
    margin-bottom: 0.35rem;
}

.page-newsletter .blog-prose a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.page-newsletter .blog-prose blockquote {
    margin: 1.25rem 0;
    padding: 0.75rem 1rem;
    border-left: 3px solid var(--primary);
    background: #fafafa;
    color: #333;
}

@media (max-width: 768px) {
    .page-newsletter .blog-article-hero {
        padding-top: 1.75rem;
    }
}

/* Header CTA modals (quote / brochure) */
button.btn-nav {
    -webkit-appearance: none;
    appearance: none;
}

body.header-cta-modal-open {
    overflow: hidden;
}

.header-cta-modal {
    position: fixed;
    inset: 0;
    z-index: 100002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-cta-modal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header-cta-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition:
        background 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        backdrop-filter 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        -webkit-backdrop-filter 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header-cta-modal[aria-hidden="false"] .header-cta-modal__backdrop {
    background: rgba(17, 17, 17, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-cta-modal__panel {
    position: relative;
    width: 100%;
    max-width: 440px;
    max-height: min(92vh, 720px);
    overflow: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: none;
    padding: 1.5rem 1.5rem 1.25rem;
    transform: translateY(8px) scale(0.98);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-cta-modal[aria-hidden="false"] .header-cta-modal__panel {
    transform: translateY(0) scale(1);
}

/* Quote & brochure modals: image + form (two columns) */
.header-cta-modal__panel--split {
    max-width: min(92vw, 900px);
    padding: 0;
    overflow: hidden;
}

.header-cta-modal__split {
    display: grid;
    grid-template-columns: minmax(220px, 42%) minmax(248px, 1fr);
    align-items: stretch;
    min-height: min(72vh, 560px);
}

.header-cta-modal__split-visual {
    position: relative;
    min-height: 280px;
    background: linear-gradient(160deg, #1a1a1a 0%, #333 55%, #222 100%);
}

.header-cta-modal__split-img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.header-cta-modal__split-form-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 50px 40px;
    overflow: auto;
    max-height: min(90vh, 620px);
}

.header-cta-modal__split-form-col .header-cta-modal__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.header-cta-modal__title--split {
    margin: 0 2.5rem 0.75rem 0;
}

.header-cta-modal__icon-close--split {
    z-index: 4;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

/* [hidden] must win over .header-cta-modal__success--split { display:flex } */
.header-cta-modal__success[hidden] {
    display: none !important;
}

.header-cta-modal__success--split:not([hidden]) {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0.5rem;
    text-align: center;
}

.header-cta-modal__icon-close {
    position: absolute;
    top: 0.85rem;
    inset-inline-end: 0.85rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #666;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.header-cta-modal__icon-close:hover {
    background: #f5f5f5;
    color: #111;
}

.header-cta-modal__title {
    margin: 0 2.5rem 0.75rem 0;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid var(--primary);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.header-cta-modal__body {
    position: relative;
}

.header-cta-modal__status--error {
    margin: 0 0 0.75rem;
    padding: 0.6rem 0.75rem;
    font-size: 0.875rem;
    color: #8a1c1c;
    background: #fdecec;
    border: 1px solid #f0b4b4;
    border-radius: 8px;
}

.header-cta-modal__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.header-cta-modal__field {
    margin-bottom: 0.65rem;
}

.header-cta-modal__input,
.header-cta-modal__textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 0.65rem 0.75rem;
    font-family: inherit;
    font-size: 0.9rem;
    color: #111;
    background: #efefef;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.header-cta-modal__input:focus,
.header-cta-modal__textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary-light);
}

.header-cta-modal__textarea {
    resize: vertical;
    min-height: 96px;
}

.header-cta-modal__input--math {
    flex: 0 0 118px;
    width: 118px;
    max-width: 118px;
    min-width: 96px;
    margin: 0;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.header-cta-modal__field--math {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
}

.header-cta-modal__field--math .header-cta-modal__math-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    padding: 0.85rem 1rem;
    background: var(--primary-light);
    border: 1px solid #d8e8d8;
    border-radius: 10px;
}

/* Split (header CTA) modallar: math satırı wrap olmasın — yoksa etiket üstte, input altta tam geniş kalıyor */
.header-cta-modal__panel--split .header-cta-modal__field--math .header-cta-modal__math-row {
    flex-wrap: nowrap;
    gap: 0.45rem 0.55rem;
    padding: 0.5rem 0.65rem;
}

.header-cta-modal__panel--split .header-cta-modal__math-label {
    flex: 1 1 auto;
    min-width: 0;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.15rem 0.3rem;
    font-size: 0.82rem;
    line-height: 1.25;
}

.header-cta-modal__panel--split .header-cta-modal__input--math {
    flex: 0 0 3.35rem;
    width: 3.35rem;
    min-width: 3.1rem;
    max-width: 3.85rem;
    height: 2.125rem;
    padding: 0.12rem 0.28rem;
    font-size: 0.95rem;
    line-height: 1.15;
    -moz-appearance: textfield;
    appearance: textfield;
}

.header-cta-modal__panel--split .header-cta-modal__input--math::-webkit-outer-spin-button,
.header-cta-modal__panel--split .header-cta-modal__input--math::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.header-cta-modal__math-label {
    display: block;
    flex: 1 1 160px;
    margin: 0;
    font-size: 0.88rem;
    font-weight: 500;
    color: #333;
    line-height: 1.35;
}

.header-cta-modal__math-sum {
    font-weight: 700;
    color: #111;
}

.header-cta-modal__consent {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0.75rem 0;
    font-size: 0.8rem;
    line-height: 1.45;
    color: #555;
    cursor: pointer;
}

.header-cta-modal__consent input {
    margin-top: 0.2rem;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.header-cta-modal__form-footer {
    margin-top: 0.75rem;
    padding-top: 1.1rem;
    border-top: 1px solid #e8e8e8;
}

.header-cta-modal__recaptcha {
    margin: 0;
    transform-origin: top left;
}

.header-cta-modal__form-footer .header-cta-modal__recaptcha {
    display: flex;
    justify-content: center;
    padding: 0.35rem 0 0.15rem;
}

.header-cta-modal__note {
    margin: 0.85rem 0 0;
    font-size: 0.72rem;
    line-height: 1.4;
    color: #666;
}

.header-cta-modal__req {
    color: var(--primary-dark);
}

.header-cta-modal__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
    margin-top: 1rem;
}

.header-cta-modal__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.header-cta-modal__btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.header-cta-modal__btn--primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary-dark);
}

.header-cta-modal__btn--primary:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.header-cta-modal__btn--ghost {
    background: #fff;
    color: #555;
    border-color: #ccc;
}

.header-cta-modal__btn--ghost:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.header-cta-modal__btn-icon {
    flex-shrink: 0;
}

.header-cta-modal__success:not([hidden]) {
    text-align: center;
    padding: 0.5rem 0 0.25rem;
}

.header-cta-modal__success-text {
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #333;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.header-cta-modal__success .header-cta-modal__btn--primary {
    min-width: 8rem;
}

/* Split modals (quote / brochure): mobile — safe-area, tek scroll, kompakt görsel & captcha (masaüstü: 701px+ değişmez) */
@media (max-width: 700px) {
    .header-cta-modal {
        align-items: center;
        justify-content: center;
        padding: max(0.75rem, env(safe-area-inset-top, 0px)) max(0.75rem, env(safe-area-inset-right, 0px))
            max(0.75rem, env(safe-area-inset-bottom, 0px)) max(0.75rem, env(safe-area-inset-left, 0px));
    }

    .header-cta-modal__panel--split {
        max-width: 100%;
        width: 100%;
        max-height: min(
            88dvh,
            calc(
                100vh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 1.75rem
            )
        );
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        touch-action: pan-y;
        border-radius: 14px;
        margin: 0;
    }

    .header-cta-modal__split {
        display: flex;
        flex-direction: column;
        grid-template-columns: unset;
        min-height: 0;
    }

    .header-cta-modal__split-visual {
        flex: 0 0 auto;
        align-self: stretch;
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
        min-height: 0;
        height: clamp(148px, 44vw, 210px);
        max-height: 210px;
        border-radius: 14px 14px 0 0;
        overflow: hidden;
        background: linear-gradient(160deg, #1a1a1a 0%, #333 55%, #222 100%);
    }

    .header-cta-modal__split-img {
        width: 100%;
        height: 100%;
        min-height: 0;
        max-height: none;
        object-fit: cover;
        object-position: center center;
    }

    .header-cta-modal__split-form-col {
        flex: 1 1 auto;
        min-height: 0;
        max-height: none;
        overflow: visible;
        padding: 0.85rem 0.9rem 1rem;
    }

    .header-cta-modal__split-form-col .header-cta-modal__field {
        margin-bottom: 0.5rem;
    }

    .header-cta-modal__split-form-col .header-cta-modal__input:not(.header-cta-modal__input--math),
    .header-cta-modal__split-form-col .header-cta-modal__textarea {
        padding: 0.55rem 0.65rem;
        font-size: 16px;
    }

    .header-cta-modal__split-form-col .header-cta-modal__textarea {
        resize: none;
        min-height: 72px;
        max-height: 120px;
        line-height: 1.4;
    }

    .header-cta-modal__split-form-col .header-cta-modal__consent {
        margin: 0.5rem 0 0.45rem;
        font-size: 0.76rem;
        line-height: 1.4;
    }

    .header-cta-modal__split-form-col .header-cta-modal__form-footer {
        margin-top: 0.45rem;
        padding-top: 0.65rem;
    }

    .header-cta-modal__split-form-col .header-cta-modal__note {
        margin: 0.5rem 0 0;
    }

    .header-cta-modal__split-form-col .header-cta-modal__actions {
        margin-top: 0.65rem;
        gap: 0.5rem;
    }

    .header-cta-modal__title--split {
        font-size: 1.05rem;
        letter-spacing: 0.08em;
        margin: 0 2.1rem 0.55rem 0;
        padding-bottom: 0.45rem;
    }

    .header-cta-modal__icon-close--split {
        top: max(0.4rem, env(safe-area-inset-top, 0px));
        inset-inline-end: 0.45rem;
        width: 40px;
        height: 40px;
    }

    .header-cta-modal__panel--split .header-cta-modal__field--math .header-cta-modal__math-row {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.35rem 0.45rem;
        padding: 0.3rem 0.45rem;
    }

    .header-cta-modal__split-form-col .header-cta-modal__math-label {
        flex: 1 1 auto;
        min-width: 0;
        font-size: 0.72rem;
        line-height: 1.2;
    }

    .header-cta-modal__split-form-col .header-cta-modal__input--math {
        flex: 0 0 3.1rem;
        width: 3.1rem;
        min-width: 2.85rem;
        max-width: 3.5rem;
        height: 1.875rem;
        padding: 0.08rem 0.22rem;
        font-size: 16px;
        line-height: 1.1;
    }

    .header-cta-modal__success--split:not([hidden]) {
        padding: 1rem 0.35rem;
    }
}

@media (max-width: 480px) {
    .header-cta-modal__actions {
        flex-direction: column;
        align-items: stretch;
        justify-content: stretch;
    }

    .header-cta-modal__btn {
        width: 100%;
    }

    .header-cta-modal__panel--split .header-cta-modal__field--math .header-cta-modal__math-row {
        padding: 0.28rem 0.4rem;
    }
}