/* ==========================================================================
   BIOCUP — KURUMSAL FABRİKA TASARIM SİSTEMİ
   ========================================================================== */

:root {
    --c-brand-green: #1e6f2e;
    --c-brand-gold: #cb9d38;

    --c-navy: #041024;
    --c-navy-light: #0a1f3d; 
    --c-steel: #152238;
    
    --c-white: #ffffff;
    --c-gray-50: #f7f8f7;
    --c-gray-100: #e5e8e6;
    --c-gray-400: #87909a;
    --c-gray-600: #4f5964;
    --c-text: #111821;

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    --wrap: 1440px;
    --pad: clamp(1.5rem, 5vw, 4rem);
    --radius: 0px; 

    --t-fast: 200ms ease-out;
    --t-base: 400ms ease-out;
    --t-slow: 800ms cubic-bezier(0.16, 1, 0.3, 1);

    /* Küçük yeşil yaprak — hotspot üst uç (10 3) */
    --cursor-leaf: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%231e6f2e' d='M10 1.2C6 6.8 2.8 9.2 2.8 12.2c0 3.4 3 6.3 7.2 6.3S17.2 15.6 17.2 12.2c0-3-3.2-5.4-7.2-11z'/%3E%3Cpath fill='%232a9540' opacity='.4' d='M10 4.2c-1.8 2.6-2.6 4-2.6 5.8 0 1.5 1.1 2.7 2.6 2.7s2.6-1.2 2.6-2.7c0-1.8-.8-3.2-2.6-5.8z'/%3E%3Cpath stroke='%23165524' stroke-width='.5' fill='none' d='M10 3.2v10.5'/%3E%3C/svg%3E") 10 3, auto;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    background-color: var(--c-white);
    cursor: var(--cursor-leaf);
    overflow-x: clip;
}

body {
    font-family: var(--font-main);
    color: var(--c-text);
    background: var(--c-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    cursor: var(--cursor-leaf);
}

main {
    overflow-x: clip;
    max-width: 100%;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); cursor: var(--cursor-leaf); }
button { background: none; border: none; cursor: var(--cursor-leaf); font: inherit; color: inherit; }
summary,
.hero__pager-item,
.lang-switcher__trigger,
.lang-switcher__option,
input[type="submit"],
input[type="button"],
label[for],
select {
    cursor: var(--cursor-leaf);
}

@media (hover: none), (pointer: coarse) {
    html,
    body,
    a,
    button,
    summary,
    .hero__pager-item,
    .lang-switcher__trigger,
    .lang-switcher__option,
    input[type="submit"],
    input[type="button"],
    label[for],
    select {
        cursor: auto;
    }
}
ul, ol { list-style: none; }

::selection { background-color: var(--c-brand-green); color: var(--c-white); }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: var(--c-text);
}

.t-display {
    font-size: clamp(2.35rem, 4.6vw, 4.6rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.04;
    max-width: 900px;
}

.t-h2 {
    font-size: clamp(2rem, 3.2vw, 2.9rem);
    letter-spacing: -0.03em;
}

.t-h3 {
    font-size: clamp(1.35rem, 1.8vw, 1.85rem);
    letter-spacing: -0.02em;
}

.t-lead {
    font-size: clamp(1rem, 1.25vw, 1.125rem);
    color: var(--c-gray-600);
    line-height: 1.7;
    font-weight: 400;
}

.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--c-white); }
.bg-navy .t-lead { color: var(--c-gray-400); }

/* ==========================================================================
   LAYOUT & FLOW
   ========================================================================== */
.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
    padding-left: var(--pad);
    padding-right: var(--pad);
}

.section { padding-top: clamp(6rem, 10vw, 10rem); padding-bottom: clamp(6rem, 10vw, 10rem); }
.section-top { padding-top: clamp(6rem, 10vw, 10rem); }
.section-bot { padding-bottom: clamp(6rem, 10vw, 10rem); }

.bg-navy { background-color: var(--c-navy); color: var(--c-white); }
.bg-gray { background-color: var(--c-gray-50); }

/* ==========================================================================
   BUTTONS & LINKS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius); /* 0px */
    border: 1px solid transparent;
    transition: all var(--t-fast);
    cursor: var(--cursor-leaf);
}

.btn-primary {
    background-color: var(--c-brand-green);
    color: var(--c-white);
    border-color: var(--c-brand-green);
}

.btn-primary:hover {
    background-color: var(--c-navy);
    border-color: var(--c-navy);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--c-gray-100);
    color: var(--c-text);
}

.btn-outline:hover {
    border-color: var(--c-navy);
    background-color: var(--c-navy);
    color: var(--c-white);
}

.btn-outline-light {
    border-color: rgba(255,255,255,0.2);
    color: var(--c-white);
}

.btn-outline-light:hover {
    background-color: var(--c-white);
    color: var(--c-navy);
    transform: translateY(-2px);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-brand-green);
    transition: all var(--t-fast);
}

.bg-navy .link-arrow { color: var(--c-brand-gold); }

.link-arrow svg {
    margin-left: 0.75rem;
    transition: transform var(--t-fast);
    width: 20px;
    height: 20px;
}

.link-arrow:hover { color: var(--c-navy); }
.bg-navy .link-arrow:hover { color: var(--c-white); }
.link-arrow:hover svg { transform: translateX(6px); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0.9rem 0;
    background-color: #ffffff;
    backdrop-filter: blur(18px);
    transition: all var(--t-base);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.header.is-scrolled {
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.1);
}

.header .wrap {
    padding-left: clamp(0.5rem, 1.25vw, 0.85rem);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.header__logo {
    display: block;
    flex-shrink: 0;
    margin-left: 0;
    line-height: 0;
}

.header__logo img {
    width: clamp(120px, 8.5vw, 148px);
    height: auto;
    max-height: 2.35rem;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.header__nav {
    display: none;
}

@media (min-width: 1180px) {
    .header__nav {
        display: flex;
        gap: clamp(1.2rem, 2vw, 2.2rem);
        flex: 1;
        justify-content: center;
    }
}

.header__nav-link {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text);
    transition: color var(--t-fast);
    white-space: nowrap;
    position: relative;
}

.header__nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: var(--c-brand-green);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--t-base);
}

.header__nav-link:hover {
    color: #22a242;
}

.header__nav-link:hover::after {
    transform: scaleX(1);
}

/* --- Dropdown menü (Ana Sayfa) --- */
.header__nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.header__nav-item--has-dropdown > .header__nav-link {
    padding-right: 0;
}

.header__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -8px);
    margin-top: 14px;
    min-width: 240px;
    padding: 0.5rem 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(15, 30, 18, 0.18), 0 4px 14px rgba(15, 30, 18, 0.08);
    border: 1px solid rgba(15, 56, 28, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 1000;
}

.header__dropdown::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #ffffff;
    filter: drop-shadow(0 -1px 1px rgba(15, 30, 18, 0.08));
}

.header__dropdown::after {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

.header__nav-item:hover .header__dropdown,
.header__nav-item:focus-within .header__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.header__dropdown-link {
    display: block;
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-text);
    letter-spacing: 0.02em;
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--t-fast), background-color var(--t-fast), padding-left var(--t-fast);
    position: relative;
}

.header__dropdown-link::before {
    content: "";
    position: absolute;
    left: 0.85rem;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--c-brand-green);
    transform: translateY(-50%);
    transition: width 0.22s ease;
    border-radius: 2px;
}

.header__dropdown-link:hover {
    color: var(--c-brand-green);
    background: rgba(15, 56, 28, 0.04);
    padding-left: 1.7rem;
}

.header__dropdown-link:hover::before {
    width: 0.55rem;
}

.page-main {
    padding-top: clamp(4rem, 6vw, 5.5rem);
}

.page-main--blank {
    padding-top: 0;
}

.page-placeholder {
    min-height: 100vh;
    background: #0a1a0f url("../../sir-misbehave-p4wiXZ5w5Z8-unsplash.webp") center / cover no-repeat;
    padding: clamp(7rem, 13vw, 11rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
}

#uretim.page-placeholder {
    position: relative;
    overflow: hidden;
    background: #d4d8d4;
    padding: 0;
    min-height: 100vh;
    isolation: isolate;
}

#uretim.page-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #d4d8d4 url("../../bio-cup-uretim-altyapisi.webp") left center / cover no-repeat;
    z-index: -2;
}

#uretim.page-placeholder::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.95) 22%,
        rgba(255, 255, 255, 0.55) 45%,
        rgba(255, 255, 255, 0.15) 70%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: -1;
    pointer-events: none;
}

.uretim-hero {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: clamp(5rem, 9vw, 7.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.uretim-hero__panel {
    background: transparent;
    color: #0f2a17;
    padding: clamp(2rem, 4vw, 3.5rem) clamp(1.75rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
    max-width: clamp(28rem, 46vw, 42rem);
    width: 100%;
}

.uretim-hero__title {
    font-size: clamp(3.4rem, 7.5vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #0f2a17;
    margin-bottom: clamp(1.1rem, 1.6vw, 1.4rem);
}

.uretim-hero__rule {
    display: block;
    width: clamp(3.5rem, 5vw, 4.5rem);
    height: 2px;
    background: rgba(15, 42, 23, 0.85);
    margin-bottom: clamp(1.3rem, 2vw, 1.8rem);
}

.uretim-hero__text {
    font-size: clamp(1.15rem, 1.4vw, 1.35rem);
    line-height: 1.65;
    color: #2a3b2e;
    max-width: 36rem;
}

/* --- ÜRETİM ALTYAPIMIZ block --- */
.uretim-infra {
    margin-top: clamp(2.25rem, 4vw, 3.25rem);
    max-width: 40rem;
}

.uretim-infra__title {
    font-size: clamp(1.1rem, 1.4vw, 1.4rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #0f2a17;
    text-transform: uppercase;
    margin-bottom: clamp(0.75rem, 1.2vw, 1rem);
}

.uretim-infra__lead {
    font-size: clamp(0.95rem, 1.05vw, 1.05rem);
    line-height: 1.7;
    color: #4f5964;
    margin-bottom: clamp(1.5rem, 2.5vw, 2.25rem);
    max-width: 32rem;
}

.uretim-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.75rem, 1.4vw, 1.25rem);
}

.uretim-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.55rem;
}

.uretim-stat__icon {
    width: clamp(2.6rem, 3.2vw, 3rem);
    height: clamp(2.6rem, 3.2vw, 3rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1d4f29;
    margin-bottom: 0.15rem;
}

.uretim-stat__icon svg {
    width: 100%;
    height: 100%;
}

.uretim-stat__value {
    font-size: clamp(1.1rem, 1.35vw, 1.4rem);
    font-weight: 800;
    color: #0f2a17;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.uretim-stat__label {
    font-size: clamp(0.55rem, 0.7vw, 0.7rem);
    font-weight: 700;
    color: #4f5964;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.3;
}

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

/* --- Üretim sütun ikonları (alt şerit) --- */
.uretim-pillars {
    margin-top: clamp(6rem, 11vw, 10rem);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1.25rem, 2.2vw, 2rem);
    background: transparent;
    padding: 0;
    border-radius: 0;
    max-width: 46rem;
}

.uretim-pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.05rem;
}

.uretim-pillar__icon {
    width: clamp(4.5rem, 6vw, 5.8rem);
    height: clamp(4.5rem, 6vw, 5.8rem);
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(15, 42, 23, 0.7);
    color: #0f2a17;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.uretim-pillar__icon svg {
    width: 52%;
    height: 52%;
}

.uretim-pillar__label {
    font-size: clamp(0.95rem, 1.15vw, 1.15rem);
    font-weight: 700;
    color: #0f2a17;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.25;
}

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

/* --- İzlenebilir Kalite Anlayışı (panelin alt yazısı) --- */
.quality-intro {
    margin-top: clamp(4.5rem, 8vw, 7rem);
    max-width: 42rem;
}

.quality-intro__title {
    font-size: clamp(1.65rem, 2.2vw, 2.1rem);
    font-weight: 800;
    color: #0f2a17;
    letter-spacing: -0.015em;
    line-height: 1.2;
    margin-bottom: clamp(1rem, 1.6vw, 1.4rem);
}

.quality-intro__text {
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    line-height: 1.75;
    color: #2a3b2e;
    margin-bottom: clamp(0.9rem, 1.4vw, 1.2rem);
}

.quality-intro__text:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    #uretim.page-placeholder::after {
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(255, 255, 255, 0.92) 60%,
            rgba(255, 255, 255, 0.4) 100%
        );
    }
    .uretim-hero__panel {
        max-width: 100%;
    }
}

/* --- ÜRETİM beyaz alt alan --- */
.uretim-white {
    background: #ffffff;
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.park-grid {
    display: grid;
    grid-template-columns: minmax(0, 24rem) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

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

/* Left info column */
.park-info {
    display: flex;
    flex-direction: column;
}

.park-info__head {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.1rem;
}

.park-info__num {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 5px;
    background: #1f5a2c;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.park-info__title {
    font-size: clamp(1.85rem, 2.6vw, 2.4rem);
    font-weight: 800;
    color: #0f2a17;
    letter-spacing: -0.015em;
    line-height: 1.15;
}

.park-info__text {
    font-size: clamp(1.05rem, 1.2vw, 1.2rem);
    line-height: 1.7;
    color: #4f5964;
    margin-bottom: clamp(2rem, 3.5vw, 2.75rem);
    max-width: 28rem;
}

/* Feature mini-icons */
.park-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.6rem, 1vw, 0.9rem);
}

.park-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.7rem;
}

.park-feature__icon {
    width: clamp(2.9rem, 3.6vw, 3.4rem);
    height: clamp(2.9rem, 3.6vw, 3.4rem);
    border-radius: 50%;
    background: #eaf1ea;
    border: 1px solid #c8d8c8;
    color: #1d4f29;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.park-feature__icon svg {
    width: 55%;
    height: 55%;
}

.park-feature__label {
    font-size: clamp(0.85rem, 0.95vw, 0.95rem);
    font-weight: 600;
    color: #4f5964;
    line-height: 1.25;
}

/* Right gallery */
.park-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.85rem, 1.4vw, 1.3rem);
}

.park-card {
    position: relative;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3 / 5;
    background: #d5d8d4;
    box-shadow: 0 4px 18px rgba(15, 30, 18, 0.1);
    transform-origin: center center;
    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s ease,
        z-index 0s linear 0s;
    will-change: transform;
}

.park-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.park-card:hover {
    transform: scale(1.22);
    z-index: 5;
    box-shadow: 0 18px 50px rgba(15, 30, 18, 0.35);
}

.park-card:hover img {
    transform: scale(1.05);
}

@media (hover: none) {
    .park-card:hover {
        transform: none;
        box-shadow: 0 4px 18px rgba(15, 30, 18, 0.1);
    }
    .park-card:hover img {
        transform: none;
    }
}

/* --- İzlenebilir üretim sürecimiz --- */
.flow-section {
    margin-top: clamp(4rem, 7vw, 6rem);
    display: grid;
    grid-template-columns: minmax(0, 12rem) minmax(0, 1fr);
    align-items: start;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.flow-section__title {
    font-size: clamp(1.05rem, 1.4vw, 1.3rem);
    font-weight: 800;
    color: #0f2a17;
    letter-spacing: 0.02em;
    line-height: 1.25;
    text-transform: uppercase;
    padding-top: clamp(1.25rem, 2vw, 1.6rem);
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(13, auto);
    align-items: start;
    gap: 0.35rem;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.65rem;
    min-width: 4.5rem;
    max-width: 7rem;
}

.flow-step__icon {
    width: clamp(3rem, 4vw, 3.8rem);
    height: clamp(3rem, 4vw, 3.8rem);
    border-radius: 50%;
    background: #1f5a2c;
    border: 2px solid #9cd3a3;
    color: #c8f0cd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 rgba(156, 211, 163, 0),
        0 4px 10px rgba(15, 30, 18, 0.1);
    transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s ease,
        background-color 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease;
}

.flow-step__icon svg {
    width: 55%;
    height: 55%;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.flow-step {
    cursor: var(--cursor-leaf);
}

.flow-step:hover .flow-step__icon {
    transform: translateY(-4px) scale(1.12);
    background: #2a7a3a;
    border-color: #c8f0cd;
    color: #ffffff;
    box-shadow:
        0 0 22px rgba(156, 211, 163, 0.7),
        0 0 44px rgba(156, 211, 163, 0.35),
        0 10px 28px rgba(15, 30, 18, 0.28);
}

.flow-step:hover .flow-step__icon svg {
    transform: scale(1.08);
}

@media (hover: none) {
    .flow-step:hover .flow-step__icon {
        transform: none;
        background: #1f5a2c;
        border-color: #9cd3a3;
        color: #c8f0cd;
        box-shadow:
            0 0 0 rgba(156, 211, 163, 0),
            0 4px 10px rgba(15, 30, 18, 0.1);
    }
    .flow-step:hover .flow-step__icon svg {
        transform: none;
    }
}

.flow-step__label {
    font-size: clamp(0.78rem, 0.9vw, 0.9rem);
    font-weight: 600;
    color: #2a3b2e;
    line-height: 1.35;
}

.flow-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(1rem, 1.8vw, 1.5rem);
    color: #1d4f29;
    align-self: center;
    margin-top: clamp(1.1rem, 1.7vw, 1.4rem);
}

.flow-arrow svg {
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .flow-section {
        grid-template-columns: 1fr;
    }
    .flow-section__title {
        padding-top: 0;
        text-align: center;
    }
    .flow-steps {
        overflow-x: auto;
        padding-bottom: 0.5rem;
        flex-wrap: nowrap;
    }
}

@media (max-width: 720px) {
    .flow-steps {
        grid-template-columns: 1fr;
        justify-content: center;
    }
    .flow-arrow {
        transform: rotate(90deg);
        margin: 0.25rem 0;
    }
    .flow-step {
        max-width: none;
    }
}

/* --- Sertifikalar başlık bloğu --- */
.certs-intro {
    margin-top: 0;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.certs-intro__title {
    font-size: clamp(1.85rem, 2.6vw, 2.4rem);
    font-weight: 800;
    color: #0f2a17;
    letter-spacing: -0.015em;
    line-height: 1.15;
    margin-bottom: clamp(1rem, 1.6vw, 1.4rem);
}

.certs-intro__text {
    font-size: clamp(1.05rem, 1.2vw, 1.2rem);
    line-height: 1.75;
    color: #4f5964;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

/* --- Bardaklar ile sertifikalar arası yatay ayraç (60M+ barı boyutunda) --- */
.section-divider {
    width: 100%;
    background: #ffffff;
    padding: clamp(2rem, 3.5vw, 3rem) 0;
    border-top: 1px solid var(--c-gray-100);
    border-bottom: 1px solid var(--c-gray-100);
}

.section-divider__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(0.85rem, 1.4vw, 1.2rem);
}

.section-divider__text {
    font-size: clamp(1.05rem, 1.4vw, 1.35rem);
    font-weight: 600;
    color: #0f2a17;
    line-height: 1.55;
    max-width: 56rem;
    letter-spacing: -0.005em;
}

.section-divider__cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: clamp(0.85rem, 1vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-brand-green);
    transition: color var(--t-fast);
}

.section-divider__cta::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: var(--c-brand-green);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--t-base);
}

.section-divider__cta svg {
    width: 1.05em;
    height: 1.05em;
    transition: transform var(--t-fast);
}

.section-divider__cta:hover {
    color: #22a242;
}

.section-divider__cta:hover::after {
    transform: scaleX(1);
}

.section-divider__cta:hover svg {
    transform: translateX(4px);
}

/* --- Sertifika bölümü (ana sayfa) --- */
.cert-section {
    position: relative;
    background: url("../../bio-cup-sertifikalar-standartlar.webp") center / cover no-repeat;
    background-color: #ffffff;
}

/* --- İnovasyon bölümü --- */
.innovation-section {
    position: relative;
    background: #0a1f10 url("../../bio-cup-inovasyon-arge.webp") center / cover no-repeat;
    padding: clamp(6rem, 11vw, 9.5rem) 0;
    text-align: center;
    min-height: clamp(20rem, 35vw, 28rem);
    display: flex;
    align-items: center;
}

.innovation-section .wrap {
    width: 100%;
}

.innovation-section__title {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 4px 22px rgba(0, 0, 0, 0.45);
}

.innovation-section__rule {
    display: block;
    width: clamp(3rem, 5vw, 4.5rem);
    height: 2px;
    background: #9cd3a3;
    margin: clamp(1rem, 1.6vw, 1.4rem) auto 0;
}

.innovation-section__text {
    margin: clamp(1.4rem, 2vw, 1.8rem) auto 0;
    max-width: 56rem;
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.innovation-section__text + .innovation-section__text {
    margin-top: clamp(0.9rem, 1.4vw, 1.2rem);
}

.innovation-circles {
    margin: clamp(3rem, 5vw, 4.5rem) auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(2rem, 3.5vw, 3rem) clamp(2rem, 3.5vw, 3rem);
    max-width: 76rem;
    list-style: none;
    padding: 0;
    justify-items: center;
    align-items: stretch;
}

.innovation-circle {
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: clamp(15rem, 22vw, 22rem);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid #9cd3a3;
    backdrop-filter: blur(3px);
    box-shadow:
        0 0 22px rgba(156, 211, 163, 0.28),
        0 0 50px rgba(156, 211, 163, 0.12),
        0 12px 30px rgba(0, 0, 0, 0.32);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(1.4rem, 2.4vw, 2.2rem);
    gap: clamp(0.55rem, 0.9vw, 0.85rem);
}

.innovation-circle:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 30px rgba(156, 211, 163, 0.5),
        0 0 70px rgba(156, 211, 163, 0.24),
        0 16px 34px rgba(0, 0, 0, 0.4);
}

.innovation-circle__title {
    font-size: clamp(0.92rem, 1.15vw, 1.15rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.005em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.innovation-circle__text {
    font-size: clamp(0.78rem, 0.9vw, 0.92rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

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

@media (max-width: 520px) {
    .innovation-circles {
        grid-template-columns: 1fr;
    }
    .innovation-circle {
        max-width: 18rem;
    }
}

/* --- Sürdürülebilirlik Raporu başlığı --- */
.report-section {
    background: #041708;
    padding: clamp(1.1rem, 2vw, 1.6rem) 0 clamp(1rem, 1.8vw, 1.4rem);
    text-align: center;
}

.report-section__title {
    font-size: clamp(1rem, 1.4vw, 1.3rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.report-section__rule {
    display: block;
    width: clamp(2.2rem, 3.5vw, 3rem);
    height: 1.5px;
    background: #9cd3a3;
    margin: clamp(0.55rem, 0.9vw, 0.8rem) auto 0;
}

.report-section__text {
    margin: clamp(0.85rem, 1.4vw, 1.2rem) auto 0;
    max-width: 56rem;
    font-size: clamp(0.85rem, 1vw, 1rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.report-section__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(2.3rem, 3vw, 2.9rem);
    height: clamp(2.3rem, 3vw, 2.9rem);
    border-radius: 50%;
    background: rgba(156, 211, 163, 0.08);
    border: 1.3px solid #9cd3a3;
    color: #c8f0cd;
    margin: clamp(0.7rem, 1.2vw, 1rem) auto 0;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    box-shadow:
        0 0 18px rgba(156, 211, 163, 0.18),
        0 0 38px rgba(156, 211, 163, 0.08);
}

.report-section__icon svg {
    width: 45%;
    height: 45%;
}

.report-section__icon:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 24px rgba(156, 211, 163, 0.35),
        0 0 50px rgba(156, 211, 163, 0.18);
}

/* --- Kaliteyi Dünyaya Ulaştırıyoruz başlığı --- */
.export-heading {
    background-color: #1a4226;
    padding: 0;
    text-align: left;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.export-heading__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    z-index: 0;
    user-select: none;
    pointer-events: none;
}

.export-heading::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 30, 14, 0.35) 0%, rgba(10, 30, 14, 0.55) 55%, rgba(10, 30, 14, 0.8) 100%);
    z-index: 0;
    pointer-events: none;
}

.export-heading .wrap {
    position: relative;
    z-index: 1;
    padding-top: clamp(3rem, 5vw, 4.5rem);
    padding-bottom: clamp(4rem, 7vw, 6rem);
}

.export-heading__title {
    font-size: clamp(2rem, 3.6vw, 3.4rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.export-heading__accent {
    color: #ffffff;
}

.export-heading__rule {
    display: block;
    width: clamp(3rem, 5vw, 4.5rem);
    height: 2px;
    background: #ffffff;
    margin: clamp(1rem, 1.6vw, 1.4rem) 0 0;
}

.export-heading__text {
    margin: clamp(1.4rem, 2.2vw, 1.8rem) 0 0;
    max-width: 36rem;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.export-heading__content {
    max-width: 38rem;
    position: relative;
    z-index: 1;
}

.export-heading__map {
    margin: clamp(2.5rem, 4.5vw, 4rem) auto 0;
    max-width: 80rem;
    overflow: hidden;
}

.export-heading__map img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: lighten;
}


/* ==========================================================================
   İhracat Sürecimiz (ana sayfa - tır arka planının üstünde)
   ========================================================================== */
.export-process {
    margin-top: clamp(3rem, 5vw, 4.5rem);
}

.export-process__title {
    margin: 0 0 clamp(2.25rem, 4vw, 3.25rem);
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.export-process__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(9, auto);
    align-items: start;
    justify-content: space-between;
    gap: clamp(0.5rem, 1.2vw, 1rem);
}

.export-process__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: clamp(10rem, 14vw, 13rem);
    min-width: 9rem;
}

.export-process__icon {
    width: clamp(70px, 7vw, 90px);
    height: clamp(70px, 7vw, 90px);
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(1rem, 1.5vw, 1.4rem);
    transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast), background-color var(--t-fast);
}

.export-process__icon svg {
    width: 58%;
    height: 58%;
}

.export-process__step:hover .export-process__icon {
    transform: translateY(-3px);
    border-color: #ffffff;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.export-process__step-title {
    margin: 0 0 clamp(0.45rem, 0.8vw, 0.7rem);
    font-size: clamp(0.92rem, 1.05vw, 1.05rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.25;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.export-process__step-text {
    margin: 0;
    font-size: clamp(0.88rem, 0.95vw, 0.95rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    max-width: 14rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.export-process__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    margin: 0;
    min-width: clamp(40px, 5vw, 80px);
    height: clamp(70px, 7vw, 90px);
    flex-shrink: 0;
}

.export-process__arrow span {
    display: block;
    width: clamp(4px, 0.55vw, 7px);
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
}

@media (max-width: 1100px) {
    .export-process__steps {
        grid-template-columns: 1fr;
        gap: 1rem;
        justify-content: stretch;
    }

    .export-process__step {
        max-width: 32rem;
        margin: 0 auto;
    }

    .export-process__arrow {
        flex-direction: column;
        min-width: auto;
        height: 36px;
        gap: 4px;
    }

    .export-process__arrow span {
        width: 2px;
        height: 6px;
    }
}


/* --- Güvenilir Tedarik özellik kartları (ihracat bölümü içinde) --- */
.export-heading__features {
    margin-top: clamp(3rem, 5vw, 4.5rem);
}

.export-heading__features-header {
    max-width: 60rem;
    margin: 0 0 clamp(2.25rem, 4vw, 3.25rem);
}

.export-heading__features-title {
    margin: 0;
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.export-heading__features-text {
    margin: clamp(0.75rem, 1.2vw, 1.1rem) 0 0;
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 52rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.export-heading__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 2.5vw, 2.5rem);
}

@media (min-width: 768px) {
    .export-heading__cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

.export-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: clamp(1.25rem, 1.8vw, 1.6rem);
    background: rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform var(--t-fast), background-color var(--t-fast), border-color var(--t-fast);
}

.export-card:hover {
    transform: translateY(-4px);
    background: rgba(0, 0, 0, 0.42);
    border-color: rgba(255, 255, 255, 0.32);
}

.export-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(48px, 5vw, 60px);
    height: clamp(48px, 5vw, 60px);
    color: #ffffff;
    margin-bottom: clamp(0.85rem, 1.3vw, 1.2rem);
}

.export-card__icon svg {
    width: 100%;
    height: 100%;
}

.export-card__title {
    margin: 0 0 clamp(0.45rem, 0.75vw, 0.65rem);
    font-size: clamp(0.92rem, 1vw, 1.02rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #ffffff;
    text-transform: uppercase;
}

.export-card__text {
    margin: 0;
    font-size: clamp(0.88rem, 0.98vw, 0.96rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
}


/* --- Sertifika kartları --- */
.cert-grid {
    margin-top: clamp(2.5rem, 4.5vw, 3.75rem);
    margin-left: calc(-1 * var(--pad));
    margin-right: calc(-1 * var(--pad));
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: clamp(0.45rem, 0.8vw, 0.75rem);
    list-style: none;
    padding: 0;
}

.cert-grid > li {
    min-width: 0;
}

a.cert-item--link {
    display: flex;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

a.cert-item--link:focus-visible {
    outline: 2px solid var(--c-brand-green);
    outline-offset: 3px;
}

.cert-item__badge--haccp {
    flex-direction: column;
    gap: 0.1rem;
}

.cert-item__badge--haccp .cert-item__badge-text {
    font-size: clamp(0.72rem, 0.95vw, 0.88rem);
}

.cert-item {
    background: #ffffff;
    border: 1.5px solid #2f8d40;
    border-radius: 12px;
    padding: clamp(1.25rem, 1.75vw, 1.65rem) clamp(0.85rem, 1.2vw, 1.2rem) clamp(1.45rem, 1.9vw, 1.75rem);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    box-shadow:
        0 0 8px rgba(47, 141, 64, 0.18),
        0 0 18px rgba(47, 141, 64, 0.1),
        0 2px 10px rgba(15, 30, 18, 0.05);
    transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    min-width: 0;
}

.cert-item:hover {
    transform: translateY(-4px);
    border-color: #3aac4e;
    box-shadow:
        0 0 14px rgba(47, 141, 64, 0.35),
        0 0 32px rgba(47, 141, 64, 0.18),
        0 12px 26px rgba(15, 30, 18, 0.12);
}

.cert-item__badge {
    width: clamp(3.6rem, 4.8vw, 4.8rem);
    height: clamp(3.6rem, 4.8vw, 4.8rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1f5a2c;
    position: relative;
}

.cert-item__badge svg {
    width: 100%;
    height: 100%;
}

/* Sustainable badge */
.cert-item__badge--pefc {
    flex-direction: column;
    gap: 0.1rem;
}

.cert-item__badge--pefc svg {
    width: 76%;
    height: 70%;
}

.cert-item__badge-text {
    font-size: clamp(0.85rem, 1.05vw, 1rem);
    font-weight: 900;
    color: #1f5a2c;
    letter-spacing: 0.04em;
    line-height: 1;
    display: inline-flex;
    align-items: flex-start;
    gap: 0.05em;
}

.cert-item__badge-text sup {
    font-size: 0.4em;
    font-weight: 700;
    line-height: 1;
    margin-top: 0.15em;
}

/* ISO badge with stacked text */
.cert-item__badge--iso {
    flex-direction: column;
    gap: 0;
    position: relative;
}

.cert-item__badge--iso svg {
    width: 100%;
    height: 100%;
}

.cert-item__badge-iso-top {
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(0.7rem, 0.9vw, 0.85rem);
    font-weight: 800;
    color: #1f5a2c;
    line-height: 1;
    letter-spacing: 0.04em;
    background: #ffffff;
    padding: 0 0.25rem;
}

.cert-item__badge-iso-bot {
    position: absolute;
    bottom: 14%;
    left: 50%;
    transform: translate(-50%, 50%);
    font-size: clamp(0.7rem, 0.9vw, 0.85rem);
    font-weight: 800;
    color: #1f5a2c;
    line-height: 1;
    letter-spacing: 0.04em;
    background: #ffffff;
    padding: 0 0.25rem;
}

.cert-item__title {
    font-size: clamp(0.78rem, 0.95vw, 0.95rem);
    font-weight: 800;
    color: #0f2a17;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.3;
    margin-top: 0.3rem;
}

.cert-item__text {
    font-size: clamp(0.78rem, 0.88vw, 0.88rem);
    line-height: 1.6;
    color: #4f5964;
    flex: 1;
}

.cert-item__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: auto;
    width: 100%;
    padding: 0.62rem 0.85rem;
    background: var(--c-brand-green);
    color: #ffffff;
    font-size: clamp(0.62rem, 0.72vw, 0.72rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
    box-shadow: 0 6px 16px rgba(30, 111, 46, 0.18);
}

.cert-item__action svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform var(--t-fast);
}

.cert-item:hover .cert-item__action {
    background: #176324;
    box-shadow: 0 8px 20px rgba(30, 111, 46, 0.24);
}

.cert-item:hover .cert-item__action svg {
    transform: translateX(2px);
}

@media (max-width: 1200px) {
    .cert-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .cert-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .cert-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-left: 0;
        margin-right: 0;
    }

    .cert-grid--seven > li:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: calc(50% - 0.375rem);
        justify-self: center;
    }
}

.park-card__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.55rem 0.6rem;
    background: rgba(15, 42, 23, 0.78);
    color: #ffffff;
    font-size: clamp(0.7rem, 0.78vw, 0.78rem);
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.01em;
}

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

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

.sustain-intro {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.sustain-intro__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.sustain-intro__rule {
    display: block;
    width: 3rem;
    height: 2px;
    margin: 0 auto 1.75rem;
    background: #9cd3a3;
    border-radius: 2px;
}

.sustain-intro__text {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.75;
    color: rgba(245, 250, 246, 0.92);
    max-width: 48rem;
    margin: 0 auto;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.sustain-intro__text + .sustain-intro__text {
    margin-top: 1.1rem;
}

/* ==========================================================================
   SÜRDÜRÜLEBİLİR DÖNGÜ — dairesel görsel + yan kartlar
   ========================================================================== */
.loop-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 2.5vw, 2rem);
    margin-top: clamp(3rem, 6vw, 5rem);
    align-items: center;
}

@media (min-width: 1000px) {
    .loop-layout {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 1.6fr) minmax(0, 1fr);
        gap: clamp(1.5rem, 3vw, 2.5rem);
    }
}

.loop-side {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 1.6vw, 1.5rem);
    width: 100%;
}

@media (max-width: 999px) {
    .loop-side {
        grid-template-columns: repeat(3, 1fr);
    }
}

.loop-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(156, 211, 163, 0.25);
    border-radius: 16px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    min-height: clamp(8rem, 12vw, 11rem);
    padding: clamp(1rem, 1.6vw, 1.4rem);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast), background-color var(--t-fast);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.loop-card:hover {
    border-color: rgba(156, 211, 163, 0.55);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
    transform: translateY(-2px);
}

.loop-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    background: rgba(156, 211, 163, 0.18);
    border: 1px solid rgba(156, 211, 163, 0.45);
    color: #9cd3a3;
}

.loop-card__icon svg {
    width: 1.15rem;
    height: 1.15rem;
}

.loop-card__title {
    font-size: clamp(0.92rem, 1.05vw, 1.02rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #ffffff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.loop-card__num {
    color: #9cd3a3;
    margin-right: 0.25rem;
}

.loop-card__text {
    font-size: clamp(0.78rem, 0.9vw, 0.88rem);
    line-height: 1.55;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.loop-cycle {
    position: relative;
    width: min(100%, 640px);
    aspect-ratio: 1;
    margin: 0 auto;
}

.loop-cycle__arrows {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    transform-origin: 50% 50%;
    animation: loop-spin 48s linear infinite;
    filter: drop-shadow(0 0 6px rgba(156, 211, 163, 0.55));
}

.loop-cycle__icons {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    transform-origin: 50% 50%;
    animation: loop-spin 48s linear infinite;
}

@keyframes loop-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes loop-spin-reverse {
    from { transform: rotate(0deg); }
    to   { transform: rotate(-360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .loop-cycle__arrows,
    .loop-cycle__icons,
    .loop-cycle__icon-inner {
        animation: none;
    }
}

.loop-cycle__icon {
    position: absolute;
    left: var(--lx);
    top: var(--ly);
    transform: translate(-50%, -50%);
    width: clamp(3.4rem, 5.5vw, 4.5rem);
    height: clamp(3.4rem, 5.5vw, 4.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1.5px solid rgba(156, 211, 163, 0.65);
    border-radius: 50%;
    color: #2a6936;
    box-shadow:
        0 0 18px rgba(156, 211, 163, 0.55),
        0 0 38px rgba(156, 211, 163, 0.3),
        0 8px 22px rgba(15, 61, 31, 0.25);
    animation: loop-pulse 3.6s ease-in-out infinite;
}

@keyframes loop-pulse {
    0%, 100% {
        box-shadow:
            0 0 18px rgba(156, 211, 163, 0.55),
            0 0 38px rgba(156, 211, 163, 0.3),
            0 8px 22px rgba(15, 61, 31, 0.25);
    }
    50% {
        box-shadow:
            0 0 26px rgba(156, 211, 163, 0.85),
            0 0 56px rgba(156, 211, 163, 0.5),
            0 8px 22px rgba(15, 61, 31, 0.25);
    }
}

.loop-cycle__icon-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55%;
    height: 55%;
    transform-origin: 50% 50%;
    animation: loop-spin-reverse 48s linear infinite;
}

.loop-cycle__icon-inner svg {
    width: 100%;
    height: 100%;
}

.loop-cycle__center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(54%, 18rem);
    text-align: center;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.loop-cycle__center-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(2.4rem, 4vw, 3.25rem);
    height: clamp(2.4rem, 4vw, 3.25rem);
    margin-bottom: 0.5rem;
    color: #9cd3a3;
}

.loop-cycle__center-icon svg {
    width: 100%;
    height: 100%;
}

.loop-cycle__center-title {
    font-size: clamp(1.05rem, 1.9vw, 1.6rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 0.65rem;
    text-transform: uppercase;
}

.loop-cycle__center-text {
    font-size: clamp(0.78rem, 0.95vw, 0.92rem);
    line-height: 1.6;
    color: rgba(232, 240, 234, 0.9);
}

.page-main--sustain {
    padding-top: 0;
}

/* ==========================================================================
   SÜRDÜRÜLEBİLİRLİK SAYFASI
   ========================================================================== */
.sustain-page {
    background: var(--c-white);
    overflow: hidden;
}

.sustain-hero {
    position: relative;
    padding: clamp(5.5rem, 9vw, 7rem) 0 clamp(3.5rem, 6vw, 5rem);
    overflow: visible;
}

.sustain-hero__bg {
    position: absolute;
    inset: 0;
    background-color: #0a1a0f;
    background-image: url("../../sir-misbehave-p4wiXZ5w5Z8-unsplash.webp");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: saturate(1.05);
}

.sustain-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(8, 22, 12, 0.78) 0%,
        rgba(8, 22, 12, 0.58) 38%,
        rgba(8, 22, 12, 0.25) 70%,
        rgba(8, 22, 12, 0.05) 100%
    );
    pointer-events: none;
}

.sustain-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
    margin-left: 0;
    margin-right: auto;
    padding-left: clamp(1.85rem, 4vw, 3.15rem);
}

.sustain-hero__copy {
    max-width: min(72rem, 88vw);
    position: relative;
    text-align: left;
}

.sustain-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.3rem;
}

.sustain-hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border: 1.5px solid rgba(156, 211, 163, 0.55);
    border-radius: 50%;
    color: #9cd3a3;
}

.sustain-hero__badge svg {
    width: 1.1rem;
    height: 1.1rem;
}

.sustain-hero__label-text {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #9cd3a3;
}

.sustain-hero__title {
    font-size: clamp(2rem, 3.4vw, 2.65rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 1.35rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.sustain-hero__lead {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.sustain-hero__lead p {
    font-size: clamp(1.02rem, 1.2vw, 1.125rem);
    color: rgba(245, 250, 246, 0.92);
    line-height: 1.75;
    max-width: 36rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.sustain-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem 1.5rem;
    margin-top: clamp(2.5rem, 4vw, 3.25rem);
    list-style: none;
    padding: 0;
    width: 100%;
}

@media (min-width: 600px) and (max-width: 899px) {
    .sustain-pillars {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .sustain-pillars {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.75rem 2rem;
    }
}

@media (min-width: 1200px) {
    .sustain-pillars {
        grid-template-columns: repeat(4, minmax(11.5rem, 1fr));
        gap: 1.5rem 1.15rem;
        max-width: 100%;
    }
}

.sustain-pillar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.85rem;
    height: 2.85rem;
    margin-bottom: 0.75rem;
    color: #9cd3a3;
}

.sustain-pillar__icon svg {
    width: 1.9rem;
    height: 1.9rem;
}

.sustain-pillar__title {
    font-size: clamp(0.95rem, 1.15vw, 1.1rem);
    font-weight: 700;
    line-height: 1.35;
    color: #ffffff;
    margin-bottom: 0.65rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.sustain-pillar__text {
    font-size: clamp(0.9rem, 1.05vw, 1rem);
    line-height: 1.55;
    color: rgba(232, 240, 234, 0.85);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

@media (min-width: 1200px) {
    .sustain-pillar__title {
        text-wrap: balance;
    }
}

.sustain-hero__visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin: 0 auto;
    max-width: 28rem;
}

@media (min-width: 900px) {
    .sustain-hero__visual {
        max-width: none;
        margin: 0;
        justify-content: flex-end;
    }
}

.sustain-hero__visual img {
    width: min(100%, 420px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 36px rgba(15, 61, 31, 0.12));
}

/* Dairesel üretim süreci — sağ üst */
.sustain-cycle {
    position: relative;
    width: min(100%, 360px);
    aspect-ratio: 1;
    margin: 2.5rem auto 0;
    z-index: 2;
}

@media (min-width: 900px) {
    .sustain-cycle {
        position: absolute;
        top: clamp(4.5rem, 7vw, 6rem);
        right: clamp(3rem, 9vw, 7.5rem);
        width: clamp(380px, 38vw, 520px);
        margin: 0;
        transform: none;
    }
}

@media (min-width: 1400px) {
    .sustain-cycle {
        right: clamp(5rem, 12vw, 10rem);
    }
}

.sustain-cycle__track {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sustain-cycle__steps {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Her adım için açı: 0°, 72°, 144°, 216°, 288° — başlangıç üstten (-90°) */
.sustain-cycle__step {
    position: absolute;
    width: 6.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* üst merkez: left 50%, top 50% sonra öteleme */
}

/* Koordinatlar: cx=100, cy=100, r=78 → SVG 200x200 viewBox
   Her nokta: x = 100 + 78*sin(angle), y = 100 - 78*cos(angle)
   Container'daki % olarak: SVG'nin orantılı konumu
   Adım 0 (0°  ):  x=100,  y=22   → left:50%, top:11%
   Adım 1 (72° ):  x=174,  y=76   → left:87%, top:38%
   Adım 2 (144°):  x=146,  y=163  → left:73%, top:81%
   Adım 3 (216°):  x=54,   y=163  → left:27%, top:81%
   Adım 4 (288°):  x=26,   y=76   → left:13%, top:38%
*/
.sustain-cycle__step:nth-child(1) {
    left: 50%;    top: 11%;
    transform: translate(-50%, -50%);
}
.sustain-cycle__step:nth-child(2) {
    left: 87%;    top: 38%;
    transform: translate(-50%, -50%);
}
.sustain-cycle__step:nth-child(3) {
    left: 73%;    top: 81%;
    transform: translate(-50%, -50%);
}
.sustain-cycle__step:nth-child(4) {
    left: 27%;    top: 81%;
    transform: translate(-50%, -50%);
}
.sustain-cycle__step:nth-child(5) {
    left: 13%;    top: 38%;
    transform: translate(-50%, -50%);
}

.sustain-cycle__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.85rem;
    height: 3.85rem;
    margin-bottom: 0.55rem;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid rgba(30, 111, 46, 0.4);
    color: var(--c-brand-green);
    box-shadow: 0 8px 22px rgba(15, 61, 31, 0.14);
}

.sustain-cycle__icon svg {
    width: 1.9rem;
    height: 1.9rem;
}

.sustain-cycle__label {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.25;
    color: #ffffff;
    max-width: 6.5rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}

@media (min-width: 900px) {
    .sustain-hero__copy {
        padding-right: min(40vw, 30rem);
    }
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switcher {
    position: relative;
}

.lang-switcher__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    min-height: 38px;
    min-width: 78px;
    padding: 0.58rem 0.95rem;
    border: 1px solid var(--c-gray-100);
    color: var(--c-text);
    cursor: var(--cursor-leaf);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    list-style: none;
    transition: border-color var(--t-fast), color var(--t-fast), background-color var(--t-fast);
}

.lang-switcher__trigger .lang-switcher__flag-img {
    margin-left: 0.05rem;
}

.lang-switcher__trigger::-webkit-details-marker {
    display: none;
}

.lang-switcher__trigger::after {
    content: '';
    width: 0.38rem;
    height: 0.38rem;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform var(--t-fast);
    margin-left: auto;
}

/* Arrow color behavior during header animation */
.header:not(.is-scrolled) .lang-switcher__trigger::after {
    border-right-color: #ffffff;
    border-bottom-color: #ffffff;
}

.header.is-scrolled .lang-switcher__trigger::after {
    border-right-color: var(--c-text);
    border-bottom-color: var(--c-text);
}

.lang-switcher[open] .lang-switcher__trigger::after {
    transform: translateY(1px) rotate(225deg);
}

.lang-switcher__trigger:hover,
.lang-switcher[open] .lang-switcher__trigger {
    border-color: rgba(30, 111, 46, 0.35);
    background-color: rgba(30, 111, 46, 0.04);
    color: var(--c-brand-green);
}

.lang-switcher__flags {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    font-size: 1rem;
    letter-spacing: 0;
}

.lang-switcher__menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    min-width: 108px;
    padding: 0.45rem;
    background-color: var(--c-white);
    border: 1px solid var(--c-gray-100);
    box-shadow: 0 18px 45px rgba(4, 16, 36, 0.12);
    z-index: 120;
}

.lang-switcher__option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0.62rem;
    color: var(--c-text);
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color var(--t-fast), color var(--t-fast);
}

.lang-switcher__flag-img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    display: block;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(15, 24, 33, 0.14);
}

/* Smooth visual transition after language change */
html.lang-transition-pending body {
    opacity: 0;
}

html.lang-transition-ready body {
    opacity: 1;
    transition: opacity 420ms ease;
}

.lang-switcher__option:hover {
    background-color: var(--c-gray-50);
    color: var(--c-brand-green);
}

.lang-switcher__option.is-active {
    background-color: rgba(15, 56, 28, 0.08);
    color: var(--c-brand-green);
}

.header .btn {
    padding: 0.8rem 1.25rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
}


/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    background-color: var(--c-navy);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(4,16,36,0.68) 0%, rgba(4,16,36,0.3) 46%, rgba(4,16,36,0.08) 100%),
        linear-gradient(180deg, rgba(4,16,36,0.18), rgba(4,16,36,0.28));
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    height: 120px;
    background: linear-gradient(to top, rgba(4,16,36,0.38), transparent);
    pointer-events: none;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.1s ease, transform 6s ease;
}

.hero__slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero__slide img,
.hero__slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transform: scale(1.08);
    transition: transform 6s ease;
}

.hero.is-loaded .hero__slide.is-active img,
.hero.is-loaded .hero__slide.is-active video {
    transform: scale(1.01);
}

.hero__content {
    position: relative;
    z-index: 3;
    width: 100%;
    color: var(--c-white);
    padding-top: 80px; /* Header offset */
    max-width: none;
}

.hero .wrap.hero__content {
    padding-inline: clamp(1.5rem, 5vw, 3rem);
}

.hero__inner {
    max-width: 780px;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

.hero__inner .t-display,
.hero__inner .t-lead {
    text-align: left;
}

.hero__title {
    margin-bottom: 2rem;
    color: var(--c-white);
    font-size: clamp(1.85rem, 3.4vw, 3.15rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    word-spacing: 0.06em;
    max-width: 100%;
}

.hero__desc {
    color: var(--c-gray-400);
    margin-bottom: 2.5rem;
    max-width: 650px;
    font-size: clamp(1rem, 1.25vw, 1.25rem);
}

.hero__slider-ui {
    position: absolute;
    left: clamp(1.5rem, 5vw, 3rem);
    right: clamp(1.5rem, 5vw, 3rem);
    bottom: clamp(2rem, 5vw, 4rem);
    z-index: 4;
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 1.25rem;
    color: var(--c-white);
    justify-items: start;
}

.hero__slider-ui > .hero__counter,
.hero__slider-ui > .hero__pagers {
    justify-self: start;
}

.hero__counter {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.hero__pagers {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.hero__pager-item {
    width: 42px;
    height: 2px;
    background-color: rgba(255,255,255,0.35);
    transition: width var(--t-fast), background-color var(--t-fast);
}

.hero__pager-item.is-active {
    width: 72px;
    background-color: var(--c-brand-green);
}

.hero__progress {
    grid-column: 1 / -1;
    width: min(420px, 100%);
    height: 1px;
    background-color: rgba(255,255,255,0.22);
    overflow: hidden;
    justify-self: start;
}

.hero__progress span {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--c-brand-green);
    transform-origin: left center;
    animation: heroProgress 6s linear infinite;
}

@keyframes heroProgress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@media (max-width: 768px) {
    .hero .wrap.hero__content {
        padding-inline: clamp(1.35rem, 6vw, 2rem);
    }

    .hero__slider-ui {
        left: clamp(1.35rem, 6vw, 2rem);
        right: clamp(1.35rem, 6vw, 2rem);
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 0.85rem 1rem;
    }

    .hero__pagers {
        grid-column: 1 / -1;
        flex-wrap: wrap;
    }

    .hero__progress {
        grid-column: 1 / -1;
        width: 100%;
    }
}

/* ==========================================================================
   STATS
   ========================================================================== */
.stats-section {
    background-color: var(--c-white);
    border-bottom: 1px solid var(--c-gray-100);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

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

    .stat-item {
        border-right: none !important;
    }
}

.stat-item {
    padding: 2rem 2rem;
    border-bottom: 1px solid var(--c-gray-100);
    transition: background-color var(--t-fast);
    min-width: 0;
}

.stat-num,
.stat-label,
.stat-desc {
    overflow-wrap: break-word;
    word-break: break-word;
}

.stat-item:hover {
    background-color: #fbfbfa;
}

@media (min-width: 768px) {
    .stat-item:nth-child(odd) { border-right: 1px solid var(--c-gray-100); }
}

@media (min-width: 768px) {
    .stat-item {
        border-right: 1px solid var(--c-gray-100);
    }
    .stat-item:nth-child(2n) {
        border-right: none;
    }
    .stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

.stat-num {
    font-size: clamp(2.25rem, 3.2vw, 3rem);
    font-weight: 800;
    color: var(--c-brand-green);
    line-height: 1;
    margin-bottom: 0.6rem;
    letter-spacing: -0.04em;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-text);
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.875rem;
    color: var(--c-gray-600);
}

/* ==========================================================================
   CORPORATE OVERVIEW
   ========================================================================== */
.overview-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.overview-section__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    display: block;
}

.overview-section__video {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    user-select: none;
    left: -9999px;
    top: -9999px;
    overflow: hidden;
}

.overview-section__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.32);
    z-index: 1;
    pointer-events: none;
}

.overview-section__inner {
    position: relative;
    z-index: 5;
}

.overview-section__fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: clamp(240px, 36vw, 400px);
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(18, 70, 35, 0) 8%,
        rgba(18, 70, 35, 0.4) 38%,
        rgba(110, 165, 125, 0.7) 65%,
        rgba(195, 220, 200, 0.92) 85%,
        #eaf3ec 100%
    );
    z-index: 3;
    pointer-events: none;
}

.overview-text--solo {
    max-width: 720px;
}

.overview-text--on-video {
    padding-left: 0;
    color: #ffffff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.overview-text--on-video .t-h2,
.overview-text--on-video .t-lead,
.overview-text--on-video p {
    color: #ffffff;
}

.overview-text--centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 0;
}

.overview-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .overview-pillars { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.overview-pillar {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition:
        transform 0.45s cubic-bezier(0.2, 0.65, 0.3, 1),
        box-shadow 0.45s ease,
        background-color 0.45s ease,
        border-color 0.45s ease;
    cursor: pointer;
}

.overview-pillar:hover {
    transform: translateY(-6px) scale(1.04);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.18),
        0 0 32px rgba(34, 162, 66, 0.35);
}

.overview-pillar:hover .overview-pillar__icon {
    background: rgba(255, 255, 255, 0.32);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.45);
}

.overview-pillar__icon {
    transition:
        background-color 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.overview-pillar__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.overview-pillar__icon svg {
    width: 26px;
    height: 26px;
}

.overview-pillar__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.85rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.overview-pillar__desc {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.video-band {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: clamp(20rem, 45vw, 36rem);
    background-color: transparent;
}

.video-band__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    display: block;
}

.video-band__video {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    user-select: none;
    left: -9999px;
    top: -9999px;
    overflow: hidden;
}

.image-band {
    position: relative;
    min-height: clamp(18rem, 38vw, 30rem);
    background-image: url("../../reetaish-kumawat-LT0WDWrCw3w-unsplash.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.white-band {
    background-color: #ffffff;
    min-height: clamp(22rem, 50vw, 40rem);
}

/* ==========================================================================
   CUP SERIES — kâğıt bardak ürün kartları
   ========================================================================== */
.cup-series {
    position: relative;
    background-color: #eaf3ec;
    background-image:
        url("../../bio-cup-karton-bardak-serisi-bg.webp"),
        linear-gradient(180deg, #eaf3ec 0%, #f5faf6 32%, #ffffff 70%);
    background-blend-mode: multiply, normal;
    background-size: cover, 100% 100%;
    background-position: center, top center;
    background-repeat: no-repeat, no-repeat;
    overflow: hidden;
    padding-top: clamp(8rem, 14vw, 12rem);
    padding-bottom: clamp(4rem, 7vw, 6.5rem);
}

.cup-series .wrap {
    position: relative;
    z-index: 1;
}

.cup-series__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.cup-series__title {
    color: var(--c-navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cup-series__divider {
    display: block;
    width: 64px;
    height: 3px;
    background: var(--c-brand-green);
    border-radius: 3px;
    margin: 0.85rem auto 1.25rem;
}

.cup-series__lead {
    color: var(--c-gray-600);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

.cup-series__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0.75rem 0;
    overflow: visible;
    perspective: 1200px;
    transform-style: preserve-3d;
}

@media (min-width: 640px) {
    .cup-series__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .cup-series__grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

.cup-card {
    position: relative;
    background: #ffffff;
    border: 1.5px solid rgba(30, 111, 46, 0.22);
    border-radius: 14px;
    padding: 0 0 1.6rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
    transition:
        transform 0.5s cubic-bezier(0.2, 0.65, 0.3, 1),
        box-shadow 0.5s ease,
        border-color 0.4s ease;
    overflow: hidden;
    transform: translateZ(0) scale(1);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;
}

.cup-card:hover {
    transform: translateZ(48px) scale(1.08);
    border-color: rgba(30, 111, 46, 0.45);
    box-shadow:
        0 28px 56px rgba(15, 23, 42, 0.18),
        0 12px 24px rgba(15, 23, 42, 0.1);
    z-index: 2;
}

.cup-card__media {
    height: clamp(180px, 14vw, 210px);
    background:
        linear-gradient(180deg, #f7f9f7 0%, #eef3ee 100%);
    border-bottom: 1px solid rgba(30, 111, 46, 0.12);
    overflow: hidden;
}

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

.cup-card__icon {
    margin: -22px auto 0.85rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e8f3ea;
    color: var(--c-brand-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.cup-card__icon svg {
    width: 22px;
    height: 22px;
}

.cup-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-navy);
    text-align: left;
    margin: 0 1.4rem 0.6rem;
    line-height: 1.35;
}

.cup-card__range {
    display: inline-block;
    font-weight: 700;
    color: var(--c-navy);
}

.cup-card__desc {
    color: var(--c-gray-600);
    font-size: 0.875rem;
    line-height: 1.55;
    margin: 0 1.4rem;
    flex: 1;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8rem;
        align-items: center;
    }
}

.overview-text {
    position: relative;
    padding: 1.75rem 0 1.75rem 2.75rem;
}

.overview-text.overview-text--centered,
.overview-text.overview-text--on-video.overview-text--centered {
    padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1rem, 3vw, 1.5rem);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 900px;
    text-align: center;
    box-sizing: border-box;
}

.overview-text.overview-text--centered .t-h2,
.overview-text.overview-text--centered .t-lead,
.overview-text.overview-text--centered p {
    text-align: center;
}

.overview-bracket {
    --bracket-arm: 3.25rem;
    --bracket-gap: 0.75rem;
    --bracket-weight: 2px;
    position: absolute;
    width: var(--bracket-arm);
    height: var(--bracket-arm);
    pointer-events: none;
    box-sizing: border-box;
}

.overview-bracket--tl-outer {
    top: 0;
    left: 0;
    border-top: var(--bracket-weight) solid var(--c-brand-green);
    border-left: var(--bracket-weight) solid var(--c-brand-green);
}

.overview-bracket--tl-inner {
    top: var(--bracket-gap);
    left: var(--bracket-gap);
    width: calc(var(--bracket-arm) - var(--bracket-gap));
    height: calc(var(--bracket-arm) - var(--bracket-gap));
    border-top: var(--bracket-weight) solid var(--c-brand-green);
    border-left: var(--bracket-weight) solid var(--c-brand-green);
}

.overview-bracket--bl-outer {
    bottom: 0;
    left: 0;
    border-bottom: var(--bracket-weight) solid var(--c-brand-green);
    border-left: var(--bracket-weight) solid var(--c-brand-green);
}

.overview-bracket--bl-inner {
    bottom: var(--bracket-gap);
    left: var(--bracket-gap);
    width: calc(var(--bracket-arm) - var(--bracket-gap));
    height: calc(var(--bracket-arm) - var(--bracket-gap));
    border-bottom: var(--bracket-weight) solid var(--c-brand-green);
    border-left: var(--bracket-weight) solid var(--c-brand-green);
}

/* Köşe çerçevesi — 4 köşe (ürünler bölümü vb.) */
.corner-frame {
    position: relative;
    padding: clamp(2rem, 4vw, 3rem);
}

.products-corner-frame .capabilities-header {
    margin-bottom: 2.5rem;
    max-width: none;
    width: 100%;
    text-align: center;
}

.products-corner-frame .products-intro {
    max-width: 48rem;
    margin: 1.15rem auto 0;
    text-align: center;
    text-wrap: pretty;
}

.corner-bracket {
    --bracket-arm: 3.25rem;
    --bracket-gap: 0.75rem;
    --bracket-weight: 2px;
    position: absolute;
    width: var(--bracket-arm);
    height: var(--bracket-arm);
    pointer-events: none;
    box-sizing: border-box;
}

.corner-bracket--tl-outer {
    top: 0;
    left: 0;
    border-top: var(--bracket-weight) solid var(--c-brand-green);
    border-left: var(--bracket-weight) solid var(--c-brand-green);
}

.corner-bracket--tl-inner {
    top: var(--bracket-gap);
    left: var(--bracket-gap);
    width: calc(var(--bracket-arm) - var(--bracket-gap));
    height: calc(var(--bracket-arm) - var(--bracket-gap));
    border-top: var(--bracket-weight) solid var(--c-brand-green);
    border-left: var(--bracket-weight) solid var(--c-brand-green);
}

.corner-bracket--tr-outer {
    top: 0;
    right: 0;
    border-top: var(--bracket-weight) solid var(--c-brand-green);
    border-right: var(--bracket-weight) solid var(--c-brand-green);
}

.corner-bracket--tr-inner {
    top: var(--bracket-gap);
    right: var(--bracket-gap);
    width: calc(var(--bracket-arm) - var(--bracket-gap));
    height: calc(var(--bracket-arm) - var(--bracket-gap));
    border-top: var(--bracket-weight) solid var(--c-brand-green);
    border-right: var(--bracket-weight) solid var(--c-brand-green);
}

.corner-bracket--bl-outer {
    bottom: 0;
    left: 0;
    border-bottom: var(--bracket-weight) solid var(--c-brand-green);
    border-left: var(--bracket-weight) solid var(--c-brand-green);
}

.corner-bracket--bl-inner {
    bottom: var(--bracket-gap);
    left: var(--bracket-gap);
    width: calc(var(--bracket-arm) - var(--bracket-gap));
    height: calc(var(--bracket-arm) - var(--bracket-gap));
    border-bottom: var(--bracket-weight) solid var(--c-brand-green);
    border-left: var(--bracket-weight) solid var(--c-brand-green);
}

.corner-bracket--br-outer {
    bottom: 0;
    right: 0;
    border-bottom: var(--bracket-weight) solid var(--c-brand-green);
    border-right: var(--bracket-weight) solid var(--c-brand-green);
}

.corner-bracket--br-inner {
    bottom: var(--bracket-gap);
    right: var(--bracket-gap);
    width: calc(var(--bracket-arm) - var(--bracket-gap));
    height: calc(var(--bracket-arm) - var(--bracket-gap));
    border-bottom: var(--bracket-weight) solid var(--c-brand-green);
    border-right: var(--bracket-weight) solid var(--c-brand-green);
}

.overview-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: visible;
    z-index: 0;
}

.overview-image::before {
    content: '';
    position: absolute;
    inset: 1.5rem -1.5rem -1.5rem 1.5rem;
    border: 1px solid var(--c-brand-gold);
    z-index: -1;
}

.overview-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   CAPABILITIES / PRODUCTS
   ========================================================================== */
.capabilities-header {
    margin-bottom: 3rem;
    max-width: 720px;
}

.value-pillars {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    list-style: none;
    margin: 2.5rem 0 0;
    padding: 0;
    background: transparent;
    border: none;
}

.value-pillars__item {
    flex: 1 1 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem clamp(1.25rem, 2.5vw, 2rem);
    border-left: 1px solid #d4dbd6;
}

.value-pillars__item:first-child {
    border-left: none;
}

.value-pillars__icon {
    flex-shrink: 0;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 111, 46, 0.14);
}

.value-pillars__icon svg {
    width: 1.45rem;
    height: 1.45rem;
    stroke: var(--c-brand-green);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.value-pillars__label {
    font-size: clamp(0.68rem, 1.1vw, 0.78rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-brand-green);
    line-height: 1.35;
    text-align: left;
}

@media (max-width: 900px) {
    .value-pillars__item {
        flex: 1 1 100%;
        border-left: none;
        border-top: 1px solid #d4dbd6;
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .value-pillars__item:first-child {
        border-top: none;
        padding-top: 0;
    }
}

@media (min-width: 901px) and (max-width: 1100px) {
    .value-pillars__item {
        flex: 1 1 calc(50% - 1px);
    }

    .value-pillars__item:nth-child(odd) {
        border-left: none;
    }

    .value-pillars__item:nth-child(n + 3) {
        border-top: 1px solid #d4dbd6;
    }
}

.product-model-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: stretch;
    perspective: 1200px;
}

@media (min-width: 768px) {
    .product-model-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1200px) {
    .product-model-grid { grid-template-columns: repeat(4, 1fr); }
}

.product-model-card {
    position: relative;
    display: grid;
    grid-template-rows: 248px auto;
    background: var(--c-white);
    border: none;
    overflow: visible;
    transform: translateZ(42px);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    box-shadow:
        0 36px 70px rgba(4, 16, 36, 0.16),
        0 14px 28px rgba(4, 16, 36, 0.1);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-model-card:hover {
    transform: translateZ(68px);
    z-index: 2;
    box-shadow:
        0 48px 90px rgba(4, 16, 36, 0.2),
        0 20px 36px rgba(4, 16, 36, 0.12);
}

.product-model-card__stage {
    position: relative;
    height: 248px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0.65rem 1.25rem 0.15rem;
    background: #ffffff;
    box-sizing: border-box;
}

.product-model-card__stage img {
    position: relative;
    z-index: 1;
    width: min(100%, 260px);
    height: 220px;
    object-fit: contain;
    object-position: center bottom;
}

.product-model-card__content {
    position: relative;
    z-index: 3;
    margin: 0 0.75rem 0.75rem;
    padding: 0.85rem 1.25rem 1.45rem;
    background-color: #ffffff;
    border-top: 1px solid rgba(4, 16, 36, 0.06);
}

.product-model-card__content h3 {
    margin-bottom: 0;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    color: var(--c-text);
}

.product-model-card__content h3::after {
    content: "";
    display: block;
    width: 2.5rem;
    height: 2px;
    margin: 0.65rem 0 0.75rem;
    background: var(--c-brand-green);
    border-radius: 2px;
}

.product-model-card__content p {
    color: var(--c-gray-600);
    font-size: 0.84rem;
    line-height: 1.7;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
}

.capability-card {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background-color: var(--c-navy);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    color: var(--c-white);
    text-decoration: none;
    isolation: isolate;
}

@media (min-width: 1024px) {
    .capability-card { aspect-ratio: 4/3; }
}

.capability-card__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.capability-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 1s ease, opacity var(--t-base);
}

.capability-card:hover .capability-card__bg img {
    transform: scale(1.05);
    opacity: 0.4;
}

.capability-card::before {
    content: '';
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(255,255,255,0.18);
    z-index: 3;
    opacity: 0;
    transform: scale(0.98);
    transition: opacity var(--t-base), transform var(--t-base);
}

.capability-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.capability-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(4, 16, 36, 0.92) 0%, rgba(4, 16, 36, 0.1) 100%),
        linear-gradient(45deg, rgba(30,111,46,0.3), transparent 45%);
    z-index: 2;
}

.capability-card__content {
    position: relative;
    z-index: 4;
}

.capability-card__title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--c-white);
}

.capability-card__desc {
    color: var(--c-gray-400);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 400px;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--t-base);
}

.capability-card:hover .capability-card__desc {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   MACHINE PARK
   ========================================================================== */
.machine-section {
    background-color: var(--c-white);
}

.machine-layout {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .machine-layout {
        grid-template-columns: minmax(240px, 300px) 1fr;
        gap: clamp(1.5rem, 3vw, 3rem);
    }
}

.machine-intro__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--c-white);
    background: var(--c-brand-green);
}

.machine-intro__title {
    margin-bottom: 1rem;
    font-size: clamp(1.75rem, 2.8vw, 2.35rem);
}

.machine-intro__lead {
    margin-bottom: 1.75rem;
    color: var(--c-gray-600);
    font-size: 0.92rem;
    line-height: 1.75;
    max-width: 28rem;
}

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

@media (min-width: 640px) {
    .machine-features {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .machine-features {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.65rem;
        max-width: none;
    }

    .machine-features__label {
        font-size: 0.62rem;
    }
}

.machine-features__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    text-align: center;
}

.machine-features__icon {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.machine-features__icon svg {
    width: 1.35rem;
    height: 1.35rem;
    stroke: var(--c-brand-green);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.machine-features__label {
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--c-text);
}

.machine-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 1rem;
}

@media (min-width: 1180px) {
    .machine-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
    }
}

.machine-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 0.25rem;
    background: transparent;
    border: none;
    cursor: var(--cursor-leaf);
    text-align: center;
}

.machine-card:focus-visible {
    outline: 2px solid var(--c-brand-green);
    outline-offset: 4px;
    border-radius: 4px;
}

.machine-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 14px 14px 0 0;
    overflow: hidden;
    background: #eef1ef;
}

.machine-card__media::after {
    content: '';
    position: absolute;
    left: -8%;
    right: -8%;
    bottom: -2px;
    height: 2.2rem;
    background: var(--c-white);
    border-radius: 100% 100% 0 0 / 100% 100% 0 0;
    pointer-events: none;
    z-index: 2;
}

.machine-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.5s ease;
}

.machine-card:hover .machine-card__media img {
    transform: scale(1.04);
}

.machine-card__icon {
    position: relative;
    z-index: 3;
    width: 2.85rem;
    height: 2.85rem;
    margin-top: -1.45rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0c1f14;
    border: 2px solid #4cc66a;
    box-shadow: 0 6px 16px rgba(4, 16, 36, 0.12), 0 0 0 1px rgba(76, 198, 106, 0.18);
}

.machine-card__icon svg {
    width: 1.2rem;
    height: 1.2rem;
    stroke: #5fe07a;
    color: #5fe07a;
    fill: none;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 4px rgba(95, 224, 122, 0.55));
}

.machine-card__title {
    margin: 0.85rem 0 0;
    padding: 0 0.35rem;
    font-size: clamp(0.72rem, 1vw, 0.82rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--c-text);
}

/* Makine görseli — tıklanınca ortada büyük önizleme */
.machine-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    padding: clamp(1rem, 4vw, 2.5rem);
}

.machine-lightbox[hidden] {
    display: none;
}

.machine-lightbox.is-open {
    display: flex;
}

.machine-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(247, 248, 247, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: var(--cursor-leaf);
}

.machine-lightbox__panel {
    position: relative;
    z-index: 1;
    width: min(1200px, 94vw);
    max-height: min(88vh, 900px);
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.machine-lightbox__img {
    display: block;
    width: 100%;
    max-height: min(82vh, 860px);
    object-fit: contain;
    background: transparent;
    box-shadow: 0 24px 80px rgba(4, 16, 36, 0.35);
}

.machine-lightbox__close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--c-white);
    background: var(--c-brand-green);
    border: none;
    border-radius: 50%;
    transform: translate(40%, -40%);
    cursor: var(--cursor-leaf);
    transition: background-color var(--t-fast);
}

.machine-lightbox__close:hover {
    background-color: #165524;
}

.machine-lightbox__nav {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-white);
    background: var(--c-brand-green);
    border: none;
    border-radius: 50%;
    cursor: var(--cursor-leaf);
    transition: background-color var(--t-fast), transform var(--t-fast);
}

.machine-lightbox__nav:hover {
    background-color: #165524;
    transform: scale(1.06);
}

.machine-lightbox__nav svg {
    display: block;
}

@media (max-width: 640px) {
    .machine-lightbox {
        flex-wrap: wrap;
        justify-content: center;
        align-content: center;
    }

    .machine-lightbox__nav {
        width: 2.5rem;
        height: 2.5rem;
    }

    .machine-lightbox__nav--prev,
    .machine-lightbox__nav--next {
        order: 2;
    }

    .machine-lightbox__panel {
        order: 1;
        width: 100%;
    }
}

/* ==========================================================================
   SPLIT SECTION
   ========================================================================== */
.split-navy {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    overflow: hidden;
    width: min(var(--wrap), calc(100% - 2 * var(--pad)));
    margin-left: auto;
    margin-right: auto;
    margin-top: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: clamp(3rem, 5vw, 4.5rem);
    border-radius: 14px;
}

/* ==========================================================================
   PROCESS FLOW — sağ üstüne yazıların oturduğu üretim akışı bölümü
   ========================================================================== */
.process-flow {
    position: relative;
    overflow: hidden;
    width: min(var(--wrap), calc(100% - 2 * var(--pad)));
    margin: clamp(3rem, 5vw, 4.5rem) auto;
    border-radius: 14px;
    min-height: clamp(380px, 36vw, 520px);
    color: var(--c-white);
    isolation: isolate;
    display: grid;
    grid-template-columns: 1fr;
    background-color: #0a1c2a;
}

@media (min-width: 760px) {
    .process-flow {
        grid-template-columns: 1fr 2fr;
    }
}

@media (max-width: 759px) {
    .process-flow {
        min-height: clamp(520px, 90vw, 640px);
    }
}

.process-flow__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.process-flow__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg,
            rgba(4, 16, 36, 0) 0%,
            rgba(4, 16, 36, 0) 30%,
            rgba(4, 16, 36, 0.35) 45%,
            rgba(4, 16, 36, 0.78) 58%,
            rgba(4, 16, 36, 0.97) 68%,
            rgba(4, 16, 36, 1) 75%,
            rgba(4, 16, 36, 1) 100%);
}

.process-list {
    position: relative;
    z-index: 2;
    list-style: none;
    margin: 0;
    padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(1rem, 2vw, 1.5rem);
    box-sizing: border-box;
    grid-column: 1;
    grid-row: 1;
}

@media (min-width: 760px) {
    .process-list {
        grid-column: 2;
        grid-row: 1;
        max-width: 28rem;
        margin-left: auto;
        padding-right: clamp(2rem, 4vw, 3.5rem);
    }
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: calc(50% + 1.85rem);
    left: 1.85rem;
    width: 0;
    height: calc(100% - 1rem);
    border-left: 2px dashed rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.process-step__icon {
    position: relative;
    z-index: 1;
    width: 3.7rem;
    height: 3.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    background: rgba(4, 16, 36, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease, background-color 0.35s ease;
}

.process-step:hover .process-step__icon,
.process-step:focus-within .process-step__icon {
    border-color: rgba(141, 232, 160, 0.95);
    background: rgba(30, 111, 46, 0.28);
    box-shadow:
        0 0 0 6px rgba(95, 224, 122, 0.15),
        0 0 22px rgba(95, 224, 122, 0.55),
        0 0 44px rgba(95, 224, 122, 0.35);
    transform: translateY(-2px);
}

.process-step__icon svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: none;
    stroke: var(--c-white);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.35s ease, filter 0.35s ease;
}

.process-step:hover .process-step__icon svg,
.process-step:focus-within .process-step__icon svg {
    stroke: #d6ffe0;
    filter: drop-shadow(0 0 6px rgba(141, 232, 160, 0.9));
}

.process-flow__simple {
    position: relative;
    z-index: 2;
    padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    grid-column: 1;
    grid-row: 1;
    color: var(--c-white);
}

@media (min-width: 760px) {
    .process-flow__simple {
        grid-column: 2;
        grid-row: 1;
        max-width: 30rem;
        margin-left: auto;
        padding-right: clamp(2rem, 4vw, 3.5rem);
    }
}

.process-flow__lead {
    margin: 0;
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
}

.process-flow__beacon {
    position: absolute;
    right: clamp(1rem, 2.5vw, 2rem);
    bottom: clamp(1rem, 2.5vw, 2rem);
    z-index: 3;
    width: clamp(3rem, 4vw, 3.75rem);
    height: clamp(3rem, 4vw, 3.75rem);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1.5px solid rgba(141, 232, 160, 0.65);
    background: rgba(4, 16, 36, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    animation: beaconPulse 2.4s ease-in-out infinite;
    transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.process-flow__beacon:hover,
.process-flow__beacon:focus-visible {
    transform: scale(1.12);
    border-color: rgba(141, 232, 160, 1);
    background: rgba(30, 111, 46, 0.45);
    outline: none;
}

.process-flow__beacon svg {
    width: 1.4rem;
    height: 1.4rem;
    fill: none;
    stroke: #d6ffe0;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: beaconIcon 2.4s ease-in-out infinite;
    transition: stroke 0.3s ease;
}

.process-flow__beacon:hover svg,
.process-flow__beacon:focus-visible svg {
    stroke: #ffffff;
}

.process-flow__beacon-tip {
    position: absolute;
    right: calc(100% + 0.85rem);
    top: 50%;
    transform: translateY(-50%) translateX(0.4rem);
    padding: 0.55rem 0.95rem;
    background: rgba(4, 16, 36, 0.92);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
    border-radius: 999px;
    border: 1px solid rgba(141, 232, 160, 0.5);
    box-shadow: 0 8px 24px rgba(4, 16, 36, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.25s ease;
}

.process-flow__beacon-tip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 0;
    height: 0;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 7px solid rgba(4, 16, 36, 0.92);
}

.process-flow__beacon:hover .process-flow__beacon-tip,
.process-flow__beacon:focus-visible .process-flow__beacon-tip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

@keyframes beaconPulse {
    0%, 100% {
        box-shadow:
            0 0 0 0 rgba(95, 224, 122, 0),
            0 0 12px rgba(95, 224, 122, 0.25);
        border-color: rgba(141, 232, 160, 0.45);
    }
    50% {
        box-shadow:
            0 0 0 10px rgba(95, 224, 122, 0.08),
            0 0 28px rgba(95, 224, 122, 0.7),
            0 0 52px rgba(95, 224, 122, 0.45);
        border-color: rgba(141, 232, 160, 1);
    }
}

@keyframes beaconIcon {
    0%, 100% {
        stroke: #c2f4cf;
        filter: drop-shadow(0 0 0 rgba(141, 232, 160, 0));
    }
    50% {
        stroke: #ffffff;
        filter: drop-shadow(0 0 6px rgba(141, 232, 160, 0.95));
    }
}

@media (prefers-reduced-motion: reduce) {
    .process-flow__beacon,
    .process-flow__beacon svg {
        animation: none;
    }
}

.process-step__title {
    margin: 0 0 0.2rem;
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--c-white);
}

.process-step__desc {
    margin: 0;
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    max-width: 22rem;
}

.process-step__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
}

.split-navy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .split-navy { grid-template-columns: 1fr 1fr; }
}

.split-navy__content {
    padding: var(--pad);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .split-navy__content { padding: clamp(3rem, 5vw, 5rem) clamp(2.5rem, 4vw, 4rem); }
}

.split-navy--image-left .split-navy__image {
    order: 1;
}

.split-navy--image-left .split-navy__content {
    order: 2;
}

.split-navy__lead {
    margin-bottom: 3rem;
    max-width: 720px;
    color: var(--c-white);
    background-color: rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--c-brand-gold);
    padding: 1.25rem 1.5rem;
    font-size: clamp(1.05rem, 1.35vw, 1.22rem);
    line-height: 1.75;
    font-weight: 500;
}

.split-navy__image {
    position: relative;
    min-height: clamp(300px, 32vw, 460px);
}

.split-navy__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4,16,36,0.32), rgba(4,16,36,0));
}

.split-navy__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   CERTIFICATIONS (Logolar)
   ========================================================================== */
.cert-section__title {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 1.25rem;
    padding-top: clamp(1rem, 2.5vw, 1.75rem);
}

.cert-section__lead {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
    color: var(--c-gray-600);
    line-height: 1.75;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #062a11;
    color: var(--c-white);
    padding: 2.25rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 0;
    justify-items: start;
    text-align: left;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: clamp(1.5rem, 4vw, 4rem);
    }
}

.footer-logo-block {
    grid-column: 1;
    justify-self: start;
    align-self: center;
    padding-left: 0;
    margin-left: calc(var(--pad) * -1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo-link img {
    display: block;
    width: clamp(160px, 18vw, 260px);
    height: auto;
    object-fit: contain;
}

.footer-logo-tagline {
    margin: 0;
    color: var(--c-white);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.4;
    max-width: 320px;
    padding-left: 0.5rem;
}

.footer-logo-tagline:empty {
    display: none;
}

.footer-links-block {
    grid-column: 2;
    justify-self: end;
    padding-left: 0;
    padding-right: clamp(1rem, 3vw, 3rem);
}

.footer-contact-block {
    grid-column: 3;
    max-width: 460px;
    padding-right: 0;
    margin-right: calc(var(--pad) * -1);
    justify-self: end;
    text-align: left;
}

.footer-quick-list {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: clamp(1.25rem, 2.5vw, 2.5rem);
    row-gap: 0.4rem;
}

.footer-quick-list li {
    margin-bottom: 0;
    line-height: 1.35;
}

.footer-quick-list li:nth-child(1) { grid-column: 1; grid-row: 1; }
.footer-quick-list li:nth-child(2) { grid-column: 1; grid-row: 2; }
.footer-quick-list li:nth-child(3) { grid-column: 1; grid-row: 3; }
.footer-quick-list li:nth-child(4) { grid-column: 2; grid-row: 1; }
.footer-quick-list li:nth-child(5) { grid-column: 2; grid-row: 2; }
.footer-quick-list li:nth-child(6) { grid-column: 2; grid-row: 3; }
.footer-quick-list li:nth-child(7) { grid-column: 2; grid-row: 4; }

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
}

.footer-contact-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
}

.footer-contact-icon svg {
    width: 100%;
    height: 100%;
}

.footer-contact-list a,
.footer-contact-text {
    color: var(--c-white);
    transition: color var(--t-fast);
    cursor: pointer;
}

.footer-contact-list a:hover,
.footer-contact-text:hover {
    color: var(--c-brand-gold);
}

.footer-logo img {
    height: 40px;
    margin-bottom: 2rem;
}

.footer-desc {
    color: var(--c-gray-400);
    font-size: 0.9375rem;
    max-width: 350px;
}

.footer-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.75rem; color: rgba(255, 255, 255, 0.92); font-size: 0.95rem; }
.footer-links a { color: var(--c-white); font-size: 0.9375rem; transition: color var(--t-fast); }
.footer-links a:hover { color: var(--c-brand-gold); }

.footer-contact p {
    color: var(--c-gray-400);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.footer-contact strong {
    color: var(--c-white);
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--c-gray-400);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-legal { display: flex; gap: 2rem; }
.footer-legal a:hover { color: var(--c-white); }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* ==========================================================================
   ÜRETİM PAGE
   ========================================================================== */
.page-main--prod {
    background: #eef0ec;
    padding-bottom: clamp(3rem, 5vw, 5rem);
}

/* --- HERO --- */
.prod-hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(360px, 48vw, 560px);
    padding: clamp(6.5rem, 11vw, 9rem) 0 clamp(3rem, 6vw, 5rem);
    color: #ffffff;
    overflow: hidden;
}

.prod-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url("../../bio-cup-uretim-hero.webp");
    background-size: cover;
    background-position: center right;
    background-color: #0f2a17;
    z-index: -2;
}

.prod-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(15, 42, 23, 0.96) 0%,
            rgba(15, 42, 23, 0.9) 38%,
            rgba(15, 42, 23, 0.55) 60%,
            rgba(15, 42, 23, 0.15) 90%,
            rgba(15, 42, 23, 0.05) 100%
        );
    z-index: -1;
}

.prod-hero__inner {
    position: relative;
}

.prod-hero__content {
    max-width: 38rem;
}

.prod-hero__title {
    font-size: clamp(2.8rem, 6.5vw, 5.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #ffffff;
    margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.prod-hero__text {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    max-width: 34rem;
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.prod-hero__features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.75rem, 1.4vw, 1.5rem);
    max-width: 36rem;
}

.prod-hero__feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
}

.prod-hero__feature-icon {
    width: clamp(2.3rem, 3vw, 2.75rem);
    height: clamp(2.3rem, 3vw, 2.75rem);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.prod-hero__feature-icon svg {
    width: 56%;
    height: 56%;
}

.prod-hero__feature-label {
    font-size: clamp(0.6rem, 0.7vw, 0.7rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.25;
}

@media (max-width: 768px) {
    .prod-hero__overlay {
        background: linear-gradient(180deg, rgba(15, 42, 23, 0.95), rgba(15, 42, 23, 0.85));
    }
    .prod-hero__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* --- SECTION CONTAINER --- */
.prod-section {
    padding: clamp(1.5rem, 3vw, 2.5rem) 0;
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 2.5vw, 2rem);
}

.prod-grid {
    display: grid;
    gap: clamp(1.5rem, 2.5vw, 2rem);
}

.prod-grid--top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    align-items: stretch;
}

.prod-grid--bottom {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    align-items: stretch;
}

@media (max-width: 1024px) {
    .prod-grid--top,
    .prod-grid--bottom {
        grid-template-columns: 1fr;
    }
}

/* --- CARD --- */
.prod-card {
    background: #ffffff;
    border-radius: 14px;
    padding: clamp(1.5rem, 2vw, 2.25rem);
    box-shadow: 0 4px 18px rgba(15, 30, 18, 0.08);
    border: 1px solid #e7eae6;
    display: flex;
    flex-direction: column;
}

.prod-card__title {
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #173a1f;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.prod-card__lead {
    font-size: clamp(0.85rem, 0.95vw, 0.95rem);
    line-height: 1.65;
    color: #4f5964;
    margin-bottom: 1.5rem;
    max-width: 36rem;
}

/* --- STATS --- */
.prod-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.75rem, 1.4vw, 1.25rem);
    margin-top: auto;
}

.prod-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.45rem;
    padding: 0.5rem 0.25rem;
}

.prod-stat__icon {
    width: clamp(2.4rem, 3vw, 2.85rem);
    height: clamp(2.4rem, 3vw, 2.85rem);
    border-radius: 50%;
    background: #eaf1ea;
    border: 1px solid #c8d8c8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1d4f29;
}

.prod-stat__icon svg {
    width: 55%;
    height: 55%;
}

.prod-stat__value {
    font-size: clamp(1.1rem, 1.4vw, 1.45rem);
    font-weight: 800;
    color: #173a1f;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.prod-stat__label {
    font-size: clamp(0.55rem, 0.65vw, 0.65rem);
    font-weight: 700;
    color: #4f5964;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.3;
}

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

/* --- MACHINES --- */
.prod-machines {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.85rem, 1.2vw, 1.2rem);
}

.prod-machine {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.prod-machine__media {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    background: #d5d8d4;
    margin-bottom: 0.35rem;
}

.prod-machine__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.prod-machine__title {
    font-size: clamp(0.7rem, 0.85vw, 0.85rem);
    font-weight: 800;
    color: #173a1f;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.25;
}

.prod-machine__text {
    font-size: clamp(0.7rem, 0.78vw, 0.78rem);
    line-height: 1.55;
    color: #4f5964;
}

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

/* --- PROCESS --- */
.prod-process {
    display: grid;
    grid-template-columns: repeat(9, auto);
    align-items: start;
    gap: 0.4rem 0.75rem;
    justify-content: space-between;
    margin-top: auto;
}

.prod-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.55rem;
    max-width: 9rem;
}

.prod-step__icon {
    width: clamp(2.5rem, 3.4vw, 3.1rem);
    height: clamp(2.5rem, 3.4vw, 3.1rem);
    border-radius: 50%;
    background: #1f5a2c;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.prod-step__icon svg {
    width: 55%;
    height: 55%;
}

.prod-step__num {
    font-size: clamp(0.78rem, 0.9vw, 0.9rem);
    font-weight: 800;
    color: #173a1f;
    letter-spacing: 0.04em;
}

.prod-step__title {
    font-size: clamp(0.62rem, 0.7vw, 0.72rem);
    font-weight: 800;
    color: #173a1f;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.25;
}

.prod-step__text {
    font-size: clamp(0.6rem, 0.68vw, 0.68rem);
    line-height: 1.5;
    color: #4f5964;
}

.prod-step__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1f5a2c;
    width: 1.5rem;
    align-self: center;
    margin-top: clamp(1rem, 1.5vw, 1.35rem);
}

.prod-step__arrow svg {
    width: 100%;
    height: auto;
}

@media (max-width: 900px) {
    .prod-process {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .prod-step__arrow {
        transform: rotate(90deg);
        margin-top: 0;
        margin-bottom: 0;
    }
    .prod-step {
        max-width: none;
    }
}

/* --- CERTIFICATIONS --- */
.prod-certs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(0.6rem, 1vw, 1rem);
    margin-top: auto;
}

.prod-cert {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.45rem;
}

.prod-cert__badge {
    width: clamp(3.4rem, 4.4vw, 4.2rem);
    height: clamp(3.4rem, 4.4vw, 4.2rem);
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #173a1f;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #173a1f;
    position: relative;
    padding: 0.25rem;
    box-shadow: 0 2px 6px rgba(15, 30, 18, 0.08);
}

.prod-cert__badge--circle {
    background: #ffffff;
}

.prod-cert__badge-top {
    font-size: clamp(0.55rem, 0.7vw, 0.72rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
}

.prod-cert__badge-bot {
    font-size: clamp(0.7rem, 0.95vw, 1rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.1;
    color: #173a1f;
}

.prod-cert__badge--brc {
    background: #1f5a2c;
    border-color: #1f5a2c;
    color: #ffffff;
}

.prod-cert__badge--brc .prod-cert__badge-top,
.prod-cert__badge--brc .prod-cert__badge-bot {
    color: #ffffff;
}

.prod-cert__badge--brc .prod-cert__badge-top {
    font-size: clamp(0.7rem, 1vw, 0.95rem);
}

.prod-cert__badge--brc .prod-cert__badge-bot {
    font-size: clamp(0.42rem, 0.55vw, 0.55rem);
    letter-spacing: 0.06em;
}

.prod-cert__badge--leaf {
    border: none;
    background: transparent;
    color: #173a1f;
    box-shadow: none;
    padding: 0;
}

.prod-cert__badge--leaf svg {
    width: 100%;
    height: 100%;
}

.prod-cert__badge-label {
    position: absolute;
    inset: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.55rem, 0.65vw, 0.65rem);
    font-weight: 800;
    color: #173a1f;
}

.prod-cert__label {
    font-size: clamp(0.55rem, 0.65vw, 0.65rem);
    font-weight: 700;
    color: #4f5964;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.3;
}

@media (max-width: 720px) {
    .prod-certs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

/* ==========================================================================
   HAMBURGER / MOBILE MENU TOGGLE  (header)
   ========================================================================== */
.header__menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    padding: 0;
    transition: border-color var(--t-fast), background-color var(--t-fast);
    cursor: var(--cursor-leaf);
}

.header__menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #0f2a17;
    border-radius: 2px;
    transition: transform 0.28s ease, opacity 0.28s ease;
    transform-origin: center;
}

.header__menu-toggle:hover {
    border-color: rgba(30, 111, 46, 0.45);
    background: rgba(30, 111, 46, 0.06);
}

.header__menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.2);
}

.header__menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1179px) {
    .header__menu-toggle {
        display: inline-flex;
    }
    .header__cta {
        display: none;
    }

    .header .wrap {
        max-width: 100%;
        padding-right: max(0.5rem, env(safe-area-inset-right, 0px));
    }

    .header__inner {
        gap: 0.65rem;
        min-width: 0;
    }

    .header__logo {
        min-width: 0;
        flex-shrink: 1;
    }

    .header__actions {
        flex-shrink: 0;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .lang-switcher__trigger {
        min-width: auto;
        padding: 0.4rem 0.55rem;
        font-size: 0.82rem;
    }

    .header__logo img {
        width: clamp(96px, 26vw, 112px);
    }
}

/* ==========================================================================
   MOBILE MENU DRAWER
   ========================================================================== */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
    visibility: hidden;
    overflow: hidden;
}

.mobile-menu.is-open {
    pointer-events: auto;
    visibility: visible;
}

.mobile-menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 16, 36, 0.55);
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: var(--cursor-leaf);
    z-index: 0;
}

.mobile-menu.is-open .mobile-menu__overlay {
    opacity: 1;
}

.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(92vw, 380px);
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f6f8f5 100%);
    box-shadow: -18px 0 40px rgba(4, 16, 36, 0.16);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.36s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
    z-index: 1;
}

.mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0);
}

.mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
}

.mobile-menu__logo img {
    height: 36px;
    width: auto;
    display: block;
}

.mobile-menu__close {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f2a17;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 6px;
    transition: background-color var(--t-fast), border-color var(--t-fast);
}

.mobile-menu__close svg {
    width: 20px;
    height: 20px;
}

.mobile-menu__close:hover {
    background: rgba(30, 111, 46, 0.06);
    border-color: rgba(30, 111, 46, 0.4);
}

.mobile-menu__nav {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem 0 1.25rem;
}

.mobile-menu__link,
.mobile-menu__group-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.95rem 1.5rem;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0f2a17;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    transition: background-color var(--t-fast), color var(--t-fast);
    cursor: var(--cursor-leaf);
    list-style: none;
}

.mobile-menu__group-toggle::-webkit-details-marker {
    display: none;
}

.mobile-menu__link:hover,
.mobile-menu__group-toggle:hover {
    background: rgba(30, 111, 46, 0.05);
    color: var(--c-brand-green);
}

.mobile-menu__group-toggle svg {
    width: 18px;
    height: 18px;
    transition: transform 0.25s ease;
    color: rgba(15, 42, 23, 0.6);
}

.mobile-menu__group[open] .mobile-menu__group-toggle svg {
    transform: rotate(180deg);
}

.mobile-menu__group[open] .mobile-menu__group-toggle {
    color: var(--c-brand-green);
    background: rgba(30, 111, 46, 0.05);
}

.mobile-menu__sublinks {
    display: flex;
    flex-direction: column;
    background: #f3f6f1;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    animation: mobile-sub-in 0.25s ease both;
}

@keyframes mobile-sub-in {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-menu__sublinks a {
    display: block;
    padding: 0.7rem 1.5rem 0.7rem 2.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #2a3b2e;
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
    transition: background-color var(--t-fast), color var(--t-fast), padding-left var(--t-fast);
    position: relative;
}

.mobile-menu__sublinks a::before {
    content: "";
    position: absolute;
    left: 1.5rem;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(30, 111, 46, 0.4);
    transform: translateY(-50%);
}

.mobile-menu__sublinks a:hover {
    background: #ffffff;
    color: var(--c-brand-green);
    padding-left: 2.7rem;
}

.mobile-menu__sublinks a:last-child {
    border-bottom: 0;
}

.mobile-menu__cta {
    display: block;
    margin: 1rem 1.5rem 0.25rem;
    padding: 0.95rem 1.25rem;
    background: var(--c-brand-green);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    border-radius: 4px;
    transition: background-color var(--t-fast);
}

.mobile-menu__cta:hover {
    background: #176324;
    color: #ffffff;
}

.mobile-menu__footer {
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
}

.mobile-menu__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-brand-green);
    letter-spacing: -0.005em;
}

.mobile-menu__phone svg {
    width: 18px;
    height: 18px;
}

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

/* ==========================================================================
   CTA BAND  (replaces old section-divider — premium agency style)
   ========================================================================== */
.cta-band {
    position: relative;
    isolation: isolate;
    padding: clamp(2.75rem, 5vw, 4.5rem) 0;
    overflow: hidden;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.cta-band__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(1200px 320px at 8% 10%, rgba(30, 111, 46, 0.10), transparent 65%),
        radial-gradient(900px 280px at 92% 90%, rgba(203, 157, 56, 0.10), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f4f7f2 100%);
}

.cta-band__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(15, 42, 23, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 42, 23, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    background-position: 0 0;
    mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
    opacity: 0.6;
}

.cta-band--sustain .cta-band__bg {
    background:
        radial-gradient(1100px 300px at 92% 10%, rgba(30, 111, 46, 0.16), transparent 60%),
        linear-gradient(180deg, #0e2a17 0%, #133b22 100%);
}

.cta-band--sustain {
    color: #ffffff;
    border-top: none;
    border-bottom: none;
}

.cta-band--sustain .cta-band__bg::after {
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}

.cta-band__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 2.5vw, 2.25rem);
    align-items: center;
}

@media (min-width: 900px) {
    .cta-band__inner {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: clamp(2rem, 4vw, 4rem);
    }
}

.cta-band__content {
    max-width: 56rem;
}

.cta-band__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-brand-green);
    padding: 0.35rem 0.85rem;
    background: rgba(30, 111, 46, 0.08);
    border: 1px solid rgba(30, 111, 46, 0.18);
    border-radius: 999px;
    margin-bottom: 1rem;
}

.cta-band--sustain .cta-band__eyebrow {
    color: #d1e6c8;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-band__title {
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    font-weight: 800;
    line-height: 1.25;
    color: #0f2a17;
    letter-spacing: -0.015em;
    margin-bottom: 0.65rem;
}

.cta-band__title em {
    font-style: normal;
    color: var(--c-brand-green);
    background: linear-gradient(90deg, var(--c-brand-green), #38a04e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-band--sustain .cta-band__title {
    color: #ffffff;
}

.cta-band--sustain .cta-band__title em {
    background: linear-gradient(90deg, #cb9d38, #f1d57d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-band__text {
    font-size: clamp(0.92rem, 1.05vw, 1.02rem);
    line-height: 1.7;
    color: #4f5964;
    max-width: 48rem;
}

.cta-band--sustain .cta-band__text {
    color: rgba(255, 255, 255, 0.85);
}

.cta-band__action {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.95rem 1.5rem;
    background: var(--c-brand-green);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
    white-space: nowrap;
    box-shadow: 0 8px 22px rgba(30, 111, 46, 0.22);
}

.cta-band__action:hover {
    background: #176324;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(30, 111, 46, 0.28);
}

.cta-band__action svg {
    width: 16px;
    height: 16px;
    transition: transform var(--t-fast);
}

.cta-band__action:hover svg {
    transform: translateX(3px);
}

.cta-band--sustain .cta-band__action {
    background: #f4d27a;
    color: #2a1d05;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.cta-band--sustain .cta-band__action:hover {
    background: #ffe39a;
    color: #2a1d05;
}

/* Backward-compat: keep old .section-divider visually similar in case anything still uses it */
.section-divider {
    background: #ffffff;
}

/* ==========================================================================
   EXPORT HEADING — eyebrow, emphasis, stats
   ========================================================================== */
.export-heading__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #f1d57d;
    padding: 0.35rem 0.85rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    margin-bottom: 1rem;
}

.export-heading__title em {
    font-style: normal;
    color: #f4d27a;
    background: linear-gradient(90deg, #f4d27a, #ffe39a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.export-heading__text strong {
    color: #ffffff;
    font-weight: 700;
}

.export-stats {
    list-style: none;
    margin: clamp(2rem, 3.5vw, 3rem) 0 0;
    padding: clamp(1.25rem, 2vw, 1.75rem) clamp(1.25rem, 2.5vw, 2rem);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.export-stats li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border-left: 2px solid rgba(255, 255, 255, 0.18);
    padding-left: clamp(0.85rem, 1.4vw, 1.25rem);
}

.export-stats li:first-child {
    border-left-color: #f4d27a;
}

.export-stats strong {
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 0.35rem;
}

.export-stats span {
    font-size: clamp(0.7rem, 0.8vw, 0.82rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.35;
}

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

@media (max-width: 420px) {
    .export-stats {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   INNOVATION SECTION — eyebrow
   ========================================================================== */
.innovation-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #d1e6c8;
    padding: 0.35rem 0.85rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    margin-bottom: 1.15rem;
    text-shadow: none;
}

/* ==========================================================================
   SITE FOOTER — new professional design
   ========================================================================== */
.site-footer {
    background:
        radial-gradient(900px 320px at 100% 0%, rgba(30, 111, 46, 0.22), transparent 60%),
        radial-gradient(900px 360px at 0% 100%, rgba(203, 157, 56, 0.10), transparent 60%),
        linear-gradient(180deg, #062a11 0%, #03150a 100%);
    color: #ffffff;
    position: relative;
    isolation: isolate;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    z-index: -1;
    mask-image: radial-gradient(ellipse at center, #000 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 80%);
}

.site-footer__top {
    padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(2rem, 4vw, 3.25rem);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 3.5vw, 3rem);
}

@media (min-width: 720px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: clamp(2rem, 4vw, 3.5rem);
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .site-footer__col--contact {
        justify-self: start;
        text-align: left;
        max-width: none;
    }
}

@media (min-width: 1100px) {
    .site-footer__grid {
        grid-template-columns: 1.5fr 1fr 1.2fr;
    }

    .site-footer__brand {
        grid-column: auto;
    }

    .site-footer__col--contact { justify-self: start; }
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.site-footer__logo {
    display: inline-flex;
    width: fit-content;
}

.site-footer__logo img {
    height: clamp(40px, 4.5vw, 56px);
    width: auto;
    display: block;
}

.site-footer__tagline {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #f4d27a;
    text-transform: uppercase;
}

.site-footer__about {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 26rem;
}

.site-footer__socials {
    list-style: none;
    display: flex;
    gap: 0.6rem;
    margin: 0.35rem 0 0;
    padding: 0;
}

.site-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.88);
    transition: background-color var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}

.site-footer__socials a svg {
    width: 18px;
    height: 18px;
}

.site-footer__socials a:hover {
    background: var(--c-brand-gold);
    border-color: var(--c-brand-gold);
    color: #2a1d05;
    transform: translateY(-2px);
}

.site-footer__title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 1.15rem;
    position: relative;
    padding-bottom: 0.7rem;
}

.site-footer__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: var(--c-brand-gold);
    border-radius: 2px;
}

.site-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
}

.site-footer__links a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    transition: color var(--t-fast), padding-left var(--t-fast);
    position: relative;
    padding-left: 0;
}

.site-footer__links a::before {
    content: "›";
    color: var(--c-brand-gold);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity var(--t-fast), transform var(--t-fast);
    margin-right: 0;
    width: 0;
}

.site-footer__links a:hover {
    color: #ffffff;
    padding-left: 0.4rem;
}

.site-footer__links a:hover::before {
    opacity: 1;
    transform: translateX(0);
    width: 0.6rem;
    margin-right: 0.25rem;
}

.site-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.site-footer__contact li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.site-footer__contact > li > div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.site-footer__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(244, 210, 122, 0.12);
    border: 1px solid rgba(244, 210, 122, 0.28);
    color: #f4d27a;
}

.site-footer__icon svg {
    width: 16px;
    height: 16px;
}

.site-footer__label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.site-footer__contact a {
    color: #ffffff;
    font-size: 0.92rem;
    line-height: 1.55;
    font-weight: 500;
    transition: color var(--t-fast);
    word-break: break-word;
}

.site-footer__contact a:hover {
    color: var(--c-brand-gold);
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.2rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.site-footer__bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

@media (min-width: 720px) {
    .site-footer__bottom-inner {
        flex-direction: row;
        text-align: left;
    }
}

.site-footer__copy {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.01em;
}

.site-footer__legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.4rem;
    align-items: center;
    justify-content: center;
}

.site-footer__legal a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--t-fast);
    position: relative;
}

.site-footer__legal li + li a::before {
    content: "";
    position: absolute;
    left: -0.75rem;
    top: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
}

.site-footer__legal a:hover {
    color: var(--c-brand-gold);
}

/* ==========================================================================
   LEGAL / KVKK PAGE
   ========================================================================== */
.legal-page {
    background: #f7f8f4;
    padding-bottom: clamp(3rem, 6vw, 5rem);
    min-height: 60vh;
}

.legal-hero {
    background:
        radial-gradient(1000px 320px at 0% 0%, rgba(30, 111, 46, 0.22), transparent 60%),
        radial-gradient(900px 280px at 100% 100%, rgba(203, 157, 56, 0.14), transparent 60%),
        linear-gradient(180deg, #0e2a17 0%, #0a1f10 100%);
    color: #ffffff;
    padding: clamp(7rem, 13vw, 10rem) 0 clamp(2.75rem, 5vw, 4rem);
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.legal-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at top right, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at top right, #000 0%, transparent 75%);
    opacity: 0.7;
}

.legal-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.25rem;
}

.legal-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--t-fast);
}

.legal-breadcrumb a:hover {
    color: var(--c-brand-gold);
}

.legal-breadcrumb span[aria-hidden="true"] {
    color: rgba(255, 255, 255, 0.35);
}

.legal-breadcrumb [aria-current="page"] {
    color: #ffffff;
}

.legal-hero__title {
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 0.85rem;
}

.legal-hero__meta {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.legal-content {
    padding-top: clamp(2.5rem, 4vw, 3.5rem);
}

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

@media (min-width: 960px) {
    .legal-content__inner {
        grid-template-columns: 260px minmax(0, 1fr);
    }
}

.legal-toc {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    padding: 1.25rem 1.25rem;
    box-shadow: 0 6px 18px rgba(15, 30, 18, 0.04);
    position: sticky;
    top: 100px;
    align-self: start;
}

.legal-toc__title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0f2a17;
    margin: 0 0 0.85rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.legal-toc__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    counter-reset: toc;
}

.legal-toc__list a {
    display: block;
    padding: 0.4rem 0.55rem;
    font-size: 0.85rem;
    color: #4f5964;
    border-radius: 6px;
    transition: background-color var(--t-fast), color var(--t-fast);
    line-height: 1.4;
}

.legal-toc__list a:hover {
    background: rgba(30, 111, 46, 0.06);
    color: var(--c-brand-green);
}

.legal-article {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 14px;
    padding: clamp(1.5rem, 3vw, 2.75rem);
    box-shadow: 0 10px 30px rgba(15, 30, 18, 0.05);
}

.legal-article__intro {
    font-size: 1rem;
    line-height: 1.75;
    color: #2a3b2e;
    padding-bottom: 1.5rem;
    margin-bottom: 1.75rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.legal-article h2 {
    font-size: clamp(1.15rem, 1.5vw, 1.4rem);
    font-weight: 800;
    color: #0f2a17;
    letter-spacing: -0.01em;
    margin: 1.85rem 0 0.85rem;
    padding-top: 0.75rem;
    scroll-margin-top: 110px;
}

.legal-article p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #3a4540;
    margin-bottom: 1rem;
}

.legal-article a {
    color: var(--c-brand-green);
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color var(--t-fast), color var(--t-fast);
}

.legal-article a:hover {
    color: #176324;
    border-bottom-color: var(--c-brand-green);
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #3a4540;
}

.legal-list li::before {
    content: "";
    position: absolute;
    left: 0.4rem;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-brand-green);
}

.legal-meta-box {
    background: #f4f7f2;
    border-left: 3px solid var(--c-brand-green);
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.legal-meta-box p {
    margin: 0.25rem 0;
    font-size: 0.92rem;
    color: #2a3b2e;
}

.legal-meta-box strong {
    color: #0f2a17;
    font-weight: 700;
    display: inline-block;
    min-width: 84px;
}

.legal-callout {
    margin-top: 2.5rem;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, #0e2a17 0%, #133b22 100%);
    border-radius: 12px;
    color: #ffffff;
}

.legal-callout h3 {
    font-size: 1.15rem;
    color: #ffffff;
    margin: 0 0 0.45rem;
}

.legal-callout p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 1rem;
}

.legal-callout__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.legal-callout__actions .btn {
    text-decoration: none;
    border-bottom: 0;
}

.legal-callout__actions .btn.btn-primary {
    color: #ffffff;
    border-color: var(--c-brand-green);
}

.legal-callout__actions .btn.btn-primary:hover {
    color: #ffffff;
    border-color: var(--c-navy);
}

.legal-callout .btn {
    padding: 0.7rem 1.1rem;
    font-size: 0.78rem;
}

.legal-callout .btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.legal-callout .btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    color: #ffffff;
}

@media (max-width: 959px) {
    .legal-toc {
        position: static;
        top: auto;
    }
}

/* ==========================================================================
   AGENCY-LEVEL TRANSPARENT HEADER OVERRIDES FOR INDEX PAGE (SCROLL TOP)
   ========================================================================== */
@media (min-width: 1024px) {
    /* Transparent header state when NOT scrolled (only on index) */
    .header:not(.is-scrolled) {
        background-color: transparent;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: none;
        backdrop-filter: none;
        padding: 1.5rem 0; /* slightly taller and more premium at top */
    }

    /* Change link colors to white on transparent background */
    .header:not(.is-scrolled) .header__nav-link {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .header:not(.is-scrolled) .header__nav-link::after {
        background: var(--c-brand-gold); /* elegant gold active/hover underline on dark hero */
    }

    .header:not(.is-scrolled) .header__nav-link:hover {
        color: var(--c-brand-gold);
    }

    /* Active state links should be gold on transparent dark */
    .header:not(.is-scrolled) .header__nav-link.is-active {
        color: var(--c-brand-gold);
    }

    /* Make logo stand out (turn white) on dark video background */
    .header:not(.is-scrolled) .header__logo img {
        filter: brightness(0) invert(1);
        opacity: 0.95;
        transition: filter var(--t-base), opacity var(--t-base);
    }

    /* Language switcher trigger on transparent dark */
    .header:not(.is-scrolled) .lang-switcher__trigger {
        border-color: rgba(255, 255, 255, 0.25);
        color: var(--c-white);
        background-color: rgba(255, 255, 255, 0.05);
    }

    .header:not(.is-scrolled) .lang-switcher__trigger:hover {
        border-color: var(--c-brand-gold);
        background-color: rgba(255, 255, 255, 0.15);
        color: var(--c-brand-gold);
    }
}

/* Active navigation state for both transparent and scrolled headers */
.header__nav-link.is-active {
    color: var(--c-brand-green);
}
.header__nav-link.is-active::after {
    transform: scaleX(1);
}

/* Smooth transition for logo filters */
.header__logo img {
    transition: filter var(--t-base), transform var(--t-base);
}

/* Mobile: keep the same transparent -> solid scroll behavior as desktop */
@media (max-width: 1023px) {
    .header:not(.is-scrolled) {
        background-color: transparent;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: none;
        backdrop-filter: none;
    }

    .header:not(.is-scrolled) .header__logo img {
        filter: brightness(0) invert(1);
        opacity: 0.95;
    }

    .header:not(.is-scrolled) .header__menu-toggle {
        border-color: rgba(255, 255, 255, 0.32);
        background: rgba(255, 255, 255, 0.08);
    }

    .header:not(.is-scrolled) .header__menu-toggle span {
        background: #ffffff;
    }

    .header:not(.is-scrolled) .lang-switcher__trigger {
        border-color: rgba(255, 255, 255, 0.25);
        color: var(--c-white);
        background-color: rgba(255, 255, 255, 0.05);
    }

    .header:not(.is-scrolled) .lang-switcher__trigger:hover,
    .header:not(.is-scrolled) .lang-switcher[open] .lang-switcher__trigger {
        border-color: var(--c-brand-gold);
        background-color: rgba(255, 255, 255, 0.15);
        color: var(--c-brand-gold);
    }
}

