

:root {
    --nk-green-dark: #236734;
    --nk-green-deep: #032b15;
    --nk-green: #01914c;
    --nk-green-soft: #4f8f3a;
    --nk-leaf: #83b63f;
    --nk-cream: #fff7df;
    --nk-cream-2: #f7edca;
    --nk-straw: #e8cf86;
    --nk-orange: #f28a18;
    --nk-orange-dark: #d46f0d;
    --nk-yolk: #f7bd28;
    --nk-brown: #6b4b28;
    --nk-white: #ffffff;
    --nk-black: #101510;
    --nk-font-heading: "Urbane", system-ui, sans-serif;
    --nk-font-body: "Urbane", system-ui, sans-serif;
    --nk-radius-sm: 14px;
    --nk-radius-md: 22px;
    --nk-radius-lg: 34px;
    --nk-radius-pill: 999px;
    --nk-header-height: 88px;
    --nk-container: 1440px;
    --nk-ease: cubic-bezier(.16, 1, .3, 1);
}
body{
    margin:0;
}
a{
    text-decoration:inherit;
}
/* ==========================================================================
   URBANE FONT FAMILY
   ========================================================================== */

/* Thin & Thin Italic (100) */
@font-face {
    font-family: 'Urbane';
    src: url('/assets/fonts/Urbane-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbane';
    src: url('/assets/fonts/Urbane-Thin-Italic.woff2') format('woff2');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

/* Extra Light & Extra Light Italic (200) */
@font-face {
    font-family: 'Urbane';
    src: url('/assets/fonts/Urbane-Extra-Light.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbane';
    src: url('/assets/fonts/Urbane-Extra-Light-Italic.woff2') format('woff2');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

/* Light & Light Italic (300) */
@font-face {
    font-family: 'Urbane';
    src: url('/assets/fonts/Urbane-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbane';
    src: url('/assets/fonts/Urbane-Light-Italic.woff2') format('woff2');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

/* Medium & Medium Italic (500) */
@font-face {
    font-family: 'Urbane';
    src: url('/assets/fonts/Urbane-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbane';
    src: url('/assets/fonts/Urbane-Medium-Italic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* Demi Bold & Demi Bold Italic (600) */
@font-face {
    font-family: 'Urbane';
    src: url('/assets/fonts/Urbane-Demi-Bold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbane';
    src: url('/assets/fonts/Urbane-Demi-Bold-Italic.woff2') format('woff2');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

/* Bold & Bold Italic (700) */
@font-face {
    font-family: 'Urbane';
    src: url('/assets/fonts/Urbane-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbane';
    src: url('/assets/fonts/Urbane-Bold-Italic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* Heavy & Heavy Italic (900) */
@font-face {
    font-family: 'Urbane';
    src: url('/assets/fonts/Urbane-Heavy.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbane';
    src: url('/assets/fonts/Urbane-Heavy-Italic.woff2') format('woff2');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}
.naturakoy-header,
.naturakoy-header *,
.naturakoy-header-menu,
.naturakoy-header-menu * {
    box-sizing: border-box;
}

    .naturakoy-header a,
    .naturakoy-header-menu a {
        color: inherit;
        text-decoration: none;
    }

.naturakoy-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 9000;
    height: var(--nk-header-height);
    background: transparent;
    color: var(--nk-white);
    font-family: var(--nk-font-body);
    transition: background .35s var(--nk-ease), color .35s var(--nk-ease), box-shadow .35s var(--nk-ease), border-color .35s var(--nk-ease);
}

    .naturakoy-header.is-scrolled {
        background: rgba(255, 255, 255, .94);
        color: var(--nk-green-dark);
        border-bottom: 1px solid rgba(6, 65, 31, .10);
        box-shadow: 0 18px 40px -34px rgba(6, 65, 31, .38);
        backdrop-filter: blur(16px);
    }
    .naturakoy-header.is-scrolled .naturakoy-header-inner {
    margin: 0 auto;
}

.naturakoy-header-inner {
    width: min(var(--nk-container), calc(100% - 48px));
    height: 100%;
    margin: 5px auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
}

.naturakoy-header-menu-btn {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 50%;
    background: rgba(6, 65, 31, .62);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    transition: transform .3s var(--nk-ease), background .3s var(--nk-ease), border-color .3s var(--nk-ease);
}

    .naturakoy-header-menu-btn span {
        display: block;
        width: 22px;
        height: 2px;
        margin: 0 auto;
        border-radius: 999px;
        background: var(--nk-white);
    }

    .naturakoy-header-menu-btn:hover {
        transform: translateY(-2px);
        background: var(--nk-green-dark);
    }

.naturakoy-header.is-scrolled .naturakoy-header-menu-btn {
    background: var(--nk-green-dark);
    border-color: var(--nk-green-dark);
}

.naturakoy-header-logo {
    width: 146px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
}
.naturakoy-header.is-scrolled .naturakoy-header-logo {
    width: 95px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
}

    .naturakoy-header-logo img {
        width: 100%;
        height: auto;
        display: block;
    }



/* FULL MENU */
.naturakoy-header-menu {
    position: fixed;
    inset: 0;
    z-index: 9500;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: radial-gradient(circle at 8% 12%, rgba(255, 247, 223, .14), transparent 28%), radial-gradient(circle at 88% 16%, rgba(247, 189, 40, .15), transparent 30%), linear-gradient(135deg, var(--nk-green-dark) 0%, var(--nk-green) 52%, #6f9f38 100%);
    color: var(--nk-white);
    font-family: var(--nk-font-body);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.012);
    transition: opacity .42s var(--nk-ease), visibility .42s var(--nk-ease), transform .42s var(--nk-ease);
}

    .naturakoy-header-menu.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: scale(1);
    }

.naturakoy-header-menu-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.naturakoy-header-bg-soft {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: rgba(255, 247, 223, .08);
}

.naturakoy-header-bg-soft-left {
    width: 520px;
    height: 520px;
    left: -260px;
    top: -170px;
}

.naturakoy-header-bg-soft-right {
    width: 600px;
    height: 600px;
    right: -290px;
    bottom: -260px;
}

.naturakoy-header-bg-egg {
    position: absolute;
    right: 10%;
    top: 12%;
    width: 170px;
    height: 220px;
    border-radius: 50% 50% 46% 46%;
    background: radial-gradient(circle at 35% 24%, rgba(255,255,255,.40), rgba(255,247,223,.13) 58%, rgba(247,189,40,.18));
    transform: rotate(14deg);
    opacity: .42;
}

/* TOP */
.naturakoy-header-menu-top {
    position: relative;
    z-index: 4;
    width: min(var(--nk-container), calc(100% - 48px));
    height: 100px;
    flex: 0 0 auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
}

.naturakoy-header-close {
    width: 52px;
    height: 52px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 50%;
    background: rgba(255, 255, 255, .10);
    cursor: pointer;
    transition: background .3s var(--nk-ease), transform .3s var(--nk-ease);
}

    .naturakoy-header-close:hover {
        background: rgba(255, 255, 255, .18);
        transform: rotate(90deg);
    }

    .naturakoy-header-close span {
        position: absolute;
        left: 14px;
        top: 25px;
        width: 24px;
        height: 2px;
        border-radius: 999px;
        background: var(--nk-white);
    }

        .naturakoy-header-close span:first-child {
            transform: rotate(45deg);
        }

        .naturakoy-header-close span:last-child {
            transform: rotate(-45deg);
        }

.naturakoy-header-menu-logo {
    width: 126px;
    min-height: 80px;
    justify-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 20px;
}

    .naturakoy-header-menu-logo img {
        width: 100%;
        height: auto;
        display: block;
    }

.naturakoy-header-menu-franchise {
    justify-self: end;
    background: var(--nk-white);
    color: var(--nk-green-dark) !important;
}

    .naturakoy-header-menu-franchise:hover {
        background: var(--nk-yolk);
        color: var(--nk-green-dark) !important;
        transform: translateY(-2px);
    }

/* BODY */
.naturakoy-header-menu-body {
    position: relative;
    z-index: 3;
    width: min(var(--nk-container), calc(100% - 48px));
    flex: 1 1 auto;
    min-height: 0;
    margin: 0 auto;
    padding: 28px 0 18px;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, 470px);
    gap: clamp(28px, 5vw, 68px);
    align-items: start;
    overflow: hidden;
}

/* LEFT NAV */
.naturakoy-header-main-nav {
    display: grid;
    gap: 6px;
    align-content: start;
}

    .naturakoy-header-main-nav a {
        position: relative;
        width: fit-content;
        max-width: 100%;
        color: rgba(255, 255, 255, .92);
        font-family: var(--nk-font-heading);
        font-size: clamp(32px, 4vw, 58px);
        line-height: 1.15;
        font-weight: 900;
        letter-spacing: -.04em;
        opacity: 0;
        transform: translateY(18px);
        transition: color .25s var(--nk-ease), opacity .25s var(--nk-ease);
    }

        .naturakoy-header-main-nav a::before {
            content: "";
            position: absolute;
            left: -18px;
            top: 50%;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--nk-yolk);
            opacity: 0;
            transform: translateY(-50%) scale(.6);
            transition: opacity .25s var(--nk-ease), transform .25s var(--nk-ease);
        }

        .naturakoy-header-main-nav a:hover,
        .naturakoy-header-main-nav a.is-active {
            color: var(--nk-cream);
        }

            .naturakoy-header-main-nav a:hover::before,
            .naturakoy-header-main-nav a.is-active::before {
                opacity: 1;
                transform: translateY(-50%) scale(1);
            }

.naturakoy-header-menu.is-open .naturakoy-header-main-nav a {
    animation: naturakoyMenuLinkIn .65s var(--nk-ease) forwards;
}

    .naturakoy-header-menu.is-open .naturakoy-header-main-nav a:nth-child(1) {
        animation-delay: .05s;
    }

    .naturakoy-header-menu.is-open .naturakoy-header-main-nav a:nth-child(2) {
        animation-delay: .10s;
    }

    .naturakoy-header-menu.is-open .naturakoy-header-main-nav a:nth-child(3) {
        animation-delay: .15s;
    }

    .naturakoy-header-menu.is-open .naturakoy-header-main-nav a:nth-child(4) {
        animation-delay: .20s;
    }

    .naturakoy-header-menu.is-open .naturakoy-header-main-nav a:nth-child(5) {
        animation-delay: .25s;
    }

    .naturakoy-header-menu.is-open .naturakoy-header-main-nav a:nth-child(6) {
        animation-delay: .30s;
    }

    .naturakoy-header-menu.is-open .naturakoy-header-main-nav a:nth-child(7) {
        animation-delay: .35s;
    }

/* RIGHT PREVIEW */
.naturakoy-header-preview {
    min-width: 0;
}

.naturakoy-header-preview-panel {
    display: none;
    min-height: 420px;
    padding: 26px;
    border-radius: 30px;
    background: radial-gradient(circle at 100% 0%, rgba(247, 189, 40, .14), transparent 35%), rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .20);
    backdrop-filter: blur(16px);
    box-shadow: 0 34px 90px -66px rgba(0,0,0,.55);
    overflow: hidden;
}

    .naturakoy-header-preview-panel.is-active {
        display: block;
        animation: naturakoyHeaderPanelIn .38s var(--nk-ease) both;
    }

.naturakoy-header-preview-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--nk-cream);
    font-family: var(--nk-font-heading);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.naturakoy-header-preview-panel h3 {
    margin: 0;
    color: var(--nk-white);
    font-family: var(--nk-font-heading);
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -.035em;
}

.naturakoy-header-preview-panel p {
    margin: 13px 0 0;
    color: rgba(255,255,255,.74);
    font-size: 14.5px;
    line-height: 1.65;
}

.naturakoy-header-mini-links,
.naturakoy-header-card-links,
.naturakoy-header-step-links,
.naturakoy-header-product-links,
.naturakoy-header-contact-links {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.naturakoy-header-mini-links {
    grid-template-columns: repeat(3, 1fr);
}

    .naturakoy-header-mini-links a,
    .naturakoy-header-card-links a,
    .naturakoy-header-step-links a,
    .naturakoy-header-contact-links a {
        min-height: 54px;
        padding: 14px 16px;
        border-radius: 18px;
        background: rgba(255,255,255,.10);
        border: 1px solid rgba(255,255,255,.14);
        transition: background .25s var(--nk-ease), border-color .25s var(--nk-ease), transform .25s var(--nk-ease);
    }

        .naturakoy-header-mini-links a:hover,
        .naturakoy-header-card-links a:hover,
        .naturakoy-header-step-links a:hover,
        .naturakoy-header-contact-links a:hover {
            background: rgba(255,255,255,.16);
            border-color: rgba(255,247,223,.28);
            transform: translateY(-3px);
        }

    .naturakoy-header-mini-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--nk-white);
        font-family: var(--nk-font-heading);
        font-size: 12px;
        font-weight: 900;
        text-align: center;
    }

.naturakoy-header-card-links a b,
.naturakoy-header-contact-links a b {
    display: block;
    margin-bottom: 4px;
    color: var(--nk-white);
    font-family: var(--nk-font-heading);
    font-size: 15.5px;
    font-weight: 900;
}

.naturakoy-header-card-links a small,
.naturakoy-header-contact-links a span {
    display: block;
    color: rgba(255,255,255,.68);
    font-size: 13px;
    line-height: 1.45;
}

.naturakoy-header-step-links a {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
}

.naturakoy-header-step-links em {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--nk-cream);
    color: var(--nk-green-dark);
    font-family: var(--nk-font-heading);
    font-size: 13px;
    font-style: normal;
    font-weight: 900;
}

.naturakoy-header-step-links span {
    color: var(--nk-white);
    font-family: var(--nk-font-heading);
    font-size: 15px;
    font-weight: 900;
}

.naturakoy-header-product-links a {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 54px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    transition: background .25s var(--nk-ease), border-color .25s var(--nk-ease), transform .25s var(--nk-ease);
}

    .naturakoy-header-product-links a:hover {
        background: rgba(255,255,255,.16);
        border-color: rgba(255,247,223,.28);
        transform: translateY(-3px);
    }

.naturakoy-header-product-links i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: rgba(255,247,223,.14);
    color: var(--nk-cream);
}

.naturakoy-header-product-links svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.05;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.naturakoy-header-product-links span {
    color: var(--nk-white);
    font-family: var(--nk-font-heading);
    font-size: 15px;
    font-weight: 900;
}

.naturakoy-header-gallery-boxes {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    grid-template-rows: 96px 96px;
    gap: 10px;
    margin-top: 22px;
}

    .naturakoy-header-gallery-boxes span {
        display: block;
        border-radius: 18px;
        background: radial-gradient(circle at 30% 30%, rgba(255,247,223,.34), transparent 32%), linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
        border: 1px solid rgba(255,255,255,.14);
    }

        .naturakoy-header-gallery-boxes span:first-child {
            grid-row: span 2;
        }

/* MARQUEE */
.naturakoy-header-product-marquee {
    position: relative;
    z-index: 5;
    flex: 0 0 118px;
    height: 118px;
    overflow: hidden;
    pointer-events: none;
}

    .naturakoy-header-product-marquee::before,
    .naturakoy-header-product-marquee::after {
        content: "";
        position: absolute;
        top: 0;
        width: 140px;
        height: 100%;
        z-index: 3;
        pointer-events: none;
    }

    .naturakoy-header-product-marquee::before {
        left: 0;
        background: linear-gradient(90deg, var(--nk-green-dark), transparent);
    }

    .naturakoy-header-product-marquee::after {
        right: 0;
        background: linear-gradient(270deg, #6f9f38, transparent);
    }

.naturakoy-header-product-track {
    display: flex;
    align-items: center;
    gap: 22px;
    width: max-content;
    height: 100%;
    padding: 12px 0;
    animation: naturakoyProductMoveRight 34s linear infinite;
}

.naturakoy-header-product-card {
    width: 286px;
    height: 92px;
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: 58px 88px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 24px 60px -42px rgba(0,0,0,.55);
}

.naturakoy-header-product-icon {
    width: 80px;
    height: 80px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--nk-cream);
    overflow: hidden;
}

    .naturakoy-header-product-icon img {
        width: 70px;
        height: 70px;
        object-fit: contain;
        display: block;
    }

.naturakoy-header-product-image {
    width: 88px;
    height: 62px;
    display: grid;
    place-items: center;
}

    .naturakoy-header-product-image img {
        max-width: 88px;
        max-height: 62px;
        object-fit: contain;
        display: block;
    }

.naturakoy-header-product-text {
    min-width: 0;
}

    .naturakoy-header-product-text strong {
        display: block;
        color: var(--nk-green-dark);
        font-family: var(--nk-font-heading);
        font-size: 16.5px;
        line-height: 1.04;
        font-weight: 900;
        letter-spacing: -.025em;
    }

    .naturakoy-header-product-text span {
        display: block;
        margin-top: 3px;
        color: rgba(6, 65, 31, .70);
        font-size: 12px;
        font-weight: 700;
    }

body.naturakoy-menu-open {
    overflow: hidden;
}

/* ANIMATION */
@keyframes naturakoyMenuLinkIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes naturakoyHeaderPanelIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes naturakoyProductMoveRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* TABLET */
@media (max-width: 1100px) {
    .naturakoy-header-menu-body {
        grid-template-columns: minmax(0, .9fr) minmax(330px, 420px);
        gap: 28px;
    }

    .naturakoy-header-main-nav a {
        font-size: clamp(30px, 4.8vw, 48px);
    }

    .naturakoy-header-preview-panel {
        padding: 22px;
        min-height: 380px;
    }

    .naturakoy-header-mini-links {
        grid-template-columns: 1fr;
    }
}

/* MOBILE */
@media (max-width: 760px) {
    :root {
        --nk-header-height: 74px;
    }

    .naturakoy-header-inner,
    .naturakoy-header-menu-top,
    .naturakoy-header-menu-body {
        width: min(var(--nk-container), calc(100% - 28px));
    }

    .naturakoy-header-inner {
        grid-template-columns: 46px 1fr 94px;
        gap: 8px;
    }

    .naturakoy-header-logo {
        width: 102px;
    }

    .naturakoy-header-menu-btn,
    .naturakoy-header-close {
        width: 44px;
        height: 44px;
    }

        .naturakoy-header-menu-btn span {
            width: 20px;
        }

 

    .naturakoy-header-menu-top {
        height: 78px;
        grid-template-columns: 46px 1fr 94px;
        gap: 8px;
    }

    .naturakoy-header-menu-logo {
        width: 90px;
        min-height: 62px;
        border-radius: 16px;
    }

    .naturakoy-header-menu {
        overflow-y: auto;
        overflow-x: hidden;
    }

    .naturakoy-header-menu-body {
        flex: 0 0 auto;
        min-height: auto;
        padding: 14px 0 22px;
        grid-template-columns: 1fr;
        gap: 18px;
        overflow: visible;
    }

    .naturakoy-header-main-nav {
        gap: 5px;
    }

        .naturakoy-header-main-nav a {
            font-size: clamp(24px, 7.8vw, 34px);
            line-height: 1.06;
            letter-spacing: -.025em;
        }

            .naturakoy-header-main-nav a::before {
                left: -13px;
                width: 6px;
                height: 6px;
            }

    .naturakoy-header-preview-panel {
        min-height: auto;
        padding: 18px;
        border-radius: 22px;
    }

    .naturakoy-header-preview-kicker {
        font-size: 10px;
        margin-bottom: 9px;
    }

    .naturakoy-header-preview-panel h3 {
        font-size: 22px;
    }

    .naturakoy-header-preview-panel p {
        font-size: 13.5px;
        line-height: 1.58;
    }

    .naturakoy-header-mini-links,
    .naturakoy-header-card-links,
    .naturakoy-header-step-links,
    .naturakoy-header-product-links,
    .naturakoy-header-contact-links {
        margin-top: 16px;
        gap: 8px;
    }

        .naturakoy-header-product-links a,
        .naturakoy-header-step-links a,
        .naturakoy-header-mini-links a,
        .naturakoy-header-card-links a,
        .naturakoy-header-contact-links a {
            min-height: 48px;
            padding: 11px 12px;
            border-radius: 16px;
        }

        .naturakoy-header-product-links a {
            grid-template-columns: 38px 1fr;
        }

        .naturakoy-header-product-links i {
            width: 38px;
            height: 38px;
            border-radius: 13px;
        }

        .naturakoy-header-product-links svg {
            width: 21px;
            height: 21px;
        }

        .naturakoy-header-product-links span,
        .naturakoy-header-step-links span,
        .naturakoy-header-card-links a b,
        .naturakoy-header-contact-links a b {
            font-size: 13.5px;
        }

        .naturakoy-header-card-links a small,
        .naturakoy-header-contact-links a span {
            font-size: 12.5px;
        }

    .naturakoy-header-gallery-boxes {
        grid-template-rows: 74px 74px;
        gap: 8px;
    }

    .naturakoy-header-product-marquee {
        flex: 0 0 94px;
        height: 94px;
    }

        .naturakoy-header-product-marquee::before,
        .naturakoy-header-product-marquee::after {
            width: 48px;
        }

    .naturakoy-header-product-track {
        gap: 12px;
        padding: 9px 0;
    }

    .naturakoy-header-product-card {
        width: 226px;
        height: 76px;
        grid-template-columns: 44px 66px minmax(0, 1fr);
        gap: 8px;
        padding: 8px 10px;
        border-radius: 18px;
    }

    .naturakoy-header-product-icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

        .naturakoy-header-product-icon img {
            width: 36px;
            height: 36px;
        }

    .naturakoy-header-product-image {
        width: 66px;
        height: 48px;
    }

        .naturakoy-header-product-image img {
            max-width: 66px;
            max-height: 48px;
        }

    .naturakoy-header-product-text strong {
        font-size: 13.5px;
    }

    .naturakoy-header-product-text span {
        font-size: 11px;
    }
}

/* SMALL MOBILE */
@media (max-width: 420px) {
    .naturakoy-header-inner {
        width: calc(100% - 18px);
        grid-template-columns: 42px 1fr 86px;
    }

    .naturakoy-header-menu-top {
        width: calc(100% - 18px);
        grid-template-columns: 42px 1fr 86px;
    }

    .naturakoy-header-logo {
        width: 92px;
    }

    .naturakoy-header-menu-logo {
        width: 82px;
        min-height: 58px;
    }

    .naturakoy-header-menu-btn,
    .naturakoy-header-close {
        width: 40px;
        height: 40px;
    }

  

    .naturakoy-header-main-nav a {
        font-size: clamp(22px, 7.2vw, 30px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .naturakoy-header-menu *,
    .naturakoy-header * {
        animation: none !important;
        transition: none !important;
    }
}
.naturakoy-header-franchise,
.naturakoy-header-menu-franchise {
    width: 210px !important;
    min-width: 210px !important;
    max-width: 210px !important;
    height: 50px !important;
    min-height: 50px !important;
    padding: 5px 6px 5px 20px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 40px !important;
    align-items: center !important;
    gap: 14px !important;
    border-radius: 999px !important;
    background: var(--nk-green-dark) !important;
    color: var(--nk-white) !important;
    border: 1px solid rgba(255, 255, 255, .42) !important;
    text-decoration: none !important;
    overflow: hidden !important;
    box-shadow: 0 18px 38px -30px rgba(6, 65, 31, .78), inset 0 1px 0 rgba(255,255,255,.18) !important;
    transition: transform .26s var(--nk-ease), background .26s var(--nk-ease), box-shadow .26s var(--nk-ease) !important;
}

.naturakoy-header-franchise {
    justify-self: end !important;
}

.naturakoy-header-menu-franchise {
    justify-self: end !important;
    background: var(--nk-white) !important;
    color: var(--nk-green-dark) !important;
    border-color: rgba(255,255,255,.55) !important;
}

    .naturakoy-header-franchise::before,
    .naturakoy-header-franchise::after,
    .naturakoy-header-menu-franchise::before,
    .naturakoy-header-menu-franchise::after {
        display: none !important;
        content: none !important;
    }

.naturakoy-header-franchise-text {
    display: block !important;
    min-width: 0 !important;
    color: inherit !important;
    font-family: var(--nk-font-heading) !important;
    font-size: 11.5px !important;
    font-weight: 900 !important;
    line-height: 1.05 !important;
    letter-spacing: .035em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

.naturakoy-header-franchise-arrow {
    width: 40px !important;
    height: 40px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 50% !important;
    background: var(--nk-white) !important;
    color: var(--nk-green-dark) !important;
    flex: 0 0 40px !important;
    box-shadow: inset 0 0 0 1px rgba(6, 65, 31, .08) !important;
}

.naturakoy-header-menu-franchise .naturakoy-header-franchise-arrow {
    background: var(--nk-green-dark) !important;
    color: var(--nk-white) !important;
}

.naturakoy-header-franchise-arrow svg {
    width: 30px !important;
    height: 30px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2.2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    transition: transform .26s var(--nk-ease) !important;
}

.naturakoy-header-franchise:hover,
.naturakoy-header-menu-franchise:hover {
    transform: translateY(-2px) !important;
    background: var(--nk-green) !important;
    color: var(--nk-white) !important;
    box-shadow: 0 24px 46px -32px rgba(6, 65, 31, .9), inset 0 1px 0 rgba(255,255,255,.20) !important;
}

.naturakoy-header-menu-franchise:hover {
    background: var(--nk-cream) !important;
    color: var(--nk-green-dark) !important;
}

    .naturakoy-header-franchise:hover .naturakoy-header-franchise-arrow svg,
    .naturakoy-header-menu-franchise:hover .naturakoy-header-franchise-arrow svg {
        transform: translateX(2px) !important;
    }

/* Mobil */
@media (max-width: 760px) {
    .naturakoy-header-franchise,
    .naturakoy-header-menu-franchise {
        width: 136px !important;
        min-width: 136px !important;
        max-width: 136px !important;
        height: 38px !important;
        min-height: 38px !important;
        padding: 4px 5px 4px 11px !important;
        grid-template-columns: minmax(0, 1fr) 30px !important;
        gap: 8px !important;
    }

    .naturakoy-header-franchise-text {
        font-size: 11.5px !important;
        line-height: 1.05 !important;
        letter-spacing: .01em !important;
        white-space: normal !important;
    }

    .naturakoy-header-franchise-arrow {
        width: 30px !important;
        height: 30px !important;
    }

        .naturakoy-header-franchise-arrow svg {
            width: 18px !important;
            height: 18px !important;
            fill: none !important;
            stroke: currentColor !important;
            stroke-width: 2.15 !important;
            stroke-linecap: round !important;
            stroke-linejoin: round !important;
        }
}

@media (max-width: 420px) {
    .naturakoy-header-franchise,
    .naturakoy-header-menu-franchise {
        width: 128px !important;
        min-width: 128px !important;
        max-width: 128px !important;
        grid-template-columns: minmax(0, 1fr) 28px !important;
    }

    .naturakoy-header-franchise-text {
        font-size: 12px !important;
    }

    .naturakoy-header-franchise-arrow {
        width: 28px !important;
        height: 28px !important;
    }
}
.nk-herovideo,
.nk-herovideo * {
    box-sizing: border-box;
}

.nk-herovideo {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    min-height: 680px;
    overflow: hidden;
    isolation: isolate;
    background: var(--nk-green-dark, #06411f);
    color: var(--nk-white, #ffffff);
    font-family: var(--nk-font-body, "Manrope", system-ui, sans-serif);
}

.nk-herovideo-media {
    position: absolute;
    inset: 0;
    z-index: -5;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    filter: saturate(1.05) contrast(1.04);
}

.nk-herovideo-overlay {
    position: absolute;
    inset: 0;
    z-index: -4;
}

.nk-herovideo-orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -2;
    width: min(820px, 78vw);
    height: min(820px, 78vw);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: .82;
}

    .nk-herovideo-orbit svg {
        width: 100%;
        height: 100%;
        overflow: visible;
        animation: nkHeroOrbitRotate 30s linear infinite;
    }

.nk-herovideo-orbit-line,
.nk-herovideo-orbit-arc {
    fill: none;
    stroke-linecap: round;
    transform-origin: center;
}

.nk-herovideo-orbit-line-1 {
    stroke: rgba(255, 247, 223, .17);
    stroke-width: 1.1;
    stroke-dasharray: 18 26;
    animation: nkHeroOrbitDash 18s linear infinite;
}

.nk-herovideo-orbit-line-2 {
    stroke: rgba(247, 189, 40, .14);
    stroke-width: 1;
    stroke-dasharray: 2 18;
    animation: nkHeroOrbitDashReverse 22s linear infinite;
}

.nk-herovideo-orbit-arc {
    stroke: rgba(255, 247, 223, .28);
    stroke-width: 1.4;
    stroke-dasharray: 160 540;
    animation: nkHeroOrbitArc 12s ease-in-out infinite;
}

.nk-herovideo-grain {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .14;
    pointer-events: none;
    background-image: radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px);
    background-size: 4px 4px;
    mix-blend-mode: soft-light;
}

.nk-herovideo::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -220px;
    z-index: 0;
    width: 900px;
    height: 420px;
    max-width: 95vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 247, 223, .14), transparent 68%);
    transform: translateX(-50%);
    pointer-events: none;
}

.nk-herovideo-content {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 5;
    width: min(1120px, calc(100% - 44px));
    text-align: center;
    transform: translate(-50%, -50%);
}

.nk-herovideo-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--nk-cream, #fff7df);
    font-family: var(--nk-font-heading, "Nunito Sans", system-ui, sans-serif);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .22em;
    text-transform: uppercase;
}

    .nk-herovideo-kicker::before,
    .nk-herovideo-kicker::after {
        content: "";
        width: 38px;
        height: 1px;
        background: rgba(255, 247, 223, .58);
    }

.nk-herovideo-title {
    position: relative;
    min-height: 1.08em;
    margin: 0;
    color: var(--nk-white, #ffffff);
    font-family: var(--nk-font-heading, "Nunito Sans", system-ui, sans-serif);
    font-size: clamp(25px, 3.2vw, 45px);
    line-height: .92;
    font-weight: 900;
    letter-spacing: -.035em;
    text-wrap: balance;
    text-shadow: 0 22px 70px rgba(0,0,0,.36);
}

.nk-herovideo-title-text {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    display: block;
    opacity: 0;
    transform: translateY(28px) scale(.985);
    filter: blur(12px);
    pointer-events: none;
    will-change: opacity, transform, filter;
    transition: opacity 1.05s cubic-bezier(.16, 1, .3, 1), transform 1.05s cubic-bezier(.16, 1, .3, 1), filter 1.05s cubic-bezier(.16, 1, .3, 1);
}

    .nk-herovideo-title-text.is-active {
        position: relative;
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }

    .nk-herovideo-title-text.is-leaving {
        opacity: 0;
        transform: translateY(-20px) scale(1.01);
        filter: blur(9px);
    }

.nk-herovideo-desc {
    max-width: 640px;
    margin: 26px auto 0;
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.72;
    font-weight: 500;
}

.nk-herovideo-discover {
    position: absolute;
    left: 50%;
    bottom: 38px;
    z-index: 9;
    width: 94px;
    height: 118px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--nk-white, #ffffff);
    font-family: var(--nk-font-heading, "Nunito Sans", system-ui, sans-serif);
    cursor: pointer;
    transform: translateX(-50%);
}

.nk-herovideo-egg {
    position: relative;
    width: 76px;
    height: 92px;
    margin: 0 auto 8px;
    display: grid;
    place-items: center;
    border-radius: 50% 50% 46% 46%;
    background: radial-gradient(circle at 35% 23%, #ffffff 0%, var(--nk-cream, #fff7df) 54%, #ead8a8 100%);
    box-shadow: 0 24px 45px -28px rgba(0,0,0,.65), inset 0 1px 0 rgba(255,255,255,.78);
    transition: transform .35s var(--nk-ease, cubic-bezier(.16, 1, .3, 1)), box-shadow .35s var(--nk-ease, cubic-bezier(.16, 1, .3, 1));
}

    .nk-herovideo-egg::before {
        content: "";
        position: absolute;
        inset: 6px;
        border-radius: inherit;
        border: 1px solid rgba(6, 65, 31, .09);
    }

    .nk-herovideo-egg::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -13px;
        width: 42px;
        height: 9px;
        border-radius: 50%;
        background: rgba(0,0,0,.24);
        filter: blur(7px);
        transform: translateX(-50%);
    }

    .nk-herovideo-egg svg {
        width: 55px;
        height: 68px;
        overflow: visible;
    }

.nk-herovideo-egg-shell {
    fill: transparent;
    stroke: rgba(6, 65, 31, .22);
    stroke-width: 1.4;
}

.nk-herovideo-egg-crack {
    fill: none !important;
    stroke: var(--nk-green-dark, #06411f) !important;
    stroke-width: 2.8 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    opacity: 0 !important;
    stroke-dasharray: 120 !important;
    stroke-dashoffset: 120 !important;
}

.nk-herovideo-discover-text {
    display: block;
    color: rgba(255,255,255,.86);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .20em;
    text-transform: uppercase;
    text-align:center;
    transition: color .3s var(--nk-ease, cubic-bezier(.16, 1, .3, 1)), transform .3s var(--nk-ease, cubic-bezier(.16, 1, .3, 1));
}

.nk-herovideo-discover:hover .nk-herovideo-egg {
    transform: translateY(-8px);
    box-shadow: 0 32px 58px -30px rgba(0,0,0,.72), inset 0 1px 0 rgba(255,255,255,.84);
}

.nk-herovideo-discover:hover .nk-herovideo-discover-text {
    color: var(--nk-cream, #fff7df);
    transform: translateY(2px);
}

.nk-herovideo-discover.is-cracking .nk-herovideo-egg {
    animation: nkHeroEggBreakVisible 1s cubic-bezier(.16, 1, .3, 1) both !important;
}

.nk-herovideo-discover.is-cracking .nk-herovideo-egg-crack {
    opacity: 1 !important;
    stroke-dashoffset: 0 !important;
    transition: opacity .12s ease, stroke-dashoffset .65s cubic-bezier(.16, 1, .3, 1) !important;
}

.nk-herovideo-discover.is-cracking .nk-herovideo-egg-crack-2 {
    transition-delay: .12s !important;
}


.nk-herovideo.is-leaving .nk-herovideo-media {
    transition: transform .9s cubic-bezier(.16, 1, .3, 1), filter .9s cubic-bezier(.16, 1, .3, 1);
    transform: scale(1.1);
    filter: saturate(1.14) contrast(1.08);
}

.nk-herovideo.is-leaving .nk-herovideo-content {
    animation: nkHeroContentLeave .7s cubic-bezier(.16, 1, .3, 1) both;
}
@keyframes nkHeroEggBreakVisible {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
    }

    18% {
        transform: translateY(-10px) scale(1.08) rotate(-4deg);
    }

    38% {
        transform: translateY(-4px) scale(.96) rotate(4deg);
    }

    58% {
        transform: translateY(-8px) scale(1.04) rotate(-2deg);
    }

    100% {
        transform: translateY(0) scale(1) rotate(0deg);
    }
}
@keyframes nkHeroOrbitRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes nkHeroOrbitDash {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -220;
    }
}

@keyframes nkHeroOrbitDashReverse {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: 180;
    }
}

@keyframes nkHeroOrbitArc {
    0%, 100% {
        stroke-dasharray: 120 580;
        opacity: .18;
    }

    50% {
        stroke-dasharray: 260 440;
        opacity: .34;
    }
}

@keyframes nkHeroEggCrack {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes nkHeroEggBreak {
    0% {
        transform: translateY(-8px) scale(1);
    }

    34% {
        transform: translateY(-8px) scale(1.05) rotate(-2deg);
    }

    56% {
        transform: translateY(-4px) scale(.96) rotate(2deg);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes nkHeroContentLeave {
    to {
        opacity: 0;
        transform: translate(-50%, calc(-50% - 22px));
        filter: blur(8px);
    }
}

@media (max-width: 900px) {
    .nk-herovideo {
        min-height: 620px;
    }

    .nk-herovideo-orbit {
        width: 86vw;
        height: 86vw;
    }

    .nk-herovideo-title {
        font-size: clamp(23px, 6vw, 35px);
        letter-spacing: -.015em;
    }

    .nk-herovideo-desc {
        max-width: 520px;
        font-size: 15.5px;
    }

    .nk-herovideo-discover {
        bottom: 28px;
    }
}

@media (max-width: 560px) {
    .nk-herovideo {
        min-height: 560px;
    }

    .nk-herovideo-content {
        width: calc(100% - 30px);
    }

    .nk-herovideo-kicker {
        margin-bottom: 16px;
        font-size: 10px;
        letter-spacing: .17em;
    }

        .nk-herovideo-kicker::before,
        .nk-herovideo-kicker::after {
            width: 24px;
        }

    .nk-herovideo-title {
        font-size: clamp(20px, 7vw, 25px);
        line-height: .96;
        letter-spacing: -.015em;
    }

    .nk-herovideo-desc {
        margin-top: 18px;
        font-size: 14px;
        line-height: 1.62;
    }

    .nk-herovideo-egg {
        width: 62px;
        height: 76px;
    }

        .nk-herovideo-egg svg {
            width: 46px;
            height: 58px;
        }

    .nk-herovideo-discover {
        width: 80px;
        height: 98px;
        bottom: 65px;
    }

    .nk-herovideo-discover-text {
        font-size: 10px;
        letter-spacing: .16em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nk-herovideo *,
    .nk-herovideo {
        animation: none !important;
        transition: none !important;
    }
}
.nk-herovideo-bottom-transition {
    display:none !important;
}

.nk-herovideo-wave {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.nk-herovideo-wave-main {
    fill: url(#nkHeroWaveGradient);
}

.nk-herovideo-wave-soft {
    fill: rgba(255, 247, 223, .11);
}

.nk-herovideo-wave-circle {
    fill: rgba(255, 247, 223, .08);
}

.nk-herovideo-wave-circle-1 {
    animation: nkHeroWaveCircleMove 9s ease-in-out infinite;
}

.nk-herovideo-wave-circle-2 {
    animation: nkHeroWaveCircleMoveAlt 11s ease-in-out infinite;
}

.nk-herovideo-bottom-transition::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -34px;
    height: 90px;
    z-index: 2;
    background: linear-gradient( 180deg, rgba(3, 43, 21, 0) 0%, rgba(3, 43, 21, .18) 44%, rgba(242, 138, 24, .08) 100% );
}

.nk-herovideo-bottom-transition::after {
    content: "";
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -34px;
    height: 74px;
    z-index: 3;
    background: linear-gradient( 180deg, rgba(242, 138, 24, 0) 0%, rgba(247, 189, 40, .26) 42%, var(--nk-cream, #fff7df) 100% );
    filter: blur(16px);
}

@keyframes nkHeroWaveCircleMove {
    0%, 100% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: .7;
    }

    50% {
        transform: translateX(-34px) translateY(10px) scale(1.06);
        opacity: .95;
    }
}

@keyframes nkHeroWaveCircleMoveAlt {
    0%, 100% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: .45;
    }

    50% {
        transform: translateX(42px) translateY(-8px) scale(1.08);
        opacity: .75;
    }
}
@media (max-width: 760px) {
    .nk-herovideo-bottom-transition {
        height: 170px;
    }
}

@media (max-width: 560px) {
    .nk-herovideo-bottom-transition {
        height: 135px;
    }
}
.nk-farmroute,
.nk-farmroute * {
    box-sizing: border-box;
}

.nk-farmroute {
    position: relative;
    overflow: hidden;
    padding: 112px 0 140px;
    background: radial-gradient(circle at 0% 0%, rgba(127, 157, 58, .08), transparent 18%), radial-gradient(circle at 100% 0%, rgba(247, 189, 40, .10), transparent 18%), linear-gradient(180deg, #fbf9f1 0%, var(--nk-cream, #fff7df) 52%, #f2ead8 100%);
    color: var(--nk-green-dark, #06411f);
    font-family: var(--nk-font-body, "Manrope", system-ui, sans-serif);
}

    .nk-farmroute::before {
        content: "";
        position: absolute;
        left: -170px;
        top: 40px;
        width: 370px;
        height: 370px;
        border-radius: 50%;
        background: rgba(15, 107, 53, .045);
        pointer-events: none;
    }

    .nk-farmroute::after {
        content: "";
        position: absolute;
        right: -160px;
        top: -60px;
        width: 360px;
        height: 360px;
        border-radius: 50%;
        background: rgba(247, 189, 40, .08);
        pointer-events: none;
    }

.nk-farmroute-inner {
    position: relative;
    z-index: 3;
    width: min(var(--nk-container, 1440px), calc(100% - 48px));
    margin: 0 auto;
}

.nk-farmroute-head {
    max-width: 850px;
    margin: 0 auto 54px;
    text-align: center;
}

    .nk-farmroute-head span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-bottom: 18px;
        color: var(--nk-green, #01914c);
        font-family: var(--nk-font-heading, "Nunito Sans", system-ui, sans-serif);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .18em;
        text-transform: uppercase;
    }

        .nk-farmroute-head span::before,
        .nk-farmroute-head span::after {
            content: "";
            width: 34px;
            height: 1px;
            background: rgba(15, 107, 53, .30);
        }

    .nk-farmroute-head h2 {
        margin: 0;
        color: var(--nk-green-dark, #06411f);
        font-family: var(--nk-font-heading, "Nunito Sans", system-ui, sans-serif);
        font-size: clamp(34px, 4.3vw, 68px);
        line-height: 1.02;
        font-weight: 900;
        letter-spacing: -.045em;
    }

        .nk-farmroute-head h2 strong {
            display: block;
            color: var(--nk-green, #01914c);
        }

.nk-farmroute-stage {
    position: relative;
    max-width: 1240px;
    height: 500px;
    margin: 0 auto;
}

.nk-farmroute-skyline {
    position: absolute;
    inset: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}

.nk-farmroute-main-path {
    fill: none;
    stroke: transparent;
}

.nk-farmroute-main-path-soft {
    fill: none;
    stroke: rgba(15, 107, 53, .09);
    stroke-width: 14;
    stroke-linecap: round;
    filter: blur(6px);
}

.nk-farmroute-main-path-dash {
    fill: none;
    stroke: url(#nkFarmRouteLineGradient);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 5 15;
    animation: nkFarmRouteDashMove 7s linear infinite;
}

.nk-farmroute-drop-line {
    fill: none;
    stroke: rgba(15, 107, 53, .18);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-dasharray: 4 10;
}

.nk-farmroute-route-dot {
    fill: var(--nk-white, #ffffff);
    stroke: rgba(15, 107, 53, .18);
    stroke-width: 8;
    animation: nkFarmRouteDotPulse 2.4s ease-in-out infinite;
}

.nk-farmroute-route-dot-2 {
    animation-delay: .3s;
}

.nk-farmroute-route-dot-3 {
    animation-delay: .6s;
}

.nk-farmroute-card {
    position: absolute;
    z-index: 2;
    width: 330px;
    min-height: 230px;
    padding: 34px 24px 30px;
    border-radius: 34px;
    backdrop-filter: blur(14px);
    text-align: center;
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1), box-shadow .3s cubic-bezier(.16, 1, .3, 1);
}

    .nk-farmroute-card::before,
    .nk-farmroute-card::after {
        display: none !important;
        content: none !important;
    }

.nk-farmroute.is-visible .nk-farmroute-card {
    opacity: 1;
    transform: translateY(0);
}

.nk-farmroute-card-1 {
    left: 1%;
    top: 188px;
    transition-delay: .08s;
}

.nk-farmroute-card-2 {
    left: 50%;
    top: 252px;
    transform: translateX(-50%) translateY(26px);
    transition-delay: .22s;
}

.nk-farmroute.is-visible .nk-farmroute-card-2 {
    transform: translateX(-50%) translateY(0);
}

.nk-farmroute-card-3 {
    right: 1%;
    top: 176px;
    transition-delay: .36s;
}

.nk-farmroute-icon {
    width: 128px;
    height: 128px;
    margin: -70px auto 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    color: var(--nk-green-dark, #06411f);
    border: 2px solid rgba(15, 107, 53, .07);
    box-shadow: 0 18px 34px -24px rgba(71, 64, 39, .22);

}

    .nk-farmroute-icon img {
        width: 126px;
        height: 126px;
        border-radius: 50%;
    }

.nk-farmroute-card h3 {
    max-width: 260px;
    margin: 0 auto;
    color: var(--nk-green-dark, #06411f);
    font-family: var(--nk-font-heading, "Nunito Sans", system-ui, sans-serif);
    font-size: 27px;
    line-height: 1.14;
    font-weight: 900;
    letter-spacing: -.025em;
}

.nk-farmroute-bottom-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 2;
    height: 116px;
    pointer-events: none;
}

    .nk-farmroute-bottom-wave svg {
        width: 100%;
        height: 100%;
        display: block;
    }

    .nk-farmroute-bottom-wave path {
        fill: var(--nk-white, #ffffff);
    }

@keyframes nkFarmRouteDashMove {
    to {
        stroke-dashoffset: -90;
    }
}

@keyframes nkFarmRouteDotPulse {
    0%, 100% {
        opacity: .48;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.35);
    }
}

/* Tablet */
@media (max-width: 1180px) {
    .nk-farmroute {
        padding: 96px 0 116px;
    }

    .nk-farmroute-stage {
        height: auto;
        display: grid;
        gap: 28px;
        max-width: 760px;
        padding-left: 46px;
    }

    .nk-farmroute-skyline {
        display: none;
    }

    .nk-farmroute-stage::before {
        content: "";
        position: absolute;
        left: 13px;
        top: 12px;
        bottom: 12px;
        width: 2px;
        border-radius: 999px;
        background-image: linear-gradient(to bottom, var(--nk-straw, #e8cf86) 0 9px, transparent 9px 18px);
        background-size: 2px 18px;
        animation: nkFarmRouteMobileDash 1.9s linear infinite;
    }

    .nk-farmroute-stage::after {
        content: "";
        position: absolute;
        left: -6px;
        top: 14px;
        width: 28px;
        height: 38px;
        border-radius: 50% 50% 48% 48%;
        background: radial-gradient(circle at 34% 22%, #ffffff 0%, #fffaf0 45%, #e8dac1 100%);
        box-shadow: 0 10px 22px -16px rgba(76, 65, 39, .24);
        animation: nkFarmRouteMobileEgg 6.8s cubic-bezier(.16,1,.3,1) infinite;
    }

    .nk-farmroute-card,
    .nk-farmroute-card-1,
    .nk-farmroute-card-2,
    .nk-farmroute-card-3 {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        width: 100%;
        min-height: auto;
        transform: translateY(18px);
    }

    .nk-farmroute.is-visible .nk-farmroute-card-2 {
        transform: translateY(0);
    }

    .nk-farmroute-icon {
        margin-top: 0;
    }
}

@keyframes nkFarmRouteMobileDash {
    to {
        background-position-y: -18px;
    }
}

@keyframes nkFarmRouteMobileEgg {
    0% {
        top: 14px;
    }

    50% {
        top: calc(50% - 19px);
    }

    100% {
        top: calc(100% - 52px);
    }
}

/* Mobile */
@media (max-width: 760px) {
    .nk-farmroute {
        padding: 78px 0 96px;
    }

    .nk-farmroute-inner {
        width: min(var(--nk-container, 1440px), calc(100% - 30px));
    }

    .nk-farmroute-head {
        margin-bottom: 34px;
    }

        .nk-farmroute-head span {
            font-size: 10px;
            letter-spacing: .14em;
        }

            .nk-farmroute-head span::before,
            .nk-farmroute-head span::after {
                width: 20px;
            }

        .nk-farmroute-head h2 {
            font-size: clamp(30px, 10vw, 46px);
        }

    .nk-farmroute-card {
        padding: 24px 18px 22px;
        border-radius: 28px;
    }

    .nk-farmroute-icon {
        width: 125px;
        height: 125px;
        margin-bottom: 16px;
    }

        .nk-farmroute-icon svg {
            width: 52px;
            height: 52px;
        }

    .nk-farmroute-card h3 {
        font-size: 22px;
    }

    .nk-farmroute-bottom-wave {
        height: 88px;
    }
}
/* Eski hero geçişlerini kapat */
.nk-herovideo-section-wave,
.nk-herovideo-bottom-transition,
.nk-farmroute-wave {
    display: none !important;
}

/* Ana section */
.nk-farmroute {
    position: relative !important;
    z-index: 6 !important;
    margin-top: 0 !important;
    padding: 118px 0 140px !important;
    overflow: visible !important;
    background: radial-gradient(circle at 0% 0%, rgba(127, 157, 58, .08), transparent 18%), radial-gradient(circle at 100% 0%, rgba(247, 189, 40, .10), transparent 18%), linear-gradient(180deg, #fbf9f1 0%, var(--nk-cream, #fff7df) 52%, #f2ead8 100%) !important;
}

/* Sayfada yatay taşma olmasın */
body {
    overflow-x: hidden;
}

/* ÜST DALGA - VIDEO ALTINA SABİTLENEN KISIM */
.nk-farmroute-top-wave {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: -75px !important;
    z-index: 8 !important;
    width: 100% !important;
    height: 128px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

    .nk-farmroute-top-wave svg {
        width: 100% !important;
        height: 100% !important;
        display: block !important;
    }

.nk-farmroute-top-wave-soft {
    fill: rgb(252 249 238) !important;
}

.nk-farmroute-top-wave-main {
    fill: #fcf9ee !important;
}

/* İçerik üst dalgaya çarpmasın */
.nk-farmroute-inner {
    position: relative !important;
    z-index: 5 !important;
    width: min(var(--nk-container, 1440px), calc(100% - 48px)) !important;
    margin: 0 auto !important;
}

/* ALT DALGA */
.nk-farmroute-bottom-wave {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: -1px !important;
    z-index: 3 !important;
    height: 116px !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

    .nk-farmroute-bottom-wave svg {
        width: 100% !important;
        height: 100% !important;
        display: block !important;
    }

.nk-farmroute-bottom-wave-main {
    fill: #ffffff !important;
}

@keyframes nkFarmrouteTopWaveMove {
    0%, 100% {
        transform: translateX(0);
        opacity: .65;
    }

    50% {
        transform: translateX(-32px);
        opacity: .95;
    }
}

/* Mobil */
@media (max-width: 760px) {
    .nk-farmroute {
        padding: 88px 0 104px !important;
    }

    .nk-farmroute-top-wave {
        top: -94px !important;
        height: 94px !important;
    }

    .nk-farmroute-inner {
        width: min(var(--nk-container, 1440px), calc(100% - 30px)) !important;
    }

    .nk-farmroute-bottom-wave {
        height: 86px !important;
    }
}

@media (max-width: 560px) {
    .nk-farmroute-top-wave {
        top: -78px !important;
        height: 78px !important;
    }

    .nk-farmroute-bottom-wave {
        height: 72px !important;
    }
}
.nk-productwave,
.nk-productwave * {
    box-sizing: border-box;
}

.nk-productwave {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 0;
    font-family: var(--nk-font-body, "Manrope", system-ui, sans-serif);
}

/* ÜST DALGA */
.nk-productwave-top-wave {
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    z-index: 8;
    height: 132px;
    pointer-events: none;
    overflow: hidden;
}

    .nk-productwave-top-wave svg {
        width: 100%;
        height: 100%;
        display: block;
    }

.nk-productwave-top-wave-main {
    fill: #ffffff;
}

/* ALT DALGA */
.nk-productwave-bottom-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 8;
    height: 132px;
    pointer-events: none;
    overflow: hidden;
}

    .nk-productwave-bottom-wave svg {
        width: 100%;
        height: 100%;
        display: block;
    }

.nk-productwave-bottom-wave-main {
    fill: #ffffff;
}

/* SWIPER ANA ALAN */
.nk-productwave-swiper {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}

    .nk-productwave-swiper .swiper-wrapper {
        align-items: stretch;
    }

.nk-productwave-slide {
    width: 34vw;
    min-width: 430px;
    height: 650px;
    overflow: hidden;
}

.nk-productwave-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: grid;
    place-items: center;
    text-align: center;
    isolation: isolate;
    color: var(--nk-white, #ffffff);
}

/* OTOMATİK ÜRÜN RENGİ */
.nk-productwave-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: radial-gradient(circle at 78% 14%, rgba(255,255,255,.18), transparent 25%), radial-gradient(circle at 12% 88%, rgba(0,0,0,.18), transparent 35%), linear-gradient( 135deg, var(--product-color-dark, #06411f) 0%, var(--product-color, #01914c) 48%, var(--product-color-light, #83b63f) 100% );
    transition: background .7s ease;
}

    .nk-productwave-bg::before {
        content: "";
        position: absolute;
        left: -22%;
        top: -18%;
        width: 60%;
        height: 90%;
        border-radius: 50%;
        background: rgba(255,255,255,.09);
        transform: rotate(-12deg);
    }

    .nk-productwave-bg::after {
        content: "";
        position: absolute;
        right: -24%;
        top: -12%;
        width: 54%;
        height: 84%;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        transform: rotate(14deg);
    }

/* ÜRÜN AMBALAJ GÖRSELİ */
.nk-productwave-product {
    position: absolute;
    top: 92px;
    left: 50%;
    z-index: 3;
    width: min(390px, 76%);
    height: 235px;
    display: grid;
    place-items: center;
    transform: translateX(-50%) translateY(18px) scale(.86);
    transition: transform .75s cubic-bezier(.16, 1, .3, 1), top .75s cubic-bezier(.16, 1, .3, 1), filter .75s cubic-bezier(.16, 1, .3, 1);
}

    .nk-productwave-product img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
        filter: drop-shadow(0 34px 30px rgba(0,0,0,.28));
    }

/* YAZI VE İKON */
.nk-productwave-content {
    position: relative;
    z-index: 4;
    width: min(470px, calc(100% - 46px));
    margin-top: 190px;
    transform: translateY(24px) scale(.92);
    opacity: .72;
    transition: opacity .65s cubic-bezier(.16, 1, .3, 1), transform .65s cubic-bezier(.16, 1, .3, 1);
}

.nk-productwave-icon {
    width: 125px;
    height: 125px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(255,255,255,.42);
    box-shadow: 0 20px 44px -30px rgba(0,0,0,.42);
    transform: translateY(8px) scale(.88);
    opacity: .82;
    transition: opacity .45s cubic-bezier(.16, 1, .3, 1), transform .45s cubic-bezier(.16, 1, .3, 1);
}

    .nk-productwave-icon img {
        width: 105px;
        height: 105px;
        object-fit: contain;
        display: block;
    }

.nk-productwave-content h3 {
    margin: 0;
    color: #ffffff;
    font-family: var(--nk-font-heading, "Nunito Sans", system-ui, sans-serif);
    font-size: clamp(22px, 2.2vw, 34px);
    line-height: .96;
    font-weight: 900;
    letter-spacing: -.055em;
    text-shadow: 0 20px 45px rgba(0,0,0,.22);
}

.nk-productwave-content p {
    max-width: 380px;
    margin: 18px auto 0;
    color: rgba(255,255,255,.86);
    font-size: 14.5px;
    line-height: 1.62;
    font-weight: 700;
}

/* SADECE AKTİF ÜRÜNDE GÖRÜNEN LİNK */
.nk-productwave-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 156px;
    height: 46px;
    margin-top: 24px;
    padding: 0 24px;
    border-radius: 999px;
    background: var(--nk-white, #ffffff);
    color: var(--product-color-dark, #06411f);
    font-family: var(--nk-font-heading, "Nunito Sans", system-ui, sans-serif);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-decoration: none !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .45s cubic-bezier(.16, 1, .3, 1), visibility .45s cubic-bezier(.16, 1, .3, 1), transform .45s cubic-bezier(.16, 1, .3, 1), background .3s cubic-bezier(.16, 1, .3, 1), color .3s cubic-bezier(.16, 1, .3, 1);
}

    .nk-productwave-btn:hover {
        background: var(--nk-cream, #fff7df);
        color: var(--product-color-dark, #06411f);
    }

/* AKTİF SLIDE */
.nk-productwave-slide.swiper-slide-active .nk-productwave-product {
    top: 76px;
    transform: translateX(-50%) translateY(0) scale(1.16);
    filter: saturate(1.08);
}

.nk-productwave-slide.swiper-slide-active .nk-productwave-content {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.nk-productwave-slide.swiper-slide-active .nk-productwave-icon {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.nk-productwave-slide.swiper-slide-active .nk-productwave-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* PASİF SLIDE */
.nk-productwave-slide:not(.swiper-slide-active) .nk-productwave-card {
    filter: saturate(.94);
}

.nk-productwave-slide:not(.swiper-slide-active) .nk-productwave-content h3 {
    font-size: clamp(17px, 1.7vw, 25px);
}

.nk-productwave-slide:not(.swiper-slide-active) .nk-productwave-icon {
    width: 62px;
    height: 62px;
}

    .nk-productwave-slide:not(.swiper-slide-active) .nk-productwave-icon img {
        width: 34px;
        height: 34px;
    }

/* MODERN PAGINATION */
.nk-productwave-pagination {
    position: absolute;
    left: 50% !important;
    bottom: 34px !important;
    z-index: 12;
    width: auto !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.20);
    backdrop-filter: blur(12px);
    transform: translateX(-50%);
}

    .nk-productwave-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 !important;
        border-radius: 999px;
        background: rgba(255,255,255,.66);
        opacity: 1;
        transition: width .35s cubic-bezier(.16, 1, .3, 1), background .35s cubic-bezier(.16, 1, .3, 1);
    }

    .nk-productwave-pagination .swiper-pagination-bullet-active {
        width: 32px;
        background: #ffffff;
    }

/* RESPONSIVE */
@media (max-width: 1180px) {
    .nk-productwave-swiper {
        height: 600px;
    }

    .nk-productwave-slide {
        width: 54vw;
        min-width: 360px;
        height: 600px;
    }

    .nk-productwave-product {
        top: 94px;
        width: min(320px, 74%);
    }

    .nk-productwave-slide.swiper-slide-active .nk-productwave-product {
        top: 78px;
        transform: translateX(-50%) scale(1.08);
    }

    .nk-productwave-content h3 {
        font-size: clamp(34px, 6vw, 56px);
    }
}

@media (max-width: 760px) {
    .nk-productwave-top-wave,
    .nk-productwave-bottom-wave {
        height: 86px;
    }

    .nk-productwave-swiper {
        height: 550px;
    }

    .nk-productwave-slide {
        width: 82vw;
        min-width: 280px;
        height: 550px;
    }

    .nk-productwave-product {
        top: 86px;
        width: min(260px, 78%);
        height: 170px;
    }

    .nk-productwave-slide.swiper-slide-active .nk-productwave-product {
        top: 70px;
        transform: translateX(-50%) scale(1.02);
    }

    .nk-productwave-content {
        margin-top: 154px;
        width: calc(100% - 34px);
    }

    .nk-productwave-icon {
        width: 62px;
        height: 62px;
        margin-bottom: 14px;
    }

        .nk-productwave-icon img {
            width: 34px;
            height: 34px;
        }

    .nk-productwave-content h3 {
        font-size: clamp(22px, 7vw, 30px);
    }

    .nk-productwave-content p {
        font-size: 13px;
    }

    .nk-productwave-btn {
        height: 42px;
        min-width: 136px;
        font-size: 11px;
    }

    .nk-productwave-pagination {
        bottom: 24px !important;
        display:none;
    }
}
.nk-aboutsplit,
.nk-aboutsplit * {
    box-sizing: border-box;
}

.nk-aboutsplit {
    position: relative;
    padding: 110px 0 120px;
    background: var(--nk-white);
    overflow: hidden;
    font-family: var(--nk-font-body);
}

.nk-aboutsplit-container {
    width: min(var(--nk-container), calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, 520px) minmax(420px, 1fr);
    align-items: center;
    gap: 58px;
}

/* SOL İÇERİK */
.nk-aboutsplit-content {
    position: relative;
    z-index: 2;
}

.nk-aboutsplit-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--nk-green);
    font-family: var(--nk-font-heading);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

    .nk-aboutsplit-kicker::before {
        content: "";
        width: 42px;
        height: 2px;
        border-radius: var(--nk-radius-pill);
        background: linear-gradient( 90deg, var(--nk-straw) 0%, var(--nk-leaf) 100% );
    }

.nk-aboutsplit-title {
    margin: 0;
    color: var(--nk-green-dark);
    font-family: var(--nk-font-heading);
    font-size: clamp(42px, 5vw, 82px);
    line-height: .95;
    font-weight: 900;
    letter-spacing: -.055em;
}

    .nk-aboutsplit-title strong {
        color: var(--nk-green);
        font-weight: 900;
    }

.nk-aboutsplit-text {
    max-width: 500px;
    margin: 24px 0 0;
    color: rgba(6, 65, 31, .72);
    font-size: 17px;
    line-height: 1.78;
    font-weight: 500;
}

.nk-aboutsplit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    height: 52px;
    margin-top: 32px;
    padding: 0 26px;
    border-radius: var(--nk-radius-pill);
    background: linear-gradient( 135deg, var(--nk-green-dark) 0%, var(--nk-green) 100% );
    color: var(--nk-white);
    text-decoration: none !important;
    font-family: var(--nk-font-heading);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
    box-shadow: 0 20px 42px -26px rgba(6, 65, 31, .55);
    transition: transform .35s var(--nk-ease), box-shadow .35s var(--nk-ease), background .35s var(--nk-ease);
}

    .nk-aboutsplit-button:hover {
        transform: translateY(-2px);
        background: linear-gradient( 135deg, var(--nk-green) 0%, var(--nk-leaf) 100% );
        box-shadow: 0 24px 46px -24px rgba(6, 65, 31, .62);
    }

/* SAĞ KOLAJ */
.nk-aboutsplit-visual {
    position: relative;
    min-height: 720px;
    z-index: 1;
}

.nk-aboutsplit-blob {
    position: absolute;
    right: 20px;
    top: 46px;
    width: 74%;
    height: 76%;
    border-radius: 44% 56% 49% 51% / 43% 39% 61% 57%;
    background: radial-gradient(circle at 30% 18%, rgba(255, 255, 255, .72), transparent 34%), linear-gradient( 135deg, var(--nk-cream) 0%, var(--nk-cream-2) 58%, rgba(131, 182, 63, .13) 100% );
    z-index: 0;
    animation: nkBlobFloat 12s ease-in-out infinite;
}

.nk-aboutsplit-dots {
    position: absolute;
    left: 45%;
    bottom: 92px;
    width: 170px;
    height: 230px;
    z-index: 1;
    opacity: .82;
    background-image: radial-gradient(var(--nk-green) 1.45px, transparent 1.45px);
    background-size: 11px 11px;
    border-radius: var(--nk-radius-md);
}

.nk-aboutsplit-mini-icon {
    position: absolute;
    right: 135px;
    top: 118px;
    z-index: 3;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--nk-green-dark);
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 38px -26px rgba(6, 65, 31, .26);
}

    .nk-aboutsplit-mini-icon svg {
        width: 32px;
        height: 32px;
        display: block;
    }

/* GÖRSEL KARTLAR */
.nk-aboutsplit-card {
    position: absolute;
    overflow: hidden;
    background: var(--nk-white);
    box-shadow: 0 30px 70px -38px rgba(6, 65, 31, .28);
}

    .nk-aboutsplit-card img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

.nk-aboutsplit-card-lg {
    top: 34px;
    left: 120px;
    width: 315px;
    height: 360px;
    border-radius: var(--nk-radius-md);
    border: 7px solid var(--nk-green);
    z-index: 3;
}

.nk-aboutsplit-card-md {
    right: 48px;
    top: 240px;
    width: 372px;
    height: 390px;
    border-radius: var(--nk-radius-md);
    z-index: 2;
}

.nk-aboutsplit-card-sm {
    left: 0;
    bottom: 0;
    width: 160px;
    height: 205px;
    border-radius: var(--nk-radius-sm);
    z-index: 3;
}

/* YUMURTA DETAYLARI */
.nk-aboutsplit-egg {
    position: absolute;
    z-index: 4;
}

    

.nk-aboutsplit-egg-top {
    width: 100px;
    height: 138px;
    left: -6px;
    top: -8px;
    transform: rotate(8deg);
    animation: nkEggFloatTop 5.6s ease-in-out infinite;
}
.nk-aboutsplit-egg-top img {
    height:135px;
}
.nk-aboutsplit-egg-bottom {
    width: 88px;
    height: 120px;
    left: -8px;
    bottom: 14px;
    transform: rotate(14deg);
    animation: nkEggFloatBottom 6.4s ease-in-out infinite;
}
.nk-aboutsplit-egg-bottom img {
    height: 135px;
}

/* ANİMASYONLAR */
@keyframes nkBlobFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        border-radius: 44% 56% 49% 51% / 43% 39% 61% 57%;
    }

    50% {
        transform: translateY(8px) rotate(-1.5deg);
        border-radius: 48% 52% 43% 57% / 38% 46% 54% 62%;
    }
}

@keyframes nkEggFloatTop {
    0%, 100% {
        transform: translateY(0) rotate(8deg);
    }

    50% {
        transform: translateY(-12px) rotate(4deg);
    }
}

@keyframes nkEggFloatBottom {
    0%, 100% {
        transform: translateY(0) rotate(14deg);
    }

    50% {
        transform: translateY(10px) rotate(9deg);
    }
}

/* REVEAL */
.nk-reveal-up,
.nk-reveal-scale {
    opacity: 0;
    transition: opacity .9s var(--nk-ease), transform .9s var(--nk-ease);
    will-change: opacity, transform;
}

.nk-reveal-up {
    transform: translateY(38px);
}

.nk-reveal-scale {
    transform: translateY(18px) scale(.92);
}

.nk-reveal-delay-2 {
    transition-delay: .14s;
}

.nk-reveal-delay-3 {
    transition-delay: .24s;
}

.nk-reveal-section.is-visible .nk-reveal-up,
.nk-reveal-section.is-visible .nk-reveal-scale {
    opacity: 1;
    transform: none;
}

/* TABLET */
@media (max-width: 1180px) {
    .nk-aboutsplit-container {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .nk-aboutsplit-content {
        max-width: 760px;
    }

    .nk-aboutsplit-text {
        max-width: 650px;
    }

    .nk-aboutsplit-visual {
        min-height: 680px;
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
    }
}

/* MOBİL */
@media (max-width: 767px) {
    .nk-aboutsplit {
        padding: 72px 0 84px;
    }

    .nk-aboutsplit-container {
        width: min(100% - 24px, var(--nk-container));
        gap: 32px;
    }

    .nk-aboutsplit-title {
        font-size: clamp(34px, 11vw, 50px);
        line-height: .98;
    }

    .nk-aboutsplit-text {
        margin-top: 18px;
        font-size: 15.5px;
        line-height: 1.7;
    }

    .nk-aboutsplit-button {
        min-width: 150px;
        height: 48px;
        margin-top: 24px;
        font-size: 13px;
    }

    .nk-aboutsplit-visual {
        min-height: 530px;
    }

    .nk-aboutsplit-blob {
        right: 0;
        top: 50px;
        width: 86%;
        height: 74%;
    }

    .nk-aboutsplit-card-lg {
        top: 16px;
        left: 18px;
        width: 196px;
        height: 225px;
        border-width: 5px;
        border-radius: var(--nk-radius-md);
    }

    .nk-aboutsplit-card-md {
        right: 0;
        top: 192px;
        width: 230px;
        height: 242px;
        border-radius: var(--nk-radius-md);
    }

    .nk-aboutsplit-card-sm {
        left: 8px;
        bottom: 8px;
        width: 116px;
        height: 146px;
        border-radius: var(--nk-radius-sm);
    }

    .nk-aboutsplit-mini-icon {
        right: 28px;
        top: 94px;
        width: 46px;
        height: 46px;
    }

        .nk-aboutsplit-mini-icon svg {
            width: 24px;
            height: 24px;
        }

    .nk-aboutsplit-dots {
        left: 47%;
        bottom: 26px;
        width: 104px;
        height: 146px;
        background-size: 9px 9px;
    }

    .nk-aboutsplit-egg-top {
        width: 65px;
        height: 90px;
        right: 125px;
        left: inherit;
        top: -10px;
    }

    .nk-aboutsplit-egg-bottom {
        width: 58px;
        height: 82px;
        left: 12px;
        bottom: 8px;
    }
}
.naturakoy-yolkcompact,
.naturakoy-yolkcompact * {
    box-sizing: border-box;
}

.naturakoy-yolkcompact {
    position: relative;
    overflow: hidden;
    padding: 96px 0 104px;
    color: var(--nk-white);
    background: radial-gradient(circle at 12% 72%, rgba(255, 247, 223, .12), transparent 28%), radial-gradient(circle at 86% 22%, rgba(131, 182, 63, .16), transparent 31%), linear-gradient( 135deg, var(--nk-green-deep) 0%, var(--nk-green-dark) 48%, var(--nk-green) 100% );
    font-family: var(--nk-font-body);
    isolation: isolate;
}

/* GEÇİŞLER */
.naturakoy-yolkcompact-top-wave,
.naturakoy-yolkcompact-bottom-wave {
    position: absolute;
    left: 0;
    right: 0;
    height: 96px;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

.naturakoy-yolkcompact-top-wave {
    top: -1px;
}

.naturakoy-yolkcompact-bottom-wave {
    bottom: -1px;
}

    .naturakoy-yolkcompact-top-wave svg,
    .naturakoy-yolkcompact-bottom-wave svg {
        width: 100%;
        height: 100%;
        display: block;
    }

    .naturakoy-yolkcompact-top-wave path,
    .naturakoy-yolkcompact-bottom-wave path {
        fill: var(--nk-white);
    }

/* ARKA PLAN DETAYLARI */
.naturakoy-yolkcompact-bg-glow {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    pointer-events: none;
}

.naturakoy-yolkcompact-bg-glow-left {
    left: -260px;
    bottom: -240px;
    width: 560px;
    height: 560px;
    background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.025));
}

.naturakoy-yolkcompact-bg-glow-right {
    right: -190px;
    top: 60px;
    width: 430px;
    height: 430px;
    background: linear-gradient(180deg, rgba(232,207,134,.16), rgba(255,255,255,.035));
}

.naturakoy-yolkcompact-container {
    position: relative;
    z-index: 3;
    width: min(var(--nk-container), calc(100% - 48px));
    margin: 0 auto;
}

.naturakoy-yolkcompact-grid {
    display: grid;
    grid-template-columns: minmax(430px, .92fr) minmax(420px, 1fr);
    align-items: center;
    gap: 56px;
    min-height: 520px;
}

/* SOL İÇERİK */
.naturakoy-yolkcompact-content {
    max-width: 650px;
}

.naturakoy-yolkcompact-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 17px;
    color: var(--nk-cream);
    font-family: var(--nk-font-heading);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

    .naturakoy-yolkcompact-kicker::before {
        content: "";
        width: 38px;
        height: 1px;
        background: rgba(255,247,223,.55);
    }

.naturakoy-yolkcompact-content h2 {
    margin: 0;
    color: var(--nk-white);
    font-family: var(--nk-font-heading);
    font-size: clamp(38px, 4.2vw, 66px);
    line-height: .96;
    font-weight: 900;
    letter-spacing: -.055em;
    text-shadow: 0 22px 54px rgba(0,0,0,.20);
}

    .naturakoy-yolkcompact-content h2 strong {
        display: block;
        color: var(--nk-straw);
    }

.naturakoy-yolkcompact-content p {
    max-width: 560px;
    margin: 20px 0 0;
    color: rgba(255,255,255,.78);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
}

/* SKALA KARTI */
.naturakoy-yolkcompact-scale-card {
    margin-top: 34px;
    padding: 22px 24px 24px;
    border-radius: var(--nk-radius-lg);
    background: radial-gradient(circle at 92% 0%, rgba(255,247,223,.12), transparent 36%), rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.13);
    box-shadow: 0 34px 90px -72px rgba(0,0,0,.58);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.naturakoy-yolkcompact-scale-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

    .naturakoy-yolkcompact-scale-head span {
        color: var(--nk-cream);
        font-family: var(--nk-font-heading);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .naturakoy-yolkcompact-scale-head small {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 30px;
        padding: 0 14px;
        border-radius: var(--nk-radius-pill);
        color: var(--nk-green-deep);
        background: var(--nk-cream);
        font-family: var(--nk-font-heading);
        font-size: 12px;
        font-weight: 900;
        white-space: nowrap;
    }

/* SKALA SCROLL GÜVENLİ ALAN */
.naturakoy-yolkcompact-scale-scroll {
    position: relative;
    width: 100%;
    overflow: visible;
}

/* SKALA ANA SATIR */
.naturakoy-yolkcompact-scale {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
    width: 100%;
    min-height: 64px;
}

/* NOKTALI ÇİZGİ */
.naturakoy-yolkcompact-scale-line {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 50%;
    height: 2px;
    transform: translateY(-50%);
    background-image: linear-gradient( to right, rgba(255,247,223,.54) 40%, rgba(255,247,223,0) 0% );
    background-size: 10px 2px;
    background-repeat: repeat-x;
    z-index: 0;
}

/* HER ELEMAN EŞİT ALAN */
.naturakoy-yolkcompact-level,
.naturakoy-yolkcompact-yolk {
    position: relative;
    z-index: 2;
    flex: 0 0 50px;
    width: 50px;
    height: 58px;
    display: grid;
    place-items: center;
}

    /* NUMARA DAİRELERİ */
    .naturakoy-yolkcompact-level span {
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: var(--nk-green-deep);
        font-family: var(--nk-font-heading);
        font-size: 14px;
        font-weight: 900;
        background: var(--nk-cream-2);
        box-shadow: 0 14px 24px -18px rgba(0,0,0,.52), inset 0 1px 0 rgba(255,255,255,.72);
    }

    .naturakoy-yolkcompact-level.level-9 span,
    .naturakoy-yolkcompact-level.level-10 span,
    .naturakoy-yolkcompact-level.level-11 span {
        background: var(--nk-straw);
    }

    .naturakoy-yolkcompact-level.level-13 span {
        background: var(--nk-yolk);
    }

    .naturakoy-yolkcompact-level.is-highlighted span {
        transform: scale(1.04);
        box-shadow: 0 18px 34px -18px rgba(247,189,40,.58), 0 0 0 7px rgba(247,189,40,.10);
    }

    /* YUMURTA SARISI DAİRELERİ */
    .naturakoy-yolkcompact-yolk i {
        width: 46px;
        height: 46px;
        display: block;
        border-radius: 50%;
        position: relative;
        box-shadow: 0 18px 34px -20px rgba(0,0,0,.50);
    }

        .naturakoy-yolkcompact-yolk i::before {
            content: "";
            position: absolute;
            inset: 6px;
            border-radius: 50%;
            background: radial-gradient(circle at 32% 28%, rgba(255,255,255,.65), transparent 28%);
        }

    .naturakoy-yolkcompact-yolk.yolk-soft i {
        background: radial-gradient(circle at 36% 32%, #ffe98c 0%, #e8bf32 52%, #c98814 100%);
    }

    .naturakoy-yolkcompact-yolk.yolk-rich i {
        background: radial-gradient(circle at 36% 32%, #ffc76a 0%, var(--nk-orange) 52%, var(--nk-orange-dark) 100%);
    }

    .naturakoy-yolkcompact-yolk.yolk-deep i {
        width: 50px;
        height: 50px;
        background: radial-gradient(circle at 36% 32%, #ffc85d 0%, var(--nk-orange) 44%, #c8500a 100%);
        box-shadow: 0 18px 34px -18px rgba(242,138,24,.62), 0 0 0 8px rgba(242,138,24,.10);
    }

/* SAĞ GÖRSEL */
.naturakoy-yolkcompact-visual {
    position: relative;
    min-height: 460px;
    display: grid;
    place-items: center;
}

.naturakoy-yolkcompact-orbit {
    position: absolute;
    inset: 16px 8%;
    border-radius: 50%;
    pointer-events: none;
    opacity: .9;
}

    .naturakoy-yolkcompact-orbit::before {
        content: "";
        position: absolute;
        inset: 7%;
        border-radius: 50%;
        border: 1px dashed rgba(255,247,223,.24);
        animation: nkYolkCompactOrbit 18s linear infinite;
    }

    .naturakoy-yolkcompact-orbit span:first-child {
        position: absolute;
        right: 18%;
        top: 16%;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--nk-straw);
        box-shadow: 0 0 0 8px rgba(232,207,134,.12);
    }

    .naturakoy-yolkcompact-orbit span:last-child {
        position: absolute;
        left: 13%;
        bottom: 24%;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--nk-leaf);
        box-shadow: 0 0 0 8px rgba(131,182,63,.12);
    }

.naturakoy-yolkcompact-image-shell {
    position: relative;
    z-index: 2;
    width: min(620px, 100%);
    display: grid;
    place-items: center;
}

    .naturakoy-yolkcompact-image-shell::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 55%;
        width: 84%;
        height: 58%;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        background: radial-gradient(circle at center, rgba(255,247,223,.25), transparent 68%);
        filter: blur(2px);
    }

    .naturakoy-yolkcompact-image-shell img {
        position: relative;
        z-index: 2;
        width: min(620px, 100%);
        height: auto;
        display: block;
        filter: drop-shadow(0 32px 42px rgba(0,0,0,.24));
        animation: nkYolkCompactImageFloat 7s ease-in-out infinite;
    }

.naturakoy-yolkcompact-badge {
    position: absolute;
    right: 5%;
    top: 0%;
    z-index: 4;
    display: grid;
    gap: 2px;
    min-width: 142px;
    padding: 15px 18px;
    border-radius: var(--nk-radius-md);
    background: rgba(255, 247, 223, .94);
    color: var(--nk-green-dark);
    box-shadow: 0 24px 50px -34px rgba(0, 0, 0, .40);
    transform: rotate(-3deg);
}

    .naturakoy-yolkcompact-badge span {
        color: var(--nk-green);
        font-family: var(--nk-font-heading);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .naturakoy-yolkcompact-badge strong {
        font-family: var(--nk-font-heading);
        font-size: 22px;
        line-height: 1;
        font-weight: 900;
        letter-spacing: -.035em;
    }

/* ANİMASYONLAR */
@keyframes nkYolkCompactOrbit {
    to {
        transform: rotate(360deg);
    }
}

@keyframes nkYolkCompactImageFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1.01);
    }
}

/* REVEAL */
.nk-compact-reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .85s var(--nk-ease), transform .85s var(--nk-ease);
    will-change: opacity, transform;
}

.nk-compact-delay-1 {
    transition-delay: .14s;
}

.nk-compact-reveal-section.is-visible .nk-compact-reveal-up {
    opacity: 1;
    transform: translateY(0);
}

/* TABLET */
@media (max-width: 1180px) {
    .naturakoy-yolkcompact {
        padding: 92px 0 100px;
    }

    .naturakoy-yolkcompact-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        min-height: auto;
    }

    .naturakoy-yolkcompact-content {
        max-width: 860px;
        margin: 0 auto;
        text-align: center;
    }

    .naturakoy-yolkcompact-kicker {
        justify-content: center;
    }

    .naturakoy-yolkcompact-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .naturakoy-yolkcompact-scale-card {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .naturakoy-yolkcompact-visual {
        min-height: 430px;
    }

    .naturakoy-yolkcompact-image-shell {
        width: min(580px, 100%);
    }
}

/* MOBİL */
@media (max-width: 767px) {
    .naturakoy-yolkcompact {
        padding: 78px 0 76px !important;
        overflow: hidden !important;
    }

    .naturakoy-yolkcompact-top-wave,
    .naturakoy-yolkcompact-bottom-wave {
        height: 58px !important;
    }

    .naturakoy-yolkcompact-container {
        width: calc(100% - 28px) !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        overflow: visible !important;
    }

    .naturakoy-yolkcompact-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        min-height: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
    }

    .naturakoy-yolkcompact-content {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 auto !important;
        text-align: center !important;
        overflow: visible !important;
    }

    .naturakoy-yolkcompact-kicker {
        justify-content: center !important;
        margin-bottom: 12px !important;
        font-size: 9px !important;
        letter-spacing: .12em !important;
        white-space: normal !important;
        line-height: 1.4 !important;
    }

        .naturakoy-yolkcompact-kicker::before {
            width: 22px !important;
        }

    .naturakoy-yolkcompact-content h2 {
        width: 100% !important;
        margin: 0 auto !important;
        font-size: clamp(32px, 12vw, 44px) !important;
        line-height: .96 !important;
        letter-spacing: -.045em !important;
        text-align: center !important;
        white-space: normal !important;
    }

        .naturakoy-yolkcompact-content h2 strong {
            display: block !important;
        }

    .naturakoy-yolkcompact-content p {
        width: 100% !important;
        max-width: 330px !important;
        margin: 14px auto 0 !important;
        font-size: 13.5px !important;
        line-height: 1.58 !important;
        text-align: center !important;
    }

    /* SKALA KARTI */
    .naturakoy-yolkcompact-scale-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 22px auto 0 !important;
        padding: 15px 12px 15px !important;
        border-radius: 22px !important;
        overflow: hidden !important;
    }

    .naturakoy-yolkcompact-scale-head {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
        margin-bottom: 12px !important;
    }

        .naturakoy-yolkcompact-scale-head span {
            font-size: 9px !important;
            letter-spacing: .10em !important;
            white-space: nowrap !important;
        }

        .naturakoy-yolkcompact-scale-head small {
            height: 24px !important;
            padding: 0 10px !important;
            font-size: 10px !important;
            white-space: nowrap !important;
        }

    .naturakoy-yolkcompact-scale-scroll {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        padding-bottom: 4px !important;
    }

        .naturakoy-yolkcompact-scale-scroll::-webkit-scrollbar {
            display: none !important;
        }

    .naturakoy-yolkcompact-scale {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 10px !important;
        width: max-content !important;
        min-width: 600px !important;
        padding: 5px 4px 10px !important;
    }

    .naturakoy-yolkcompact-scale-line {
        left: 24px !important;
        right: auto !important;
        width: 550px !important;
        top: 50% !important;
    }

    .naturakoy-yolkcompact-level,
    .naturakoy-yolkcompact-yolk {
        flex: 0 0 42px !important;
        width: 42px !important;
        height: 48px !important;
        min-width: 42px !important;
    }

        .naturakoy-yolkcompact-level span {
            width: 36px !important;
            height: 36px !important;
            font-size: 12px !important;
        }

        .naturakoy-yolkcompact-yolk i {
            width: 40px !important;
            height: 40px !important;
        }

        .naturakoy-yolkcompact-yolk.yolk-deep i {
            width: 42px !important;
            height: 42px !important;
            box-shadow: 0 14px 26px -18px rgba(242,138,24,.58), 0 0 0 6px rgba(242,138,24,.10) !important;
        }

        .naturakoy-yolkcompact-level.is-highlighted span {
            transform: scale(1.02) !important;
            box-shadow: 0 14px 26px -18px rgba(247,189,40,.48), 0 0 0 5px rgba(247,189,40,.10) !important;
        }

    /* GÖRSEL ALANI */
    .naturakoy-yolkcompact-visual {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 280px !important;
        margin-top: 8px !important;
        overflow: visible !important;
    }

    .naturakoy-yolkcompact-orbit {
        inset: 8px 0 !important;
        opacity: .45 !important;
    }

        .naturakoy-yolkcompact-orbit::before {
            inset: 10% !important;
        }

    .naturakoy-yolkcompact-image-shell {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }

        .naturakoy-yolkcompact-image-shell::before {
            width: 92% !important;
            height: 52% !important;
        }

        .naturakoy-yolkcompact-image-shell img {
            width: min(100%, 380px) !important;
            max-width: 100% !important;
            margin: 0 auto !important;
            display: block !important;
            filter: drop-shadow(0 20px 28px rgba(0,0,0,.22)) !important;
        }

    .naturakoy-yolkcompact-badge {
        display: none !important;
    }

    .naturakoy-yolkcompact-bg-glow-left {
        left: -220px !important;
        bottom: -170px !important;
        width: 380px !important;
        height: 380px !important;
    }

    .naturakoy-yolkcompact-bg-glow-right {
        right: -180px !important;
        top: 110px !important;
        width: 330px !important;
        height: 330px !important;
    }
}

/* KÜÇÜK MOBİL */
@media (max-width: 420px) {
    .naturakoy-yolkcompact {
        padding-top: 72px !important;
        padding-bottom: 68px !important;
    }

    .naturakoy-yolkcompact-container {
        width: calc(100% - 22px) !important;
    }

    .naturakoy-yolkcompact-content h2 {
        font-size: clamp(30px, 11vw, 40px) !important;
    }

    .naturakoy-yolkcompact-content p {
        max-width: 300px !important;
        font-size: 13px !important;
    }

    .naturakoy-yolkcompact-scale {
        min-width: 570px !important;
        gap: 9px !important;
    }

    .naturakoy-yolkcompact-scale-line {
        width: 520px !important;
    }

    .naturakoy-yolkcompact-level,
    .naturakoy-yolkcompact-yolk {
        flex-basis: 40px !important;
        width: 40px !important;
        min-width: 40px !important;
    }

        .naturakoy-yolkcompact-level span {
            width: 34px !important;
            height: 34px !important;
            font-size: 11px !important;
        }

        .naturakoy-yolkcompact-yolk i {
            width: 38px !important;
            height: 38px !important;
        }

        .naturakoy-yolkcompact-yolk.yolk-deep i {
            width: 40px !important;
            height: 40px !important;
        }

    .naturakoy-yolkcompact-visual {
        min-height: 250px !important;
    }

    .naturakoy-yolkcompact-image-shell img {
        width: min(100%, 340px) !important;
    }
}
.naturakoy-sosyalkanit,
.naturakoy-sosyalkanit * {
    box-sizing: border-box;
}

.naturakoy-sosyalkanit {
    position: relative;
    overflow: hidden;
    padding: 82px 0;
    color: var(--nk-green-dark);
    font-family: var(--nk-font-body);
}

.naturakoy-sosyalkanit-container {
    position: relative;
    z-index: 2;
    width: min(var(--nk-container), calc(100% - 48px));
    margin: 0 auto;
}

/* MARQUEE */
.naturakoy-sosyalkanit-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
}

.naturakoy-sosyalkanit-marquee-top {
    margin-bottom: 34px;
}

.naturakoy-sosyalkanit-marquee-bottom {
    margin-top: 34px;
}

.naturakoy-sosyalkanit-marquee-track {
    display: flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    will-change: transform;
}

.naturakoy-sosyalkanit-marquee-top .naturakoy-sosyalkanit-marquee-track {
    animation: nkSocialMarqueeLeft 34s linear infinite;
}

.naturakoy-sosyalkanit-marquee-bottom .naturakoy-sosyalkanit-marquee-track {
    animation: nkSocialMarqueeRight 36s linear infinite;
}

.naturakoy-sosyalkanit-marquee-track span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: var(--nk-radius-pill);
    background: var(--nk-cream);
    border: 1px solid rgba(15, 107, 53, .10);
    color: var(--nk-green);
    font-family: var(--nk-font-heading);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

/* BAŞLIK */
.naturakoy-sosyalkanit-head {
    max-width: 780px;
    margin: 0 auto 44px;
    text-align: center;
}

    .naturakoy-sosyalkanit-head > span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
        color: var(--nk-green);
        font-family: var(--nk-font-heading);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .18em;
        text-transform: uppercase;
    }

    .naturakoy-sosyalkanit-head h2 {
        margin: 0;
        color: var(--nk-green-dark);
        font-family: var(--nk-font-heading);
        font-size: clamp(38px, 4.4vw, 72px);
        line-height: .98;
        font-weight: 900;
        letter-spacing: -.055em;
    }

        .naturakoy-sosyalkanit-head h2 strong {
            display: block;
            color: var(--nk-green);
        }

    .naturakoy-sosyalkanit-head p {
        max-width: 650px;
        margin: 20px auto 0;
        color: rgba(6, 65, 31, .70);
        font-size: 16px;
        line-height: 1.72;
        font-weight: 500;
    }

/* GÜVENLİ GRID YAPI */
.naturakoy-sosyalkanit-layout {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 22px;
    align-items: stretch;
    max-width: 1180px;
    margin: 0 auto;
}

/* KARTLAR */
.naturakoy-sosyalkanit-card {
    position: relative;
    min-height: 150px;
    padding: 18px 18px 17px;
    border-radius: 24px;
    background: radial-gradient(circle at 92% 0%, rgba(131, 182, 63, .08), transparent 34%), rgba(255, 247, 223, .72);
    border: 1px solid rgba(15, 107, 53, .10);
    box-shadow: 0 24px 60px -44px rgba(6, 65, 31, .26);
    animation: nkSocialFloatSoft 7s ease-in-out infinite;
}

    .naturakoy-sosyalkanit-card:nth-child(odd) {
        animation-delay: .3s;
    }

    .naturakoy-sosyalkanit-card:nth-child(even) {
        animation-delay: .9s;
    }

.naturakoy-sosyalkanit-card-head {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 12px;
    min-width: 0;
}

.naturakoy-sosyalkanit-avatar {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--nk-green-dark), var(--nk-green));
    color: var(--nk-white);
    font-family: var(--nk-font-heading);
    font-size: 14px;
    font-weight: 900;
}

.naturakoy-sosyalkanit-card-head div {
    min-width: 0;
}

.naturakoy-sosyalkanit-card-head strong {
    display: block;
    color: var(--nk-green-dark);
    font-family: var(--nk-font-heading);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 900;
    word-break: break-word;
}

.naturakoy-sosyalkanit-card-head small {
    display: block;
    margin-top: 2px;
    color: rgba(6, 65, 31, .58);
    font-size: 11px;
    line-height: 1.25;
}

.naturakoy-sosyalkanit-card p {
    margin: 0;
    color: rgba(16, 21, 16, .72);
    font-size: 13.5px;
    line-height: 1.58;
    font-weight: 500;
}

/* GRID POZİSYONLARI - ÜST ÜSTE BİNME YOK */
.naturakoy-sosyalkanit-card-1 {
    grid-column: 1 / 5;
}

.naturakoy-sosyalkanit-tag-1 {
    grid-column: 5 / 9;
}

.naturakoy-sosyalkanit-card-2 {
    grid-column: 9 / 13;
}

.naturakoy-sosyalkanit-card-3 {
    grid-column: 1 / 4;
}

.naturakoy-sosyalkanit-center-card {
    grid-column: 4 / 10;
}

.naturakoy-sosyalkanit-card-4 {
    grid-column: 10 / 13;
}

.naturakoy-sosyalkanit-tag-2 {
    grid-column: 2 / 5;
}

.naturakoy-sosyalkanit-card-5 {
    grid-column: 5 / 9;
}

.naturakoy-sosyalkanit-card-6 {
    grid-column: 9 / 12;
}

/* ORTA MESAJ KARTI */
.naturakoy-sosyalkanit-center-card {
    min-height: 150px;
    padding: 28px 32px;
    border-radius: 30px;
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(255, 247, 223, .7), transparent 45%), linear-gradient(135deg, var(--nk-green-dark), var(--nk-green));
    color: var(--nk-white);
    box-shadow: 0 28px 70px -48px rgba(6, 65, 31, .44);
}

    .naturakoy-sosyalkanit-center-card span {
        margin-bottom: 10px;
        color: var(--nk-cream);
        font-family: var(--nk-font-heading);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: .16em;
        text-transform: uppercase;
    }

    .naturakoy-sosyalkanit-center-card strong {
        max-width: 520px;
        color: var(--nk-white);
        font-family: var(--nk-font-heading);
        font-size: clamp(26px, 2.4vw, 42px);
        line-height: 1.04;
        font-weight: 900;
        letter-spacing: -.04em;
    }

/* HASHTAG */
.naturakoy-sosyalkanit-tag {
    min-height: 150px;
    border-radius: 26px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 20px;
    color: var(--nk-green);
    font-family: var(--nk-font-heading);
    font-size: clamp(17px, 1.7vw, 25px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.035em;
    background: rgba(255,255,255,.72);
    border: 1px dashed rgba(15, 107, 53, .18);
    animation: nkSocialTagFloat 8s ease-in-out infinite;
}

/* REVEAL */
.naturakoy-sosyalkanit .naturakoy-sosyalkanit-head,
.naturakoy-sosyalkanit .naturakoy-sosyalkanit-layout {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .85s var(--nk-ease), transform .85s var(--nk-ease);
}

.naturakoy-sosyalkanit.is-visible .naturakoy-sosyalkanit-head,
.naturakoy-sosyalkanit.is-visible .naturakoy-sosyalkanit-layout {
    opacity: 1;
    transform: translateY(0);
}

/* ANİMASYONLAR */
@keyframes nkSocialMarqueeLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes nkSocialMarqueeRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes nkSocialFloatSoft {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes nkSocialTagFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-6px) rotate(-1deg);
    }
}

/* TABLET */
@media (max-width: 1180px) {
    .naturakoy-sosyalkanit {
        padding: 72px 0;
    }

    .naturakoy-sosyalkanit-layout {
        grid-template-columns: repeat(6, 1fr);
        gap: 18px;
    }

    .naturakoy-sosyalkanit-card-1,
    .naturakoy-sosyalkanit-card-2,
    .naturakoy-sosyalkanit-card-3,
    .naturakoy-sosyalkanit-card-4,
    .naturakoy-sosyalkanit-card-5,
    .naturakoy-sosyalkanit-card-6 {
        grid-column: span 3;
    }

    .naturakoy-sosyalkanit-tag-1,
    .naturakoy-sosyalkanit-tag-2 {
        grid-column: span 3;
    }

    .naturakoy-sosyalkanit-center-card {
        grid-column: 1 / -1;
        order: -1;
    }
}

/* MOBİL */
@media (max-width: 767px) {
    .naturakoy-sosyalkanit {
        padding: 58px 0;
    }

    .naturakoy-sosyalkanit-container {
        width: calc(100% - 26px);
    }

    .naturakoy-sosyalkanit-marquee-top {
        margin-bottom: 20px;
    }

    .naturakoy-sosyalkanit-marquee-bottom {
        margin-top: 20px;
    }

    .naturakoy-sosyalkanit-marquee-track {
        gap: 10px;
    }

        .naturakoy-sosyalkanit-marquee-track span {
            min-height: 34px;
            padding: 0 14px;
            font-size: 11px;
        }

    .naturakoy-sosyalkanit-head {
        margin-bottom: 28px;
    }

        .naturakoy-sosyalkanit-head > span {
            margin-bottom: 12px;
            font-size: 10px;
            letter-spacing: .14em;
        }

        .naturakoy-sosyalkanit-head h2 {
            font-size: clamp(32px, 10vw, 46px);
            line-height: 1;
        }

        .naturakoy-sosyalkanit-head p {
            margin-top: 14px;
            font-size: 14px;
            line-height: 1.62;
        }

    .naturakoy-sosyalkanit-layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 480px;
    }

    .naturakoy-sosyalkanit-card,
    .naturakoy-sosyalkanit-tag,
    .naturakoy-sosyalkanit-center-card {
        grid-column: 1 / -1 !important;
        min-height: auto;
        width: 100%;
    }

    .naturakoy-sosyalkanit-center-card {
        order: -1;
        padding: 24px 20px;
        border-radius: 24px;
    }

        .naturakoy-sosyalkanit-center-card strong {
            font-size: clamp(24px, 8vw, 34px);
        }

    .naturakoy-sosyalkanit-tag {
        padding: 16px;
        font-size: 21px;
        border-radius: 22px;
    }

    .naturakoy-sosyalkanit-card {
        padding: 16px;
        border-radius: 20px;
        animation: none;
    }

    .naturakoy-sosyalkanit-tag {
        animation: none;
    }

    .naturakoy-sosyalkanit-card p {
        font-size: 13px;
    }
}

/* KÜÇÜK MOBİL */
@media (max-width: 420px) {
    .naturakoy-sosyalkanit-container {
        width: calc(100% - 20px);
    }

    .naturakoy-sosyalkanit-head h2 {
        font-size: clamp(30px, 11vw, 40px);
    }

    .naturakoy-sosyalkanit-center-card {
        padding: 22px 16px;
    }

    .naturakoy-sosyalkanit-card-head strong {
        font-size: 13px;
    }

    .naturakoy-sosyalkanit-card p {
        font-size: 12.7px;
    }
}
.naturakoy-franchisebridge,
.naturakoy-franchisebridge * {
    box-sizing: border-box;
}

.naturakoy-franchisebridge {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    color: var(--nk-green-dark);
    font-family: var(--nk-font-body);
}

/* Eski geçiş detayları varsa kapat */
.naturakoy-franchisebridge-top-wave,
.naturakoy-franchisebridge-bottom-wave {
    display: none !important;
}

/* Arka plan doğal detay */
.naturakoy-franchisebridge-bg {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.naturakoy-franchisebridge-bg-left {
    left: -260px;
    bottom: -240px;
    width: 560px;
    height: 560px;
    background: linear-gradient(180deg, rgba(15,107,53,.08), rgba(15,107,53,.015));
}

.naturakoy-franchisebridge-bg-right {
    right: -180px;
    top: 60px;
    width: 440px;
    height: 440px;
    background: linear-gradient(180deg, rgba(232,207,134,.22), rgba(255,247,223,.02));
}

.naturakoy-franchisebridge-container {
    position: relative;
    z-index: 3;
    width: min(var(--nk-container), calc(100% - 48px));
    margin: 0 auto;
}

.naturakoy-franchisebridge-grid {
    display: grid;
    grid-template-columns: minmax(380px, .92fr) minmax(420px, 1fr);
    align-items: center;
    gap: 58px;
}

/* Sol içerik */
.naturakoy-franchisebridge-content {
    max-width: 660px;
}

.naturakoy-franchisebridge-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--nk-green);
    font-family: var(--nk-font-heading);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

    .naturakoy-franchisebridge-kicker::before {
        content: "";
        width: 42px;
        height: 1px;
        background: rgba(15, 107, 53, .34);
    }

.naturakoy-franchisebridge-content h2 {
    margin: 0;
    color: var(--nk-green-dark);
    font-family: var(--nk-font-heading);
    font-size: clamp(25px, 2.8vw, 45px);
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -.055em;
}

    .naturakoy-franchisebridge-content h2 strong {
        display: block;
        color: var(--nk-green);
    }

.naturakoy-franchisebridge-content p {
    max-width: 610px;
    margin: 24px 0 0;
    color: rgba(6, 65, 31, .72);
    font-size: 16.5px;
    line-height: 1.78;
    font-weight: 500;
}

/* CTA */
.naturakoy-franchisebridge-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.naturakoy-franchisebridge-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 56px;
    padding: 0 14px 0 26px;
    border-radius: var(--nk-radius-pill);
    background: linear-gradient(135deg, var(--nk-green-dark), var(--nk-green));
    color: var(--nk-white);
    text-decoration: none !important;
    font-family: var(--nk-font-heading);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
    box-shadow: 0 24px 48px -28px rgba(6, 65, 31, .58);
    transition: transform .35s var(--nk-ease), box-shadow .35s var(--nk-ease), background .35s var(--nk-ease);
}

.naturakoy-franchisebridge-primary-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--nk-white);
    color: var(--nk-green-dark);
    flex: 0 0 38px;
}

    .naturakoy-franchisebridge-primary-icon svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2.15;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.naturakoy-franchisebridge-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--nk-green), var(--nk-leaf));
    box-shadow: 0 30px 58px -28px rgba(6, 65, 31, .68);
}

.naturakoy-franchisebridge-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: var(--nk-radius-pill);
    background: var(--nk-cream);
    color: var(--nk-green-dark);
    text-decoration: none !important;
    font-family: var(--nk-font-heading);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .03em;
    border: 1px solid rgba(15, 107, 53, .12);
    transition: transform .35s var(--nk-ease), background .35s var(--nk-ease);
}

    .naturakoy-franchisebridge-secondary:hover {
        transform: translateY(-3px);
        background: var(--nk-cream-2);
    }

/* Sağ panel */
.naturakoy-franchisebridge-panel {
    position: relative;
    border-radius: 36px;
    padding: 28px;
    background: radial-gradient(circle at 88% 8%, rgba(232,207,134,.28), transparent 34%), linear-gradient(135deg, rgba(255,247,223,.82), rgba(255,255,255,.92));
    border: 1px solid rgba(15, 107, 53, .10);
    box-shadow: 0 36px 100px -64px rgba(6, 65, 31, .35);
}

    .naturakoy-franchisebridge-panel::before {
        content: "";
        position: absolute;
        inset: 14px;
        border-radius: 28px;
        border: 1px dashed rgba(15, 107, 53, .13);
        pointer-events: none;
    }

.naturakoy-franchisebridge-panel-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

    .naturakoy-franchisebridge-panel-head span {
        color: var(--nk-green);
        font-family: var(--nk-font-heading);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .16em;
        text-transform: uppercase;
    }

    .naturakoy-franchisebridge-panel-head strong {
        max-width: 230px;
        text-align: right;
        color: var(--nk-green-dark);
        font-family: var(--nk-font-heading);
        font-size: 28px;
        line-height: 1;
        font-weight: 900;
        letter-spacing: -.04em;
    }

/* Steps */
.naturakoy-franchisebridge-steps {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.naturakoy-franchisebridge-step {
    position: relative;
    min-height: 150px;
    padding: 22px 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .76);
    border: 1px solid rgba(15, 107, 53, .09);
    box-shadow: 0 22px 50px -38px rgba(6, 65, 31, .22);
    transition: transform .35s var(--nk-ease), box-shadow .35s var(--nk-ease), background .35s var(--nk-ease);
}

    .naturakoy-franchisebridge-step:hover {
        transform: translateY(-5px);
        background: var(--nk-white);
        box-shadow: 0 28px 60px -40px rgba(6, 65, 31, .34);
    }

.naturakoy-franchisebridge-step-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--nk-green-dark), var(--nk-green));
    color: var(--nk-white);
}

    .naturakoy-franchisebridge-step-icon svg {
        width: 34px;
        height: 34px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.naturakoy-franchisebridge-step span {
    display: block;
    margin-bottom: 7px;
    color: var(--nk-leaf);
    font-family: var(--nk-font-heading);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
}

.naturakoy-franchisebridge-step h3 {
    margin: 0;
    color: var(--nk-green-dark);
    font-family: var(--nk-font-heading);
    font-size: 22px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -.025em;
}

/* Reveal */
.nk-franchisebridge-reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .85s var(--nk-ease), transform .85s var(--nk-ease);
}

.nk-franchisebridge-delay-1 {
    transition-delay: .14s;
}

.nk-franchisebridge-reveal-section.is-visible .nk-franchisebridge-reveal-up {
    opacity: 1;
    transform: translateY(0);
}

/* Tablet */
@media (max-width: 1180px) {
    .naturakoy-franchisebridge {
        padding: 84px 0;
    }

    .naturakoy-franchisebridge-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .naturakoy-franchisebridge-content {
        max-width: 820px;
        margin: 0 auto;
        text-align: center;
    }

    .naturakoy-franchisebridge-kicker {
        justify-content: center;
    }

        .naturakoy-franchisebridge-kicker::before {
            display: none;
        }

    .naturakoy-franchisebridge-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .naturakoy-franchisebridge-actions {
        justify-content: center;
    }

    .naturakoy-franchisebridge-panel {
        max-width: 820px;
        margin: 0 auto;
    }
}

/* Mobil */
@media (max-width: 767px) {
    .naturakoy-franchisebridge {
        padding: 64px 0;
    }

    .naturakoy-franchisebridge-container {
        width: calc(100% - 28px);
    }

    .naturakoy-franchisebridge-content h2 {
        font-size: clamp(32px, 10vw, 48px);
        line-height: 1;
    }

    .naturakoy-franchisebridge-content p {
        margin-top: 18px;
        font-size: 14.5px;
        line-height: 1.65;
    }

    .naturakoy-franchisebridge-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 26px;
    }

    .naturakoy-franchisebridge-primary,
    .naturakoy-franchisebridge-secondary {
        width: 100%;
        min-height: 52px;
    }

    .naturakoy-franchisebridge-primary {
        padding-left: 20px;
    }

    .naturakoy-franchisebridge-panel {
        padding: 20px;
        border-radius: 28px;
    }

        .naturakoy-franchisebridge-panel::before {
            inset: 10px;
            border-radius: 22px;
        }

    .naturakoy-franchisebridge-panel-head {
        display: grid;
        gap: 8px;
        text-align: center;
        justify-items: center;
        margin-bottom: 18px;
    }

        .naturakoy-franchisebridge-panel-head strong {
            text-align: center;
            font-size: 26px;
        }

    .naturakoy-franchisebridge-steps {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .naturakoy-franchisebridge-step {
        min-height: auto;
        padding: 18px 16px;
        display: grid;
        grid-template-columns: 54px 1fr;
        align-items: center;
        gap: 14px;
    }

    .naturakoy-franchisebridge-step-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 0;
        border-radius: 16px;
    }

    .naturakoy-franchisebridge-step h3 {
        font-size: 20px;
    }
}

@media (max-width: 420px) {
    .naturakoy-franchisebridge-container {
        width: calc(100% - 22px);
    }

    .naturakoy-franchisebridge-content h2 {
        font-size: clamp(30px, 11vw, 42px);
    }

    .naturakoy-franchisebridge-step {
        grid-template-columns: 50px 1fr;
    }

    .naturakoy-franchisebridge-step-icon {
        width: 50px;
        height: 50px;
    }

    .naturakoy-franchisebridge-step h3 {
        font-size: 18px;
    }
}
.naturakoy-footer,
.naturakoy-footer * {
    box-sizing: border-box;
}

.naturakoy-footer {
    position: relative;
    overflow: hidden;
    padding: 165px 0 34px;
    color: var(--nk-white);
    background: radial-gradient(circle at 8% 18%, rgba(255, 247, 223, .12), transparent 24%), radial-gradient(circle at 88% 20%, rgba(131, 182, 63, .18), transparent 28%), linear-gradient( 135deg, var(--nk-green-deep) 0%, var(--nk-green-dark) 48%, var(--nk-green) 100% );
    font-family: var(--nk-font-body);
}

/* SADECE ÜST GEÇİŞ */
.naturakoy-footer-top-wave {
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    height: 128px;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

    .naturakoy-footer-top-wave svg {
        width: 100%;
        height: 100%;
        display: block;
    }

.naturakoy-footer-wave-white {
    fill: var(--nk-white);
}

.naturakoy-footer-wave-soft {
    fill: rgba(255, 247, 223, .18);
    animation: naturakoyFooterWaveMove 9s ease-in-out infinite;
}

@keyframes naturakoyFooterWaveMove {
    0%, 100% {
        transform: translateX(0);
        opacity: .55;
    }

    50% {
        transform: translateX(-34px);
        opacity: .9;
    }
}

/* ARKA PLAN FORMLARI */
.naturakoy-footer-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.naturakoy-footer-bg-shape-left {
    left: -260px;
    top: 58px;
    width: 620px;
    height: 620px;
    background: linear-gradient( 180deg, rgba(255,255,255,.10), rgba(255,255,255,.025) );
}

.naturakoy-footer-bg-shape-right {
    right: -220px;
    top: -40px;
    width: 520px;
    height: 520px;
    background: linear-gradient( 180deg, rgba(131,182,63,.22), rgba(255,255,255,.025) );
}

.naturakoy-footer-container {
    position: relative;
    z-index: 3;
    width: min(var(--nk-container), calc(100% - 56px));
    margin: 0 auto;
}

.naturakoy-footer-main {
    display: grid;
    grid-template-columns: minmax(320px, 440px) 1fr;
    gap: 72px;
    align-items: start;
}

/* BRAND */
.naturakoy-footer-brand {
    max-width: 440px;
}

.naturakoy-footer-logo {
    display: inline-flex;
    align-items: center;
    width: 180px;
    max-width: 100%;
    text-decoration: none;
}

    .naturakoy-footer-logo img {
        width: 100%;
        height: auto;
        display: block;
    }

.naturakoy-footer-brand p {
    margin: 28px 0 0;
    max-width: 420px;
    color: rgba(255,255,255,.78);
    font-size: 15.5px;
    line-height: 1.78;
    font-weight: 500;
}

.naturakoy-footer-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.naturakoy-footer-primary-link,
.naturakoy-footer-ghost-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: var(--nk-radius-pill);
    font-family: var(--nk-font-heading);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-decoration: none !important;
    transition: transform .35s var(--nk-ease), background .35s var(--nk-ease), color .35s var(--nk-ease);
}

.naturakoy-footer-primary-link {
    background: var(--nk-white);
    color: var(--nk-green-dark);
}

    .naturakoy-footer-primary-link:hover {
        transform: translateY(-3px);
        background: var(--nk-cream);
        color: var(--nk-green-deep);
    }

.naturakoy-footer-ghost-link {
    background: rgba(255,255,255,.08);
    color: var(--nk-white);
    border: 1px solid rgba(255,255,255,.18);
}

    .naturakoy-footer-ghost-link:hover {
        transform: translateY(-3px);
        background: rgba(255,255,255,.14);
    }

/* LINK ALANI */
.naturakoy-footer-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(140px, 1fr));
    gap: 36px;
}

.naturakoy-footer-col h3,
.naturakoy-footer-contact h3 {
    margin: 0 0 22px;
    color: var(--nk-cream);
    font-family: var(--nk-font-heading);
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.naturakoy-footer-col nav {
    display: grid;
    gap: 14px;
}

    .naturakoy-footer-col nav a {
        position: relative;
        width: fit-content;
        color: rgba(255,255,255,.82);
        text-decoration: none !important;
        font-size: 15px;
        line-height: 1.35;
        font-weight: 600;
        transition: color .3s var(--nk-ease), transform .3s var(--nk-ease);
    }

        .naturakoy-footer-col nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 1px;
            background: var(--nk-straw);
            transition: width .3s var(--nk-ease);
        }

        .naturakoy-footer-col nav a:hover {
            color: var(--nk-white);
            transform: translateX(4px);
        }

            .naturakoy-footer-col nav a:hover::after {
                width: 100%;
            }

/* CONTACT */
.naturakoy-footer-contact {
    min-width: 0;
}

.naturakoy-footer-contact-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: center;
    gap: 11px;
    margin-bottom: 13px;
    color: rgba(255,255,255,.84);
    text-decoration: none !important;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    min-width: 0;
    transition: color .3s var(--nk-ease), transform .3s var(--nk-ease);
}

    .naturakoy-footer-contact-item span {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: rgba(255,255,255,.10);
        color: var(--nk-cream);
        border: 1px solid rgba(255,255,255,.12);
    }

    .naturakoy-footer-contact-item svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2.1;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .naturakoy-footer-contact-item:hover {
        color: var(--nk-white);
        transform: translateX(4px);
    }

/* SOCIAL */
.naturakoy-footer-social {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
}

    .naturakoy-footer-social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        color: var(--nk-green-dark);
        background: var(--nk-white);
        text-decoration: none !important;
        transition: transform .35s var(--nk-ease), background .35s var(--nk-ease), color .35s var(--nk-ease);
    }

        .naturakoy-footer-social a:hover {
            transform: translateY(-4px);
            background: var(--nk-cream);
            color: var(--nk-green-deep);
        }

    .naturakoy-footer-social svg {
        width: 19px;
        height: 19px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2.1;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

/* BOTTOM */
.naturakoy-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 82px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.14);
}

    .naturakoy-footer-bottom p {
        margin: 0;
        color: rgba(255,255,255,.68);
        font-size: 13px;
        line-height: 1.5;
        font-weight: 600;
    }

.naturakoy-footer-bottom-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

    .naturakoy-footer-bottom-links a {
        color: rgba(255,255,255,.68);
        text-decoration: none !important;
        font-size: 13px;
        font-weight: 600;
        transition: color .3s var(--nk-ease);
    }

        .naturakoy-footer-bottom-links a:hover {
            color: var(--nk-white);
        }

/* TABLET */
@media (max-width: 1180px) {
    .naturakoy-footer {
        padding-top: 145px;
    }

    .naturakoy-footer-main {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .naturakoy-footer-brand {
        max-width: 720px;
    }

    .naturakoy-footer-links {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .naturakoy-footer {
        padding: 118px 0 28px;
    }

    .naturakoy-footer-top-wave {
        height: 86px;
    }

    .naturakoy-footer-container {
        width: calc(100% - 28px);
    }

    .naturakoy-footer-main {
        gap: 44px;
    }

    .naturakoy-footer-logo {
        width: 150px;
    }

    .naturakoy-footer-brand p {
        margin-top: 22px;
        font-size: 14.5px;
        line-height: 1.72;
    }

    .naturakoy-footer-cta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .naturakoy-footer-primary-link,
    .naturakoy-footer-ghost-link {
        width: 100%;
        min-height: 46px;
    }

    .naturakoy-footer-links {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .naturakoy-footer-col h3,
    .naturakoy-footer-contact h3 {
        margin-bottom: 16px;
    }

    .naturakoy-footer-col nav {
        gap: 12px;
    }

        .naturakoy-footer-col nav a {
            font-size: 14.5px;
        }

    .naturakoy-footer-bottom {
        display: grid;
        gap: 14px;
        margin-top: 50px;
        padding-top: 22px;
    }

    .naturakoy-footer-bottom-links {
        gap: 12px;
    }

    .naturakoy-footer-bg-shape-left {
        left: -340px;
        top: 90px;
    }

    .naturakoy-footer-bg-shape-right {
        right: -300px;
        top: 20px;
    }
}

@media (max-width: 420px) {
    .naturakoy-footer-container {
        width: calc(100% - 22px);
    }

    .naturakoy-footer-logo {
        width: 138px;
    }

    .naturakoy-footer-bottom-links {
        display: grid;
        gap: 9px;
    }
}