:root {
    --green: #67b830;
    --green-dark: #2f7e2c;
    --green-soft: #eef7e8;
    --blue: #0aa4df;
    --blue-dark: #0878ad;
    --ink: #11251c;
    --ink-2: #1d3529;
    --muted: #66766e;
    --line: #dce6e0;
    --paper: #ffffff;
    --soft: #f5f8f6;
    --soft-blue: #eef8fc;
    --shadow: 0 24px 70px rgba(21, 53, 39, .10);
    --shadow-soft: 0 14px 40px rgba(21, 53, 39, .08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --shell: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

    body.nav-open {
        overflow: hidden;
    }

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button, input, textarea, select {
    font: inherit;
}

svg {
    display: block;
}

::selection {
    background: rgba(103, 184, 48, .22);
    color: var(--ink);
}

.site-shell {
    width: min(var(--shell), calc(100% - 48px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 16px;
    z-index: 9999;
    background: var(--ink);
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
}

    .skip-link:focus {
        top: 16px;
    }

.utility-bar {
    background: var(--ink);
    color: rgba(255,255,255,.86);
    font-size: 13px;
}

.utility-bar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.utility-bar__message {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    letter-spacing: .01em;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(103,184,48,.12);
}

.utility-bar__links {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .utility-bar__links a {
        display: inline-flex;
        gap: 7px;
        align-items: center;
        font-weight: 700;
        color: #fff;
    }

    .utility-bar__links svg {
        width: 14px;
        fill: currentColor;
    }

.utility-bar__divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,.22);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid rgba(220,230,224,.85);
    transition: box-shadow .25s ease, background .25s ease;
}

    .site-header.is-scrolled {
        box-shadow: 0 10px 35px rgba(17,37,28,.08);
    }

.site-header__inner {
    min-height: 86px;
    display: grid;
    grid-template-columns: 300px 1fr auto;
    align-items: center;
    gap: 34px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: min(290px, 100%);
}

.brand__desktop {
    width: 100%;
    height: auto;
}

.brand__mobile {
    display: none;
    max-height: 50px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(20px, 2.2vw, 34px);
}

    .main-nav a {
        position: relative;
        padding: 31px 0 29px;
        font-size: 14px;
        font-weight: 750;
        color: #2d4338;
        transition: color .2s ease;
    }

        .main-nav a::after {
            content: "";
            position: absolute;
            left: 50%;
            right: 50%;
            bottom: 22px;
            height: 2px;
            background: linear-gradient(90deg,var(--green),var(--blue));
            transition: left .2s ease,right .2s ease;
        }

        .main-nav a:hover, .main-nav a.is-active {
            color: var(--green-dark);
        }

            .main-nav a:hover::after, .main-nav a.is-active::after {
                left: 0;
                right: 0;
            }

.header-action {
    height: 44px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: 14px;
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease;
}

    .header-action:hover {
        transform: translateY(-2px);
        background: var(--green-dark);
    }

    .header-action svg {
        width: 19px;
        fill: currentColor;
    }

.nav-toggle {
    display: none;
    width: 46px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

    .nav-toggle span {
        width: 20px;
        height: 2px;
        border-radius: 2px;
        background: var(--ink);
        transition: transform .2s ease, opacity .2s ease;
    }

    .nav-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 92px 0 84px;
    background: radial-gradient(circle at 82% 20%, rgba(10,164,223,.12), transparent 28%), radial-gradient(circle at 15% 82%, rgba(103,184,48,.13), transparent 30%), linear-gradient(135deg,#f8fbf9 0%,#fff 46%,#f3fafc 100%);
}

    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(17,37,28,.035) 1px,transparent 1px), linear-gradient(90deg,rgba(17,37,28,.035) 1px,transparent 1px);
        background-size: 42px 42px;
        mask-image: linear-gradient(to right,rgba(0,0,0,.5),transparent 72%);
    }

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(10,164,223,.12);
    border-radius: 50%;
    pointer-events: none;
}

.hero-orbit--one {
    width: 620px;
    height: 620px;
    right: -260px;
    top: -240px;
}

.hero-orbit--two {
    width: 410px;
    height: 410px;
    right: 120px;
    bottom: -270px;
    border-color: rgba(103,184,48,.16);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0,1.03fr) minmax(430px,.97fr);
    gap: clamp(56px,7vw,96px);
    align-items: center;
}

.hero-copy {
    max-width: 690px;
}

.eyebrow, .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--green-dark);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

    .eyebrow span {
        width: 34px;
        height: 2px;
        background: linear-gradient(90deg,var(--green),var(--blue));
    }

.eyebrow--light, .section-kicker--light {
    color: #d8f1cc;
}

.hero-copy h1 {
    margin: 0;
    max-width: 780px;
    font-size: clamp(48px,5.8vw,78px);
    line-height: .98;
    letter-spacing: -.05em;
    font-weight: 650;
}

    .hero-copy h1 strong {
        color: var(--green-dark);
        font-weight: 850;
    }

.hero-copy > p {
    max-width: 650px;
    margin: 28px 0 0;
    font-size: 18px;
    color: #53675d;
}

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

.button {
    min-height: 52px;
    padding: 0 22px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

    .button:hover {
        transform: translateY(-2px);
    }

    .button svg, .text-link svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
    }

.button--primary {
    background: linear-gradient(135deg,var(--green) 0%,var(--green-dark) 100%);
    color: #fff;
    box-shadow: 0 12px 30px rgba(69,137,46,.22);
}

    .button--primary:hover {
        box-shadow: 0 16px 36px rgba(69,137,46,.30);
    }

.button--secondary {
    border-color: var(--line);
    background: #fff;
    color: var(--ink);
}

    .button--secondary:hover {
        border-color: #b8cbc0;
        box-shadow: var(--shadow-soft);
    }

.button--white {
    background: #fff;
    color: var(--ink);
}

.button--outline-light {
    border-color: rgba(255,255,255,.32);
    color: #fff;
    background: transparent;
}

    .button--outline-light:hover {
        background: rgba(255,255,255,.1);
    }

.hero-trust {
    margin-top: 42px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 28px;
}

    .hero-trust > div {
        display: flex;
        gap: 13px;
        align-items: flex-start;
    }

.hero-trust__icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--ink);
    color: #fff;
    font-size: 10px;
    font-weight: 850;
}

.hero-trust p {
    margin: 0;
}

.hero-trust strong, .hero-trust small {
    display: block;
}

.hero-trust strong {
    font-size: 14px;
}

.hero-trust small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

.hero-visual {
    min-height: 540px;
    position: relative;
}

.hero-card {
    position: absolute;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.hero-card--main {
    inset: 0 55px 34px 0;
    overflow: hidden;
    padding: 38px;
    background: linear-gradient(145deg,#153a27,#10271d);
    color: #fff;
}

    .hero-card--main::before {
        content: "";
        position: absolute;
        width: 390px;
        height: 390px;
        right: -180px;
        top: -140px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(10,164,223,.42),rgba(10,164,223,0) 70%);
    }

    .hero-card--main::after {
        content: "";
        position: absolute;
        inset: auto -40px -140px 80px;
        height: 280px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(103,184,48,.36),rgba(103,184,48,0) 70%);
    }

.hero-card__top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: .14em;
    font-weight: 800;
}

.hero-card__line {
    height: 1px;
    flex: 1;
    background: rgba(255,255,255,.25);
}

.hero-card__top small {
    font-size: 10px;
    opacity: .65;
}

.hero-card--main > img {
    position: relative;
    z-index: 1;
    width: 115px;
    height: 165px;
    object-fit: contain;
    margin: 58px 0 22px;
    filter: drop-shadow(0 16px 24px rgba(0,0,0,.18));
}

.hero-card--main h2 {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 360px;
    font-size: clamp(34px,3.3vw,48px);
    line-height: 1.03;
    letter-spacing: -.04em;
}

.hero-card--main p {
    position: relative;
    z-index: 1;
    max-width: 340px;
    margin: 18px 0 0;
    color: rgba(255,255,255,.68);
    line-height: 1.55;
}

.hero-card--network {
    width: 260px;
    right: 0;
    top: 66px;
    padding: 24px;
    background: #fff;
}

.mini-label {
    display: block;
    color: var(--blue-dark);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero-card--network strong {
    display: block;
    margin-top: 8px;
    font-size: 22px;
    line-height: 1.2;
}

.network-lines {
    position: relative;
    height: 92px;
    margin-top: 18px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg,#edf8e8,#eef8fc);
}

    .network-lines::before, .network-lines::after {
        content: "";
        position: absolute;
        height: 1px;
        background: rgba(17,37,28,.12);
        transform-origin: left center;
    }

    .network-lines::before {
        width: 120px;
        left: 34px;
        top: 44px;
        transform: rotate(-15deg);
    }

    .network-lines::after {
        width: 100px;
        left: 78px;
        top: 34px;
        transform: rotate(25deg);
    }

    .network-lines span {
        position: absolute;
        width: 11px;
        height: 11px;
        border: 3px solid #fff;
        border-radius: 50%;
        background: var(--green);
        box-shadow: 0 3px 10px rgba(17,37,28,.18);
    }

        .network-lines span:nth-child(1) {
            left: 26px;
            top: 45px
        }

        .network-lines span:nth-child(2) {
            left: 78px;
            top: 27px;
            background: var(--blue)
        }

        .network-lines span:nth-child(3) {
            right: 34px;
            top: 48px
        }

        .network-lines span:nth-child(4) {
            right: 70px;
            bottom: 13px;
            background: var(--blue)
        }

        .network-lines span:nth-child(5) {
            left: 87px;
            bottom: 10px
        }

.hero-card--quality {
    right: 20px;
    bottom: 0;
    width: 270px;
    padding: 20px 22px;
    background: linear-gradient(135deg,var(--green),var(--green-dark));
    color: #fff;
    display: flex;
    gap: 13px;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(47,126,44,.28);
}

    .hero-card--quality svg {
        width: 30px;
        flex: 0 0 30px;
        fill: currentColor;
    }

    .hero-card--quality span {
        font-size: 13px;
        line-height: 1.4;
        font-weight: 800;
    }

.brand-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.brand-strip__grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

    .brand-strip__grid > div {
        min-height: 92px;
        padding: 0 26px;
        display: flex;
        align-items: center;
        gap: 14px;
        border-right: 1px solid var(--line);
    }

        .brand-strip__grid > div:first-child {
            border-left: 1px solid var(--line);
        }

    .brand-strip__grid span {
        color: var(--green-dark);
        font-size: 11px;
        font-weight: 850;
    }

    .brand-strip__grid strong {
        font-size: 14px;
    }

.section {
    padding: 106px 0;
}

.section--soft {
    background: var(--soft);
}

.section--about {
    position: relative;
    overflow: hidden;
}

.section--products {
    background: linear-gradient(180deg,#fff,#f8fbf9);
}

.two-column, .about-intro {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(430px,.83fr);
    gap: clamp(60px,8vw,110px);
    align-items: start;
}

    .section-copy h2, .section-heading h2, .product-section-title h2, .about-intro h2 {
        margin: 0;
        font-size: clamp(38px,4vw,56px);
        line-height: 1.06;
        letter-spacing: -.045em;
    }

.section-copy p, .about-intro__text p {
    color: var(--muted);
}

.lead-text {
    font-size: 20px;
    color: #40584c !important;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 850;
}

    .text-link:hover {
        color: var(--blue-dark);
    }

.values-panel {
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.values-panel__head {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

    .values-panel__head span {
        display: block;
        color: var(--blue-dark);
        font-size: 10px;
        font-weight: 850;
        letter-spacing: .13em;
    }

    .values-panel__head strong {
        display: block;
        margin-top: 7px;
        font-size: 23px;
        line-height: 1.25;
    }

.value-row {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

    .value-row:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .value-row > span {
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        border-radius: 11px;
        background: var(--green-soft);
        color: var(--green-dark);
        font-size: 11px;
        font-weight: 900;
    }

    .value-row h3 {
        margin: 1px 0 4px;
        font-size: 18px;
    }

    .value-row p {
        margin: 0;
        color: var(--muted);
        font-size: 14px;
    }

.section-heading {
    margin-bottom: 42px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-end;
}

    .section-heading > div {
        max-width: 760px;
    }

.section-heading--center {
    justify-content: center;
    text-align: center;
}

.section-heading--compact {
    margin-bottom: 34px;
}

.section-subtitle {
    max-width: 720px;
    margin: 16px 0 0;
    color: var(--muted);
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.product-tile {
    position: relative;
    min-height: 385px;
    padding: 34px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .product-tile:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow);
    }

.product-tile--dark {
    color: #fff;
    background: linear-gradient(145deg,#153a27,#0f281c);
}

.product-tile--light {
    border: 1px solid var(--line);
    color: var(--ink);
    background: linear-gradient(145deg,#f1f9ed,#eef9fd);
}

.product-tile::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -90px;
    bottom: -110px;
    border-radius: 50%;
    border: 48px solid rgba(255,255,255,.05);
}

.product-tile--light::before {
    border-color: rgba(10,164,223,.06);
}

.product-tile__number {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    opacity: .7;
}

.product-tile__content {
    position: relative;
    z-index: 1;
    max-width: 410px;
}

    .product-tile__content > span {
        color: var(--green);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

.product-tile--light .product-tile__content > span {
    color: var(--blue-dark);
}

.product-tile h3 {
    margin: 12px 0 12px;
    font-size: clamp(28px,3vw,40px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.product-tile p {
    margin: 0;
    opacity: .68;
}

.product-tile__icon {
    position: absolute;
    right: 32px;
    top: 28px;
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: rgba(255,255,255,.08);
}

.product-tile--light .product-tile__icon {
    background: #fff;
    box-shadow: 0 12px 30px rgba(17,37,28,.08);
}

.product-tile__icon svg {
    width: 35px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.network-section {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background: linear-gradient(135deg,#143a28,#10271d 72%);
    color: #fff;
}

    .network-section::after {
        content: "";
        position: absolute;
        width: 580px;
        height: 580px;
        right: -250px;
        top: -190px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(10,164,223,.28),transparent 68%);
    }

.network-bg {
    position: absolute;
    inset: 0;
    opacity: .18;
}

    .network-bg::before, .network-bg::after {
        content: "";
        position: absolute;
        height: 1px;
        background: rgba(255,255,255,.35);
        transform-origin: left center;
    }

    .network-bg::before {
        width: 650px;
        left: 54%;
        top: 45%;
        transform: rotate(-17deg);
    }

    .network-bg::after {
        width: 520px;
        left: 50%;
        top: 39%;
        transform: rotate(18deg);
    }

    .network-bg span {
        position: absolute;
        width: 14px;
        height: 14px;
        border: 3px solid rgba(255,255,255,.85);
        border-radius: 50%;
        background: var(--green);
    }

        .network-bg span:nth-child(1) {
            left: 53%;
            top: 43%
        }

        .network-bg span:nth-child(2) {
            left: 67%;
            top: 32%;
            background: var(--blue)
        }

        .network-bg span:nth-child(3) {
            left: 77%;
            top: 50%
        }

        .network-bg span:nth-child(4) {
            left: 62%;
            top: 64%;
            background: var(--blue)
        }

        .network-bg span:nth-child(5) {
            left: 85%;
            top: 35%
        }

        .network-bg span:nth-child(6) {
            left: 90%;
            top: 66%;
            background: var(--blue)
        }

.network-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 410px;
    gap: 90px;
    align-items: center;
}

.network-copy {
    max-width: 720px;
}

    .network-copy h2 {
        margin: 0;
        font-size: clamp(42px,5vw,64px);
        line-height: 1.02;
        letter-spacing: -.045em;
    }

    .network-copy p {
        max-width: 670px;
        margin: 22px 0 0;
        color: rgba(255,255,255,.68);
        font-size: 18px;
    }

.network-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 32px;
}

.network-phone {
    font-size: 15px;
    font-weight: 850;
}

.network-panel {
    position: relative;
    min-height: 360px;
    padding: 34px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 28px;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(10px);
}

.network-panel__logo {
    width: 92px;
    height: 118px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: rgba(255,255,255,.92);
}

    .network-panel__logo img {
        max-height: 100px;
    }

.network-panel__content {
    margin-top: 38px;
}

    .network-panel__content span {
        color: #bce4ff;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: .13em;
    }

    .network-panel__content strong {
        display: block;
        margin-top: 7px;
        font-size: 34px;
        line-height: 1.05;
    }

    .network-panel__content p {
        margin: 14px 0 0;
        color: rgba(255,255,255,.62);
        font-size: 14px;
    }

.process-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.process-card {
    min-height: 250px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
}

    .process-card > span {
        display: inline-grid;
        place-items: center;
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: var(--soft-blue);
        color: var(--blue-dark);
        font-size: 11px;
        font-weight: 900;
    }

    .process-card h3 {
        margin: 46px 0 10px;
        font-size: 22px;
    }

    .process-card p {
        margin: 0;
        color: var(--muted);
    }

.cta-section {
    padding: 0 0 106px;
}

.cta-card {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    padding: 52px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg,var(--green-dark),#205b2b);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

    .cta-card::after {
        content: "";
        position: absolute;
        width: 360px;
        height: 360px;
        right: -80px;
        top: -150px;
        border-radius: 50%;
        border: 70px solid rgba(255,255,255,.06);
    }

    .cta-card > * {
        position: relative;
        z-index: 1;
    }

    .cta-card h2 {
        max-width: 690px;
        margin: 0;
        font-size: clamp(36px,4vw,52px);
        line-height: 1.04;
        letter-spacing: -.04em;
    }

    .cta-card p {
        margin: 15px 0 0;
        color: rgba(255,255,255,.72);
    }

.cta-card__actions {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 210px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
    background: linear-gradient(135deg,#143a28,#0f291c);
    color: #fff;
}

.page-hero--products {
    background: linear-gradient(135deg,#143a28,#123125 72%,#0b4861);
}

.page-hero--contact {
    background: linear-gradient(135deg,#143a28 0%,#102d21 60%,#0a506e 100%);
}

.page-hero__shape {
    position: absolute;
    width: 560px;
    height: 560px;
    right: -120px;
    top: -250px;
    border-radius: 50%;
    border: 90px solid rgba(255,255,255,.035);
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: center;
}

    .page-hero__inner > div:first-child {
        max-width: 820px;
    }

.page-hero h1 {
    margin: 0;
    font-size: clamp(46px,5.6vw,72px);
    line-height: .99;
    letter-spacing: -.05em;
    font-weight: 600;
}

    .page-hero h1 strong {
        color: #a8df80;
        font-weight: 850;
    }

.page-hero p {
    max-width: 720px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.68);
    font-size: 18px;
}

.page-hero__mark {
    width: 150px;
    height: 180px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 30px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
}

    .page-hero__mark img {
        max-height: 135px;
        filter: drop-shadow(0 16px 28px rgba(0,0,0,.18));
    }

.about-intro__text {
    padding-top: 24px;
}

.corporate-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.corporate-card {
    min-height: 310px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
}

.corporate-card__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--green-soft);
    color: var(--green-dark);
}

.corporate-card:nth-child(even) .corporate-card__icon {
    background: var(--soft-blue);
    color: var(--blue-dark);
}

.corporate-card__icon svg {
    width: 27px;
    fill: currentColor;
}

.corporate-card > span {
    display: block;
    margin-top: 46px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
}

.corporate-card h3 {
    margin: 5px 0 9px;
    font-size: 22px;
}

.corporate-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.mission-section {
    padding: 0 0 106px;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mission-card {
    min-height: 360px;
    padding: 44px;
    border-radius: var(--radius-xl);
    color: #fff;
}

.mission-card--green {
    background: linear-gradient(145deg,#2f7e2c,#1f5f29);
}

.mission-card--blue {
    background: linear-gradient(145deg,#0a8dc7,#076891);
}

.mission-card > span {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
}

.mission-card h2 {
    margin: 62px 0 16px;
    font-size: clamp(30px,3.2vw,43px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.mission-card p {
    margin: 0;
    color: rgba(255,255,255,.72);
}

.corporate-band {
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 30px;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.corporate-band__mark {
    width: 88px;
    height: 104px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: var(--soft);
}

    .corporate-band__mark img {
        max-height: 90px;
    }

.corporate-band h2 {
    margin: 0;
    font-size: 32px;
    line-height: 1.14;
    letter-spacing: -.03em;
}

.corporate-band p {
    margin: 8px 0 0;
    color: var(--muted);
}

.product-nav {
    position: sticky;
    top: 86px;
    z-index: 30;
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
}

.product-nav__inner {
    min-height: 62px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.product-nav a {
    font-size: 13px;
    font-weight: 800;
    color: #4f6258;
}

    .product-nav a:hover {
        color: var(--green-dark);
    }

.product-section-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 70px;
    align-items: start;
}

.product-section-title {
    position: sticky;
    top: 180px;
}

.product-index {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 14px;
    background: var(--ink);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.product-section-title p {
    color: var(--muted);
}

.product-list-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
}

.product-item {
    min-height: 128px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

    .product-item:hover {
        transform: translateY(-3px);
        border-color: #bfd8c4;
        box-shadow: var(--shadow-soft);
    }

.product-item--wide {
    grid-column: span 2;
}

.product-item span {
    color: var(--green-dark);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
}

.product-item h3 {
    margin: 20px 0 0;
    font-size: 20px;
    line-height: 1.2;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
}

.category-card {
    min-height: 142px;
    padding: 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: #fff;
}

    .category-card > span {
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        border-radius: 11px;
        background: var(--soft-blue);
        color: var(--blue-dark);
        font-size: 10px;
        font-weight: 900;
    }

    .category-card h3 {
        margin: 0;
        font-size: 18px;
        line-height: 1.25;
    }

    .category-card svg {
        width: 20px;
        fill: none;
        stroke: var(--green-dark);
        stroke-width: 2;
    }

.product-info {
    padding: 86px 0;
    background: var(--ink);
    color: #fff;
}

.product-info__inner {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: center;
}

    .product-info__inner > div:first-child {
        max-width: 780px;
    }

.product-info h2 {
    margin: 0;
    font-size: clamp(36px,4vw,52px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.product-info p {
    margin: 15px 0 0;
    color: rgba(255,255,255,.68);
}

.product-info__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 220px;
}

.section--contact {
    background: linear-gradient(180deg,#fff,#f7faf8);
}

.contact-layout {
    display: grid;
    grid-template-columns: 430px 1fr;
    gap: 28px;
    align-items: stretch;
}

.contact-info-card {
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

    .contact-info-card h2 {
        margin: 0;
        font-size: 40px;
        letter-spacing: -.04em;
    }

.contact-info-card__intro {
    margin: 8px 0 26px;
    color: var(--muted);
}

.contact-detail {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
}

.contact-detail__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--green-soft);
    color: var(--green-dark);
}

.contact-detail__icon--wa {
    background: #e9f8ef;
    color: #179b4c;
}

.contact-detail__icon svg {
    width: 22px;
    fill: currentColor;
}

.contact-detail span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.contact-detail strong, .contact-detail a {
    display: block;
    margin-top: 4px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 750;
}

    .contact-detail a:hover {
        color: var(--green-dark);
    }

.contact-buttons {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.map-card {
    min-height: 640px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #e8eee9;
    box-shadow: var(--shadow-soft);
}

    .map-card iframe {
        width: 100%;
        height: 100%;
        min-height: 640px;
        border: 0;
        filter: saturate(.84) contrast(.98);
    }

.map-card__label {
    position: absolute;
    left: 22px;
    bottom: 22px;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(17,37,28,.92);
    color: #fff;
    backdrop-filter: blur(8px);
}

    .map-card__label span {
        display: block;
        color: #b8e99c;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: .1em;
    }

    .map-card__label strong {
        display: block;
        margin-top: 3px;
        font-size: 14px;
    }

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

.contact-topic {
    min-height: 260px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
}

    .contact-topic > span {
        color: var(--blue-dark);
        font-size: 11px;
        font-weight: 900;
    }

    .contact-topic h3 {
        margin: 42px 0 8px;
        font-size: 23px;
    }

    .contact-topic p {
        margin: 0;
        color: var(--muted);
    }

    .contact-topic a {
        display: inline-block;
        margin-top: 22px;
        color: var(--green-dark);
        font-size: 13px;
        font-weight: 850;
    }

.site-footer {
    padding: 72px 0 0;
    background: #0d2118;
    color: rgba(255,255,255,.72);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.45fr .75fr .95fr 1.1fr;
    gap: 56px;
    padding-bottom: 58px;
}

.footer-brand img {
    width: 285px;
    max-width: 100%;
    filter: brightness(0) invert(1);
    opacity: .95;
}

.footer-brand > p {
    max-width: 370px;
    margin: 22px 0 0;
    font-size: 14px;
}

.footer-badge {
    margin-top: 25px;
    display: flex;
    gap: 12px;
    align-items: center;
    color: #fff;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.35;
}

    .footer-badge img {
        width: 34px;
        height: 46px;
        object-fit: contain;
        filter: none;
    }

.footer-column h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-column > a, .footer-column > span {
    display: block;
    width: fit-content;
    margin-top: 11px;
    font-size: 13px;
}

    .footer-column > a:hover {
        color: #fff;
    }

.footer-contact__item {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
}

    .footer-contact__item svg {
        width: 17px;
        flex: 0 0 17px;
        margin-top: 3px;
        fill: var(--green);
    }

.footer-whatsapp {
    margin-top: 20px !important;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 11px;
    color: #fff;
    font-weight: 800;
}

.footer-bottom {
    min-height: 72px;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 12px;
}

    .footer-bottom a:hover {
        color: #fff;
    }

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #20b75a;
    color: #fff;
    box-shadow: 0 16px 36px rgba(20,120,63,.28);
    transition: transform .2s ease;
}

    .floating-whatsapp:hover {
        transform: translateY(-3px) scale(1.02);
    }

    .floating-whatsapp svg {
        width: 30px;
        fill: currentColor;
    }

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal--delay {
    transition-delay: .10s;
}

.reveal--delay-2 {
    transition-delay: .18s;
}

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

@media (max-width: 1100px) {
    .site-header__inner {
        grid-template-columns: 245px 1fr auto;
        gap: 20px;
    }

    .main-nav {
        gap: 18px;
    }

        .main-nav a {
            font-size: 13px;
        }

    .hero-grid {
        grid-template-columns: 1fr 430px;
        gap: 45px;
    }

    .hero-card--network {
        width: 225px;
    }

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

    .footer-main {
        grid-template-columns: 1.2fr .8fr .9fr;
    }

    .footer-contact {
        grid-column: 2 / 4;
    }
}

@media (max-width: 900px) {
    .site-shell {
        width: min(100% - 32px,var(--shell));
    }

    .utility-bar__message {
        display: none;
    }

    .utility-bar__inner {
        justify-content: center;
    }

    .utility-bar__links {
        width: 100%;
        justify-content: space-between;
    }

    .site-header__inner {
        min-height: 72px;
        grid-template-columns: 1fr auto;
    }

    .brand {
        width: auto;
    }

    .brand__desktop {
        display: none;
    }

    .brand__mobile {
        display: block;
        max-width: 210px;
    }

    .header-action {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        inset: 110px 16px auto 16px;
        max-height: calc(100vh - 126px);
        overflow-y: auto;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: #fff;
        box-shadow: var(--shadow);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

        .main-nav.is-open {
            display: flex;
        }

        .main-nav a {
            padding: 16px 12px;
            border-bottom: 1px solid var(--line);
            font-size: 15px;
        }

            .main-nav a:last-child {
                border-bottom: 0;
            }

            .main-nav a::after {
                display: none;
            }

    .hero-section {
        padding: 70px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 760px;
    }

    .hero-visual {
        min-height: 500px;
        max-width: 580px;
        width: 100%;
        margin: 0 auto;
    }

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

        .brand-strip__grid > div:nth-child(3) {
            border-left: 1px solid var(--line);
            border-top: 1px solid var(--line);
        }

        .brand-strip__grid > div:nth-child(4) {
            border-top: 1px solid var(--line);
        }

    .section {
        padding: 82px 0;
    }

    .two-column, .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-showcase, .mission-grid {
        grid-template-columns: 1fr;
    }

    .network-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .network-panel {
        max-width: 520px;
    }

    .process-grid, .contact-topic-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 42px;
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-card__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .page-hero__mark {
        display: none;
    }

    .product-nav {
        top: 72px;
    }

    .product-section-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .product-section-title {
        position: static;
    }

    .product-info__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-info__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .map-card, .map-card iframe {
        min-height: 470px;
    }

    .corporate-band {
        grid-template-columns: 80px 1fr;
    }

        .corporate-band .button {
            grid-column: 2;
            width: fit-content;
        }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: auto;
    }
}

@media (max-width: 620px) {
    .site-shell {
        width: min(100% - 24px,var(--shell));
    }

    .utility-bar__links {
        font-size: 11px;
    }

        .utility-bar__links span:last-child {
            display: none;
        }

    .utility-bar__divider {
        display: none;
    }

    .hero-section {
        padding: 54px 0 62px;
    }

    .hero-copy h1 {
        font-size: clamp(42px,12vw,58px);
    }

    .hero-copy > p {
        font-size: 16px;
    }

    .hero-actions {
        align-items: stretch;
    }

        .hero-actions .button {
            flex: 1 1 100%;
        }

    .hero-trust {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hero-visual {
        min-height: 455px;
    }

    .hero-card--main {
        inset: 0 14px 26px 0;
        padding: 28px;
    }

        .hero-card--main > img {
            width: 82px;
            height: 120px;
            margin: 42px 0 16px;
        }

        .hero-card--main h2 {
            font-size: 32px;
        }

    .hero-card--network {
        width: 205px;
        right: 0;
        top: 48px;
        padding: 18px;
    }

        .hero-card--network strong {
            font-size: 18px;
        }

    .hero-card--quality {
        right: 4px;
        width: 235px;
        padding: 16px;
    }

    .brand-strip__grid {
        grid-template-columns: 1fr;
    }

        .brand-strip__grid > div {
            min-height: 70px;
            border-left: 1px solid var(--line);
            border-top: 1px solid var(--line);
        }

            .brand-strip__grid > div:first-child {
                border-top: 0;
            }

    .section {
        padding: 68px 0;
    }

    .section-copy h2, .section-heading h2, .product-section-title h2, .about-intro h2 {
        font-size: 37px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .values-panel {
        padding: 26px;
    }

    .product-tile {
        min-height: 340px;
        padding: 26px;
    }

    .product-tile__icon {
        width: 56px;
        height: 56px;
        right: 22px;
        top: 22px;
    }

    .network-section {
        padding: 75px 0;
    }

    .network-copy h2 {
        font-size: 41px;
    }

    .network-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .network-panel {
        min-height: 320px;
        padding: 26px;
    }

    .process-card {
        min-height: auto;
    }

        .process-card h3 {
            margin-top: 28px;
        }

    .cta-section {
        padding-bottom: 70px;
    }

    .cta-card {
        padding: 30px;
        border-radius: 24px;
    }

    .cta-card__actions, .product-info__actions {
        width: 100%;
        flex-direction: column;
    }

        .cta-card__actions .button, .product-info__actions .button {
            width: 100%;
        }

    .page-hero {
        padding: 68px 0;
    }

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

        .page-hero p {
            font-size: 16px;
        }

    .corporate-grid {
        grid-template-columns: 1fr;
    }

    .mission-card {
        min-height: 320px;
        padding: 30px;
    }

        .mission-card h2 {
            margin-top: 45px;
        }

    .corporate-band {
        padding: 28px;
        grid-template-columns: 1fr;
    }

    .corporate-band__mark {
        display: none;
    }

    .corporate-band .button {
        grid-column: auto;
        width: 100%;
    }

    .product-nav {
        overflow-x: auto;
    }

    .product-nav__inner {
        width: max-content;
        min-width: 100%;
        padding-right: 16px;
    }

    .product-list-grid, .category-grid {
        grid-template-columns: 1fr;
    }

    .product-item--wide {
        grid-column: auto;
    }

    .product-info {
        padding: 68px 0;
    }

    .contact-info-card {
        padding: 26px;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .map-card, .map-card iframe {
        min-height: 390px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        padding: 20px 0;
        min-height: auto;
        align-items: flex-start;
        flex-direction: column;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================
   V3 - GERÇEK KURUMSAL İÇERİK / ÜRÜN TEKNİK KARTLARI
   ========================================================== */
.featured-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.featured-product {
    position: relative;
    min-height: 300px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(20, 53, 39, .07);
    overflow: hidden;
}

    .featured-product::before {
        content: "";
        position: absolute;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        right: -70px;
        top: -70px;
        background: rgba(31, 167, 94, .08);
    }

.featured-product__type {
    display: inline-block;
    margin-bottom: 28px;
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.featured-product h3 {
    margin: 0 0 14px;
    font-size: 30px;
    line-height: 1.05;
    color: var(--ink);
}

.featured-product p {
    margin: 0 0 26px;
    color: var(--muted);
    line-height: 1.7;
}

.featured-product a {
    font-weight: 800;
    color: var(--green-dark);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.timeline-card {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
}

    .timeline-card > span {
        display: inline-flex;
        margin-bottom: 28px;
        color: var(--blue);
        font-size: 13px;
        font-weight: 900;
        letter-spacing: .08em;
    }

    .timeline-card h3 {
        margin: 0 0 14px;
        font-size: 24px;
        color: var(--ink);
    }

    .timeline-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.75;
    }

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

.technical-product {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 22px 65px rgba(20, 53, 39, .07);
}

.technical-product__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

    .technical-product__head span {
        color: var(--green);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .technical-product__head h3 {
        margin: 6px 0 6px;
        font-size: 31px;
        line-height: 1;
        color: var(--ink);
    }

    .technical-product__head p {
        margin: 0;
        color: var(--muted);
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
    }

.technical-product__badge {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    min-width: 66px;
    height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(31, 167, 94, .10);
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 900;
}

.technical-product__summary {
    margin: 0 0 24px;
    color: var(--muted);
    line-height: 1.7;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 24px;
}

    .spec-grid > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        min-height: 58px;
        padding: 12px 14px;
        border-radius: 14px;
        background: #f5f8f6;
    }

    .spec-grid span {
        color: var(--muted);
        font-size: 12px;
    }

    .spec-grid strong {
        white-space: nowrap;
        color: var(--ink);
        font-size: 14px;
    }

.technical-product__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

    .technical-product__footer > span {
        color: var(--muted);
        font-size: 13px;
    }

    .technical-product__footer a {
        white-space: nowrap;
        color: var(--green-dark);
        font-weight: 900;
    }

.category-card {
    text-decoration: none;
}

@media (max-width: 900px) {
    .featured-product-grid,
    .timeline-grid,
    .technical-product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .featured-product,
    .timeline-card,
    .technical-product {
        padding: 24px;
    }

    .technical-product__head,
    .technical-product__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .spec-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }
}

/* ==========================================================
   V4 - PROFESYONEL URUN KATALOGU / URUN DETAY SAYFASI
   ========================================================== */
.catalog-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.catalog-product-card {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    min-height: 390px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 20px 65px rgba(20, 53, 39, .07);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .catalog-product-card:hover {
        transform: translateY(-5px);
        border-color: #bfd4c6;
        box-shadow: 0 28px 80px rgba(20, 53, 39, .12);
    }

.catalog-product-card__visual {
    position: relative;
    min-height: 390px;
    display: grid;
    place-items: center;
    padding: 26px;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(10, 164, 223, .16), transparent 38%), radial-gradient(circle at 80% 85%, rgba(103, 184, 48, .22), transparent 40%), linear-gradient(145deg, #f7fbf8, #eef7f2);
}

    .catalog-product-card__visual::after {
        content: "";
        position: absolute;
        inset: 18px;
        border: 1px solid rgba(47, 126, 44, .12);
        border-radius: 23px;
        pointer-events: none;
    }

.catalog-product-card__photo-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px;
}

.catalog-product-card__mark {
    width: 58px;
    height: 82px;
    object-fit: contain;
    margin-bottom: 22px;
    filter: drop-shadow(0 14px 22px rgba(17, 37, 28, .12));
}

.catalog-product-card__photo-fallback > span {
    color: var(--blue-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
}

.catalog-product-card__photo-fallback strong {
    max-width: 185px;
    margin-top: 8px;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.05;
}

.catalog-product-card__photo-fallback small {
    margin-top: 16px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.45;
}

.catalog-product-card__photo {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 315px;
    object-fit: contain;
    filter: drop-shadow(0 22px 26px rgba(17, 37, 28, .14));
}

.catalog-product-card__badge {
    position: absolute;
    z-index: 4;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(17, 37, 28, .92);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.catalog-product-card__body {
    padding: 32px 32px 28px;
    display: flex;
    flex-direction: column;
}

.catalog-product-card__category {
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.catalog-product-card h3 {
    margin: 8px 0 12px;
    font-size: 29px;
    line-height: 1.05;
    letter-spacing: -.03em;
}

    .catalog-product-card h3 a:hover {
        color: var(--green-dark);
    }

.catalog-product-card__body > p {
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.7;
}

.catalog-product-card__specs {
    display: grid;
    gap: 8px;
    margin-bottom: 24px;
}

    .catalog-product-card__specs > div {
        display: flex;
        justify-content: space-between;
        gap: 14px;
        padding: 10px 0;
        border-bottom: 1px solid #edf2ef;
    }

    .catalog-product-card__specs span {
        color: var(--muted);
        font-size: 12px;
    }

    .catalog-product-card__specs strong {
        color: var(--ink);
        font-size: 13px;
    }

.catalog-product-card__footer {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

    .catalog-product-card__footer > span {
        color: var(--muted);
        font-size: 11px;
    }

.product-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

    .product-detail-link svg,
    .related-product-card svg {
        width: 17px;
        height: 17px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
    }

.product-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 44px 0 94px;
    background: radial-gradient(circle at 82% 18%, rgba(10, 164, 223, .11), transparent 30%), radial-gradient(circle at 15% 92%, rgba(103, 184, 48, .13), transparent 33%), linear-gradient(145deg, #f8fbf9, #fff);
}

.product-detail-hero__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.product-detail-hero__glow--one {
    width: 520px;
    height: 520px;
    right: -280px;
    top: -250px;
    border: 1px solid rgba(10, 164, 223, .16);
}

.product-detail-hero__glow--two {
    width: 360px;
    height: 360px;
    left: -180px;
    bottom: -230px;
    border: 1px solid rgba(103, 184, 48, .18);
}

.breadcrumb {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 44px;
    color: var(--muted);
    font-size: 12px;
}

    .breadcrumb a:hover {
        color: var(--green-dark);
    }

    .breadcrumb span {
        opacity: .5;
    }

    .breadcrumb strong {
        color: var(--ink);
    }

.product-detail-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(380px, .9fr) minmax(0, 1.1fr);
    gap: clamp(54px, 7vw, 96px);
    align-items: center;
}

.product-detail-visual__frame {
    position: relative;
    min-height: 570px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 36px;
    background: radial-gradient(circle at 20% 18%, rgba(10, 164, 223, .16), transparent 35%), radial-gradient(circle at 78% 82%, rgba(103, 184, 48, .22), transparent 38%), #f4f9f6;
    box-shadow: var(--shadow);
}

    .product-detail-visual__frame::before {
        content: "";
        position: absolute;
        inset: 24px;
        border: 1px solid rgba(47, 126, 44, .12);
        border-radius: 26px;
    }

.product-detail-visual__fallback {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    text-align: center;
}

    .product-detail-visual__fallback img {
        width: 105px;
        height: 150px;
        object-fit: contain;
        margin-bottom: 30px;
        filter: drop-shadow(0 18px 28px rgba(17, 37, 28, .13));
    }

    .product-detail-visual__fallback span {
        color: var(--blue-dark);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .18em;
    }

    .product-detail-visual__fallback strong {
        max-width: 330px;
        margin-top: 10px;
        color: var(--ink);
        font-size: clamp(34px, 4vw, 52px);
        line-height: .98;
        letter-spacing: -.04em;
    }

    .product-detail-visual__fallback small {
        max-width: 290px;
        margin-top: 22px;
        color: var(--muted);
        line-height: 1.55;
    }

.product-detail-visual__photo {
    position: relative;
    z-index: 3;
    width: 82%;
    height: 475px;
    object-fit: contain;
    filter: drop-shadow(0 32px 32px rgba(17, 37, 28, .18));
}

.product-detail-visual__badge {
    position: absolute;
    z-index: 5;
    top: 28px;
    left: 28px;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-detail-copy h1 {
    margin: 0;
    font-size: clamp(48px, 6vw, 82px);
    line-height: .94;
    letter-spacing: -.055em;
}

.product-detail-lead {
    margin: 28px 0 16px;
    color: var(--ink-2);
    font-size: 20px;
    line-height: 1.55;
    font-weight: 650;
}

.product-detail-copy > p:not(.product-detail-lead) {
    margin: 0;
    max-width: 720px;
    color: var(--muted);
    line-height: 1.8;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.product-meta-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

    .product-meta-row > div {
        padding: 16px 18px;
        border-radius: 16px;
        background: #fff;
        border: 1px solid var(--line);
    }

    .product-meta-row span,
    .product-meta-row strong {
        display: block;
    }

    .product-meta-row span {
        color: var(--muted);
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: .07em;
        font-weight: 800;
    }

    .product-meta-row strong {
        margin-top: 5px;
        color: var(--ink);
        font-size: 14px;
    }

.product-detail-content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.product-spec-panel,
.product-benefit-panel {
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

    .product-spec-panel h2,
    .product-benefit-panel h2 {
        margin: 0 0 26px;
        font-size: 34px;
        letter-spacing: -.035em;
    }

.product-spec-table {
    border-top: 1px solid var(--line);
}

.product-spec-table__row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

    .product-spec-table__row span {
        color: var(--muted);
    }

    .product-spec-table__row strong {
        color: var(--ink);
    }

.product-source-note {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.feature-check-list {
    display: grid;
    gap: 14px;
}

    .feature-check-list > div {
        display: grid;
        grid-template-columns: 36px 1fr;
        gap: 13px;
        align-items: start;
    }

        .feature-check-list > div > span {
            width: 36px;
            height: 36px;
            display: grid;
            place-items: center;
            border-radius: 11px;
            background: var(--green-soft);
            color: var(--green-dark);
            font-weight: 900;
        }

    .feature-check-list p {
        margin: 4px 0 0;
        color: var(--muted);
        line-height: 1.65;
    }

.detail-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.detail-info-card {
    min-height: 255px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
}

.detail-info-card--warning {
    background: linear-gradient(145deg, #18382a, #10271d);
    color: #fff;
    border-color: transparent;
}

.detail-info-card__index {
    display: inline-flex;
    margin-bottom: 30px;
    color: var(--blue-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
}

.detail-info-card--warning .detail-info-card__index {
    color: #9fdb84;
}

.detail-info-card h3 {
    margin: 0 0 16px;
    font-size: 23px;
}

.detail-info-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.detail-info-card--warning p {
    color: rgba(255,255,255,.72);
}

.detail-info-card ul {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}

.detail-info-card li + li {
    margin-top: 8px;
}

.package-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .package-pills span {
        min-width: 62px;
        padding: 9px 12px;
        border-radius: 12px;
        background: var(--green-soft);
        color: var(--green-dark);
        text-align: center;
        font-weight: 900;
    }

.related-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.related-product-card {
    position: relative;
    min-height: 220px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .related-product-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-soft);
    }

    .related-product-card > span {
        color: var(--green-dark);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .related-product-card h3 {
        margin: 30px 0 8px;
        font-size: 27px;
    }

    .related-product-card p {
        margin: 0;
        color: var(--muted);
        font-size: 13px;
    }

    .related-product-card svg {
        position: absolute;
        right: 28px;
        bottom: 28px;
        color: var(--green-dark);
    }

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

    .product-detail-grid {
        grid-template-columns: minmax(330px, .85fr) minmax(0, 1.15fr);
        gap: 46px;
    }
}

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

    .catalog-product-card__visual {
        min-height: 340px;
    }

    .catalog-product-card__photo {
        height: 285px;
    }

    .product-detail-grid,
    .product-detail-content-grid,
    .detail-info-grid,
    .related-product-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-visual__frame {
        min-height: 490px;
    }

    .product-detail-visual__photo {
        height: 400px;
    }
}

@media (max-width: 620px) {
    .catalog-product-card__body,
    .product-spec-panel,
    .product-benefit-panel {
        padding: 24px;
    }

    .catalog-product-card__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-detail-hero {
        padding-bottom: 68px;
    }

    .breadcrumb {
        margin-bottom: 28px;
    }

    .product-detail-visual__frame {
        min-height: 410px;
        border-radius: 28px;
    }

    .product-detail-visual__photo {
        height: 330px;
    }

    .product-detail-visual__fallback {
        padding: 34px;
    }

        .product-detail-visual__fallback img {
            width: 78px;
            height: 112px;
            margin-bottom: 22px;
        }

    .product-detail-copy h1 {
        font-size: 46px;
    }

    .product-detail-lead {
        font-size: 18px;
    }

    .product-meta-row {
        grid-template-columns: 1fr;
    }
}

/* =========================
   Database-backed catalogue
   ========================= */
.category-grid--database {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.product-nav small {
    font-size: 10px;
    opacity: .65;
}

.empty-state {
    padding: 48px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    text-align: center;
}

    .empty-state h3 {
        margin: 0 0 8px;
        font-size: 26px;
    }

    .empty-state p {
        margin: 0 0 24px;
        color: var(--muted);
    }

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

@media (max-width: 620px) {
    .category-grid--database {
        grid-template-columns: 1fr;
    }

    .empty-state {
        padding: 30px 20px;
    }
}


/* =========================================================
   PRESTIJ HERO REFINEMENTS / LOGO VISIBILITY IMPROVEMENT
   ========================================================= */
.hero-card--brand-focus {
    background: radial-gradient(circle at 84% 18%, rgba(10,164,223,.26), rgba(10,164,223,0) 28%), radial-gradient(circle at 12% 88%, rgba(103,184,48,.24), rgba(103,184,48,0) 30%), linear-gradient(145deg, #143a28 0%, #10281d 58%, #0f3226 100%);
}

.hero-card__brand-panel {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 360px);
    min-height: 108px;
    margin: 46px 0 24px;
    padding: 22px 24px 18px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.18);
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,251,247,.96));
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

    .hero-card__brand-panel img {
        width: min(100%, 250px);
        max-height: 70px;
        object-fit: contain;
        filter: drop-shadow(0 8px 16px rgba(17,37,28,.12));
    }

.hero-card__brand-badge {
    position: absolute;
    top: -12px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green) 0%, var(--blue-dark) 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    box-shadow: 0 10px 20px rgba(10, 120, 173, .28);
}

.hero-card__meta {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

    .hero-card__meta span {
        min-height: 34px;
        padding: 0 14px;
        display: inline-flex;
        align-items: center;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,.12);
        background: rgba(255,255,255,.08);
        color: rgba(255,255,255,.94);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .01em;
        backdrop-filter: blur(8px);
    }

.hero-card--main h2 {
    max-width: 420px;
}

.hero-card--main p {
    max-width: 430px;
}

@media (max-width: 620px) {
    .hero-card__brand-panel {
        width: 100%;
        min-height: 92px;
        margin: 34px 0 18px;
        padding: 18px 18px 16px;
        border-radius: 20px;
    }

        .hero-card__brand-panel img {
            width: min(100%, 210px);
            max-height: 58px;
        }

    .hero-card__meta {
        gap: 8px;
        margin-top: 18px;
    }

        .hero-card__meta span {
            font-size: 11px;
            min-height: 30px;
            padding: 0 10px;
        }
}


/* =========================================================
   PRODUCT PAGE HERO / LOGO VISIBILITY IMPROVEMENT
   ========================================================= */
.page-hero__mark--product {
    position: relative;
    width: min(290px, 100%);
    height: auto;
    min-height: 220px;
    padding: 28px 24px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,251,247,.95));
    border: 1px solid rgba(255,255,255,.32);
    box-shadow: 0 22px 50px rgba(0,0,0,.18);
}

    .page-hero__mark--product img {
        width: min(100%, 220px);
        max-height: 84px;
        object-fit: contain;
        filter: drop-shadow(0 10px 18px rgba(17,37,28,.14));
    }

.page-hero__mark-badge {
    position: absolute;
    top: -14px;
    left: 20px;
    min-height: 30px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green) 0%, var(--blue-dark) 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    box-shadow: 0 10px 22px rgba(10, 120, 173, .28);
}

.page-hero__mark--product small {
    max-width: 210px;
    text-align: center;
    color: #50655a;
    font-size: 12px;
    line-height: 1.55;
    font-weight: 700;
}

@media (max-width: 900px) {
    .page-hero__mark--product {
        display: none;
    }
}


/* =========================================================
   CONTACT PAGE HERO / LOGO VISIBILITY IMPROVEMENT
   ========================================================= */
.page-hero__mark--contact {
    position: relative;
    width: min(300px, 100%);
    height: auto;
    min-height: 230px;
    padding: 30px 24px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,.985), rgba(246,251,247,.95));
    border: 1px solid rgba(255,255,255,.32);
    box-shadow: 0 22px 50px rgba(0,0,0,.18);
}

    .page-hero__mark--contact img {
        width: min(100%, 224px);
        max-height: 84px;
        object-fit: contain;
        filter: drop-shadow(0 10px 18px rgba(17,37,28,.14));
    }

    .page-hero__mark--contact small {
        max-width: 225px;
        text-align: center;
        color: #50655a;
        font-size: 12px;
        line-height: 1.6;
        font-weight: 700;
    }

@media (max-width: 900px) {
    .page-hero__mark--contact {
        display: none;
    }
}


/* =========================================================
   LANGUAGE SWITCHER + COOKIE CONSENT + COOKIE POLICY
   ========================================================= */
.language-switcher {
    position: relative;
}

.language-switcher__button {
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 9px;
    background: rgba(255,255,255,.06);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
}

.language-switcher__code {
    min-width: 24px;
    height: 20px;
    padding: 0 5px;
    display: inline-grid;
    place-items: center;
    border-radius: 6px;
    background: rgba(255,255,255,.12);
    font-size: 9px;
    letter-spacing: .08em;
}

.language-switcher__button svg {
    width: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.language-switcher__menu {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    z-index: 1200;
    width: 220px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 20px 50px rgba(17,37,28,.18);
}

    .language-switcher__menu[hidden] {
        display: none;
    }

    .language-switcher__menu a {
        min-height: 44px;
        padding: 0 10px;
        display: grid;
        grid-template-columns: 38px 1fr auto;
        gap: 8px;
        align-items: center;
        border-radius: 10px;
        color: #40564b;
        font-size: 13px;
        font-weight: 750;
    }

        .language-switcher__menu a:hover {
            background: var(--soft);
            color: var(--green-dark);
        }

        .language-switcher__menu a.is-active {
            background: var(--green-soft);
            color: var(--green-dark);
        }

.language-switcher__menu-code {
    width: 34px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--soft-blue);
    color: var(--blue-dark);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
}

.language-switcher__check {
    opacity: 0;
    color: var(--green-dark);
}

.language-switcher__menu a.is-active .language-switcher__check {
    opacity: 1;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

    .footer-legal a, .footer-legal button {
        padding: 0;
        border: 0;
        background: transparent;
        color: inherit;
        font: inherit;
        cursor: pointer;
    }

        .footer-legal a:hover, .footer-legal button:hover {
            color: #fff;
        }

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 22px;
    z-index: 1600;
    width: min(1120px, calc(100% - 32px));
    transform: translate(-50%, calc(100% + 50px));
    opacity: 0;
    pointer-events: none;
    transition: transform .32s ease, opacity .32s ease;
}

    .cookie-banner.is-visible {
        transform: translate(-50%, 0);
        opacity: 1;
        pointer-events: auto;
    }

.cookie-banner__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    background: rgba(13,33,24,.97);
    color: #fff;
    box-shadow: 0 24px 70px rgba(0,0,0,.30);
    backdrop-filter: blur(18px);
}

.cookie-banner__content {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: start;
}

.cookie-banner__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: linear-gradient(135deg,var(--green),var(--blue-dark));
}

    .cookie-banner__icon svg {
        width: 24px;
        fill: none;
        stroke: #fff;
        stroke-width: 1.8;
    }

.cookie-banner h2 {
    margin: 1px 0 6px;
    font-size: 19px;
}

.cookie-banner p {
    margin: 0;
    max-width: 720px;
    color: rgba(255,255,255,.70);
    font-size: 13px;
    line-height: 1.6;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.cookie-button {
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid transparent;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    font-weight: 850;
}

.cookie-button--primary {
    background: linear-gradient(135deg,var(--green),var(--green-dark));
    color: #fff;
}

.cookie-button--secondary {
    background: #fff;
    color: var(--ink);
}

.cookie-button--ghost {
    border-color: rgba(255,255,255,.18);
    background: transparent;
    color: #fff;
}

.cookie-modal[hidden] {
    display: none;
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 1700;
    display: grid;
    place-items: center;
    padding: 20px;
}

.cookie-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6,18,12,.70);
    backdrop-filter: blur(5px);
}

.cookie-modal__panel {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
    max-height: min(780px, calc(100vh - 40px));
    overflow-y: auto;
    padding: 30px;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.cookie-modal__header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
}

    .cookie-modal__header h2 {
        margin: 0;
        font-size: 30px;
        letter-spacing: -.03em;
    }

    .cookie-modal__header p {
        margin: 8px 0 0;
        color: var(--muted);
    }

.cookie-modal__close {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 22px;
}

.cookie-preference-list {
    margin-top: 24px;
    border-top: 1px solid var(--line);
}

.cookie-preference {
    padding: 20px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    border-bottom: 1px solid var(--line);
}

    .cookie-preference strong {
        display: block;
        font-size: 15px;
    }

    .cookie-preference p {
        margin: 5px 0 0;
        color: var(--muted);
        font-size: 13px;
        line-height: 1.55;
    }

.cookie-switch {
    position: relative;
    width: 48px;
    height: 28px;
}

    .cookie-switch input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .cookie-switch span {
        position: absolute;
        inset: 0;
        border-radius: 999px;
        background: #d8dfda;
        cursor: pointer;
        transition: .2s ease;
    }

        .cookie-switch span::after {
            content: "";
            position: absolute;
            width: 22px;
            height: 22px;
            left: 3px;
            top: 3px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 3px 8px rgba(0,0,0,.15);
            transition: transform .2s ease;
        }

    .cookie-switch input:checked + span {
        background: var(--green-dark);
    }

        .cookie-switch input:checked + span::after {
            transform: translateX(20px);
        }

    .cookie-switch input:disabled + span {
        background: var(--green-dark);
        opacity: .72;
        cursor: not-allowed;
    }

.cookie-modal__actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

body.cookie-modal-open {
    overflow: hidden;
}

.page-hero--privacy {
    background: linear-gradient(135deg,#143a28 0%,#102d21 62%,#0a506e 100%);
}

.privacy-hero-mark {
    width: 150px;
    height: 170px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 30px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.13);
}

    .privacy-hero-mark svg {
        width: 72px;
        fill: #d8f1cc;
    }

.section--privacy {
    background: linear-gradient(180deg,#fff,#f7faf8);
}

.privacy-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 330px;
    gap: 42px;
    align-items: start;
}

.privacy-content {
    display: grid;
    gap: 18px;
}

.privacy-section {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(21,53,39,.05);
}

.privacy-section__index {
    display: inline-flex;
    margin-bottom: 22px;
    color: var(--blue-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
}

.privacy-section h2 {
    margin: 0 0 13px;
    font-size: 28px;
    letter-spacing: -.025em;
}

.privacy-section p {
    margin: 0;
    color: var(--muted);
}

.privacy-category-list {
    display: grid;
    gap: 10px;
}

    .privacy-category-list > div {
        padding: 18px;
        border-radius: 16px;
        background: var(--soft);
    }

    .privacy-category-list strong {
        color: var(--ink);
    }

    .privacy-category-list p {
        margin-top: 5px;
        font-size: 14px;
    }

.privacy-table-wrap {
    overflow-x: auto;
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

    .privacy-table th, .privacy-table td {
        padding: 14px 12px;
        border-bottom: 1px solid var(--line);
        text-align: start;
        font-size: 13px;
        vertical-align: top;
    }

    .privacy-table th {
        color: var(--ink);
        background: var(--soft);
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: .06em;
    }

    .privacy-table code {
        font-size: 12px;
    }

.privacy-summary {
    position: sticky;
    top: 115px;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(145deg,#153a27,#10271d);
    color: #fff;
}

    .privacy-summary h3 {
        margin: 0;
        font-size: 27px;
    }

    .privacy-summary p {
        color: rgba(255,255,255,.67);
        font-size: 14px;
    }

    .privacy-summary .text-link {
        color: #bdeaa2;
    }

.map-consent-placeholder {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    padding: 30px;
    background: linear-gradient(135deg,#eaf3ed,#eef8fc);
    text-align: center;
}

    .map-consent-placeholder[hidden] {
        display: none;
    }

.map-consent-placeholder__card {
    max-width: 430px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow-soft);
}

    .map-consent-placeholder__card h3 {
        margin: 0 0 8px;
        font-size: 23px;
    }

    .map-consent-placeholder__card p {
        margin: 0 0 18px;
        color: var(--muted);
    }

[dir="rtl"] .language-switcher__menu {
    right: auto;
    left: 0;
}

    [dir="rtl"] .language-switcher__menu a {
        grid-template-columns: auto 1fr 38px;
    }

[dir="rtl"] .privacy-table th, [dir="rtl"] .privacy-table td {
    text-align: right;
}

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

    .privacy-summary {
        position: static;
    }

    .cookie-banner__inner {
        grid-template-columns: 1fr;
    }

    .cookie-banner__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 620px) {
    .utility-bar__links {
        gap: 8px;
    }

    .language-switcher__button .language-switcher__name {
        display: none;
    }

    .language-switcher__menu {
        width: min(220px, calc(100vw - 24px));
        right: 0;
    }

    .cookie-banner {
        bottom: 12px;
        width: calc(100% - 20px);
    }

    .cookie-banner__inner {
        padding: 18px;
        border-radius: 20px;
        gap: 18px;
    }

    .cookie-banner__content {
        grid-template-columns: 1fr;
    }

    .cookie-banner__icon {
        display: none;
    }

    .cookie-banner__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cookie-button {
        width: 100%;
    }

    .cookie-modal {
        padding: 10px;
    }

    .cookie-modal__panel {
        padding: 22px;
        border-radius: 20px;
        max-height: calc(100vh - 20px);
    }

    .cookie-modal__header h2 {
        font-size: 25px;
    }

    .cookie-modal__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .privacy-section {
        padding: 24px;
    }

        .privacy-section h2 {
            font-size: 24px;
        }
}
