/* ============================================================
   KOÜ TEKNOPARK
   /assets/css/style.css
   ============================================================ */


/* ============================================================
   ROOT
   ============================================================ */

:root {
    --kou-blue: #123d60;
    --kou-blue-dark: #0d3150;
    --kou-blue-deeper: #092a45;

    --kou-white: #ffffff;
    --kou-black: #121212;
    --kou-text: #1a1a1a;
    --kou-muted: #6d7680;

    --header-height: 92px;

    --container-wide: 1860px;
    --container-main: 1600px;

    --font-serif: "Baskervville", Georgia, "Times New Roman", serif;
    --font-main: "Montserrat", Arial, sans-serif;
    --font-alt: "Josefin Sans", Arial, sans-serif;

    --ease: cubic-bezier(.22, .61, .36, 1);
}


/* ============================================================
   RESET
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    min-width: 320px;
    background: #ffffff;
    color: var(--kou-text);
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

body.mobile-menu-open,
body.popup-open {
    overflow: hidden;
}

form {
    margin: 0;
    padding: 0;
}

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

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

button {
    border: 0;
}

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

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

[hidden] {
    display: none !important;
}


/* ============================================================
   ACCESSIBILITY
   ============================================================ */

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

.skip-link {
    position: fixed;
    z-index: 999999;
    top: 12px;
    left: 12px;
    padding: 10px 18px;
    border-radius: 4px;
    background: #ffffff;
    color: var(--kou-blue);
    font-weight: 700;
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}


/* ============================================================
   PRELOADER
   ============================================================ */

.site-preloader {
    position: fixed;
    z-index: 999999;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--kou-blue);
    transition:
        opacity .4s ease,
        visibility .4s ease;
}

.site-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-preloader__ring {
    position: relative;
    width: 52px;
    height: 52px;
    border: 2px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
}

.site-preloader__ring::before {
    content: "";
    position: absolute;
    inset: -2px;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: preloaderSpin .85s linear infinite;
}

.site-preloader__ring span {
    display: none;
}

@keyframes preloaderSpin {
    to {
        transform: rotate(360deg);
    }
}


/* ============================================================
   MAIN
   ============================================================ */

.site-main {
    position: relative;
    z-index: 1;
    width: 100%;
}


/* ============================================================
   HEADER
   ============================================================ */

.site-header {
    z-index: 10000;
    width: 100%;
    height: var(--header-height);
    background: var(--kou-blue);
    color: #ffffff;
    transition:
        background-color .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}


/*
   Anasayfada menü hero'nun altına oturuyor.
*/

.home-page .site-header {
    position: absolute;
    top: calc(100vh - var(--header-height));
    left: 0;
    right: 0;
}


/*
   JS .is-sticky verdiğinde ekranın üstüne gelir.
*/

.site-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .16);
    animation: headerDrop .32s ease both;
}

@keyframes headerDrop {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


/*
   İç sayfalar.
*/

.inner-page .site-header {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
}


/* ============================================================
   DESKTOP HEADER
   ============================================================ */

.desktop-header {
    display: block;
    width: 100%;
    height: var(--header-height);
}

.desktop-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - 54px), var(--container-wide));
    height: 100%;
    margin: 0 auto;
    gap: 24px;
}

.desktop-navigation {
    flex: 1 1 auto;
    min-width: 0;
    height: 100%;
}

.desktop-navigation__list {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    height: 100%;
}

.desktop-navigation__item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.desktop-navigation__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 100%;
    padding: 0 17px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, .96);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition:
        color .2s ease,
        background-color .2s ease;
}

.desktop-navigation__link::after {
    content: "";
    position: absolute;
    right: 17px;
    bottom: 23px;
    left: 17px;
    height: 1px;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.desktop-navigation__link:hover,
.desktop-navigation__link.is-active,
.desktop-navigation__dropdown.is-open > .desktop-navigation__link {
    color: #ffffff;
}

.desktop-navigation__link:hover::after,
.desktop-navigation__link.is-active::after {
    transform: scaleX(1);
}

.desktop-navigation__dropdown-button i {
    margin-top: 1px;
    font-size: 10px;
    transition: transform .25s ease;
}

.desktop-navigation__dropdown.is-open
.desktop-navigation__dropdown-button i {
    transform: rotate(180deg);
}


/* ARGE PORTAL */

.desktop-navigation__portal {
    gap: 9px;
    padding-left: 0;
}

.desktop-navigation__portal img {
    flex: 0 0 auto;
    width: 27px;
    height: 27px;
    object-fit: contain;
}


/* ============================================================
   DESKTOP DROPDOWN
   ============================================================ */

.desktop-navigation__submenu {
    position: absolute;
    z-index: 12000;
    top: calc(100% - 8px);
    left: 5px;
    width: 285px;
    padding: 9px 0;
    border-radius: 2px;
    background: #ffffff;
    box-shadow:
        0 13px 38px rgba(0, 0, 0, .18);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;

    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .2s ease;
}

.desktop-navigation__dropdown:hover
.desktop-navigation__submenu,
.desktop-navigation__dropdown.is-open
.desktop-navigation__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.desktop-navigation__submenu li {
    display: block;
}

.desktop-navigation__submenu a {
    display: block;
    padding: 11px 19px;
    color: #333333;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
    transition:
        background-color .18s ease,
        color .18s ease,
        padding-left .18s ease;
}

.desktop-navigation__submenu a:hover {
    padding-left: 24px;
    background: #f4f6f8;
    color: var(--kou-blue);
}


/* ============================================================
   HEADER TOOLS
   ============================================================ */

.desktop-header__tools {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 10px;
    height: 100%;
}


/* STARTUP FACTORY */

.startup-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 145px;
    height: 48px;
}

.startup-logo {
    width: 138px;
    max-height: 43px;
    object-fit: contain;
}


/* ============================================================
   LANGUAGE
   ============================================================ */

.language-buttons,
.mobile-language-buttons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.language-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: transform .2s ease;
}

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

.language-button img {
    width: 25px;
    height: 18px;
    object-fit: cover;
}


/* ============================================================
   SOCIAL HEADER
   ============================================================ */

.header-social-links {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--kou-blue);
    font-size: 13px;
    transition:
        transform .2s ease,
        background-color .2s ease;
}

.header-social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .87);
    color: var(--kou-blue);
}


/* ============================================================
   HEADER SEARCH
   ============================================================ */

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    width: 265px;
    height: 42px;
    margin-left: 4px;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
}

.header-search > i {
    position: absolute;
    z-index: 2;
    left: 17px;
    color: var(--kou-blue);
    font-size: 13px;
    pointer-events: none;
}

.header-search input {
    width: 100%;
    height: 100%;
    padding: 0 52px 0 41px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #555555;
    font-size: 13px;
}

.header-search input::placeholder {
    color: #7a838d;
}

.header-search button {
    position: absolute;
    top: 0;
    right: 0;
    width: 52px;
    height: 100%;
    padding: 0;
    background: transparent;
    color: transparent;
    cursor: pointer;
}


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

.mobile-header,
.mobile-menu,
.mobile-menu-overlay {
    display: none;
}


/* ============================================================
   HERO
   ============================================================ */

.home-hero {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
    background: var(--kou-blue);
}

.home-hero__media {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.home-hero__video {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.home-hero__overlay {
    position: absolute;
    z-index: 2;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(12, 43, 67, .56) 0%,
            rgba(11, 44, 69, .38) 42%,
            rgba(10, 44, 70, .59) 100%
        );
}

.home-hero__content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(900px, calc(100% - 50px));
    margin-bottom: var(--header-height);
    text-align: center;
    color: #ffffff;
}

.home-hero__logo {
    width: min(245px, 40vw);
    max-height: 120px;
    margin: 0 auto 17px;
    object-fit: contain;
}

.home-hero__title {
    margin: 0;
    color: #ffffff;
    font-family: var(--font-serif);
    font-size: clamp(52px, 5.1vw, 86px);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -2px;
    text-transform: uppercase;
    text-shadow: 0 2px 7px rgba(0, 0, 0, .12);
}

.home-hero__line {
    display: block;
    width: min(820px, 86vw);
    height: 1px;
    margin: 27px auto 18px;
    background: rgba(255, 255, 255, .65);
}

.home-hero__description {
    min-height: 70px;
    color: #ffffff;
    font-family: var(--font-serif);
    font-size: clamp(25px, 2.25vw, 39px);
    font-weight: 400;
    line-height: 1.12;
    white-space: pre-line;
}

.home-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    min-height: 44px;
    margin-top: 12px;
    padding: 9px 22px;
    border: 2px solid #ffffff;
    border-radius: 25px;
    background: #ffffff;
    color: #101010;
    font-size: 13px;
    font-weight: 700;
    transition:
        background-color .25s ease,
        color .25s ease,
        transform .25s ease;
}

.home-hero__button:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}


/* ============================================================
   HERO SCROLL
   ============================================================ */

.home-hero__scroll {
    position: absolute;
    z-index: 5;
    bottom: calc(var(--header-height) + 38px);
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 48px;
    transform: translateX(-50%);
}

.home-hero__mouse {
    position: relative;
    display: block;
    width: 22px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, .7);
    border-radius: 14px;
}

.home-hero__mouse span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 3px;
    height: 7px;
    border-radius: 4px;
    background: #ffffff;
    transform: translateX(-50%);
    animation: mouseScroll 1.8s ease infinite;
}

@keyframes mouseScroll {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 12px);
    }
}


/* ============================================================
   HERO ENTRY ANIMATIONS
   ============================================================ */

.home-animation-logo {
    animation: heroFadeUp .8s .1s both;
}

.home-animation-title {
    animation: heroFadeUp .85s .22s both;
}

.home-animation-line {
    animation: heroLine .9s .4s both;
}

.home-animation-button {
    animation: heroFadeUp .85s .55s both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroLine {
    from {
        opacity: 0;
        transform: scaleX(.3);
    }

    to {
        opacity: 1;
        transform: scaleX(1);
    }
}


/* ============================================================
   HOME ABOUT
   ============================================================ */

.home-about {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    padding: 52px 30px;
    background: var(--kou-blue);
    color: #ffffff;
    text-align: center;
}

.home-about__inner {
    width: min(1080px, 100%);
    margin: 0 auto;
}

.home-about h2 {
    margin: 0 0 22px;
    color: #ffffff;
    font-family: var(--font-main);
    font-size: clamp(24px, 2vw, 34px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: .2px;
}

.home-about p {
    max-width: 900px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .95);
    font-family: var(--font-main);
    font-size: clamp(14px, 1.12vw, 18px);
    font-weight: 400;
    line-height: 1.65;
}


/* ============================================================
   BIG IMAGE SLIDESHOW
   ============================================================ */

.home-slideshow {
    position: relative;
    width: 100%;
    height: 735px;
    overflow: hidden;
    background: #d5dce0;
}

.home-slideshow__viewport,
.home-slideshow__track {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.home-slideshow__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.home-slideshow__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* SLIDER OKLARI */

.home-slideshow__arrow {
    position: absolute;
    z-index: 8;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 64px;
    margin-top: -32px;
    padding: 0;
    border: 0;
    background: rgba(7, 42, 66, .30);
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    transition:
        opacity .2s ease,
        background-color .2s ease;
}

.home-slideshow:hover
.home-slideshow__arrow {
    opacity: 1;
}

.home-slideshow__arrow:hover {
    background: rgba(7, 42, 66, .72);
}

.home-slideshow__arrow--prev {
    left: 0;
}

.home-slideshow__arrow--next {
    right: 0;
}


/* SLIDER DOTS */

.home-slideshow__dots {
    position: absolute;
    z-index: 8;
    right: 0;
    bottom: 18px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.home-slideshow__dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 1px solid #ffffff;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition:
        width .25s ease,
        border-radius .25s ease,
        background-color .25s ease;
}

.home-slideshow__dot.is-current {
    width: 28px;
    border-radius: 10px;
    background: #ffffff;
}

/* ============================================================
   QUICK LINKS
   ORİJİNAL KOÜ TEKNOPARK GEÇİŞ ALANI
   ============================================================ */

.home-quick-links {
    position: relative;
    z-index: 30;

    width: 100%;
    height: 360px;

    /*
     * Sliderların üzerine biniyoruz.
     */
    margin-top: -135px;
    margin-bottom: -135px;

    overflow: hidden;

    background: transparent;
}


/*
 * Mavi + blur geçişi.
 *
 * Üst ve alt tamamen mavi kesilmiyor.
 * Slider görselleri arkasından görünmeye devam ediyor.
 */

.home-quick-links__overlay {
    position: absolute;
    z-index: 1;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,

            rgba(18, 61, 96, 0.10) 0%,

            rgba(18, 61, 96, 0.58) 12%,

            rgba(18, 61, 96, 0.92) 30%,

            rgba(18, 61, 96, 0.98) 47%,

            rgba(18, 61, 96, 0.98) 53%,

            rgba(18, 61, 96, 0.92) 70%,

            rgba(18, 61, 96, 0.58) 88%,

            rgba(18, 61, 96, 0.10) 100%
        );

    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}


/*
 * İçerikler orta hatta.
 */

.home-quick-links__inner {
    position: relative;
    z-index: 3;

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

    width: 100%;
    height: 100%;

    padding: 0 14px;
}


/* ============================================================
   QUICK LINK ITEM
   ============================================================ */

.home-quick-link {
    position: relative;

    flex: 1 1 20%;

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

    gap: 20px;

    min-width: 0;
    height: 100%;

    padding: 0 20px;

    color: #ffffff;
    text-align: left;

    transition:
        opacity .25s ease,
        transform .25s ease;
}


/*
 * Referansta aralarda bizim yaptığımız
 * dikey ayırıcı çizgiler YOK.
 */

.home-quick-link + .home-quick-link {
    border-left: 0;
}


.home-quick-link:hover {
    color: #ffffff;

    background: transparent;

    transform: translateY(-2px);
}


/* ============================================================
   BEYAZ KOÜ İKONU
   ============================================================ */

.home-quick-link__icon {
    display: block;

    flex: 0 0 auto;

    width: 48px;
    height: 48px;

    padding: 0;
    margin: 0;

    object-fit: contain;
}


/* ============================================================
   MENÜ YAZISI
   ============================================================ */

.home-quick-link__text {
    display: block;

    color: #ffffff;

    font-family: var(--font-main);

    font-size: clamp(
        20px,
        1.55vw,
        30px
    );

    font-weight: 600;

    line-height: 1.1;

    white-space: nowrap;
}


/* ============================================================
   STARTUP FACTORY
   ============================================================ */

.home-quick-link--startup {
    justify-content: center;

    padding-right: 28px;
    padding-left: 28px;
}


.home-quick-link__startup-image {
    display: block;

    width: min(
        310px,
        95%
    );

    max-height: 92px;

    object-fit: contain;

    transition:
        transform .25s ease;
}


.home-quick-link--startup:hover
.home-quick-link__startup-image {
    transform: scale(1.025);
}


/* ============================================================
   SLIDERLAR QUICK MENU'NUN ARKASINDA KALSIN
   ============================================================ */

.home-slideshow {
    position: relative;

    z-index: 2;
}


/*
 * Slider görseli quick menu'nun arkasına
 * kadar devam eder.
 */

.home-slideshow__viewport,
.home-slideshow__track,
.home-slideshow__slide {
    height: 100%;
}


/* ============================================================
   DESKTOP 1600
   ============================================================ */

@media (max-width: 1600px) {

    .home-quick-links {
        height: 330px;

        margin-top: -120px;
        margin-bottom: -120px;
    }


    .home-quick-link {
        gap: 15px;

        padding-right: 14px;
        padding-left: 14px;
    }


    .home-quick-link__icon {
        width: 43px;
        height: 43px;
    }


    .home-quick-link__text {
        font-size: 22px;
    }


    .home-quick-link__startup-image {
        width: 250px;
    }

}


/* ============================================================
   DESKTOP 1366
   ============================================================ */

@media (max-width: 1366px) {

    .home-quick-links {
        height: 300px;

        margin-top: -105px;
        margin-bottom: -105px;
    }


    .home-quick-link {
        gap: 12px;

        padding-right: 10px;
        padding-left: 10px;
    }


    .home-quick-link__icon {
        width: 38px;
        height: 38px;
    }


    .home-quick-link__text {
        font-size: 18px;
    }


    .home-quick-link__startup-image {
        width: 215px;
    }

}


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

@media (max-width: 1100px) {

    .home-quick-links {
        height: auto;

        margin-top: -70px;
        margin-bottom: -70px;

        padding-top: 85px;
        padding-bottom: 85px;
    }


    .home-quick-links__inner {
        flex-wrap: wrap;

        height: auto;

        padding-right: 20px;
        padding-left: 20px;
    }


    .home-quick-link {
        flex: 1 1 50%;

        min-height: 100px;

        height: auto;

        justify-content: flex-start;

        padding: 20px 35px;
    }


    .home-quick-link--startup {
        flex-basis: 100%;

        justify-content: center;
    }


    .home-quick-link__text {
        font-size: 20px;
    }

}


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

@media (max-width: 600px) {

    .home-quick-links {
        margin-top: -45px;
        margin-bottom: -45px;

        padding-top: 65px;
        padding-bottom: 65px;
    }


    .home-quick-links__overlay {
        background:
            linear-gradient(
                to bottom,

                rgba(18, 61, 96, 0.15) 0%,

                rgba(18, 61, 96, 0.93) 18%,

                rgba(18, 61, 96, 0.98) 50%,

                rgba(18, 61, 96, 0.93) 82%,

                rgba(18, 61, 96, 0.15) 100%
            );

        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
    }


    .home-quick-link {
        flex: 1 1 100%;

        min-height: 78px;

        justify-content: center;

        padding: 12px 10px;
    }


    .home-quick-link__icon {
        width: 36px;
        height: 36px;
    }


    .home-quick-link__text {
        font-size: 18px;
    }


    .home-quick-link__startup-image {
        width: 210px;
    }

}

/* ============================================================
   COMMON HOME SECTIONS
   ============================================================ */

.home-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 55px 25px;
    background: #ffffff;
}

.home-section__inner {
    width: min(100%, var(--container-main));
    margin: 0 auto;
}

.home-section__header {
    margin: 0 auto 42px;
    text-align: center;
}

.home-section__header h2 {
    margin: 0;
    color: var(--kou-blue);
    font-family: var(--font-main);
    font-size: clamp(34px, 3.25vw, 58px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 3px;
}

.home-section__button-row {
    display: none;
}


/* ============================================================
   CAROUSEL BASE
   ============================================================ */

.home-carousel {
    position: relative;
    width: 100%;
}

.home-carousel__viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.home-carousel__track {
    display: flex;
    align-items: stretch;
    will-change: transform;
}

.home-carousel__arrow {
    position: absolute;
    z-index: 9;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 58px;
    margin-top: -29px;
    padding: 0;
    background: transparent;
    color: var(--kou-blue);
    font-size: 27px;
    cursor: pointer;
    transition:
        color .2s ease,
        transform .2s ease;
}

.home-carousel__arrow:hover {
    color: #061e31;
    transform: scale(1.08);
}

.home-carousel__arrow--prev {
    left: -22px;
}

.home-carousel__arrow--next {
    right: -22px;
}


/* ============================================================
   COMPANIES
   ============================================================ */

.home-companies {
    padding-top: 64px;
    padding-bottom: 30px;
}

.home-carousel--companies {
    padding: 0 12px;
}

.home-carousel--companies
.home-carousel__viewport {
    padding: 0 1px;
}

.home-carousel--companies
.home-carousel__track {
    gap: 18px;
}

.home-company-card {
    flex: 0 0 calc((100% - 108px) / 7);
    min-width: 0;
}

.home-company-card__link {
    display: block;
    width: 100%;
}

.home-company-card__image-wrap {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #ffffff;
}

.home-company-card__image-wrap img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform .3s ease;
}

.home-company-card:hover
.home-company-card__image-wrap img {
    transform: scale(1.04);
}


/* ============================================================
   EVENTS
   ============================================================ */

.home-events {
    padding-top: 20px;
    padding-bottom: 40px;
}

.home-events
.home-section__header {
    margin-bottom: 33px;
}

.home-carousel--events {
    padding: 0 8px 34px;
}

.home-carousel--events
.home-carousel__track {
    gap: 20px;
}

.home-event-card {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
}

.home-event-card__link {
    display: block;
    color: #111111;
}

.home-event-card__image-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 8.5;
    overflow: hidden;
    border-radius: 3px;
    background: #eef1f4;
}

.home-event-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s var(--ease);
}

.home-event-card:hover
.home-event-card__image-wrap img {
    transform: scale(1.035);
}

.home-event-card__content {
    display: block;
    padding: 9px 1px 0;
}

.home-event-card__title {
    display: block;
    color: #1e1e1e;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
}


/* EVENT DOTS */

.home-carousel__dots {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.home-carousel__dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--kou-blue);
    opacity: .95;
    cursor: pointer;
}

.home-carousel__dot.is-current {
    box-shadow:
        0 0 0 2px #ffffff,
        0 0 0 3px var(--kou-blue);
}


/* ============================================================
   PARTNERS
   ============================================================ */

.home-partners {
    padding-top: 24px;
    padding-bottom: 75px;
}

.home-partners
.home-section__header {
    margin-bottom: 48px;
}

.home-partners__list {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px 60px;
    margin: 0 auto;
}

.home-partner-card {
    flex: 0 1 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 105px;
}

.home-partner-card img {
    width: 100%;
    max-width: 195px;
    max-height: 140px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .92;
    transition:
        filter .3s ease,
        opacity .3s ease,
        transform .3s ease;
}

.home-partner-card:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.04);
}


/* ============================================================
   EMPTY DATA
   ============================================================ */

.home-data-empty {
    width: min(800px, 100%);
    margin: 30px auto;
    padding: 22px;
    border: 1px solid #e1e6ea;
    border-radius: 4px;
    color: #7a838b;
    font-size: 14px;
    text-align: center;
}


/* ============================================================
   OUTLINE BUTTON
   ============================================================ */

.home-outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 9px 19px;
    border: 1px solid var(--kou-blue);
    color: var(--kou-blue);
    font-size: 13px;
    font-weight: 600;
    transition:
        color .2s ease,
        background-color .2s ease;
}

.home-outline-button:hover {
    background: var(--kou-blue);
    color: #ffffff;
}


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

.site-footer {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

.site-footer__gradient {
    position: relative;
    width: 100%;
    min-height: 610px;
    padding: 55px 35px 0;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #e2eaf0 15%,
            #9caec0 48%,
            #315775 76%,
            #123d60 100%
        );
}

.site-footer__inner {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: min(1250px, 100%);
    min-height: 555px;
    margin: 0 auto;
    gap: 70px;
}

.site-footer__visual {
    flex: 0 1 48%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: stretch;
}

.site-footer__visual img {
    width: min(550px, 100%);
    max-height: 540px;
    object-fit: contain;
    object-position: center bottom;
}

.site-footer__right {
    flex: 0 1 48%;
    align-self: flex-end;
    padding-bottom: 18px;
}

.site-footer__map {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1.16 / 1;
    margin: 0 auto;
    overflow: hidden;
    background: #24394b;
}

.site-footer__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) brightness(.62) contrast(1.15);
}

.site-footer__contact {
    width: 100%;
    max-width: 520px;
    margin: 22px auto 0;
    color: #ffffff;
}

.site-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.4;
}

.site-footer__contact li i {
    flex: 0 0 14px;
    margin-top: 2px;
    text-align: center;
}

.site-footer__contact a {
    color: #ffffff;
}

.site-footer__contact a:hover {
    text-decoration: underline;
}


/* ============================================================
   SCROLL TOP
   ============================================================ */

.scroll-top {
    position: fixed;
    z-index: 5000;
    right: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    background: var(--kou-blue);
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .17);
    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* ============================================================
   POPUP
   ============================================================ */

.site-popup {
    position: fixed;
    z-index: 100000;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.site-popup.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-popup__backdrop {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    background: rgba(0, 0, 0, .72);
    cursor: pointer;
}

.site-popup__dialog {
    position: relative;
    z-index: 2;
    width: min(640px, 100%);
    max-height: calc(100vh - 50px);
    overflow: auto;
    border-radius: 4px;
    background: #ffffff;
    box-shadow: 0 25px 80px rgba(0, 0, 0, .30);
}

.site-popup__close {
    position: absolute;
    z-index: 5;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #111111;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .16);
    cursor: pointer;
}

.site-popup__image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.site-popup__content {
    padding: 28px 30px;
}

.site-popup__content h2 {
    margin: 0 0 12px;
    color: var(--kou-blue);
    font-size: 25px;
    line-height: 1.25;
}

.site-popup__content p {
    margin: 0 0 15px;
    color: #555555;
    font-size: 14px;
}

.site-popup__editor {
    color: #444444;
    font-size: 14px;
}

.site-popup__editor img {
    max-width: 100%;
    height: auto;
}

.site-popup__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    margin-top: 19px;
    padding: 8px 19px;
    border-radius: 2px;
    background: var(--kou-blue);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}


/* ============================================================
   GOOGLE TRANSLATE
   ============================================================ */

.google-translate-element {
    position: fixed;
    top: -9999px;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.goog-te-banner-frame,
.skiptranslate iframe {
    display: none !important;
}

body {
    top: 0 !important;
}


/* ============================================================
   1600
   ============================================================ */

@media (max-width: 1600px) {

    :root {
        --header-height: 84px;
    }

    .desktop-header__inner {
        width: calc(100% - 34px);
        gap: 14px;
    }

    .desktop-navigation__link {
        padding-right: 12px;
        padding-left: 12px;
        font-size: 17px;
    }

    .desktop-navigation__link::after {
        right: 12px;
        left: 12px;
    }

    .startup-logo-link {
        width: 120px;
    }

    .startup-logo {
        width: 114px;
    }

    .header-social-link {
        width: 27px;
        height: 27px;
        font-size: 11px;
    }

    .header-search {
        width: 215px;
        height: 38px;
    }

    .home-slideshow {
        height: 650px;
    }

    .home-company-card {
        flex-basis: calc((100% - 90px) / 6);
    }
}


/* ============================================================
   1366
   ============================================================ */

@media (max-width: 1366px) {

    .desktop-header__inner {
        width: calc(100% - 24px);
    }

    .desktop-navigation__link {
        padding-right: 9px;
        padding-left: 9px;
        font-size: 11px;
    }

    .desktop-navigation__link::after {
        right: 9px;
        left: 9px;
    }

    .desktop-navigation__portal {
        padding-left: 0;
    }

    .desktop-navigation__portal img {
        width: 23px;
        height: 23px;
    }

    .startup-logo-link {
        width: 105px;
    }

    .startup-logo {
        width: 102px;
    }

    .desktop-header__tools {
        gap: 6px;
    }

    .language-button {
        width: 23px;
        height: 23px;
    }

    .language-button img {
        width: 22px;
        height: 16px;
    }

    .header-social-link {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .header-search {
        width: 178px;
    }

    .header-search input {
        font-size: 11px;
    }

    .home-hero__title {
        font-size: clamp(52px, 5.4vw, 74px);
    }

    .home-slideshow {
        height: 570px;
    }

    .home-quick-links,
    .home-quick-links__inner {
        min-height: 155px;
    }

    .home-section {
        padding-right: 35px;
        padding-left: 35px;
    }

    .home-company-card {
        flex-basis: calc((100% - 75px) / 6);
    }

    .home-carousel--companies
    .home-carousel__track {
        gap: 15px;
    }
}


/* ============================================================
   TABLET / MOBILE HEADER SWITCH
   ============================================================ */

@media (max-width: 1100px) {

    :root {
        --header-height: 72px;
    }

    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: var(--header-height);
        padding: 0 23px;
    }

    .mobile-header__logo-link {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .mobile-header__logo {
        width: 165px;
        max-height: 48px;
        object-fit: contain;
        object-position: left center;
    }

    .mobile-header__tools {
        display: flex;
        align-items: center;
        gap: 13px;
    }

    .mobile-menu-open {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 5px;
        width: 39px;
        height: 39px;
        padding: 8px;
        background: transparent;
        cursor: pointer;
    }

    .mobile-menu-open span {
        display: block;
        width: 100%;
        height: 2px;
        background: #ffffff;
    }


    /*
       MOBILE MENU
    */

    .mobile-menu {
        position: fixed;
        z-index: 22000;
        top: 0;
        right: 0;
        display: block;
        width: min(430px, 88vw);
        height: 100vh;
        overflow-y: auto;
        background: var(--kou-blue);
        color: #ffffff;
        transform: translateX(105%);
        transition: transform .35s var(--ease);
    }

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

    .mobile-menu-overlay {
        position: fixed;
        z-index: 21000;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        padding: 0;
        background: rgba(0, 0, 0, .56);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
            opacity .3s ease,
            visibility .3s ease;
    }

    .mobile-menu-overlay.is-visible,
    .mobile-menu-overlay.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 82px;
        padding: 15px 21px;
        border-bottom: 1px solid rgba(255, 255, 255, .13);
    }

    .mobile-menu__logo {
        width: 170px;
        max-height: 50px;
        object-fit: contain;
        object-position: left center;
    }

    .mobile-menu__close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        padding: 0;
        background: transparent;
        color: #ffffff;
        font-size: 24px;
        cursor: pointer;
    }

    .mobile-navigation {
        padding: 18px 20px 0;
    }

    .mobile-navigation > ul > li {
        border-bottom: 1px solid rgba(255, 255, 255, .10);
    }

    .mobile-navigation a,
    .mobile-navigation__dropdown-button {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 51px;
        gap: 10px;
        padding: 10px 4px;
        border: 0;
        background: transparent;
        color: #ffffff;
        font-size: 14px;
        font-weight: 500;
        text-align: left;
    }

    .mobile-navigation__dropdown-button {
        justify-content: space-between;
        cursor: pointer;
    }

    .mobile-navigation__dropdown-button i {
        font-size: 11px;
        transition: transform .25s ease;
    }

    .mobile-navigation__dropdown.is-open
    .mobile-navigation__dropdown-button i {
        transform: rotate(180deg);
    }

    .mobile-navigation__submenu {
        display: none;
        padding: 0 0 9px 15px;
    }

    .mobile-navigation__dropdown.is-open
    .mobile-navigation__submenu {
        display: block;
    }

    .mobile-navigation__submenu li {
        border: 0;
    }

    .mobile-navigation__submenu a {
        min-height: 41px;
        padding: 7px 7px;
        color: rgba(255, 255, 255, .82);
        font-size: 12px;
    }

    .mobile-navigation img {
        width: 25px;
        height: 25px;
        object-fit: contain;
    }

    .mobile-search {
        position: relative;
        display: flex;
        width: calc(100% - 40px);
        height: 43px;
        margin: 25px 20px 0;
        overflow: hidden;
        border-radius: 25px;
        background: #ffffff;
    }

    .mobile-search input {
        width: 100%;
        height: 100%;
        padding: 0 55px 0 18px;
        border: 0;
        outline: 0;
        color: #333333;
        font-size: 13px;
    }

    .mobile-search button {
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 100%;
        padding: 0;
        background: transparent;
        color: var(--kou-blue);
        cursor: pointer;
    }

    .mobile-social-links {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 23px 20px 35px;
    }

    .mobile-social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #ffffff;
        color: var(--kou-blue);
        font-size: 13px;
    }


    /*
       HERO
    */

    .home-hero {
        min-height: 640px;
    }

    .home-hero__content {
        margin-bottom: var(--header-height);
    }

    .home-hero__title {
        font-size: clamp(42px, 7vw, 68px);
    }

    .home-hero__description {
        font-size: clamp(21px, 3vw, 31px);
    }


    /*
       BIG SLIDERS
    */

    .home-slideshow {
        height: 510px;
    }


    /*
       QUICK LINKS
    */

    .home-quick-links__inner {
        flex-wrap: wrap;
    }

    .home-quick-link {
        flex: 1 1 33.333%;
        min-height: 130px;
    }

    .home-quick-link + .home-quick-link {
        border-left-color: rgba(255, 255, 255, .07);
    }

    .home-quick-link--startup {
        flex-basis: 33.333%;
    }


    /*
       COMPANIES
    */

    .home-company-card {
        flex-basis: calc((100% - 60px) / 5);
    }


    /*
       EVENTS
    */

    .home-event-card {
        flex-basis: calc((100% - 20px) / 2);
    }


    /*
       FOOTER
    */

    .site-footer__inner {
        gap: 35px;
    }
}


/* ============================================================
   768
   ============================================================ */

@media (max-width: 768px) {

    :root {
        --header-height: 66px;
    }

    .home-page .site-header {
        top: calc(100vh - var(--header-height));
    }

    .mobile-header {
        padding: 0 16px;
    }

    .mobile-header__logo {
        width: 145px;
    }

    .mobile-language-buttons {
        display: none;
    }


    /*
       HERO
    */

    .home-hero {
        height: 100svh;
        min-height: 590px;
    }

    .home-hero__content {
        width: calc(100% - 34px);
        margin-bottom: var(--header-height);
    }

    .home-hero__logo {
        width: 175px;
        max-height: 85px;
        margin-bottom: 15px;
    }

    .home-hero__title {
        font-size: clamp(39px, 10.5vw, 58px);
        line-height: 1;
        letter-spacing: -1px;
    }

    .home-hero__line {
        width: min(520px, 88vw);
        margin: 19px auto 14px;
    }

    .home-hero__description {
        min-height: 58px;
        font-size: clamp(19px, 5vw, 27px);
    }

    .home-hero__button {
        min-height: 40px;
        margin-top: 11px;
        font-size: 12px;
    }

    .home-hero__scroll {
        bottom: calc(var(--header-height) + 23px);
    }


    /*
       ABOUT
    */

    .home-about {
        min-height: auto;
        padding: 48px 20px;
    }

    .home-about h2 {
        margin-bottom: 16px;
        font-size: 22px;
    }

    .home-about p {
        font-size: 13px;
    }


    /*
       SLIDERS
    */

    .home-slideshow {
        height: 390px;
    }

    .home-slideshow__arrow {
        width: 38px;
        height: 52px;
        margin-top: -26px;
        font-size: 18px;
    }


    /*
       QUICK LINKS
    */

    .home-quick-links,
    .home-quick-links__inner {
        min-height: 0;
    }

    .home-quick-link {
        flex: 1 1 50%;
        min-height: 105px;
        padding: 18px 10px;
    }

    .home-quick-link--startup {
        flex-basis: 100%;
    }

    .home-quick-link__text {
        font-size: 15px;
    }

    .home-quick-link--startup img {
        max-width: 215px;
        max-height: 65px;
    }


    /*
       SECTIONS
    */

    .home-section {
        padding: 42px 20px;
    }

    .home-section__header {
        margin-bottom: 28px;
    }

    .home-section__header h2 {
        font-size: 32px;
        letter-spacing: 2px;
    }


    /*
       COMPANIES
    */

    .home-carousel--companies
    .home-carousel__track {
        gap: 12px;
    }

    .home-company-card {
        flex-basis: calc((100% - 24px) / 3);
    }

    .home-carousel__arrow--prev {
        left: -17px;
    }

    .home-carousel__arrow--next {
        right: -17px;
    }


    /*
       EVENTS
    */

    .home-carousel--events
    .home-carousel__track {
        gap: 14px;
    }

    .home-event-card {
        flex-basis: calc((100% - 14px) / 2);
    }

    .home-event-card__title {
        font-size: 12px;
    }


    /*
       PARTNERS
    */

    .home-partners {
        padding-bottom: 50px;
    }

    .home-partners__list {
        justify-content: center;
        gap: 22px 35px;
    }

    .home-partner-card {
        flex-basis: 110px;
        height: 80px;
    }

    .home-partner-card img {
        max-width: 105px;
        max-height: 70px;
    }


    /*
       FOOTER
    */

    .site-footer__gradient {
        padding: 45px 20px 0;
    }

    .site-footer__inner {
        flex-direction: column;
        align-items: center;
        min-height: 0;
        gap: 25px;
    }

    .site-footer__visual {
        flex: none;
        width: 100%;
        align-self: auto;
        order: 2;
    }

    .site-footer__visual img {
        width: min(410px, 100%);
        max-height: 420px;
    }

    .site-footer__right {
        flex: none;
        width: 100%;
        align-self: auto;
        order: 1;
    }

    .site-footer__map {
        max-width: 450px;
    }

    .site-footer__contact {
        max-width: 450px;
    }

    .site-footer__contact li {
        font-size: 11px;
    }
}


/* ============================================================
   540
   ============================================================ */

@media (max-width: 540px) {

    .home-hero__logo {
        width: 145px;
    }

    .home-hero__title {
        font-size: clamp(34px, 10.5vw, 48px);
    }

    .home-hero__description {
        font-size: 18px;
    }

    .home-slideshow {
        height: 310px;
    }

    .home-company-card {
        flex-basis: calc((100% - 12px) / 2);
    }

    .home-event-card {
        flex-basis: 100%;
    }

    .home-quick-link {
        min-height: 92px;
    }

    .home-section__header h2 {
        font-size: 27px;
    }

    .site-popup {
        padding: 12px;
    }

    .site-popup__content {
        padding: 22px 20px;
    }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================================
   FINAL VISUAL MATCH
   Referans ekran görüntülerine göre son masaüstü düzeltmeleri.
   Bu blok DOSYANIN EN SONUNDA kalmalıdır.
   ============================================================ */


/* ============================================================
   HEADER
   ============================================================ */

@media (min-width: 1101px) {

    :root {
        --header-height: 92px;
    }

    .desktop-header__inner {
        width: calc(100% - 54px);
        max-width: 1860px;
        gap: 18px;
    }

    .desktop-navigation {
        flex: 1 1 auto;
        min-width: 0;
    }

    .desktop-navigation__list {
        gap: 0;
    }

    .desktop-navigation__link {
        padding-right: 14px;
        padding-left: 14px;
        font-size: 14px;
        font-weight: 600;
    }

    .desktop-navigation__portal {
        padding-left: 0;
    }

    .desktop-navigation__portal img {
        width: 27px;
        height: 27px;
    }

    .desktop-header__tools {
        flex: 0 0 auto;
        gap: 8px;
    }

    .startup-logo-link {
        width: 142px;
        height: 48px;
    }

    .startup-logo {
        width: 136px;
        max-height: 42px;
    }

    .language-button {
        width: 27px;
        height: 27px;
    }

    .language-button img {
        width: 25px;
        height: 18px;
    }

    .header-social-link {
        width: 29px;
        height: 29px;
        font-size: 12px;
    }

    .header-search {
        width: 255px;
        height: 42px;
        margin-left: 4px;
    }

    .header-search input {
        font-size: 13px;
    }
}


/* ============================================================
   HAKKIMIZDA
   Slider görselinin bu alanın içine sızması kesin olarak engellenir.
   ============================================================ */

.home-about {
    position: relative;
    z-index: 20;
    isolation: isolate;
    overflow: hidden;

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

    min-height: 235px;
    padding: 48px 28px 52px;

    background: #123d60 !important;
    color: #ffffff;

    text-align: center;
}

.home-about::before,
.home-about::after {
    display: none !important;
    content: none !important;
}

.home-about__inner {
    position: relative;
    z-index: 2;

    width: min(1120px, 100%);
    margin: 0 auto;
}

.home-about h2 {
    margin: 0 0 20px;

    color: #ffffff;
    font-family: var(--font-main);

    font-size: clamp(28px, 1.9vw, 36px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: .1px;
}

.home-about p {
    max-width: 1080px;
    margin: 0 auto;

    color: rgba(255, 255, 255, .96);
    font-family: var(--font-main);

    font-size: clamp(15px, .98vw, 18px);
    font-weight: 400;
    line-height: 1.62;
}


/* ============================================================
   ANA SLIDERLAR
   ============================================================ */

.home-slideshow {
    position: relative;
    z-index: 10;
    isolation: isolate;

    width: 100%;
    height: 690px;

    overflow: hidden;
    background: #d9e0e5;
}

.home-slideshow__viewport,
.home-slideshow__track,
.home-slideshow__slide {
    width: 100%;
    height: 100%;
}

.home-slideshow__viewport,
.home-slideshow__track {
    position: relative;
    overflow: hidden;
}

.home-slideshow__slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.home-slideshow__slide img {
    width: 100%;
    height: 100%;

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

.home-slideshow__arrow {
    z-index: 12;
}

.home-slideshow__dots {
    z-index: 14;
}

.home-slideshow--left .home-slideshow__dots {
    bottom: 18px;
}

.home-slideshow--right .home-slideshow__dots {
    bottom: 18px;
}


/* ============================================================
   SLIDERLAR ARASI HIZLI MENÜ
   Referans:
   - yaklaşık 230-250px toplam geçiş alanı
   - merkezde temiz koyu mavi
   - üst ve alt görseller görünür
   - bulanıklık çok düşük
   - iki slider fiziksel olarak birbirinin içine girmez
   ============================================================ */

.home-quick-links {
    position: relative;
    z-index: 30;
    isolation: isolate;

    width: 100%;
    height: 246px;

    margin-top: -74px;
    margin-bottom: -74px;

    overflow: hidden;
    background: transparent;
}

.home-quick-links__overlay {
    position: absolute;
    z-index: 1;
    inset: 0;

    display: block !important;
    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(18, 61, 96, .02) 0%,
            rgba(18, 61, 96, .22) 10%,
            rgba(18, 61, 96, .61) 23%,
            rgba(18, 61, 96, .90) 36%,
            rgba(18, 61, 96, .985) 46%,
            rgba(18, 61, 96, .985) 54%,
            rgba(18, 61, 96, .90) 64%,
            rgba(18, 61, 96, .61) 77%,
            rgba(18, 61, 96, .22) 90%,
            rgba(18, 61, 96, .02) 100%
        );

    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
}

.home-quick-links__overlay::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(9, 42, 69, 0) 0%,
            rgba(9, 42, 69, .05) 18%,
            rgba(9, 42, 69, .14) 37%,
            rgba(9, 42, 69, .18) 50%,
            rgba(9, 42, 69, .14) 63%,
            rgba(9, 42, 69, .05) 82%,
            rgba(9, 42, 69, 0) 100%
        );
}

.home-quick-links__inner {
    position: relative;
    z-index: 3;

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

    width: min(100%, 1900px);
    height: 100%;

    margin: 0 auto;
    padding: 0 26px;
}

.home-quick-link {
    position: relative;

    flex: 1 1 20%;

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

    gap: 17px;

    min-width: 0;
    height: 100%;

    padding: 0 14px;

    border: 0 !important;
    background: transparent !important;

    color: #ffffff;
    text-align: left;

    transition:
        opacity .22s ease,
        transform .22s ease;
}

.home-quick-link + .home-quick-link {
    border-left: 0 !important;
}

.home-quick-link:hover {
    color: #ffffff;
    background: transparent !important;
    transform: translateY(-2px);
}

.home-quick-link__icon {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    flex: 0 0 44px;

    width: 44px;
    height: 44px;

    min-width: 44px;
    max-width: 44px;

    min-height: 44px;
    max-height: 44px;

    margin: 0;
    padding: 0;

    object-fit: contain;
}

.home-quick-link__text {
    display: block;

    color: #ffffff;
    font-family: var(--font-main);

    font-size: clamp(19px, 1.36vw, 28px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -.2px;

    white-space: nowrap;
}

.home-quick-link--startup {
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
}

.home-quick-link__startup-image,
.home-quick-link--startup img {
    display: block;

    width: min(280px, 95%);
    max-width: 280px;
    max-height: 78px;

    margin: 0 auto;

    object-fit: contain;
}


/* ============================================================
   1600
   ============================================================ */

@media (max-width: 1600px) and (min-width: 1367px) {

    :root {
        --header-height: 86px;
    }

    .desktop-navigation__link {
        padding-right: 11px;
        padding-left: 11px;
        font-size: 16px;
    }

    .startup-logo-link {
        width: 122px;
    }

    .startup-logo {
        width: 118px;
    }

    .header-social-link {
        width: 27px;
        height: 27px;
        font-size: 11px;
    }

    .header-search {
        width: 218px;
        height: 39px;
    }

    .home-about {
        min-height: 215px;
        padding: 42px 24px 46px;
    }

    .home-about h2 {
        font-size: 31px;
        margin-bottom: 18px;
    }

    .home-about p {
        font-size: 16px;
        line-height: 1.58;
    }

    .home-slideshow {
        height: 625px;
    }

    .home-quick-links {
        height: 226px;
        margin-top: -66px;
        margin-bottom: -66px;
    }

    .home-quick-links__inner {
        padding-right: 18px;
        padding-left: 18px;
    }

    .home-quick-link {
        gap: 14px;
        padding-right: 10px;
        padding-left: 10px;
    }

    .home-quick-link__icon {
        flex-basis: 39px;

        width: 39px;
        height: 39px;

        min-width: 39px;
        max-width: 39px;

        min-height: 39px;
        max-height: 39px;
    }

    .home-quick-link__text {
        font-size: 21px;
    }

    .home-quick-link__startup-image,
    .home-quick-link--startup img {
        width: 238px;
        max-width: 238px;
        max-height: 68px;
    }
}


/* ============================================================
   1366 DESKTOP
   ============================================================ */

@media (max-width: 1366px) and (min-width: 1101px) {

    :root {
        --header-height: 78px;
    }

    .desktop-header__inner {
        width: calc(100% - 24px);
        gap: 8px;
    }

    .desktop-navigation__link {
        padding-right: 8px;
        padding-left: 8px;
        font-size: 11px;
    }

    .desktop-navigation__portal {
        padding-left: 0;
    }

    .desktop-navigation__portal img {
        width: 23px;
        height: 23px;
    }

    .startup-logo-link {
        width: 104px;
    }

    .startup-logo {
        width: 100px;
        max-height: 34px;
    }

    .desktop-header__tools {
        gap: 5px;
    }

    .language-button {
        width: 23px;
        height: 23px;
    }

    .language-button img {
        width: 22px;
        height: 16px;
    }

    .header-social-link {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .header-search {
        width: 188px;
        height: 38px;
    }

    .header-search input {
        font-size: 11px;
    }

    .home-about {
        min-height: 190px;
        padding: 36px 20px 40px;
    }

    .home-about__inner {
        width: min(980px, 100%);
    }

    .home-about h2 {
        margin-bottom: 15px;
        font-size: 27px;
    }

    .home-about p {
        font-size: 14px;
        line-height: 1.55;
    }

    .home-slideshow {
        height: 560px;
    }

    .home-quick-links {
        height: 200px;
        margin-top: -56px;
        margin-bottom: -56px;
    }

    .home-quick-links__inner {
        padding-right: 8px;
        padding-left: 8px;
    }

    .home-quick-link {
        flex: 1 1 20%;
        gap: 10px;
        padding-right: 7px;
        padding-left: 7px;
    }

    .home-quick-link__icon {
        flex-basis: 33px;

        width: 33px;
        height: 33px;

        min-width: 33px;
        max-width: 33px;

        min-height: 33px;
        max-height: 33px;
    }

    .home-quick-link__text {
        font-size: 17px;
    }

    .home-quick-link--startup {
        flex-basis: 20%;
    }

    .home-quick-link__startup-image,
    .home-quick-link--startup img {
        width: 190px;
        max-width: 190px;
        max-height: 55px;
    }
}


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

@media (max-width: 1100px) {

    .home-about {
        min-height: auto;
        padding: 40px 20px;
    }

    .home-about h2 {
        margin-bottom: 15px;
        font-size: 24px;
    }

    .home-about p {
        font-size: 14px;
        line-height: 1.55;
    }

    .home-slideshow {
        height: 470px;
    }

    .home-quick-links {
        height: auto;

        margin-top: -42px;
        margin-bottom: -42px;

        padding-top: 46px;
        padding-bottom: 46px;
    }

    .home-quick-links__overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(18, 61, 96, .08) 0%,
                rgba(18, 61, 96, .84) 20%,
                rgba(18, 61, 96, .98) 50%,
                rgba(18, 61, 96, .84) 80%,
                rgba(18, 61, 96, .08) 100%
            );

        -webkit-backdrop-filter: blur(1px);
        backdrop-filter: blur(1px);
    }

    .home-quick-links__inner {
        flex-wrap: wrap;
        justify-content: center;

        height: auto;

        padding-right: 18px;
        padding-left: 18px;
    }

    .home-quick-link {
        flex: 1 1 50%;

        min-height: 88px;
        height: auto;

        justify-content: flex-start;

        padding: 12px 18px;
    }

    .home-quick-link--startup {
        flex: 1 1 100%;
        justify-content: center;
    }

    .home-quick-link__icon {
        flex-basis: 34px;

        width: 34px;
        height: 34px;

        min-width: 34px;
        max-width: 34px;

        min-height: 34px;
        max-height: 34px;
    }

    .home-quick-link__text {
        font-size: 18px;
        white-space: normal;
    }

    .home-quick-link__startup-image,
    .home-quick-link--startup img {
        width: 215px;
        max-width: 215px;
        max-height: 62px;
    }
}


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

@media (max-width: 768px) {

    .home-about {
        padding: 34px 18px;
    }

    .home-about h2 {
        font-size: 21px;
    }

    .home-about p {
        font-size: 13px;
    }

    .home-slideshow {
        height: 390px;
    }

    .home-slideshow__arrow {
        width: 38px;
        height: 52px;
        margin-top: -26px;
        font-size: 18px;
    }

    .home-quick-links {
        margin-top: -28px;
        margin-bottom: -28px;

        padding-top: 34px;
        padding-bottom: 34px;
    }

    .home-quick-links__inner {
        padding-right: 14px;
        padding-left: 14px;
    }

    .home-quick-link {
        min-height: 78px;
        padding: 10px 14px;
    }

    .home-quick-link__icon {
        flex-basis: 30px;

        width: 30px;
        height: 30px;

        min-width: 30px;
        max-width: 30px;

        min-height: 30px;
        max-height: 30px;
    }

    .home-quick-link__text {
        font-size: 16px;
    }

    .home-quick-link__startup-image,
    .home-quick-link--startup img {
        width: 190px;
        max-width: 190px;
        max-height: 56px;
    }
}


@media (max-width: 560px) {

    .home-slideshow {
        height: 320px;
    }

    .home-quick-links {
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .home-quick-links__inner {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .home-quick-link,
    .home-quick-link--startup {
        flex: none;

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

        justify-content: center;

        padding: 8px 10px;

        text-align: center;
    }

    .home-quick-link__text {
        white-space: normal;
    }
}

/* ============================================================
   ORİJİNAL KOÜ TEKNOPARK
   SLIDER 1 -> HIZLI BAĞLANTILAR -> SLIDER 2 GEÇİŞİ

   Orijinal yapıda:
   - blur yok
   - backdrop-filter yok
   - negatif margin yok
   - hızlı bağlantı bandı düz renktir
   - gradientler sliderların üzerinde bulunur
   ============================================================ */

.home-slideshow {
    position: relative;
    z-index: 10;
    overflow: hidden;
}


/* Gereksiz yönlerde eski pseudo katman oluşmasını engelle */

.home-slideshow--left::before,
.home-slideshow--right::after {
    content: none !important;
    display: none !important;
}


/* ============================================================
   1. SLIDERIN ALT GEÇİŞİ

   Görsel yukarıda normal görünür.
   Son %32'lik bölümde #153d62 rengine geçer.
   ============================================================ */

.home-slideshow--left::after {
    content: "";

    position: absolute;
    z-index: 6;
    inset: 0;

    display: block;

    pointer-events: none;

    background:
        linear-gradient(
            0deg,
            #153d62 0%,
            rgba(21, 61, 98, 0) 32%
        );
}


/* ============================================================
   HIZLI BAĞLANTI BANDI

   Orijinal sitede bu alan düz renktir.
   Sliderların üzerine bindirilmez.
   ============================================================ */

.home-quick-links {
    position: relative;
    z-index: 10;

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

    margin: 0 !important;
    padding: 0;

    overflow: hidden;

    background: #153d62 !important;
}


/*
   ASPX'teki overlay elemanı korunuyor;
   ancak görsel olarak tamamen kapatılıyor.
*/

.home-quick-links__overlay,
.home-quick-links__overlay::before,
.home-quick-links__overlay::after {
    content: none !important;

    display: none !important;

    background: none !important;

    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;

    filter: none !important;
}


/* ============================================================
   HIZLI BAĞLANTI İÇ YERLEŞİMİ
   ============================================================ */

.home-quick-links__inner {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;

    width: min(100%, 1600px);
    height: 100%;

    margin: 0 auto;
    padding: 0;
}


.home-quick-link,
.home-quick-link--startup {
    position: relative;

    flex: 0 0 20%;

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

    gap: 15px;

    width: 20%;
    min-width: 0;
    height: 100%;
    min-height: 0;

    margin: 0;
    padding: 10px;

    border: 0 !important;
    background: transparent !important;

    color: #ffffff;
    text-align: left;

    transition:
        opacity .25s ease,
        transform .25s ease;
}


.home-quick-link + .home-quick-link {
    border-left: 0 !important;
}


.home-quick-link:hover {
    background: transparent !important;
    color: #ffffff;

    transform: translateY(-2px);
}


/* KOÜ hızlı bağlantı ikonu */

.home-quick-link__icon {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    flex: 0 0 44px;

    width: 44px;
    height: 44px;

    min-width: 44px;
    max-width: 44px;

    min-height: 44px;
    max-height: 44px;

    margin: 0;
    padding: 0;

    object-fit: contain;
}


/* Bağlantı yazıları */

.home-quick-link__text {
    display: block;

    margin: 0;

    color: #ffffff;

    font-family: var(--font-main);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -.2px;

    white-space: normal;
}


/* Startup Factory */

.home-quick-link--startup {
    text-align: center;
}


.home-quick-link__startup-image,
.home-quick-link--startup img {
    display: block;

    width: 86%;
    max-width: 310px;
    max-height: 78px;

    margin: 0 auto;

    object-fit: contain;

    transition: transform .25s ease;
}


.home-quick-link--startup:hover
.home-quick-link__startup-image {
    transform: scale(1.02);
}


/* ============================================================
   2. SLIDERIN ÜST GEÇİŞİ

   Sliderın üstü #153d62 ile başlar.
   İlk %32'lik bölümde normal görsele dönüşür.
   ============================================================ */

.home-slideshow--right::before {
    content: "";

    position: absolute;
    z-index: 6;
    inset: 0;

    display: block;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            #153d62 0%,
            rgba(21, 61, 98, 0) 32%
        );
}


/*
   Slider kontrolleri gradient katmanının üzerinde kalır.
*/

.home-slideshow__arrow {
    z-index: 12;
}

.home-slideshow__dots {
    z-index: 14;
}


/* ============================================================
   ORTA MASAÜSTÜ / TABLET
   ============================================================ */

@media (max-width: 1366px) and (min-width: 769px) {

    .home-quick-links {
        height: 140px;
        min-height: 140px;
    }

    .home-quick-links__inner {
        flex-direction: row;
        flex-wrap: nowrap;

        padding: 0 8px;
    }

    .home-quick-link,
    .home-quick-link--startup {
        flex: 0 0 20%;

        width: 20%;
        height: 100%;
        min-height: 0;

        gap: 10px;

        padding: 8px;
    }

    .home-quick-link__icon {
        flex-basis: 33px;

        width: 33px;
        height: 33px;

        min-width: 33px;
        max-width: 33px;

        min-height: 33px;
        max-height: 33px;
    }

    .home-quick-link__text {
        font-size: 20px;
        line-height: 1;
    }

    .home-quick-link__startup-image,
    .home-quick-link--startup img {
        width: 86%;
        max-width: 220px;
        max-height: 62px;
    }
}


/* ============================================================
   MOBİL
   ============================================================ */

@media (max-width: 768px) {

    .home-quick-links {
        height: auto;
        min-height: 0;

        margin: 0 !important;
        padding: 20px 0;

        overflow: visible;
    }

    .home-quick-links__inner {
        flex-direction: column;
        flex-wrap: nowrap;

        width: 100%;
        height: auto;

        padding: 0 15px;
    }

    .home-quick-link,
    .home-quick-link--startup {
        flex: none;

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

        justify-content: center;

        gap: 12px;

        padding: 10px;

        text-align: center;
    }

    .home-quick-link__icon {
        flex-basis: 32px;

        width: 32px;
        height: 32px;

        min-width: 32px;
        max-width: 32px;

        min-height: 32px;
        max-height: 32px;
    }

    .home-quick-link__text {
        font-size: 18px;
        line-height: 1.1;
    }

    .home-quick-link--startup {
        height: 88px;
        min-height: 88px;
    }

    .home-quick-link__startup-image,
    .home-quick-link--startup img {
        width: 210px;
        max-width: 80%;
        max-height: 62px;
    }
}


/* =========================================================
   HERO → MENÜ → HAKKIMIZDA → 1. SLIDER GEÇİŞİ
   Orijinal sitedeki %32 gradient yapısı
   ========================================================= */

/* Hero görüntüsünün altını menüye doğru maviye dönüştürür */
.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(
        0deg,
        #153d62 0%,
        rgba(21, 61, 98, 0) 32%
    );
}

/* Hero altındaki menü gradient görüntüsünü kapatmamalı */
.home-page .site-header:not(.is-sticky) {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.home-page .site-header:not(.is-sticky) .desktop-header,
.home-page .site-header:not(.is-sticky) .mobile-header {
    background: transparent !important;
}

/* Menü sticky duruma geldiğinde tekrar düz mavi olur */
.home-page .site-header.is-sticky {
    background: #153d62 !important;
    box-shadow: 0 8px 25px rgba(4, 28, 49, 0.18) !important;
}

.home-page .site-header.is-sticky .desktop-header,
.home-page .site-header.is-sticky .mobile-header {
    background: #153d62 !important;
}

/* Menü ile birinci slider arasındaki ana renk bandı */
.home-about {
    position: relative;
    z-index: 5;
    background: #153d62 !important;
}

/* Hakkımızda alanından birinci slider görseline yumuşak geçiş */
.home-slideshow--left::before {
    content: "" !important;
    display: block !important;
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        #153d62 0%,
        rgba(21, 61, 98, 0) 32%
    ) !important;
}

/* Slider içeriği ve kontroller gradientin üzerinde kalır */
.home-slideshow--left .home-slideshow__inner {
    position: relative;
    z-index: 7;
}

.home-slideshow--left .home-slideshow__arrow,
.home-slideshow--left .home-slideshow__dots {
    z-index: 12;
}

/* Mobil görünümde geçişin gereğinden fazla uzamasını engeller */
@media (max-width: 767px) {
    .home-hero::after {
        background: linear-gradient(
            0deg,
            #153d62 0%,
            rgba(21, 61, 98, 0) 25%
        );
    }

    .home-slideshow--left::before {
        background: linear-gradient(
            180deg,
            #153d62 0%,
            rgba(21, 61, 98, 0) 25%
        ) !important;
    }
}

/* ============================================================
   HAKKIMIZDA SAYFASI
   ============================================================ */

.about-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    color: #153d62;
}

.about-page__intro {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 44px 0 50px;
    text-align: center;
}

.about-page__intro-title {
    margin: 0;
    color: #153d62;
    font-family: "Josefin Sans", sans-serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.35px;
}

.about-page__intro-text {
    max-width: 1100px;
    margin: 18px auto 0;
    color: #153d62;
    font-family: "Josefin Sans",  Arial, sans-serif;
    font-size: 25px;
    font-weight: 300;
    line-height: 27.2px;
    letter-spacing: 1.5px;
    text-align: center;
}

.about-page__hero {
    width: 100%;
    aspect-ratio: 1920 / 671;
    background-image:
        url("/assets/images/header-image.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-page__content {
    padding: 38px 0 50px;
}

.about-page__container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.about-page__section-title {
    margin: 0 0 38px;
    color: #153d62;
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    margin-top: 28px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 4px;
    text-align: center;
}


/* ============================================================
   AKORDEON
   ============================================================ */

.about-accordion,
.about-accordion__item,
.about-accordion__heading {
    width: 100%;
    margin: 0;
    padding: 0;
}

.about-accordion__item {
    margin-bottom: 10px;
}

.about-accordion__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 56px;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, .02);
    border-radius: 0;
    outline: 0;
    background: #153d62;
    color: #ffffff;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
    transition:
        background-color .25s ease,
        color .25s ease;
}

.about-accordion__button:hover,
.about-accordion__button:focus-visible {
    background: #1b4d76;
}

.about-accordion__button:focus-visible {
    box-shadow:
        inset 0 0 0 2px
        rgba(255, 255, 255, .82);
}

.about-accordion__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-left: 18px;
    transform: rotate(0deg);
    transform-origin: center;
    transition: transform .3s ease;
}

.about-accordion__arrow svg {
    display: block;
    width: 10px;
    height: 17px;
    overflow: visible;
}

.about-accordion__arrow path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.about-accordion__item.is-open
    .about-accordion__arrow {
    transform: rotate(90deg);
}

.about-accordion__panel {
    display: grid;
    grid-template-rows: 0fr;
    visibility: hidden;
    opacity: 0;
    transition:
        grid-template-rows .3s ease,
        opacity .22s ease,
        visibility 0s linear .3s;
}

.about-accordion__item.is-open
    .about-accordion__panel {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    transition:
        grid-template-rows .3s ease,
        opacity .28s ease,
        visibility 0s linear 0s;
}

.about-accordion__panel-clip {
    min-height: 0;
    overflow: hidden;
}

.about-accordion__surface {
    position: relative;
    z-index: 0;
    min-height: 280px;
    padding: 40px;
    overflow: hidden;
    background-image:
        linear-gradient(
            rgba(21, 61, 98, .86),
            rgba(21, 61, 98, .86)
        ),
        url("/assets/images/panel.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
}


/* ============================================================
   PANELDEN GELEN ZENGİN METİN
   ============================================================ */

.about-rich-text {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.72;
}

.about-rich-text > :first-child {
    margin-top: 0;
}

.about-rich-text > :last-child {
    margin-bottom: 0;
}

.about-rich-text p {
    margin: 0 0 20px;
}

.about-rich-text h2,
.about-rich-text h3,
.about-rich-text h4 {
    margin: 26px 0 14px;
    color: #ffffff;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.about-rich-text h2,
.about-rich-text h3 {
    font-size: 34px;
}

.about-rich-text h4 {
    font-size: 22px;
}

.about-rich-text ul,
.about-rich-text ol {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.about-rich-text li {
    position: relative;
    margin: 0 0 9px;
    padding-left: 16px;
}

.about-rich-text li::before {
    content: "■";
    position: absolute;
    top: 0;
    left: 0;
    color: #ffffff;
    font-size: 8px;
}

.about-rich-text a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-rich-text img {
    max-width: 100%;
    height: auto;
}


/* ============================================================
   KURUMSAL KİMLİK
   ============================================================ */

.about-accordion__surface--corporate {
    min-height: 280px;
    padding: 46px 40px 42px;
}

.about-corporate-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 34px;
}

.about-corporate-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
}

.about-corporate-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 126px;
    height: 126px;
    margin: 0 auto 17px;
    color: #ffffff;
    transition: transform .28s ease;
}

.about-corporate-card__icon svg {
    display: block;
    width: 100%;
    max-width: 120px;
    max-height: 112px;
    overflow: visible;
}

.about-corporate-card__icon path,
.about-corporate-card__icon rect {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 7;
}

.about-corporate-card__icon
    .about-corporate-card__icon-fill {
    fill: currentColor;
    stroke: none;
}

.about-corporate-card__title {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.about-corporate-card:hover
    .about-corporate-card__icon,
.about-corporate-card:focus-visible
    .about-corporate-card__icon {
    transform: scale(1.1);
}

.about-corporate-card:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 8px;
}

.about-corporate-grid__empty {
    grid-column: 1 / -1;
    margin: 0;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    text-align: center;
}


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

@media (max-width: 1024px) {
    .about-page__intro-title {
        font-size: 30px;
        line-height: 1.12;
    }

    .about-page__intro-text {
        font-size: 23px;
        line-height: 1.2;
    }

    .about-page__section-title {
        font-size: 42px;
    }

    .about-accordion__surface {
        padding: 34px;
    }
}


/* ============================================================
   MOBİL
   ============================================================ */

@media (max-width: 767px) {
    .about-page__intro {
        width: calc(100% - 30px);
        padding: 34px 0 36px;
    }

    .about-page__intro-title {
        font-size: 27px;
        line-height: 1.15;
        letter-spacing: 0;
    }

    .about-page__intro-text {
        margin-top: 15px;
        font-size: 20px;
        line-height: 1.3;
        letter-spacing: .7px;
    }

    .about-page__hero {
        min-height: 250px;
        aspect-ratio: auto;
        background-position: center center;
    }

    .about-page__content {
        padding: 34px 0 38px;
    }

    .about-page__container {
        width: calc(100% - 30px);
    }

    .about-page__section-title {
        margin-bottom: 30px;
        font-size: 38px;
        letter-spacing: 2.5px;
    }

    .about-accordion__button {
        min-height: 54px;
        padding: 14px 15px;
        font-size: 18px;
        line-height: 22px;
    }

    .about-accordion__surface,
    .about-accordion__surface--corporate {
        min-height: 0;
        padding: 26px 22px;
    }

    .about-rich-text {
        font-size: 15px;
        line-height: 1.68;
    }

    .about-rich-text p {
        margin-bottom: 17px;
    }

    .about-rich-text h2,
    .about-rich-text h3 {
        margin-top: 22px;
        font-size: 28px;
    }

    .about-corporate-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-corporate-card__icon {
        width: 108px;
        height: 108px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .about-page__intro,
    .about-page__container {
        width: calc(100% - 24px);
    }

    .about-page__intro-title {
        font-size: 24px;
    }

    .about-page__intro-text {
        font-size: 18px;
    }

    .about-page__hero {
        min-height: 220px;
    }

    .about-page__section-title {
        font-size: 32px;
    }

    .about-accordion__button {
        font-size: 17px;
    }

    .about-accordion__surface,
    .about-accordion__surface--corporate {
        padding: 22px 17px;
    }
}


/* ============================================================
   HAREKET AZALTMA TERCİHİ
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    .about-accordion__panel,
    .about-accordion__arrow,
    .about-corporate-card__icon {
        transition: none !important;
    }
}

/* ============================================================
   İÇ SAYFA DESKTOP HEADER
   Solda ana logo, ortada menü,
   sağda Startup Factory ve dil seçenekleri
   ============================================================ */

.desktop-header__brand {
    display: none;
}

@media (min-width: 1101px) {

    .inner-page {
        --header-height: 130px;
    }

    .inner-page .site-header,
    .inner-page .desktop-header {
        height: var(--header-height);
        background: #153d62;
    }

    .inner-page .desktop-header__inner {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: min(
            calc(100% - 100px),
            1800px
        );
        height: 100%;
        margin: 0 auto;
        gap: 68px;
    }

    /* SOL ANA LOGO */

    .inner-page .desktop-header__brand {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex: 0 0 205px;
        width: 205px;
        height: 100%;
    }

    .inner-page .desktop-header__brand-image {
        display: block;
        width: 200px;
        max-width: 200px;
        max-height: 82px;
        object-fit: contain;
        object-position: left center;
    }

    /* ORTA MENÜ */

    .inner-page .desktop-navigation {
        flex: 1 1 auto;
        min-width: 0;
        height: 100%;
    }

    .inner-page .desktop-navigation__list {
        justify-content: flex-start;
        width: 100%;
        height: 100%;
    }

    .inner-page .desktop-navigation__link {
        padding-right: 18px;
        padding-left: 18px;
        font-size: 20px;
        font-weight: 600;
    }

    .inner-page .desktop-navigation__portal {
        padding-left: 0;
    }

    .inner-page
    .desktop-navigation__portal img {
        width: 31px;
        height: 31px;
    }

    .inner-page
    .desktop-navigation__link::after {
        right: 18px;
        bottom: 31px;
        left: 18px;
    }

    /* SAĞ TARAF */

    .inner-page .desktop-header__tools {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 0 0 auto;
        height: 100%;
        margin-left: auto;
        gap: 64px;
    }

    .inner-page .startup-logo-link {
        width: 205px;
        height: 64px;
    }

    .inner-page .startup-logo {
        width: 198px;
        max-width: 198px;
        max-height: 58px;
        object-fit: contain;
    }

    .inner-page .language-buttons {
        display: flex;
        align-items: center;
        flex: 0 0 auto;
        gap: 3px;
    }

    .inner-page .language-button {
        width: 38px;
        height: 29px;
    }

    .inner-page .language-button img {
        width: 37px;
        height: 27px;
        object-fit: cover;
    }

    /* ORİJİNAL İÇ SAYFADA BULUNMUYOR */

    .inner-page .header-social-links,
    .inner-page .header-search {
        display: none !important;
    }
}


/* ============================================================
   ORTA BOY DESKTOP
   ============================================================ */

@media (min-width: 1101px) and (max-width: 1700px) {

    .inner-page {
        --header-height: 112px;
    }

    .inner-page .desktop-header__inner {
        width: calc(100% - 50px);
        gap: 30px;
    }

    .inner-page .desktop-header__brand {
        flex-basis: 175px;
        width: 175px;
    }

    .inner-page .desktop-header__brand-image {
        width: 170px;
        max-width: 170px;
        max-height: 70px;
    }

    .inner-page .desktop-navigation__link {
        padding-right: 12px;
        padding-left: 12px;
        font-size: 16px;
    }

    .inner-page
    .desktop-navigation__link::after {
        right: 12px;
        bottom: 26px;
        left: 12px;
    }

    .inner-page
    .desktop-navigation__portal img {
        width: 28px;
        height: 28px;
    }

    .inner-page .desktop-header__tools {
        gap: 28px;
    }

    .inner-page .startup-logo-link {
        width: 165px;
    }

    .inner-page .startup-logo {
        width: 160px;
        max-width: 160px;
        max-height: 48px;
    }

    .inner-page .language-button {
        width: 31px;
        height: 25px;
    }

    .inner-page .language-button img {
        width: 30px;
        height: 22px;
    }
}


/* ============================================================
   1366 VE DAHA DAR DESKTOP
   ============================================================ */

@media (min-width: 1101px) and (max-width: 1366px) {

    .inner-page {
        --header-height: 96px;
    }

    .inner-page .desktop-header__inner {
        width: calc(100% - 30px);
        gap: 18px;
    }

    .inner-page .desktop-header__brand {
        flex-basis: 145px;
        width: 145px;
    }

    .inner-page .desktop-header__brand-image {
        width: 140px;
        max-width: 140px;
        max-height: 60px;
    }

    .inner-page .desktop-navigation__link {
        padding-right: 8px;
        padding-left: 8px;
        font-size: 13px;
    }

    .inner-page
    .desktop-navigation__link::after {
        right: 8px;
        bottom: 22px;
        left: 8px;
    }

    .inner-page
    .desktop-navigation__portal img {
        width: 25px;
        height: 25px;
    }

    .inner-page .desktop-header__tools {
        gap: 14px;
    }

    .inner-page .startup-logo-link {
        width: 132px;
    }

    .inner-page .startup-logo {
        width: 128px;
        max-width: 128px;
        max-height: 42px;
    }

    .inner-page .language-button {
        width: 27px;
        height: 23px;
    }

    .inner-page .language-button img {
        width: 26px;
        height: 19px;
    }
}


/* ============================================================
   ORGANİZASYON SAYFASI
   Bu blok assets/css/style.css dosyasının SONUNA eklenecek.
   ============================================================ */

.organization-page__hero {
    background-image: url("/assets/images/header-image.webp");
}

.organization-page__content {
    padding: 30px 0 50px;
}

.organization-page__title {
    margin-bottom: 38px;
    margin-top: 25px;
    letter-spacing: 6.3px;
}


/* ============================================================
   ORGANİZASYON AKORDEONU
   ============================================================ */

.organization-accordion,
.organization-accordion__item,
.organization-accordion__heading {
    width: 100%;
    margin: 0;
    padding: 0;
}

.organization-accordion__item {
    margin-bottom: 10px;
}

.organization-accordion__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 56px;
    padding: 15px;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: #153d62;
    color: #ffffff;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    text-align: left;
    transition: background-color .25s ease;
}

.organization-accordion__button:hover,
.organization-accordion__button:focus-visible {
    background: #1b4d76;
}

.organization-accordion__button:focus-visible {
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .82);
}

.organization-accordion__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-left: 18px;
    transform: rotate(0deg);
    transform-origin: center;
    transition: transform .3s ease;
}

.organization-accordion__arrow svg {
    display: block;
    width: 10px;
    height: 17px;
    overflow: visible;
}

.organization-accordion__arrow path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.organization-accordion__item.is-open
    .organization-accordion__arrow {
    transform: rotate(90deg);
}

.organization-accordion__panel {
    display: grid;
    grid-template-rows: 0fr;
    visibility: hidden;
    opacity: 0;
    transition:
        grid-template-rows .34s ease,
        opacity .22s ease,
        visibility 0s linear .34s;
}

.organization-accordion__item.is-open
    .organization-accordion__panel {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    transition:
        grid-template-rows .34s ease,
        opacity .28s ease,
        visibility 0s linear 0s;
}

.organization-accordion__panel-clip {
    min-height: 0;
    overflow: hidden;
}

.organization-accordion__surface {
    position: relative;
    min-height: 320px;
    padding: 20px;
    overflow: hidden;
    background-image:
        linear-gradient(
            rgba(21, 61, 98, .94),
            rgba(21, 61, 98, .94)
        ),
        url("/assets/images/panel.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
}


/* ============================================================
   YÖNETİM KURULU VE EKİP KARTLARI
   ============================================================ */

.organization-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    column-gap: 30px;
    row-gap: 40px;
    width: 100%;
}

.organization-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    color: #ffffff;
    text-align: center;
}

.organization-card--featured {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 420px);
}

.organization-card__image-wrap {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
}

.organization-card__image {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center;
}

.organization-card__body {
    width: 100%;
    margin-top: 15px;
}

.organization-card__name {
    margin: 0 0 2px;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.organization-card__representation,
.organization-card__role,
.organization-card__phone,
.organization-card__email {
    margin: 0;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
}

.organization-card__email a {
    color: #ffffff;
    text-decoration: none;
}

.organization-card__email a:hover,
.organization-card__email a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.organization-card__socials {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 20px;
    margin-top: 10px;
}

.organization-card__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #a1a1a1;
    color: #ffffff;
    font-size: 11px;
    line-height: 1;
    text-decoration: none;
    transition:
        background-color .22s ease,
        transform .22s ease;
}

.organization-card__social:hover,
.organization-card__social:focus-visible {
    background: #ffffff;
    color: #153d62;
    transform: translateY(-2px);
}

.organization-card__social:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.organization-card-grid__empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 35px 15px;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}


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

@media (max-width: 1024px) {
    .organization-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 28px;
    }

    .organization-page__title {
        letter-spacing: 4px;
    }
}


/* ============================================================
   MOBİL
   ============================================================ */

@media (max-width: 767px) {
    .organization-page__content {
        padding: 34px 0 38px;
    }

    .organization-page__title {
        margin-bottom: 30px;
        letter-spacing: 2.5px;
    }

    .organization-accordion__button {
        min-height: 54px;
        padding: 14px 15px;
        font-size: 18px;
        line-height: 22px;
    }

    .organization-accordion__surface {
        min-height: 0;
        padding: 26px 22px;
    }

    .organization-card-grid {
        grid-template-columns: 1fr;
        row-gap: 36px;
    }

    .organization-card--featured {
        grid-column: auto;
        width: 100%;
    }

    .organization-card__image-wrap {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .organization-accordion__button {
        font-size: 17px;
    }

    .organization-accordion__surface {
        padding: 22px 17px;
    }

    .organization-card__image-wrap {
        width: 142px;
        height: 142px;
    }
}


/* ============================================================
   HAREKET AZALTMA TERCİHİ
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    .organization-accordion__panel,
    .organization-accordion__arrow,
    .organization-card__social {
        transition: none !important;
    }
}

/* ============================================================
   ORTAKLARIMIZ SAYFASI
   ============================================================ */

.partners-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    color: #153d62;
}

.partners-page__intro {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 44px 0 50px;
    text-align: center;
}

.partners-page__intro-title {
    margin: 0;
    color: #153d62;
    font-family: "Josefin Sans", sans-serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.35px;
}

.partners-page__intro-text {
    max-width: 1100px;
    margin: 18px auto 0;
    color: #153d62;
    font-family: "Josefin Sans", sans-serif;
    font-size: 27px;
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: 1.5px;
}

.partners-page__hero {
    width: 100%;
    aspect-ratio: 1920 / 671;
    background-image:
        url("/assets/images/header-image.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.partners-page__content {
    padding: 38px 0 50px;
}

.partners-page__container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.partners-page__section-title {
    margin: 0 0 38px;
    color: #153d62;
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    margin-top: 28px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 6.3px;
    text-align: center;
}


/* ============================================================
   AKORDEON
   ============================================================ */

.partners-accordion,
.partners-accordion__item,
.partners-accordion__heading {
    width: 100%;
    margin: 0;
    padding: 0;
}

.partners-accordion__item {
    margin-bottom: 10px;
}

.partners-accordion__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 56px;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, .02);
    border-radius: 0;
    outline: 0;
    background: #153d62;
    color: #ffffff;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    text-align: left;
    appearance: none;
    -webkit-appearance: none;
    transition:
        background-color .25s ease,
        color .25s ease;
}

.partners-accordion__button:hover,
.partners-accordion__button:focus-visible {
    background: #1b4d76;
    color: #ffffff;
}

.partners-accordion__button:focus-visible {
    box-shadow:
        inset 0 0 0 2px
        rgba(255, 255, 255, .82);
}

.partners-accordion__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-left: 18px;
    color: #ffffff;
    transform: rotate(0deg);
    transform-origin: center;
    transition: transform .3s ease;
}

.partners-accordion__arrow svg {
    display: block;
    width: 10px;
    height: 17px;
    overflow: visible;
}

.partners-accordion__arrow path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.partners-accordion__item.is-open
    .partners-accordion__arrow {
    transform: rotate(90deg);
}

.partners-accordion__panel {
    display: grid;
    grid-template-rows: 0fr;
    visibility: hidden;
    opacity: 0;
    transition:
        grid-template-rows .35s ease,
        opacity .22s ease,
        visibility 0s linear .35s;
}

.partners-accordion__item.is-open
    .partners-accordion__panel {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    transition:
        grid-template-rows .35s ease,
        opacity .28s ease,
        visibility 0s linear 0s;
}

.partners-accordion__panel-clip {
    min-height: 0;
    overflow: hidden;
}

.partners-accordion__surface {
    min-height: 190px;
    padding: 20px;
    border: 1px solid #eeeeee;
    background: #ffffff;
    color: #153d62;
}


/* ============================================================
   LOGO IZGARASI
   ============================================================ */

.partners-logo-grid {
    display: grid;
    grid-template-columns:
        repeat(5, minmax(0, 1fr));
    align-items: center;
    column-gap: 20px;
    row-gap: 34px;
    width: 100%;
}

.partners-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 150px;
    min-width: 0;
    color: #153d62;
    text-decoration: none;
}

.partners-logo-card__image {
    display: block;
    width: 140px;
    height: 150px;
    max-width: 100%;
    object-fit: contain;
    object-position: center center;
    filter:
        brightness(1)
        contrast(1)
        saturate(0)
        blur(0)
        hue-rotate(0deg);
    transform: scale(1);
    transform-origin: center;
    transition: transform .3s ease;
}

.partners-logo-card:hover
    .partners-logo-card__image,
.partners-logo-card:focus-visible
    .partners-logo-card__image {
    transform: scale(.9);
}

.partners-logo-card:focus-visible {
    outline: 2px solid #153d62;
    outline-offset: 5px;
}

.partners-logo-grid__empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 38px 15px;
    color: #153d62;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}


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

@media (max-width: 1024px) {
    .partners-page__intro-title {
        font-size: 30px;
        line-height: 1.12;
    }

    .partners-page__intro-text {
        font-size: 23px;
        line-height: 1.2;
    }

    .partners-page__section-title {
        font-size: 42px;
        letter-spacing: 4px;
    }

    .partners-logo-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
        row-gap: 30px;
    }
}


/* ============================================================
   MOBİL
   ============================================================ */

@media (max-width: 767px) {
    .partners-page__intro {
        width: calc(100% - 30px);
        padding: 34px 0 36px;
    }

    .partners-page__intro-title {
        font-size: 27px;
        line-height: 1.15;
        letter-spacing: 0;
    }

    .partners-page__intro-text {
        margin-top: 15px;
        font-size: 20px;
        line-height: 1.3;
        letter-spacing: .7px;
    }

    .partners-page__hero {
        min-height: 250px;
        aspect-ratio: auto;
    }

    .partners-page__content {
        padding: 34px 0 38px;
    }

    .partners-page__container {
        width: calc(100% - 30px);
    }

    .partners-page__section-title {
        margin-bottom: 30px;
        font-size: 38px;
        letter-spacing: 2.5px;
    }

    .partners-accordion__button {
        min-height: 54px;
        padding: 14px 15px;
        font-size: 18px;
        line-height: 22px;
    }

    .partners-accordion__surface {
        min-height: 0;
        padding: 22px 18px;
    }

    .partners-logo-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        column-gap: 16px;
        row-gap: 24px;
    }

    .partners-logo-card,
    .partners-logo-card__image {
        height: 130px;
    }

    .partners-logo-card__image {
        width: 125px;
    }
}

@media (max-width: 420px) {
    .partners-page__intro,
    .partners-page__container {
        width: calc(100% - 24px);
    }

    .partners-page__intro-title {
        font-size: 24px;
    }

    .partners-page__intro-text {
        font-size: 18px;
    }

    .partners-page__hero {
        min-height: 220px;
    }

    .partners-page__section-title {
        font-size: 32px;
    }

    .partners-accordion__button {
        font-size: 17px;
    }

    .partners-logo-grid {
        grid-template-columns: 1fr;
    }

    .partners-logo-card,
    .partners-logo-card__image {
        height: 140px;
    }

    .partners-logo-card__image {
        width: 135px;
    }
}


/* ============================================================
   HAREKET AZALTMA
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    .partners-accordion__panel,
    .partners-accordion__arrow,
    .partners-logo-card__image {
        transition: none !important;
    }
}


.partners-logo-card__image {
    display: block;
    width: 220px;
    height: 150px;
    max-width: 100%;
    object-fit: contain;
    object-position: center center;
    filter:
        brightness(1)
        contrast(1)
        saturate(0)
        blur(0)
        hue-rotate(0deg);
    transform: scale(1);
    transform-origin: center;
    transition:
        filter .3s ease,
        transform .3s ease;
}

.partners-logo-card:hover
    .partners-logo-card__image,
.partners-logo-card:focus-visible
    .partners-logo-card__image {
    filter:
        brightness(1)
        contrast(1)
        saturate(1)
        blur(0)
        hue-rotate(0deg);
    transform: scale(.9);
}

.partners-logo-card:active
    .partners-logo-card__image {
    filter:
        brightness(1)
        contrast(1)
        saturate(1)
        blur(0)
        hue-rotate(0deg);
}


/* ============================================================
   MENTORLERİMİZ SAYFASI
============================================================ */

.mentors-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    color: #153d62;
}

.mentors-page *,
.mentors-page *::before,
.mentors-page *::after {
    box-sizing: border-box;
}

/* ============================================================
   SAYFA GİRİŞİ
============================================================ */

.mentors-page__intro {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 255px;
    padding: 42px 30px 48px;
    background: #ffffff;
    text-align: center;
}

.mentors-page__intro-container {
    width: min(1240px, 100%);
    margin: 0 auto;
}

.mentors-page__intro-title {
    margin: 0 0 20px;
    color: #153d62;
    font-family: "Josefin Sans", "Montserrat", Arial, sans-serif;
    font-size: clamp(30px, 2.45vw, 47px);
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: 1.5px;
}

.mentors-page__intro-text {
    max-width: 1260px;
    margin: 0 auto;
    color: #153d62;
    font-family: "Josefin Sans", "Montserrat", Arial, sans-serif;
    font-size: clamp(20px, 1.7vw, 31px);
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: 3.2px;
}

.mentors-page__hero {
    position: relative;
    width: 100%;
    height: clamp(320px, 32vw, 530px);
    background-image: url("/assets/images/header-image.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.mentors-page__hero::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(9, 43, 70, 0.04) 0%,
            rgba(9, 43, 70, 0.14) 100%
        );
}

/* ============================================================
   SAYFA İÇERİĞİ
============================================================ */

.mentors-page__content {
    padding: 58px 0 70px;
    background: #ffffff;
}

.mentors-page__container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.mentors-page__title {
    margin: 0 0 42px;
    color: #153d62;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(34px, 3.55vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 6.3px;
    text-align: center;
}

/* ============================================================
   AKORDEON
============================================================ */

.mentors-accordion {
    width: 100%;
}

.mentors-accordion__item {
    width: 100%;
    margin: 0 0 10px;
}

.mentors-accordion__heading {
    margin: 0;
    padding: 0;
}

.mentors-accordion__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 56px;
    margin: 0;
    padding: 14px 22px;
    border: 0;
    border-radius: 0;
    background: #153d62;
    color: #ffffff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
    appearance: none;
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.mentors-accordion__button:hover {
    background: #1d527c;
}

.mentors-accordion__button:focus-visible {
    position: relative;
    z-index: 3;
    outline: 3px solid rgba(236, 29, 57, 0.75);
    outline-offset: 2px;
}

.mentors-accordion__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 24px;
    margin-left: 20px;
    flex: 0 0 18px;
    transform: rotate(90deg);
    transform-origin: center;
    transition: transform 0.32s ease;
}

.mentors-accordion__arrow svg {
    display: block;
    width: 9px;
    height: 16px;
    overflow: visible;
}

.mentors-accordion__arrow path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mentors-accordion__item.is-open
.mentors-accordion__arrow {
    transform: rotate(-90deg);
}

.mentors-accordion__panel {
    display: grid;
    grid-template-rows: 0fr;
    visibility: hidden;
    opacity: 0;
    transition:
        grid-template-rows 0.42s ease,
        opacity 0.3s ease,
        visibility 0s linear 0.42s;
}

.mentors-accordion__item.is-open
.mentors-accordion__panel {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    transition:
        grid-template-rows 0.42s ease,
        opacity 0.36s ease,
        visibility 0s linear 0s;
}

.mentors-accordion__panel-clip {
    min-height: 0;
    overflow: hidden;
}

.mentors-accordion__surface {
    width: 100%;
}

/* ============================================================
   MENTOR KARTLARI
============================================================ */

.mentors-accordion__surface--mentors {
    min-height: 330px;
    padding: 32px 26px 38px;
    background: #153d62;
    color: #ffffff;
}

.mentor-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    width: 100%;
    column-gap: 30px;
    row-gap: 46px;
}

.mentor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    color: #ffffff;
    text-align: center;
}

.mentor-card__image-frame {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    margin: 0 auto 18px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.74);
    border-radius: 50%;
    background: #0e3556;
}

.mentor-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: inherit;
    transform: scale(1.01);
    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.mentor-card:hover
.mentor-card__image {
    transform: scale(1.07);
}

.mentor-card__image-frame--empty {
    background:
        radial-gradient(
            circle at 50% 35%,
            #2e6087 0%,
            #173f61 70%,
            #0f324f 100%
        );
}

.mentor-card__initial {
    color: rgba(255, 255, 255, 0.9);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 54px;
    font-weight: 600;
    line-height: 1;
}

.mentor-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.mentor-card__name {
    margin: 0 0 7px;
    color: #ffffff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.mentor-card__email {
    max-width: 100%;
    margin: 0 0 7px;
    overflow-wrap: anywhere;
    color: #ffffff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    opacity: 0.88;
    transition: opacity 0.25s ease;
}

.mentor-card__email:hover,
.mentor-card__email:focus-visible {
    color: #ffffff;
    text-decoration: underline;
    opacity: 1;
}

.mentor-card__title {
    max-width: 245px;
    margin: 0;
    color: #ffffff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.55;
    opacity: 0.93;
}

.mentor-card__linkedin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    margin-top: 11px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.mentor-card__linkedin svg {
    display: block;
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.mentor-card__linkedin:hover,
.mentor-card__linkedin:focus-visible {
    background: #ffffff;
    color: #153d62;
    transform: translateY(-2px);
}

.mentor-card__linkedin:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.mentor-grid__empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 80px 20px;
    color: #ffffff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}

/* ============================================================
   YODA FORM ALANI
============================================================ */

.mentors-accordion__surface--yoda {
    position: relative;
    padding: 40px;
    overflow: hidden;
    background-color: #153d62;
    background-image:
        linear-gradient(
            135deg,
            rgba(12, 48, 76, 0.94) 0%,
            rgba(21, 61, 98, 0.84) 48%,
            rgba(13, 48, 77, 0.92) 100%
        ),
        url("/assets/images/panel.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
}

.mentors-accordion__surface--yoda::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.035) 0%,
            rgba(5, 29, 49, 0.15) 100%
        );
}

.yoda-form {
    position: relative;
    z-index: 1;
    width: 100%;
}

.yoda-form__header {
    max-width: 900px;
    margin: 0 0 35px;
}

.yoda-form__title {
    margin: 0 0 12px;
    color: #ffffff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(24px, 2vw, 31px);
    font-weight: 600;
    line-height: 1.25;
}

.yoda-form__description {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

.yoda-form__section {
    margin: 0 0 36px;
}

.yoda-form__section--last {
    margin-bottom: 26px;
}

.yoda-form__section-title {
    margin: 0 0 22px;
    padding: 0 0 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.37);
    color: #ffffff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.yoda-form__section-title span {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.78;
}

.yoda-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 40px;
    row-gap: 28px;
}

.yoda-form__field {
    min-width: 0;
}

.yoda-form__field--wide {
    grid-column: 1 / -1;
}

.yoda-form__field label {
    display: block;
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.96);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
}

.yoda-form__field label span {
    color: #ffffff;
}

.yoda-form__field input,
.yoda-form__field textarea {
    display: block;
    width: 100%;
    margin: 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
    color: #ffffff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    appearance: none;
    transition:
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.yoda-form__field input {
    height: 43px;
    padding: 5px 2px 8px;
}

.yoda-form__field textarea {
    min-height: 95px;
    padding: 10px 2px;
    overflow-y: hidden;
    line-height: 1.6;
    resize: vertical;
}

.yoda-form__field input:hover,
.yoda-form__field textarea:hover {
    border-bottom-color: #ffffff;
}

.yoda-form__field input:focus,
.yoda-form__field textarea:focus {
    border-bottom-width: 2px;
    border-bottom-color: #ffffff;
    background: rgba(255, 255, 255, 0.025);
}

.yoda-form__field input::placeholder,
.yoda-form__field textarea::placeholder {
    color: rgba(255, 255, 255, 0.58);
}

.yoda-form__message {
    margin: 0 0 30px;
    padding: 14px 17px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
}

.yoda-form__message.is-success {
    border-color: rgba(181, 239, 196, 0.9);
    background: rgba(31, 124, 60, 0.6);
}

.yoda-form__message.is-error {
    border-color: rgba(255, 190, 190, 0.95);
    background: rgba(171, 36, 46, 0.65);
}

.yoda-form__actions {
    display: flex;
    justify-content: flex-start;
    padding-top: 4px;
}

.yoda-form__submit {
    min-width: 205px;
    min-height: 52px;
    padding: 13px 28px;
    border: 2px solid #ffffff;
    border-radius: 28px;
    background: #ffffff;
    color: #153d62;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    appearance: none;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.yoda-form__submit:hover,
.yoda-form__submit:focus-visible {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}

.yoda-form__submit:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

.yoda-form__submit:disabled {
    cursor: wait;
    opacity: 0.65;
    transform: none;
}

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

@media (max-width: 1024px) {
    .mentors-page__intro {
        min-height: 225px;
        padding-right: 24px;
        padding-left: 24px;
    }

    .mentors-page__intro-title {
        font-size: 36px;
    }

    .mentors-page__intro-text {
        font-size: 24px;
        letter-spacing: 2.4px;
    }

    .mentors-page__hero {
        height: 420px;
    }

    .mentors-page__title {
        letter-spacing: 4px;
    }

    .mentor-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 48px;
    }

    .mentors-accordion__surface--yoda {
        padding: 35px 30px;
    }
}

/* ============================================================
   MOBİL
============================================================ */

@media (max-width: 767px) {
    .mentors-page__intro {
        min-height: 215px;
        padding: 34px 20px 38px;
    }

    .mentors-page__intro-title {
        margin-bottom: 16px;
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: 0.7px;
    }

    .mentors-page__intro-text {
        font-size: 19px;
        line-height: 1.35;
        letter-spacing: 1.2px;
    }

    .mentors-page__hero {
        height: 300px;
        background-position: center center;
    }

    .mentors-page__content {
        padding: 42px 0 48px;
    }

    .mentors-page__container {
        width: min(100% - 28px, 1200px);
    }

    .mentors-page__title {
        margin-bottom: 30px;
        font-size: 32px;
        letter-spacing: 2.5px;
    }

    .mentors-accordion__button {
        min-height: 54px;
        padding: 13px 17px;
        font-size: 15px;
    }

    .mentors-accordion__surface--mentors {
        padding: 35px 20px;
    }

    .mentor-grid {
        grid-template-columns: 1fr;
        row-gap: 42px;
    }

    .mentor-card__title {
        min-height: 0;
    }

    .mentors-accordion__surface--yoda {
        padding: 30px 20px 34px;
    }

    .yoda-form__header {
        margin-bottom: 30px;
    }

    .yoda-form__title {
        font-size: 25px;
    }

    .yoda-form__grid {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 25px;
    }

    .yoda-form__field--wide {
        grid-column: auto;
    }

    .yoda-form__section {
        margin-bottom: 32px;
    }

    .yoda-form__actions {
        justify-content: center;
    }

    .yoda-form__submit {
        width: 100%;
        max-width: 340px;
    }
}

@media (max-width: 420px) {
    .mentors-page__intro-title {
        font-size: 25px;
    }

    .mentors-page__intro-text {
        font-size: 17px;
    }

    .mentors-page__hero {
        height: 260px;
    }

    .mentors-page__title {
        font-size: 28px;
        letter-spacing: 1.7px;
    }

    .mentor-card__image-frame {
        width: 150px;
        height: 150px;
    }

    .mentors-accordion__surface--yoda {
        padding-right: 17px;
        padding-left: 17px;
    }
}

/* ============================================================
   HAREKET AZALTMA
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .mentors-accordion__panel,
    .mentors-accordion__arrow,
    .mentor-card__image,
    .mentor-card__linkedin,
    .yoda-form__submit {
        transition: none !important;
    }
}

/* ============================================================
   HİZMETLERİMİZ SAYFASI
============================================================ */

.services-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    color: #153d62;
}

.services-page *,
.services-page *::before,
.services-page *::after {
    box-sizing: border-box;
}

/* ============================================================
   ÜST BAŞLIK ALANI
============================================================ */

.services-page__intro {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 255px;
    padding: 44px 30px 48px;
    background: #ffffff;
    text-align: center;
}

.services-page__intro-container {
    width: min(1240px, 100%);
    margin: 0 auto;
}

.services-page__intro-title {
    margin: 0 0 20px;
    color: #153d62;
    font-family: "Josefin Sans", "Montserrat", Arial, sans-serif;
    font-size: clamp(30px, 2.45vw, 47px);
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: 1.5px;
}

.services-page__intro-text {
    max-width: 1180px;
    margin: 0 auto;
    color: #153d62;
    font-family: "Josefin Sans", "Montserrat", Arial, sans-serif;
    font-size: clamp(20px, 1.7vw, 31px);
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: 3.2px;
}

/* ============================================================
   ORTAK İÇ SAYFA GÖRSELİ
============================================================ */

.services-page__hero {
    position: relative;
    width: 100%;
    height: clamp(330px, 35vw, 550px);
    background-image: url("/assets/images/header-image.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.services-page__hero::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(8, 36, 58, 0.02) 0%,
            rgba(8, 36, 58, 0.1) 100%
        );
}

/* ============================================================
   HİZMETLER İÇERİĞİ
============================================================ */

.services-page__content {
    padding: 42px 0 72px;
    background: #ffffff;
}

.services-page__container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.services-page__title {
    margin: 0 0 40px;
    color: #153d62;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(36px, 3.55vw, 52px);
    font-weight: 700;
    margin-top: 28px;
    line-height: 1.1;
    letter-spacing: 6.3px;
    text-align: center;
}

/* ============================================================
   HİZMET AKORDEONU
============================================================ */

.services-accordion {
    width: 100%;
}

.services-accordion__item {
    width: 100%;
    margin: 0 0 10px;
}

.services-accordion__heading {
    margin: 0;
    padding: 0;
}

.services-accordion__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 56px;
    margin: 0;
    padding: 15px 17px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    border-radius: 0;
    background: #153d62;
    color: #ffffff;
    font-family: "Montserrat", "Manrope", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-align: left;
    cursor: pointer;
    appearance: none;
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.services-accordion__button:hover {
    background: #1c527e;
}

.services-accordion__button:focus-visible {
    position: relative;
    z-index: 3;
    outline: 3px solid rgba(236, 29, 57, 0.72);
    outline-offset: 2px;
}

.services-accordion__button-text {
    display: block;
    min-width: 0;
    padding-right: 20px;
}

.services-accordion__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    color: #ffffff;
    transform: rotate(0deg);
    transform-origin: center;
    transition: transform 0.32s ease;
}

.services-accordion__arrow svg {
    display: block;
    width: 17px;
    height: 10px;
    overflow: visible;
}

.services-accordion__arrow path {
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.services-accordion__item.is-open
.services-accordion__arrow {
    transform: rotate(180deg);
}

/* ============================================================
   AÇILAN PANEL
============================================================ */

.services-accordion__panel {
    display: grid;
    grid-template-rows: 0fr;
    visibility: hidden;
    opacity: 0;
    transition:
        grid-template-rows 0.42s ease,
        opacity 0.28s ease,
        visibility 0s linear 0.42s;
}

.services-accordion__item.is-open
.services-accordion__panel {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    transition:
        grid-template-rows 0.42s ease,
        opacity 0.32s ease,
        visibility 0s linear 0s;
}

.services-accordion__panel-clip {
    min-height: 0;
    overflow: hidden;
}

.services-accordion__surface {
    width: 100%;
    margin: 10px 0 0;
    padding: 48px 50px;
    border: 1px solid #eeeeee;
    background: #f4f4f4;
    color: #333333;
}

.services-accordion__text {
    margin: 0 0 30px;
    color: #333333;
    font-family: "Montserrat", "Manrope", Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
}

.services-accordion__text > :first-child {
    margin-top: 0;
}

.services-accordion__text > :last-child {
    margin-bottom: 0;
}

.services-accordion__text p {
    margin: 0 0 15px;
}

.services-accordion__text h2,
.services-accordion__text h3,
.services-accordion__text h4 {
    margin: 26px 0 13px;
    color: #153d62;
    font-family: "Montserrat", "Manrope", Arial, sans-serif;
    font-weight: 600;
    line-height: 1.35;
}

.services-accordion__text ul,
.services-accordion__text ol {
    margin: 15px 0;
    padding-left: 22px;
}

.services-accordion__text li {
    margin-bottom: 7px;
}

.services-accordion__text a {
    color: #153d62;
    font-weight: 600;
    text-decoration: underline;
}

.services-accordion__text img {
    max-width: 100%;
    height: auto;
}

.services-accordion__empty-panel,
.services-accordion__empty {
    margin: 0;
    padding: 45px 20px;
    color: #153d62;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

.services-accordion__empty {
    border: 1px solid #eeeeee;
    background: #f4f4f4;
}

/* ============================================================
   HİZMET GÖRSEL GALERİSİ
============================================================ */

.services-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    width: 100%;
    column-gap: 15px;
    row-gap: 30px;
}

.services-gallery__item {
    position: relative;
    display: block;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    color: #153d62;
    text-decoration: none;
    cursor: zoom-in;
}

.services-gallery__item::after {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    content: "+";
    background: rgba(21, 61, 98, 0.35);
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 42px;
    font-weight: 300;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.services-gallery__image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    transform: scale(1);
    transform-origin: center;
    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}

.services-gallery__item:hover::after,
.services-gallery__item:focus-visible::after {
    opacity: 1;
}

.services-gallery__item:hover
.services-gallery__image,
.services-gallery__item:focus-visible
.services-gallery__image {
    transform: scale(1.035);
}

.services-gallery__item:focus-visible {
    outline: 3px solid #153d62;
    outline-offset: 3px;
}

/* ============================================================
   GÖRSEL BÜYÜTME PENCERESİ
============================================================ */

body.services-lightbox-open {
    overflow: hidden;
}

.service-lightbox[hidden] {
    display: none !important;
}

.service-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px;
}

.service-lightbox__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(5, 21, 34, 0.9);
    cursor: zoom-out;
    appearance: none;
}

.service-lightbox__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: min(1200px, 94vw);
    max-height: 90vh;
}

.service-lightbox__image {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 88vh;
    object-fit: contain;
    box-shadow: 0 18px 65px rgba(0, 0, 0, 0.5);
}

.service-lightbox__close {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    padding: 0;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: #153d62;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 31px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    appearance: none;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.service-lightbox__close span {
    display: block;
    margin-top: -3px;
}

.service-lightbox__close:hover,
.service-lightbox__close:focus-visible {
    background: #ffffff;
    color: #153d62;
    transform: rotate(90deg);
}

.service-lightbox__close:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
}

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

@media (max-width: 1024px) {
    .services-page__intro {
        min-height: 225px;
        padding-right: 24px;
        padding-left: 24px;
    }

    .services-page__intro-title {
        font-size: 36px;
    }

    .services-page__intro-text {
        font-size: 24px;
        letter-spacing: 2.4px;
    }

    .services-page__hero {
        height: 420px;
    }

    .services-page__title {
        letter-spacing: 4px;
    }

    .services-accordion__surface {
        padding: 40px 35px;
    }

    .services-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 18px;
        row-gap: 24px;
    }
}

/* ============================================================
   MOBİL
============================================================ */

@media (max-width: 767px) {
    .services-page__intro {
        min-height: 215px;
        padding: 34px 20px 38px;
    }

    .services-page__intro-title {
        margin-bottom: 16px;
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: 0.7px;
    }

    .services-page__intro-text {
        font-size: 19px;
        line-height: 1.35;
        letter-spacing: 1.2px;
    }

    .services-page__hero {
        height: 300px;
    }

    .services-page__content {
        padding: 40px 0 50px;
    }

    .services-page__container {
        width: min(100% - 28px, 1200px);
    }

    .services-page__title {
        margin-bottom: 30px;
        font-size: 32px;
        letter-spacing: 2.5px;
    }

    .services-accordion__button {
        min-height: 54px;
        padding: 14px 16px;
        font-size: 14px;
        line-height: 1.4;
    }

    .services-accordion__surface {
        padding: 30px 20px;
    }

    .services-accordion__text {
        margin-bottom: 25px;
        font-size: 14px;
        line-height: 1.7;
    }

    .services-gallery {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }

    .service-lightbox {
        padding: 20px;
    }

    .service-lightbox__close {
        top: -16px;
        right: -9px;
        width: 39px;
        height: 39px;
        font-size: 28px;
    }
}

@media (max-width: 420px) {
    .services-page__intro-title {
        font-size: 25px;
    }

    .services-page__intro-text {
        font-size: 17px;
    }

    .services-page__hero {
        height: 260px;
    }

    .services-page__title {
        font-size: 28px;
        letter-spacing: 1.7px;
    }

    .services-accordion__surface {
        padding: 25px 16px;
    }
}

/* ============================================================
   HAREKET AZALTMA
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .services-accordion__panel,
    .services-accordion__arrow,
    .services-gallery__image,
    .services-gallery__item::after,
    .service-lightbox__close {
        transition: none !important;
    }
}

/* ============================================================
   İŞ BİRLİKLERİ – KURUMSAL ANLAŞMALAR
============================================================ */

.agreements-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    color: #153d62;
}

.agreements-page *,
.agreements-page *::before,
.agreements-page *::after {
    box-sizing: border-box;
}

/* ============================================================
   SAYFA GİRİŞİ
============================================================ */

.agreements-page__intro {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 255px;
    padding: 44px 30px 48px;
    background: #ffffff;
    text-align: center;
}

.agreements-page__intro-container {
    width: min(1240px, 100%);
    margin: 0 auto;
}

.agreements-page__intro-title {
    margin: 0 0 20px;
    color: #153d62;
    font-family: "Josefin Sans", "Montserrat", Arial, sans-serif;
    font-size: clamp(30px, 2.45vw, 47px);
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: 1.5px;
}

.agreements-page__intro-text {
    max-width: 1180px;
    margin: 0 auto;
    color: #153d62;
    font-family: "Josefin Sans", "Montserrat", Arial, sans-serif;
    font-size: clamp(20px, 1.7vw, 31px);
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: 3.2px;
}

/* ============================================================
   ORTAK İÇ SAYFA GÖRSELİ
============================================================ */

.agreements-page__hero {
    position: relative;
    width: 100%;
    height: clamp(330px, 35vw, 550px);
    background-image: url("/assets/images/header-image.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.agreements-page__hero::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(8, 36, 58, 0.02) 0%,
            rgba(8, 36, 58, 0.1) 100%
        );
}

/* ============================================================
   SAYFA İÇERİĞİ
============================================================ */

.agreements-page__content {
    padding: 42px 0 72px;
    background: #ffffff;
}

.agreements-page__container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.agreements-page__title {
    margin: 0 0 42px;
    color: #153d62;
    font-family: "Josefin Sans", "Montserrat", Arial, sans-serif;
    font-size: clamp(30px, 3.55vw, 42px);
    margin-top: 28px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 2.3px;
    text-align: center;
}

/* ============================================================
   ANLAŞMA AKORDEONU
============================================================ */

.agreements-accordion {
    width: 100%;
}

.agreements-accordion__item {
    width: 100%;
    margin: 0 0 10px;
}

.agreements-accordion__heading {
    margin: 0;
    padding: 0;
}

.agreements-accordion__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 56px;
    margin: 0;
    padding: 15px 17px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    border-radius: 0;
    background: #153d62;
    color: #ffffff;
    font-family: "Montserrat", "Manrope", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-align: left;
    cursor: pointer;
    appearance: none;
    transition: background-color 0.25s ease;
}

.agreements-accordion__button:hover {
    background: #1c527e;
}

.agreements-accordion__button:focus-visible {
    position: relative;
    z-index: 3;
    outline: 3px solid rgba(236, 29, 57, 0.72);
    outline-offset: 2px;
}

.agreements-accordion__button-text {
    display: block;
    min-width: 0;
    padding-right: 20px;
}

.agreements-accordion__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    color: #ffffff;
    transform: rotate(0deg);
    transform-origin: center;
    transition: transform 0.32s ease;
}

.agreements-accordion__arrow svg {
    display: block;
    width: 10px;
    height: 17px;
    overflow: visible;
}

.agreements-accordion__arrow path {
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.agreements-accordion__item.is-open
.agreements-accordion__arrow {
    transform: rotate(90deg);
}

/* ============================================================
   AÇILAN PANEL
============================================================ */

.agreements-accordion__panel {
    display: grid;
    grid-template-rows: 0fr;
    visibility: hidden;
    opacity: 0;
    transition:
        grid-template-rows 0.42s ease,
        opacity 0.28s ease,
        visibility 0s linear 0.42s;
}

.agreements-accordion__item.is-open
.agreements-accordion__panel {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    transition:
        grid-template-rows 0.42s ease,
        opacity 0.32s ease,
        visibility 0s linear 0s;
}

.agreements-accordion__panel-clip {
    min-height: 0;
    overflow: hidden;
}

.agreements-accordion__surface {
    position: relative;
    width: 100%;
    min-height: 150px;
    margin: 10px 0 0;
    padding: 40px;
    overflow: hidden;
    border: 1px solid #eeeeee;
    background-color: #153d62;
    background-image:
        linear-gradient(
            135deg,
            rgba(21, 61, 98, 0.86) 0%,
            rgba(21, 61, 98, 0.7) 52%,
            rgba(11, 42, 68, 0.86) 100%
        ),
        url("/assets/images/panel.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.agreements-accordion__surface::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.025) 0%,
            rgba(7, 28, 45, 0.12) 100%
        );
}

.agreements-accordion__empty {
    margin: 0;
    padding: 45px 20px;
    border: 1px solid #eeeeee;
    background: #f4f4f4;
    color: #153d62;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

/* ============================================================
   ANLAŞMA GÖRSELLERİ
============================================================ */

.agreements-gallery {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 30px;
}

.agreements-gallery__item {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    color: #153d62;
    text-decoration: none;
    cursor: zoom-in;
}

.agreements-gallery__item::after {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    content: "+";
    background: rgba(21, 61, 98, 0.3);
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 48px;
    font-weight: 300;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.agreements-gallery__image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    transform: scale(1);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.agreements-gallery__item:hover::after,
.agreements-gallery__item:focus-visible::after {
    opacity: 1;
}

.agreements-gallery__item:hover
.agreements-gallery__image,
.agreements-gallery__item:focus-visible
.agreements-gallery__image {
    transform: scale(1.015);
}

.agreements-gallery__item:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 4px;
}

.agreements-gallery__empty {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 50px 20px;
    color: #ffffff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

/* ============================================================
   GÖRSEL BÜYÜTME PENCERESİ
============================================================ */

body.agreement-lightbox-open {
    overflow: hidden;
}

.agreement-lightbox[hidden] {
    display: none !important;
}

.agreement-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px;
}

.agreement-lightbox__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(5, 21, 34, 0.92);
    cursor: zoom-out;
    appearance: none;
}

.agreement-lightbox__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: min(1250px, 94vw);
    max-height: 92vh;
}

.agreement-lightbox__image {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 18px 65px rgba(0, 0, 0, 0.55);
}

.agreement-lightbox__close {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    padding: 0;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: #153d62;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 31px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    appearance: none;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.agreement-lightbox__close span {
    display: block;
    margin-top: -3px;
}

.agreement-lightbox__close:hover,
.agreement-lightbox__close:focus-visible {
    background: #ffffff;
    color: #153d62;
    transform: rotate(90deg);
}

.agreement-lightbox__close:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
}

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

@media (max-width: 1024px) {
    .agreements-page__intro {
        min-height: 225px;
        padding-right: 24px;
        padding-left: 24px;
    }

    .agreements-page__intro-title {
        font-size: 36px;
    }

    .agreements-page__intro-text {
        font-size: 24px;
        letter-spacing: 2.4px;
    }

    .agreements-page__hero {
        height: 420px;
    }

    .agreements-page__title {
        font-size: 42px;
        letter-spacing: 4px;
    }

    .agreements-accordion__surface {
        padding: 30px;
    }
}

/* ============================================================
   MOBİL
============================================================ */

@media (max-width: 767px) {
    .agreements-page__intro {
        min-height: 215px;
        padding: 34px 20px 38px;
    }

    .agreements-page__intro-title {
        margin-bottom: 16px;
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: 0.7px;
    }

    .agreements-page__intro-text {
        font-size: 19px;
        line-height: 1.35;
        letter-spacing: 1.2px;
    }

    .agreements-page__hero {
        height: 300px;
    }

    .agreements-page__content {
        padding: 40px 0 50px;
    }

    .agreements-page__container {
        width: min(100% - 28px, 1200px);
    }

    .agreements-page__title {
        margin-bottom: 30px;
        font-size: 31px;
        letter-spacing: 2.3px;
    }

    .agreements-accordion__button {
        min-height: 54px;
        padding: 14px 16px;
        font-size: 14px;
        line-height: 1.4;
    }

    .agreements-accordion__surface {
        padding: 20px;
    }

    .agreements-gallery {
        gap: 20px;
    }

    .agreement-lightbox {
        padding: 20px;
    }

    .agreement-lightbox__close {
        top: -16px;
        right: -9px;
        width: 39px;
        height: 39px;
        font-size: 28px;
    }
}

@media (max-width: 420px) {
    .agreements-page__intro-title {
        font-size: 25px;
    }

    .agreements-page__intro-text {
        font-size: 17px;
    }

    .agreements-page__hero {
        height: 260px;
    }

    .agreements-page__title {
        font-size: 27px;
        letter-spacing: 1.6px;
    }

    .agreements-accordion__surface {
        padding: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .agreements-accordion__panel,
    .agreements-accordion__arrow,
    .agreements-gallery__item::after,
    .agreements-gallery__image,
    .agreement-lightbox__close {
        transition: none !important;
    }
}

/* ============================================================
   FİRMALARIMIZ SAYFASI
============================================================ */

.companies-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    color: #153d62;
}

.companies-page *,
.companies-page *::before,
.companies-page *::after {
    box-sizing: border-box;
}

/* ============================================================
   SAYFA GİRİŞİ
============================================================ */

.companies-page__intro {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 255px;
    padding: 44px 30px 48px;
    background: #ffffff;
    text-align: center;
}

.companies-page__intro-container {
    width: min(1240px, 100%);
    margin: 0 auto;
}

.companies-page__intro-title {
    margin: 0 0 20px;
    color: #153d62;
    font-family: "Josefin Sans", "Montserrat", Arial, sans-serif;
    font-size: clamp(30px, 2.45vw, 47px);
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: 1.5px;
}

.companies-page__intro-text {
    max-width: 1180px;
    margin: 0 auto;
    color: #153d62;
    font-family: "Josefin Sans",  Arial, sans-serif;
    font-size: 25px;
    font-weight: 300;
    line-height: 27.2px;
    letter-spacing: 1.5px;
    text-align: center;
}

/* ============================================================
   ORTAK İÇ SAYFA GÖRSELİ
============================================================ */

.companies-page__hero {
    position: relative;
    width: 100%;
    height: clamp(330px, 35vw, 550px);
    background-image: url("/assets/images/header-image.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.companies-page__hero::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(8, 36, 58, 0.02) 0%,
            rgba(8, 36, 58, 0.1) 100%
        );
}

/* ============================================================
   FİRMALAR İÇERİĞİ
============================================================ */

.companies-page__content {
    padding: 42px 0 75px;
    background: #ffffff;
}

.companies-page__container {
    width: min(1328px, calc(100% - 40px));
    margin: 0 auto;
}

.companies-page__title {
    margin: 0 0 60px;
    color: #153d62;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(36px, 3.55vw, 52px);
    font-weight: 700;
    margin-top: 28px;
    line-height: 1.1;
    letter-spacing: 6.3px;
    text-align: center;
}

.companies-directory {
    display: grid;
    grid-template-columns: 423px minmax(0, 1fr);
    align-items: start;
    width: 100%;
    column-gap: 20px;
}

.companies-directory__filters {
    position: sticky;
    top: 20px;
    z-index: 20;
    align-self: start;
}

.companies-directory__results {
    min-width: 0;
}

/* ============================================================
   FİLTRELER
============================================================ */

.company-filter {
    position: relative;
    width: 100%;
    margin: 0 0 19px;
}

.company-filter__title {
    margin: 0 0 19px;
    color: #153d62;
    font-family: "Josefin Sans", "Montserrat", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
}

.company-filter__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 45px;
    margin: 0;
    padding: 0 12px;
    border: 1px solid #eeeeee;
    border-radius: 0;
    background: #ffffff;
    color: #666666;
    font-family: "Montserrat", "Manrope", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
    appearance: none;
    transition:
        border-color 0.25s ease,
        color 0.25s ease;
}

.company-filter__button:hover {
    border-color: #153d62;
    color: #153d62;
}

.company-filter__button:focus-visible {
    outline: 2px solid #153d62;
    outline-offset: 2px;
}

.company-filter__button-label {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.company-filter__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 10px;
    margin-left: 12px;
    flex: 0 0 14px;
    transform: rotate(0deg);
    transition: transform 0.25s ease;
}

.company-filter.is-open
.company-filter__arrow {
    transform: rotate(180deg);
}

.company-filter__arrow svg {
    display: block;
    width: 10px;
    height: 7px;
}

.company-filter__arrow path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.company-filter__panel {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    left: 0;
    z-index: 50;
    max-height: 330px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid #e4e4e4;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(21, 61, 98, 0.16);
}

.company-filter__options {
    padding: 7px 0;
}

.company-filter__option {
    position: relative;
    display: flex;
    align-items: flex-start;
    width: 100%;
    min-height: 39px;
    margin: 0;
    padding: 9px 13px;
    color: #333333;
    font-family: "Montserrat", "Manrope", Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.company-filter__option:hover {
    background: #f2f5f7;
    color: #153d62;
}

.company-filter__checkbox {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.company-filter__checkmark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    margin: 1px 9px 0 0;
    flex: 0 0 17px;
    border: 1px solid #c9c9c9;
    background: #ffffff;
    color: #ffffff;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.company-filter__checkmark svg {
    display: block;
    width: 11px;
    height: 9px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.company-filter__checkmark path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.company-filter__checkbox:checked
+
.company-filter__checkmark {
    border-color: #153d62;
    background: #153d62;
}

.company-filter__checkbox:checked
+
.company-filter__checkmark svg {
    opacity: 1;
}

.company-filter__checkbox:focus-visible
+
.company-filter__checkmark {
    outline: 2px solid #153d62;
    outline-offset: 2px;
}

.company-filter__option-text {
    display: block;
    min-width: 0;
}

.company-filter__empty {
    margin: 0;
    padding: 17px 14px;
    color: #777777;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.5;
}

/* ============================================================
   FİRMA LOGOLARI
============================================================ */

.companies-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: start;
    width: 100%;
    column-gap: 30px;
    row-gap: 30px;
}

.company-card {
    width: 100%;
    min-width: 0;
    aspect-ratio: 1 / 1;
}

.company-card.is-filtered-out {
    display: none;
}

.company-card__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: #153d62;
    text-decoration: none;
}

.company-card__logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    filter:
        grayscale(1)
        saturate(0)
        brightness(0.94)
        contrast(1.04);
    transform: scale(1);
    transform-origin: center;
    transition:
        filter 0.35s ease,
        transform 0.35s ease;
}

.company-card__link:hover
.company-card__logo,
.company-card__link:focus-visible
.company-card__logo {
    filter:
        grayscale(0)
        saturate(1)
        brightness(1)
        contrast(1);
    transform: scale(0.94);
}

.company-card__link:focus-visible {
    outline: 3px solid #153d62;
    outline-offset: 4px;
}

.company-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 14px;
    border: 1px solid #eeeeee;
    background: #f7f7f7;
    color: #153d62;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
}

.companies-grid__empty,
.companies-grid__no-result {
    grid-column: 1 / -1;
    margin: 0;
    padding: 50px 20px;
    border: 1px solid #eeeeee;
    background: #f7f7f7;
    color: #153d62;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

.companies-grid__no-result {
    width: 100%;
}

/* ============================================================
   ORTA BOY MASAÜSTÜ
============================================================ */

@media (max-width: 1200px) {
    .companies-directory {
        grid-template-columns: 330px minmax(0, 1fr);
        column-gap: 25px;
    }

    .companies-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 25px;
    }
}

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

@media (max-width: 900px) {
    .companies-page__intro {
        min-height: 225px;
        padding-right: 24px;
        padding-left: 24px;
    }

    .companies-page__intro-title {
        font-size: 36px;
    }

    .companies-page__intro-text {
        font-size: 24px;
        letter-spacing: 2.4px;
    }

    .companies-page__hero {
        height: 420px;
    }

    .companies-page__title {
        letter-spacing: 4px;
    }

    .companies-directory {
        grid-template-columns: 1fr;
        row-gap: 35px;
    }

    .companies-directory__filters {
        position: relative;
        top: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 20px;
    }

    .company-filter {
        margin-bottom: 0;
    }

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

/* ============================================================
   MOBİL
============================================================ */

@media (max-width: 767px) {
    .companies-page__intro {
        min-height: 215px;
        padding: 34px 20px 38px;
    }

    .companies-page__intro-title {
        margin-bottom: 16px;
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: 0.7px;
    }

    .companies-page__intro-text {
        font-size: 19px;
        line-height: 1.35;
        letter-spacing: 1.2px;
    }

    .companies-page__hero {
        height: 300px;
    }

    .companies-page__content {
        padding: 40px 0 50px;
    }

    .companies-page__container {
        width: min(100% - 28px, 1328px);
    }

    .companies-page__title {
        margin-bottom: 36px;
        font-size: 32px;
        letter-spacing: 2.5px;
    }

    .companies-directory__filters {
        grid-template-columns: 1fr;
        row-gap: 22px;
    }

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

@media (max-width: 520px) {
    .companies-page__intro-title {
        font-size: 25px;
    }

    .companies-page__intro-text {
        font-size: 17px;
    }

    .companies-page__hero {
        height: 260px;
    }

    .companies-page__title {
        font-size: 28px;
        letter-spacing: 1.7px;
    }

    .companies-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .company-filter__arrow,
    .company-filter__checkmark,
    .company-filter__checkmark svg,
    .company-card__logo {
        transition: none !important;
    }
}

/* ============================================================
   FİRMALARIMIZ SAYFASI
============================================================ */

.companies-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    color: #153d62;
}

.companies-page *,
.companies-page *::before,
.companies-page *::after {
    box-sizing: border-box;
}

/* ============================================================
   SAYFA GİRİŞİ
============================================================ */

.companies-page__intro {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 255px;
    padding: 44px 30px 48px;
    background: #ffffff;
    text-align: center;
}

.companies-page__intro-container {
    width: min(1240px, 100%);
    margin: 0 auto;
}

.companies-page__intro-title {
    margin: 0 0 20px;
    color: #153d62;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(30px, 2.45vw, 47px);
    font-weight: 600;
    line-height: 1.14;
    letter-spacing: 1.5px;
}

.companies-page__intro-text {
    max-width: 1100px;
    margin: 0 auto;
    color: #153d62;
    font-family: "Josefin Sans",  Arial, sans-serif;
    font-size: 25px;
    font-weight: 300;
    line-height: 27.2px;
    letter-spacing: 1.5px;
    text-align: center;
}

/* ============================================================
   ORTAK İÇ SAYFA GÖRSELİ
============================================================ */

.companies-page__hero {
    position: relative;
    width: 100%;
    height: clamp(330px, 35vw, 550px);
    background-image: url("/assets/images/header-image.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.companies-page__hero::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(8, 36, 58, 0.02) 0%,
            rgba(8, 36, 58, 0.1) 100%
        );
}

/* ============================================================
   FİRMALAR İÇERİĞİ
============================================================ */

.companies-page__content {
    padding: 42px 0 75px;
    background: #ffffff;
}

.companies-page__container {
    width: min(1328px, calc(100% - 40px));
    margin: 0 auto;
}

.companies-page__title {
    margin: 0 0 60px;
    color: #153d62;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(36px, 3.55vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 6.3px;
    margin-top: 28px;
    text-align: center;
}

.companies-directory {
    display: grid;
    grid-template-columns: 423px minmax(0, 1fr);
    align-items: start;
    width: 100%;
    column-gap: 20px;
}

.companies-directory__filters {
    position: sticky;
    top: 20px;
    z-index: 20;
    align-self: start;
}

.companies-directory__results {
    min-width: 0;
}

/* ============================================================
   FİLTRELER
============================================================ */

.company-filter {
    position: relative;
    width: 100%;
    margin: 0 0 19px;
}

.company-filter__title {
    margin: 0 0 19px;
    color: #153d62;
    font-family: "Josefin Sans", "Montserrat", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
}

.company-filter__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 45px;
    margin: 0;
    padding: 0 12px;
    border: 1px solid #eeeeee;
    border-radius: 0;
    background: #ffffff;
    color: #666666;
    font-family: "Montserrat", "Manrope", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
    appearance: none;
    transition:
        border-color 0.25s ease,
        color 0.25s ease;
}

.company-filter__button:hover {
    border-color: #153d62;
    color: #153d62;
}

.company-filter__button:focus-visible {
    outline: 2px solid #153d62;
    outline-offset: 2px;
}

.company-filter__button-label {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.company-filter__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 10px;
    margin-left: 12px;
    flex: 0 0 14px;
    transform: rotate(0deg);
    transition: transform 0.25s ease;
}

.company-filter.is-open
.company-filter__arrow {
    transform: rotate(180deg);
}

.company-filter__arrow svg {
    display: block;
    width: 10px;
    height: 7px;
}

.company-filter__arrow path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.company-filter__panel {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    left: 0;
    z-index: 50;
    max-height: 330px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid #e4e4e4;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(21, 61, 98, 0.16);
}

.company-filter__options {
    padding: 7px 0;
}

.company-filter__option {
    position: relative;
    display: flex;
    align-items: flex-start;
    width: 100%;
    min-height: 39px;
    margin: 0;
    padding: 9px 13px;
    color: #333333;
    font-family: "Montserrat", "Manrope", Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.company-filter__option:hover {
    background: #f2f5f7;
    color: #153d62;
}

.company-filter__checkbox {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.company-filter__checkmark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    margin: 1px 9px 0 0;
    flex: 0 0 17px;
    border: 1px solid #c9c9c9;
    background: #ffffff;
    color: #ffffff;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.company-filter__checkmark svg {
    display: block;
    width: 11px;
    height: 9px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.company-filter__checkmark path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.company-filter__checkbox:checked
+
.company-filter__checkmark {
    border-color: #153d62;
    background: #153d62;
}

.company-filter__checkbox:checked
+
.company-filter__checkmark svg {
    opacity: 1;
}

.company-filter__checkbox:focus-visible
+
.company-filter__checkmark {
    outline: 2px solid #153d62;
    outline-offset: 2px;
}

.company-filter__option-text {
    display: block;
    min-width: 0;
}

.company-filter__empty {
    margin: 0;
    padding: 17px 14px;
    color: #777777;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.5;
}

/* ============================================================
   FİRMA LOGOLARI
============================================================ */

.companies-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: start;
    width: 100%;
    column-gap: 30px;
    row-gap: 30px;
}

.company-card {
    width: 100%;
    min-width: 0;
    aspect-ratio: 1 / 1;
}

.company-card.is-filtered-out {
    display: none;
}

.company-card__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: #153d62;
    text-decoration: none;
}

.company-card__logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    filter:
        grayscale(1)
        saturate(0)
        brightness(0.94)
        contrast(1.04);
    transform: scale(1);
    transform-origin: center;
    transition:
        filter 0.35s ease,
        transform 0.35s ease;
}

.company-card__link:hover
.company-card__logo,
.company-card__link:focus-visible
.company-card__logo {
    filter:
        grayscale(0)
        saturate(1)
        brightness(1)
        contrast(1);
    transform: scale(0.94);
}

.company-card__link:focus-visible {
    outline: 3px solid #153d62;
    outline-offset: 4px;
}

.company-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 14px;
    border: 1px solid #eeeeee;
    background: #f7f7f7;
    color: #153d62;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
}

.companies-grid__empty,
.companies-grid__no-result {
    grid-column: 1 / -1;
    margin: 0;
    padding: 50px 20px;
    border: 1px solid #eeeeee;
    background: #f7f7f7;
    color: #153d62;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

.companies-grid__no-result {
    width: 100%;
}

/* ============================================================
   ORTA BOY MASAÜSTÜ
============================================================ */

@media (max-width: 1200px) {
    .companies-directory {
        grid-template-columns: 330px minmax(0, 1fr);
        column-gap: 25px;
    }

    .companies-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 25px;
    }
}

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

@media (max-width: 900px) {
    .companies-page__intro {
        min-height: 225px;
        padding-right: 24px;
        padding-left: 24px;
    }

    .companies-page__intro-title {
        font-size: 36px;
    }

    .companies-page__intro-text {
        font-size: 24px;
        letter-spacing: 2.4px;
    }

    .companies-page__hero {
        height: 420px;
    }

    .companies-page__title {
        letter-spacing: 4px;
    }

    .companies-directory {
        grid-template-columns: 1fr;
        row-gap: 35px;
    }

    .companies-directory__filters {
        position: relative;
        top: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 20px;
    }

    .company-filter {
        margin-bottom: 0;
    }

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

/* ============================================================
   MOBİL
============================================================ */

@media (max-width: 767px) {
    .companies-page__intro {
        min-height: 215px;
        padding: 34px 20px 38px;
    }

    .companies-page__intro-title {
        margin-bottom: 16px;
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: 0.7px;
    }

    .companies-page__intro-text {
        font-size: 19px;
        line-height: 1.35;
        letter-spacing: 1.2px;
    }

    .companies-page__hero {
        height: 300px;
    }

    .companies-page__content {
        padding: 40px 0 50px;
    }

    .companies-page__container {
        width: min(100% - 28px, 1328px);
    }

    .companies-page__title {
        margin-bottom: 36px;
        font-size: 32px;
        letter-spacing: 2.5px;
    }

    .companies-directory__filters {
        grid-template-columns: 1fr;
        row-gap: 22px;
    }

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

@media (max-width: 520px) {
    .companies-page__intro-title {
        font-size: 25px;
    }

    .companies-page__intro-text {
        font-size: 17px;
    }

    .companies-page__hero {
        height: 260px;
    }

    .companies-page__title {
        font-size: 28px;
        letter-spacing: 1.7px;
    }

    .companies-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .company-filter__arrow,
    .company-filter__checkmark,
    .company-filter__checkmark svg,
    .company-card__logo {
        transition: none !important;
    }
}

/* ============================================================
   FİRMA DETAY SAYFASI
============================================================ */

.company-detail-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    color: #0b0f1f;
}

.company-detail-page *,
.company-detail-page *::before,
.company-detail-page *::after {
    box-sizing: border-box;
}

/* ============================================================
   BREADCRUMB BANDI
============================================================ */

.company-detail-page__breadcrumb {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 177px;
    overflow: hidden;
    background-color: #153d62;
    background-image:
        linear-gradient(
            90deg,
            rgba(21, 61, 98, 0.9) 0%,
            rgba(21, 61, 98, 0.75) 50%,
            rgba(21, 61, 98, 0.82) 100%
        ),
        url("/assets/images/panel.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.company-detail-page__breadcrumb::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(8, 33, 54, 0.08) 0%,
            rgba(8, 33, 54, 0.2) 100%
        );
}

.company-detail-page__breadcrumb-container {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 60px));
    margin: 0 auto;
    padding: 30px;
}

.company-detail-page__breadcrumb-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    color: #ffffff;
    font-family: "Comfortaa", "Montserrat", Arial, sans-serif;
    font-size: clamp(27px, 2.5vw, 34px);
    font-weight: 700;
    line-height: 1.4;
}

.company-detail-page__breadcrumb-text span {
    margin: 0 10px;
}

.company-detail-page__breadcrumb-text a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.company-detail-page__breadcrumb-text a:hover,
.company-detail-page__breadcrumb-text a:focus-visible {
    color: #ffffff;
    opacity: 0.78;
}

.company-detail-page__breadcrumb-text a:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

/* ============================================================
   FİRMA DETAYI
============================================================ */

.company-detail {
    width: 100%;
    margin: 30px 0 60px;
    background: #ffffff;
}

.company-detail__container {
    width: min(1200px, calc(100% - 60px));
    margin: 0 auto;
    padding: 0 30px;
}

.company-detail__header {
    margin: 0 0 32px;
    padding: 0 0 17px;
    border-bottom: 1px solid #303030;
}

.company-detail__title {
    margin: 0;
    color: #0b0f1f;
    font-family: "Comfortaa", "Montserrat", Arial, sans-serif;
    font-size: clamp(27px, 2.5vw, 34px);
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

/* ============================================================
   İLETİŞİM VE LOGO SATIRI
============================================================ */

.company-detail__overview {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(220px, 1fr);
    align-items: stretch;
    width: 100%;
    column-gap: 52px;
    margin: 0 0 17px;
}

.company-detail__contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 20px;
}

.company-detail-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    min-width: 0;
    min-height: 228px;
    padding: 20px;
    border: 3px solid rgba(21, 61, 98, 0.62);
    border-radius: 20px;
    background: #ffffff;
    color: rgba(11, 15, 31, 0.72);
    text-align: center;
}

.company-detail-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin: 0 0 15px;
    color: #263d81;
}

.company-detail-card__icon svg {
    display: block;
    width: 52px;
    height: 52px;
    overflow: visible;
}

.company-detail-card__icon path,
.company-detail-card__icon circle,
.company-detail-card__icon rect {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.company-detail-card__content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
    color: rgba(11, 15, 31, 0.72);
    font-family: "Montserrat", "Manrope", Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.95;
}

.company-detail-card__line {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
    color: inherit;
}

.company-detail-card__line + .company-detail-card__line {
    margin-top: 3px;
}

.company-detail-card__link {
    text-decoration: none;
    transition: color 0.25s ease;
}

.company-detail-card__link:hover,
.company-detail-card__link:focus-visible {
    color: #153d62;
    text-decoration: underline;
}

.company-detail-card__link:focus-visible {
    outline: 2px solid #153d62;
    outline-offset: 3px;
}

.company-detail-card__line--empty {
    opacity: 0.65;
}

.company-detail-card__sr-title {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* ============================================================
   FİRMA LOGOSU
============================================================ */

.company-detail__logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 228px;
}

.company-detail__logo {
    display: block;
    width: 228px;
    height: 228px;
    max-width: 100%;
    object-fit: contain;
    object-position: center center;
}

.company-detail__logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 228px;
    height: 228px;
    max-width: 100%;
    padding: 24px;
    border: 1px solid #eeeeee;
    background: #f7f7f7;
    color: #153d62;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
}

/* ============================================================
   AÇIKLAMA
============================================================ */

.company-detail__description {
    margin: 0;
    color: rgba(11, 15, 31, 0.72);
    font-family: "Montserrat", "Manrope", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.85;
}

.company-detail__description > :first-child {
    margin-top: 0;
}

.company-detail__description > :last-child {
    margin-bottom: 0;
}

.company-detail__description p {
    margin: 0 0 14px;
}

.company-detail__description h2,
.company-detail__description h3,
.company-detail__description h4 {
    margin: 25px 0 12px;
    color: #153d62;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 600;
    line-height: 1.4;
}

.company-detail__description ul,
.company-detail__description ol {
    margin: 14px 0;
    padding-left: 22px;
}

.company-detail__description li {
    margin-bottom: 7px;
}

.company-detail__description a {
    color: #153d62;
    font-weight: 600;
    text-decoration: underline;
}

.company-detail__description img {
    max-width: 100%;
    height: auto;
}

/* ============================================================
   WEB SİTESİ BUTONU
============================================================ */

.company-detail__actions {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 28px 0 0;
}

.company-detail__website {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 21px;
    border: 2px solid #153d62;
    border-radius: 25px;
    background: #153d62;
    color: #ffffff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.company-detail__website:hover,
.company-detail__website:focus-visible {
    background: #ffffff;
    color: #153d62;
    transform: translateY(-2px);
}

.company-detail__website:focus-visible {
    outline: 2px solid #153d62;
    outline-offset: 4px;
}

/* ============================================================
   BULUNAMADI
============================================================ */

.company-detail-error {
    padding: 80px 20px 100px;
    background: #ffffff;
}

.company-detail-error__container {
    width: min(760px, 100%);
    margin: 0 auto;
    text-align: center;
}

.company-detail-error__title {
    margin: 0 0 18px;
    color: #153d62;
    font-family: "Comfortaa", "Montserrat", Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
}

.company-detail-error__text {
    margin: 0 0 27px;
    color: rgba(11, 15, 31, 0.72);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
}

.company-detail-error__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 22px;
    border: 2px solid #153d62;
    border-radius: 24px;
    background: #153d62;
    color: #ffffff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.company-detail-error__link:hover,
.company-detail-error__link:focus-visible {
    background: #ffffff;
    color: #153d62;
}

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

@media (max-width: 1024px) {
    .company-detail__overview {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .company-detail__logo-area {
        min-height: 0;
    }

    .company-detail__logo,
    .company-detail__logo-placeholder {
        width: 210px;
        height: 210px;
    }
}

/* ============================================================
   MOBİL
============================================================ */

@media (max-width: 767px) {
    .company-detail-page__breadcrumb {
        min-height: 145px;
    }

    .company-detail-page__breadcrumb-container {
        width: min(100% - 28px, 1200px);
        padding: 20px 0;
    }

    .company-detail-page__breadcrumb-text {
        font-size: 24px;
    }

    .company-detail {
        margin: 30px 0 48px;
    }

    .company-detail__container {
        width: min(100% - 28px, 1200px);
        padding: 0;
    }

    .company-detail__title {
        font-size: 27px;
    }

    .company-detail__contact-grid {
        grid-template-columns: 1fr;
    }

    .company-detail-card {
        min-height: 200px;
    }

    .company-detail__description {
        font-size: 14px;
        line-height: 1.75;
    }
}

@media (max-width: 420px) {
    .company-detail-page__breadcrumb-text {
        font-size: 20px;
    }

    .company-detail__title {
        font-size: 24px;
    }

    .company-detail__logo,
    .company-detail__logo-placeholder {
        width: 190px;
        height: 190px;
    }
}

/* ============================================================
   BAŞVURU SAYFASI
   ============================================================ */

   .application-page {
    --application-primary: #153D62;
    --application-primary-dark: #0f2e4b;
    --application-white: #ffffff;
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    color: var(--application-primary);
    font-family: "Manrope", "Montserrat", Arial, sans-serif;
}

.application-page *,
.application-page *::before,
.application-page *::after,
.preincubation-modal *,
.preincubation-modal *::before,
.preincubation-modal *::after {
    box-sizing: border-box;
}

.application-page__intro {
    padding: 86px 24px 65px;
    background: #ffffff;
}

.application-page__intro-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.application-page__intro-title {
    max-width: 820px;
    margin: 0 0 25px;
    color: var(--application-primary);
    font-family: "Manrope", "Montserrat", Arial, sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 2px;
}

.application-page__intro-text {
    max-width: 720px;
    margin: 0;
    color: var(--application-primary);
    font-family: "Manrope", "Montserrat", Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;
}

.application-page__hero {
    width: 100%;
    height: 520px;
    background-image: url("/assets/images/header-image.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.application-page__content {
    padding: 72px 24px 100px;
    background: #ffffff;
}

.application-page__container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.application-page__title {
    margin: 0 0 52px;
    color: var(--application-primary);
    font-family: "Manrope", "Montserrat", Arial, sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 8px;
    text-align: center;
}

.application-page__empty,
.application-panel__empty {
    margin: 0;
    padding: 28px 20px;
    color: #ffffff;
    font-family: "Manrope", "Montserrat", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
}

.application-accordion {
    width: 100%;
}

.application-accordion__item {
    width: 100%;
    margin: 0 0 10px;
}

.application-accordion__item:last-child {
    margin-bottom: 0;
}

.application-accordion__heading {
    margin: 0;
}

.application-accordion__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 56px;
    margin: 0;
    padding: 15px 21px;
    border: 0;
    border-radius: 0;
    background: var(--application-primary);
    color: #ffffff;
    font-family: "Manrope", "Montserrat", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition:
        background-color .25s ease,
        color .25s ease;
}

.application-accordion__button:hover,
.application-accordion__button:focus-visible,
.application-accordion__item.is-open >
.application-accordion__heading >
.application-accordion__button {
    background: var(--application-primary-dark);
}

.application-accordion__button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: -4px;
}

.application-accordion__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin-left: 24px;
    transition: transform .35s ease;
}

.application-accordion__arrow svg {
    display: block;
    width: 8px;
    height: 14px;
}

.application-accordion__arrow path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.application-accordion__item.is-open >
.application-accordion__heading
.application-accordion__arrow {
    transform: rotate(90deg);
}

.application-accordion__panel {
    display: grid;
    grid-template-rows: 0fr;
    visibility: hidden;
    opacity: 0;
    transition:
        grid-template-rows .45s ease,
        opacity .3s ease,
        visibility 0s linear .45s;
}

.application-accordion__item.is-open >
.application-accordion__panel {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    transition:
        grid-template-rows .45s ease,
        opacity .35s ease,
        visibility 0s linear 0s;
}

.application-accordion__panel-clip {
    min-height: 0;
    overflow: hidden;
}

.application-accordion__surface {
    position: relative;
    padding: 46px 48px 52px;
    overflow: hidden;
    background-color: var(--application-primary);
    background-image:
        linear-gradient(
            rgba(21, 61, 98, .94),
            rgba(21, 61, 98, .94)
        ),
        url("/assets/images/header-image.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #ffffff;
    transform: translateY(-8px);
    opacity: 0;
    transition:
        transform .4s ease,
        opacity .3s ease;
}

.application-accordion__item.is-open
.application-accordion__surface {
    transform: translateY(0);
    opacity: 1;
}

.application-rich-text {
    color: #ffffff;
    font-family: "Manrope", "Montserrat", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.85;
}

.application-rich-text > :first-child {
    margin-top: 0;
}

.application-rich-text > :last-child {
    margin-bottom: 0;
}

.application-rich-text p {
    margin: 0 0 19px;
}

.application-rich-text h2,
.application-rich-text h3,
.application-rich-text h4 {
    margin: 34px 0 18px;
    color: #ffffff;
    font-family: "Manrope", "Montserrat", Arial, sans-serif;
    font-weight: 600;
    line-height: 1.45;
}

.application-rich-text h2,
.application-rich-text h3 {
    font-size: 22px;
}

.application-rich-text h4 {
    font-size: 17px;
}

.application-rich-text ol,
.application-rich-text ul {
    margin: 0 0 26px;
    padding-left: 24px;
}

.application-rich-text li {
    margin-bottom: 11px;
    padding-left: 4px;
}

.application-rich-text strong {
    color: #ffffff;
    font-weight: 700;
}

.application-rich-text em {
    color: rgba(255, 255, 255, .84);
    font-size: 13px;
    line-height: 1.75;
}

.application-rich-text a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.application-rich-text img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}

.application-action {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.application-action__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 29px;
    border: 1px solid #ffffff;
    border-radius: 30px;
    background: #ffffff;
    color: var(--application-primary);
    font-family: "Manrope", "Montserrat", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    transition:
        background-color .25s ease,
        color .25s ease,
        transform .25s ease;
}

.application-action__link:hover,
.application-action__link:focus-visible {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}

.application-action__link:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.application-subaccordion {
    width: 100%;
    margin-top: 10px;
}

.application-subaccordion__item {
    width: 100%;
    margin: 0 0 10px;
}

.application-subaccordion__item:last-child {
    margin-bottom: 0;
}

.application-subaccordion__heading {
    margin: 0;
}

.application-subaccordion__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 54px;
    margin: 0;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 0;
    background: rgba(255, 255, 255, .09);
    color: #ffffff;
    font-family: "Manrope", "Montserrat", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition:
        background-color .25s ease,
        border-color .25s ease;
}

.application-subaccordion__button:hover,
.application-subaccordion__button:focus-visible,
.application-subaccordion__item.is-open >
.application-subaccordion__heading >
.application-subaccordion__button {
    border-color: #ffffff;
    background: rgba(255, 255, 255, .17);
}

.application-subaccordion__button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: -4px;
}

.application-subaccordion__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-left: 20px;
    transition: transform .35s ease;
}

.application-subaccordion__arrow svg {
    display: block;
    width: 8px;
    height: 14px;
}

.application-subaccordion__arrow path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.application-subaccordion__item.is-open >
.application-subaccordion__heading
.application-subaccordion__arrow {
    transform: rotate(90deg);
}

.application-subaccordion__panel {
    display: grid;
    grid-template-rows: 0fr;
    visibility: hidden;
    opacity: 0;
    transition:
        grid-template-rows .4s ease,
        opacity .3s ease,
        visibility 0s linear .4s;
}

.application-subaccordion__item.is-open >
.application-subaccordion__panel {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    transition:
        grid-template-rows .4s ease,
        opacity .3s ease,
        visibility 0s linear 0s;
}

.application-subaccordion__panel-clip {
    min-height: 0;
    overflow: hidden;
}

.application-subaccordion__surface {
    padding: 38px 26px 42px;
    border-right: 1px solid rgba(255, 255, 255, .25);
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    border-left: 1px solid rgba(255, 255, 255, .25);
    background: rgba(4, 28, 48, .22);
}

.application-legislation {
    margin-bottom: 42px;
}

.application-legislation:last-child {
    margin-bottom: 0;
}

.application-legislation__title {
    margin: 0 0 24px;
    color: #ffffff;
    font-family: "Manrope", "Montserrat", Arial, sans-serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
}

.application-legislation__list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
}

.application-legislation__file {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px;
    align-items: center;
    gap: 15px;
    min-height: 54px;
    padding: 12px 17px;
    border: 1px solid rgba(255, 255, 255, .30);
    background: rgba(255, 255, 255, .08);
    color: #ffffff;
    font-family: "Manrope", "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
    transition:
        background-color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.application-legislation__file:hover,
.application-legislation__file:focus-visible {
    border-color: #ffffff;
    background: rgba(255, 255, 255, .18);
    transform: translateX(4px);
}

.application-legislation__file:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.application-legislation__file-name {
    min-width: 0;
}

.application-legislation__file-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.application-legislation__file-arrow svg {
    display: block;
    width: 7px;
    height: 13px;
}

.application-legislation__file-arrow path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.application-faq {
    width: 100%;
}

.application-faq__item {
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, .30);
    background: rgba(255, 255, 255, .07);
}

.application-faq__item:last-child {
    margin-bottom: 0;
}

.application-faq__heading {
    margin: 0;
}

.application-faq__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 54px;
    padding: 13px 17px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    font-family: "Manrope", "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: background-color .25s ease;
}

.application-faq__button:hover,
.application-faq__button:focus-visible,
.application-faq__item.is-open
.application-faq__button {
    background: rgba(255, 255, 255, .15);
}

.application-faq__button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: -4px;
}

.application-faq__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-left: 20px;
    transition: transform .35s ease;
}

.application-faq__arrow svg {
    display: block;
    width: 7px;
    height: 13px;
}

.application-faq__arrow path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.application-faq__item.is-open
.application-faq__arrow {
    transform: rotate(90deg);
}

.application-faq__panel {
    display: grid;
    grid-template-rows: 0fr;
    visibility: hidden;
    opacity: 0;
    transition:
        grid-template-rows .4s ease,
        opacity .3s ease,
        visibility 0s linear .4s;
}

.application-faq__item.is-open >
.application-faq__panel {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    transition:
        grid-template-rows .4s ease,
        opacity .3s ease,
        visibility 0s linear 0s;
}

.application-faq__panel-clip {
    min-height: 0;
    overflow: hidden;
}

.application-faq__answer {
    padding: 20px 22px;
    border-top: 1px solid rgba(255, 255, 255, .25);
    color: rgba(255, 255, 255, .92);
    font-family: "Manrope", "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.8;
}

.application-faq__answer > :first-child {
    margin-top: 0;
}

.application-faq__answer > :last-child {
    margin-bottom: 0;
}

.application-faq__answer p {
    margin: 0 0 15px;
}

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

.preincubation-modal {
    position: fixed;
    z-index: 99999;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    font-family: "Manrope", "Montserrat", Arial, sans-serif;
    transition:
        opacity .25s ease,
        visibility 0s linear .25s;
}

.preincubation-modal.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition:
        opacity .25s ease,
        visibility 0s linear 0s;
}

.preincubation-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .78);
}

.preincubation-modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 706px;
    max-height: calc(100vh - 48px);
    padding: 58px 40px 38px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    background-color: var(--application-primary, #153D62);
    background-image:
        linear-gradient(
            rgba(21, 61, 98, .93),
            rgba(21, 61, 98, .93)
        ),
        url("/assets/images/header-image.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .36);
    transform: translateY(20px);
    transition: transform .3s ease;
}

.preincubation-modal.is-open
.preincubation-modal__dialog {
    transform: translateY(0);
}

.preincubation-modal__close {
    position: absolute;
    top: 13px;
    right: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 29px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition:
        opacity .2s ease,
        transform .2s ease;
}

.preincubation-modal__close:hover,
.preincubation-modal__close:focus-visible {
    opacity: .75;
    transform: rotate(90deg);
}

.preincubation-modal__close:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.preincubation-form {
    width: 100%;
}

.preincubation-form__field {
    width: 100%;
    margin-bottom: 24px;
}

.preincubation-form__input {
    display: block;
    width: 100%;
    height: 42px;
    padding: 5px 0 9px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .72);
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: #ffffff;
    font-family: "Manrope", "Montserrat", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color .2s ease;
}

.preincubation-form__input::placeholder {
    color: rgba(255, 255, 255, .73);
    opacity: 1;
}

.preincubation-form__input:focus {
    border-bottom-color: #ffffff;
}

.preincubation-form__group {
    min-width: 0;
    margin: 0 0 25px;
    padding: 0;
    border: 0;
}

.preincubation-form__legend {
    width: 100%;
    margin: 0 0 13px;
    padding: 0;
    color: rgba(255, 255, 255, .82);
    font-family: "Manrope", "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}

.preincubation-form__options {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 25px;
    width: 100%;
    color: #ffffff;
}

.preincubation-form__options input[type="radio"] {
    width: 15px;
    height: 15px;
    margin: 0 7px 0 0;
    accent-color: #ffffff;
    vertical-align: -2px;
    cursor: pointer;
}

.preincubation-form__options label {
    margin: 0 18px 0 0;
    color: #ffffff;
    font-family: "Manrope", "Montserrat", Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    cursor: pointer;
}

.preincubation-form__message {
    display: block;
    width: 100%;
    margin: 3px 0 18px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, .50);
    color: #ffffff;
    font-family: "Manrope", "Montserrat", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.55;
    text-align: center;
}

.preincubation-form__message.is-success {
    background: rgba(32, 141, 76, .30);
}

.preincubation-form__message.is-error {
    background: rgba(173, 31, 31, .35);
}

.preincubation-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 38px;
    margin: 8px 0 0;
    padding: 9px 20px;
    border: 1px solid #ffffff;
    border-radius: 4px;
    background: #ffffff;
    color: #153D62;
    font-family: "Manrope", "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition:
        background-color .22s ease,
        color .22s ease;
}

.preincubation-form__submit:hover,
.preincubation-form__submit:focus-visible {
    background: transparent;
    color: #ffffff;
}

.preincubation-form__submit:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

@media (max-width: 1024px) {
    .application-page__intro {
        padding: 70px 24px 55px;
    }

    .application-page__intro-title {
        font-size: 36px;
    }

    .application-page__hero {
        height: 430px;
    }

    .application-page__content {
        padding: 62px 24px 82px;
    }

    .application-page__title {
        margin-bottom: 44px;
        font-size: 41px;
        letter-spacing: 7px;
    }

    .application-accordion__surface {
        padding: 40px 36px 44px;
    }
}

@media (max-width: 767px) {
    .application-page__intro {
        padding: 50px 18px 40px;
    }

    .application-page__intro-title {
        margin-bottom: 18px;
        font-size: 28px;
        line-height: 1.3;
        letter-spacing: 1px;
    }

    .application-page__intro-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .application-page__hero {
        height: 280px;
    }

    .application-page__content {
        padding: 45px 17px 60px;
    }

    .application-page__title {
        margin-bottom: 34px;
        font-size: 31px;
        letter-spacing: 4px;
    }

    .application-accordion__button {
        min-height: 54px;
        padding: 14px 15px;
        font-size: 13px;
    }

    .application-accordion__arrow {
        margin-left: 16px;
    }

    .application-accordion__surface {
        padding: 29px 19px 34px;
    }

    .application-rich-text {
        font-size: 13px;
        line-height: 1.78;
    }

    .application-rich-text h2,
    .application-rich-text h3 {
        margin-top: 27px;
        font-size: 18px;
    }

    .application-rich-text ol,
    .application-rich-text ul {
        padding-left: 20px;
    }

    .application-action__link {
        width: 100%;
        max-width: 330px;
        padding-right: 18px;
        padding-left: 18px;
    }

    .application-subaccordion__button {
        padding: 13px 14px;
        font-size: 13px;
    }

    .application-subaccordion__surface {
        padding: 28px 16px 32px;
    }

    .application-legislation__title {
        font-size: 17px;
        text-align: left;
    }

    .application-legislation__file {
        padding: 11px 13px;
        font-size: 12px;
    }

    .application-faq__button {
        padding: 13px 14px;
        font-size: 12px;
    }

    .application-faq__answer {
        padding: 18px 16px;
        font-size: 12px;
    }

    .preincubation-modal {
        align-items: flex-start;
        padding: 16px;
        overflow-y: auto;
    }

    .preincubation-modal__dialog {
        max-height: none;
        margin: auto 0;
        padding: 52px 24px 30px;
    }

    .preincubation-form__options {
        align-items: flex-start;
        gap: 12px 16px;
    }
}

@media (max-width: 420px) {
    .application-page__intro-title {
        font-size: 24px;
    }

    .application-page__title {
        font-size: 27px;
        letter-spacing: 3px;
    }

    .application-accordion__surface {
        padding-right: 15px;
        padding-left: 15px;
    }

    .preincubation-modal {
        padding: 10px;
    }

    .preincubation-modal__dialog {
        padding-right: 18px;
        padding-left: 18px;
    }

    .preincubation-form__options {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .preincubation-form__options label {
        margin-right: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .application-accordion__button,
    .application-accordion__arrow,
    .application-accordion__panel,
    .application-accordion__surface,
    .application-action__link,
    .application-subaccordion__button,
    .application-subaccordion__arrow,
    .application-subaccordion__panel,
    .application-legislation__file,
    .application-faq__button,
    .application-faq__arrow,
    .application-faq__panel,
    .preincubation-modal,
    .preincubation-modal__dialog,
    .preincubation-modal__close {
        transition: none !important;
    }
}

.application-page {
    --application-primary: #153D62;
    --application-primary-dark: #123653;
    background: #ffffff;
    color: #153D62;
    font-family: "Manrope", "Montserrat", Arial, sans-serif;
}

.application-page__intro {
    height: 208px;
    padding: 50px 24px;
    background: #ffffff;
}

.application-page__intro-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.application-page__intro-title {
    width: 100%;
    max-width: none;
    margin: 0 0 20px;
    color: #153D62;
    font-family: "Josefin Sans", Arial, sans-serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: -.5px;
    text-align: center;
}

.application-page__intro-text {
    width: 100%;
    max-width: 1092px;
    margin: 0 auto;
    color: #153D62;
    font-family: "Josefin Sans",  Arial, sans-serif;
    font-size: 25px;
    font-weight: 300;
    line-height: 27.2px;
    letter-spacing: 1.5px;
    text-align: center;
}

.application-page__hero {
    width: 100%;
    height: 471px;
    background-image: url("/assets/images/basvuru-hero.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.application-page__content {
    padding: 50px 24px 90px;
    background: #ffffff;
}

.application-page__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.application-page__title {
    margin: 0 0 40px;
    color: #153D62;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 6.3px;
    text-align: center;
}

.application-accordion__item {
    margin: 0 0 10px;
}

.application-accordion__button {
    min-height: 56px;
    padding: 15px 20px;
    border: 1px solid rgba(0, 0, 0, .02);
    background: #153D62;
    color: #ffffff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
}

.application-accordion__button:hover,
.application-accordion__button:focus-visible,
.application-accordion__item.is-open >
.application-accordion__heading >
.application-accordion__button {
    background: #153D62;
    color: #ffffff;
}

.application-accordion__arrow {
    width: 16px;
    min-width: 16px;
    height: 16px;
    margin-left: 10px;
}

.application-accordion__arrow svg {
    width: 10px;
    height: 16px;
}

.application-accordion__panel {
    margin-bottom: 0;
}

.application-accordion__surface {
    position: relative;
    padding: 40px;
    border: 1px solid #eeeeee;
    background-color: #153D62;
    background-image:
        linear-gradient(
            rgba(21, 61, 98, .86),
            rgba(21, 61, 98, .86)
        ),
        url("/assets/images/basvuru-panel.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #ffffff;
}

.application-rich-text {
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
}

.application-rich-text p {
    margin: 0 0 25px;
}

.application-rich-text h2,
.application-rich-text h3,
.application-rich-text h4 {
    margin: 38px 0 24px;
    color: #ffffff;
    font-family: "Comfortaa", "Montserrat", Arial, sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 25px;
}

.application-rich-text ol,
.application-rich-text ul {
    margin: 0 0 28px;
    padding-left: 22px;
}

.application-rich-text li {
    margin: 0 0 20px;
    padding-left: 0;
}

.application-rich-text em {
    color: #ffffff;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 16px;
    font-style: normal;
    line-height: 27.2px;
}

.application-action {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-top: 38px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, .72);
}

.application-action__link {
    min-height: 36px;
    padding: 5px 15px;
    border: 1px solid #999999;
    border-radius: 25px;
    background: #ffffff;
    color: #153D62;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
}

.application-action__link:hover,
.application-action__link:focus-visible {
    border-color: #ffffff;
    background: #ffffff;
    color: #153D62;
    transform: none;
}

.application-accordion__surface >
.application-subaccordion:first-child:last-child {
    position: relative;
    z-index: 2;
    width: calc(100% + 80px);
    margin: -40px;
    padding: 10px;
    border: 1px solid #eeeeee;
    background: #ffffff;
}

.application-subaccordion {
    margin-top: 0;
}

.application-subaccordion__item {
    margin: 0 0 10px;
}

.application-subaccordion__item:last-child {
    margin-bottom: 0;
}

.application-subaccordion__button {
    min-height: 56px;
    padding: 15px 20px;
    border: 1px solid rgba(0, 0, 0, .02);
    background: #153D62;
    color: #ffffff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
}

.application-subaccordion__button:hover,
.application-subaccordion__button:focus-visible,
.application-subaccordion__item.is-open >
.application-subaccordion__heading >
.application-subaccordion__button {
    border-color: rgba(0, 0, 0, .02);
    background: #153D62;
    color: #ffffff;
}

.application-subaccordion__arrow {
    width: 16px;
    min-width: 16px;
    height: 16px;
    margin-left: 10px;
}

.application-subaccordion__arrow svg {
    width: 10px;
    height: 16px;
}

.application-subaccordion__surface {
    position: relative;
    padding: 40px;
    border: 1px solid #eeeeee;
    background-color: #153D62;
    background-image:
        linear-gradient(
            rgba(21, 61, 98, .86),
            rgba(21, 61, 98, .86)
        ),
        url("/assets/images/basvuru-panel.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #ffffff;
}

.application-legislation {
    position: relative;
    z-index: 1;
    margin: 0 0 55px;
}

.application-legislation:last-child {
    margin-bottom: 0;
}

.application-legislation__title {
    margin: 0 0 38px;
    color: #ffffff;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
}

.application-legislation__list {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 55px 30px;
    width: 100%;
}

.application-legislation__file {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 240px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-family: "Manrope", Arial, sans-serif;
    text-align: center;
    text-decoration: none;
}

.application-legislation__file:hover,
.application-legislation__file:focus-visible {
    border: 0;
    background: transparent;
    color: #ffffff;
    transform: none;
}

.application-legislation__file-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 127px;
    height: 127px;
    margin: 0 0 15px;
    color: #ffffff;
}

.application-legislation__file-icon svg {
    display: block;
    width: 127px;
    height: 127px;
    fill: #ffffff;
}

.application-legislation__file-icon path {
    fill: #ffffff;
    stroke: none;
}

.application-legislation__file-name {
    display: block;
    width: 100%;
    color: #ffffff;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
    text-align: center;
}

.application-accordion__surface >
.application-faq:first-child:last-child {
    position: relative;
    z-index: 2;
    width: calc(100% + 80px);
    margin: -40px;
    padding: 10px;
    border: 1px solid #eeeeee;
    background: #ffffff;
}

.application-faq__item {
    margin: 0 0 10px;
    border: 0;
    background: transparent;
}

.application-faq__item:last-child {
    margin-bottom: 0;
}

.application-faq__button {
    min-height: 54px;
    padding: 14px 10px;
    border: 0;
    background: #153D62;
    color: #ffffff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.application-faq__button:hover,
.application-faq__button:focus-visible,
.application-faq__item.is-open
.application-faq__button {
    background: #153D62;
    color: #ffffff;
}

.application-faq__answer {
    padding: 22px 20px;
    border-top: 10px solid #ffffff;
    background: #153D62;
    color: #ffffff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
}

.application-faq__answer p {
    color: #ffffff;
}

.preincubation-modal__dialog {
    background-color: #153D62;
    background-image:
        linear-gradient(
            rgba(21, 61, 98, .86),
            rgba(21, 61, 98, .86)
        ),
        url("/assets/images/basvuru-panel.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

@media (max-width: 1024px) {
    .application-page__intro {
        height: auto;
        min-height: 190px;
        padding: 45px 24px;
    }

    .application-page__intro-title {
        font-size: 30px;
        line-height: 34px;
    }

    .application-page__intro-text {
        font-size: 23px;
        line-height: 27px;
    }

    .application-page__hero {
        height: 400px;
    }

    .application-page__title {
        font-size: 42px;
        line-height: 46px;
    }

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

@media (max-width: 767px) {
    .application-page__intro {
        padding: 38px 18px;
    }

    .application-page__intro-title {
        margin-bottom: 16px;
        font-size: 25px;
        line-height: 30px;
    }

    .application-page__intro-text {
        font-size: 19px;
        line-height: 24px;
    }

    .application-page__hero {
        height: 280px;
    }

    .application-page__content {
        padding: 42px 16px 60px;
    }

    .application-page__title {
        margin-bottom: 30px;
        font-size: 34px;
        line-height: 40px;
        letter-spacing: 4px;
    }

    .application-accordion__button,
    .application-subaccordion__button {
        min-height: 54px;
        padding: 14px 15px;
        font-size: 16px;
        line-height: 22px;
    }

    .application-accordion__surface,
    .application-subaccordion__surface {
        padding: 25px 20px;
    }

    .application-rich-text {
        font-size: 14px;
        line-height: 24px;
    }

    .application-rich-text h2,
    .application-rich-text h3,
    .application-rich-text h4 {
        font-size: 17px;
        line-height: 24px;
    }

    .application-rich-text em {
        font-size: 14px;
        line-height: 24px;
    }

    .application-accordion__surface >
    .application-subaccordion:first-child:last-child,
    .application-accordion__surface >
    .application-faq:first-child:last-child {
        width: calc(100% + 40px);
        margin: -20px;
    }

    .application-legislation__list {
        grid-template-columns:
            minmax(0, 1fr);
        gap: 45px;
    }

    .application-legislation__file {
        min-height: 210px;
    }

    .application-legislation__file-icon,
    .application-legislation__file-icon svg {
        width: 110px;
        height: 110px;
    }

    .application-faq__button,
    .application-faq__answer {
        font-size: 14px;
        line-height: 23px;
    }
}



/* ============================================================
   CV HAVUZU SAYFASI
   ============================================================ */

.cv-pool-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    color: #153f63;
}

.cv-pool-page__hero {
    height: 520px;
    background-image: url("/assets/images/header-image.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.cv-pool-page__content {
    padding: 65px 24px 100px;
    background: #ffffff;
}

.cv-pool-page__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.cv-pool-page__title {
    margin: 0 0 55px;
    color: #153f63;
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 9px;
    text-align: center;
}

/* ============================================================
   FORM ANA YAPISI
   ============================================================ */

.cv-pool-form {
    position: relative;
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    padding: 55px 65px 60px;
    border: 1px solid #e6e8ea;
    background: #f5f5f5;
    box-shadow: 0 20px 50px rgba(16, 55, 86, .08);
}

.cv-pool-form__header {
    margin-bottom: 40px;
    text-align: center;
}

.cv-pool-form__title {
    margin: 0 0 15px;
    color: #153f63;
    font-family: "Montserrat", sans-serif;
    font-size: 31px;
    font-weight: 500;
    line-height: 1.3;
}

.cv-pool-form__description {
    max-width: 650px;
    margin: 0 auto;
    color: #61778a;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
}

/* ============================================================
   ADIM GÖSTERGESİ
   ============================================================ */

.cv-pool-form__progress {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 42px;
    color: #153f63;
    font-family: "Montserrat", sans-serif;
}

.cv-pool-form__progress-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    min-width: 48px;
    height: 48px;
    border: 2px solid #153f63;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}

.cv-pool-form__progress-line {
    width: 65px;
    height: 1px;
    margin: 0 16px;
    background: #153f63;
}

.cv-pool-form__progress-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* ============================================================
   MESAJLAR
   ============================================================ */

.cv-pool-form__message {
    margin: 0 0 30px;
    padding: 16px 18px;
    border: 1px solid;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}

.cv-pool-form__message--success {
    border-color: #77a987;
    background: #edf7f0;
    color: #27623a;
}

.cv-pool-form__message--error {
    border-color: #d8959f;
    background: #fff0f2;
    color: #9f2033;
}

/* ============================================================
   FORM ALANLARI
   ============================================================ */

.cv-pool-form__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 30px;
}

.cv-pool-form__field {
    min-width: 0;
}

.cv-pool-form__field--full {
    grid-column: 1 / -1;
}

.cv-pool-form__field--honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.cv-pool-form__conditional[hidden] {
    display: none !important;
}

.cv-pool-form__label {
    display: block;
    margin-bottom: 10px;
    color: #153f63;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.cv-pool-form__label span {
    color: #e3213d;
}

.cv-pool-form__control {
    display: block;
    width: 100%;
    height: 55px;
    padding: 0 17px;
    border: 1px solid #d5dce1;
    border-radius: 0;
    outline: 0;
    background: #ffffff;
    color: #153f63;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    appearance: none;
    -webkit-appearance: none;
    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background-color .25s ease;
}

.cv-pool-form__control:hover {
    border-color: #9cadba;
}

.cv-pool-form__control:focus {
    border-color: #153f63;
    box-shadow: 0 0 0 3px rgba(21, 63, 99, .1);
}

.cv-pool-form__control::placeholder {
    color: #93a0ab;
}

.cv-pool-form__select-wrap {
    position: relative;
}

.cv-pool-form__select-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 9px;
    height: 9px;
    border-right: 2px solid #153f63;
    border-bottom: 2px solid #153f63;
    pointer-events: none;
    transform: translateY(-70%) rotate(45deg);
}

.cv-pool-form__select {
    padding-right: 48px;
    cursor: pointer;
}

/* ============================================================
   DOSYA YÜKLEME
   ============================================================ */

.cv-pool-upload {
    width: 100%;
}

.cv-pool-upload__input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.cv-pool-upload__label {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    min-height: 125px;
    padding: 25px 28px;
    border: 2px dashed #b6c2cb;
    background: #ffffff;
    color: #153f63;
    cursor: pointer;
    transition:
        border-color .25s ease,
        background-color .25s ease,
        transform .25s ease;
}

.cv-pool-upload__label:hover {
    border-color: #153f63;
    background: #f9fbfc;
    transform: translateY(-2px);
}

.cv-pool-upload__input:focus-visible +
.cv-pool-upload__label {
    outline: 2px solid #e3213d;
    outline-offset: 3px;
}

.cv-pool-upload__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #153f63;
}

.cv-pool-upload__icon svg {
    display: block;
    width: 52px;
    height: 52px;
}

.cv-pool-upload__icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cv-pool-upload__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
}

.cv-pool-upload__content strong {
    overflow: hidden;
    color: #153f63;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cv-pool-upload__content small {
    color: #758796;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    line-height: 1.5;
}

.cv-pool-upload__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 19px;
    border: 1px solid #153f63;
    background: #153f63;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    transition:
        background-color .25s ease,
        color .25s ease;
}

.cv-pool-upload__label:hover
.cv-pool-upload__button {
    background: transparent;
    color: #153f63;
}

/* ============================================================
   KVKK
   ============================================================ */

.cv-pool-kvkk {
    padding-top: 5px;
}

.cv-pool-kvkk__link {
    display: inline-block;
    margin-bottom: 18px;
    color: #153f63;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.cv-pool-kvkk__link:hover,
.cv-pool-kvkk__link:focus-visible {
    color: #e3213d;
}

.cv-pool-kvkk__approval {
    position: relative;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: start;
    gap: 13px;
    cursor: pointer;
}

.cv-pool-kvkk__checkbox {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.cv-pool-kvkk__box {
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    border: 2px solid #153f63;
    background: #ffffff;
    transition:
        border-color .2s ease,
        background-color .2s ease;
}

.cv-pool-kvkk__box::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 7px;
    width: 5px;
    height: 10px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    opacity: 0;
    transform: rotate(45deg);
}

.cv-pool-kvkk__checkbox:checked +
.cv-pool-kvkk__box {
    border-color: #153f63;
    background: #153f63;
}

.cv-pool-kvkk__checkbox:checked +
.cv-pool-kvkk__box::after {
    opacity: 1;
}

.cv-pool-kvkk__checkbox:focus-visible +
.cv-pool-kvkk__box {
    outline: 2px solid #e3213d;
    outline-offset: 3px;
}

.cv-pool-kvkk__text {
    color: #526b7f;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
}

/* ============================================================
   GÖNDER BUTONU
   ============================================================ */

.cv-pool-form__footer {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.cv-pool-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 190px;
    min-height: 54px;
    padding: 14px 28px;
    border: 2px solid #153f63;
    border-radius: 30px;
    background: #153f63;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition:
        background-color .25s ease,
        color .25s ease,
        transform .25s ease;
}

.cv-pool-form__submit svg {
    width: 21px;
    height: 21px;
}

.cv-pool-form__submit path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cv-pool-form__submit:hover,
.cv-pool-form__submit:focus-visible {
    background: transparent;
    color: #153f63;
    transform: translateY(-2px);
}

.cv-pool-form__submit:focus-visible {
    outline: 2px solid #e3213d;
    outline-offset: 3px;
}

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

@media (max-width: 1024px) {
    .cv-pool-page__hero {
        height: 430px;
    }

    .cv-pool-page__content {
        padding: 55px 24px 80px;
    }

    .cv-pool-page__title {
        margin-bottom: 45px;
        font-size: 42px;
        letter-spacing: 7px;
    }

    .cv-pool-form {
        padding: 50px 45px 55px;
    }
}

/* ============================================================
   MOBİL
   ============================================================ */

@media (max-width: 767px) {
    .cv-pool-page__hero {
        height: 280px;
    }

    .cv-pool-page__content {
        padding: 42px 17px 58px;
    }

    .cv-pool-page__title {
        margin-bottom: 34px;
        font-size: 31px;
        letter-spacing: 4px;
    }

    .cv-pool-form {
        padding: 35px 20px 40px;
    }

    .cv-pool-form__progress {
        margin-bottom: 32px;
    }

    .cv-pool-form__progress-number {
        width: 42px;
        min-width: 42px;
        height: 42px;
        font-size: 12px;
    }

    .cv-pool-form__progress-line {
        width: 35px;
        margin: 0 12px;
    }

    .cv-pool-form__progress-text {
        font-size: 10px;
        letter-spacing: 1.3px;
    }

    .cv-pool-form__header {
        margin-bottom: 32px;
    }

    .cv-pool-form__title {
        font-size: 26px;
    }

    .cv-pool-form__description {
        font-size: 13px;
    }

    .cv-pool-form__fields {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 24px;
    }

    .cv-pool-form__field {
        grid-column: 1 / -1;
    }

    .cv-pool-form__control {
        height: 52px;
        font-size: 13px;
    }

    .cv-pool-upload__label {
        grid-template-columns: 47px minmax(0, 1fr);
        gap: 15px;
        padding: 22px 18px;
    }

    .cv-pool-upload__icon {
        width: 47px;
        height: 47px;
    }

    .cv-pool-upload__icon svg {
        width: 43px;
        height: 43px;
    }

    .cv-pool-upload__content strong {
        font-size: 13px;
    }

    .cv-pool-upload__button {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 5px;
    }

    .cv-pool-form__submit {
        width: 100%;
        max-width: 320px;
    }
}

/* ============================================================
   HAREKET AZALTMA TERCİHİ
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cv-pool-form__control,
    .cv-pool-upload__label,
    .cv-pool-upload__button,
    .cv-pool-kvkk__box,
    .cv-pool-form__submit {
        transition: none !important;
    }
}

/* ============================================================
   İLETİŞİM SAYFASI
   ============================================================ */

.contact-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    color: #153d62;
}

.contact-page__section {
    width: 100%;
    background: #ffffff;
}

.contact-page__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    min-height: 565px;
}

.contact-page__form-column,
.contact-page__location-column {
    min-width: 0;
}

.contact-page__form-column {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.contact-page__form-inner {
    width: 100%;
    max-width: 674px;
    padding: 60px;
}

.contact-page__title {
    margin: 0 0 53px;
    color: #153d62;
    font-family: "Manrope", "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
}

/* ============================================================
   FORM
   ============================================================ */

.contact-form__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 10px;
    row-gap: 26px;
}

.contact-form__field {
    min-width: 0;
}

.contact-form__field--full {
    grid-column: 1 / -1;
}

.contact-form__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.contact-form__control {
    display: block;
    width: 100%;
    height: 36px;
    padding: 4px 10px;
    border: 1px solid #e1e5e8;
    border-radius: 4px;
    outline: 0;
    background: #ffffff;
    color: #0b0f1f;
    font-family: "Manrope", "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    appearance: none;
    -webkit-appearance: none;
    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.contact-form__control::placeholder {
    color: #7c858d;
    opacity: 1;
}

.contact-form__control:hover {
    border-color: #a9b6c0;
}

.contact-form__control:focus {
    border-color: #153d62;
    box-shadow: 0 0 0 3px rgba(21, 61, 98, .1);
}

.contact-form__textarea {
    height: 105px;
    min-height: 105px;
    padding-top: 9px;
    padding-bottom: 9px;
    line-height: 1.55;
    resize: vertical;
}

.contact-form__honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 36px;
    padding: 5px 15px;
    border: 1px solid #153d62;
    border-radius: 4px;
    background: #153d62;
    color: #ffffff;
    font-family: "Manrope", "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    cursor: pointer;
    transition:
        background-color .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.contact-form__submit svg {
    width: 17px;
    height: 17px;
}

.contact-form__submit path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
    border-color: #153d62;
    background: #ffffff;
    color: #153d62;
}

.contact-form__submit:focus-visible {
    outline: 2px solid #e3213d;
    outline-offset: 3px;
}

/* ============================================================
   FORM MESAJLARI
   ============================================================ */

.contact-form__message {
    margin: 0 0 26px;
    padding: 13px 15px;
    border: 1px solid;
    border-radius: 4px;
    font-family: "Manrope", "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
}

.contact-form__message--success {
    border-color: #78aa87;
    background: #edf7f0;
    color: #28643b;
}

.contact-form__message--error {
    border-color: #da959f;
    background: #fff0f2;
    color: #9f2033;
}

/* ============================================================
   KONUM GÖRSELİ
   ============================================================ */

.contact-page__location-column {
    display: flex;
    align-items: center;
    background: #ffffff;
}

.contact-location {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: #e9eef1;
    background-image: url("/assets/images/contact.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.contact-location::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(21, 61, 98, .02) 0%,
            rgba(21, 61, 98, .08) 100%
        );
}

.contact-location__hotspot {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
}

.contact-location__button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 14px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #153d62;
    box-shadow: 0 7px 25px rgba(12, 37, 58, .2);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition:
        color .25s ease,
        background-color .25s ease,
        transform .25s ease;
}

.contact-location__button:hover,
.contact-location__button:focus-visible,
.contact-location__hotspot.is-open
.contact-location__button {
    background: #153d62;
    color: #ffffff;
    transform: scale(1.07);
}

.contact-location__button:focus-visible {
    outline: 2px solid #e3213d;
    outline-offset: 4px;
}

.contact-location__button svg {
    position: relative;
    z-index: 2;
    display: block;
    width: 28px;
    height: 28px;
}

.contact-location__button path,
.contact-location__button circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-location__pulse {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    animation: contactLocationPulse 2s ease-out infinite;
}

.contact-location__tooltip {
    position: absolute;
    right: 28px;
    bottom: calc(100% + 18px);
    width: 285px;
    padding: 20px 22px;
    border-radius: 4px;
    background: #ffffff;
    color: rgba(11, 15, 31, .72);
    box-shadow: 0 14px 35px rgba(9, 31, 48, .22);
    font-family: "Manrope", "Montserrat", sans-serif;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility 0s linear .25s;
}

.contact-location__tooltip::after {
    content: "";
    position: absolute;
    right: 17px;
    bottom: -9px;
    width: 18px;
    height: 18px;
    background: #ffffff;
    transform: rotate(45deg);
}

.contact-location__tooltip strong,
.contact-location__tooltip span {
    position: relative;
    z-index: 2;
    display: block;
}

.contact-location__tooltip strong {
    margin-bottom: 8px;
    color: #153d62;
    font-size: 15px;
    font-weight: 700;
}

.contact-location__tooltip span {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
}

.contact-location__link {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-top: 13px;
    color: #153d62;
    font-size: 12px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    pointer-events: auto;
}

.contact-location__link:hover,
.contact-location__link:focus-visible {
    color: #e3213d;
}

.contact-location__hotspot:hover
.contact-location__tooltip,
.contact-location__hotspot:focus-within
.contact-location__tooltip,
.contact-location__hotspot.is-open
.contact-location__tooltip {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility 0s linear 0s;
}

@keyframes contactLocationPulse {
    0% {
        opacity: .8;
        transform: scale(1);
    }

    75%,
    100% {
        opacity: 0;
        transform: scale(1.7);
    }
}

/* ============================================================
   ERİŞİLEBİLİRLİK
   ============================================================ */

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

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

@media (max-width: 1024px) {
    .contact-page__grid {
        min-height: 520px;
    }

    .contact-page__form-inner {
        padding: 50px 38px;
    }

    .contact-page__title {
        margin-bottom: 42px;
    }

    .contact-form__fields {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 20px;
    }

    .contact-form__field {
        grid-column: 1 / -1;
    }

    .contact-location {
        height: 380px;
    }

    .contact-location__tooltip {
        right: 0;
        width: 260px;
    }
}

/* ============================================================
   MOBİL
   ============================================================ */

@media (max-width: 767px) {
    .contact-page__grid {
        grid-template-columns: minmax(0, 1fr);
        min-height: 0;
    }

    .contact-page__location-column {
        order: 1;
    }

    .contact-page__form-column {
        order: 2;
    }

    .contact-location {
        height: 300px;
    }

    .contact-location__hotspot {
        left: 55%;
    }

    .contact-location__button {
        width: 50px;
        height: 50px;
        padding: 12px;
    }

    .contact-location__tooltip {
        right: auto;
        bottom: calc(100% + 16px);
        left: 50%;
        width: min(280px, calc(100vw - 34px));
        transform: translate(-50%, 10px);
    }

    .contact-location__tooltip::after {
        right: auto;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
    }

    .contact-location__hotspot:hover
    .contact-location__tooltip,
    .contact-location__hotspot:focus-within
    .contact-location__tooltip,
    .contact-location__hotspot.is-open
    .contact-location__tooltip {
        transform: translate(-50%, 0);
    }

    .contact-page__form-inner {
        max-width: none;
        padding: 44px 20px 50px;
    }

    .contact-page__title {
        margin-bottom: 35px;
        font-size: 22px;
    }

    .contact-form__control {
        height: 42px;
    }

    .contact-form__textarea {
        height: 110px;
    }

    .contact-form__submit {
        height: 42px;
    }
}

/* ============================================================
   HAREKET AZALTMA TERCİHİ
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    .contact-form__control,
    .contact-form__submit,
    .contact-location__button,
    .contact-location__tooltip {
        transition: none !important;
    }

    .contact-location__pulse {
        animation: none !important;
    }
}

/* ============================================================
   FOOTER V2
   ANA RENK: #153D62
   ============================================================ */

.site-footer-v2 {
    position: relative;
    padding: 82px 30px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 12%,
            rgba(61, 103, 142, .30),
            transparent 33%
        ),
        radial-gradient(
            circle at 92% 80%,
            rgba(108, 143, 173, .22),
            transparent 28%
        ),
        #153D62;
    color: #ffffff;
}

.site-footer-v2::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background:
        linear-gradient(
            90deg,
            #4F7DA5 0%,
            #9CBBD2 48%,
            #4F7DA5 100%
        );
    content: "";
}

.site-footer-v2__glow {
    position: absolute;
    top: -210px;
    right: -180px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    box-shadow:
        0 0 0 80px rgba(255, 255, 255, .025),
        0 0 0 160px rgba(255, 255, 255, .015);
    pointer-events: none;
}

.site-footer-v2__container {
    position: relative;
    z-index: 1;
    width: min(1240px, 100%);
    margin: 0 auto;
}

.site-footer-v2__top {
    display: grid;
    grid-template-columns:
        minmax(280px, 1.45fr)
        repeat(3, minmax(150px, .72fr));
    padding-bottom: 54px;
    gap: 42px;
}

.site-footer-v2__brand {
    padding-right: 28px;
}

.site-footer-v2__logo {
    display: inline-flex;
    align-items: center;
    min-height: 62px;
}

.site-footer-v2__logo img {
    display: block;
    width: min(245px, 100%);
    max-height: 70px;
    object-fit: contain;
    object-position: left center;
}

.site-footer-v2__description {
    display: -webkit-box;
    max-width: 390px;
    margin: 25px 0 27px;
    overflow: hidden;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    line-height: 1.8;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.site-footer-v2__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer-v2__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, .055);
    font-size: 14px;
    transition:
        color .22s ease,
        border-color .22s ease,
        background-color .22s ease,
        transform .22s ease;
}

.site-footer-v2__socials a:hover,
.site-footer-v2__socials a:focus-visible {
    color: #153D62;
    border-color: #9CBBD2;
    background: #9CBBD2;
    transform: translateY(-3px);
}

.site-footer-v2__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}

.site-footer-v2__links h2 {
    position: relative;
    margin: 4px 0 15px;
    padding-bottom: 13px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .035em;
}

.site-footer-v2__links h2::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    border-radius: 2px;
    background: #9CBBD2;
    content: "";
}

.site-footer-v2__links a {
    position: relative;
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    line-height: 1.55;
    transition:
        color .2s ease,
        transform .2s ease;
}

.site-footer-v2__links a::before {
    position: absolute;
    top: .72em;
    left: -13px;
    width: 5px;
    height: 1px;
    background: #9CBBD2;
    content: "";
    opacity: 0;
    transition: opacity .2s ease;
}

.site-footer-v2__links a:hover,
.site-footer-v2__links a:focus-visible {
    color: #ffffff;
    transform: translateX(6px);
}

.site-footer-v2__links a:hover::before,
.site-footer-v2__links a:focus-visible::before {
    opacity: 1;
}

/* ============================================================
   İLETİŞİM VE HARİTA
   ============================================================ */

.site-footer-v2__contact-area {
    display: grid;
    grid-template-columns:
        minmax(340px, 1.5fr)
        minmax(430px, 1.35fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 24px;
    background: rgba(255, 255, 255, .055);
    box-shadow:
        0 28px 75px rgba(9, 31, 51, .28);
    backdrop-filter: blur(12px);
}

.site-footer-v2__contact {
    padding: 46px 42px;
}

.site-footer-v2__eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #9CBBD2;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .19em;
}

.site-footer-v2__contact > h2 {
    margin: 0 0 31px;
    color: #ffffff;
    font-size: clamp(23px, 2.25vw, 33px);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -.055em;
}

.site-footer-v2__contact ul {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);
    margin: 0;
    padding: 0;
    gap: 19px 25px;
    list-style: none;
}

.site-footer-v2__contact li {
    display: flex;
    align-items: flex-start;
    min-width: 0;
    margin: 0;
    gap: 12px;
}

.site-footer-v2__contact-icon {
    display: inline-flex;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    color: #9CBBD2;
    background: rgba(156, 187, 210, .14);
    font-size: 13px;
}

.site-footer-v2__contact-text {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
    color: rgba(255, 255, 255, .83);
    font-size: 11px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.site-footer-v2__contact-text small {
    color: rgba(255, 255, 255, .43);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.site-footer-v2__contact-text a {
    color: rgba(255, 255, 255, .83);
}

.site-footer-v2__contact-text a:hover,
.site-footer-v2__contact-text a:focus-visible {
    color: #9CBBD2;
}

/* ============================================================
   HARİTA
   ============================================================ */

.site-footer-v2__map {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    background: #102F4C;
}

.site-footer-v2__map::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .08);
    content: "";
    pointer-events: none;
}

.site-footer-v2__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    filter:
        grayscale(.8)
        brightness(.76)
        contrast(1.08);
    transition: filter .35s ease;
}

.site-footer-v2__map:hover iframe {
    filter:
        grayscale(.15)
        brightness(.9)
        contrast(1.02);
}

/* ============================================================
   ALT BÖLÜM
   ============================================================ */

.site-footer-v2__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
    gap: 24px;
}

.site-footer-v2__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .48);
    font-size: 10px;
    line-height: 1.6;
}

.site-footer-v2__bottom > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .67);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .04em;
    transition: color .2s ease;
}

.site-footer-v2__bottom > a:hover,
.site-footer-v2__bottom > a:focus-visible {
    color: #9CBBD2;
}

/* ============================================================
   RESPONSIVE — 1080PX
   ============================================================ */

@media (max-width: 1080px) {
    .site-footer-v2__top {
        grid-template-columns:
            minmax(280px, 1.25fr)
            repeat(3, minmax(130px, .7fr));
        gap: 30px;
    }

    .site-footer-v2__brand {
        padding-right: 5px;
    }

    .site-footer-v2__contact-area {
        grid-template-columns:
            minmax(310px, .9fr)
            minmax(360px, 1.1fr);
    }

    .site-footer-v2__contact {
        padding: 38px 30px;
    }

    .site-footer-v2__contact ul {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ============================================================
   RESPONSIVE — 820PX
   ============================================================ */

@media (max-width: 820px) {
    .site-footer-v2 {
        padding: 64px 22px 0;
    }

    .site-footer-v2__top {
        grid-template-columns:
            minmax(0, 1.35fr)
            minmax(150px, .65fr);
        padding-bottom: 42px;
        gap: 38px 28px;
    }

    .site-footer-v2__contact-area {
        grid-template-columns: minmax(0, 1fr);
    }

    .site-footer-v2__contact ul {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);
    }

    .site-footer-v2__map,
    .site-footer-v2__map iframe {
        min-height: 330px;
    }
}

/* ============================================================
   RESPONSIVE — 560PX
   ============================================================ */

@media (max-width: 560px) {
    .site-footer-v2 {
        padding: 55px 17px 0;
    }

    .site-footer-v2__top {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);
        gap: 34px 22px;
    }

    .site-footer-v2__brand {
        grid-column: 1 / -1;
    }

    .site-footer-v2__links--legal {
        grid-column: 1 / -1;
    }

    .site-footer-v2__contact-area {
        border-radius: 17px;
    }

    .site-footer-v2__contact {
        padding: 32px 22px 35px;
    }

    .site-footer-v2__contact ul {
        grid-template-columns: minmax(0, 1fr);
    }

    .site-footer-v2__map,
    .site-footer-v2__map iframe {
        min-height: 280px;
    }

    .site-footer-v2__bottom {
        align-items: flex-start;
        min-height: 110px;
        flex-direction: column;
        justify-content: center;
        gap: 11px;
    }
}

/* ============================================================
   HAREKET AZALTMA
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    .site-footer-v2__socials a,
    .site-footer-v2__links a,
    .site-footer-v2__map iframe {
        transition: none !important;
    }
}

/* ============================================================
   POLİTİKA / YASAL METİN SAYFALARI
   ANA RENK: #153D62
   ============================================================ */

.legal-page {
    min-height: 70vh;
    background: #f4f7f9;
    color: #263b4e;
}

.legal-page__container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

/* ============================================================
   HERO
   ============================================================ */

.legal-page__hero {
    position: relative;
    padding: 92px 0 65px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(156, 187, 210, .22),
            transparent 30%
        ),
        radial-gradient(
            circle at 15% 100%,
            rgba(79, 125, 165, .18),
            transparent 35%
        ),
        linear-gradient(
            120deg,
            #102F4C 0%,
            #153D62 52%,
            #2E628E 100%
        );
    color: #ffffff;
}

.legal-page__hero::after {
    position: absolute;
    right: -130px;
    bottom: -260px;
    width: 540px;
    height: 540px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    box-shadow:
        0 0 0 75px rgba(255, 255, 255, .025),
        0 0 0 150px rgba(255, 255, 255, .015);
    content: "";
    pointer-events: none;
}

.legal-page__hero .legal-page__container {
    position: relative;
    z-index: 1;
}

.legal-page__breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 36px;
    gap: 10px;
    color: rgba(255, 255, 255, .55);
    font-size: 11px;
}

.legal-page__breadcrumb a {
    color: rgba(255, 255, 255, .74);
    transition: color .2s ease;
}

.legal-page__breadcrumb a:hover,
.legal-page__breadcrumb a:focus-visible {
    color: #c4d7e5;
}

.legal-page__breadcrumb i {
    color: #9CBBD2;
    font-size: 8px;
}

.legal-page__eyebrow {
    display: block;
    margin-bottom: 13px;
    color: #b9cede;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
}

.legal-page__title {
    max-width: 850px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(38px, 5.2vw, 66px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.legal-page__intro {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.8;
}

/* ============================================================
   SAYFA YERLEŞİMİ
   ============================================================ */

.legal-page__body {
    padding: 65px 0 90px;
}

.legal-page__layout {
    display: grid;
    grid-template-columns:
        minmax(240px, 285px)
        minmax(0, 1fr);
    align-items: start;
    gap: 34px;
}

/* ============================================================
   SOL POLİTİKA MENÜSÜ
   ============================================================ */

.legal-page__sidebar {
    position: sticky;
    top: 115px;
}

.legal-page__menu {
    padding: 10px;
    border: 1px solid #dce5ec;
    border-radius: 16px;
    background: #ffffff;
    box-shadow:
        0 14px 40px rgba(21, 61, 98, .08);
}

.legal-page__menu-title {
    display: block;
    padding: 13px 15px 17px;
    color: #71879a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
}

.legal-page__menu nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.legal-page__menu-link {
    display: grid;
    grid-template-columns:
        28px
        minmax(0, 1fr)
        16px;
    align-items: center;
    min-height: 58px;
    padding: 10px 13px;
    border-radius: 10px;
    gap: 7px;
    color: #536879;
    transition:
        color .2s ease,
        background-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.legal-page__menu-link > span {
    color: #91a4b4;
    font-size: 9px;
    font-weight: 700;
}

.legal-page__menu-link > strong {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
}

.legal-page__menu-link > i {
    color: #7894aa;
    font-size: 9px;
    opacity: 0;
    transform: translateX(-5px);
    transition:
        opacity .2s ease,
        transform .2s ease;
}

.legal-page__menu-link:hover,
.legal-page__menu-link:focus-visible {
    color: #153D62;
    background: #edf3f7;
    transform: translateX(3px);
}

.legal-page__menu-link:hover > span,
.legal-page__menu-link:focus-visible > span {
    color: #4F7DA5;
}

.legal-page__menu-link:hover > i,
.legal-page__menu-link:focus-visible > i {
    color: #4F7DA5;
    opacity: 1;
    transform: translateX(0);
}

.legal-page__menu-link.is-active {
    color: #ffffff;
    background:
        linear-gradient(
            125deg,
            #153D62 0%,
            #2E628E 100%
        );
    box-shadow:
        0 10px 25px rgba(21, 61, 98, .23);
}

.legal-page__menu-link.is-active > span,
.legal-page__menu-link.is-active > i {
    color: #c4d7e5;
}

.legal-page__menu-link.is-active > i {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   POLİTİKA DOKÜMANI
   ============================================================ */

.legal-page__document {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #dce5ec;
    border-radius: 18px;
    background: #ffffff;
    box-shadow:
        0 18px 50px rgba(21, 61, 98, .085);
}

.legal-page__document-header {
    display: flex;
    align-items: center;
    padding: 28px 34px;
    border-bottom: 1px solid #e2e9ee;
    gap: 17px;
    background:
        linear-gradient(
            90deg,
            #f1f5f8 0%,
            #ffffff 100%
        );
}

.legal-page__document-icon {
    display: inline-flex;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid #d7e4ed;
    border-radius: 14px;
    color: #153D62;
    background: #eaf0f5;
    font-size: 19px;
    box-shadow:
        0 7px 18px rgba(21, 61, 98, .08);
}

.legal-page__document-header div > span {
    display: block;
    margin-bottom: 5px;
    color: #7c91a2;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
}

.legal-page__document-header h2 {
    margin: 0;
    color: #153D62;
    font-size: clamp(18px, 2vw, 25px);
    font-weight: 650;
    line-height: 1.3;
}

/* ============================================================
   VERİTABANINDAN GELEN İÇERİK
   ============================================================ */

.legal-page__content {
    padding: clamp(28px, 5vw, 58px);
    color: #405464;
    font-size: 15px;
    line-height: 1.85;
    overflow-wrap: anywhere;
}

.legal-page__content > :first-child {
    margin-top: 0;
}

.legal-page__content > :last-child {
    margin-bottom: 0;
}

.legal-page__content h1,
.legal-page__content h2,
.legal-page__content h3,
.legal-page__content h4,
.legal-page__content h5,
.legal-page__content h6 {
    margin: 1.7em 0 .7em;
    color: #153D62;
    font-weight: 650;
    line-height: 1.3;
}

.legal-page__content h1 {
    font-size: 30px;
}

.legal-page__content h2 {
    font-size: 24px;
}

.legal-page__content h3 {
    font-size: 20px;
}

.legal-page__content h4 {
    font-size: 17px;
}

.legal-page__content h5 {
    font-size: 15px;
}

.legal-page__content h6 {
    font-size: 14px;
}

.legal-page__content p,
.legal-page__content ul,
.legal-page__content ol,
.legal-page__content blockquote,
.legal-page__content table {
    margin: 0 0 1.35em;
}

.legal-page__content ul,
.legal-page__content ol {
    padding-left: 1.5em;
}

.legal-page__content li {
    margin-bottom: .45em;
}

.legal-page__content li::marker {
    color: #4F7DA5;
}

.legal-page__content a {
    color: #2E628E;
    text-decoration: underline;
    text-decoration-color: rgba(46, 98, 142, .35);
    text-underline-offset: 3px;
}

.legal-page__content a:hover,
.legal-page__content a:focus-visible {
    color: #153D62;
    text-decoration-color: currentColor;
}

.legal-page__content strong {
    color: #243f55;
    font-weight: 700;
}

.legal-page__content blockquote {
    padding: 18px 22px;
    border-left: 3px solid #4F7DA5;
    background: #f0f4f7;
    color: #526878;
}

.legal-page__content hr {
    height: 1px;
    margin: 30px 0;
    border: 0;
    background: #dce5ec;
}

.legal-page__content img {
    max-width: 100%;
    height: auto;
}

.legal-page__content table {
    display: block;
    width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
}

.legal-page__content th,
.legal-page__content td {
    min-width: 130px;
    padding: 12px 14px;
    border: 1px solid #d8e2e9;
    text-align: left;
    vertical-align: top;
}

.legal-page__content th {
    color: #153D62;
    background: #eaf0f5;
}

.legal-page__content tr:nth-child(even) td {
    background: #f8fafb;
}

/* ============================================================
   BOŞ İÇERİK
   ============================================================ */

.legal-page__empty {
    display: flex;
    min-height: 360px;
    padding: 45px 25px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #718696;
    text-align: center;
}

.legal-page__empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin-bottom: 22px;
    border: 1px solid #d7e4ed;
    border-radius: 22px;
    color: #153D62;
    background: #eaf0f5;
    font-size: 30px;
    box-shadow:
        0 10px 25px rgba(21, 61, 98, .08);
}

.legal-page__empty h2 {
    margin: 0 0 9px;
    color: #153D62;
    font-size: 21px;
    font-weight: 650;
}

.legal-page__empty p {
    margin: 0;
    color: #718696;
    font-size: 13px;
}

/* ============================================================
   KLAVYE ODAĞI
   ============================================================ */

.legal-page a:focus-visible,
.legal-page button:focus-visible {
    outline: 2px solid #9CBBD2;
    outline-offset: 3px;
}

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

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

    .legal-page__sidebar {
        position: static;
    }

    .legal-page__menu nav {
        display: grid;
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);
    }

    .legal-page__menu-link:hover,
    .legal-page__menu-link:focus-visible {
        transform: none;
    }
}

/* ============================================================
   MOBİL
   ============================================================ */

@media (max-width: 600px) {
    .legal-page__container {
        width: min(100% - 32px, 1200px);
    }

    .legal-page__hero {
        padding: 75px 0 48px;
    }

    .legal-page__breadcrumb {
        margin-bottom: 28px;
    }

    .legal-page__intro {
        font-size: 13px;
    }

    .legal-page__body {
        padding: 38px 0 60px;
    }

    .legal-page__menu nav {
        grid-template-columns: minmax(0, 1fr);
    }

    .legal-page__document {
        border-radius: 14px;
    }

    .legal-page__document-header {
        padding: 22px 20px;
    }

    .legal-page__document-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        border-radius: 12px;
        font-size: 17px;
    }

    .legal-page__content {
        padding: 27px 21px;
        font-size: 14px;
        line-height: 1.75;
    }

    .legal-page__empty {
        min-height: 290px;
        padding: 38px 20px;
    }
}

/* ============================================================
   HAREKET AZALTMA
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    .legal-page__breadcrumb a,
    .legal-page__menu-link,
    .legal-page__menu-link > i {
        transition: none !important;
    }
}


.event-registration-page {
    min-height: 100vh;
    background: #f4f7fa;
    color: #153d62;
}

.event-registration-page *,
.event-registration-page *::before,
.event-registration-page *::after {
    box-sizing: border-box;
}

.event-registration-page__container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.event-registration-page__hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 78px;
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, .12), transparent 32%),
        linear-gradient(135deg, #153d62 0%, #1d527f 55%, #153d62 100%);
    color: #fff;
}

.event-registration-page__hero::before {
    position: absolute;
    right: -140px;
    bottom: -210px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    content: "";
}

.event-registration-page__hero::after {
    position: absolute;
    right: 40px;
    bottom: -170px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    content: "";
}

.event-registration-page__hero .event-registration-page__container {
    position: relative;
    z-index: 1;
}

.event-registration-page__back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 38px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.event-registration-page__back:hover {
    color: #fff;
    transform: translateX(-3px);
}

.event-registration-page__hero-content {
    max-width: 850px;
}

.event-registration-page__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.event-registration-page__title {
    max-width: 900px;
    margin: 0;
    color: #fff;
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.event-registration-page__date {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
    text-transform: capitalize;
}

.event-registration-page__date-day {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 14px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.event-registration-page__content {
    padding: 70px 0 95px;
}

.event-registration-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 42px;
    align-items: start;
}

.event-registration-page__article-card,
.event-registration-card {
    border: 1px solid #dfe7ed;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(21, 61, 98, .08);
}

.event-registration-page__article-card {
    padding: 42px;
}

.event-registration-page__section-title {
    position: relative;
    margin: 0 0 30px;
    padding-bottom: 18px;
    color: #153d62;
    font-size: 28px;
    font-weight: 700;
}

.event-registration-page__section-title::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 58px;
    height: 3px;
    border-radius: 999px;
    background: #153d62;
    content: "";
}

.event-registration-page__description {
    color: #40576b;
    font-size: 16px;
    line-height: 1.85;
    word-break: break-word;
}

.event-registration-page__description > :first-child {
    margin-top: 0;
}

.event-registration-page__description > :last-child {
    margin-bottom: 0;
}

.event-registration-page__description h2,
.event-registration-page__description h3,
.event-registration-page__description h4 {
    margin: 30px 0 14px;
    color: #153d62;
}

.event-registration-page__description img {
    max-width: 100%;
    height: auto;
}

.event-registration-page__description a {
    color: #153d62;
    font-weight: 700;
}

.event-registration-page__sidebar {
    position: sticky;
    top: 110px;
}

.event-registration-card {
    overflow: hidden;
}

.event-registration-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 30px;
    background: #153d62;
    color: #fff;
}

.event-registration-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: rgba(255, 255, 255, .12);
}

.event-registration-card__icon svg {
    width: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.event-registration-card__label {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .65);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.event-registration-card__title {
    margin: 0;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.event-registration-card__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 15px 30px;
    border-bottom: 1px solid #e6edf2;
    background: #f8fafc;
}

.event-registration-card__info span {
    color: #6d8192;
    font-size: 13px;
}

.event-registration-card__info strong {
    color: #153d62;
    font-size: 13px;
    text-align: right;
}

.event-registration-form {
    padding: 30px;
}

.event-registration-form__field {
    margin-bottom: 20px;
}

.event-registration-form__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #153d62;
    font-size: 13px;
    font-weight: 700;
}

.event-registration-form__label span {
    color: #8a9baa;
    font-size: 11px;
    font-weight: 500;
}

.event-registration-form__control {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #d8e1e8;
    border-radius: 9px;
    outline: none;
    background: #fff;
    color: #243f56;
    font: inherit;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.event-registration-form__control::placeholder {
    color: #9aa9b5;
}

.event-registration-form__control:focus {
    border-color: #153d62;
    box-shadow: 0 0 0 3px rgba(21, 61, 98, .1);
}

.event-registration-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 52px;
    margin-top: 5px;
    padding: 13px 20px;
    border: 0;
    border-radius: 9px;
    background: #153d62;
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.event-registration-form__submit:hover {
    background: #1c4e79;
    box-shadow: 0 12px 25px rgba(21, 61, 98, .2);
    transform: translateY(-2px);
}

.event-registration-form__submit svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.event-registration-form__notice {
    margin: 15px 0 0;
    color: #8293a1;
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
}

.event-registration-form__honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.event-registration-message {
    margin: 24px 30px 0;
    padding: 14px 16px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 13px;
    line-height: 1.6;
}

.event-registration-message--success {
    border-color: #b9e4ca;
    background: #eaf8ef;
    color: #176b39;
}

.event-registration-message--warning {
    border-color: #f0d496;
    background: #fff8e6;
    color: #8a6213;
}

.event-registration-message--error {
    border-color: #efb8bd;
    background: #fff0f1;
    color: #a22531;
}

.event-registration-card__closed {
    padding: 45px 30px;
    text-align: center;
}

.event-registration-card__closed-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #edf2f6;
    color: #153d62;
}

.event-registration-card__closed-icon svg {
    width: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.event-registration-card__closed strong {
    display: block;
    margin-bottom: 8px;
    color: #153d62;
    font-size: 18px;
}

.event-registration-card__closed p {
    margin: 0;
    color: #718595;
    font-size: 13px;
    line-height: 1.65;
}

@media (max-width: 991px) {
    .event-registration-page__hero {
        padding: 125px 0 60px;
    }

    .event-registration-page__grid {
        grid-template-columns: 1fr;
    }

    .event-registration-page__sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .event-registration-page__container {
        width: min(100% - 28px, 1180px);
    }

    .event-registration-page__hero {
        padding: 105px 0 48px;
    }

    .event-registration-page__back {
        margin-bottom: 28px;
    }

    .event-registration-page__title {
        font-size: 36px;
        letter-spacing: -.6px;
    }

    .event-registration-page__content {
        padding: 38px 0 65px;
    }

    .event-registration-page__grid {
        gap: 25px;
    }

    .event-registration-page__article-card {
        padding: 27px 22px;
        border-radius: 14px;
    }

    .event-registration-page__section-title {
        font-size: 23px;
    }

    .event-registration-page__description {
        font-size: 15px;
    }

    .event-registration-card {
        border-radius: 14px;
    }

    .event-registration-card__header,
    .event-registration-form {
        padding: 24px 22px;
    }

    .event-registration-card__info {
        padding-right: 22px;
        padding-left: 22px;
    }

    .event-registration-message {
        margin-right: 22px;
        margin-left: 22px;
    }
}

.application-legislation__file::before {
    content: "";
    display: block;
    flex: 0 0 auto;
    width: 127px;
    height: 127px;
    margin: 0 0 15px;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20384%20512%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M369.9%2097.9L286%2014C277%205%20264.8-.1%20252.1-.1H48C21.5%200%200%2021.5%200%2048v416c0%2026.5%2021.5%2048%2048%2048h288c26.5%200%2048-21.5%2048-48V131.9c0-12.7-5.1-25-14.1-34zM332.1%20128H256V51.9L332.1%20128zM48%20464V48h160v104c0%2013.3%2010.7%2024%2024%2024h104v288H48zm250.2-143.7c-12.2-12-47-8.7-64.4-6.5-17.2-10.5-28.7-25-36.8-46.3%203.9-16.1%2010.1-40.6%205.4-56-4.2-26.2-37.8-23.6-42.6-5.9-4.4%2016.1-.4%2038.5%207%2067.1-10%2023.9-24.9%2056-35.4%2074.4-20%2010.3-47%2026.2-51%2046.2-3.3%2015.8%2026%2055.2%2076.1-31.2%2022.4-7.4%2046.8-16.5%2068.4-20.1%2018.9%2010.2%2041%2017%2055.8%2017%2025.5%200%2028-28.2%2017.5-38.7zm-198.1%2077.8c5.1-13.7%2024.5-29.5%2030.4-35-19%2030.3-30.4%2035.7-30.4%2035zm81.6-190.6c7.4%200%206.7%2032.1%201.8%2040.8-4.4-13.9-4.3-40.8-1.8-40.8zm-24.4%20136.6c9.7-16.9%2018-37%2024.7-54.7%208.3%2015.1%2018.9%2027.2%2030.1%2035.5-20.8%204.3-38.9%2013.1-54.8%2019.2zm131.6-5s-5%206-37.3-7.8c35.1-2.6%2040.9%205.4%2037.3%207.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.application-legislation__file-icon {
    display: none !important;
}

.application-legislation__file-arrow {
    display: none !important;
}

.application-legislation__file {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

@media (max-width: 767px) {
    .application-legislation__file::before {
        width: 110px;
        height: 110px;
    }
}

.language-buttons,
.mobile-language-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.language-button,
.inner-page .language-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
    min-width: 24px;
    height: auto !important;
    min-height: 28px;
    padding: 2px 3px;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .4px;
    cursor: pointer;
    transition:
        color .2s ease,
        opacity .2s ease;
}

.language-button:hover,
.language-button:focus-visible {
    color: #ffffff;
    opacity: .72;
    transform: none;
}

.language-button:focus-visible {
    outline: 1px solid rgba(255, 255, 255, .8);
    outline-offset: 2px;
}

.language-button__text {
    display: block;
    color: inherit;
    font: inherit;
}

.language-button__separator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .65);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
}

.language-button img,
.inner-page .language-button img {
    display: none !important;
}

.home-companies
.home-company-card__image-wrap img {
    filter: grayscale(100%);
    transition:
        filter .35s ease,
        transform .3s ease;
}

.home-companies
.home-company-card:hover
.home-company-card__image-wrap img,
.home-companies
.home-company-card__link:focus-visible
.home-company-card__image-wrap img {
    filter: grayscale(0%);
    transform: scale(1.04);
}

.about-rich-text
.about-rich-text__list--circle
li::before {
    content: "●";
    font-size: 7px;
}

.contact-page__grid {
    min-height: 620px;
    background: #f5f7f9;
}

.contact-page__form-column {
    padding: 55px 35px;
    background: #f5f7f9;
}

.contact-page__form-inner {
    max-width: 620px;
    padding: 42px;
    border: 1px solid #e3e8ed;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(21, 61, 98, .07);
}

.contact-page__title {
    position: relative;
    margin: 0 0 36px;
    padding-bottom: 16px;
    color: #153d62;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.3;
}

.contact-page__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 44px;
    height: 3px;
    border-radius: 3px;
    background: #153d62;
}

.contact-form__fields {
    column-gap: 18px;
    row-gap: 20px;
}

.contact-form__label {
    position: static;
    display: block;
    width: auto;
    height: auto;
    margin: 0 0 7px;
    overflow: visible;
    clip: auto;
    clip-path: none;
    color: #34495c;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    white-space: normal;
}

.contact-form__control {
    height: 46px;
    padding: 10px 13px;
    border: 1px solid #d8e0e7;
    border-radius: 7px;
    background: #ffffff;
    color: #182a3a;
    font-size: 14px;
    box-shadow: none;
}

.contact-form__control::placeholder {
    color: #9aa6b1;
}

.contact-form__control:hover {
    border-color: #aab9c6;
}

.contact-form__control:focus {
    border-color: #153d62;
    box-shadow: 0 0 0 3px rgba(21, 61, 98, .09);
}

.contact-form__textarea {
    height: 125px;
    min-height: 125px;
    padding-top: 12px;
    resize: vertical;
}

.contact-form__submit {
    width: 155px;
    height: 45px;
    margin-left: auto;
    border: 1px solid #153d62;
    border-radius: 7px;
    background: #153d62;
    font-size: 13px;
    font-weight: 600;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
    border-color: #0f2e4b;
    background: #0f2e4b;
    color: #ffffff;
}

.contact-form__submit:focus-visible {
    outline: 3px solid rgba(21, 61, 98, .18);
    outline-offset: 2px;
}

.contact-form__message {
    margin-bottom: 24px;
    padding: 12px 14px;
    border-radius: 7px;
    font-size: 13px;
}

.contact-page__location-column {
    padding: 55px 35px 55px 0;
    background: #f5f7f9;
}

.contact-location {
    height: 510px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(21, 61, 98, .09);
}

@media (max-width: 1024px) {
    .contact-page__form-column {
        padding: 40px 24px;
    }

    .contact-page__form-inner {
        padding: 32px 26px;
    }

    .contact-page__location-column {
        padding: 40px 24px 40px 0;
    }

    .contact-form__fields {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-form__field {
        grid-column: 1 / -1;
    }

    .contact-location {
        height: 500px;
    }
}

@media (max-width: 767px) {
    .contact-page__location-column {
        order: 2;
        padding: 0 18px 35px;
    }

    .contact-page__form-column {
        order: 1;
        padding: 30px 18px 24px;
    }

    .contact-page__form-inner {
        padding: 27px 20px;
        border-radius: 10px;
    }

    .contact-page__title {
        margin-bottom: 28px;
        font-size: 23px;
    }

    .contact-form__fields {
        row-gap: 17px;
    }

    .contact-form__control {
        height: 44px;
    }

    .contact-form__textarea {
        height: 115px;
        min-height: 115px;
    }

    .contact-form__submit {
        width: 100%;
        height: 45px;
    }

    .contact-location {
        height: 310px;
        border-radius: 10px;
    }
}

.contact-form__kvkk {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    width: 100%;
    cursor: pointer;
    user-select: none;
}

.contact-form__kvkk-checkbox {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.contact-form__kvkk-box {
    display: flex;
    flex: 0 0 20px;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border: 1px solid #c7d1da;
    border-radius: 5px;
    background: #ffffff;
    color: #ffffff;
    transition:
        border-color .2s ease,
        background-color .2s ease,
        box-shadow .2s ease;
}

.contact-form__kvkk-box svg {
    display: block;
    width: 14px;
    height: 14px;
    opacity: 0;
    transform: scale(.7);
    transition:
        opacity .2s ease,
        transform .2s ease;
}

.contact-form__kvkk-box path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-form__kvkk:hover
.contact-form__kvkk-box {
    border-color: #153d62;
}

.contact-form__kvkk-checkbox:focus-visible +
.contact-form__kvkk-box {
    border-color: #153d62;
    box-shadow: 0 0 0 3px rgba(21, 61, 98, .12);
}

.contact-form__kvkk-checkbox:checked +
.contact-form__kvkk-box {
    border-color: #153d62;
    background: #153d62;
}

.contact-form__kvkk-checkbox:checked +
.contact-form__kvkk-box svg {
    opacity: 1;
    transform: scale(1);
}

.contact-form__kvkk-text {
    color: #536575;
    font-family: "Manrope", "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.65;
}

.contact-form__kvkk-text a {
    color: #153d62;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.contact-form__kvkk-text a:hover,
.contact-form__kvkk-text a:focus-visible {
    color: #0f2e4b;
}

.contact-form__turnstile {
    width: 100%;
    min-height: 65px;
    overflow: hidden;
}

.contact-form__turnstile .cf-turnstile {
    width: 100%;
}

.contact-form__turnstile iframe {
    max-width: 100%;
}

@media (max-width: 767px) {
    .contact-form__kvkk {
        gap: 10px;
    }

    .contact-form__kvkk-box {
        flex-basis: 19px;
        width: 19px;
        height: 19px;
    }

    .contact-form__kvkk-text {
        font-size: 11px;
        line-height: 1.6;
    }

    .contact-form__turnstile {
        min-height: 65px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-form__kvkk-box,
    .contact-form__kvkk-box svg {
        transition: none !important;
    }
}

.cv-pool-turnstile {
    width: 100%;
    min-height: 65px;
    margin-top: 4px;
    overflow: hidden;
}

.cv-pool-turnstile .cf-turnstile {
    width: 100%;
}

.cv-pool-turnstile iframe {
    max-width: 100%;
}

@media (max-width: 767px) {
    .cv-pool-turnstile {
        min-height: 65px;
    }
}

.yoda-form__security {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    margin-top: 28px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.yoda-form__kvkk {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    width: 100%;
    cursor: pointer;
    user-select: none;
}

.yoda-form__kvkk-checkbox {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.yoda-form__kvkk-box {
    display: flex;
    flex: 0 0 20px;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 5px;
    background: rgba(255, 255, 255, .08);
    color: #153d62;
    transition:
        border-color .2s ease,
        background-color .2s ease,
        box-shadow .2s ease;
}

.yoda-form__kvkk-box svg {
    display: block;
    width: 14px;
    height: 14px;
    opacity: 0;
    transform: scale(.7);
    transition:
        opacity .2s ease,
        transform .2s ease;
}

.yoda-form__kvkk-box path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.yoda-form__kvkk:hover
.yoda-form__kvkk-box {
    border-color: #ffffff;
}

.yoda-form__kvkk-checkbox:focus-visible +
.yoda-form__kvkk-box {
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .18);
}

.yoda-form__kvkk-checkbox:checked +
.yoda-form__kvkk-box {
    border-color: #ffffff;
    background: #ffffff;
}

.yoda-form__kvkk-checkbox:checked +
.yoda-form__kvkk-box svg {
    opacity: 1;
    transform: scale(1);
}

.yoda-form__kvkk-text {
    color: rgba(255, 255, 255, .88);
    font-family: "Manrope", "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.65;
}

.yoda-form__kvkk-text a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.yoda-form__turnstile {
    width: 100%;
    min-height: 65px;
    overflow: hidden;
}

.yoda-form__turnstile .cf-turnstile {
    width: 100%;
}

.yoda-form__turnstile iframe {
    max-width: 100%;
}

@media (max-width: 767px) {
    .yoda-form__security {
        gap: 18px;
        margin-top: 22px;
        padding-top: 22px;
    }

    .yoda-form__kvkk-text {
        font-size: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .yoda-form__kvkk-box,
    .yoda-form__kvkk-box svg {
        transition: none !important;
    }
}

.home-events {
    width: 100%;
    padding: 42px 0 55px;
    overflow: hidden;
    background: #ffffff;
}

.home-events .home-section__inner {
    width: 100%;
    max-width: none;
    margin: 0;
}

.home-events .home-section__header {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto 54px;
    padding: 0;
    text-align: center;
}

.home-events .home-section__header h2 {
    margin: 0;
    color: #153D62;
    font-family: "Josefin Sans", "Montserrat", Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 5px;
}

.home-carousel--events {
    width: 100%;
    padding: 0 0 52px;
}

.home-carousel--events .home-carousel__viewport {
    width: 100%;
    padding: 0 10px;
    overflow: hidden;
    box-sizing: border-box;
}

.home-carousel--events .home-carousel__track {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.home-carousel--events .home-event-card {
    flex: 0 0 calc((100% - 30px) / 3);
    min-width: 0;
    margin: 0;
    padding: 0;
    background: transparent;
}

.home-carousel--events .home-event-card__link {
    display: block;
    width: 100%;
    color: #0b0f1f;
    text-decoration: none;
}

.home-carousel--events .home-event-card__image-wrap {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
    background: #edf1f4;
}

.home-carousel--events .home-event-card__image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: cover;
    object-position: center;
    transition: transform .4s ease;
}

.home-carousel--events .home-event-card:hover .home-event-card__image-wrap img {
    transform: scale(1.025);
}

.home-carousel--events .home-event-card__content {
    display: block;
    width: 100%;
    padding: 14px 10px 0;
    box-sizing: border-box;
}

.home-carousel--events .home-event-card__title {
    display: block;
    margin: 0;
    color: #0b0f1f;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -.25px;
    transition: color .2s ease;
}

.home-carousel--events .home-event-card:hover .home-event-card__title {
    color: #153D62;
}

.home-carousel--events .home-carousel__arrow {
    display: none;
}

.home-carousel--events .home-carousel__dots {
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 18px;
}

.home-carousel--events .home-carousel__dot {
    display: block;
    width: 12px;
    height: 12px;
    min-width: 12px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #153D62;
    box-shadow: none;
    opacity: 1;
    cursor: pointer;
    transition:
        transform .2s ease,
        background-color .2s ease,
        box-shadow .2s ease;
}

.home-carousel--events .home-carousel__dot:hover {
    transform: scale(1.12);
}

.home-carousel--events .home-carousel__dot.is-current {
    background: #ffffff;
    box-shadow:
        0 0 0 2px #ffffff,
        0 0 0 4px #153D62;
}

.home-events .home-data-empty {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 30px;
    border: 1px solid #dde5ec;
    border-radius: 8px;
    color: #657483;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 15px;
    text-align: center;
    background: #f8fafb;
}

@media (max-width: 1100px) {
    .home-events {
        padding-top: 38px;
    }

    .home-events .home-section__header {
        margin-bottom: 42px;
    }

    .home-events .home-section__header h2 {
        font-size: 42px;
        letter-spacing: 4px;
    }

    .home-carousel--events .home-event-card {
        flex-basis: calc((100% - 15px) / 2);
    }
}

@media (max-width: 700px) {
    .home-events {
        padding: 32px 0 42px;
    }

    .home-events .home-section__header {
        width: calc(100% - 32px);
        margin-bottom: 30px;
    }

    .home-events .home-section__header h2 {
        font-size: 31px;
        line-height: 1.1;
        letter-spacing: 2px;
    }

    .home-carousel--events {
        padding-bottom: 45px;
    }

    .home-carousel--events .home-carousel__viewport {
        padding: 0 16px;
    }

    .home-carousel--events .home-carousel__track {
        gap: 12px;
    }

    .home-carousel--events .home-event-card {
        flex-basis: 100%;
    }

    .home-carousel--events .home-event-card__image-wrap {
        border-radius: 8px;
    }

    .home-carousel--events .home-event-card__content {
        padding: 13px 3px 0;
    }

    .home-carousel--events .home-event-card__title {
        font-size: 16px;
        line-height: 1.45;
    }

    .home-carousel--events .home-carousel__dots {
        gap: 12px;
    }

    .home-carousel--events .home-carousel__dot {
        width: 10px;
        height: 10px;
        min-width: 10px;
    }
}

.event-detail-page,
.event-detail-page *,
.event-detail-page *::before,
.event-detail-page *::after {
    box-sizing: border-box;
}

.event-detail-page {
    width: 100%;
    overflow: hidden;
    color: #0b0f1f;
    font-family: "Montserrat", Arial, sans-serif;
    background: #ffffff;
}

.event-detail-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 434px;
    padding: 90px 24px;
    overflow: hidden;
    background-image: url("/assets/images/header-image.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.event-detail-hero__overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(21, 61, 98, .62) 0%,
            rgba(21, 61, 98, .52) 50%,
            rgba(21, 61, 98, .62) 100%
        );
    pointer-events: none;
}

.event-detail-hero__container {
    position: relative;
    z-index: 2;
    width: min(1200px, 100%);
    margin: 0 auto;
}

.event-detail-hero__title {
    width: min(820px, 100%);
    margin: 0 auto;
    color: #ffffff;
    font-family: "Josefin Sans", "Montserrat", Arial, sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: .5px;
    text-align: center;
    text-wrap: balance;
}

.event-detail-content {
    width: 100%;
    padding: 60px 0 74px;
    background: #ffffff;
}

.event-detail-content__container {
    width: min(900px, calc(100% - 30px));
    margin: 0 auto;
    padding: 0 30px;
}

.event-detail-content__figure {
    width: 100%;
    margin: 0 0 58px;
    padding: 0;
}

.event-detail-content__image-link {
    display: block;
    width: 100%;
}

.event-detail-content__image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 6px;
    object-fit: cover;
    object-position: center;
}

.event-detail-content__body {
    color: rgba(11, 15, 31, .74);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}

.event-detail-content__body > *:first-child {
    margin-top: 0;
}

.event-detail-content__body > *:last-child {
    margin-bottom: 0;
}

.event-detail-content__body p {
    margin: 0 0 18px;
}

.event-detail-content__body h2,
.event-detail-content__body h3,
.event-detail-content__body h4 {
    margin: 34px 0 15px;
    color: #153D62;
    font-family: "Josefin Sans", "Montserrat", Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.event-detail-content__body h2 {
    font-size: 30px;
}

.event-detail-content__body h3 {
    font-size: 25px;
}

.event-detail-content__body h4 {
    font-size: 21px;
}

.event-detail-content__body ul,
.event-detail-content__body ol {
    margin: 0 0 22px;
    padding-left: 24px;
}

.event-detail-content__body li {
    margin-bottom: 8px;
}

.event-detail-content__body a {
    color: #153D62;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.event-detail-content__body img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 6px;
}

.event-detail-content__body iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 30px auto;
    border: 0;
    aspect-ratio: 16 / 9;
}

.event-detail-content__body table {
    width: 100%;
    margin: 28px 0;
    border-collapse: collapse;
}

.event-detail-content__body th,
.event-detail-content__body td {
    padding: 12px 14px;
    border: 1px solid #dfe5ea;
    text-align: left;
}

.event-detail-content__body th {
    color: #ffffff;
    background: #153D62;
}

.event-detail-content__source {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.event-detail-content__source-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 24px;
    border: 1px solid #153D62;
    border-radius: 24px;
    gap: 10px;
    color: #153D62;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition:
        color .2s ease,
        background-color .2s ease,
        transform .2s ease;
}

.event-detail-content__source-link:hover {
    color: #ffffff;
    background: #153D62;
    transform: translateY(-2px);
}

.event-application {
    width: 100%;
    padding: 70px 24px 80px;
    background: #f5f7f9;
}

.event-application__container {
    width: min(900px, 100%);
    margin: 0 auto;
    padding: 50px 54px;
    border: 1px solid #dfe6ec;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 18px 55px rgba(21, 61, 98, .08);
}

.event-application__header {
    margin-bottom: 34px;
    text-align: center;
}

.event-application__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #718292;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 2px;
}

.event-application__title {
    margin: 0;
    color: #153D62;
    font-family: "Josefin Sans", "Montserrat", Arial, sans-serif;
    font-size: 38px;
    font-weight: 650;
    line-height: 1.15;
}

.event-application__information {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 12px 28px;
}

.event-application__information-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #647687;
    font-size: 13px;
    line-height: 1.5;
}

.event-application__information-item i {
    color: #153D62;
}

.event-application__message {
    margin: 0 0 28px;
    padding: 15px 18px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
}

.event-application__message--success {
    border-color: #b8dfc8;
    color: #17683a;
    background: #eefaf3;
}

.event-application__message--error {
    border-color: #edc1c1;
    color: #9a2424;
    background: #fff3f3;
}

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

.event-application__field {
    min-width: 0;
}

.event-application__field--full {
    grid-column: 1 / -1;
}

.event-application__label {
    display: block;
    margin-bottom: 9px;
    color: #263c4f;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.4;
}

.event-application__label > span {
    color: #b22b2b;
}

.event-application__control {
    display: block;
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #d4dde4;
    border-radius: 5px;
    outline: none;
    color: #1d3040;
    font: inherit;
    font-size: 14px;
    background: #ffffff;
    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.event-application__control:hover {
    border-color: #aab9c5;
}

.event-application__control:focus {
    border-color: #153D62;
    box-shadow: 0 0 0 3px rgba(21, 61, 98, .1);
}

.event-application__honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.event-application__consent {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    cursor: pointer;
}

.event-application__consent > input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.event-application__consent-box {
    flex: 0 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border: 1px solid #aebbc5;
    border-radius: 3px;
    color: transparent;
    font-size: 10px;
    background: #ffffff;
    transition:
        color .2s ease,
        border-color .2s ease,
        background-color .2s ease,
        box-shadow .2s ease;
}

.event-application__consent > input:checked +
.event-application__consent-box {
    border-color: #153D62;
    color: #ffffff;
    background: #153D62;
}

.event-application__consent > input:focus-visible +
.event-application__consent-box {
    box-shadow: 0 0 0 3px rgba(21, 61, 98, .14);
}

.event-application__consent-text {
    color: #5c6e7c;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.65;
}

.event-application__consent-text a {
    color: #153D62;
    font-weight: 650;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.event-application__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 205px;
    min-height: 49px;
    padding: 13px 24px;
    border: 1px solid #153D62;
    border-radius: 25px;
    gap: 12px;
    color: #ffffff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    background: #153D62;
    cursor: pointer;
    transition:
        color .2s ease,
        background-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.event-application__submit:hover {
    color: #153D62;
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(21, 61, 98, .14);
}

.other-events {
    width: 100%;
    padding: 64px 0 75px;
    background: #f5f5f5;
}

.other-events__container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.other-events__title {
    margin: 0 0 42px;
    color: #153D62;
    font-family: "Josefin Sans", "Montserrat", Arial, sans-serif;
    font-size: 38px;
    font-weight: 650;
    line-height: 1.15;
    text-align: center;
}

.other-events__carousel {
    position: relative;
    width: 100%;
}

.other-events__viewport {
    width: calc(100% - 60px);
    margin: 0 30px;
    overflow: hidden;
}

.other-events__track {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    transition: transform .5s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.other-event-card {
    flex: 0 0 calc((100% - 120px) / 4);
    min-width: 0;
}

.other-event-card__link {
    display: block;
    color: #0b0f1f;
    text-decoration: none;
}

.other-event-card__image-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 6px;
    background: #e6ebef;
}

.other-event-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .4s ease;
}

.other-event-card:hover .other-event-card__image {
    transform: scale(1.035);
}

.other-event-card__content {
    display: block;
    padding-top: 14px;
}

.other-event-card__title {
    display: block;
    color: #0b0f1f;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    transition: color .2s ease;
}

.other-event-card:hover .other-event-card__title {
    color: #153D62;
}

.other-events__arrow {
    position: absolute;
    z-index: 4;
    top: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 44px;
    padding: 0;
    border: 0;
    color: #153D62;
    font-size: 24px;
    background: transparent;
    cursor: pointer;
    transition:
        opacity .2s ease,
        transform .2s ease;
}

.other-events__arrow:hover {
    transform: scale(1.12);
}

.other-events__arrow--previous {
    left: -5px;
}

.other-events__arrow--next {
    right: -5px;
}

.other-events__arrow:disabled {
    opacity: .25;
    cursor: default;
    transform: none;
}

.event-detail-not-found {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 620px;
    padding: 70px 24px;
    background: #f5f7f9;
}

.event-detail-not-found__container {
    width: min(620px, 100%);
    text-align: center;
}

.event-detail-not-found__code {
    display: block;
    margin-bottom: 8px;
    color: rgba(21, 61, 98, .13);
    font-family: "Josefin Sans", "Montserrat", Arial, sans-serif;
    font-size: 110px;
    font-weight: 700;
    line-height: .9;
}

.event-detail-not-found__title {
    margin: 0 0 15px;
    color: #153D62;
    font-family: "Josefin Sans", "Montserrat", Arial, sans-serif;
    font-size: 42px;
    font-weight: 650;
    line-height: 1.15;
}

.event-detail-not-found__text {
    margin: 0 0 28px;
    color: #667887;
    font-size: 15px;
    line-height: 1.7;
}

.event-detail-not-found__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 25px;
    border: 1px solid #153D62;
    border-radius: 24px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    background: #153D62;
}

@media (max-width: 1050px) {
    .event-detail-hero {
        min-height: 390px;
        background-attachment: scroll;
    }

    .event-detail-hero__title {
        font-size: 43px;
    }

    .other-events__viewport {
        width: calc(100% - 50px);
        margin: 0 25px;
    }

    .other-events__track {
        gap: 25px;
    }

    .other-event-card {
        flex-basis: calc((100% - 50px) / 3);
    }
}

@media (max-width: 760px) {
    .event-detail-hero {
        min-height: 330px;
        padding: 65px 20px;
    }

    .event-detail-hero__title {
        font-size: 34px;
        line-height: 1.22;
    }

    .event-detail-content {
        padding: 42px 0 55px;
    }

    .event-detail-content__container {
        width: calc(100% - 30px);
        padding: 0;
    }

    .event-detail-content__figure {
        margin-bottom: 38px;
    }

    .event-detail-content__body {
        font-size: 15px;
        line-height: 1.75;
    }

    .event-detail-content__body h2 {
        font-size: 26px;
    }

    .event-detail-content__body h3 {
        font-size: 22px;
    }

    .event-application {
        padding: 48px 15px 58px;
    }

    .event-application__container {
        padding: 36px 24px;
    }

    .event-application__title {
        font-size: 32px;
    }

    .event-application__fields {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .event-application__field--full {
        grid-column: auto;
    }

    .other-events {
        padding: 50px 0 60px;
    }

    .other-events__title {
        margin-bottom: 32px;
        font-size: 32px;
    }

    .other-events__viewport {
        width: calc(100% - 44px);
        margin: 0 22px;
    }

    .other-events__track {
        gap: 18px;
    }

    .other-event-card {
        flex-basis: calc((100% - 18px) / 2);
    }

    .other-event-card__title {
        font-size: 16px;
    }

    .other-events__arrow {
        top: 78px;
        width: 30px;
        font-size: 19px;
    }
}

@media (max-width: 480px) {
    .event-detail-hero {
        min-height: 285px;
        padding: 50px 18px;
    }

    .event-detail-hero__title {
        font-size: 28px;
        letter-spacing: 0;
    }

    .event-detail-content {
        padding-top: 32px;
    }

    .event-detail-content__container {
        width: calc(100% - 24px);
    }

    .event-detail-content__figure {
        margin-bottom: 30px;
    }

    .event-detail-content__image {
        border-radius: 4px;
    }

    .event-application__container {
        padding: 30px 18px;
    }

    .event-application__information {
        align-items: flex-start;
        flex-direction: column;
    }

    .event-application__submit {
        width: 100%;
    }

    .other-events__container {
        width: calc(100% - 20px);
    }

    .other-events__viewport {
        width: calc(100% - 36px);
        margin: 0 18px;
    }

    .other-events__track {
        gap: 12px;
    }

    .other-event-card {
        flex-basis: 100%;
    }

    .other-events__arrow {
        top: calc(50vw - 35px);
    }

    .event-detail-not-found__code {
        font-size: 80px;
    }

    .event-detail-not-found__title {
        font-size: 32px;
    }
}

@media (max-width: 350px) {
    .event-application .cf-turnstile {
        transform: scale(.88);
        transform-origin: left top;
        margin-bottom: -8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .event-detail-content__source-link,
    .event-application__submit,
    .other-events__track,
    .other-event-card__image,
    .other-events__arrow {
        transition: none;
    }
}

.yoda-application-page,
.yoda-application-page *,
.yoda-application-page *::before,
.yoda-application-page *::after {
    box-sizing: border-box;
}

.yoda-application-page {
    width: 100%;
    overflow: hidden;
    color: #153D62;
    font-family: "Montserrat", Arial, sans-serif;
    background: #ffffff;
}

.yoda-application-page__intro {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 255px;
    padding: 45px 30px 50px;
    background: #ffffff;
    text-align: center;
}

.yoda-application-page__intro-container {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.yoda-application-page__intro-title {
    margin: 0 0 20px;
    color: #153D62;
    font-family: "Josefin Sans", "Montserrat", Arial, sans-serif;
    font-size: clamp(34px, 3.4vw, 52px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 4px;
}

.yoda-application-page__intro-text {
    width: min(920px, 100%);
    margin: 0 auto;
    color: #153D62;
    font-family: "Josefin Sans", "Montserrat", Arial, sans-serif;
    font-size: clamp(19px, 1.7vw, 27px);
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 1.5px;
}

.yoda-application-page__hero {
    position: relative;
    width: 100%;
    height: clamp(320px, 32vw, 520px);
    background-image: url("/assets/images/header-image.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.yoda-application-page__hero::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(9, 43, 70, .03) 0%,
            rgba(9, 43, 70, .16) 100%
        );
}

.yoda-application-page__content {
    width: 100%;
    padding: 60px 0 80px;
    background: #ffffff;
}

.yoda-application-page__container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.yoda-application-page__surface {
    width: 100%;
    padding: 48px 46px 52px;
    border-radius: 6px;
    box-shadow: 0 18px 55px rgba(21, 61, 98, .13);
}

.yoda-application-page__surface .yoda-form__header {
    max-width: 850px;
    margin-bottom: 42px;
}

.yoda-application-page__surface .yoda-form__title {
    font-size: 32px;
}

.yoda-application-page__surface .yoda-form__description {
    font-size: 14px;
    line-height: 1.75;
}

.yoda-form__honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.yoda-form__security {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 10px;
    gap: 25px;
}

.yoda-form__consent {
    position: relative;
    display: flex;
    align-items: flex-start;
    width: min(760px, 100%);
    gap: 12px;
    cursor: pointer;
}

.yoda-form__consent > input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.yoda-form__consent-box {
    flex: 0 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    margin-top: 1px;
    border: 1px solid rgba(255, 255, 255, .85);
    border-radius: 3px;
    color: transparent;
    font-size: 10px;
    background: transparent;
    transition:
        color .2s ease,
        border-color .2s ease,
        background-color .2s ease,
        box-shadow .2s ease;
}

.yoda-form__consent > input:checked +
.yoda-form__consent-box {
    border-color: #ffffff;
    color: #153D62;
    background: #ffffff;
}

.yoda-form__consent > input:focus-visible +
.yoda-form__consent-box {
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, .2);
}

.yoda-form__consent-text {
    color: rgba(255, 255, 255, .9);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.7;
}

.yoda-form__consent-text a {
    color: #ffffff;
    font-weight: 650;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.yoda-form__consent-text a:hover {
    color: #ffffff;
    opacity: .82;
}

.yoda-form__turnstile {
    min-height: 65px;
}

.yoda-application-page__surface .yoda-form__actions {
    margin-top: 30px;
    padding-top: 0;
}

.yoda-application-page__surface .yoda-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .yoda-application-page__intro {
        min-height: 225px;
        padding-right: 24px;
        padding-left: 24px;
    }

    .yoda-application-page__intro-title {
        font-size: 40px;
        letter-spacing: 3px;
    }

    .yoda-application-page__intro-text {
        font-size: 22px;
    }

    .yoda-application-page__hero {
        height: 420px;
    }

    .yoda-application-page__surface {
        padding: 42px 34px 46px;
    }
}

@media (max-width: 767px) {
    .yoda-application-page__intro {
        min-height: 210px;
        padding: 36px 20px 40px;
    }

    .yoda-application-page__intro-title {
        margin-bottom: 16px;
        font-size: 31px;
        line-height: 1.16;
        letter-spacing: 1.5px;
    }

    .yoda-application-page__intro-text {
        font-size: 18px;
        line-height: 1.45;
        letter-spacing: .6px;
    }

    .yoda-application-page__hero {
        height: 300px;
    }

    .yoda-application-page__content {
        padding: 42px 0 55px;
    }

    .yoda-application-page__container {
        width: calc(100% - 28px);
    }

    .yoda-application-page__surface {
        padding: 35px 22px 40px;
        border-radius: 4px;
    }

    .yoda-application-page__surface .yoda-form__header {
        margin-bottom: 34px;
    }

    .yoda-application-page__surface .yoda-form__title {
        font-size: 27px;
    }

    .yoda-application-page__surface .yoda-form__description {
        font-size: 13px;
    }

    .yoda-application-page__surface .yoda-form__grid {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 24px;
    }

    .yoda-application-page__surface .yoda-form__field--wide {
        grid-column: auto;
    }

    .yoda-form__security {
        gap: 22px;
    }

    .yoda-application-page__surface .yoda-form__actions {
        margin-top: 25px;
    }
}

@media (max-width: 480px) {
    .yoda-application-page__intro-title {
        font-size: 27px;
    }

    .yoda-application-page__hero {
        height: 240px;
    }

    .yoda-application-page__content {
        padding-top: 30px;
    }

    .yoda-application-page__container {
        width: calc(100% - 20px);
    }

    .yoda-application-page__surface {
        padding: 30px 17px 35px;
    }

    .yoda-application-page__surface .yoda-form__section {
        margin-bottom: 30px;
    }

    .yoda-application-page__surface .yoda-form__section-title {
        font-size: 16px;
    }

    .yoda-application-page__surface .yoda-form__submit {
        width: 100%;
    }
}

@media (max-width: 350px) {
    .yoda-form__turnstile .cf-turnstile {
        transform: scale(.86);
        transform-origin: left top;
        margin-bottom: -10px;
    }
}

/* ============================================================
   BAŞVURU - STARTUP FACTORY GÖRSELİ
   ============================================================ */

.application-startup-visual {
    width: 100%;
    margin: 28px auto 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(21, 61, 98, 0.15);
    background: #ffffff;
}

.application-startup-visual img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    object-fit: contain;
}

@media (max-width: 767px) {
    .application-startup-visual {
        margin-top: 20px;
    }
}

.text-white{
    color: #fff !important;
}

html,
body {
    min-height: 100%;
}

#siteForm {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-main {
    position: relative;
    z-index: 2;
    flex: 1 0 auto;
    width: 100%;
}

.site-footer,
.site-footer-v2 {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    width: 100%;
}

.inner-page .site-main {
    min-height: calc(100vh - var(--header-height));
}

/* ============================================================
   2026-08-28 - KATMAN / DROPDOWN / FOOTER DUZELTMELERI
   ============================================================ */

/* Firmalar filtresi sayfa ve footer sinirinda kirpilmasin. */
.companies-page,
.companies-page__content,
.companies-page__container,
.companies-directory,
.companies-directory__filters,
.company-filter {
    overflow: visible !important;
}

.companies-page__content {
    position: relative;
    z-index: 100;
}

.companies-directory {
    position: relative;
    z-index: 100;
}

.companies-directory__filters {
    z-index: 5000 !important;
}

.company-filter {
    z-index: 5001;
}

.company-filter.is-open {
    z-index: 20000 !important;
}

.company-filter__panel {
    z-index: 20001 !important;
}

.site-main {
    position: relative;
    z-index: 2;
    overflow: visible !important;
}

.site-footer,
.site-footer-v2 {
    position: relative;
    z-index: 1 !important;
}

/* Ana sayfada hero altindaki masaustu menu dropdown'i yukari acilir. */
@media (min-width: 1101px) {
    .home-page
    .site-header:not(.is-sticky)
    .desktop-navigation__submenu {
        top: auto !important;
        bottom: calc(100% - 8px) !important;
        transform: translateY(-10px);
        box-shadow: 0 -13px 38px rgba(0, 0, 0, .18);
    }

    .home-page
    .site-header:not(.is-sticky)
    .desktop-navigation__dropdown:hover
    .desktop-navigation__submenu,
    .home-page
    .site-header:not(.is-sticky)
    .desktop-navigation__dropdown.is-open
    .desktop-navigation__submenu {
        transform: translateY(0);
    }

    /* Menu sticky olup ekranin ustune geldiginde normal olarak asagi acilir. */
    .home-page
    .site-header.is-sticky
    .desktop-navigation__submenu {
        top: calc(100% - 8px) !important;
        bottom: auto !important;
        transform: translateY(10px);
        box-shadow: 0 13px 38px rgba(0, 0, 0, .18);
    }

    .home-page
    .site-header.is-sticky
    .desktop-navigation__dropdown:hover
    .desktop-navigation__submenu,
    .home-page
    .site-header.is-sticky
    .desktop-navigation__dropdown.is-open
    .desktop-navigation__submenu {
        transform: translateY(0);
    }
}

