* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #08182c;
}

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

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

.container {
    width: min(1380px, calc(100% - 70px));
    margin: 0 auto;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;
    padding: 22px 0;

    background: rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transition:
        padding 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.header-inner {
    position: relative;
    min-height: 64px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    gap: 30px;
}

.logo {
    width: 250px;
    flex-shrink: 0;
    justify-self: start;
    margin-left: 35px;
}

.logo img {
    width: 100%;
    height: auto;
}
/* =========================
   ANA NAVİGASYON
========================= */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 4px;

    width: fit-content;
    flex: 0 0 auto;

    padding: 4px;

    border: 1px solid #edf0f2;
    border-radius: 999px;

    background: #fafbfa;
}

.main-nav a {
    position: relative;

    padding: 12px 18px;

    border-radius: 999px;

    color: #56606b;

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

/* HOVER */

.main-nav a:hover {
    color: #07172b;

    background: #ffffff;

    transform: translateY(-1px);
}

/* ACTIVE PAGE */

.main-nav a.active {
    color: #ffffff;

    background: linear-gradient(
        135deg,
        #58c914,
        #36a90b
    );

    box-shadow:
        0 6px 16px rgba(59, 174, 11, 0.18);
}

/* Eski aktif yeşil noktayı kaldır */

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

/* =========================
   MOBİL MENÜ BUTONU
========================= */

.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    padding: 0;

    border: 1px solid #edf0f2;
    border-radius: 50%;

    background: #ffffff;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    cursor: pointer;

    box-shadow:
        0 7px 18px rgba(14, 36, 57, 0.06);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.menu-toggle:hover {
    transform: translateY(-1px);
    border-color: #cfe3c6;
}

.menu-toggle span {
    width: 19px;
    height: 2px;

    border-radius: 999px;

    background: #07172b;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

/* TEKLİF AL */

.offer-button {
    min-width: 145px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #5ed315, #2eaa05);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(67, 186, 12, 0.25);
    transition: 0.25s ease;
    justify-self: end;
    margin-right: 35px;
}

.offer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(67, 186, 12, 0.32);
}

.offer-button span {
    font-size: 21px;
    font-weight: 400;
}

/* HERO */

.hero {
    padding-bottom: 35px;
}

.hero-wrapper {
    min-height: 575px;
    border: 1px solid #edf0f2;
    border-radius: 70px;
    padding: 65px 30px 40px 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;

    box-shadow:
        0 12px 40px rgba(10, 31, 52, 0.035),
        inset 0 0 40px rgba(255,255,255,0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 10px;
    width: 48%;
}

.hero-content h1 {
    font-size: clamp(38px, 3.2vw, 59px);
    line-height: 1.10;
    letter-spacing: -1.8px;
    font-weight: 800;
    color: #07172b;
    margin-bottom: 28px;
}

.hero-content h1 span {
    display: block;
    color: #36aa0c;
}

.hero-content p {
    max-width: 450px;
    font-size: 19px;
    line-height: 1.7;
    color: #666d75;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.primary-button,
.secondary-button {
    min-height: 58px;
    padding: 0 27px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.25s ease;
}

.primary-button {
    color: #ffffff;
    background: linear-gradient(135deg, #5ed315, #2eaa05);
    box-shadow: 0 12px 26px rgba(67, 186, 12, 0.22);
}

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

.secondary-button {
    color: #162438;
    border: 1px solid #b9d5ac;
    background: rgba(255,255,255,0.75);
}

.secondary-button:hover {
    border-color: #42b50b;
    color: #35a80b;
}

.primary-button span,
.secondary-button span {
    font-size: 21px;
    font-weight: 400;
}

/* =========================
   HERO GÖRSELİ
========================= */

.hero-image {
    transform: translateZ(0);
    backface-visibility: hidden;
    position: absolute;

    top: 0;
    right: 0;

    width: 62%;
    height: 100%;

    overflow: hidden;

    border-radius: 0 70px 70px 0;
}
.hero-image img {
    transform: translateZ(0);
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.03) 6%,
        rgba(0, 0, 0, 0.08) 12%,
        rgba(0, 0, 0, 0.16) 18%,
        rgba(0, 0, 0, 0.28) 24%,
        rgba(0, 0, 0, 0.42) 30%,
        rgba(0, 0, 0, 0.58) 36%,
        rgba(0, 0, 0, 0.72) 42%,
        rgba(0, 0, 0, 0.84) 48%,
        rgba(0, 0, 0, 0.93) 54%,
        black 62%,
        black 100%
    );

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.03) 6%,
        rgba(0, 0, 0, 0.08) 12%,
        rgba(0, 0, 0, 0.16) 18%,
        rgba(0, 0, 0, 0.28) 24%,
        rgba(0, 0, 0, 0.42) 30%,
        rgba(0, 0, 0, 0.58) 36%,
        rgba(0, 0, 0, 0.72) 42%,
        rgba(0, 0, 0, 0.84) 48%,
        rgba(0, 0, 0, 0.93) 54%,
        black 62%,
        black 100%
    );
}

/* TABLET */

@media (max-width: 1050px) {

    .main-nav {
        gap: 22px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        padding: 50px;
    }

    .hero-image {
        height: 430px;
    }
}

/* =========================
   TABLET HEADER FIX
========================= */

@media (min-width: 821px) and (max-width: 900px) {

    .header-inner {
        grid-template-columns: 1fr auto auto;
        gap: 14px;
    }

    .logo {
        width: 155px;
        margin-left: 0;
    }

    .offer-button {
        min-width: auto;
        min-height: 46px;
        padding: 0 18px;
        margin-right: 0;
    }

    .menu-toggle {
        display: flex;
        justify-self: end;

        position: relative;
        z-index: 20;
    }

    .main-nav {
        position: absolute;

        top: calc(100% + 10px);
        left: 0;
        right: 0;

        z-index: 15;

        width: 100%;
        padding: 10px;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 5px;

        border: 1px solid #edf0f2;
        border-radius: 26px;

        background: rgba(255, 255, 255, 0.98);

        box-shadow: 0 18px 45px rgba(14, 36, 57, 0.12);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);
        pointer-events: none;

        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
    }

    .main-nav a {
        width: 100%;
        padding: 14px 18px;

        text-align: left;
        border-radius: 18px;
    }

    .main-nav.mobile-open {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
        pointer-events: auto;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 820px) {

    .container {
        width: min(100% - 30px, 1380px);
    }

    .menu-toggle {
    display: flex;

    justify-self: end;

    position: relative;
    z-index: 20;
}

/* MOBILE NAVIGATION */

.main-nav {
    position: absolute;

    top: calc(100% + 10px);
    left: 15px;
    right: 15px;

    z-index: 15;

    width: auto;

    padding: 10px;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 5px;

    border: 1px solid #edf0f2;
    border-radius: 26px;

    background: rgba(255, 255, 255, 0.98);

    box-shadow:
        0 18px 45px rgba(14, 36, 57, 0.12);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}

.main-nav a {
    width: 100%;

    padding: 14px 18px;

    text-align: left;

    border-radius: 18px;
}

.main-nav.mobile-open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);

    pointer-events: auto;
}

    .logo {
        width: 135px;
    }

    .offer-button {
        min-width: auto;
        min-height: 46px;
        padding: 0 18px;
    }

    /* HERO */

    .hero-wrapper {
        display: block;

        padding: 45px 25px 25px;

        border-radius: 38px;
    }

    .hero-content {
        width: 100%;
        padding-left: 0;
    }

    .hero-content h1 {
        font-size: 39px;
        letter-spacing: -1.5px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .hero-image {
        position: relative;

        top: auto;
        right: auto;

        width: 100%;
        height: 330px;

        margin-top: 35px;

        border-radius: 28px;
    }

    .hero-image img {
        width: 100%;
        height: 100%;

        object-fit: cover;

        border-radius: 28px;

        -webkit-mask-image: none;
        mask-image: none;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 520px) {

    .hero-content h1 {
        font-size: 33px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-image {
        height: 270px;
        margin-top: 30px;
    }
	
/* ======================================================
   TEKLİF FORMU - GÖNDERİM DURUMU
====================================================== */

.form-status {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
}

.form-status:empty {
    display: none;
}

.form-status.success {
    display: block;
    padding: 15px 18px;
    border-radius: 14px;

    color: #267a09;
    background: rgba(76, 197, 21, 0.09);
    border: 1px solid rgba(76, 197, 21, 0.20);
}

.form-status.error {
    display: block;
    padding: 15px 18px;
    border-radius: 14px;

    color: #b42318;
    background: rgba(180, 35, 24, 0.06);
    border: 1px solid rgba(180, 35, 24, 0.15);
}
	
}/* =========================
   İSTATİSTİKLER
========================= */

.stats-section {
    padding: 0 0 45px;
}

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

.stat-card {
    min-height: 122px;
    padding: 22px 28px;
    border: 1px solid #edf0f2;
    border-radius: 32px;
    background: #ffffff;

    display: flex;
    align-items: center;
    gap: 20px;

    box-shadow:
        0 10px 30px rgba(14, 36, 57, 0.045),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: #dbe8d4;
    box-shadow:
        0 18px 40px rgba(14, 36, 57, 0.08),
        0 8px 24px rgba(63, 181, 13, 0.05);
}

.stat-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;

    border-radius: 50%;
    border: 1px solid #edf0f2;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #43b90e;
    font-size: 28px;
    font-weight: 500;

    background: #ffffff;

    box-shadow:
        0 8px 20px rgba(14, 36, 57, 0.04);
}

.stat-content h3 {
    margin: 0 0 5px;
    color: #07172b;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.stat-content p {
    margin: 0;
    color: #5f6770;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 500;
}

/* TABLET */

@media (max-width: 1050px) {

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

/* MOBILE */

@media (max-width: 600px) {

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-card {
        min-height: 105px;
        padding: 18px 22px;
        border-radius: 26px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .stat-content h3 {
        font-size: 27px;
    }
}

/* =====================================================
   VATERA — SEÇİLİ ÜRÜNLER
===================================================== */

.vatera-products-section {
    padding: 0 0 45px;
}


.vatera-products-box {
    position: relative;

    padding: 42px 32px 34px;

    border: 1px solid #edf0f2;
    border-radius: 46px;

    background:
        linear-gradient(
            145deg,
            #fbfcfb 0%,
            #f7f9f7 100%
        );

    box-shadow:
        0 14px 38px rgba(7, 23, 43, 0.045);

    overflow: hidden;
}


/* =========================
   HEADING
========================= */

.vatera-products-heading {
    margin-bottom: 32px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;
}


.vatera-products-heading-left {
    max-width: 760px;
}


.vatera-products-heading-left > span {
    display: block;

    margin-bottom: 11px;

    color: #43b510;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.8px;
}


.vatera-products-heading h2 {
    margin: 0;

    color: #07172b;

    font-size: clamp(31px, 2.5vw, 43px);
    line-height: 1.12;

    font-weight: 800;

    letter-spacing: -1.3px;
}


.vatera-products-heading h2 strong {
    color: #3caf10;

    font-weight: 800;
}


/* =========================
   TÜM ÜRÜNLER BUTONU
========================= */

.vatera-products-all {
    min-height: 52px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    flex-shrink: 0;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #5ed315,
            #2eaa05
        );

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    box-shadow:
        0 11px 25px rgba(67, 186, 12, 0.22);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.vatera-products-all:hover {
    transform: translateY(-2px);

    box-shadow:
        0 15px 32px rgba(67, 186, 12, 0.30);
}


.vatera-products-all span {
    font-size: 19px;
    font-weight: 400;
}


/* =========================
   GRID
========================= */

.vatera-products-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;
}


/* =========================
   ÜRÜN KARTI
========================= */

.vatera-product-card {
    position: relative;

    display: block;

    min-width: 0;

    border: 1px solid #e8edef;

    border-radius: 30px;

    background: #ffffff;

    overflow: hidden;

    box-shadow:
        0 8px 24px rgba(7, 23, 43, 0.045);

    transition:
        transform 0.32s ease,
        border-color 0.32s ease,
        box-shadow 0.32s ease;
}


.vatera-product-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(68, 181, 16, 0.34);

    box-shadow:
        0 22px 42px rgba(7, 23, 43, 0.10),
        0 10px 26px rgba(60, 180, 15, 0.06);
}


/* =========================
   ÜRÜN GÖRSELİ
========================= */

.vatera-product-image {
    position: relative;

    height: 260px;

    padding: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 42%,
            #ffffff 0%,
            #f8faf8 58%,
            #f1f5f1 100%
        );
}


.vatera-product-image::after {
    content: "";

    position: absolute;

    left: 18%;
    right: 18%;
    bottom: 27px;

    height: 18px;

    border-radius: 50%;

    background:
        rgba(7, 23, 43, 0.10);

    filter: blur(16px);

    opacity: 0.36;
}


.vatera-product-image img {
    position: relative;

    z-index: 2;

    width: 82%;
    height: 82%;

    object-fit: contain;

    transition:
        transform 0.45s ease;
}


.vatera-product-card:hover
.vatera-product-image img {
    transform:
        translateY(-4px)
        scale(1.035);
}


/* ÜRÜN NUMARASI */

.vatera-product-number {
    position: absolute;

    top: 20px;
    left: 20px;

    z-index: 4;

    color:
        rgba(7, 23, 43, 0.22);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================
   CONTENT
========================= */

.vatera-product-content {
    position: relative;

    padding: 23px 22px 21px;

    border-top:
        1px solid #edf0f2;

    background: #ffffff;
}


.vatera-product-category {
    display: block;

    margin-bottom: 9px;

    color: #43b510;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}


.vatera-product-content h3 {
    min-height: 48px;

    margin: 0 0 19px;

    color: #07172b;

    font-size: 17px;
    line-height: 1.35;

    font-weight: 800;

    letter-spacing: -0.3px;
}


/* =========================
   ÜRÜN ALT ALANI
========================= */

.vatera-product-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding-top: 16px;

    border-top:
        1px solid #edf0f2;
}


.vatera-product-bottom > span {
    color: #606a73;

    font-size: 12px;
    font-weight: 700;

    transition:
        color 0.25s ease;
}


.vatera-product-card:hover
.vatera-product-bottom > span {
    color: #35aa0d;
}


/* ARROW */

.vatera-product-arrow {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f2f6f1;

    color: #37ad0d;

    font-size: 16px;

    transition:
        transform 0.25s ease,
        color 0.25s ease,
        background 0.25s ease;
}


.vatera-product-card:hover
.vatera-product-arrow {
    transform: translateX(3px);

    background:
        linear-gradient(
            135deg,
            #5ed315,
            #2eaa05
        );

    color: #ffffff;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {

    .vatera-products-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .vatera-product-image {
        height: 290px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 720px) {

    .vatera-products-box {
        padding: 32px 20px 24px;

        border-radius: 34px;
    }


    .vatera-products-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 22px;
    }


    .vatera-products-heading h2 {
        font-size: 31px;
    }


    .vatera-products-all {
        width: 100%;
    }


    .vatera-products-grid {
        grid-template-columns: 1fr;
    }


    .vatera-product-image {
        height: 275px;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .vatera-products-box {
        padding:
            28px 16px 20px;
    }


    .vatera-product-image {
        height: 245px;
    }


    .vatera-product-content {
        padding:
            21px 20px 19px;
    }
}

/* =========================
   ÇÖZÜMLER
========================= */

.solutions-section {
    padding: 0 0 45px;
}

.solutions-box {
    padding: 38px 30px 32px;

    border: 1px solid #edf0f2;
    border-radius: 44px;

    background: #ffffff;

    box-shadow:
        0 12px 36px rgba(14, 36, 57, 0.035),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}


/* =========================
   HEADING
========================= */

.section-heading {
    margin-bottom: 28px;
}

.section-heading span {
    display: block;

    margin-bottom: 8px;

    color: #42ad15;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.section-heading h2 {
    margin: 0;

    color: #07172b;

    font-size: 31px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.8px;
}


/* =========================
   GRID
========================= */

.solutions-grid {
    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 16px;
}


/* =========================
   SOLUTION CARD
========================= */

.solution-card {
    position: relative;

    display: block;

    min-width: 0;

    border-radius: 28px;

    background: #ffffff;

    overflow: hidden;

    box-shadow:
        0 10px 24px rgba(14, 36, 57, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* CARD HOVER */

.solution-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 36px rgba(14, 36, 57, 0.13),
        0 8px 22px rgba(54, 170, 12, 0.08);
}


/* =========================
   IMAGE
========================= */

.solution-image {
    width: 100%;
    height: 175px;

    overflow: hidden;

    border-radius: 28px 28px 0 0;
}

.solution-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.45s ease;
}


/* IMAGE HOVER */

.solution-card:hover .solution-image img {
    transform: scale(1.06);
}


/* =========================
   GREEN BOTTOM
========================= */

.solution-bottom {
    position: relative;

    min-height: 68px;

    padding: 20px 18px 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #58c914 0%,
            #36a90b 100%
        );

    transition:
        background 0.3s ease;
}

.solution-bottom h3 {
    margin: 0;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.35;

    text-align: center;

    transition:
        transform 0.3s ease;
}


/* GREEN AREA HOVER */

.solution-card:hover .solution-bottom {
    background:
        linear-gradient(
            135deg,
            #64d91a 0%,
            #2f9f08 100%
        );
}

.solution-card:hover .solution-bottom h3 {
    transform: translateY(-1px);
}


/* =========================
   CIRCLE ICON
========================= */

.solution-icon {
    position: absolute;

    right: 10px;
    top: -20px;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #42b70d;

    font-size: 17px;
    font-weight: 700;

    background: #ffffff;

    border: 1px solid #edf0f2;

    box-shadow:
        0 7px 18px rgba(14, 36, 57, 0.12);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}


/* ICON HOVER */

.solution-card:hover .solution-icon {
    transform: translateY(-2px);

    background: #ffffff;

    color: #35aa0d;

    box-shadow:
        0 9px 22px rgba(14, 36, 57, 0.16);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1200px) {

    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .solution-image {
        height: 210px;
    }
}


/* =========================
   SMALL TABLET
========================= */

@media (max-width: 760px) {

    .solutions-box {
        padding: 30px 20px 25px;

        border-radius: 34px;
    }

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

    .section-heading h2 {
        font-size: 27px;
    }

    .solution-image {
        height: 180px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 480px) {

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

    .solution-image {
        height: 230px;
    }

    .solution-bottom {
        min-height: 65px;
    }
}

/* =========================
   ABOUT VATERA - VATERA HAKKINDA
========================= */

.about-section {
    padding: 0 0 45px;
}

.about-box {
    min-height: 520px;
    padding: 28px;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 55px;
    align-items: center;

    border: 1px solid #edf0f2;
    border-radius: 48px;
    background: #ffffff;

    box-shadow:
        0 12px 36px rgba(14, 36, 57, 0.035);

    overflow: hidden;
}

/* IMAGE */

.about-image {
    width: 100%;
    height: 455px;
    overflow: hidden;
    border-radius: 38px;

}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    border-radius: 38px;

    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.025);
}

/* CONTENT */

.about-content {
    padding: 15px 30px 15px 0;

}

.about-label {
    display: inline-block;
    margin-bottom: 14px;

    color: #45b80d;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.about-content h2 {
    margin: 0 0 22px;
    max-width: 560px;

    color: #07172b;

    font-size: clamp(36px, 3vw, 52px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.8px;
}

.about-content h2 span {
    color: #3cae10;
}

.about-content p {
    max-width: 570px;
    margin-bottom: 30px;

    color: #69717a;

    font-size: 17px;
    line-height: 1.8;
}

/* BUTTON */

.about-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 56px;
    padding: 0 27px;
    margin-bottom: 38px;

    border-radius: 999px;

    background: linear-gradient(
        135deg,
        #5ed315,
        #2eaa05
    );

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    box-shadow:
        0 12px 26px rgba(67, 186, 12, 0.22);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.about-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 16px 34px rgba(67, 186, 12, 0.30);
}

.about-button span {
    font-size: 21px;
}

/* ABOUT STATS */

.about-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.about-stat strong {
    color: #07172b;

    font-size: 31px;
    line-height: 1;
    font-weight: 800;
}

.about-stat span {
    color: #747c84;

    font-size: 13px;
    font-weight: 500;
}

.about-divider {
    width: 1px;
    height: 42px;
    background: #e4e8eb;
}

/* TABLET */

@media (max-width: 1050px) {

    .about-box {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        height: 420px;
    }

    .about-content {
        padding: 10px 20px 20px;
    }
}

/* MOBILE */

@media (max-width: 650px) {

    .about-box {
        padding: 18px;
        border-radius: 34px;
    }

    .about-image {
        height: 300px;
        border-radius: 26px;
    }

    .about-image img {
        border-radius: 26px;
    }

    .about-content {
        padding: 10px 5px 15px;
    }

    .about-content h2 {
        font-size: 34px;
        letter-spacing: -1.2px;
    }

    .about-content p {
        font-size: 16px;
    }

    .about-stats {
        gap: 20px;
    }

    .about-stat strong {
        font-size: 27px;
    }
}

/* =========================
   SUSTAINABILITY
========================= */

.sustainability-section {
    padding-bottom: 45px;
}

.sustainability-box {
    position: relative;

    min-height: 430px;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;

    overflow: hidden;

    border-radius: 48px;

    background: linear-gradient(
        135deg,
        #2ca70d 0%,
        #45bd12 50%,
        #55c91a 100%
    );

    box-shadow:
        0 18px 45px rgba(46, 167, 13, 0.16);
}

/* CONTENT */

.sustainability-content {
    position: relative;
    z-index: 2;

    padding: 55px 30px 55px 60px;
}

.sustainability-label {
    display: inline-block;

    margin-bottom: 14px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.sustainability-content h2 {
    max-width: 520px;

    margin-bottom: 22px;

    color: #ffffff;

    font-size: clamp(38px, 3vw, 54px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.8px;
}

.sustainability-content h2 span {
    display: block;

    color: #e8ffd9;
}

.sustainability-content p {
    max-width: 520px;

    margin-bottom: 32px;

    color: rgba(255, 255, 255, 0.86);

    font-size: 17px;
    line-height: 1.75;
}

/* BUTTON */

.sustainability-button {
    min-height: 56px;

    padding: 0 26px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.14);

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

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

    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
}

.sustainability-button span {
    font-size: 21px;
}

/* IMAGE */

.sustainability-image {
    position: relative;

    width: 100%;
    height: 100%;
    min-height: 430px;

    overflow: hidden;
}

.sustainability-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.6s ease;

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.12) 12%,
        rgba(0, 0, 0, 0.42) 25%,
        rgba(0, 0, 0, 0.75) 42%,
        black 58%,
        black 100%
    );

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.12) 12%,
        rgba(0, 0, 0, 0.42) 25%,
        rgba(0, 0, 0, 0.75) 42%,
        black 58%,
        black 100%
    );
}

.sustainability-box:hover .sustainability-image img {
    transform: scale(1.025);
}

/* TABLET */

@media (max-width: 1050px) {

    .sustainability-box {
        grid-template-columns: 1fr 1fr;
    }

    .sustainability-content {
        padding: 45px 20px 45px 45px;
    }
}

/* MOBILE */

@media (max-width: 820px) {

    .sustainability-box {
        display: block;

        border-radius: 34px;
    }

    .sustainability-content {
        padding: 42px 28px 35px;
    }

    .sustainability-content h2 {
        font-size: 38px;
    }

    .sustainability-image {
        min-height: 300px;
        height: 300px;
    }

    .sustainability-image img {
        -webkit-mask-image: none;
        mask-image: none;
    }
}

/* SMALL MOBILE */

@media (max-width: 520px) {

    .sustainability-content {
        padding: 35px 22px 30px;
    }

    .sustainability-content h2 {
        font-size: 33px;
    }

    .sustainability-content p {
        font-size: 16px;
    }

    .sustainability-image {
        height: 250px;
        min-height: 250px;
    }
}
/* =========================
   PROJECTS
========================= */

.projects-section {
    padding-bottom: 45px;
}

.projects-box {
    padding: 38px 30px 32px;

    border: 1px solid #edf0f2;
    border-radius: 44px;

    background: #ffffff;

    box-shadow:
        0 12px 36px rgba(14, 36, 57, 0.035);
}

/* HEADING */

.projects-heading {
    margin-bottom: 28px;

    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 30px;
}

.projects-heading span {
    display: block;

    margin-bottom: 8px;

    color: #42ad15;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.projects-heading h2 {
    max-width: 700px;

    color: #07172b;

    font-size: 31px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.8px;
}

/* ALL PROJECTS BUTTON */

.projects-all-button {
    min-height: 50px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    flex-shrink: 0;

    border: 1px solid #cfe3c6;
    border-radius: 999px;

    background: #ffffff;

    color: #183027;

    font-size: 13px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

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

    color: #36aa0c;
    border-color: #45b80d;

    box-shadow:
        0 10px 22px rgba(54, 170, 12, 0.10);
}

.projects-all-button span {
    font-size: 20px;
}

/* GRID */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

/* PROJECT CARD */

.project-card {
    position: relative;

    display: block;

    min-width: 0;

    overflow: hidden;

    border: 1px solid #edf0f2;
    border-radius: 30px;

    background: #ffffff;

    box-shadow:
        0 10px 26px rgba(14, 36, 57, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.project-card:hover {
    transform: translateY(-6px);

    border-color: #d8e8d1;

    box-shadow:
        0 18px 38px rgba(14, 36, 57, 0.12);
}

/* IMAGE */

.project-image {
    width: 100%;
    height: 280px;

    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.045);
}

/* CONTENT */

.project-content {
    padding: 22px 22px 24px;
}

.project-location {
    display: inline-block;

    margin-bottom: 10px;

    color: #45b80d;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.7px;
}

.project-content h3 {
    margin-bottom: 9px;

    color: #07172b;

    font-size: 19px;
    line-height: 1.3;
    font-weight: 800;

    letter-spacing: -0.3px;
}

.project-content p {
    color: #747c84;

    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
}

/* TABLET */

@media (max-width: 1050px) {

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

    .project-image {
        height: 250px;
    }
}

/* MOBILE */

@media (max-width: 760px) {

    .projects-box {
        padding: 30px 20px 25px;

        border-radius: 34px;
    }

    .projects-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .projects-heading h2 {
        font-size: 27px;
    }

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

    .project-image {
        height: 240px;
    }
}

/* SMALL MOBILE */

@media (max-width: 520px) {

    .projects-all-button {
        width: 100%;
    }

    .project-image {
        height: 220px;
    }
}
/* =========================
   CTA
========================= */

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

.cta-box {
    min-height: 270px;

    padding: 48px 55px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;

    border-radius: 44px;

    background: #07172b;

    overflow: hidden;

    box-shadow:
        0 18px 42px rgba(7, 23, 43, 0.12);
}

.cta-content {
    max-width: 760px;
}

.cta-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #66d633;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.cta-content h2 {
    margin-bottom: 18px;

    color: #ffffff;

    font-size: clamp(34px, 3vw, 50px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.cta-content h2 span {
    display: block;

    color: #65d52f;
}

.cta-content p {
    max-width: 650px;

    color: rgba(255, 255, 255, 0.70);

    font-size: 16px;
    line-height: 1.7;
}

/* CTA BUTTONS */

.cta-actions {
    display: flex;
    flex-direction: column;

    gap: 12px;

    flex-shrink: 0;
}

.cta-primary,
.cta-secondary {
    min-width: 180px;
    min-height: 54px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.cta-primary {
    background: linear-gradient(
        135deg,
        #5ed315,
        #2eaa05
    );

    color: #ffffff;

    box-shadow:
        0 12px 28px rgba(69, 184, 13, 0.22);
}

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

.cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.22);

    background: rgba(255, 255, 255, 0.06);

    color: #ffffff;
}

.cta-secondary:hover {
    transform: translateY(-2px);

    background: rgba(255, 255, 255, 0.10);

    border-color: rgba(255, 255, 255, 0.38);
}

.cta-primary span,
.cta-secondary span {
    font-size: 21px;
}

/* =========================
   PREMIUM FOOTER
========================= */

.site-footer {
    padding-bottom: 35px;
}

.footer-box {
    position: relative;

    padding: 52px 52px 25px;

    overflow: hidden;

    border: 1px solid #e8edef;
    border-radius: 46px;

    background:
        linear-gradient(
            145deg,
            #fbfcfb 0%,
            #f6f8f6 100%
        );

    box-shadow:
        0 14px 38px rgba(7, 23, 43, 0.045);
}


/* TOP */

.footer-top {
    display: grid;
    grid-template-columns: 1.15fr 1.85fr;

    gap: 80px;

    padding-bottom: 42px;
}


/* BRAND */

.footer-brand {
    max-width: 390px;
}

.footer-logo {
    display: inline-block;

    width: 230px;

    margin-bottom: 24px;

    transition: transform 0.3s ease;
}

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

.footer-logo img {
    width: 100%;
    height: auto;
}

.footer-brand p {
    max-width: 360px;

    margin-bottom: 20px;

    color: #69727c;

    font-size: 14px;
    line-height: 1.8;
}

.footer-slogan {
    display: inline-block;

    color: #3cad12;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
}


/* NAVIGATION */

.footer-navigation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 45px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 13px;
}

.footer-column h3 {
    position: relative;

    margin-bottom: 10px;

    color: #07172b;

    font-size: 14px;
    font-weight: 800;
}

.footer-column h3::after {
    content: "";

    display: block;

    width: 22px;
    height: 2px;

    margin-top: 8px;

    border-radius: 999px;

    background: #45b80d;
}

.footer-column a {
    position: relative;

    color: #68717b;

    font-size: 13px;
    font-weight: 500;

    transition:
        color 0.22s ease,
        transform 0.22s ease;
}

.footer-column a:hover {
    color: #35aa0d;
    transform: translateX(4px);
}


/* CONTACT STRIP */

.footer-contact-strip {
    padding: 24px 26px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 26px;

    border-radius: 28px;

    background: #07172b;
}

.footer-contact-text {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.footer-contact-text span {
    color: #63d22f;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.7px;
}

.footer-contact-text strong {
    color: #ffffff;

    font-size: 18px;
    font-weight: 700;
}

.footer-contact-actions {
    display: flex;
    align-items: center;

    gap: 10px;
}

.footer-contact-button,
.footer-quote-button {
    min-height: 48px;

    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.footer-contact-button {
    border: 1px solid rgba(255, 255, 255, 0.18);

    background: rgba(255, 255, 255, 0.06);

    color: #ffffff;
}

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

    background: rgba(255, 255, 255, 0.11);
}

.footer-quote-button {
    background:
        linear-gradient(
            135deg,
            #5ed315,
            #2eaa05
        );

    color: #ffffff;

    box-shadow:
        0 9px 22px rgba(69, 184, 13, 0.22);
}

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

.footer-contact-button span,
.footer-quote-button span {
    font-size: 19px;
}

/* SOCIAL MEDIA */

.footer-social {
    margin-bottom: 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-social-label {
    color: #7d858d;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.footer-social-links {
    display: flex;
    align-items: center;

    gap: 9px;
}

.footer-social-links a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #dfe5e1;
    border-radius: 50%;

    background: #ffffff;

    color: #07172b;

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;

    box-shadow:
        0 6px 16px rgba(7, 23, 43, 0.04);

    transition:
        transform 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.footer-social-links a svg {
    width: 18px;
    height: 18px;

    fill: #07172b;

    transition:
        fill 0.25s ease,
        stroke 0.25s ease;
}

.footer-social-links a:hover svg {
    fill: #3cad12;
}

.footer-social-links a[aria-label*="Instagram"] svg {
    fill: none !important;
    stroke: #07172b !important;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-social-links a[aria-label*="Instagram"] svg rect,
.footer-social-links a[aria-label*="Instagram"] svg circle {
    fill: none !important;
    stroke: #07172b !important;
}

.footer-social-links a[aria-label*="Instagram"]:hover svg,
.footer-social-links a[aria-label*="Instagram"]:hover svg rect,
.footer-social-links a[aria-label*="Instagram"]:hover svg circle {
    fill: none !important;
    stroke: #3cad12 !important;
}

.footer-social-links a:hover {
    transform: translateY(-3px);

    color: #3cad12;

    border-color: #b8dcae;

    background: #ffffff;

    box-shadow:
        0 10px 22px rgba(54, 170, 12, 0.12);
}

/* BOTTOM */

.footer-bottom {
    padding-top: 23px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    border-top: 1px solid #e1e7e3;
}

.footer-bottom p,
.footer-bottom span {
    color: #8a9198;

    font-size: 12px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;

    gap: 22px;
}


/* =========================
   PREMIUM FOOTER TABLET
========================= */

@media (max-width: 1050px) {

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-navigation {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =========================
   PREMIUM FOOTER MOBILE
========================= */

@media (max-width: 760px) {

    .footer-box {
        padding: 38px 25px 24px;

        border-radius: 34px;
    }

    .footer-logo {
        width: 190px;
    }

    .footer-navigation {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .footer-contact-strip {
        align-items: flex-start;
        flex-direction: column;

        padding: 24px 20px;
    }

    .footer-contact-actions {
        width: 100%;
        flex-direction: column;
    }

    .footer-contact-button,
    .footer-quote-button {
        width: 100%;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

	.footer-social {
    align-items: flex-start;
    flex-direction: column;
}

.footer-social-links {
    flex-wrap: wrap;
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 520px) {

    .footer-bottom-links {
        flex-direction: column;
        align-items: flex-start;

        gap: 8px;
    }
}
}
/* =========================
   MOBILE MENU ICON ACTIVE
========================= */

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

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* =========================
   CORPORATE PAGE
========================= */

.corporate-hero {
    padding-bottom: 45px;
}

.corporate-hero-box {
    position: relative;

    min-height: 480px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border: 1px solid #edf0f2;
    border-radius: 60px;

    background: #ffffff;

    box-shadow:
        0 12px 40px rgba(10, 31, 52, 0.04);
}

.corporate-hero-content {
    position: relative;
    z-index: 2;

    width: 52%;

    padding: 65px 20px 65px 65px;
}

.corporate-label,
.corporate-section-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #45b80d;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.corporate-hero-content h1 {
    max-width: 650px;

    margin-bottom: 24px;

    color: #07172b;

    font-size: clamp(40px, 3.5vw, 60px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -2px;
}

.corporate-hero-content h1 span {
    display: block;

    color: #3cad12;
}

.corporate-hero-content p {
    max-width: 560px;

    color: #68717b;

    font-size: 18px;
    line-height: 1.75;
}

.corporate-hero-image {
    position: absolute;

    top: 0;
    right: 0;

    width: 58%;
    height: 100%;
}

.corporate-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.08) 12%,
        rgba(0, 0, 0, 0.35) 28%,
        rgba(0, 0, 0, 0.7) 45%,
        black 62%
    );

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.08) 12%,
        rgba(0, 0, 0, 0.35) 28%,
        rgba(0, 0, 0, 0.7) 45%,
        black 62%
    );
}

/* CORPORATE ABOUT */

.corporate-about {
    padding-bottom: 45px;
}

.corporate-about-box {
    padding: 28px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    gap: 55px;

    border: 1px solid #edf0f2;
    border-radius: 48px;
}

.corporate-about-image {
    height: 430px;

    overflow: hidden;

    border-radius: 36px;
}

.corporate-about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.corporate-about-image:hover img {
    transform: scale(1.025);
}

.corporate-about-content {
    padding-right: 35px;
}

.corporate-about-content h2 {
    max-width: 550px;

    margin-bottom: 24px;

    color: #07172b;

    font-size: clamp(36px, 3vw, 50px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.corporate-about-content h2 span {
    display: block;

    color: #3cad12;
}

.corporate-about-content p {
    max-width: 570px;

    margin-bottom: 16px;

    color: #69717a;

    font-size: 16px;
    line-height: 1.8;
}

/* VISION */

.vision-section {
    padding-bottom: 45px;
}

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

    gap: 18px;
}

.vision-card {
    min-height: 300px;

    padding: 42px;

    border: 1px solid #edf0f2;
    border-radius: 38px;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(14, 36, 57, 0.04);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 38px rgba(14, 36, 57, 0.09);
}

.vision-card > span {
    display: inline-block;

    margin-bottom: 18px;

    color: #45b80d;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.vision-card h2 {
    max-width: 480px;

    margin-bottom: 20px;

    color: #07172b;

    font-size: 31px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.vision-card p {
    max-width: 520px;

    color: #6f7780;

    font-size: 15px;
    line-height: 1.75;
}

/* VALUES */

.values-section {
    padding-bottom: 45px;
}

.values-box {
    padding: 40px 30px 32px;

    border: 1px solid #edf0f2;
    border-radius: 44px;
}

.values-heading {
    margin-bottom: 28px;
}

.values-heading > span {
    display: block;

    margin-bottom: 8px;

    color: #45b80d;

    font-size: 13px;
    font-weight: 800;
}

.values-heading h2 {
    color: #07172b;

    font-size: 31px;
    font-weight: 800;
    letter-spacing: -0.7px;
}

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

    gap: 16px;
}

.value-card {
    min-height: 240px;

    padding: 28px;

    border-radius: 30px;

    background: #f8faf8;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);

    background: #f3f8f1;
}

.value-card strong {
    display: block;

    margin-bottom: 30px;

    color: #45b80d;

    font-size: 13px;
    font-weight: 800;
}

.value-card h3 {
    margin-bottom: 12px;

    color: #07172b;

    font-size: 21px;
    font-weight: 800;
}

.value-card p {
    color: #707880;

    font-size: 14px;
    line-height: 1.7;
}

/* =========================
   CORPORATE RESPONSIVE
========================= */

@media (max-width: 1050px) {

    .corporate-hero-content {
        width: 58%;
        padding-left: 50px;
    }

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

    .corporate-about-content {
        padding: 15px 20px 20px;
    }

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

@media (max-width: 820px) {

    .corporate-hero-box {
        display: block;

        border-radius: 38px;
    }

    .corporate-hero-content {
        width: 100%;

        padding: 45px 28px 35px;
    }

    .corporate-hero-image {
        position: relative;

        width: 100%;
        height: 320px;
    }

    .corporate-hero-image img {
        -webkit-mask-image: none;
        mask-image: none;
    }

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

@media (max-width: 600px) {

    .corporate-hero-content h1 {
        font-size: 36px;
    }

    .corporate-about-box {
        padding: 18px;

        border-radius: 34px;
    }

    .corporate-about-image {
        height: 300px;

        border-radius: 26px;
    }

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

    .vision-card,
    .value-card {
        padding: 28px;
    }
}

/* =========================
   PRODUCTS PAGE
========================= */

.products-hero {
    padding-bottom: 45px;
}

.products-hero-box {
    position: relative;

    min-height: 470px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border: 1px solid #edf0f2;
    border-radius: 60px;

    background: #ffffff;

    box-shadow:
        0 12px 40px rgba(10, 31, 52, 0.04);
}

.products-hero-content {
    position: relative;
    z-index: 2;

    width: 52%;

    padding: 65px 20px 65px 65px;
}

.products-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #45b80d;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.products-hero-content h1 {
    max-width: 650px;

    margin-bottom: 24px;

    color: #07172b;

    font-size: clamp(40px, 3.5vw, 60px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -2px;
}

.products-hero-content h1 span {
    display: block;

    color: #3cad12;
}

.products-hero-content p {
    max-width: 560px;

    color: #68717b;

    font-size: 18px;
    line-height: 1.75;
}

.products-hero-image {
    position: absolute;

    top: 0;
    right: 0;

    width: 58%;
    height: 100%;
}

.products-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.08) 12%,
        rgba(0, 0, 0, 0.35) 28%,
        rgba(0, 0, 0, 0.7) 45%,
        black 62%
    );

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.08) 12%,
        rgba(0, 0, 0, 0.35) 28%,
        rgba(0, 0, 0, 0.7) 45%,
        black 62%
    );
}

/* =========================
   PRODUCT CATEGORIES
========================= */

.product-categories-section {
    padding-bottom: 45px;
}

.product-categories-box {
    padding: 40px 30px 32px;

    border: 1px solid #edf0f2;
    border-radius: 44px;

    background: #ffffff;
}

.products-heading {
    margin-bottom: 30px;
}

.products-heading span {
    display: block;

    margin-bottom: 8px;

    color: #45b80d;

    font-size: 13px;
    font-weight: 800;
}

.products-heading h2 {
    color: #07172b;

    font-size: 31px;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.product-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.product-category-card {
    overflow: hidden;

    border: 1px solid #edf0f2;
    border-radius: 30px;

    background: #ffffff;

    box-shadow:
        0 10px 26px rgba(14, 36, 57, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-category-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 38px rgba(14, 36, 57, 0.11);
}

.product-category-image {
    height: 235px;

    overflow: hidden;
}

.product-category-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.product-category-card:hover .product-category-image img {
    transform: scale(1.045);
}

.product-category-content {
    padding: 24px;
}

.product-category-content > span {
    display: block;

    margin-bottom: 20px;

    color: #45b80d;

    font-size: 12px;
    font-weight: 800;
}

.product-category-content h3 {
    margin-bottom: 12px;

    color: #07172b;

    font-size: 21px;
    font-weight: 800;
}

.product-category-content p {
    min-height: 72px;

    margin-bottom: 20px;

    color: #707880;

    font-size: 14px;
    line-height: 1.7;
}

.product-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 17px;

    border-top: 1px solid #edf0f2;

    color: #34404b;

    font-size: 13px;
    font-weight: 700;

    transition: color 0.2s ease;
}

.product-category-card:hover .product-category-link {
    color: #3cad12;
}

.product-category-link strong {
    font-size: 22px;
    font-weight: 400;
}

/* =========================
   PRODUCT ADVANTAGES
========================= */

.product-advantages-section {
    padding-bottom: 45px;
}

.product-advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.product-advantage-card {
    min-height: 180px;

    padding: 27px;

    border: 1px solid #edf0f2;
    border-radius: 30px;

    background: #f8faf8;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.product-advantage-card:hover {
    transform: translateY(-4px);

    background: #f3f8f1;
}

.product-advantage-card strong {
    display: block;

    margin-bottom: 28px;

    color: #45b80d;

    font-size: 12px;
    font-weight: 800;
}

.product-advantage-card h3 {
    margin-bottom: 9px;

    color: #07172b;

    font-size: 19px;
    font-weight: 800;
}

.product-advantage-card p {
    color: #707880;

    font-size: 13px;
    line-height: 1.6;
}

/* =========================
   PRODUCTS RESPONSIVE
========================= */

@media (max-width: 1050px) {

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

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

@media (max-width: 820px) {

    .products-hero-box {
        display: block;

        border-radius: 38px;
    }

    .products-hero-content {
        width: 100%;

        padding: 45px 28px 35px;
    }

    .products-hero-image {
        position: relative;

        width: 100%;
        height: 320px;
    }

    .products-hero-image img {
        -webkit-mask-image: none;
        mask-image: none;
    }
}

@media (max-width: 600px) {

    .products-hero-content h1 {
        font-size: 36px;
    }

    .product-categories-box {
        padding: 30px 20px 25px;

        border-radius: 34px;
    }

    .product-categories-grid,
    .product-advantages-grid {
        grid-template-columns: 1fr;
    }

    .product-category-image {
        height: 230px;
    }

    .product-category-content p {
        min-height: auto;
    }
}

/* =========================
   SOLUTIONS PAGE
========================= */

.solutions-page-hero {
    padding-bottom: 45px;
}

.solutions-page-hero-box {
    position: relative;

    min-height: 470px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border: 1px solid #edf0f2;
    border-radius: 60px;

    background: #ffffff;

    box-shadow:
        0 12px 40px rgba(10, 31, 52, 0.04);
}

.solutions-page-hero-content {
    position: relative;
    z-index: 2;

    width: 52%;

    padding: 65px 20px 65px 65px;
}

.solutions-page-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #45b80d;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.solutions-page-hero-content h1 {
    max-width: 650px;

    margin-bottom: 24px;

    color: #07172b;

    font-size: clamp(40px, 3.5vw, 60px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -2px;
}

.solutions-page-hero-content h1 span {
    display: block;

    color: #3cad12;
}

.solutions-page-hero-content p {
    max-width: 560px;

    color: #68717b;

    font-size: 18px;
    line-height: 1.75;
}

.solutions-page-hero-image {
    position: absolute;

    top: 0;
    right: 0;

    width: 58%;
    height: 100%;
}

.solutions-page-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.08) 12%,
        rgba(0, 0, 0, 0.35) 28%,
        rgba(0, 0, 0, 0.70) 45%,
        black 62%
    );

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.08) 12%,
        rgba(0, 0, 0, 0.35) 28%,
        rgba(0, 0, 0, 0.70) 45%,
        black 62%
    );
}

/* SOLUTION AREAS */

.solution-areas-section {
    padding-bottom: 45px;
}

.solution-areas-box {
    padding: 40px 30px 32px;

    border: 1px solid #edf0f2;
    border-radius: 44px;

    background: #ffffff;
}

.solution-areas-heading {
    margin-bottom: 30px;
}

.solution-areas-heading > span {
    display: block;

    margin-bottom: 8px;

    color: #45b80d;

    font-size: 13px;
    font-weight: 800;
}

.solution-areas-heading h2 {
    margin-bottom: 12px;

    color: #07172b;

    font-size: 31px;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.solution-areas-heading p {
    max-width: 620px;

    color: #707880;

    font-size: 15px;
    line-height: 1.7;
}

.solution-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.solution-area-card {
    overflow: hidden;

    border: 1px solid #edf0f2;
    border-radius: 30px;

    background: #ffffff;

    box-shadow:
        0 10px 26px rgba(14, 36, 57, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.solution-area-card:hover {
    transform: translateY(-6px);

    border-color: #d9e8d3;

    box-shadow:
        0 18px 38px rgba(14, 36, 57, 0.11);
}

.solution-area-image {
    height: 245px;

    overflow: hidden;
}

.solution-area-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.solution-area-card:hover .solution-area-image img {
    transform: scale(1.045);
}

.solution-area-content {
    padding: 24px;
}

.solution-area-top {
    margin-bottom: 19px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.solution-area-top span {
    color: #45b80d;

    font-size: 12px;
    font-weight: 800;
}

.solution-area-top strong {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #dce8d7;
    border-radius: 50%;

    color: #45b80d;

    font-size: 21px;
    font-weight: 400;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.solution-area-card:hover .solution-area-top strong {
    background: #45b80d;
    color: #ffffff;
}

.solution-area-content h3 {
    margin-bottom: 12px;

    color: #07172b;

    font-size: 21px;
    font-weight: 800;
}

.solution-area-content p {
    color: #707880;

    font-size: 14px;
    line-height: 1.7;
}

/* SOLUTION PROCESS */

.solution-process-section {
    padding-bottom: 45px;
}

.solution-process-box {
    padding: 45px 32px 32px;

    border-radius: 44px;

    background: #07172b;
}

.solution-process-heading {
    margin-bottom: 32px;
}

.solution-process-heading > span {
    display: block;

    margin-bottom: 10px;

    color: #65d52f;

    font-size: 13px;
    font-weight: 800;
}

.solution-process-heading h2 {
    color: #ffffff;

    font-size: 36px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}

.solution-process-heading h2 span {
    color: #65d52f;
}

.solution-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.solution-process-card {
    min-height: 225px;

    padding: 26px;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 28px;

    background: rgba(255, 255, 255, 0.05);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.solution-process-card:hover {
    transform: translateY(-4px);

    background: rgba(255, 255, 255, 0.08);
}

.solution-process-card strong {
    display: block;

    margin-bottom: 34px;

    color: #65d52f;

    font-size: 12px;
    font-weight: 800;
}

.solution-process-card h3 {
    margin-bottom: 10px;

    color: #ffffff;

    font-size: 20px;
    font-weight: 800;
}

.solution-process-card p {
    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;
    line-height: 1.7;
}

/* SOLUTIONS RESPONSIVE */

@media (max-width: 1050px) {

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

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

@media (max-width: 820px) {

    .solutions-page-hero-box {
        display: block;

        border-radius: 38px;
    }

    .solutions-page-hero-content {
        width: 100%;

        padding: 45px 28px 35px;
    }

    .solutions-page-hero-image {
        position: relative;

        width: 100%;
        height: 320px;
    }

    .solutions-page-hero-image img {
        -webkit-mask-image: none;
        mask-image: none;
    }
}

@media (max-width: 600px) {

    .solutions-page-hero-content h1 {
        font-size: 36px;
    }

    .solution-areas-box,
    .solution-process-box {
        padding: 30px 20px 25px;

        border-radius: 34px;
    }

    .solution-areas-grid,
    .solution-process-grid {
        grid-template-columns: 1fr;
    }

    .solution-area-image {
        height: 230px;
    }
}

/* =========================
   PROJECTS PAGE
========================= */

.projects-page-hero {
    padding-bottom: 45px;
}

.projects-page-hero-box {
    position: relative;

    min-height: 470px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border: 1px solid #edf0f2;
    border-radius: 60px;

    background: #ffffff;

    box-shadow:
        0 12px 40px rgba(10, 31, 52, 0.04);
}

.projects-page-hero-content {
    position: relative;
    z-index: 2;

    width: 52%;

    padding: 65px 20px 65px 65px;
}

.projects-page-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #45b80d;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.projects-page-hero-content h1 {
    max-width: 650px;

    margin-bottom: 24px;

    color: #07172b;

    font-size: clamp(40px, 3.5vw, 60px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -2px;
}

.projects-page-hero-content h1 span {
    display: block;

    color: #3cad12;
}

.projects-page-hero-content p {
    max-width: 560px;

    color: #68717b;

    font-size: 18px;
    line-height: 1.75;
}

.projects-page-hero-image {
    position: absolute;

    top: 0;
    right: 0;

    width: 58%;
    height: 100%;
}

.projects-page-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0,0,0,0.08) 12%,
        rgba(0,0,0,0.35) 28%,
        rgba(0,0,0,0.70) 45%,
        black 62%
    );

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0,0,0,0.08) 12%,
        rgba(0,0,0,0.35) 28%,
        rgba(0,0,0,0.70) 45%,
        black 62%
    );
}

/* =========================
   PROJECT PORTFOLIO
========================= */

.project-portfolio-section {
    padding-bottom: 45px;
}

.project-portfolio-box {
    padding: 40px 30px 32px;

    border: 1px solid #edf0f2;
    border-radius: 44px;

    background: #ffffff;
}

.project-portfolio-heading {
    margin-bottom: 30px;
}

.project-portfolio-heading > span {
    display: block;

    margin-bottom: 8px;

    color: #45b80d;

    font-size: 13px;
    font-weight: 800;
}

.project-portfolio-heading h2 {
    margin-bottom: 10px;

    color: #07172b;

    font-size: 31px;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.project-portfolio-heading p {
    color: #707880;

    font-size: 15px;
    line-height: 1.7;
}

.project-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.portfolio-card {
    overflow: hidden;

    border: 1px solid #edf0f2;
    border-radius: 30px;

    background: #ffffff;

    box-shadow:
        0 10px 26px rgba(14, 36, 57, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-6px);

    border-color: #d8e8d1;

    box-shadow:
        0 18px 38px rgba(14, 36, 57, 0.11);
}

.portfolio-image {
    height: 245px;

    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.045);
}

.portfolio-content {
    padding: 24px;
}

.portfolio-meta {
    margin-bottom: 17px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.portfolio-meta span {
    color: #45b80d;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.portfolio-meta strong {
    color: #90979d;

    font-size: 11px;
    font-weight: 600;
}

.portfolio-content h3 {
    margin-bottom: 11px;

    color: #07172b;

    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
}

.portfolio-content p {
    min-height: 68px;

    margin-bottom: 20px;

    color: #707880;

    font-size: 14px;
    line-height: 1.7;
}

.portfolio-link {
    padding-top: 17px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid #edf0f2;

    color: #34404b;

    font-size: 13px;
    font-weight: 700;

    transition: color 0.25s ease;
}

.portfolio-link span {
    font-size: 22px;
}

.portfolio-card:hover .portfolio-link {
    color: #3cad12;
}

/* =========================
   PROJECT APPROACH
========================= */

.project-approach-section {
    padding-bottom: 45px;
}

.project-approach-box {
    padding: 48px 50px;

    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;

    gap: 55px;

    border-radius: 44px;

    background: #07172b;
}

.project-approach-content > span {
    display: block;

    margin-bottom: 12px;

    color: #65d52f;

    font-size: 13px;
    font-weight: 800;
}

.project-approach-content h2 {
    margin-bottom: 20px;

    color: #ffffff;

    font-size: 38px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}

.project-approach-content h2 strong {
    color: #65d52f;
}

.project-approach-content p {
    max-width: 600px;

    color: rgba(255,255,255,0.68);

    font-size: 15px;
    line-height: 1.75;
}

.project-approach-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 12px;
}

.project-approach-stats div {
    min-height: 130px;

    padding: 22px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 26px;

    background: rgba(255,255,255,0.05);
}

.project-approach-stats strong {
    margin-bottom: 7px;

    color: #65d52f;

    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}

.project-approach-stats span {
    color: rgba(255,255,255,0.65);

    font-size: 12px;
}

/* =========================
   PROJECTS RESPONSIVE
========================= */

@media (max-width: 1050px) {

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

    .project-approach-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {

    .projects-page-hero-box {
        display: block;

        border-radius: 38px;
    }

    .projects-page-hero-content {
        width: 100%;

        padding: 45px 28px 35px;
    }

    .projects-page-hero-image {
        position: relative;

        width: 100%;
        height: 320px;
    }

    .projects-page-hero-image img {
        -webkit-mask-image: none;
        mask-image: none;
    }
}

@media (max-width: 600px) {

    .projects-page-hero-content h1 {
        font-size: 36px;
    }

    .project-portfolio-box {
        padding: 30px 20px 25px;

        border-radius: 34px;
    }

    .project-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-image {
        height: 230px;
    }

    .portfolio-content p {
        min-height: auto;
    }

    .project-approach-box {
        padding: 35px 22px;

        border-radius: 34px;
    }

    .project-approach-stats {
        grid-template-columns: 1fr;
    }
}

/* =========================
   CONTACT PAGE
========================= */

.contact-hero {
    padding-bottom: 45px;
}

.contact-hero-box {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border: 1px solid #edf0f2;
    border-radius: 60px;

    background: #ffffff;

    box-shadow:
        0 12px 40px rgba(10, 31, 52, 0.04);
}

.contact-hero-content {
    position: relative;
    z-index: 2;

    width: 52%;

    padding: 65px 20px 65px 65px;
}

.contact-label,
.contact-section-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #45b80d;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.contact-hero-content h1 {
    max-width: 620px;

    margin-bottom: 24px;

    color: #07172b;

    font-size: clamp(40px, 3.5vw, 60px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -2px;
}

.contact-hero-content h1 span {
    display: block;

    color: #3cad12;
}

.contact-hero-content p {
    max-width: 550px;

    color: #68717b;

    font-size: 18px;
    line-height: 1.75;
}

.contact-hero-image {
    position: absolute;

    top: 0;
    right: 0;

    width: 58%;
    height: 100%;
}

.contact-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0,0,0,0.08) 12%,
        rgba(0,0,0,0.35) 28%,
        rgba(0,0,0,0.70) 45%,
        black 62%
    );

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0,0,0,0.08) 12%,
        rgba(0,0,0,0.35) 28%,
        rgba(0,0,0,0.70) 45%,
        black 62%
    );
}

/* =========================
   CONTACT CONTENT
========================= */

.contact-section {
    padding-bottom: 45px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 18px;
}

.contact-info-box,
.contact-form-box {
    padding: 42px;

    border: 1px solid #edf0f2;
    border-radius: 40px;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(14, 36, 57, 0.04);
}

/* LEFT */

.contact-info-box h2 {
    max-width: 470px;

    margin-bottom: 18px;

    color: #07172b;

    font-size: 36px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1px;
}

.contact-info-box h2 span {
    display: block;

    color: #3cad12;
}

.contact-intro {
    max-width: 500px;

    margin-bottom: 32px;

    color: #707880;

    font-size: 15px;
    line-height: 1.75;
}

/* CONTACT INFO */

.contact-info-list {
    display: flex;
    flex-direction: column;

    gap: 14px;

    margin-bottom: 28px;
}

.contact-info-item {
    min-height: 85px;

    padding: 16px;

    display: flex;
    align-items: center;

    gap: 16px;

    border: 1px solid #edf0f2;
    border-radius: 24px;

    background: #fafbfa;
}

.contact-info-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: #45b80d;

    font-size: 18px;
    font-weight: 800;

    box-shadow:
        0 6px 16px rgba(14, 36, 57, 0.06);
}

.contact-info-item div:last-child {
    display: flex;
    flex-direction: column;

    gap: 4px;
}

.contact-info-item span {
    color: #90979d;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.7px;
}

.contact-info-item a,
.contact-info-item p {
    color: #07172b;

    font-size: 14px;
    font-weight: 700;
}

.contact-info-item a {
    transition: color 0.2s ease;
}

.contact-info-item a:hover {
    color: #3cad12;
}

/* NOTE */

.contact-note {
    padding: 22px;

    border-radius: 24px;

    background: #07172b;
}

.contact-note strong {
    display: block;

    margin-bottom: 7px;

    color: #65d52f;

    font-size: 14px;
}

.contact-note p {
    color: rgba(255,255,255,0.68);

    font-size: 13px;
    line-height: 1.65;
}

/* =========================
   FORM
========================= */

.contact-form-heading {
    margin-bottom: 28px;
}

.contact-form-heading span {
    display: block;

    margin-bottom: 8px;

    color: #45b80d;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.contact-form-heading h2 {
    color: #07172b;

    font-size: 31px;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.contact-form {
    display: flex;
    flex-direction: column;

    gap: 18px;
}

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

    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.form-group label {
    color: #34404b;

    font-size: 12px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 15px 16px;

    border: 1px solid #e1e6e8;
    border-radius: 16px;

    outline: none;

    background: #fafbfa;

    color: #07172b;

    font-family: inherit;
    font-size: 14px;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group input,
.form-group select {
    min-height: 52px;
}

.form-group textarea {
    resize: vertical;

    min-height: 150px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #45b80d;

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(69, 184, 13, 0.08);
}

/* SUBMIT */

.contact-submit {
    align-self: flex-start;

    min-height: 56px;

    padding: 0 28px;

    border: none;
    border-radius: 999px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    background: linear-gradient(
        135deg,
        #5ed315,
        #2eaa05
    );

    color: #ffffff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 12px 26px rgba(67, 186, 12, 0.22);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-submit:hover {
    transform: translateY(-2px);

    box-shadow:
        0 16px 34px rgba(67, 186, 12, 0.30);
}

.contact-submit span {
    font-size: 21px;
}

.form-status {
    min-height: 20px;

    color: #3cad12;

    font-size: 13px;
    font-weight: 700;
}

/* =========================
   CONTACT RESPONSIVE
========================= */

@media (max-width: 1050px) {

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

@media (max-width: 820px) {

    .contact-hero-box {
        display: block;

        border-radius: 38px;
    }

    .contact-hero-content {
        width: 100%;

        padding: 45px 28px 35px;
    }

    .contact-hero-image {
        position: relative;

        width: 100%;
        height: 320px;
    }

    .contact-hero-image img {
        -webkit-mask-image: none;
        mask-image: none;
    }
}

@media (max-width: 600px) {

    .contact-hero-content h1 {
        font-size: 36px;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 28px 20px;

        border-radius: 34px;
    }

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

    .contact-submit {
        width: 100%;
    }
}

/* =========================
   QUOTE PAGE
========================= */

.quote-hero {
    padding-bottom: 45px;
}

.quote-hero-box {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border: 1px solid #edf0f2;
    border-radius: 60px;

    background: #ffffff;

    box-shadow:
        0 12px 40px rgba(10, 31, 52, 0.04);
}

.quote-hero-content {
    position: relative;
    z-index: 2;

    width: 53%;

    padding: 65px 20px 65px 65px;
}

.quote-label,
.quote-section-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #45b80d;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.quote-hero-content h1 {
    max-width: 680px;

    margin-bottom: 24px;

    color: #07172b;

    font-size: clamp(40px, 3.5vw, 60px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -2px;
}

.quote-hero-content h1 span {
    display: block;

    color: #3cad12;
}

.quote-hero-content p {
    max-width: 570px;

    color: #68717b;

    font-size: 18px;
    line-height: 1.75;
}

.quote-hero-image {
    position: absolute;

    top: 0;
    right: 0;

    width: 58%;
    height: 100%;
}

.quote-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0,0,0,0.08) 12%,
        rgba(0,0,0,0.35) 28%,
        rgba(0,0,0,0.70) 45%,
        black 62%
    );

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0,0,0,0.08) 12%,
        rgba(0,0,0,0.35) 28%,
        rgba(0,0,0,0.70) 45%,
        black 62%
    );
}

/* =========================
   QUOTE CONTENT
========================= */

.quote-section {
    padding-bottom: 45px;
}

.quote-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;

    gap: 18px;
}

.quote-info-box,
.quote-form-box {
    padding: 42px;

    border: 1px solid #edf0f2;
    border-radius: 40px;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(14, 36, 57, 0.04);
}

.quote-info-box h2 {
    max-width: 450px;

    margin-bottom: 18px;

    color: #07172b;

    font-size: 36px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1px;
}

.quote-info-box h2 span {
    display: block;

    color: #3cad12;
}

.quote-info-box > p {
    margin-bottom: 30px;

    color: #707880;

    font-size: 15px;
    line-height: 1.75;
}

/* STEPS */

.quote-steps {
    display: flex;
    flex-direction: column;

    gap: 14px;
}

.quote-step {
    min-height: 115px;

    padding: 20px;

    display: flex;

    gap: 17px;

    border: 1px solid #edf0f2;
    border-radius: 26px;

    background: #fafbfa;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.quote-step:hover {
    transform: translateX(3px);

    border-color: #d8e8d1;
}

.quote-step > strong {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: #45b80d;

    font-size: 12px;
    font-weight: 800;

    box-shadow:
        0 6px 16px rgba(14, 36, 57, 0.05);
}

.quote-step h3 {
    margin-bottom: 6px;

    color: #07172b;

    font-size: 16px;
    font-weight: 800;
}

.quote-step p {
    color: #707880;

    font-size: 13px;
    line-height: 1.6;
}

/* =========================
   QUOTE FORM
========================= */

.quote-form-heading {
    margin-bottom: 28px;
}

.quote-form-heading span {
    display: block;

    margin-bottom: 8px;

    color: #45b80d;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.quote-form-heading h2 {
    color: #07172b;

    font-size: 31px;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.quote-form {
    display: flex;
    flex-direction: column;

    gap: 18px;
}

.form-help {
    color: #90979d;

    font-size: 11px;
    line-height: 1.5;
}

/* CONSENT */

.quote-consent {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    padding: 14px 0;
}

.quote-consent input {
    margin-top: 3px;

    accent-color: #45b80d;
}

.quote-consent label {
    color: #737b83;

    font-size: 12px;
    line-height: 1.6;
}

/* SUBMIT */

.quote-submit {
    align-self: flex-start;

    min-height: 58px;

    padding: 0 30px;

    border: none;
    border-radius: 999px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    background: linear-gradient(
        135deg,
        #5ed315,
        #2eaa05
    );

    color: #ffffff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 12px 26px rgba(67, 186, 12, 0.22);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.quote-submit:hover {
    transform: translateY(-2px);

    box-shadow:
        0 16px 34px rgba(67, 186, 12, 0.30);
}

.quote-submit span {
    font-size: 21px;
}

/* =========================
   QUOTE SUPPORT
========================= */

.quote-support-section {
    padding-bottom: 45px;
}

.quote-support-box {
    padding: 38px 45px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    border-radius: 40px;

    background: #07172b;
}

.quote-support-box > div:first-child span {
    display: block;

    margin-bottom: 8px;

    color: #65d52f;

    font-size: 12px;
    font-weight: 800;
}

.quote-support-box h2 {
    max-width: 620px;

    color: #ffffff;

    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}

.quote-support-actions {
    display: flex;

    gap: 10px;
}

.quote-support-actions a {
    min-height: 52px;

    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 999px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    background: rgba(255,255,255,0.05);

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.quote-support-actions a:hover {
    transform: translateY(-2px);

    background: rgba(255,255,255,0.10);
}

.quote-support-actions span {
    font-size: 20px;
}

/* =========================
   QUOTE RESPONSIVE
========================= */

@media (max-width: 1050px) {

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

    .quote-support-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 820px) {

    .quote-hero-box {
        display: block;

        border-radius: 38px;
    }

    .quote-hero-content {
        width: 100%;

        padding: 45px 28px 35px;
    }

    .quote-hero-image {
        position: relative;

        width: 100%;
        height: 320px;
    }

    .quote-hero-image img {
        -webkit-mask-image: none;
        mask-image: none;
    }
}

@media (max-width: 600px) {

    .quote-hero-content h1 {
        font-size: 36px;
    }

    .quote-info-box,
    .quote-form-box {
        padding: 28px 20px;

        border-radius: 34px;
    }

    .quote-submit {
        width: 100%;
    }

    .quote-support-box {
        padding: 30px 22px;

        border-radius: 34px;
    }

    .quote-support-actions {
        width: 100%;

        flex-direction: column;
    }

    .quote-support-actions a {
        width: 100%;
    }
}

/* =========================
   PREMIUM STICKY HEADER
========================= */

.site-header.scrolled {
    padding: 10px 0;

    background: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 10px 30px rgba(7, 23, 43, 0.07);
}

.site-header.scrolled .logo {
    transform: scale(0.92);
    transform-origin: left center;
}

.site-header.scrolled .main-nav {
    transform: scale(0.97);
}

.site-header.scrolled .offer-button {
    transform: scale(0.95);
}

.logo,
.main-nav,
.offer-button {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* =========================
   PREMIUM MICRO INTERACTIONS
========================= */

/* Buton okları */
.primary-button span,
.secondary-button span,
.offer-button span,
.about-button span,
.sustainability-button span,
.projects-all-button span,
.cta-primary span,
.cta-secondary span,
.footer-contact-button span,
.footer-quote-button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    line-height: 1;

    transform: translateY(-1px);

    transition: transform 0.25s ease;
}

.primary-button:hover span,
.secondary-button:hover span,
.offer-button:hover span,
.about-button:hover span,
.sustainability-button:hover span,
.projects-all-button:hover span,
.cta-primary:hover span,
.cta-secondary:hover span,
.footer-contact-button:hover span,
.footer-quote-button:hover span {
    transform: translate(4px, -1px);
}

/* Kart geçişlerini biraz daha premium yap */

.stat-card,
.solution-card,
.project-card,
.vision-card,
.value-card,
.product-category-card,
.solution-area-card,
.portfolio-card {
    will-change: transform;

    transition-timing-function:
        cubic-bezier(0.22, 1, 0.36, 1);
}


/* Görsellerin zoom hareketini daha yumuşak yap */

.solution-image img,
.project-image img,
.about-image img,
.sustainability-image img,
.product-category-image img,
.solution-area-image img,
.portfolio-image img {
    transition-timing-function:
        cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================
   SAFE SCROLL REVEAL
========================= */

/*
   DİKKAT:
   Elemanlar normalde görünür.
   Sadece JavaScript çalışıyorsa animasyon hazırlanır.
*/

html.js .reveal-item {
    opacity: 0;

    transform: translateY(22px);

    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .reveal-item.reveal-visible {
    opacity: 1;

    transform: translateY(0);
}


/* Hafif gecikmeler */

html.js .reveal-delay-1 {
    transition-delay: 0.06s;
}

html.js .reveal-delay-2 {
    transition-delay: 0.12s;
}

html.js .reveal-delay-3 {
    transition-delay: 0.18s;
}


/* Hareket azaltma tercihi olan kullanıcılar */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    html.js .reveal-item {
        opacity: 1;
        transform: none;
        transition: none;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 820px) {

    html.js .reveal-item {
        transform: translateY(12px);

        transition:
            opacity 0.5s ease,
            transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    html.js .reveal-item.reveal-visible {
        transform: translateY(0);
    }
}

.projects-all-button::after {
    content: "";

    width: 7px;
    height: 7px;

    border-top: 1.8px solid currentColor;
    border-right: 1.8px solid currentColor;

    transform: rotate(45deg);

    margin-left: 2px;

    transition: margin-left 0.25s ease;
}

.projects-all-button:hover::after {
    margin-left: 6px;
}

/* =========================
   WHY VATERA PREMIUM V2
========================= */

.why-vatera-premium {
    padding-bottom: 45px;
}

.why-premium-stage {
    position: relative;

    min-height: 620px;

    padding: 70px;

    display: grid;
    grid-template-columns: 0.75fr 1.25fr;

    gap: 60px;

    align-items: center;

    overflow: hidden;

    border-radius: 50px;

    background:
        radial-gradient(
            circle at 78% 42%,
            rgba(63, 188, 17, 0.10),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #0b2139 0%,
            #07192d 48%,
            #04111f 100%
        );

    box-shadow:
        0 24px 55px rgba(7, 23, 43, 0.15);
}


/* =========================
   BACKGROUND DETAILS
========================= */

.why-premium-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    right: -150px;
    bottom: -210px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(74, 201, 20, 0.16) 0%,
            rgba(74, 201, 20, 0.04) 40%,
            transparent 70%
        );

    pointer-events: none;
}


.why-premium-grid-bg {
    position: absolute;
    inset: 0;

    opacity: 0.035;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.8) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.8) 1px,
            transparent 1px
        );

    background-size: 42px 42px;

    pointer-events: none;
}


/* =========================
   LEFT CONTENT
========================= */

.why-premium-content {
    position: relative;
    z-index: 2;

    max-width: 480px;
}

.why-premium-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #65d52f;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}

.why-premium-content h2 {
    margin-bottom: 24px;

    color: #ffffff;

    font-size: clamp(44px, 4vw, 64px);
    line-height: 1.02;

    font-weight: 800;

    letter-spacing: -2px;
}

.why-premium-content h2 span {
    display: block;

    color: #63d52f;
}

.why-premium-content p {
    max-width: 430px;

    color: rgba(255,255,255,0.64);

    font-size: 15px;
    line-height: 1.85;
}

.why-premium-line {
    width: 70px;
    height: 1px;

    margin: 30px 0 18px;

    background:
        linear-gradient(
            to right,
            #63d52f,
            rgba(99,213,47,0)
        );
}

.why-premium-signature {
    color: rgba(255,255,255,0.88);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.4px;
}


/* =========================
   MODULE AREA
========================= */

.why-premium-modules {
    position: relative;
    z-index: 2;

    min-height: 480px;
}


/* BASE MODULE */

.why-module {
    position: absolute;

    width: 235px;
    min-height: 175px;

    padding: 22px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border: 1px solid rgba(255,255,255,0.11);

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.10),
            rgba(255,255,255,0.045)
        );

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 18px 35px rgba(0,0,0,0.13);

    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.why-module:hover {
    transform: translateY(-7px);

    border-color: rgba(99,213,47,0.34);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.135),
            rgba(255,255,255,0.06)
        );

    box-shadow:
        0 24px 45px rgba(0,0,0,0.20);
}


/* MODULE POSITIONS */

.why-module-1 {
    top: 5px;
    left: 15px;

    transform: rotate(-1.5deg);
}

.why-module-1:hover {
    transform:
        translateY(-7px)
        rotate(-1.5deg);
}


.why-module-2 {
    top: 45px;
    right: 5px;

    transform: rotate(1.2deg);
}

.why-module-2:hover {
    transform:
        translateY(-7px)
        rotate(1.2deg);
}


.why-module-3 {
    bottom: 20px;
    left: 50px;

    transform: rotate(1deg);
}

.why-module-3:hover {
    transform:
        translateY(-7px)
        rotate(1deg);
}


.why-module-4 {
    right: 15px;
    bottom: 0;

    transform: rotate(-1.3deg);

    border-color: rgba(99,213,47,0.22);

    background:
        linear-gradient(
            145deg,
            rgba(76,191,25,0.16),
            rgba(255,255,255,0.045)
        );
}

.why-module-4:hover {
    transform:
        translateY(-7px)
        rotate(-1.3deg);
}


/* =========================
   MODULE CONTENT
========================= */

.why-module-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.why-module-number {
    color: rgba(255,255,255,0.42);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.6px;
}

.why-module-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #62d42e;

    box-shadow:
        0 0 0 5px rgba(98,212,46,0.08);
}

.why-module h3 {
    margin-bottom: 8px;

    color: #07172b;

    font-size: 17px;
    font-weight: 750;

    letter-spacing: -0.2px;
}

.why-module p {
    color: rgba(255,255,255,0.55);

    font-size: 12px;
    line-height: 1.65;
}

/* =========================
   VATERA CENTER — FINAL FIX
========================= */

.why-vatera-v2 .why-premium-center {
    position: absolute !important;

    top: 50% !important;
    left: 50% !important;

    width: auto !important;
    height: auto !important;

    transform: translate(-50%, -50%) !important;
    transform-origin: center center !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 0 !important;

    z-index: 10 !important;

    pointer-events: none !important;
}


/* DIŞ HALKA */

.why-vatera-v2 .why-center-ring {
    position: relative !important;

    width: 124px !important;
    height: 124px !important;

    flex: 0 0 124px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    transform: none !important;

    border-radius: 50% !important;

    border:
        1px solid rgba(99, 213, 47, 0.24) !important;

    box-shadow:
        0 0 42px rgba(71, 190, 19, 0.10) !important;
}

/* =========================
   YEŞİL VATERA ÇEKİRDEĞİ
========================= */

.why-vatera-v2 .why-center-core {
    width: 82px !important;
    height: 82px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;

    background:
        linear-gradient(
            145deg,
            #66d832,
            #35aa0d
        ) !important;

    box-shadow:
        0 12px 34px rgba(60, 180, 15, 0.30) !important;
}


/* VATERA V SEMBOLÜ */

.why-vatera-v2 .why-center-core img {
    width: 44px !important;
    height: 44px !important;

    display: block !important;

    object-fit: contain !important;

    /* Logonun V sembolünü beyaz yapar */
    filter: brightness(0) invert(1) !important;

    pointer-events: none !important;
}

/* VATERA SYSTEM */

.why-vatera-v2 .why-premium-center small {
    position: absolute !important;

    top: 143px !important;
    left: 50% !important;

    transform: translateX(-50%) !important;

    width: max-content !important;

    color: rgba(255,255,255,0.40) !important;

    font-size: 8px !important;
    font-weight: 800 !important;

    letter-spacing: 1.5px !important;

    white-space: nowrap !important;
}


/* ESKİ AKTİF MODÜL YAZISINI TAMAMEN KAPAT */

/* =========================
   TABLET
========================= */

@media (max-width: 1150px) {

    .why-premium-stage {
        grid-template-columns: 1fr;

        padding: 60px;

        gap: 50px;
    }

    .why-premium-content {
        max-width: 650px;
    }

    .why-premium-modules {
        width: 100%;
        max-width: 650px;

        margin: 0 auto;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .why-premium-stage {
        min-height: auto;

        padding: 42px 24px;

        border-radius: 36px;
    }

    .why-premium-content h2 {
        font-size: 42px;
    }

    .why-premium-modules {
        min-height: auto;

        display: grid;
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .why-module {
        position: relative;

        top: auto;
        right: auto;
        bottom: auto;
        left: auto;

        width: 100%;
        min-height: 165px;

        transform: none;
    }

    .why-module-1,
    .why-module-2,
    .why-module-3,
    .why-module-4,
    .why-module-1:hover,
    .why-module-2:hover,
    .why-module-3:hover,
    .why-module-4:hover {
        transform: none;
    }

    .why-premium-center {
        display: none;
    }
}
/* =========================
   PJAX CONTENT TRANSITION
========================= */

main {
    opacity: 1;
    transform: translateY(0);

    transition:
        opacity 0.14s ease,
        transform 0.14s ease;
}

main.page-exit {
    opacity: 0;
    transform: translateY(4px);
}

main.page-enter {
    opacity: 0;
    transform: translateY(4px);
}

@media (prefers-reduced-motion: reduce) {

    main,
    main.page-exit,
    main.page-enter {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =====================================================
   VATERA GLOBAL SEARCH
===================================================== */

.header-search-button {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 42px;

    padding: 0;
    margin: 0 8px 0 12px;

    border: 0;
    border-radius: 50%;

    background: transparent;
    color: #0d2740;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.header-search-button svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-search-button:hover {
    background: rgba(13, 39, 64, 0.07);
    color: #17785b;
}

.header-search-button:active {
    transform: scale(0.94);
}


/* =====================================================
   SEARCH ROOT
===================================================== */

.site-search {
    position: fixed;
    inset: 0;

    z-index: 9999;

    pointer-events: none;
    visibility: hidden;
}

.site-search.is-open {
    pointer-events: auto;
    visibility: visible;
}


/* =====================================================
   BACKDROP
===================================================== */

.site-search-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(5, 20, 32, 0);

    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);

    transition:
        background-color 0.28s ease,
        backdrop-filter 0.28s ease;
}

.site-search.is-open .site-search-backdrop {
    background: rgba(5, 20, 32, 0.28);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}


/* =====================================================
   PANEL
===================================================== */

.site-search-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.99) 0%,
            rgba(248, 249, 247, 0.99) 100%
        );

    box-shadow:
        0 28px 80px rgba(4, 25, 40, 0.18);

    transform: translateY(-14px);
    opacity: 0;

    transition:
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.22s ease;
}

.site-search.is-open .site-search-panel {
    transform: translateY(0);
    opacity: 1;
}

.site-search-inner {
    width: min(1120px, calc(100% - 64px));

    margin: 0 auto;

    padding:
        105px
        0
        30px;
}


/* =====================================================
   SEARCH TOP
===================================================== */

.site-search-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 28px;
}

.site-search-brand {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.site-search-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.17em;

    color: #23815f;
}

.site-search-brand h2 {
    margin: 0;

    color: #0c2941;

    font-size: clamp(27px, 3vw, 42px);
    line-height: 1.05;
    letter-spacing: -0.035em;

    font-weight: 600;
}

.site-search-close {
    display: flex;
    align-items: center;
    gap: 10px;

    border: 0;
    background: transparent;

    color: rgba(12, 41, 65, 0.55);

    cursor: pointer;

    font-size: 10px;
    letter-spacing: 0.12em;
}

.site-search-close svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
}


/* =====================================================
   INPUT
===================================================== */

.site-search-field {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 72px;

    padding: 0 21px;

    border: 1px solid rgba(14, 43, 65, 0.11);
    border-radius: 15px;

    background: #fff;

    box-shadow:
        0 12px 38px rgba(20, 46, 63, 0.055);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.site-search-field:focus-within {
    border-color: rgba(32, 126, 93, 0.42);

    box-shadow:
        0 15px 45px rgba(20, 46, 63, 0.075),
        0 0 0 3px rgba(32, 126, 93, 0.055);
}

.site-search-icon {
    width: 24px;
    height: 24px;

    margin-right: 15px;

    fill: none;
    stroke: #1c7759;
    stroke-width: 1.6;
    stroke-linecap: round;
}

.site-search-field input {
    width: 100%;

    padding: 0;

    border: 0;
    outline: 0;

    background: transparent;

    color: #102c42;

    font-family: inherit;
    font-size: clamp(18px, 2vw, 23px);
    font-weight: 400;
}

.site-search-field input::placeholder {
    color: rgba(16, 44, 66, 0.38);
}

.site-search-shortcut {
    display: flex;
    gap: 4px;

    margin-left: 20px;
}

.site-search-shortcut span,
.search-key {
    min-width: 26px;
    height: 26px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 7px;

    border: 1px solid rgba(15, 45, 68, 0.1);
    border-radius: 6px;

    background: #f3f5f4;

    color: rgba(13, 43, 65, 0.55);

    font-size: 10px;
    font-weight: 600;
}


/* =====================================================
   CONTENT
===================================================== */

.site-search-content {
    padding-top: 26px;

    min-height: 225px;
}

.site-search-section-label {
    margin-bottom: 13px;

    color: rgba(12, 41, 65, 0.46);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}


/* =====================================================
   CHIPS
===================================================== */

.site-search-chips {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 27px;
}

.site-search-chips button {
    padding: 8px 13px;

    border:
        1px solid
        rgba(13, 43, 65, 0.09);

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.65);

    color: #17394f;

    font-family: inherit;
    font-size: 12px;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.site-search-chips button:hover {
    background: #153e59;
    border-color: #153e59;
    color: #fff;

    transform: translateY(-1px);
}


/* =====================================================
   DEFAULT SUGGESTIONS
===================================================== */

.site-search-suggestions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 10px;
}

.site-search-suggestions a {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 95px;

    padding: 17px 50px 17px 18px;

    border: 1px solid rgba(13, 43, 65, 0.07);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.58);

    text-decoration: none;

    transition:
        background-color 0.22s ease,
        transform 0.22s ease,
        border-color 0.22s ease;
}

.site-search-suggestions a:hover {
    background: #fff;

    border-color: rgba(34, 126, 93, 0.18);

    transform: translateY(-2px);
}

.search-suggestion-type {
    margin-bottom: 8px;

    color: #26815f;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.site-search-suggestions strong {
    color: #102f47;

    font-size: 14px;
    font-weight: 600;
}

.search-arrow {
    position: absolute;

    right: 18px;
    bottom: 18px;

    color: #257c5d;

    font-size: 18px;

    transition: transform 0.2s ease;
}

.site-search-suggestions a:hover .search-arrow {
    transform: translateX(3px);
}


/* =====================================================
   LIVE RESULTS
===================================================== */

.site-search-results {
    display: grid;
    gap: 5px;
}

.search-result-item {
    position: relative;

    display: grid;
    grid-template-columns: 110px 1fr auto;
    align-items: center;

    min-height: 60px;

    padding: 10px 15px;

    border-radius: 10px;

    color: inherit;
    text-decoration: none;

    transition:
        background-color 0.18s ease,
        transform 0.18s ease;
}

.search-result-item:hover,
.search-result-item.is-selected {
    background: #fff;

    transform: translateX(2px);
}

.search-result-category {
    color: #25805e;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}

.search-result-title {
    color: #0d3048;

    font-size: 15px;
    font-weight: 550;
}

.search-result-arrow {
    color: rgba(21, 65, 91, 0.45);

    font-size: 17px;
}

.search-no-results {
    padding: 35px 5px;

    color: rgba(16, 44, 66, 0.54);

    font-size: 14px;
}

.search-no-results strong {
    color: #153d57;
}


/* =====================================================
   SEARCH FOOTER
===================================================== */

.site-search-footer {
    display: flex;
    align-items: center;

    gap: 18px;

    padding-top: 18px;
    margin-top: 4px;

    border-top:
        1px solid
        rgba(12, 42, 65, 0.07);

    color: rgba(14, 43, 65, 0.44);

    font-size: 10px;
}

.site-search-footer > div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.site-search-footer .search-key {
    min-width: 22px;
    height: 21px;

    padding: 0 5px;

    font-size: 8px;
}


/* =====================================================
   SEARCH OPEN BODY STATE
===================================================== */

body.search-open {
    overflow: hidden;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 900px) {
.header-search-button {
    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 40px;

    margin-left: 10px;
    margin-right: 10px;

    border: 1px solid rgba(13, 39, 64, 0.14);
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.75);
    color: #0d2740;

    cursor: pointer;

    transition:
        border-color 0.22s ease,
        background-color 0.22s ease,
        color 0.22s ease,
        transform 0.22s ease;
}

.header-search-button:hover {
    border-color: rgba(35, 129, 95, 0.45);
    background: rgba(35, 129, 95, 0.06);
    color: #23815f;
}

.header-search-button:active {
    transform: scale(0.95);
}

.header-search-button svg {
    width: 18px;
    height: 18px;
}

}
/* =====================================================
   VATERA LANGUAGE SWITCHER — iOS STYLE
===================================================== */

.main-nav .language-switcher {
    position: relative;

    width: 82px;
    height: 38px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    padding: 3px;

    flex: 0 0 82px;

    border: 1px solid #e5e9ec;
    border-radius: 999px;

    background: #f1f3f4;

    box-shadow:
        inset 0 1px 2px rgba(7, 23, 43, 0.04);

    overflow: hidden;
}


/* KAYAN SEÇİCİ */

.main-nav .language-slider {
    position: absolute;

    top: 3px;
    left: 3px;

    width: 35px;
    height: 30px;

    border-radius: 999px;

    background: #ffffff;

    box-shadow:
        0 2px 6px rgba(7, 23, 43, 0.13),
        0 1px 2px rgba(7, 23, 43, 0.08);

    pointer-events: none;

    transition:
        transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
        background-color 0.25s ease,
        box-shadow 0.25s ease;

    z-index: 1;
}


/* TR / EN */

.main-nav .language-option {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;

    padding: 0;

    border: 0;
    outline: 0;

    background: transparent;

    color: #8b939b;

    font-family: inherit;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.3px;

    cursor: pointer;

    transition:
        color 0.25s ease,
        transform 0.2s ease;
}


.main-nav .language-option.active {
    color: #07172b;
}


.main-nav .language-option:active {
    transform: scale(0.92);
}


/* =========================
   ENGLISH ACTIVE
========================= */

.main-nav .language-switcher.is-english .language-slider {
    transform: translateX(38px);

    background: #43b90e;

    box-shadow:
        0 3px 8px rgba(67, 185, 14, 0.25);
}


.main-nav .language-switcher.is-english
.language-option[data-lang="en"] {
    color: #ffffff;
}


.main-nav .language-switcher.is-english
.language-option[data-lang="tr"] {
    color: #8b939b;
}


/* =========================
   MOBILE / TABLET
========================= */

@media (max-width: 900px) {

    .main-nav .language-switcher {
        width: 82px;
        height: 38px;

        margin: 8px 18px;

        flex: 0 0 38px;
    }

}

/* =====================================================
   VATERA MEDIA V2
===================================================== */

.media-slider-section {
    padding: 25px 0 45px;
}


.media-slider-box {
    padding: 54px 56px 42px;

    border-radius: 34px;

    border: 1px solid #e7ece9;

    background:
        linear-gradient(
            145deg,
            #fbfcfb 0%,
            #f4f7f5 100%
        );

    box-shadow:
        0 18px 48px rgba(7, 23, 43, 0.055),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    overflow: hidden;
}


/* =========================
   MEDIA HEADER — REFINED
========================= */

.media-slider-heading {
    display: block;
    margin-bottom: 28px;
}


.media-slider-heading-left {
    max-width: 520px;
}


.media-slider-eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 11px;

    color: #41d100;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
}


.media-slider-eyebrow::before {
    content: "";

    width: 18px;
    height: 1px;

    margin-right: 9px;

    background: #41d100;
}


.media-slider-heading h2 {
    margin: 0;

    color: #07172b;

    font-size: clamp(32px, 3vw, 46px);
    line-height: 1.02;
    font-weight: 650;
    letter-spacing: -1.5px;
}


.media-slider-heading h2 strong {
    color: #8a939b;

    font-weight: 500;
}

/* =========================
   STAGE
========================= */

.media-slider-stage {
    position: relative;

    display: flex;
    align-items: center;
}


/* =========================
   VIDEO
========================= */

.media-video-frame {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 8.3;

    border-radius: 24px;

    overflow: hidden;

    background: #020b14;
}


.media-video {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 1;
    transform: scale(1);

    transition:
        opacity 0.28s ease,
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}


.media-video.is-changing {
    opacity: 0;
    transform: scale(1.015);
}


/* =========================
   OVERLAY
========================= */

.media-video-overlay {
    position: absolute;
    inset: 0;

    pointer-events: none;
}


.media-video-badge {
    position: absolute;

    top: 20px;
    left: 20px;

    padding: 10px 13px;

    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;

    background: rgba(5, 22, 38, 0.68);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: #ffffff;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
}


.media-video-badge span {
    display: block;

    margin-top: 2px;

    color: #41d100;

    font-size: 8px;
}


/* =========================
   SOUND BUTTON
========================= */

.media-sound-button {
    position: absolute;

    right: 20px;
    bottom: 24px;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;

    background: rgba(4, 18, 31, 0.72);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: #ffffff;

    cursor: pointer;

    pointer-events: auto;

    transition:
        background-color 0.22s ease,
        border-color 0.22s ease,
        transform 0.22s ease;
}


.media-sound-button:hover {
    border-color: rgba(65,209,0,0.55);

    background: rgba(65,209,0,0.92);
}


.media-sound-button:active {
    transform: scale(0.94);
}


.media-sound-button svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.media-sound-button .sound-icon-on {
    display: none;
}


.media-sound-button.sound-active .sound-icon-on {
    display: block;
}


.media-sound-button.sound-active .sound-icon-off {
    display: none;
}


/* =========================
   ARROWS
========================= */

.media-slider-arrow {
    position: absolute;

    top: 50%;

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;

    background: rgba(5, 22, 38, 0.74);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 34px;
    line-height: 1;

    cursor: pointer;

    z-index: 5;

    transform: translateY(-50%);

    transition:
        background-color 0.22s ease,
        border-color 0.22s ease,
        color 0.22s ease,
        transform 0.22s ease;
}


.media-slider-arrow:hover {
    border-color: #41d100;

    background: #41d100;

    color: #061628;
}


.media-slider-arrow:active {
    transform:
        translateY(-50%)
        scale(0.94);
}


.media-slider-prev {
    left: 20px;
}


.media-slider-next {
    right: 20px;
}


/* =========================
   PROGRESS
========================= */

.media-progress {
    position: absolute;

    left: 20px;
    right: 82px;
    bottom: 18px;

    height: 3px;

    border-radius: 20px;

    background: rgba(255,255,255,0.24);

    overflow: hidden;

    cursor: pointer;
}


.media-progress-fill {
    width: 0%;
    height: 100%;

    background: #41d100;

    border-radius: inherit;

    transition: width 0.1s linear;
}


/* =========================
   BOTTOM
========================= */

.media-slider-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    padding-top: 28px;
}


.media-slider-info {
    display: grid;

    grid-template-columns: auto auto;
    grid-template-areas:
        "count category"
        "title title";

    column-gap: 12px;
    row-gap: 4px;

    align-items: center;
}


.media-slider-count {
    grid-area: count;

    color: #9aa2a8;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.6px;
}


.media-slider-category {
    grid-area: category;

    color: #41d100;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.6px;
}


.media-slider-info h3 {
    grid-area: title;

    margin: 0;

    color: #07172b;

    font-size: 17px;
    font-weight: 700;
}


/* =========================
   DOTS
========================= */

.media-slider-dots {
    display: flex;
    align-items: center;

    gap: 8px;
}


.media-dot {
    width: 7px;
    height: 7px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: rgba(7, 23, 43, 0.18);

    cursor: pointer;

    transition:
        width 0.25s ease,
        border-radius 0.25s ease,
        background-color 0.25s ease;
}


.media-dot.active {
    width: 28px;

    border-radius: 999px;

    background: #41d100;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .media-slider-section {
        padding: 25px 0 45px;
    }


    .media-slider-box {
        padding:
            38px
            28px
            32px;

        border-radius: 28px;
    }


    .media-slider-heading {
        display: block;

        margin-bottom: 26px;
    }


    .media-slider-arrow {
        width: 46px;
        height: 46px;

        font-size: 28px;
    }


    .media-slider-prev {
        left: 12px;
    }


    .media-slider-next {
        right: 12px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .media-slider-section {
        padding: 20px 0 45px;
    }


    .media-slider-box {
        padding:
            30px
            18px
            26px;

        border-radius: 24px;
    }


    .media-slider-heading h2 {
        font-size: 36px;
    }


    .media-video-frame {
        aspect-ratio: 16 / 10;
        border-radius: 18px;
    }


    .media-slider-arrow {
        width: 40px;
        height: 40px;

        font-size: 25px;
    }


    .media-slider-prev {
        left: 8px;
    }


    .media-slider-next {
        right: 8px;
    }


    .media-video-badge {
        top: 12px;
        left: 12px;
    }


    .media-sound-button {
        right: 12px;
        bottom: 18px;

        width: 40px;
        height: 40px;
    }


    .media-progress {
        left: 12px;
        right: 62px;
        bottom: 14px;
    }


    .media-slider-bottom {
        padding-top: 20px;
    }

}

/* =====================================================
   SELECTED PROJECTS V2
   Editorial / premium engineering portfolio
   ===================================================== */

.projects-v2 {
    padding-bottom: 45px;
}

.projects-v2 .projects-box {
    padding: 54px 46px 44px;
    border: 1px solid #edf0f2;
    border-radius: 44px;
    background: #ffffff;
    box-shadow: 0 12px 36px rgba(14, 36, 57, 0.035);
}

.projects-v2-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
    align-items: end;
    gap: 70px;
    margin-bottom: 38px;
}

.projects-v2-eyebrow {
    display: block;
    margin-bottom: 14px;
    color: #42ad15;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.35px;
}

.projects-v2-title h2 {
    margin: 0;
    max-width: 790px;
    color: #07172b;
    font-size: clamp(38px, 3.35vw, 58px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -2.1px;
}

.projects-v2-intro {
    padding-bottom: 5px;
}

.projects-v2-intro p {
    margin: 0 0 20px;
    max-width: 430px;
    color: #737b84;
    font-size: 14px;
    line-height: 1.75;
    font-weight: 500;
}

.projects-v2-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 7px;
    border-bottom: 1px solid #cfd6da;
    color: #13283c;
    font-size: 13px;
    font-weight: 800;
    transition: color .25s ease, border-color .25s ease, gap .25s ease;
}

.projects-v2-all span {
    font-size: 18px;
    font-weight: 400;
}

.projects-v2-all:hover {
    gap: 17px;
    color: #38aa0c;
    border-color: #42b70d;
}

.projects-v2-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.62fr) minmax(330px, .78fr);
    gap: 24px;
    align-items: stretch;
}

.project-v2 {
    display: block;
    min-width: 0;
    color: inherit;
}

.project-v2-media {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #e9edef;
}

.project-v2-featured .project-v2-media {
    height: 590px;
    border-radius: 30px;
}

.projects-v2-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 28px;
}

.project-v2-small {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    min-height: 0;
}

.project-v2-small .project-v2-media {
    min-height: 205px;
    height: 100%;
    border-radius: 24px;
}

.project-v2-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 20, 32, .10) 0%,
        rgba(5, 20, 32, 0) 48%,
        rgba(5, 20, 32, .32) 100%
    );
    opacity: .45;
    transition: opacity .4s ease;
    pointer-events: none;
}

.project-v2-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s cubic-bezier(.2,.65,.25,1), filter .45s ease;
}

.project-v2-number {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    min-height: 31px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    background: rgba(7,23,43,.24);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .8px;
}

.project-v2-view {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    min-height: 42px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    color: #102438;
    font-size: 11px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .3s ease, transform .3s ease, color .3s ease;
}

.project-v2-view b {
    font-size: 15px;
    font-weight: 500;
}

.project-v2:hover .project-v2-media img {
    transform: scale(1.035);
    filter: brightness(.94);
}

.project-v2:hover .project-v2-media::after {
    opacity: .7;
}

.project-v2:hover .project-v2-view {
    opacity: 1;
    transform: translateY(0);
    color: #36aa0c;
}

.project-v2-meta {
    min-height: 104px;
    padding: 18px 2px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid #e8ecee;
    transition: border-color .3s ease;
}

.project-v2:hover .project-v2-meta {
    border-color: #b9d8aa;
}

.project-v2-location {
    display: block;
    margin-bottom: 8px;
    color: #42ad15;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1px;
}

.project-v2-meta h3 {
    margin: 0;
    max-width: 560px;
    color: #07172b;
    font-size: 19px;
    line-height: 1.28;
    font-weight: 800;
    letter-spacing: -.35px;
}

.project-v2-featured .project-v2-meta h3 {
    font-size: 23px;
    letter-spacing: -.55px;
}

.project-v2-meta p {
    margin: 19px 0 0;
    flex-shrink: 0;
    color: #858c92;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 600;
    text-align: right;
}

.project-v2-small .project-v2-meta {
    min-height: 87px;
    padding-top: 14px;
    gap: 12px;
}

.project-v2-small .project-v2-meta h3 {
    font-size: 15px;
}

.project-v2-small .project-v2-meta p {
    margin-top: 17px;
    font-size: 10px;
}

@media (max-width: 1100px) {
    .projects-v2-heading {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .projects-v2-intro {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 30px;
    }

    .projects-v2-intro p {
        margin-bottom: 0;
    }

    .projects-v2-layout {
        grid-template-columns: 1.25fr .75fr;
    }

    .project-v2-featured .project-v2-media {
        height: 520px;
    }

    .project-v2-meta {
        flex-direction: column;
        gap: 6px;
        padding-bottom: 15px;
    }

    .project-v2-meta p,
    .project-v2-small .project-v2-meta p {
        margin-top: 0;
        text-align: left;
    }
}

@media (max-width: 820px) {
    .projects-v2 .projects-box {
        padding: 38px 24px 30px;
        border-radius: 36px;
    }

    .projects-v2-title h2 {
        font-size: clamp(35px, 8vw, 48px);
        letter-spacing: -1.6px;
    }

    .projects-v2-intro {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .projects-v2-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .project-v2-featured .project-v2-media {
        height: auto;
        aspect-ratio: 4 / 5;
        max-height: 650px;
    }

    .projects-v2-side {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 34px;
    }

    .project-v2-small {
        display: block;
    }

    .project-v2-small .project-v2-media {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .project-v2-view {
        opacity: 1;
        transform: none;
        min-height: 38px;
        padding: 0 14px;
        font-size: 10px;
    }

    .project-v2-meta,
    .project-v2-small .project-v2-meta {
        min-height: 0;
        padding: 16px 1px 17px;
    }

    .project-v2-small .project-v2-meta h3 {
        font-size: 18px;
    }
}

@media (max-width: 520px) {
    .projects-v2 .projects-box {
        padding: 32px 18px 24px;
        border-radius: 30px;
    }

    .projects-v2-heading {
        margin-bottom: 28px;
    }

    .projects-v2-eyebrow {
        font-size: 10px;
        letter-spacing: 1.05px;
    }

    .projects-v2-title h2 {
        font-size: 34px;
        line-height: 1.04;
        letter-spacing: -1.3px;
    }

    .projects-v2-intro p {
        font-size: 13px;
    }

    .project-v2-featured .project-v2-media,
    .project-v2-small .project-v2-media {
        border-radius: 22px;
    }

    .project-v2-featured .project-v2-media {
        aspect-ratio: 4 / 5;
    }

    .project-v2-small .project-v2-media {
        aspect-ratio: 4 / 3;
    }

    .project-v2-number {
        top: 14px;
        left: 14px;
    }

    .project-v2-view {
        right: 14px;
        bottom: 14px;
    }

    .project-v2-featured .project-v2-meta h3,
    .project-v2-meta h3,
    .project-v2-small .project-v2-meta h3 {
        font-size: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .project-v2-media img,
    .project-v2-view,
    .projects-v2-all {
        transition: none;
    }
}

/* =====================================================
   WHY VATERA V2 — SYSTEM / MICRO INTERACTION UPGRADE
   ===================================================== */

.why-vatera-v2 .why-premium-stage {
    position: relative;
    overflow: hidden;
}

.why-vatera-v2 .why-premium-modules {
    position: relative;
    isolation: isolate;
}

.why-vatera-v2 .why-system-orbit,
.why-vatera-v2 .why-system-axis {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.why-vatera-v2 .why-system-orbit {
    left: 50%;
    top: 50%;
    border: 1px solid rgba(82, 199, 35, 0.16);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.why-vatera-v2 .why-system-orbit-1 {
    width: 340px;
    height: 340px;
    animation: whyOrbitSpin 18s linear infinite;
}

.why-vatera-v2 .why-system-orbit-2 {
    width: 455px;
    height: 455px;
    border-color: rgba(7, 23, 43, 0.08);
    animation: whyOrbitSpinReverse 24s linear infinite;
}

.why-vatera-v2 .why-system-orbit-1::before,
.why-vatera-v2 .why-system-orbit-2::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4cc619;
    box-shadow: 0 0 20px rgba(76, 198, 25, .55);
}

.why-vatera-v2 .why-system-orbit-1::before {
    top: -4px;
    left: 50%;
}

.why-vatera-v2 .why-system-orbit-2::before {
    right: 32px;
    bottom: 56px;
}

.why-vatera-v2 .why-system-axis-h {
    left: 12%;
    right: 12%;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(69, 184, 13, .24), transparent);
}

.why-vatera-v2 .why-system-axis-v {
    top: 12%;
    bottom: 12%;
    left: 50%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(69, 184, 13, .22), transparent);
}

.why-vatera-v2 .why-module {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(220, 227, 231, 0.95);
    text-align: left;
    font: inherit;
    cursor: pointer;
    z-index: 2;
    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease,
        opacity .3s ease,
        background .3s ease;
}

.why-vatera-v2 .why-premium-modules:hover .why-module:not(:hover):not(.is-active) {
    opacity: .72;
}

.why-vatera-v2 .why-module:hover,
.why-vatera-v2 .why-module:focus-visible,
.why-vatera-v2 .why-module.is-active {
    transform: translateY(-4px);
    border-color: rgba(76, 198, 25, .34);
    background: rgba(255, 255, 255, .92);
    box-shadow:
        0 18px 42px rgba(8, 24, 44, .08),
        0 8px 24px rgba(76, 198, 25, .06);
    outline: none;
}

.why-vatera-v2 .why-module.is-active .why-module-number,
.why-vatera-v2 .why-module:hover .why-module-number {
    color: #43b90e;
}

.why-vatera-v2 .why-module.is-active .why-module-dot,
.why-vatera-v2 .why-module:hover .why-module-dot {
    transform: scale(1.35);
    box-shadow: 0 0 0 7px rgba(76, 198, 25, .09);
}

.why-vatera-v2 .why-module-dot {
    transition: transform .3s ease, box-shadow .3s ease;
}

.why-vatera-v2 .why-center-ring::before,
.why-vatera-v2 .why-center-ring::after {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    border: 1px solid rgba(76, 198, 25, .18);
    animation: whyCenterPulse 3.2s ease-in-out infinite;
}

.why-vatera-v2 .why-center-ring::after {
    inset: -34px;
    border-color: rgba(7, 23, 43, .07);
    animation-delay: .6s;
}

@keyframes whyOrbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes whyOrbitSpinReverse {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to   { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes whyCenterPulse {
    0%, 100% { opacity: .45; transform: scale(1); }
    50% { opacity: .9; transform: scale(1.035); }
}

@media (max-width: 1050px) {
    .why-vatera-v2 .why-system-orbit-1 {
        width: 300px;
        height: 300px;
    }

    .why-vatera-v2 .why-system-orbit-2 {
        width: 390px;
        height: 390px;
    }
}

@media (max-width: 820px) {
    .why-vatera-v2 .why-system-orbit,
    .why-vatera-v2 .why-system-axis {
        display: none;
    }

.why-vatera-v2 .why-premium-modules:hover .why-module:not(:hover):not(.is-active) {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .why-vatera-v2 .why-system-orbit,
    .why-vatera-v2 .why-center-ring::before,
    .why-vatera-v2 .why-center-ring::after {
        animation: none;
    }

    .why-vatera-v2 .why-module {
        transition: none;
    }
}

/* =====================================================
   WHY VATERA V2.1 — PREMIUM REFINEMENT
   ===================================================== */

/* Sol taraftaki akış satırı V2.1'de kaldırıldı. */
/* Tüm modüller aynı koyu premium yüzey dilinde kalır. */
.why-vatera-v2 .why-module,
.why-vatera-v2 .why-module:hover,
.why-vatera-v2 .why-module:focus-visible,
.why-vatera-v2 .why-module.is-active {
    background:
        linear-gradient(
            145deg,
            rgba(25, 48, 64, .90),
            rgba(15, 36, 55, .96)
        ) !important;

    border: 1px solid rgba(202, 216, 224, .70) !important;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.035),
        0 18px 42px rgba(0, 10, 24, .13) !important;
}

/* Aktif kart artık beyaza dönmez; yalnızca VATERA yeşiliyle vurgulanır. */
.why-vatera-v2 .why-module.is-active,
.why-vatera-v2 .why-module:hover,
.why-vatera-v2 .why-module:focus-visible {
    transform: translateY(-4px) !important;

    border-color: rgba(83, 211, 28, .72) !important;

    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(77, 205, 24, .12),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            rgba(26, 52, 66, .96),
            rgba(14, 37, 53, .98)
        ) !important;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.045),
        0 18px 46px rgba(0, 10, 24, .18),
        0 0 0 1px rgba(76, 198, 25, .08),
        0 0 32px rgba(76, 198, 25, .07) !important;
}

/* Hover sırasında diğer kartları çok fazla karartma. */
.why-vatera-v2 .why-premium-modules:hover .why-module:not(:hover):not(.is-active) {
    opacity: .86 !important;
}

/* Kart tipografisi: koyu zeminde daha temiz ve okunaklı. */
.why-vatera-v2 .why-module h3,
.why-vatera-v2 .why-module.is-active h3,
.why-vatera-v2 .why-module:hover h3 {
    color: #f4f7f8 !important;
}

.why-vatera-v2 .why-module p,
.why-vatera-v2 .why-module.is-active p,
.why-vatera-v2 .why-module:hover p {
    color: rgba(221, 229, 233, .74) !important;
}

.why-vatera-v2 .why-module-number {
    color: rgba(207, 218, 224, .55) !important;
}

.why-vatera-v2 .why-module.is-active .why-module-number,
.why-vatera-v2 .why-module:hover .why-module-number,
.why-vatera-v2 .why-module:focus-visible .why-module-number {
    color: #58d323 !important;
}

.why-vatera-v2 .why-module-dot {
    background: #4dcc18 !important;
    box-shadow: 0 0 0 7px rgba(77, 204, 24, .07);
}

/* Merkez çekirdeği yaklaşık %18 büyüt ve daha güçlü odak oluştur. */
.why-vatera-v2 .why-center-ring::before {
    border-color: rgba(76, 198, 25, .23) !important;
}

.why-vatera-v2 .why-center-ring::after {
    border-color: rgba(130, 157, 172, .11) !important;
}

/* VATERA SYSTEM ve aktif modül bilgisini biraz daha okunaklı yap. */
/* Solda yalnızca çizgi + imza kalsın. */
.why-vatera-v2 .why-premium-line {
    margin-bottom: 19px;
}

.why-vatera-v2 .why-premium-signature {
    display: inline-block;
}

/* Küçük ekranlarda merkez büyütmesini geri al. */


@media (max-width: 820px) {
.why-vatera-v2 .why-premium-modules:hover .why-module:not(:hover):not(.is-active) {
        opacity: 1 !important;
    }
}

/* =====================================================
   WHY VATERA V2.2 — CENTER POSITION + TRUE HOVER FIX
   ===================================================== */

/* The positioned center itself must never be transformed:
   transform was changing its positioning coordinate system and caused the drift. */
/* Grow only the visual ring, without moving the center container. */
/* Status follows the center, not the enlarged ring. */
/* No card looks hovered until it is actually hovered/focused. */
.why-vatera-v2 .why-module {
    border-color: rgba(202, 216, 224, .70) !important;
}

.why-vatera-v2 .why-module:not(:hover):not(:focus-visible):not(.is-active) {
    transform: none !important;
    border-color: rgba(202, 216, 224, .70) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.035),
        0 18px 42px rgba(0, 10, 24, .13) !important;
    background:
        linear-gradient(
            145deg,
            rgba(25, 48, 64, .90),
            rgba(15, 36, 55, .96)
        ) !important;
}

/* Empty center status should occupy no visual space. */




/* =====================================================
   WHY VATERA — CENTER FIX / CLEAN FINAL OVERRIDE
   Bu blok dosyanın EN SONUNDA kalmalıdır.
   ===================================================== */

.why-vatera-v2 .why-premium-modules {
    position: relative !important;
}

/* Merkez, dört kartın bulunduğu modül alanının tam geometrik ortası */
.why-vatera-v2 .why-premium-center {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;

    width: 124px !important;
    height: 124px !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: translate(-50%, -50%) !important;
    transform-origin: 50% 50% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    z-index: 8 !important;
    pointer-events: none !important;
}

/* Yalnızca görsel halka; merkezin pozisyonunu asla değiştirmez */
.why-vatera-v2 .why-center-ring {
    position: relative !important;

    width: 124px !important;
    height: 124px !important;
    flex: 0 0 124px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;

    transform: none !important;
    transform-origin: center !important;

    border: 1px solid rgba(99, 213, 47, 0.24) !important;
    border-radius: 50% !important;

    box-shadow:
        0 0 42px rgba(71,190,19,0.10) !important;
}

.why-vatera-v2 .why-center-core {
    width: 82px !important;
    height: 82px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;

    background:
        linear-gradient(
            145deg,
            #66d832,
            #35aa0d
        ) !important;

    box-shadow:
        0 14px 36px rgba(60,180,15,0.30),
        0 0 36px rgba(76,198,25,0.12) !important;
}

/* VATERA SYSTEM etiketi merkezin hesaplanan yüksekliğine dahil olmaz */
.why-vatera-v2 .why-premium-center small {
    position: absolute !important;
    top: calc(100% + 14px) !important;
    left: 50% !important;

    width: max-content !important;
    margin: 0 !important;

    transform: translateX(-50%) !important;

    color: rgba(255,255,255,0.42) !important;
    font-size: 8px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    white-space: nowrap !important;
}

/* Eski aktif modül yazısı tamamen kapalı */
/* Desktop/tablet merkez görünür; mobil tek kolon yapıda gizli */
@media (max-width: 700px) {
    .why-vatera-v2 .why-premium-center {
        display: none !important;
    }
}

/* =====================================================
   VATERA DNA — ÇİFT SARMAL
===================================================== */

.corporate-dna-section {
    padding: 0 0 42px;
}


/* =========================
   ANA KUTU
========================= */

.corporate-dna-box {
    position: relative;

    min-height: 560px;

    padding: 54px 52px;

    display: grid;

    grid-template-columns:
        minmax(0, 0.86fr)
        minmax(540px, 1.14fr);

    align-items: center;

    gap: 60px;

    border-radius: 42px;

    background:
        radial-gradient(
            circle at 76% 48%,
            rgba(54, 170, 12, 0.08),
            transparent 33%
        ),
        linear-gradient(
            135deg,
            #07172b 0%,
            #091b30 55%,
            #07182a 100%
        );

    overflow: hidden;

    box-shadow:
        0 22px 52px rgba(7, 23, 43, 0.13);
}


/* HAFİF ÜST PARLAMA */

.corporate-dna-box::before {
    content: "";

    position: absolute;

    top: -180px;
    left: 22%;

    width: 500px;
    height: 300px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.035);

    filter: blur(70px);

    pointer-events: none;
}


/* =========================
   SOL METİN
========================= */

.corporate-dna-content {
    position: relative;

    z-index: 5;

    max-width: 500px;
}


.corporate-dna-eyebrow {
    display: block;

    margin-bottom: 16px;

    color: #5ed91a;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}


.corporate-dna-content h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(35px, 3vw, 50px);
    line-height: 1.07;

    font-weight: 800;

    letter-spacing: -1.5px;
}


.corporate-dna-content h2 strong {
    display: block;

    margin-top: 5px;

    color: #58d116;

    font-weight: 800;
}


.corporate-dna-content p {
    max-width: 455px;

    margin: 24px 0 0;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 13px;
    line-height: 1.8;
}


.corporate-dna-divider {
    width: 68px;
    height: 1px;

    margin-top: 29px;

    background:
        linear-gradient(
            to right,
            #5ed817,
            transparent
        );
}


.corporate-dna-signature {
    display: block;

    margin-top: 13px;

    color:
        rgba(255,255,255,0.34);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.15px;
}


/* =========================
   DNA GÖRSEL ALANI
========================= */

.corporate-dna-visual {
    position: relative;

    z-index: 2;

    height: 465px;
}


/* =========================
   TEKNİK GRID
========================= */

.corporate-dna-grid {
    position: absolute;

    inset: 0;

    opacity: 0.10;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.10) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.10) 1px,
            transparent 1px
        );

    background-size:
        32px 32px;

    mask-image:
        radial-gradient(
            circle at center,
            black 15%,
            transparent 74%
        );

    -webkit-mask-image:
        radial-gradient(
            circle at center,
            black 15%,
            transparent 74%
        );
}


/* =========================
   DNA SVG
========================= */

.corporate-dna-svg {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 470px;
    height: 440px;

    transform:
        translate(-50%, -50%);

    overflow: visible;
}


/* DNA SARMALLARI */

.dna-strand {
    fill: none;

    stroke-width: 8;

    stroke-linecap: round;

    opacity: 0.93;
}


.dna-strand-green {
    stroke: url(#dnaGreen);

    filter:
        drop-shadow(
            0 0 10px
            rgba(81, 205, 18, 0.23)
        );
}


.dna-strand-blue {
    stroke: url(#dnaBlue);

    opacity: 0.58;

    filter:
        drop-shadow(
            0 0 9px
            rgba(40, 127, 221, 0.18)
        );
}


/* DNA BAĞLANTILARI */

.dna-rungs line {
    stroke:
        rgba(255,255,255,0.18);

    stroke-width: 2;

    stroke-linecap: round;
}


/* =========================
   DNA ENERJİ HAREKETİ
========================= */

.dna-energy {
    fill: none;

    stroke:
        rgba(188, 255, 143, 0.9);

    stroke-width: 3;

    stroke-linecap: round;

    stroke-dasharray:
        10 92;

    filter:
        url(#dnaGlow);

    animation:
        dnaEnergyFlow
        7s linear infinite;
}


@keyframes dnaEnergyFlow {

    to {
        stroke-dashoffset: -204;
    }

}

/* =========================
   DNA NOKTALARI
========================= */

.dna-point {
    position: absolute;

    z-index: 5;

    width: 225px;

    display: flex;
    align-items: flex-start;

    gap: 13px;

    padding: 18px 19px;

    border:
        1px solid
        rgba(255,255,255,0.10);

    border-radius: 19px;

    background:
        rgba(7,23,43,0.68);

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);

    box-shadow:
        0 12px 30px
        rgba(0,0,0,0.14);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.dna-point:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(91, 214, 21, 0.38);

    background:
        rgba(10,30,49,0.88);

    box-shadow:
        0 16px 34px
        rgba(0,0,0,0.18);
}


/* NUMARA */

.dna-point-index {
    flex-shrink: 0;

    padding-top: 2px;

    color: #59d317;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.9px;
}


/* BAŞLIK */

.dna-point h3 {
    margin: 0 0 6px;

    color: #ffffff;

    font-size: 16px;
    line-height: 1.25;

    font-weight: 800;

    letter-spacing: -0.2px;
}


/* AÇIKLAMA */

.dna-point p {
    margin: 0;

    color:
        rgba(255,255,255,0.58);

    font-size: 11px;
    line-height: 1.55;
}


/* =========================
   NOKTA POZİSYONLARI
========================= */

.dna-point-1 {
    top: 38px;
    left: 0;
}


.dna-point-2 {
    top: 150px;
    right: 0;
}


.dna-point-3 {
    bottom: 112px;
    left: 0;
}


.dna-point-4 {
    bottom: 16px;
    right: 0;
}
/* =========================
   NOKTA POZİSYONLARI
========================= */

.dna-point-1 {
    top: 44px;
    left: 8px;
}


.dna-point-2 {
    top: 155px;
    right: 0;
}


.dna-point-3 {
    bottom: 118px;
    left: 0;
}


.dna-point-4 {
    bottom: 22px;
    right: 8px;
}


/* =========================
   TEKNİK KODLAR
========================= */

.corporate-dna-code {
    position: absolute;

    z-index: 3;

    color:
        rgba(255,255,255,0.17);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.2px;
}


.corporate-dna-code-1 {
    top: 12px;
    right: 25px;
}


.corporate-dna-code-2 {
    bottom: 7px;
    left: 25px;
}


/* =========================
   ALT ETİKET
========================= */

.corporate-dna-system-label {
    position: absolute;

    left: 50%;
    bottom: 3px;

    transform:
        translateX(-50%);

    display: flex;
    align-items: center;

    gap: 8px;

    white-space: nowrap;

    color:
        rgba(255,255,255,0.23);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1px;
}


.corporate-dna-system-label span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #54cd14;

    box-shadow:
        0 0 9px
        rgba(84,205,20,0.55);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {

    .corporate-dna-box {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .corporate-dna-content {
        max-width: 670px;
    }


    .corporate-dna-visual {
        height: 475px;

        max-width: 700px;

        width: 100%;

        margin: 0 auto;
    }

}


/* =========================
   MOBİL
========================= */

@media (max-width: 700px) {

    .corporate-dna-box {
        min-height: auto;

        padding:
            38px 23px 30px;

        border-radius: 32px;
    }


    .corporate-dna-content h2 {
        font-size: 34px;
    }


    .corporate-dna-visual {
        height: auto;

        padding-top: 20px;
    }


    .corporate-dna-svg {
        position: relative;

        left: auto;
        top: auto;

        width: 100%;
        height: auto;

        transform: none;

        margin:
            0 auto 25px;
    }


    .dna-point {
        position: relative;

        inset: auto;

        width: 100%;

        margin-top: 9px;
    }


    .corporate-dna-code,
    .corporate-dna-system-label {
        display: none;
    }

}


/* =========================
   HAREKET AZALTMA TERCİHİ
========================= */

@media (prefers-reduced-motion: reduce) {

    .dna-energy {
        animation: none;
    }

}

/* =====================================================
   GLOBAL VİZYON / RAKAMLARLA VATERA
   VATERA KURUMSAL ENTEGRE TASARIM
===================================================== */

/* =====================================================
   GLOBAL VİZYON — DIŞ ZEMİN
===================================================== */

.global-vision-section {
    position: relative;

    padding: 20px 0 42px;

    background: transparent;

    overflow: visible;
}

/* =====================================================
   ESKİ FULL-WIDTH TEKNİK ARKA PLANI KAPAT
===================================================== */

.global-vision-background {
    display: none;
}


/* =====================================================
   ANA GLOBAL VİZYON BLOĞU
===================================================== */

.global-vision-section .container {
    position: relative;

    z-index: 2;

    padding:
        58px 52px 44px;

    border:
        1px solid rgba(8, 35, 63, 0.10);

    border-radius: 38px;

    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(82, 199, 22, 0.065),
            transparent 27%
        ),
        radial-gradient(
            circle at 4% 100%,
            rgba(31, 104, 171, 0.05),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fbfcfd 55%,
            #f8fafb 100%
        );

    box-shadow:
        0 14px 38px rgba(7, 23, 43, 0.055);

    overflow: hidden;
}


/* =========================
   HAFİF TEKNİK GRID
========================= */

.global-vision-section .container::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 0;

    pointer-events: none;

    opacity: 0.35;

    background-image:
        linear-gradient(
            rgba(7,23,43,0.026) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(7,23,43,0.026) 1px,
            transparent 1px
        );

    background-size:
        34px 34px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            black 26%,
            black 82%,
            transparent 100%
        );

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            black 26%,
            black 82%,
            transparent 100%
        );
}


/* SAĞ ÜST HAFİF VATERA IŞIĞI */

.global-vision-section .container::after {
    content: "";

    position: absolute;

    top: -170px;
    right: -100px;

    width: 440px;
    height: 440px;

    z-index: 0;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(78,199,22,0.10),
            rgba(78,199,22,0.025) 42%,
            transparent 68%
        );

    pointer-events: none;
}


/* TÜM İÇERİĞİ ÖNE AL */

.global-vision-header,
.global-vision-stats,
.global-vision-footer {
    position: relative;

    z-index: 2;
}


/* =====================================================
   ÜST BAŞLIK
===================================================== */

.global-vision-header {
    display: grid;

    grid-template-columns:
        minmax(0, 1.18fr)
        minmax(300px, 0.62fr);

    gap: 85px;

    align-items: end;

    margin-bottom: 48px;
}


/* SOL BAŞLIK */

.global-vision-title {
    max-width: 760px;
}


.global-vision-eyebrow {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 15px;

    color: #45b812;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.15px;
}


/* KÜÇÜK TEKNİK HAT */

.global-vision-eyebrow::after {
    content: "";

    width: 74px;
    height: 1px;

    background:
        linear-gradient(
            to right,
            #4cc515,
            rgba(76,197,21,0)
        );
}


/* ANA BAŞLIK */

.global-vision-title h2 {
    margin: 0;

    max-width: 720px;

    color: #07172b;

    font-size: clamp(38px, 3.4vw, 54px);
    line-height: 1.07;

    font-weight: 800;

    letter-spacing: -1.8px;
}


.global-vision-title h2 strong {
    display: block;

    margin-top: 3px;

    color: #07172b;

    font-weight: 500;
}


/* =====================================================
   SAĞ AÇIKLAMA
===================================================== */

.global-vision-description {
    max-width: 390px;

    padding-bottom: 4px;
}


.global-vision-small-line {
    display: block;

    width: 42px;
    height: 2px;

    margin-bottom: 16px;

    border-radius: 50px;

    background:
        linear-gradient(
            to right,
            #59cf18,
            #34aa0c
        );
}


.global-vision-description p {
    margin: 0;

    color: #687684;

    font-size: 12px;
    line-height: 1.75;
}


/* =====================================================
   İSTATİSTİK ALANI
===================================================== */

.global-vision-stats {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    min-height: 235px;

    padding: 0;

    border-top:
        1px solid rgba(8,35,63,0.10);

    border-bottom:
        1px solid rgba(8,35,63,0.08);

    border-radius: 0;

    background: transparent;

    box-shadow: none;

    overflow: visible;

    backdrop-filter: none;

    -webkit-backdrop-filter: none;
}


/* ESKİ İSTATİSTİK ARKA PLANLARINI KAPAT */

.global-vision-stats::before,
.global-vision-stats::after {
    display: none;
}


/* =====================================================
   TEK TEK İSTATİSTİKLER
===================================================== */

.global-stat {
    position: relative;

    z-index: 2;

    min-height: 235px;

    padding:
        32px 38px 30px 0;
}


/* 2. VE 3. ALAN SOL BOŞLUĞU */

.global-stat:not(:first-child) {
    padding-left: 42px;
}


/* DİKEY AYIRICILAR */

.global-stat:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 30px;
    right: 0;

    width: 1px;
    height: calc(100% - 60px);

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(8,35,63,0.13) 18%,
            rgba(8,35,63,0.13) 82%,
            transparent
        );
}


/* HOVER ÜST ÇİZGİ */

.global-stat::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 0;

    width: 0;
    height: 2px;

    border-radius: 50px;

    background:
        linear-gradient(
            to right,
            #55cc17,
            rgba(85,204,23,0)
        );

    transition:
        width 0.45s ease;
}


.global-stat:not(:first-child)::before {
    left: 42px;
}


.global-stat:hover::before {
    width: 62px;
}


/* =====================================================
   INDEX
===================================================== */

.global-stat-index {
    display: block;

    margin-bottom: 21px;

    color: #46bb12;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}


/* =====================================================
   BÜYÜK RAKAMLAR
===================================================== */

.global-stat-number {
    margin-bottom: 14px;

    color: #07172b;

    font-size: clamp(62px, 5.2vw, 84px);
    line-height: 0.9;

    font-weight: 800;

    letter-spacing: -4px;
}


.global-stat-number span {
    position: relative;

    top: -19px;

    margin-left: 5px;

    color: #4bc315;

    font-size: 26px;

    font-weight: 800;

    letter-spacing: 0;
}


/* =====================================================
   İSTATİSTİK BAŞLIKLARI
===================================================== */

.global-stat h3 {
    margin: 0 0 7px;

    color: #07172b;

    font-size: 15px;
    font-weight: 800;

    letter-spacing: -0.25px;
}


/* =====================================================
   İSTATİSTİK AÇIKLAMALARI
===================================================== */

.global-stat p {
    max-width: 225px;

    margin: 0;

    color: #7a8793;

    font-size: 10px;
    line-height: 1.6;
}


/* =====================================================
   ALT İMZA
===================================================== */

.global-vision-footer {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 8px;

    width: auto;

    margin: 19px 0 0;

    padding: 0;

    background: transparent;

    color: #99a4ae;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 1.15px;
}


.global-vision-dot {
    width: 5px;
    height: 5px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #4dc616;

    box-shadow:
        0 0 9px rgba(77,198,22,0.38);
}


/* =====================================================
   ESKİ KART KÖŞE TANIMLARINI SIFIRLA
===================================================== */

.global-vision-stats .global-stat:first-child,
.global-vision-stats .global-stat:last-child {
    border-radius: 0;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .global-vision-section {
        padding:
            18px 0 38px;
    }


    .global-vision-section .container {
        padding:
            48px 38px 38px;

        border-radius: 34px;
    }


    .global-vision-header {
        grid-template-columns: 1fr;

        gap: 27px;

        margin-bottom: 40px;
    }


    .global-vision-description {
        max-width: 570px;
    }


    .global-stat {
        padding:
            30px 24px 28px 0;
    }


    .global-stat:not(:first-child) {
        padding-left: 28px;
    }


    .global-stat:not(:first-child)::before {
        left: 28px;
    }

}


/* =====================================================
   MOBİL
===================================================== */

@media (max-width: 700px) {

    .global-vision-section {
        padding:
            12px 0 30px;
    }


    .global-vision-section .container {
        padding:
            38px 23px 30px;

        border-radius: 30px;
    }


    .global-vision-title h2 {
        font-size: 36px;

        letter-spacing: -1.2px;
    }


    .global-vision-eyebrow::after {
        width: 54px;
    }


    .global-vision-header {
        gap: 24px;

        margin-bottom: 32px;
    }


    .global-vision-stats {
        grid-template-columns: 1fr;

        min-height: auto;
    }


    .global-stat {
        min-height: auto;

        padding:
            28px 0 30px !important;
    }


    .global-stat:not(:last-child)::after {
        top: auto;
        right: auto;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 1px;

        background:
            linear-gradient(
                to right,
                rgba(8,35,63,0.14),
                transparent
            );
    }


    .global-stat::before,
    .global-stat:not(:first-child)::before {
        top: -1px;
        left: 0;
    }


    .global-stat-number {
        font-size: 66px;

        letter-spacing: -3.5px;
    }


    .global-stat-number span {
        top: -16px;

        font-size: 24px;
    }


    .global-vision-footer {
        justify-content: flex-start;

        margin-top: 18px;
    }

}

/* =====================================================
   PROJELERE YAKLAŞIMIMIZ
===================================================== */

.project-process-section {
    position: relative;

    padding: 0 0 42px;

    background: transparent;
}


/* =====================================================
   ANA OVAL PANEL
===================================================== */

.project-process-box {
    position: relative;

    padding:
        58px 52px 42px;

    border:
        1px solid rgba(8, 35, 63, 0.10);

    border-radius: 38px;

    background:
        radial-gradient(
            circle at 90% 12%,
            rgba(81, 199, 20, 0.07),
            transparent 27%
        ),
        radial-gradient(
            circle at 2% 100%,
            rgba(25, 103, 176, 0.05),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fbfcfd 58%,
            #f8fafb 100%
        );

    box-shadow:
        0 14px 38px
        rgba(7, 23, 43, 0.055);

    overflow: hidden;
}


/* =========================
   TEKNİK GRID
========================= */

.project-process-box::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 0;

    opacity: 0.34;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(7,23,43,0.026) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(7,23,43,0.026) 1px,
            transparent 1px
        );

    background-size:
        34px 34px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            black 26%,
            black 86%,
            transparent 100%
        );

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            black 26%,
            black 86%,
            transparent 100%
        );
}


/* SAĞ ÜST HAFİF IŞIK */

.project-process-box::after {
    content: "";

    position: absolute;

    top: -150px;
    right: -80px;

    width: 420px;
    height: 420px;

    z-index: 0;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(80,199,20,0.10),
            transparent 68%
        );

    pointer-events: none;
}


/* İÇERİĞİ ÖNE AL */

.project-process-header,
.project-process-flow,
.project-process-footer {
    position: relative;

    z-index: 2;
}


/* =====================================================
   ÜST BAŞLIK
===================================================== */

.project-process-header {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(300px, 0.65fr);

    gap: 85px;

    align-items: end;

    margin-bottom: 72px;
}


/* SOL */

.project-process-title {
    max-width: 740px;
}


.project-process-eyebrow {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 15px;

    color: #45b812;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.15px;
}


.project-process-eyebrow::after {
    content: "";

    width: 75px;
    height: 1px;

    background:
        linear-gradient(
            to right,
            #4bc514,
            transparent
        );
}


.project-process-title h2 {
    margin: 0;

    color: #07172b;

    font-size: clamp(38px, 3.4vw, 54px);
    line-height: 1.07;

    font-weight: 800;

    letter-spacing: -1.8px;
}


.project-process-title h2 strong {
    display: block;

    margin-top: 3px;

    color: #07172b;

    font-weight: 500;
}


/* SAĞ */

.project-process-description {
    max-width: 390px;

    padding-bottom: 4px;
}


.project-process-line {
    display: block;

    width: 42px;
    height: 2px;

    margin-bottom: 16px;

    border-radius: 50px;

    background:
        linear-gradient(
            to right,
            #58cf18,
            #35a90d
        );
}


.project-process-description p {
    margin: 0;

    color: #687684;

    font-size: 12px;
    line-height: 1.75;
}


/* =====================================================
   SÜREÇ AKIŞI
===================================================== */

.project-process-flow {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 0;

    padding-top: 30px;
}


/* ANA YATAY HAT */

.project-process-track {
    position: absolute;

    top: 40px;
    left: 8%;

    width: 84%;
    height: 1px;

    background:
        linear-gradient(
            to right,
            rgba(71,184,18,0),
            rgba(71,184,18,0.38) 12%,
            rgba(32,111,177,0.24) 50%,
            rgba(71,184,18,0.38) 88%,
            rgba(71,184,18,0)
        );
}


/* HER AŞAMA */

.project-process-step {
    position: relative;

    padding:
        0 34px;

    text-align: left;
}


/* DÜĞÜM */

.project-process-node {
    position: relative;

    width: 22px;
    height: 22px;

    margin:
        0 0 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid rgba(69,184,18,0.34);

    background: #ffffff;

    box-shadow:
        0 0 0 7px rgba(76,197,21,0.035);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}


.project-process-node span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #4bc515;

    box-shadow:
        0 0 8px rgba(75,197,21,0.40);
}


.project-process-step:hover .project-process-node {
    transform: scale(1.08);

    border-color:
        rgba(69,184,18,0.65);

    box-shadow:
        0 0 0 9px
        rgba(76,197,21,0.055);
}


/* INDEX */

.project-process-index {
    display: block;

    margin-bottom: 10px;

    color: #45b812;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}


/* BAŞLIK */

.project-process-step h3 {
    margin: 0 0 10px;

    color: #07172b;

    font-size: 17px;
    font-weight: 800;

    letter-spacing: -0.3px;
}


/* AÇIKLAMA */

.project-process-step p {
    max-width: 220px;

    margin: 0;

    color: #778493;

    font-size: 10px;
    line-height: 1.65;
}


/* =====================================================
   ALT İMZA
===================================================== */

.project-process-footer {
    display: flex;

    justify-content: flex-end;
    align-items: center;

    gap: 8px;

    margin-top: 38px;

    padding-top: 19px;

    border-top:
        1px solid rgba(8,35,63,0.08);

    color: #99a4ae;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 1.15px;
}


.project-process-footer-dot {
    width: 5px;
    height: 5px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #4dc616;

    box-shadow:
        0 0 9px
        rgba(77,198,22,0.38);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .project-process-box {
        padding:
            48px 38px 38px;

        border-radius: 34px;
    }


    .project-process-header {
        grid-template-columns: 1fr;

        gap: 27px;

        margin-bottom: 55px;
    }


    .project-process-description {
        max-width: 570px;
    }


    .project-process-step {
        padding:
            0 20px;
    }

}


/* =====================================================
   MOBİL
===================================================== */

@media (max-width: 700px) {

    .project-process-section {
        padding:
            12px 0 30px;
    }


    .project-process-box {
        padding:
            38px 23px 30px;

        border-radius: 30px;
    }


    .project-process-title h2 {
        font-size: 36px;

        letter-spacing: -1.2px;
    }


    .project-process-header {
        gap: 24px;

        margin-bottom: 38px;
    }


    .project-process-flow {
        grid-template-columns: 1fr;

        gap: 0;

        padding-top: 0;
    }


    .project-process-track {
        top: 0;
        left: 10px;

        width: 1px;
        height: calc(100% - 30px);

        background:
            linear-gradient(
                to bottom,
                rgba(71,184,18,0),
                rgba(71,184,18,0.38) 10%,
                rgba(32,111,177,0.24) 50%,
                rgba(71,184,18,0.38) 90%,
                rgba(71,184,18,0)
            );
    }


    .project-process-step {
        display: grid;

        grid-template-columns:
            24px 1fr;

        gap: 20px;

        padding:
            0 0 30px;
    }


    .project-process-node {
        margin: 0;
    }


    .project-process-step-content {
        padding-bottom: 6px;
    }


    .project-process-step p {
        max-width: 100%;
    }


    .project-process-footer {
        justify-content: flex-start;

        margin-top: 5px;
    }

}

/* =====================================================
   SAHADAN PROJELER
===================================================== */

.projects-showcase-section {
    position: relative;
    padding: 0 0 42px;
    background: transparent;
}


/* =====================================================
   ANA PANEL
===================================================== */

.projects-showcase-box {
    position: relative;
    padding: 58px 52px 48px;
    border: 1px solid rgba(8, 35, 63, 0.09);
    border-radius: 38px;

    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(81, 199, 20, 0.06),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fbfcfd 100%
        );

    box-shadow:
        0 14px 38px rgba(7, 23, 43, 0.05);

    overflow: hidden;
}


/* =====================================================
   ÜST BAŞLIK
===================================================== */

.projects-showcase-header {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(320px, 0.7fr);

    gap: 80px;

    align-items: end;

    margin-bottom: 46px;
}


.projects-showcase-title {
    max-width: 730px;
}


.projects-showcase-eyebrow {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 15px;

    color: #45b812;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.15px;
}


.projects-showcase-eyebrow::after {
    content: "";

    width: 74px;
    height: 1px;

    background:
        linear-gradient(
            to right,
            #4bc515,
            transparent
        );
}


.projects-showcase-title h2 {
    margin: 0;

    color: #07172b;

    font-size: clamp(38px, 3.4vw, 54px);
    line-height: 1.07;

    font-weight: 800;

    letter-spacing: -1.8px;
}


.projects-showcase-title h2 strong {
    display: block;

    margin-top: 3px;

    font-weight: 500;
}


/* =====================================================
   SAĞ AÇIKLAMA
===================================================== */

.projects-showcase-side p {
    max-width: 390px;

    margin:
        0 0 22px;

    color: #687684;

    font-size: 12px;
    line-height: 1.75;
}


/* =====================================================
   FİLTRELER
===================================================== */

.projects-filter {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;
}


.project-filter-btn {
    appearance: none;

    padding:
        8px 13px;

    border:
        1px solid rgba(8,35,63,0.09);

    border-radius: 100px;

    background:
        rgba(255,255,255,0.72);

    color: #7d8994;

    font-family: inherit;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.45px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.project-filter-btn:hover {
    color: #07172b;

    border-color:
        rgba(75,197,21,0.28);
}


.project-filter-btn.active {
    border-color: #49bf14;

    background: #49bf14;

    color: #ffffff;

    box-shadow:
        0 7px 18px
        rgba(73,191,20,0.18);
}


/* =====================================================
   PROJE GRID
===================================================== */

.projects-showcase-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}


/* =====================================================
   PROJE KARTI
===================================================== */

.project-showcase-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;

    border:
        1px solid rgba(8,35,63,0.08);

    border-radius: 28px;

    background: #ffffff;

    overflow: hidden;

    text-decoration: none;

    box-shadow:
        0 10px 24px
        rgba(7,23,43,0.035);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* HOVER ÜST YEŞİL HAT */

.project-showcase-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    z-index: 5;

    background:
        linear-gradient(
            to right,
            transparent,
            #51c918 18%,
            #51c918 82%,
            transparent
        );

    opacity: 0;

    transform:
        scaleX(0);

    transform-origin:
        left center;

    transition:
        transform 0.4s ease,
        opacity 0.25s ease;
}


.project-showcase-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(75,197,21,0.19);

    box-shadow:
        0 20px 42px
        rgba(7,23,43,0.08);
}


.project-showcase-card:hover::before {
    opacity: 1;

    transform:
        scaleX(1);
}


/* =====================================================
   FOTOĞRAF
===================================================== */

.project-showcase-image {
    position: relative;

    height: 260px;

    overflow: hidden;

    background: #edf1f3;
}


.project-showcase-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5,21,38,0.18),
            transparent 48%
        );

    pointer-events: none;
}


.project-showcase-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.65s
        cubic-bezier(.2,.7,.2,1);
}


.project-showcase-card:hover
.project-showcase-image img {
    transform:
        scale(1.045);
}


/* FOTOĞRAF ETİKETİ */

.project-showcase-category {
    position: absolute;

    left: 18px;
    bottom: 17px;

    z-index: 3;

    padding:
        7px 10px;

    border:
        1px solid rgba(255,255,255,0.24);

    border-radius: 100px;

    background:
        rgba(5,26,45,0.58);

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);

    color: #ffffff;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 0.8px;
}


/* =====================================================
   KART İÇERİĞİ
===================================================== */

.project-showcase-content {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding:
        24px 23px 22px;
}


.project-showcase-meta {
    display: block;

    margin-bottom: 11px;

    color: #4abd15;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.75px;
}


.project-showcase-content h3 {
    max-width: 310px;

    margin:
        0 0 26px;

    color: #07172b;

    font-size: 18px;
    line-height: 1.3;

    font-weight: 800;

    letter-spacing: -0.45px;
}


/* =====================================================
   KART ALT KISMI
===================================================== */

.project-showcase-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: auto;

    padding-top: 17px;

    border-top:
        1px solid rgba(8,35,63,0.07);

    color: #85919c;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.5px;
}


.project-showcase-arrow {
    color: #07172b;

    font-size: 18px;
    font-weight: 500;

    transition:
        transform 0.28s ease,
        color 0.28s ease;
}


.project-showcase-card:hover
.project-showcase-arrow {
    color: #4bc515;

    transform:
        translateX(4px);
}


/* =====================================================
   DAHA FAZLA
===================================================== */

.projects-showcase-footer {
    display: flex;

    justify-content: center;

    margin-top: 34px;
}


.projects-showcase-more {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding:
        12px 18px;

    border:
        1px solid rgba(8,35,63,0.10);

    border-radius: 100px;

    color: #07172b;

    background: #ffffff;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.35px;

    text-decoration: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}


.projects-showcase-more span {
    color: #4bc515;

    font-size: 17px;
    line-height: 1;
}


.projects-showcase-more:hover {
    transform:
        translateY(-2px);

    border-color:
        rgba(75,197,21,0.28);

    box-shadow:
        0 10px 22px
        rgba(7,23,43,0.06);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .projects-showcase-box {
        padding:
            48px 38px 40px;

        border-radius: 34px;
    }


    .projects-showcase-header {
        grid-template-columns:
            1fr;

        gap: 26px;

        margin-bottom: 38px;
    }


    .projects-showcase-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =====================================================
   MOBİL
===================================================== */

@media (max-width: 700px) {

    .projects-showcase-section {
        padding:
            0 0 30px;
    }


    .projects-showcase-box {
        padding:
            38px 23px 30px;

        border-radius: 30px;
    }


    .projects-showcase-title h2 {
        font-size: 36px;

        letter-spacing: -1.2px;
    }


    .projects-showcase-grid {
        grid-template-columns:
            1fr;

        gap: 18px;
    }


    .project-showcase-image {
        height: 235px;
    }


    .projects-filter {
        gap: 6px;
    }


    .project-showcase-content h3 {
        font-size: 17px;
    }

}