/* Kobiport - Temizlenmiş CSS */

/* Font Tanımları - Tek Yerde */
@font-face {
    font-family: 'Helvetica Now Text';
    src: url("https://cdn.prod.website-files.com/67b320fe114d5e148783d276/67b32ad6eff2002c1206da87_HelveticaNowText-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Now Text';
    src: url("https://cdn.prod.website-files.com/67b320fe114d5e148783d276/67b32f0ff4a4d11ab679d141_HelveticaNowText-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Now Display';
    src: url("https://cdn.prod.website-files.com/67b320fe114d5e148783d276/67b32ad63c3c44fc26e78430_HelveticaNowDisplay-Md.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Now Display';
    src: url("https://cdn.prod.website-files.com/67b320fe114d5e148783d276/67b32ad659a9b9093d8348bc_HelveticaNowDisplay-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ivy Presto Headline';
    src: url("https://cdn.prod.website-files.com/67b320fe114d5e148783d276/67b5ea4f7741296585fe4adc_IvyPrestoHeadline-LightItalic.woff2") format("woff2");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

/* CSS Variables - Birleştirilmiş */
:root {
    /* Renkler */
    --color-light: #f1f1f1;
    --color-dark: #212121;
    --color-light-tint: #f1f1f1;
    --color-primary: #10b981;
    --color-light-tint-hover: #e7e7e7;
    --color-primary-light: #d5fce3;
    --color-border: rgba(33, 33, 33, 0.15);
    --color-dark-tint: #191919;
    --color-dark-tint-hover: #292929;
    --color-white: #FFF;
    --color-black: #000;

    /* Boyutlar */
    --nav-bar-height: 7.5em;
    --grow: 0.25em;
    --gap: 1em;
    --size-font: 0.83vw;
    --container-padding: 3em;
    --section-padding: 6em;
    --border-radius-s: 0.5em;
    --border-radius-m: 1em;
    --border-radius-l: 1.5em;

    /* Animasyonlar */
    --animation-default-fast: 0.3s cubic-bezier(0.625, 0.05, 0, 1);
    --animation-default: 0.6s cubic-bezier(0.625, 0.05, 0, 1);
    --animation-grow: 0.45s cubic-bezier(0.35, 1.5, 0.6, 1);
    --animation-ease: 0.2s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--color-light);
    color: var(--color-dark);
    line-height: 1.3;
    overflow-x: hidden;
    font-size: var(--size-font);
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    transition: color var(--animation-ease), background-color var(--animation-ease);
}

/* Container System */
.container {
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.header .container {
    max-width: 100vw;
    /* Header tam genişlik */
    width: 100%;
    padding: 0 0.5vw;
    /* Minimal padding */
    box-sizing: border-box;
    display: flex;
    flex-wrap: nowrap;
    overflow: visible;
}

@media (min-width: 1200px) {
    .container {
        max-width: 62.5vw;
        padding: 0 2rem;
    }

    .header .container {
        max-width: 100vw;
        /* Header için sınır yok */
        padding: 0 1rem;
        /* Daha az padding */
    }
}

/* Home Results için full width container */
.home-results .container {
    max-width: 100%;
    width: 100%;
    padding: 0 3rem;
}

@media (min-width: 1200px) {
    .home-results .container {
        max-width: 100%;
        padding: 0 4rem;
    }
}

/* Header - Sticky Navigation Container */
.header-container {
    position: fixed;
    top: 1rem;
    z-index: 200;
    width: 100vw;
    display: flex;
    justify-content: center;
    padding: 0 0.3rem;
    min-height: auto;
    height: auto;
    max-width: 100vw;
    box-sizing: border-box;
    left: 0;
    right: 0;
}

/* Mobilde header full width için ek ayarlar */
@media (max-width: 991px) {
    .header-container {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        width: 100vw;
        max-width: 100vw;
        padding: 0;
        margin: 0;
        justify-content: flex-start;
    }
}

/* Header - Navigation Bar - Tamamen Esnek */
.nav-bar {
    position: relative;
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 1vw 1.2vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: auto;
    overflow: visible;
    gap: 1.2vw;
    flex-wrap: nowrap;
    flex-grow: 1;
    flex-shrink: 0;
}

/* Mobilde header responsive */
@media (max-width: 991px) {
    .nav-bar {
        padding: 0.78vw 1.04vw;
        gap: 0.78vw;
        min-height: 3.65vw;
    }
}

.nav-bar__bg {
    background-color: white;
    border-radius: 0.5em;
    position: absolute;
    inset: 0;
    transition: all var(--animation-default), background-color var(--animation-ease);
    box-shadow: 0 0 2.5em rgba(0, 0, 0, 0);
}

[data-scrolling-started="true"] .nav-bar__bg {
    box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.1);
}

.nav-bar__logo-and-hamburger {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1em;
    flex-shrink: 0;
    min-width: fit-content;
}

.nav-bar__logo-a {
    color: var(--color-dark);
    align-items: center;
    height: 100%;
    padding-left: 0.75em;
    display: flex;
    text-decoration: none;
    transition: color var(--animation-ease);
}

.nav-bar__logo-wrap {
    position: relative;
}

.nav-bar__logo-svg {
    width: auto;
    height: 1.7vw;
    min-height: 2em;
    max-height: 3.2em;
    color: var(--color-dark);
    flex-shrink: 0;
}

.dapper-flower {
    opacity: 0;
    width: 9em;
    display: none;
    /* Yeşil SVG'yi gizliyorum */
    position: relative;
}

.dapper-flower.is--nav-bar-logo {
    width: 24.08%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0 !important;
    /* Navbar logosunu da gizliyorum */
}

.dapper-flower__before {
    padding-top: 75%;
}

.dapper-flower__leaf-s {
    transform-origin: 100% 100%;
    width: 42.9%;
    position: absolute;
    top: 0;
    left: 0;
    color: var(--color-primary);
}

.dapper-flower__leaf-l {
    transform-origin: 0 100%;
    width: 57.25%;
    position: absolute;
    bottom: 0;
    right: 0;
    color: var(--color-primary);
}

.nav-bar__hamburger {
    align-items: center;
    height: 100%;
    padding-left: .5em;
    padding-right: .5em;
    display: none;
}

.hamburger {
    background-color: var(--color-primary);
    cursor: pointer;
    border-radius: .25em;
    width: 2.5em;
    height: 2.5em;
    position: relative;
    overflow: hidden;
}

.hamburger__bar {
    background-color: var(--color-dark);
    width: 1.125em;
    height: .125em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0.001deg);
    transition: all var(--animation-default), background-color var(--animation-ease);
}

.hamburger__bar.is--top {
    transform: translate(-50%, calc(-50% - 0.3125em)) rotate(0.001deg);
}

.hamburger__bar.is--bottom {
    transform: translate(-50%, calc(-50% + 0.3125em)) rotate(0.001deg);
}

.nav-bar__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vw;
    height: 100%;
    padding: 1.3vw 0 1.3vw 0;
    flex: 1;
    overflow: visible;
    flex-wrap: nowrap;
    min-width: 0;
    flex-shrink: 1;
    max-width: none;
    /* Sınır kaldırıldı */
}

.nav-bar__link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--color-dark);
    text-decoration: none;
    cursor: pointer;
}

.nav-bar__link-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.75em;
    height: 100%;
    position: relative;
}

.nav-bar__link-bg {
    left: var(--grow);
    top: var(--grow);
    right: var(--grow);
    bottom: var(--grow);
    background-color: var(--color-light);
    opacity: 0;
    border-radius: 0.25em;
    position: absolute;
    transition: all var(--animation-default-fast), background-color var(--animation-ease);
}

@media (hover: hover) and (pointer: fine) {
    .nav-bar__link:hover .nav-bar__link-bg {
        inset: -0.3em 0em;
        opacity: 1;
    }
}

.nav-bar__link-text {
    align-items: center;
    display: flex;
    position: relative;
    transition: color var(--animation-ease);
}

.nav-bar__link-text-span {
    font-size: 0.95vw;
    /* VW ile responsive */
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1;
    white-space: nowrap;
}

.nav-bar__link-text.is--solo {
    align-items: center;
    display: flex;
    position: relative;
}

.nav-bar__link-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5em;
    height: 100%;
    margin-left: 0.25em;
    flex-shrink: 0;
}

.nav-bar__link-chevron-svg {
    width: 16px;
    height: 16px;
    transition: transform var(--animation-default);
    transform: rotate(0deg);
}

.nav-bar__btn {
    display: flex;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
    margin-left: 0;
    gap: 0.4vw;
    min-width: fit-content;
    z-index: 10;
    position: relative;
}

/* Dil Seçici Stilleri - Minimal */
.nav-bar__lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.75rem;
    font-weight: 500;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: 3rem;
    padding: 0.25rem 0.4rem;
    background: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 10;
    justify-content: center;
}

.nav-bar__lang-link {
    color: #666;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0.15rem 0.3rem;
    border-radius: 0.15rem;
    font-weight: 500;
    font-size: 0.7rem;
}

.nav-bar__lang-link:hover {
    color: #00d084;
    background: rgba(0, 208, 132, 0.08);
}

.nav-bar__lang-link.active {
    color: white;
    background: #00d084;
    font-weight: 600;
}

.nav-bar__lang-separator {
    color: #ccc;
    font-weight: 300;
    margin: 0 0.1rem;
    font-size: 0.6rem;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2em;
    height: 1.8em;
    padding: 0 0.5em;
    background-color: var(--color-primary);
    color: var(--color-dark);
    font-size: 0.65em;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-decoration: none;
    border-radius: 0.3em;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    white-space: nowrap;
    transition: all var(--animation-default-fast), background-color var(--animation-ease);
}

.btn:hover {
    text-decoration: none;
}

.btn__bg {
    background-color: var(--color-light-tint);
    border-radius: 0.5em;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all var(--animation-grow), background-color var(--animation-ease);
}

@media (hover: hover) and (pointer: fine) {
    .btn:hover .btn__bg {
        left: calc(var(--grow) * -1);
        top: calc(var(--grow) * -1);
        height: calc(100% + (var(--grow) * 2));
        width: calc(100% + (var(--grow) * 2));
        border-radius: 0.75em;
    }
}

.btn__text {
    align-items: center;
    display: flex;
    position: relative;
}

.btn__span {
    white-space: nowrap;
    font-size: 1em;
    font-weight: 700;
    transition: color var(--animation-ease);
}

.arrow {
    background-color: var(--color-primary);
    border-radius: 0.2em;
    flex-shrink: 0;
    width: 1.1em;
    height: 1.1em;
    position: relative;
    overflow: hidden;
    transition: background-color var(--animation-ease);
}

.arrow__bg {
    background-color: var(--color-dark);
    border-radius: 0.25em;
    width: 0;
    height: 0;
    position: absolute;
    top: 15%;
    left: 50%;
    transition: all var(--animation-default), background-color var(--animation-ease);
}

.arrow__box {
    color: var(--color-dark);
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    transition: all var(--animation-default), color var(--animation-ease);
}

.arrow__svg {
    width: 1em;
}

@media (hover: hover) and (pointer: fine) {
    .btn:hover .arrow__bg {
        left: calc(var(--grow) * -1);
        top: calc(var(--grow) * -1);
        width: calc(100% + (var(--grow) * 2));
        height: calc(100% + (var(--grow) * 2));
    }

    .btn:hover .arrow__box {
        transform: translateY(100%) rotate(0.001deg);
    }
}

.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

/* Dropdown Styles - Tamamen Dinamik */
.nav-dropdown {
    width: auto;
    min-width: fit-content;
    max-width: none;
    padding-top: 1.5em;
    position: absolute;
    top: calc(100% - 0.75em);
    left: 50%;
    transform: translateX(-50%);
    transition: all var(--animation-default-fast) 0s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media screen and (min-width: 992px) {
    [data-dropdown-status="active"] .nav-dropdown {
        transition: all var(--animation-default-fast) 0s;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    /* Hover ile dropdown açılma */
    .nav-bar__link:hover .nav-dropdown {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all !important;
    }
}

.nav-dropdown__overflow {
    transition: transform var(--animation-default-fast);
    transform: translateY(1em) rotate(0.001deg);
}

@media screen and (min-width: 992px) {
    [data-dropdown-status="active"] .nav-dropdown__overflow {
        transition: transform var(--animation-grow);
        transform: translateY(0em) rotate(0.001deg);
    }

    /* Hover ile dropdown overflow animasyonu */
    .nav-bar__link:hover .nav-dropdown__overflow {
        transform: translateY(0em) rotate(0.001deg) !important;
    }
}

.nav-dropdown__overflow-inner {
    position: relative;
}

.nav-dropdown__grid {
    padding: 0.5em;
    grid-column-gap: 0.5em;
    grid-row-gap: 0.5em;
    background-color: var(--color-light-tint);
    border-radius: 0.5em;
    flex-flow: column;
    display: flex;
    position: relative;
    transition: background-color var(--animation-ease);
    --gap: 0.5em;
}

.nav-dropdown__grid-row {
    grid-column-gap: 0.125em;
    /* Yatay boşluk dikey boşlukla aynı - daha küçük */
    grid-row-gap: 0.125em;
    /* Dikey boşluk - daha küçük */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    max-width: 100%;
    transition: transform var(--animation-grow);
}

/* Maksimum 3 kolon için özel grid ayarı */
.nav-dropdown__grid-row {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

@media (min-width: 768px) {
    .nav-dropdown__grid-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nav-dropdown__grid-row:hover {
    /* transform: translateX(20%); */
}

.nav-dropdown-tile {
    grid-column-gap: 0.5em;
    grid-row-gap: 0.5em;
    color: var(--color-dark);
    flex-flow: column;
    justify-content: space-between;
    height: 10em;
    padding: 0.5em;
    text-decoration: none;
    display: flex;
    position: relative;
    transition: transform var(--animation-grow), color var(--animation-ease);
}

@media screen and (min-width: 992px) {

    /* Nav dropdown için growing-tiles CSS'i - Tamamen Dinamik Boyutlar */
    .nav-dropdown .growing-tiles {
        height: auto;
        min-height: auto;
        max-height: none;
        width: auto;
        min-width: fit-content;
    }

    .nav-dropdown .growing-tiles__row {
        transition: height var(--animation-grow);
        height: auto;
        min-height: auto;
        padding: 0.2vw 0;
    }

    .nav-dropdown .growing-tiles__row:hover {
        transform: scale(1.02);
    }

    .nav-dropdown .growing-tiles__col {
        transition: width var(--animation-grow);
        width: auto;
        min-width: fit-content;
        min-height: auto;
        padding: 0 0.5vw;
    }

    .nav-dropdown .growing-tiles__col:hover {
        transform: scale(1.05);
    }

    .nav-dropdown .growing-tile {
        padding: 2vw;
        min-height: auto;
        width: auto;
        min-width: 20vw;
    }

    .nav-dropdown .growing-tile__start .growing-tile__text h3 {
        font-size: 1.1vw;
        /* VW ile responsive font - küçültme */
        line-height: 1.3;
        margin-bottom: 0.5vw;
    }

    .nav-dropdown .growing-tile__end .growing-tile__text {
        transition: all var(--animation-grow), color var(--animation-ease);
        opacity: 0;
        visibility: hidden;
        transform: translateY(0.5em) rotate(0.001deg);
    }

    .nav-dropdown .growing-tile__end .growing-tile__text p {
        font-size: 0.9vw;
        /* VW ile responsive font - küçültme */
        line-height: 1.4;
        margin-bottom: 0;
    }

    .nav-dropdown .growing-tiles__col:hover .growing-tile__end .growing-tile__text {
        opacity: 1;
        visibility: visible;
        transform: translateY(0em) rotate(0.001deg);
    }
}

.nav-dropdown-tile__bg {
    background-color: var(--color-light);
    border-radius: 0.25em;
    position: absolute;
    inset: 0;
    transition: all var(--animation-grow), background-color var(--animation-ease);
}

@media (hover: hover) and (pointer: fine) {
    .nav-dropdown-tile:hover .nav-dropdown-tile__bg {
        background-color: var(--color-light-tint-hover);
    }
}

.nav-dropdown-tile__text {
    grid-column-gap: 0.5em;
    grid-row-gap: 0.5em;
    flex-flow: column;
    max-width: 17.5em;
    display: flex;
    position: relative;
}

.nav-dropdown-tile__arrow {
    justify-content: flex-end;
    display: flex;
    position: relative;
}

.nav-dropdown-tile__arrow .arrow {
    background-color: var(--color-primary);
    transition: all var(--animation-default);
    width: 2.5em;
    height: 2.5em;
    border-radius: 0.25em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-dropdown-tile:hover .nav-dropdown-tile__arrow .arrow {
    background-color: var(--color-dark);
    transform: translateY(-2px);
}

.nav-dropdown-tile__arrow .arrow__box {
    color: var(--color-dark);
    transition: all var(--animation-default);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.nav-dropdown-tile:hover .nav-dropdown-tile__arrow .arrow__box {
    color: var(--color-primary);
}

.nav-dropdown-tile__h {
    letter-spacing: -0.03em;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.25em;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    padding: 0;
}

.nav-dropdown-tile__p {
    letter-spacing: -0.01em;
    text-wrap: balance;
    font-size: 0.9375em;
    line-height: 1.3;
    margin: 0;
    padding: 0;
}

.nav-bar__link:hover .nav-bar__link-bg {
    opacity: 1;
}

.nav-bar__link-text {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-bar__link-text-span {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    font-weight: 500;
    color: #212121;
}

.nav-bar__link-chevron {
    width: 16px;
    height: 16px;
    color: #212121;
    transition: transform 0.3s ease;
}

.nav-bar__link[data-dropdown-status="active"] .nav-bar__link-chevron {
    transform: rotate(180deg);
}

.nav-bar__link.w-inline-block {
    text-decoration: none;
}

.nav-bar__link.w-inline-block .nav-bar__link-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #212121;
}

.nav-bar__btn {
    display: flex;
    align-items: center;
}

.btn {
    background: #00d084;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    position: relative;
    overflow: hidden;
    border: none;
}

.btn__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00b572;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover .btn__bg {
    opacity: 1;
}

.btn__text {
    position: relative;
    z-index: 1;
}

/* Dropdown hover area genişletme */
.nav-bar__link {
    position: relative;
}

.nav-bar__link::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 20px;
    background: transparent;
    z-index: 999;
}

/* Sadece click ile açılma - hover devre dışı */
.nav-bar__link[data-dropdown-status="active"] .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown Menu - Responsive */
.nav-dropdown {
    position: fixed;
    top: 4rem;
    left: 50%;
    transform: translateX(-50%) translateY(-0.5rem);
    width: 95vw;
    max-width: 95%;
    background: #ffffff;
    border-radius: 0 0 1rem 1rem;
    box-shadow: 0 0.5rem 2.5rem rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    padding-top: 1rem;
}

/* Desktop için dropdown sınırları */
@media (min-width: 1200px) {
    .nav-dropdown {
        top: 4rem;
        max-width: 1068px;
        width: 100vw;
    }
}

.nav-dropdown__overflow {
    overflow: hidden;
    border-radius: 0 0 1rem 1rem;
}


.nav-dropdown__overflow-inner {
    padding: 0rem 1rem 1rem 1rem;
}

.nav-dropdown__grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-dropdown__grid-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.125em;
    /* Yatay ve dikey boşlukları küçülttüm */
    max-width: 100%;
}

/* Maksimum 3 kolon grid sistemi */
@media (min-width: 768px) {
    .nav-dropdown__grid-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nav-dropdown-tile {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #212121;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.nav-dropdown-tile:hover {
    background: #ffffff;
    border-color: #e0e0e0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.nav-dropdown-tile__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-dropdown-tile:hover .nav-dropdown-tile__bg {
    opacity: 1;
}

.nav-dropdown-tile__text {
    position: relative;
    z-index: 1;
}

.nav-dropdown-tile__h {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.nav-dropdown-tile__p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Overlay Effect */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.192);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 150;
    pointer-events: none;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Video Section */
.hero-video {
    position: relative;
    width: 100vw;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 6rem;
}

.hero-video__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.6s ease-in-out;
}

/* Hero Video Iframe Styles */
.hero-video__background iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.hero-video__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-video__content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 3;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 1.5rem;
    min-width: 350px;
    max-width: 450px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-video__titles {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
}

.hero-option {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 1rem 0;
    position: relative;
}

.hero-option:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-option__title {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-option__description {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hover Effects */
.hero-option:hover {
    padding-left: 0.5rem;
    border-left: 3px solid #00d084;
}

.hero-option:hover .hero-option__title {
    color: #00d084;
    transform: translateX(0.3rem);
}

.hero-option:hover .hero-option__description {
    color: rgba(255, 255, 255, 0.9);
    transform: translateX(0.3rem);
}

.hero-option.active {
    padding-left: 0.5rem;
    border-left: 3px solid #00d084;
}

.hero-option.active .hero-option__title {
    color: #00d084;
    transform: translateX(0.3rem);
}

.hero-option.active .hero-option__description {
    color: rgba(255, 255, 255, 0.9);
    transform: translateX(0.3rem);
}

.hero-video__titles:hover .hero-option:not(:hover) {
    opacity: 0.6;
}

/* Hero Navigation Dots */
/* Old hero-nav styles removed - now using unified page-nav system */

/* Hero Video Responsive */
@media (max-width: 1200px) {
    .hero-video__content {
        min-width: 300px;
        max-width: 400px;
        padding: 1.2rem;
    }

    .hero-option__title {
        font-size: 1rem;
    }

    .hero-option__description {
        font-size: 0.75rem;
    }

    /* Old hero-nav styles removed */
}

@media (max-width: 768px) {
    .hero-video {
        height: 35vh;
    }

    .hero-video__content {
        left: 1rem;
        bottom: 1rem;
        min-width: 250px;
        max-width: 320px;
        padding: 1rem;
    }

    .hero-option__title {
        font-size: 0.95rem;
    }

    .hero-option__description {
        font-size: 0.7rem;
    }

    /* Old hero-nav styles removed */
}

@media (max-width: 480px) {
    .hero-video {
        height: 30vh;
    }

    .hero-video__content {
        min-width: 220px;
        max-width: 280px;
        padding: 0.8rem;
    }

    .hero-option__title {
        font-size: 0.9rem;
    }

    .hero-option__description {
        font-size: 0.65rem;
    }

    /* Old hero-nav styles removed */
}

.header-spline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    position: relative;
}

.header-spline canvas {
    display: block;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 208, 132, 0.05) 0%, transparent 70%);
}

.home-header__row-title {
    position: relative;
    z-index: 10;
    margin-bottom: 4rem;
}

.eyebrow-wrap {
    margin-bottom: 2rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00d084;
    font-size: 0.85rem;
    font-weight: 600;
    justify-content: center;
}

.eyebrow__svg {
    width: 20px;
    height: 16px;
    color: #00d084;
}

.eyebrow__p {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
}

.h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin: 0;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.h1 em {
    font-style: italic;
    color: #666;
}

.home-header__row-info {
    display: flex;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

/* Mobile için hero section */
@media (max-width: 768px) {
    .home-header__row-info {
        flex-direction: column;
        gap: 2rem;
    }
}

.home-header__col-text {
    flex: 1;
}

.styled-content {
    margin-bottom: 2rem;
}

.p-l {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    color: #666;
    margin: 0;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.p-l.is--strong {
    font-weight: 500;
}

.btn-wrap {
    display: inline-block;
}

.btn {
    background: transparent;
    color: #1a1a1a;
    padding: 1rem 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn[data-btn-theme="transparent"] {
    background: transparent;
    border: 1px solid #e0e0e0;
}

.btn:hover {
    background: #f8f9fa;
    border-color: #00d084;
}

.btn__span {
    position: relative;
    z-index: 1;
}

.home-header__col-card {
    flex: 0 0 auto;
    width: clamp(250px, 25vw, 270px);
    position: relative;
}

/* Mobile için card boyutu */
@media (max-width: 768px) {
    .home-header__col-card {
        width: 100%;
        max-width: 300px;
    }
}

.pixel-group__wrap {
    position: absolute;
    top: -2rem;
    right: -2rem;
    width: 60px;
    height: 60px;
    z-index: 1;
}

.pixel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    width: 100%;
    height: 100%;
}

.pixel-grid-pixel {
    width: 100%;
    height: 100%;
    background: #00d084;
    border-radius: 2px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.pixel-grid-pixel-fake {
    width: 100%;
    height: 100%;
    background: transparent;
}

.corner-card {
    display: block;
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.corner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.corner-card__title {
    margin-bottom: 2rem;
}

.h6 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 0;
}

.corner-card__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.logo__img {
    height: 24px;
    width: auto;
}

.corner-card__media {
    position: relative;
    width: 100%;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
}

.scaling-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.corner-card:hover .scaling-image {
    transform: scale(1.05);
}

.border-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e0e0e0 50%, transparent 100%);
}

/* Results Section */
.results {
    padding: 80px 0;
    background: #ffffff;
}

.section-badge {
    display: inline-block;
    color: #00d084;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    color: #1a1a1a;
}

.section-title .highlight {
    font-style: italic;
    color: #666;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.explore-link {
    color: #00d084;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.explore-link:hover {
    color: #00b572;
}

.explore-link::after {
    content: "→";
    font-size: 1.2rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

.result-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #00d084;
}

.result-number {
    font-size: 3rem;
    font-weight: 800;
    color: #00d084;
    margin-bottom: 1rem;
}

.result-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.result-description {
    color: #666;
    line-height: 1.5;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f1f1f1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #00d084;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 208, 132, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #00d084;
    font-size: 1.5rem;
    transition: all var(--animation-default);
}

.service-card:hover .service-icon {
    background: var(--color-primary);
    color: var(--color-dark);
    transform: translateY(-3px);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #00d084;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    color: #00b572;
}

.service-link::after {
    content: "→";
    font-size: 1.1rem;
}

/* Demand Generation Section */
.demand-gen {
    padding: 80px 0;
    background: #f1f1f1;
}

.demand-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.demand-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.demand-features {
    list-style: none;
    margin-bottom: 2rem;
}

.demand-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.demand-features li::before {
    content: "✓";
    color: #00d084;
    font-weight: 600;
}

.demand-visual {
    text-align: center;
    font-size: 8rem;
    color: #f0f0f0;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: #f1f1f1;
}

.team-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.team-skill {
    background: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
    border: 1px solid #e0e0e0;
}

.team-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.team-title .highlight {
    font-style: italic;
    color: #666;
}

.team-members {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.team-member {
    width: 50px;
    height: 50px;
    background: #00d084;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    position: relative;
    background: #2a2a2a;
    color: #ffffff;
    padding: 60px 0 30px;
    overflow: hidden;
}

/* Footer Rainbow Animation */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.footer .rainbow {
    height: 100vh;
    width: 0;
    top: 0;
    position: absolute;
    transform: rotate(10deg);
    transform-origin: top right;
    z-index: 0;
    pointer-events: none;
}

.footer .rainbow:nth-child(1) {
    box-shadow: -130px 0 80px 40px rgba(255, 255, 255, 0.1),
        -50px 0 50px 25px rgb(232, 121, 249),
        0 0 50px 25px rgb(96, 165, 250),
        50px 0 50px 25px rgb(94, 234, 212),
        130px 0 80px 40px rgba(255, 255, 255, 0.1);
    animation: 45s linear infinite slide;
    animation-delay: -1.8s;
}

.footer .rainbow:nth-child(2) {
    box-shadow: -130px 0 80px 40px rgba(255, 255, 255, 0.1),
        -50px 0 50px 25px rgb(232, 121, 249),
        0 0 50px 25px rgb(94, 234, 212),
        50px 0 50px 25px rgb(96, 165, 250),
        130px 0 80px 40px rgba(255, 255, 255, 0.1);
    animation: 45s linear infinite slide;
    animation-delay: -3.6s;
}

.footer .rainbow:nth-child(3) {
    box-shadow: -130px 0 80px 40px rgba(255, 255, 255, 0.1),
        -50px 0 50px 25px rgb(94, 234, 212),
        0 0 50px 25px rgb(232, 121, 249),
        50px 0 50px 25px rgb(96, 165, 250),
        130px 0 80px 40px rgba(255, 255, 255, 0.1);
    animation: 45s linear infinite slide;
    animation-delay: -5.4s;
}

.footer .rainbow:nth-child(4) {
    box-shadow: -130px 0 80px 40px rgba(255, 255, 255, 0.1),
        -50px 0 50px 25px rgb(94, 234, 212),
        0 0 50px 25px rgb(96, 165, 250),
        50px 0 50px 25px rgb(232, 121, 249),
        130px 0 80px 40px rgba(255, 255, 255, 0.1);
    animation: 45s linear infinite slide;
    animation-delay: -7.2s;
}

.footer .rainbow:nth-child(5) {
    box-shadow: -130px 0 80px 40px rgba(255, 255, 255, 0.1),
        -50px 0 50px 25px rgb(96, 165, 250),
        0 0 50px 25px rgb(94, 234, 212),
        50px 0 50px 25px rgb(232, 121, 249),
        130px 0 80px 40px rgba(255, 255, 255, 0.1);
    animation: 45s linear infinite slide;
    animation-delay: -9s;
}

.footer .rainbow:nth-child(6) {
    box-shadow: -130px 0 80px 40px rgba(255, 255, 255, 0.1),
        -50px 0 50px 25px rgb(96, 165, 250),
        0 0 50px 25px rgb(232, 121, 249),
        50px 0 50px 25px rgb(94, 234, 212),
        130px 0 80px 40px rgba(255, 255, 255, 0.1);
    animation: 45s linear infinite slide;
    animation-delay: -10.8s;
}

.footer .h {
    box-shadow: 0 0 50vh 40vh rgba(255, 255, 255, 0.05);
    width: 100vw;
    height: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.footer .v {
    box-shadow: 0 0 35vw 25vw rgba(255, 255, 255, 0.05);
    width: 0;
    height: 100vh;
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

@keyframes slide {
    from {
        right: -25vw;
    }

    to {
        right: 125vw;
    }
}

/* Footer Content Z-Index */
.footer-container,
.footer-info__tile,
.footer-content {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00d084;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-contact a {
    color: #00d084;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #00b572;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
}

.footer-credits {
    display: flex;
    gap: 2rem;
}

.footer-credits a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-credits a:hover {
    color: #00d084;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #ccc;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #00d084;
}

/* Mobile Responsive */
/* Mobile Menu - Düzgün Grid Sistemi */
@media (max-width: 768px) {

    /* Header container - sticky compatible */
    .header {
        z-index: 200;
        position: relative;
    }

    /* Nav bar - grid sistemi */
    .nav-bar {
        position: relative;
        width: 100vw !important;
        max-width: 100vw !important;
        padding: 0.5rem 1rem;
        height: auto;
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        grid-template-rows: auto 1fr auto !important;
        align-items: center;
        grid-column-gap: 1em;
        grid-row-gap: 1em;
        pointer-events: all;
        justify-content: flex-start;
        background: white;
        border-radius: 0 !important;
        margin: 0;
        transform: none;
        left: auto;
        top: auto;
        min-width: fit-content;
    }

    /* Logo sol tarafta */
    .nav-bar__logo-and-hamburger {
        grid-column: 1;
        grid-row: 1;
        pointer-events: all;
        height: 100%;
        position: relative;
        display: flex;
        align-items: center;
    }

    /* Hamburger sağ tarafta */
    .nav-bar__hamburger {
        grid-column: 2;
        grid-row: 1;
        align-items: center;
        height: 100%;
        padding-left: .5em;
        padding-right: .5em;
        display: none;
        pointer-events: all;
    }

    @media screen and (max-width: 991px) {
        .nav-bar__hamburger {
            display: flex;
        }
    }

    @media screen and (max-width: 991px) {
        .nav-bar__logo-and-hamburger {
            pointer-events: all;
            flex: none;
            justify-content: flex-start;
            width: auto;
            display: flex;
            justify-content: space-between;
            padding-top: 2px;
        }
    }

    /* Grid 2: Ana Menüler */
    @media screen and (max-width: 991px) {
        .nav-bar__links {
            grid-row: 2;
            pointer-events: all;
            background-color: var(--color-light) !important;
            border-radius: .5em;
            flex-flow: column;
            width: 100%;
            height: auto;
            padding: .5em;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            z-index: 190;
            margin-top: 0.5em;
            overflow: visible;
            transition: all var(--animation-default-fast) 0.2s, transform var(--animation-default) 0.1s, background-color var(--animation-ease) 0s;
            transform: translateY(1em) rotate(0.001deg);
            opacity: 0;
            visibility: hidden;
        }

        .nav-bar__links.is-open {
            background: white !important;
        }
    }

    @media screen and (max-width: 991px) {
        [data-navigation-status="active"] .nav-bar__links {
            transition: all var(--animation-default-fast) 0.1s, transform var(--animation-default) 0s, background-color var(--animation-ease) 0s;
            transform: translateY(0em) rotate(0.001deg);
            opacity: 1;
            visibility: visible;
        }
    }



    /* Grid 3: Üyelik Butonu - Mobilde gizle */
    @media screen and (max-width: 991px) {
        .nav-bar__btn {
            display: none !important;
        }
    }

    /* Mobil menü link stilleri */
    .nav-bar__link {
        flex-flow: column;
        width: 100%;
        height: auto;
        margin-bottom: 0;
        min-height: auto;
    }

    .nav-bar__link-inner {
        width: 100%;
        padding: 0.75em;
    }

    .nav-bar__link-bg {
        opacity: 1;
        inset: 0;
        background-color: var(--color-light);
    }

    .nav-bar__link-text {
        flex: none;
        justify-content: space-between;
        width: 100%;
        height: auto;
        min-height: 3.25em;
        align-items: center;
        padding: 0.5em 0;
    }

    .nav-bar__link-text-span {
        font-size: 1.1em !important;
        font-weight: 500 !important;
        color: var(--color-dark) !important;
        display: block !important;
        line-height: 1.2 !important;
    }

    /* Tüm nav-bar link text'leri için genel kural */
    .nav-bar__link .nav-bar__link-text-span {
        font-size: 1.1em !important;
        font-weight: 500 !important;
        color: var(--color-dark) !important;
        display: block !important;
        line-height: 1.2 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Dropdown'ları mobilde başlangıçta gizle, toggle ile göster */
    .nav-dropdown {
        position: static !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: none !important;
        box-shadow: none !important;
        background-color: transparent !important;
        margin-top: 0 !important;
        padding: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: all 0.3s ease !important;
    }

    /* Active durumda dropdown'ı göster */
    .nav-bar__link[data-dropdown-status="active"] .nav-dropdown {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 500px !important;
        transform: translateY(0) !important;
    }

    .nav-dropdown__overflow {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .nav-dropdown__grid {
        background-color: transparent !important;
        padding: 0.5em 0 0 !important;
        border-radius: 0 !important;
    }

    .nav-dropdown__grid-row {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.125em !important;
        /* Mobilde de boşlukları küçülttüm */
    }

    .nav-dropdown-tile {
        height: auto !important;
        padding: 0.75em 1em !important;
        background-color: var(--color-light) !important;
        border-radius: 0.25em !important;
        margin-bottom: 0.5em !important;
    }

    .nav-dropdown-tile__bg {
        display: none !important;
    }

    .nav-dropdown-tile__text {
        max-width: none !important;
    }

    .nav-dropdown-tile__h {
        font-size: 1em !important;
        margin-bottom: 0.25em !important;
    }

    .nav-dropdown-tile__p {
        font-size: 0.9em !important;
        opacity: 0.7 !important;
    }

    .nav-dropdown-tile__arrow {
        display: none !important;
    }

    /* Chevron'ları sadece alt menüsü olan linkler için göster */
    .nav-bar__link-chevron {
        display: none;
    }

    .nav-bar__link[data-dropdown-status] .nav-bar__link-chevron {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 16px !important;
        height: 16px !important;
        margin-left: 0.5em !important;
        transition: transform 0.3s ease !important;
    }

    .nav-bar__link[data-dropdown-status="active"] .nav-bar__link-chevron {
        transform: rotate(180deg) !important;
    }

    .nav-bar__link[data-dropdown-status="active"] .nav-bar__link-chevron-svg {
        transform: rotate(180deg) !important;
    }

    /* Solo linkler için stil */
    .nav-bar__link.w-inline-block {
        display: flex;
    }

    .nav-bar__link-text.is--solo {
        justify-content: flex-start;
    }

    /* Link hover efekti */
    .nav-bar__link:hover .nav-bar__link-bg {
        background-color: var(--color-light);
    }

    /* Diğer responsive ayarlar */
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .demand-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}





/* Diğer responsive ayarlar */
.results-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.demand-content {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
}


@media screen and (min-width: 992px) {
    .nav-bar__hamburger {
        display: none;
    }

    .nav-bar__links {
        display: flex;
    }

}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1199px) {
    .nav-bar {
        width: 90%;
        padding: 1rem 2.5rem;
    }

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

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

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Client Logos */
.home-header__col-logos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.client-logos {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.client-logo {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo-placeholder {
    font-size: 1.2rem;
    font-weight: 700;
    color: #666;
    text-align: center;
}

/* Results Section - New Layout */
.result-card--highlighted {
    background: #00d084;
    color: white;
}

.result-card--highlighted .result-number {
    color: white;
}

.result-card--highlighted .result-title {
    color: white;
}

.result-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
    color: #00d084;
}

.result-card--highlighted .result-icon {
    color: white;
}

/* Services Layout - New Design */
.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.services-visual {
    position: relative;
}

.services-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.dapper-text {
    font-size: 4rem;
    font-weight: 800;
    color: #00d084;
    text-transform: lowercase;
    font-style: italic;
}

.services-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.service-item:last-child {
    border-bottom: none;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.service-description {
    color: #666;
    margin: 0.5rem 0 0 0;
    font-size: 1rem;
}

.service-arrow {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-arrow--green {
    background: #00d084;
}

.service-arrow:hover {
    transform: scale(1.1);
}

/* Kullanılmayan demand generation section kaldırıldı */

/* Team Section - New Layout */
.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: center;
}

.team-left,
.team-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-title h2 {
    font-size: 4rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    font-style: italic;
}

.team-skills {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skill-tag {
    background: #00d084;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.team-center {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-photos {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.team-photo {
    width: 80px;
    height: 80px;
    background: #ddd;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.team-photo--1 {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.team-photo--2 {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.team-photo--3 {
    background: linear-gradient(135deg, #45b7d1, #96c93d);
}

.team-button {
    background: #00d084;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.team-button:hover {
    background: #00b572;
    transform: translateY(-2px);
}

/* Kullanılmayan comparison section kaldırıldı */

/* Additional Responsive Design */
@media (max-width: 768px) {
    .home-header__col-logos {
        margin-top: 2rem;
    }

    .client-logos {
        gap: 1rem;
    }

    .client-logo {
        padding: 0.8rem 1.2rem;
    }

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

    .services-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-image {
        height: 300px;
    }

    .dapper-text {
        font-size: 2.5rem;
    }

    .demand-content,
    .capture-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .team-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-title h2 {
        font-size: 2.5rem;
    }

    .comparison-table {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Home Results Premium Section - Dapper Style */

/* Font tekrarları kaldırıldı - yukarıda tanımlandı */

/* Gereksiz CSS Variables tekrarı kaldırıldı - yukarıda tanımlandı */

/* Home Results Section */
.home-results {
    padding: 6em 0;
    background-color: var(--color-light-tint);
    padding: 9em 0 6em 0;
}

.home-results__row-eyebrow {
    padding-top: var(--section-padding-three-quaters);
    padding-bottom: var(--gap-eyebrow);
    position: relative;
}

.pixel-group__wrap {
    pointer-events: none;
    width: calc(var(--pixel) * 4);
    position: absolute;
}

.pixel-group__wrap.is--home-results {
    top: 0;
    left: calc(20 * var(--pixel));
    transform: translate(-50%, -25%);
}

.pixel-grid {
    flex-flow: wrap;
    width: 100%;
    display: flex;
    position: relative;
}

.pixel-grid-pixel-fake {
    opacity: 0;
    width: 25%;
}

.pixel-grid-pixel {
    background-color: var(--color-primary);
    opacity: 0;
    width: 25%;
}

.pixel-grid-pixel.is--move-y-200 {
    transform: translateY(200%);
}

.before__100 {
    padding-top: 100%;
}

.flickity-slider-group {
    width: 100%;
    position: relative;
}

[data-flickity-type] {
    --flick-col: 3;
    --flick-gap: 1em;
}

@media screen and (min-width: 992px) {
    [data-flickity-type="cards"].is--normal {
        --flick-col: 3;
        --flick-gap: 1em;
    }
}

@media screen and (max-width: 768px) {
    [data-flickity-type="cards"].is--normal {
        --flick-col: 1;
        --flick-gap: 1em;
    }
}

.home-results__row-title {
    padding-bottom: var(--section-padding-half);
    grid-column-gap: 5em;
    grid-row-gap: 5em;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
    position: relative;
}

.about-program-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
}

.home-results__col-title {
    flex-shrink: 0;
    max-width: 52em;
}

.h3 {
    font-size: 5vw;
    /* VW ile responsive */
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-family: Helvetica Now Display, Arial, sans-serif;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.h3 em {
    font-weight: 500;
    font-family: Ivy Presto Headline, serif;
    font-style: italic;
    letter-spacing: 0em;
    font-size: 0.975em;
    line-height: 1;
}

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

.home-results__col-text-inner {
    flex-flow: column;
    align-items: flex-start;
    max-width: 65em;
    display: flex;
}

.home-results__col-text-inner p {
    font-size: 1.375em;
    line-height: 1.6;
    letter-spacing: -0.02em;
    font-weight: 500;
    font-style: normal;
    margin: 0;
    padding: 0;
}

/* Button Styles */
.btn.w-inline-block {
    grid-column-gap: .75em;
    grid-row-gap: .75em;
    color: var(--color-dark);
    letter-spacing: -.02em;
    cursor: pointer;
    border-radius: .5em;
    flex: 0 auto;
    align-items: center;
    padding: .5em .0em .5em 1em;
    line-height: 1;
    text-decoration: none;
    display: flex;
    position: relative;
}

.btn__bg {
    background-color: var(--color-light-tint);
    border-radius: .5em;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all var(--animation-grow), background-color var(--animation-ease);
}

@media (hover: hover) and (pointer: fine) {
    .btn:hover .btn__bg {
        left: calc(var(--grow) * -1);
        top: calc(var(--grow) * -1);
        height: calc(100% + (var(--grow) * 2));
        width: calc(100% + (var(--grow) * 2));
        border-radius: 0.75em;
    }
}

.btn__text {
    align-items: center;
    display: flex;
    position: relative;
}

.btn__span {
    white-space: nowrap;
    font-size: 0.85em;
    font-weight: 700;
}

/* ABD Market Entry Styles */
.abd-market-entry {
    margin: 3rem 0;
}

.market-entry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.market-entry-section {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.market-entry-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.section-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.25rem;
    color: white;
}

.market-entry-section:nth-child(1) .section-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.market-entry-section:nth-child(2) .section-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.market-entry-section:nth-child(3) .section-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    letter-spacing: 0.5px;
}

.section-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.entry-card-link {
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.entry-card-link:hover {
    transform: translateY(-3px);
}

.entry-card {
    background: #f8fafc;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.entry-card-link:hover .entry-card {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left-width: 6px;
}

.cta-center {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}



/* Son Yayınlar Bölümü Stilleri */
.publications-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.publication-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 0.5rem;
}

.publication-item:hover {
    background-color: rgba(59, 130, 246, 0.05);
    transform: translateY(-3px);
}

.publication-icon {
    flex-shrink: 0;
    width: 80px;
    height: 100px;
    overflow: hidden;
    border-radius: 0.25rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.publication-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.publications-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
}

.no-publications {
    padding: 2rem;
    text-align: center;
    background-color: #f8fafc;
    border-radius: 0.5rem;
}

.entry-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1rem 0;
}

.entry-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.entry-card li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.entry-card li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 600;
}

.entry-card a {
    color: #475569;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.entry-card a:hover {
    color: #3b82f6;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .market-entry-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .market-entry-section {
        padding: 1.5rem;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .section-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

.btn__span {
    transition: color var(--animation-ease);
}

.arrow {
    background-color: var(--color-primary);
    border-radius: .25em;
    flex-shrink: 0;
    width: 2.5em;
    height: 2.5em;
    position: relative;
    overflow: hidden;
    transition: background-color var(--animation-ease);
}

.arrow__bg {
    background-color: var(--color-dark);
    border-radius: .25em;
    width: 0;
    height: 0;
    position: absolute;
    top: 15%;
    left: 50%;
    transition: all var(--animation-default), background-color var(--animation-ease);
}

[data-hover][data-arrow="diagonal"] .arrow .arrow__bg {
    left: 15%;
    top: 85%;
}

@media (hover: hover) and (pointer: fine) {
    [data-hover]:hover .arrow__bg {
        left: calc(var(--grow) * -1);
        top: calc(var(--grow) * -1);
        width: calc(100% + (var(--grow) * 2));
        height: calc(100% + (var(--grow) * 2));
    }

    [data-hover][data-arrow="diagonal"]:hover .arrow .arrow__bg {
        left: calc(var(--grow) * -1);
        top: calc(var(--grow) * -1);
        width: calc(100% + (var(--grow) * 2));
        height: calc(100% + (var(--grow) * 2));
    }
}

.arrow__box {
    color: var(--color-ignore-dark);
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    transition: all var(--animation-default), color var(--animation-ease);
}

.arrow__box.is--duplicate {
    color: #74f5a1;
    bottom: 100%;
}

[data-hover][data-arrow="diagonal"] .arrow .arrow__box {
    transform: translate(0%, 0%) rotate(-135deg);
}

[data-hover][data-arrow="diagonal"] .arrow .arrow__box.is--duplicate {
    left: -100%;
    top: 100%;
}

@media (hover: hover) and (pointer: fine) {
    [data-hover]:hover .arrow__box {
        transform: translateY(100%) rotate(0.001deg);
    }

    [data-hover][data-arrow="diagonal"]:hover .arrow .arrow__box {
        transform: translate(100%, -100%) rotate(-135deg);
    }
}
.nav a.btn.w-inline-block {
    margin-bottom: 0px;
  }
  
  h1.text-4xl.md\:text-5xl.font-bold.mb-4 {
    margin: 20px;
}
.arrow__svg {
    width: 1.25em;
    stroke: white;
}

.result-list {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
    flex-flow: column;
    display: flex;
}

.result-list__list {
    grid-column-gap: .75em;
    grid-row-gap: .75em;
    flex-flow: column;
    display: flex;
}

.result-list__item {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.result-list__icon {
    background-color: var(--color-primary);
    color: var(--color-ignore-dark);
    border-radius: .375em;
    justify-content: center;
    align-items: center;
    width: 2.5em;
    height: 2.5em;
    padding: .5em;
    display: flex;
    flex-shrink: 0;
}

/* Flickity Controls */
.flickity-arrows {
    grid-column-gap: .5em;
    grid-row-gap: .5em;
    pointer-events: none;
    justify-content: flex-end;
    align-items: center;
    display: flex;
    position: absolute;
    bottom: 0;
    right: 0;
}

.flickity-arrow {
    pointer-events: auto;
    cursor: pointer;
    border-radius: .25em;
    width: 3.5em;
    position: relative;
    transition: var(--animation-ease);
}

.flickity-arrow.is--flipped {
    transform: scaleX(-1);
}

[data-flickity-control][disabled] {
    opacity: 0.2;
    pointer-events: none;
}

.scaling-bg {
    background-color: var(--color-light-tint);
    border-radius: .5em;
    position: absolute;
    inset: 0;
    transition: all var(--animation-grow), background-color var(--animation-ease);
}

.scaling-bg.is--dark {
    background-color: var(--color-dark);
}

.scaling-bg.is--small {
    border-radius: 0.25em;
}

@media (hover: hover) and (pointer: fine) {
    [data-hover-scaling-bg]:hover .scaling-bg {
        inset: calc(var(--grow) * -1);
        border-radius: 0.675em;
    }

    [data-hover-scaling-bg]:hover .scaling-bg.is--small {
        border-radius: 0.375em;
    }
}

.arrow-inside {
    border-radius: .25em;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform var(--animation-default-fast), color var(--animation-ease);
}

.arrow-inside.is--dark {
    color: var(--color-light);
}

.arrow-pixel {
    color: var(--color-ignore-dark);
    justify-content: center;
    align-items: center;
    width: 40%;
    height: 40%;
    display: flex;
    transform: rotate(-45deg);
}

.arrow-pixel.is--right {
    color: currentColor;
    transform: rotate(0);
}

.arrow-pixel__svg {
    width: 100%;
}

/* Flickity Collection */
.flickity-collection {
    width: 100%;
    position: relative;
}

.flickity-list {
    width: 100%;
    display: block;
}

.flickity-enabled {
    position: relative;
}

.flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

[data-flickity-status="active"] [data-flickity-list] {
    display: block;
}

.flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
    width: 100%;
}

[data-flickity-list] .flickity-viewport {
    overflow: hidden;
    width: 100%;
}

.flickity-enabled.is-draggable .flickity-viewport {
    cursor: grab;
    cursor: -webkit-grab;
}

.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform var(--animation-default);
    left: 0;
    top: 0;
}

.flickity-item {
    width: calc((100% / var(--flick-col)) - (var(--flick-gap) * ((var(--flick-col) - 1) / var(--flick-col))));
    margin-right: var(--flick-gap);
    flex-shrink: 0;
    position: relative;
    display: block;
}

/* Card Results */
.card-results__wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

[data-animation-target] {
    will-change: transform, opacity;
}

.card-results {
    color: var(--color-dark);
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    height: 22.5em;
    padding: 1em;
    text-decoration: none;
    display: flex;
    position: relative;
    box-sizing: border-box;
}

[data-ease] {
    transition: color var(--animation-ease), background-color var(--animation-ease), border-color var(--animation-ease);
}

.scaling-bg.is--large {
    background-color: white;
}

@media (hover: hover) and (pointer: fine) {
    [data-hover]:hover .scaling-bg.is--large {
        inset: calc(var(--grow-l) * -1);
    }
}

.card-results__start {
    width: 100%;
    padding: 1em;
    position: relative;
}

.card-results__logo-wrap {
    aspect-ratio: 3;
    height: 5em;
}

.logo {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}

.logo[data-logo-align-x="left"] {
    justify-content: flex-start;
}

.logo__inner {
    justify-content: center;
    align-items: center;
    width: 70%;
    max-height: 100%;
    display: flex;
}

.logo[data-logo-align-x="left"] .logo__inner {
    justify-content: flex-start;
}

.logo[data-logo-size="s"] .logo__inner {
    width: 60%;
}

.logo[data-logo-size="m"] .logo__inner {
    width: 70%;
}

.logo[data-logo-size="l"] .logo__inner {
    width: 85%;
}

.logo[data-logo-size="xl"] .logo__inner {
    width: 100%;
}

.logo__img {
    object-fit: contain;
    width: 100%;
    position: relative;
    transition: filter var(--animation-ease);
    filter: brightness(0) saturate(100%) invert(21%) sepia(1%) saturate(117%) hue-rotate(312deg) brightness(76%) contrast(109%);
}

.card-results__end {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex: 1;
    align-items: flex-end;
    width: 100%;
    display: flex;
    position: relative;
}

.card-results__end-inner {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    width: 100%;
    display: flex;
    position: relative;
}

.card-results__result {
    background-color: var(--color-light);
    border-radius: .25em;
    flex-flow: column;
    flex-grow: 1;
    justify-content: center;
    width: 100%;
    padding-left: 1em;
    padding-right: 1em;
    display: flex;
    transition: background-color var(--animation-ease);
}

.h5 {
    font-family: Helvetica Now Display, Arial, sans-serif;
    font-size: 2vw;
    /* VW ile responsive */
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
    padding: 0;
}

.p-s {
    font-weight: 500;
    font-size: 1.25vw;
    /* VW ile responsive */
    line-height: 1.5;
    letter-spacing: -0.02em;
    margin: 0;
    padding: 0;
}

.is--1-line {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    min-height: calc(1em * 1.6);
}

.card-results__arrow-box {
    pointer-events: none;
    border-radius: .25em;
    flex-grow: 1;
    flex-shrink: 0;
    width: 6.25em;
    margin-left: -7.25em;
    position: relative;
    overflow: hidden;
}

@media screen and (min-width: 992px) {
    .card-results .card-results__arrow-box {
        transition: margin var(--animation-default-fast);
    }

    .card-results:hover .card-results__arrow-box {
        transition: margin var(--animation-grow);
        margin-left: 0;
    }
}

.arrow-inside.is--primary {
    background-color: var(--color-primary);
}

@media screen and (min-width: 992px) {
    .card-results .arrow-inside {
        transform: translateX(calc(100% + 1em)) rotate(0.001deg);
    }

    .card-results:hover .arrow-inside {
        transform: translateX(0%) rotate(0.001deg);
    }
}

/* Gereksiz inline style overrides kaldırıldı */

/* Responsive Design */
@media (max-width: 768px) {
    .home-results__row-title {
        flex-direction: column;
        gap: 2em;
        align-items: flex-start;
    }

    .h3 {
        font-size: 3em;
    }

    .home-results__col-text-inner {
        max-width: 100%;
    }

    .flickity-arrows {
        position: relative;
        justify-content: center;
        margin-top: 2em;
    }

    .card-results {
        height: auto;
        min-height: 20em;
    }

    .pixel-group__wrap.is--home-results {
        display: none;
    }
}

@media (max-width: 480px) {
    .h3 {
        font-size: 2.5em;
    }

    .home-results__col-text-inner p {
        font-size: 1.2em;
    }

    .btn__span {
        font-size: 1.1em;
    }
}





.w--current {
    color: var(--color-dark) !important;
}

.nav-bar__logo-svg text {
    font-family: 'Inter', sans-serif;
}

.style-fMhOV {
    opacity: 1 !important;
}

/* Dapper Premium Dropdown Animations - Hover ve Click */
@media screen and (min-width: 992px) {
    .nav-bar__link[data-dropdown-status="active"] .nav-dropdown {
        transition: all var(--animation-default-fast) 0s;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .nav-bar__link[data-dropdown-status="active"] .nav-dropdown__overflow {
        transition: transform var(--animation-grow);
        transform: translateY(0em) rotate(0.001deg);
    }

    .nav-bar__link[data-dropdown-status="active"] .nav-bar__link-chevron-svg {
        transform: rotate(180deg);
    }

    /* Hover ile dropdown açılma */
    .nav-bar__link:hover .nav-dropdown {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all !important;
    }

    .nav-bar__link:hover .nav-dropdown__overflow {
        transform: translateY(0em) rotate(0.001deg) !important;
    }

    .nav-bar__link:hover .nav-bar__link-chevron-svg {
        transform: rotate(180deg) !important;
    }
}

/* Premium Arrow Animations */
[data-hover][data-arrow="diagonal"] .arrow .arrow__bg {
    transition: all var(--animation-default), background-color var(--animation-ease);
    left: 15%;
    top: 85%;
}

[data-hover][data-arrow="diagonal"] .arrow .arrow__box {
    transform: translate(0%, 0%) rotate(-135deg);
}

[data-hover][data-arrow="diagonal"] .arrow .arrow__box.is--duplicate {
    left: -100%;
    top: 100%;
}

@media (hover: hover) and (pointer: fine) {
    [data-hover][data-arrow="diagonal"]:hover .arrow .arrow__bg {
        left: calc(var(--grow) * -1);
        top: calc(var(--grow) * -1);
        width: calc(100% + (var(--grow) * 2));
        height: calc(100% + (var(--grow) * 2));
    }

    [data-hover][data-arrow="diagonal"]:hover .arrow .arrow__box {
        transform: translate(100%, -100%) rotate(-135deg);
    }
}

/* Navigation Toggle */
[data-navigation-toggle="toggle"] {
    cursor: pointer;
}

/* Responsive Header */
@media (max-width: 991px) {
    .snipcss-Y8dLM {
        padding: 0.5rem;
    }

    .nav-bar__hamburger {
        display: flex;
    }
}

/* Dapper Premium Header Bar Styles */
.snipcss-Y8dLM {
    width: 100%;
    max-width: 100vw;
    /* Sınır kaldırıldı */
    padding: 0;
}

.nav-bar {
    font-family: Helvetica Now Text, Arial, sans-serif;
    width: 100%;
    pointer-events: auto;
    justify-content: space-between;
    align-items: center;
    padding: .4em;
    display: flex;
    position: relative;
}

/* Services Overview - Dapper Premium Section */
.services-overview {
    padding: 6em 0;
    background-color: var(--color-light-tint);
}

/* Services Overview için full width container */
.services-overview .container {
    max-width: 100%;
    width: 100%;
    padding: 0 3rem;
}

@media (min-width: 1200px) {
    .services-overview .container {
        max-width: 100%;
        padding: 0 4rem;
    }
}

.services-overview__row-text {
    display: flex;
}

.services-overview__col-text {
    grid-column-gap: var(--gap);
    grid-row-gap: var(--gap);
    flex-flow: column;
    max-width: 56em;
    display: flex;
}

.services-overview__col-eyebrow {
    flex-shrink: 0;
    width: calc(33.333% + .5em);
}

.services-overview__col-text-p {
    max-width: 38em;
}

.services-overview__row-tiles {
    padding-top: 5em;
    display: flex;
}

.services-overview__col-image {
    flex-shrink: 0;
    width: calc(33.333% + .5em);
    position: relative;
}

.services-overview__image {
    border-radius: var(--border-radius-s);
    width: 28em;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.services-overview__image-before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(116, 245, 161, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.pixel-group__wrap.is--services-overview {
    top: 0;
    left: 0;
    transform: translate(-25%, -25%);
}

.services-overview__col-tiles {
    grid-column-gap: var(--gap);
    grid-row-gap: var(--gap);
    flex-flow: column;
    width: 100%;
    max-width: 68em;
    display: flex;
}

.growing-tiles {
    grid-column-gap: 0.025em;
    grid-row-gap: 0.025em;
    flex-flow: column;
    width: 100%;
    height: 35em;
    display: flex;
}

.growing-tiles__row {
    grid-column-gap: 0.125em;
    grid-row-gap: 0.125em;
    width: 100%;
    height: 100%;
    display: flex;
}

@media screen and (min-width: 992px) {
    .growing-tiles .growing-tiles__row {
        transition: all var(--animation-grow);
        height: 100%;
    }

    .growing-tiles:hover .growing-tiles__row:not(:hover) {
        height: 90%;
        opacity: 0.7;
        filter: blur(1px);
    }

    .growing-tiles .growing-tiles__row:hover {
        height: 130%;
        z-index: 10;
        position: relative;
    }
}

.growing-tiles__col {
    flex-grow: 1;
    width: 100%;
    height: 100%;
    min-height: 12.5em;
}

@media screen and (min-width: 992px) {
    .growing-tiles .growing-tiles__col {
        transition: all var(--animation-grow);
        width: 100%;
    }

    .growing-tiles__row:hover .growing-tiles__col:not(:hover) {
        width: 85%;
        opacity: 0.6;
        filter: blur(1px);
    }

    .growing-tiles .growing-tiles__col:hover {
        width: 140%;
        z-index: 20;
        position: relative;
    }
}

.growing-tile {
    grid-column-gap: .75em;
    grid-row-gap: .75em;
    background-color: white;
    color: var(--color-dark);
    border-radius: .5em;
    flex-flow: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 1.5em;
    text-decoration: none;
    display: flex;
    position: relative;
}

.growing-tile__start {
    padding-right: 3em;
    position: relative;
}

.growing-tile__end {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-flow: column;
    display: flex;
    position: relative;
}

.growing-tile__text {
    flex-grow: 1;
    max-width: 19em;
}

@media screen and (min-width: 992px) {
    .growing-tiles .growing-tile__end .growing-tile__text {
        transition: all var(--animation-grow), color var(--animation-ease);
        opacity: 0;
        visibility: hidden;
        transform: translateY(0.5em) rotate(0.001deg);
    }

    .growing-tiles .growing-tiles__col:hover .growing-tile__end .growing-tile__text {
        opacity: 1;
        visibility: visible;
        transform: translateY(0em) rotate(0.001deg);
    }
}

.growing-tile__arrow {
    pointer-events: none;
    flex-shrink: 0;
    justify-content: flex-end;
    width: 100%;
    display: flex;
    position: absolute;
    bottom: 0;
}

/* Growing Tiles Section */
.growing-tiles-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.growing-tiles-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Services Overview Responsive */
@media (max-width: 768px) {
    .services-overview__row-text {
        flex-direction: column;
        gap: 2em;
    }

    .services-overview__col-eyebrow {
        width: 100%;
    }

    .services-overview__row-tiles {
        flex-direction: column;
        gap: 3em;
        padding-top: 3em;
    }

    .services-overview__col-image {
        width: 100%;
        order: 2;
    }

    .services-overview__image {
        width: 100%;
        height: 250px;
    }

    .services-overview__col-tiles {
        width: 100%;
        order: 1;
    }

    .growing-tiles {
        height: auto;
        gap: 1em;
    }

    .growing-tiles__row {
        flex-direction: column;
        height: auto;
        gap: 1em;
    }

    .growing-tiles__col {
        width: 100%;
        min-height: 8em;
    }
}

/* Gereksiz inline style overrides kaldırıldı */



/* Gereksiz inline style overrides kaldırıldı */

/* Compare Section - Traditional vs Modern B2B Marketing */
/* Font tekrarları kaldırıldı - yukarıda tanımlandı */

/* CSS Variables tekrarı kaldırıldı - yukarıda tanımlandı */

/* Base Styles */
* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body {
    color: var(--color-dark);
    font-family: Helvetica Now Text, Arial, sans-serif;
    font-size: var(--size-font);
    line-height: 1.3;
    font-weight: 500;
    background-color: var(--color-light);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    transition: color var(--animation-ease), background-color var(--animation-ease);
    width: 100%;
    min-height: 100%;
    position: relative;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-family: sans-serif;
    height: 100%;
    scrollbar-width: none;
    scroll-behavior: initial;
    width: 100%;
    min-height: 100%;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

[data-ease-bg] {
    transition: background-color var(--animation-ease);
}

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

:selection {
    background-color: var(--color-primary);
    color: var(--color-ignore-dark);
    text-shadow: none;
}

body ::-webkit-scrollbar,
body:-webkit-scrollbar {
    display: none;
}

body ::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

/* Compare Section */
.compare-section {
    padding: var(--section-padding) 0;
}

.compare__content {
    padding: var(--section-padding-three-quaters) var(--gap) var(--section-padding-half);
    border-radius: var(--border-radius-l);
    background-color: var(--color-light-tint);
    flex-flow: column;
    justify-content: center;
    position: relative;
    display: flex;
}

.compare__content-inner {
    flex-flow: column;
    align-items: center;
    max-width: 72.5em;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: relative;
}

.compare__row-eyebrow {
    padding-bottom: var(--gap-eyebrow);
    justify-content: center;
    display: flex;
}

.compare__row-title {
    text-align: center;
    flex-flow: column;
    align-items: center;
    display: flex;
}

.compare__row-text {
    padding-top: var(--gap);
    text-align: center;
    max-width: 42em;
    padding-bottom: 5em;
}

.compare__row-list {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    width: 100%;
    display: flex;
}

.compare__list {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-flow: column;
    width: 100%;
    display: flex;
}

.compare__item {
    grid-column-gap: 1.25em;
    grid-row-gap: 1.25em;
    background-color: var(--color-light);
    border-radius: .5em;
    align-items: center;
    padding-left: 1.25em;
    padding-right: 1.75em;
    display: flex;
}

.compare__icon {
    background-color: var(--color-primary);
    color: var(--color-ignore-dark);
    border-radius: .5em;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 3.5em;
    height: 3.5em;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    display: flex;
    position: relative;
}

.compare__icon.is--dark {
    background-color: var(--color-dark);
    color: var(--color-light);
}

.compare__icon-bar {
    background-color: currentColor;
    width: 1em;
    height: .1875em;
}

.compare__icon-bar.is--duplicate {
    position: absolute;
    transform: rotate(-90deg);
}

.compare__p {
    line-height: 1.25;
}

/* Basit pixel animasyonları - karmaşık olanlar kaldırıldı */
.pixel-grid-pixel {
    background-color: var(--color-primary);
    opacity: 0.3;
    width: 25%;
}

.before__100 {
    padding-top: 100%;
}

/* Eyebrow Component */
.eyebrow {
    grid-column-gap: .75em;
    grid-row-gap: .75em;
    align-items: center;
    display: flex;
    position: relative;
}

.eyebrow__svg {
    color: var(--color-primary);
    width: 1.625em;
}

.eyebrow__p {
    letter-spacing: -.01em;
    font-family: Helvetica Now Display, Arial, sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.2;
}

/* Typography */
:where(h1, h2, h3, h4, h5) {
    font-family: Helvetica Now Display, Arial, sans-serif;
    font-weight: 700;
    padding: 0;
    margin: 0;
}

h2 {
    font-size: 6.5em;
    line-height: 1;
    letter-spacing: -0.03em;
}

.h3 {
    font-size: 5em;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 5em;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.h5 {
    font-family: Helvetica Now Display, Arial, sans-serif;
    font-size: 2em;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.h5.is--center {
    text-align: center;
    height: 2.25em;
}

p {
    margin-top: 0;
    margin-bottom: 10px;
    padding: 0;
    margin: 0;
    font-size: 1.375em;
    line-height: 1.6;
    letter-spacing: -0.02em;
    font-weight: 500;
    font-style: normal;
}

em {
    padding: 0;
    margin: 0;
}

:where(h1, h2, h3, h4, h5, h6) em {
    font-weight: 500;
    font-family: Ivy Presto Headline, serif;
    font-style: italic;
    letter-spacing: 0em;
    font-size: 0.975em;
    line-height: 1;
}

svg {
    max-width: none;
    height: auto;
    box-sizing: border-box;
    vertical-align: middle;
}

svg:not(:root) {
    overflow: hidden;
}

/* Animation Targets */
[data-animation-target] {
    will-change: transform, opacity;
}

[data-ease] {
    transition: color var(--animation-ease), background-color var(--animation-ease), border-color var(--animation-ease);
}

/* Gereksiz inline style overrides kaldırıldı */

/* Responsive Design */
@media (max-width: 768px) {
    .compare__row-list {
        flex-direction: column;
        gap: 2em;
    }

    .compare__content {
        padding: var(--section-padding-half) var(--gap);
    }

    .h3 {
        font-size: 3em;
    }

    .h5 {
        font-size: 1.5em;
    }

    p {
        font-size: 1.125em;
    }

    .pixel-group__wrap {
        display: none;
    }
}

@media (hover: hover) and (pointer: fine) {
    :root {
        --vh: 1vh;
    }
}

/* Premium Footer Styles */
.footer-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-info__tile {
    padding-top: calc(var(--container-padding) * 1.5);
    padding-right: calc(var(--container-padding) * 1.2);
    padding-left: calc(var(--container-padding) * 1.2);
    padding-bottom: calc(var(--container-padding) * 1.2);
    border-radius: calc(var(--border-radius-m) * 1.5);
    background-color: var(--color-dark-tint);
    flex-flow: column;
    width: 94%;
    margin: 0 auto;
    display: flex;
    position: relative;
    border-radius: 20px;
}

.footer-info__row-top {
    justify-content: space-between;
    min-height: 24em;
    display: flex;
    position: relative;
    padding-bottom: calc(var(--gap-l) * 1.5);
}

.footer-info__row-bottom {
    padding-top: calc(var(--gap-l) * 1.5);
    padding-bottom: calc(var(--gap-l) * 1.5);
    justify-content: space-between;
    display: flex;
}

.footer-info__col-contact {
    grid-column-gap: 2.5em;
    grid-row-gap: 2.5em;
    justify-content: space-between;
    width: 42em;
    display: flex;
}

.footer-info__col-sitemap {
    padding-right: 2.5em;
    padding-bottom: calc(var(--gap-l) * 1.2);
    justify-content: space-between;
    width: 72%;
    display: flex;
}

.footer-info__col-logo {
    flex-flow: column;
    width: 39em;
    display: flex;
    position: absolute;
    bottom: 0;
    overflow: hidden;
}

.footer-info__col-copyright {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
    justify-content: flex-start;
    align-items: flex-start;
    width: 39em;
    display: flex;
    flex-direction: column;
}

.footer-info__copyright-text {
    padding-top: 1.5em;
}

.footer-info__col-links {
    justify-content: space-between;
    align-items: center;
    width: 52.5%;
    display: flex;
}

.footer-info__single-contact {
    flex-flow: column;
    align-items: flex-start;
    display: flex;
}

.footer-info__single-contact-text {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 1.5em;
    display: flex;
}

.footer-info__single-sitemap {
    flex-flow: column;
    align-items: flex-start;
    display: flex;
}

.footer-info__single-sitemap-links {
    grid-column-gap: .75em;
    grid-row-gap: .75em;
    flex-flow: column;
    align-items: flex-start;
    padding-top: 2.5em;
    display: flex;
}

.footer-info__border-bottom {
    z-index: 5;
    background-color: var(--color-border-flipped);
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer-info__legal-collection {
    display: flex;
}

.footer-info__legal-list {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
    justify-content: flex-start;
    display: flex;
}

.footer-info__legal-item {
    position: relative;
}

.footer-info__copyright {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
    align-items: center;
    display: flex;
}

.footer-info__socials {
    grid-column-gap: .5em;
    grid-row-gap: .5em;
    display: flex;
}

/* Footer Typography */
.footer-info__h4 {
    font-size: 1.375em;
    line-height: 1;
    color: var(--color-light);
    transition: color var(--animation-ease);
}

.footer-info__p {
    opacity: .7;
    font-size: 1em;
    font-weight: 500;
    color: var(--color-light);
    transition: color var(--animation-ease);
}

.footer-info__p.is--copyright {
    opacity: .35;
}

/* Footer Logo */
.footer-logo {
    color: var(--color-light);
    align-items: center;
    display: flex;
    position: relative;
    transition: color var(--animation-ease);
}

.footer-logo__wrap {
    font-size: 2.5em;
    position: relative;
    top: 0;
    left: 0;
}

.footer-logo__svg {
    width: 10.3875em;
}

.footer-logo__before {
    padding-top: 100%;
}

/* Dapper Flower Animation */
.dapper-flower {
    opacity: 0;
    width: 9em;
    display: flex;
    position: relative;
}

.dapper-flower.is--footer-logo {
    width: 24.08%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1 !important;
}

.dapper-flower__before {
    padding-top: 75%;
}

.dapper-flower__leaf-s {
    transform-origin: 100% 100%;
    width: 42.9%;
    position: absolute;
    top: 0;
    left: 0;
}

.dapper-flower__leaf-l {
    transform-origin: 0 100%;
    width: 57.25%;
    position: absolute;
    bottom: 0;
    right: 0;
}

/* Underline Links */
.underline-link {
    opacity: .7;
    color: var(--color-light);
    white-space: nowrap;
    font-size: 1em;
    font-weight: 500;
    line-height: 1.6;
    text-decoration: none;
    position: relative;
    transition: var(--animation-ease);
}

.underline-link.is--big {
    white-space: nowrap;
    font-size: 1.125em;
    font-weight: 500;
}

.underline-link:before {
    content: "";
    position: absolute;
    bottom: 0em;
    left: 0;
    width: 100%;
    height: 0.0625em;
    background-color: currentColor;
    transition: transform var(--animation-default);
    transform-origin: right;
    transform: scaleX(0) rotate(0.001deg);
}

.underline-link:hover:before {
    transform-origin: left;
    transform: scaleX(1) rotate(0.001deg);
}

.underline-link:hover {
    opacity: 1;
}

/* Social Links */
.social-link {
    color: var(--color-light);
    justify-content: center;
    align-items: center;
    width: 4em;
    padding: 1em;
    display: flex;
    position: relative;
    transition: transform var(--animation-grow), opacity var(--animation-grow), color var(--animation-ease);
    transform: scale(1) rotate(0.001deg);
}

.footer-info__socials:has(.social-link:hover) .social-link {
    transform: scale(0.925) rotate(0.001deg);
}

.footer-info__socials:has(.social-link:hover) .social-link:hover {
    transform: scale(1) rotate(0.001deg);
}

.social-link__svg-wrap {
    width: 1.5em;
    position: relative;
}

.social-link:hover .scaling-bg {
    background-color: var(--color-dark-tint-hover);
}

.scaling-bg.is--small.is--social-link {
    background-color: var(--color-dark);
}

/* Border Transitions */
[data-ease-border] {
    transition: border-color var(--animation-ease);
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-info__col-contact {
        width: 35em;
    }

    .footer-info__col-logo {
        width: 35em;
    }

    .footer-info__col-copyright {
        width: 35em;
    }
}

@media (max-width: 992px) {
    .footer-info__row-top {
        flex-direction: column;
        min-height: auto;
        gap: 3em;
    }

    .footer-info__col-contact {
        width: 100%;
        flex-direction: column;
        gap: 2em;
    }

    .footer-info__col-sitemap {
        width: 100%;
        padding-right: 0;
        flex-wrap: wrap;
        gap: 2em;
    }

    .footer-info__col-logo {
        position: static;
        width: 100%;
        order: -1;
    }

    .footer-info__row-bottom {
        flex-direction: column;
        gap: 2em;
    }

    .footer-info__col-copyright {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 1em;
    }

    .footer-info__col-links {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 2em;
    }

    .footer-info__copyright {
        flex-direction: column;
        align-items: flex-start;
        gap: 1em;
    }
}

@media (max-width: 768px) {
    .footer-info__tile {
        padding: 2em 1.5em;
    }

    .footer-info__col-sitemap {
        flex-direction: column;
    }

    .footer-info__single-sitemap {
        width: 100%;
    }

    .footer-info__legal-list {
        flex-direction: column;
        gap: 1em;
    }

    .footer-logo__wrap {
        font-size: 2.5em;
    }

    .footer-info__h4 {
        font-size: 1.25em;
        line-height: 1.3;
        width: 100%;
        word-break: break-word;
        margin-bottom: 0.5em;
    }
    .footer-info__p {
        font-size: 1.1em;
        line-height: 1.5;
        width: 100%;
        word-break: break-word;
    }
    .footer-info__single-sitemap-links {
        width: 100%;
        gap: 0.7em;
    }
    .underline-link.is--big {
        font-size: 1.1em;
        line-height: 1.5;
        width: 100%;
        display: block;
        padding: 0.2em 0;
        word-break: break-word;
    }
    .footer-info__single-sitemap {
        width: 100%;
    }
}

/* Gereksiz inline style overrides kaldırıldı */

/* Responsive Footer Styles */
@media (max-width: 768px) {
    .footer-container {
        padding: 1em 2%;
    }

    .footer-info__tile {
        padding: 2em 1.5em;
        width: 98%;
        border-radius: 1em;
    }

    .footer-info__row-top {
        flex-direction: column;
        min-height: auto;
        gap: 2em;
        padding-bottom: 2em;
    }

    .footer-info__col-contact {
        width: 100%;
        flex-direction: column;
        gap: 1.5em;
    }

    .footer-info__col-sitemap {
        width: 100%;
        flex-direction: column;
        gap: 2em;
        padding-right: 0;
    }

    .footer-info__single-sitemap {
        margin-bottom: 1.5em;
    }

    .footer-info__legal-list {
        flex-direction: column;
        gap: 1em;
    }

    .footer-logo__wrap {
        font-size: 2em;
    }

    .footer-info__row-bottom {
        flex-direction: column;
        gap: 2em;
    }

    .footer-info__col-copyright {
        width: 100%;
    }

    .footer-info__col-links {
        width: 100%;
    }
}

/* Hamburger menü CSS */
.hamburger {
    background-color: var(--color-primary);
    cursor: pointer;
    border-radius: .25em;
    width: 2.5em;
    height: 2.5em;
    position: relative;
    overflow: hidden;
}

.hamburger__bar {
    background-color: var(--color-dark);
    width: 1.125em;
    height: .125em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0.001deg);
    transition: all var(--animation-default), background-color var(--animation-ease);
}

.hamburger__bar.is--top {
    transform: translate(-50%, calc(-50% - 0.3125em)) rotate(0.001deg);
}

.hamburger__bar.is--bottom {
    transform: translate(-50%, calc(-50% + 0.3125em)) rotate(0.001deg);
}

[data-navigation-status="active"] .hamburger__bar {
    transform: translate(-50%, -50%) scaleY(0) rotate(0.001deg);
}

[data-navigation-status="active"] .hamburger__bar.is--top {
    transform: translate(-50%, -50%) rotate(45deg);
}

[data-navigation-status="active"] .hamburger__bar.is--bottom {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Mobil menü */

/* Flickity Collection */
.flickity-collection {
    width: 100%;
    position: relative;
}

.flickity-list {
    width: 100%;
    display: block;
}

.flickity-enabled {
    position: relative;
}

.flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

[data-flickity-status="active"] [data-flickity-list] {
    display: block;
}

.flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
    width: 100%;
}

[data-flickity-list] .flickity-viewport {
    overflow: hidden;
    width: 100%;
}

.flickity-enabled.is-draggable .flickity-viewport {
    cursor: grab;
    cursor: -webkit-grab;
}

.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform var(--animation-default);
    left: 0;
    top: 0;
}

.flickity-item {
    width: calc((100% / var(--flick-col)) - (var(--flick-gap) * ((var(--flick-col) - 1) / var(--flick-col))));
    margin-right: var(--flick-gap);
    flex-shrink: 0;
    position: relative;
    display: block;
}

/* Flickity Height Fix */
.flickity-slider-group {
    min-height: 25em;
}

.flickity-collection {
    min-height: 25em;
}

.flickity-list {
    min-height: 25em;
}

.flickity-viewport {
    min-height: 25em;
}

/* Responsive Flickity */
@media (max-width: 768px) {
    .flickity-slider-group {
        min-height: 20em;
    }

    .flickity-collection {
        min-height: 20em;
    }

    .flickity-list {
        min-height: 20em;
    }

    .flickity-viewport {
        min-height: 20em;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* ABD PAZARINA GİRİŞ Mega Menu Styles */
.nav-dropdown--mega {
    width: 100vw;
    max-width: 83.33vw;
    left: 50%;
    transform: translateX(-50%);
}

.nav-dropdown__mega-grid {
    padding: 2rem;
}

.nav-dropdown__mega-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.nav-dropdown__mega-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.nav-dropdown__mega-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

.nav-dropdown__mega-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* 3 Kolon Grid Layout Styles - Kategoriler yan yana dizilir */

/* Tablet responsive - 2 kolon */
@media (min-width: 769px) and (max-width: 1199px) {
    .nav-dropdown__mega-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

.nav-dropdown__mega-category {
    background: #f8f9fa;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-dropdown__mega-category-header {
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.nav-dropdown__mega-category-title {
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-dropdown__mega-category-title:hover {
    color: #00d084;
}

.nav-dropdown__mega-category-title::before {
    content: '→';
    color: #00d084;
    font-weight: 700;
}

.nav-dropdown__mega-category-desc {
    font-size: 0.75rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.3;
}

.nav-dropdown__mega-category-items {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-dropdown__mega-item {
    display: block;
    padding: 0.5rem 0.75rem;
    background: white;
    border-radius: 0.25rem;
    text-decoration: none;
    color: #495057;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
    font-size: 0.8rem;
    line-height: 1.3;
}

.nav-dropdown__mega-item:hover {
    background: #e9ecef;
    border-color: #00d084;
    color: #212529;
}

.nav-dropdown__mega-item--more {
    background: #00d084;
    color: white;
    border-color: #00d084;
    font-weight: 600;
    text-align: center;
}

.nav-dropdown__mega-item--more:hover {
    background: #00b572;
    color: white;
    border-color: #00b572;
}

.nav-dropdown__mega-item-title {
    font-size: 0.8rem;
    font-weight: 500;
}

.nav-dropdown__mega-item-arrow {
    width: 0.83vw;
    height: 0.83vw;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.nav-dropdown__mega-item:hover .nav-dropdown__mega-item-arrow {
    opacity: 1;
}

/* Yeni mega menü yapısı için stiller */
.nav-dropdown__mega-topic {
    margin-bottom: 1rem;
}

.nav-dropdown__mega-topic-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    text-decoration: none;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    transition: color 0.2s ease;
}

.nav-dropdown__mega-topic-title:hover {
    color: #00d084;
}

.nav-dropdown__mega-subtopics {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-left: 0.5rem;
}

.nav-dropdown__mega-subtopic {
    display: block;
    font-size: 0.75rem;
    color: #6c757d;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
    line-height: 1.3;
}

.nav-dropdown__mega-subtopic:hover {
    background: #f8f9fa;
    color: #495057;
    transform: translateX(0.25rem);
}



/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-dropdown--mega {
        position: static !important;
        width: 100% !important;
        max-width: none !important;
        left: 0 !important;
        transform: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .nav-dropdown__mega-grid {
        padding: 1rem;
        background: white;
        border-radius: 0.5rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-dropdown__mega-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
    }

    /* Mobile'da tüm kategoriler tek sütunda */

    .nav-dropdown__mega-category {
        padding: 1rem;
    }

    .nav-dropdown__mega-title {
        font-size: 1.2rem;
    }

    .nav-dropdown__mega-subtitle {
        font-size: 0.8rem;
    }

    .nav-dropdown__mega-category-title {
        font-size: 0.9rem;
    }

    .nav-dropdown__mega-topic-title {
        font-size: 0.8rem;
    }

    .nav-dropdown__mega-subtopic {
        font-size: 0.7rem;
    }
}

/* Header responsive font sizes - Minimal */
@media (max-width: 1200px) {
    .nav-bar__logo-svg text {
        font-size: 1.4vw !important;
        /* Logo daha da küçültüldü */
    }

    .nav-bar__logo-svg {
        height: 2.2vw !important;
        min-height: 1.8em !important;
        max-height: 2.8em !important;
    }

    .nav-bar__lang-switcher {
        min-width: 2.5rem;
        padding: 0.2rem 0.35rem;
        font-size: 0.7rem;
    }

    .nav-bar__lang-link {
        font-size: 0.65rem !important;
        padding: 0.1rem 0.25rem;
    }

    .btn {
        height: 1.6em !important;
        padding: 0 0.4em !important;
        font-size: 0.6em !important;
        min-width: 4rem;
        /* Minimal genişlik */
    }

    .btn__span {
        font-size: 0.6em !important;
        white-space: nowrap;
    }

    .arrow {
        width: 1em;
        height: 1em;
    }
}

@media (max-width: 992px) {
    .nav-bar__logo-svg text {
        font-size: 1.5vw !important;
        /* Tablet için minimal */
    }

    .nav-bar__logo-svg {
        height: 2vw !important;
        min-height: 1.6em !important;
        max-height: 2.5em !important;
    }

    .nav-bar__lang-switcher {
        min-width: 2.2rem;
        padding: 0.15rem 0.3rem;
        font-size: 0.65rem;
    }

    .nav-bar__lang-link {
        font-size: 0.6rem !important;
        padding: 0.08rem 0.2rem;
    }

    .btn {
        height: 1.5em !important;
        padding: 0 0.35em !important;
        font-size: 0.55em !important;
        min-width: 3.5rem;
    }

    .btn__span {
        font-size: 0.55em !important;
    }

    .arrow {
        width: 0.9em;
        height: 0.9em;
    }

    /* Nav dropdown boyutları tablet için */
    .nav-dropdown .growing-tiles {
        min-height: 35vw !important;
        /* Tablet için daha büyük */
        max-height: 40vw !important;
    }

    .nav-dropdown .growing-tiles__row {
        min-height: 16vw !important;
    }

    .nav-dropdown .growing-tile__start .growing-tile__text h3 {
        font-size: 1.5vw !important;
        /* Tablet için büyük yazı */
    }

    .nav-dropdown .growing-tile__end .growing-tile__text p {
        font-size: 1.2vw !important;
    }
}

@media (max-width: 768px) {
    .nav-bar__logo-svg text {
        font-size: 1.8vw !important;
        /* Mobil için minimal */
    }

    .nav-bar__logo-svg {
        height: 1.8vw !important;
        min-height: 1.5em !important;
        max-height: 2.2em !important;
    }

    .nav-bar__lang-switcher {
        min-width: 2rem;
        padding: 0.1rem 0.25rem;
        font-size: 0.6rem;
    }

    .nav-bar__lang-link {
        font-size: 0.55rem !important;
        padding: 0.05rem 0.15rem;
    }

    .btn {
        height: 1.4em !important;
        padding: 0 0.3em !important;
        font-size: 0.5em !important;
        min-width: 3rem;
    }

    .btn__span {
        font-size: 0.5em !important;
    }

    .arrow {
        width: 0.8em;
        height: 0.8em;
    }

    /* Nav dropdown mobil için */
    .nav-dropdown .growing-tiles {
        min-height: 50vw !important;
        /* Mobil için çok büyük */
        max-height: 60vw !important;
    }

    .nav-dropdown .growing-tiles__row {
        min-height: 24vw !important;
    }

    .nav-dropdown .growing-tile__start .growing-tile__text h3 {
        font-size: 2.5vw !important;
        /* Mobil için büyük yazı */
    }

    .nav-dropdown .growing-tile__end .growing-tile__text p {
        font-size: 2vw !important;
    }
}

/* Events Section */
.events-section {
    padding: 60px 0;
}

.events-section__row-eyebrow {
    margin-bottom: 30px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 320px));
    gap: 25px;
    margin-bottom: 30px;
    justify-content: center;
}

.event-card {
    display: flex;
    flex-direction: column;
    background: var(--color-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
    max-width: 320px;
}

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

.event-image-container {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background: var(--color-primary);
    color: #fff;
    text-align: center;
    border-radius: 8px;
}

.event-day {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 12px;
    text-transform: uppercase;
}

.event-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-title {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--color-dark);
    font-weight: 600;
}

.event-description {
    font-size: 14px;
    color: var(--color-dark-tint);
    margin-bottom: 12px;
    line-height: 1.4;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--color-dark-tint);
    margin-top: auto;
}

.events-section__cta {
    text-align: center;
    margin-top: 20px;
}

.no-events {
    text-align: center;
    padding: 30px;
    background: var(--color-light);
    border-radius: 12px;
}

/* Buton stillerini düzenleme */
.events-section__cta .btn,
.publications-cta .btn,
.compare-section .btn,
.growing-tiles-section .btn,
section .mt-6 .btn {
    margin: 0 auto;
    display: inline-block;
    max-width: 280px;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

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

    .event-card {
        max-width: 100%;
    }
}

/* Page Hero Styles */
.page-hero {
    position: relative;
    width: 100%;
    height: 40vh;
    margin-top: 6rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.page-hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.page-hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .page-hero {
        height: 35vh;
        margin-top: 5rem;
    }

    .page-hero__title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 30vh;
        margin-top: 4rem;
    }

    .page-hero__title {
        font-size: 1.8rem;
    }
}

/* Existing styles... */

/* Services Grid Styles */
.services-grid__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Last 2 cards center alignment */
.services-grid__container .service-card:nth-last-child(2),
.services-grid__container .service-card:nth-last-child(1) {
    grid-column-start: auto;
}

/* When we have exactly 10 cards, center the last 2 */
.services-grid__container .service-card:nth-child(9) {
    grid-column-start: 2;
}

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

    /* Center last 2 cards on 4-column grid */
    .services-grid__container .service-card:nth-child(9) {
        grid-column-start: 2;
    }

    .services-grid__container .service-card:nth-child(10) {
        grid-column-start: 3;
    }
}

@media (max-width: 768px) {
    .services-grid__container {
        grid-template-columns: 1fr;
    }

    /* Reset positioning on mobile */
    .services-grid__container .service-card:nth-child(9),
    .services-grid__container .service-card:nth-child(10) {
        grid-column-start: auto;
    }
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 208, 132, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d084, #74f5a1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 208, 132, 0.15);
    border-color: rgba(0, 208, 132, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d084, #74f5a1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-card__icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card:hover .service-card__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 208, 132, 0.3);
}

.service-card__content {
    flex: 1;
}

.service-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-card:hover .service-card__title {
    color: #00d084;
}

.service-card__description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card__features li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.service-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d084;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-card__features li::before {
    transform: scale(1.2);
}

.service-card:hover .service-card__features li {
    color: #333;
    transform: translateX(4px);
}

/* Services Overview Header Styles */
.services-overview__header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-overview__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-overview__description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #00d084, #74f5a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Compare Section Styles */
.compare-section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.compare-section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.compare-section__description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.compare-section__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.compare-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 208, 132, 0.1);
}

.compare-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 208, 132, 0.12);
    border-color: rgba(0, 208, 132, 0.2);
}

.compare-item__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d084, #74f5a1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.compare-item__icon i {
    font-size: 1.25rem;
    color: white;
}

.compare-item:hover .compare-item__icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 208, 132, 0.3);
}

.compare-item__content {
    flex: 1;
}

.compare-item__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.compare-item:hover .compare-item__title {
    color: #00d084;
}

.compare-item__description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Home Results Stats */
.home-results__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 208, 132, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 208, 132, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 208, 132, 0.1);
    border-color: rgba(0, 208, 132, 0.2);
    transform: translateY(-2px);
}

.stat-item__number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d084, #74f5a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item__label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid__container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .service-card__title {
        font-size: 1.1rem;
    }

    .services-overview__header {
        margin-bottom: 2rem;
    }

    .compare-section__content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .compare-item {
        padding: 1rem;
    }

    .home-results__stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-item__number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 1rem;
    }

    .service-card__title {
        font-size: 1rem;
    }

    .service-card__description {
        font-size: 0.9rem;
    }

    .compare-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .compare-item__icon {
        margin: 0 auto;
    }
}

/* USA Market Highlight Styles */
.usa-market-highlight {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.03), rgba(116, 245, 161, 0.03));
    position: relative;
    overflow: hidden;
}

.usa-market__content {
    max-width: 1200px;
    margin: 0 auto;
}

.usa-market__header {
    text-align: center;
    margin-bottom: 4rem;
}

.usa-market__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.usa-market__description {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.usa-market__highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 208, 132, 0.1);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00d084, #74f5a1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 208, 132, 0.15);
    border-color: rgba(0, 208, 132, 0.3);
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-card__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00d084, #74f5a1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.highlight-card__icon i {
    font-size: 1.8rem;
    color: white;
}

.highlight-card:hover .highlight-card__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 208, 132, 0.3);
}

.highlight-card__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.highlight-card:hover .highlight-card__title {
    color: #00d084;
}

.highlight-card__description {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* Home Results Enhanced Styles */
.home-results__content {
    max-width: 1200px;
    margin: 0 auto;
}

.home-results__header {
    text-align: center;
    margin-bottom: 4rem;
}

.home-results__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.home-results__description {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.card-results__wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 208, 132, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 208, 132, 0.12);
    border-color: rgba(0, 208, 132, 0.2);
}

.stat-card__number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d084, #74f5a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-card__label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .usa-market-highlight {
        padding: 4rem 0;
    }

    .usa-market__highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlight-card {
        padding: 2rem 1.5rem;
    }

    .highlight-card__icon {
        width: 60px;
        height: 60px;
    }

    .highlight-card__title {
        font-size: 1.2rem;
    }

    .card-results__wrap {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .home-results__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-card__number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .usa-market__highlights {
        gap: 1rem;
    }

    .highlight-card {
        padding: 1.5rem 1rem;
    }

    .highlight-card__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .highlight-card__title {
        font-size: 1.1rem;
    }

    .highlight-card__description {
        font-size: 0.9rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-card__number {
        font-size: 2rem;
    }
}

/* Kompakt Buton Stilleri - Sadece header'daki üyelik butonu için */
.btn--compact {
    height: 1.8em !important;
}

.btn--compact .btn__span {
    font-size: 0.65em !important;
}

.btn--compact .arrow {
    width: 1.9vw !important;
    height: 1.9vw !important;
}

@media (max-width: 1200px) {
    .btn--compact {
        height: 1.6em !important;
    }

    .btn--compact .btn__span {
        font-size: 0.6em !important;
    }

    .btn--compact .arrow {
        width: 1.3em !important;
        height: 1.3em !important;
    }
}

@media (max-width: 992px) {
    .btn--compact {
        height: 1.5em !important;
    }

    .btn--compact .btn__span {
        font-size: 0.55em !important;
    }

    .btn--compact .arrow {
        width: 1.2em !important;
        height: 1.2em !important;
    }
}

@media (max-width: 768px) {
    .btn--compact {
        height: 1.4em !important;
    }

    .btn--compact .btn__span {
        font-size: 0.5em !important;
    }

    .btn--compact .arrow {
        width: 1.1em !important;
        height: 1.1em !important;
    }
}

/* Compare Section Styles */
.compare-section {
    padding: 4rem 0;
}

.compare-section__row-eyebrow {
    margin-bottom: 2rem;
}

.compare-section__row-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.compare-section__col-text {
    padding-right: 2rem;
}

.compare-section__col-list {
    padding-left: 2rem;
}

.compare-section__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.compare-section__list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.compare-section__list-item-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    color: #00d084;
    margin-top: 0.25rem;
}

.compare-section__list-item-text {
    flex: 1;
}

.compare-section__list-item-text h4 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.compare-section__list-item-text p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .compare-section__row-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .compare-section__col-text,
    .compare-section__col-list {
        padding: 0;
    }
}

/* Full Width Image Section */
.full-width-image {
    width: 100%;
    margin: 0;
    padding: 0;
}

.full-width-image__container {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.full-width-image__img {
    width: 100%;
    height: 36vh;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .full-width-image__img {
        height: 40vh;
    }
}

@media (max-width: 480px) {
    .full-width-image__img {
        height: 30vh;
    }
}

/* Başkanın Mesajı Responsive Styles */
@media (max-width: 1200px) {
    .home-results {
        padding: 8vw 0;
    }

    .home-results__row-title .h3 {
        font-size: 4vw;
        line-height: 1.2;
    }

    .home-results__col-text-inner p {
        font-size: 1.6vw;
        line-height: 1.6;
    }

    .services-overview__col-text-p {
        font-size: 1.6vw;
        line-height: 1.6;
    }

    .compare__row-title .h3 {
        font-size: 4vw;
        line-height: 1.2;
    }

    .compare__row-text p {
        font-size: 1.6vw;
        line-height: 1.6;
        margin: 0 auto;
        max-width: 80%;
    }

    .compare__p {
        font-size: 1.4vw;
        line-height: 1.5;
    }

    .h5 {
        font-size: 2.5vw;
        line-height: 1.3;
    }
}

@media (max-width: 992px) {
    .home-results {
        padding: 10vw 0;
    }

    .home-results__row-title .h3 {
        font-size: 5vw;
        line-height: 1.2;
    }

    .home-results__col-text-inner p {
        font-size: 2vw;
        line-height: 1.6;
    }

    .services-overview__col-text-p {
        font-size: 2vw;
        line-height: 1.6;
    }

    .compare__row-title .h3 {
        font-size: 5vw;
        line-height: 1.2;
    }

    .compare__row-text p {
        font-size: 2vw;
        line-height: 1.6;
        margin: 0 auto;
        max-width: 85%;
    }

    .compare__p {
        font-size: 1.8vw;
        line-height: 1.5;
    }

    .h5 {
        font-size: 3vw;
        line-height: 1.3;
    }
}

@media (max-width: 768px) {
    .home-results {
        padding: 12vw 0;
    }

    .home-results__row-title .h3 {
        font-size: 6vw;
        line-height: 1.2;
    }

    .home-results__col-text-inner p {
        font-size: 2.5vw;
        line-height: 1.6;
    }

    .services-overview__col-text-p {
        font-size: 2.5vw;
        line-height: 1.6;
    }

    .compare__row-title .h3 {
        font-size: 6vw;
        line-height: 1.2;
    }

    .compare__row-text p {
        font-size: 2.5vw;
        line-height: 1.6;
        margin: 0 auto;
        max-width: 90%;
    }

    .compare__p {
        font-size: 2.2vw;
        line-height: 1.5;
    }

    .h5 {
        font-size: 3.5vw;
        line-height: 1.3;
    }

    .compare__row-list {
        grid-template-columns: 1fr;
        gap: 4vw;
    }
}

@media (max-width: 480px) {
    .home-results {
        padding: 15vw 0;
    }

    .home-results__row-title .h3 {
        font-size: 7vw;
        line-height: 1.2;
    }

    .home-results__col-text-inner p {
        font-size: 3vw;
        line-height: 1.6;
    }

    .services-overview__col-text-p {
        font-size: 3vw;
        line-height: 1.6;
    }

    .compare__row-title .h3 {
        font-size: 7vw;
        line-height: 1.2;
    }

    .compare__row-text p {
        font-size: 3vw;
        line-height: 1.6;
        margin: 0 auto;
        max-width: 95%;
    }

    .compare__p {
        font-size: 2.8vw;
        line-height: 1.5;
    }

    .h5 {
        font-size: 4vw;
        line-height: 1.3;
    }

    .compare__item {
        padding: 3vw;
    }

    .compare__icon {
        width: 8vw;
        height: 8vw;
    }
}

/* President Message Content */
.president-message-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.president-photo {
    flex: 0 0 26vw;
    min-height: 400px;
}

.president-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.president-text {
    flex: 1;
}

.signature {
    margin-top: 2rem;
    font-style: italic;
    color: #00d084;
}

@media (max-width: 768px) {
    .president-message-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .president-photo {
        flex: none;
        width: 150px;
        min-height: 250px;
        align-self: center;
    }
}

/* Events Page Styles */
.events-hero {
    position: relative;
    padding: 4vw 0 3vw;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%),
        url('etkinliklerhero.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.events-hero__content {
    position: relative;
    z-index: 2;
}

.events-hero__stats {
    display: flex;
    justify-content: center;
    gap: 4vw;
    margin-bottom: 4vw;
}

.events-stat {
    text-align: center;
    padding: 2vw;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1vw;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 12vw;
}

.events-stat__number {
    font-size: 3vw;
    font-weight: 700;
    color: #10b981;
    line-height: 1;
    margin-bottom: 0.5vw;
}

.events-stat__label {
    font-size: 1vw;
    color: #64748b;
    font-weight: 500;
}

.featured-event {
    background: white;
    border-radius: 2vw;
    padding: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.featured-event__badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5vw 1.5vw;
    border-radius: 2vw;
    font-size: 0.8vw;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 2vw;
}

.featured-event__content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4vw;
    align-items: center;
}

.featured-event__title {
    font-size: 2.5vw;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1vw;
    line-height: 1.2;
}

.featured-event__description {
    font-size: 1.2vw;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2vw;
}

.featured-event__meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5vw;
    margin-bottom: 2vw;
}

.event-meta__item {
    display: flex;
    align-items: center;
    gap: 0.8vw;
    font-size: 1vw;
    color: #475569;
}

.event-meta__item i {
    color: #10b981;
    width: 1.2vw;
}

.featured-event__actions {
    display: flex;
    gap: 1.5vw;
}

.btn-primary,
.btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.8vw;
    padding: 1vw 2vw;
    border-radius: 0.8vw;
    font-weight: 600;
    font-size: 1vw;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 1vw 2vw rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background: white;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.event-countdown {
    display: flex;
    gap: 2vw;
}

.countdown-item {
    text-align: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 1vw;
    padding: 1.5vw;
    min-width: 5vw;
}

.countdown-number {
    font-size: 2.5vw;
    font-weight: 700;
    color: #10b981;
    line-height: 1;
}

.countdown-label {
    font-size: 0.9vw;
    color: #64748b;
    margin-top: 0.5vw;
}

.no-featured-event {
    text-align: center;
    padding: 2vw 0;
}

.events-hero__title {
    font-size: 3vw;
    font-weight: 700;
    margin-bottom: 1vw;
    line-height: 1.2;
    text-align: center;
    color: #1a1a1a;
}

.events-hero__description {
    font-size: 1.1vw;
    color: #64748b;
    max-width: 45vw;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* Events Filter Section */
.events-filter {
    padding: 4vw 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.events-filter__content {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1vw;
    margin-bottom: 2vw;
}

.filter-tab {
    padding: 0.8vw 2vw;
    border: 1px solid #e2e8f0;
    background: white;
    color: #64748b;
    border-radius: 2vw;
    font-size: 1vw;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover,
.filter-tab.active {
    background: #10b981;
    color: white;
    border-color: #10b981;
}

.filter-controls {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2vw;
    max-width: 60vw;
    margin: 0 auto;
}

.filter-search,
.filter-category,
.filter-date {
    position: relative;
}

.filter-search i {
    position: absolute;
    left: 1vw;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1vw;
}

.filter-search input {
    width: 100%;
    padding: 1vw 1vw 1vw 3vw;
    border: 1px solid #e2e8f0;
    border-radius: 0.8vw;
    font-size: 1vw;
    background: white;
}

.filter-category select,
.filter-date input {
    width: 100%;
    padding: 1vw;
    border: 1px solid #e2e8f0;
    border-radius: 0.8vw;
    font-size: 1vw;
    background: white;
}

/* Events Calendar Section */
.events-calendar {
    padding: 6vw 0;
    background: #f8fafc;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4vw;
}

.section-title {
    font-size: 2.5vw;
    font-weight: 700;
    color: #1e293b;
}

.calendar-controls {
    display: flex;
    align-items: center;
    gap: 2vw;
}

.calendar-nav {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    width: 3vw;
    height: 3vw;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background: #10b981;
    color: white;
    border-color: #10b981;
}

.calendar-current-month {
    font-size: 1.2vw;
    font-weight: 600;
    color: #1e293b;
    min-width: 10vw;
    text-align: center;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e2e8f0;
    border-radius: 1vw;
    overflow: hidden;
}

.calendar-day-header {
    background: #1e293b;
    color: white;
    padding: 1vw;
    text-align: center;
    font-size: 0.9vw;
    font-weight: 600;
}

.calendar-day {
    background: white;
    min-height: 6vw;
    padding: 0.8vw;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.calendar-day:hover {
    background: #f0fdf4;
}

.calendar-day.empty {
    background: #f8fafc;
    cursor: default;
}

.calendar-day.today {
    background: #10b981;
    color: white;
}

.calendar-day.has-events {
    background: #ecfdf5;
}

.calendar-day-number {
    font-size: 1vw;
    font-weight: 600;
    margin-bottom: 0.5vw;
}

.calendar-event-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2vw;
}

.calendar-event-dot {
    width: 0.5vw;
    height: 0.5vw;
    border-radius: 50%;
    background: #10b981;
}

.calendar-event-dot.webinar {
    background: #3b82f6;
}

.calendar-event-dot.konferans {
    background: #8b5cf6;
}

.calendar-event-dot.networking {
    background: #f59e0b;
}

.calendar-event-dot.egitim {
    background: #ef4444;
}

.calendar-event-dot.more {
    background: #64748b;
    font-size: 0.6vw;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 0.8vw;
    padding: 0 0.3vw;
    border-radius: 0.4vw;
}

/* Events List Section */
.events-list {
    padding: 1vw 0;
    background: white;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25vw, 1fr));
    gap: 2vw;
}

.event-card {
    background: white;
    border-radius: 1.5vw;
    overflow: hidden;
    box-shadow: 0 0.5vw 2vw rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.event-card:hover {
    transform: translateY(-0.5vw);
    box-shadow: 0 1.5vw 3vw rgba(0, 0, 0, 0.15);
}

.event-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5vw;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.event-card__date {
    text-align: center;
    background: white;
    border-radius: 0.8vw;
    padding: 0.8vw;
    box-shadow: 0 0.2vw 0.8vw rgba(0, 0, 0, 0.1);
}

.event-date__day {
    font-size: 1.5vw;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.event-date__month {
    font-size: 0.8vw;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-card__category {
    background: #10b981;
    color: white;
    padding: 0.4vw 1vw;
    border-radius: 1vw;
    font-size: 0.7vw;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-card__content {
    padding: 1.5vw;
}

.event-card__title {
    font-size: 1.3vw;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.8vw;
    line-height: 1.3;
}

.event-card__description {
    font-size: 0.9vw;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1.5vw;
}

.event-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
}

.event-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5vw;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.status-badge {
    padding: 0.3vw 0.8vw;
    border-radius: 1vw;
    font-size: 0.7vw;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-upcoming {
    background: #dcfce7;
    color: #166534;
}

.status-past {
    background: #f1f5f9;
    color: #475569;
}

.event-card__actions {
    display: flex;
    gap: 0.5vw;
}

.event-action-btn {
    width: 2.5vw;
    height: 2.5vw;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: white;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9vw;
}

.event-action-btn:hover {
    background: #10b981;
    color: white;
    border-color: #10b981;
    transform: scale(1.1);
}

.no-events {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4vw;
    color: #64748b;
}

.no-events__icon {
    font-size: 4vw;
    color: #cbd5e1;
    margin-bottom: 2vw;
}

.no-events h3 {
    font-size: 1.5vw;
    font-weight: 600;
    margin-bottom: 1vw;
    color: #475569;
}

.no-events p {
    font-size: 1vw;
    color: #64748b;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 1.5vw;
    max-width: 35vw;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-large {
    max-width: 50vw;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2vw;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h3 {
    font-size: 1.5vw;
    font-weight: 700;
    color: #1e293b;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2vw;
    color: #64748b;
    cursor: pointer;
    width: 3vw;
    height: 3vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.modal-body {
    padding: 2vw;
}

.form-group {
    margin-bottom: 1.5vw;
}

.form-group label {
    display: block;
    font-size: 0.9vw;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5vw;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8vw;
    border: 1px solid #d1d5db;
    border-radius: 0.5vw;
    font-size: 0.9vw;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5vw;
}

body.modal-open {
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .events-hero {
        padding: 10vw 0 8vw;
    }

    .events-stat__number {
        font-size: 4vw;
    }

    .events-stat__label {
        font-size: 1.2vw;
    }

    .featured-event__title {
        font-size: 3vw;
    }

    .featured-event__description {
        font-size: 1.4vw;
    }

    .events-hero__title {
        font-size: 4vw;
    }

    .events-hero__description {
        font-size: 1.5vw;
        max-width: 60vw;
    }
}

@media (max-width: 992px) {
    .events-hero__stats {
        gap: 3vw;
    }

    .events-stat {
        min-width: 15vw;
    }

    .featured-event__content {
        grid-template-columns: 1fr;
        gap: 3vw;
    }

    .filter-controls {
        grid-template-columns: 1fr;
        max-width: 80vw;
    }

    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(35vw, 1fr));
    }

    .calendar-nav {
        width: 4vw;
        height: 4vw;
    }
}

@media (max-width: 768px) {
    .events-hero {
        padding: 15vw 0 12vw;
    }

    .events-hero__stats {
        flex-direction: column;
        gap: 4vw;
        max-width: 60vw;
        margin: 0 auto 6vw;
    }

    .events-stat {
        min-width: auto;
        padding: 4vw;
    }

    .events-stat__number {
        font-size: 8vw;
    }

    .events-stat__label {
        font-size: 2.5vw;
    }

    .featured-event {
        padding: 6vw;
        border-radius: 3vw;
    }

    .featured-event__title {
        font-size: 5vw;
    }

    .featured-event__description {
        font-size: 2.5vw;
    }

    .featured-event__meta {
        grid-template-columns: 1fr;
        gap: 2vw;
    }

    .event-meta__item {
        font-size: 2vw;
        gap: 1.5vw;
    }

    .event-meta__item i {
        width: 2vw;
    }

    .btn-primary,
    .btn-secondary {
        padding: 2vw 4vw;
        font-size: 2vw;
        gap: 1.5vw;
    }

    .event-countdown {
        gap: 3vw;
    }

    .countdown-item {
        padding: 3vw;
        min-width: 12vw;
    }

    .countdown-number {
        font-size: 5vw;
    }

    .countdown-label {
        font-size: 2vw;
    }

    .events-hero__title {
        font-size: 6vw;
    }

    .events-hero__description {
        font-size: 2.5vw;
        max-width: 80vw;
    }

    .filter-tab {
        padding: 2vw 4vw;
        font-size: 2vw;
    }

    .filter-search input,
    .filter-category select,
    .filter-date input {
        padding: 2.5vw;
        font-size: 2vw;
    }

    .filter-search i {
        left: 2vw;
        font-size: 2vw;
    }

    .filter-search input {
        padding-left: 6vw;
    }

    .section-title {
        font-size: 4vw;
    }

    .calendar-current-month {
        font-size: 2.5vw;
        min-width: 20vw;
    }

    .calendar-nav {
        width: 8vw;
        height: 8vw;
        font-size: 3vw;
    }

    .calendar-day {
        min-height: 12vw;
        padding: 2vw;
    }

    .calendar-day-header {
        padding: 2vw;
        font-size: 2vw;
    }

    .calendar-day-number {
        font-size: 2.5vw;
    }

    .calendar-event-dot {
        width: 1.5vw;
        height: 1.5vw;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 4vw;
    }

    .event-card {
        border-radius: 3vw;
    }

    .event-card__header {
        padding: 4vw;
    }

    .event-card__date {
        padding: 2vw;
        border-radius: 2vw;
    }

    .event-date__day {
        font-size: 4vw;
    }

    .event-date__month {
        font-size: 2vw;
    }

    .event-card__category {
        padding: 1.5vw 3vw;
        font-size: 2vw;
    }

    .event-card__content {
        padding: 4vw;
    }

    .event-card__title {
        font-size: 3.5vw;
        margin-bottom: 2vw;
    }

    .event-card__description {
        font-size: 2.5vw;
        margin-bottom: 3vw;
    }

    .event-card__meta {
        gap: 1.5vw;
    }

    .event-card__footer {
        padding: 4vw;
    }

    .status-badge {
        padding: 1.5vw 3vw;
        font-size: 2vw;
    }

    .event-action-btn {
        width: 8vw;
        height: 8vw;
        font-size: 3vw;
    }

    .no-events {
        padding: 8vw;
    }

    .no-events__icon {
        font-size: 10vw;
        margin-bottom: 4vw;
    }

    .no-events h3 {
        font-size: 4vw;
        margin-bottom: 2vw;
    }

    .no-events p {
        font-size: 2.5vw;
    }

    .modal-content {
        max-width: 85vw;
        border-radius: 4vw;
    }

    .modal-header {
        padding: 4vw;
    }

    .modal-header h3 {
        font-size: 3.5vw;
    }

    .modal-close {
        font-size: 4vw;
        width: 8vw;
        height: 8vw;
    }

    .modal-body {
        padding: 4vw;
    }

    .form-group {
        margin-bottom: 3vw;
    }

    .form-group label {
        font-size: 2.5vw;
        margin-bottom: 1.5vw;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 2.5vw;
        font-size: 2.5vw;
        border-radius: 2vw;
    }
}

/* ===============================
   PUBLICATIONS PAGES STYLES
   =============================== */

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Filter Section */
.filter-section {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.filter-controls {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(0, 0, 0, 0.5);
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    font-size: 1rem;
    background: white;
}

.filter-select {
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    background: white;
    font-size: 1rem;
    min-width: 150px;
}

/* ===============================
   MAGAZINE PAGE STYLES
   =============================== */

/* Featured Magazine */
.featured-magazine-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.magazine-cover {
    perspective: 1000px;
}

.magazine-3d {
    position: relative;
    width: 300px;
    height: 400px;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.magazine-3d:hover {
    transform: rotateY(-15deg) rotateX(5deg);
}

.magazine-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.magazine-spine {
    position: absolute;
    right: -10px;
    top: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, #002452, #003080);
    transform: rotateY(90deg);
    transform-origin: left center;
    border-radius: 0 1rem 1rem 0;
}

.magazine-details {
    padding-left: 2rem;
}

.magazine-title {
    font-size: 2rem;
    font-weight: 700;
    color: #002452;
    margin-bottom: 1rem;
}

.magazine-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.magazine-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.magazine-date,
.magazine-pages {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #888;
    font-size: 0.9rem;
}

.magazine-actions {
    display: flex;
    gap: 1rem;
}

/* Magazine Grid */
.magazine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.magazine-card {
    perspective: 1000px;
    height: 400px;
}

.magazine-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.magazine-card:hover .magazine-card-inner {
    transform: rotateY(180deg);
}

.magazine-card-front,
.magazine-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 1rem;
    overflow: hidden;
}

.magazine-card-front {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.magazine-card-back {
    background: linear-gradient(135deg, #002452, #003080);
    color: white;
    transform: rotateY(180deg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.magazine-cover-image {
    width: 100%;
    height: 80%;
    background-size: cover;
    background-position: center;
}

.magazine-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
}

.magazine-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.magazine-card-date {
    font-size: 0.9rem;
    opacity: 0.8;
}

.magazine-card-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-view,
.btn-share {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-view {
    background: white;
    color: #002452;
    flex: 1;
}

.btn-view:hover {
    background: #f0f0f0;
}

.btn-share {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-share:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ===============================
   NEWSLETTER PAGE STYLES
   =============================== */

/* Subscription Form */
.subscription-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.subscription-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #002452;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #002452;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.subscription-benefits {
    background: rgba(0, 36, 82, 0.05);
    padding: 2rem;
    border-radius: 1rem;
}

.subscription-benefits h3 {
    color: #002452;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.subscription-benefits ul {
    list-style: none;
    padding: 0;
}

.subscription-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #666;
}

.subscription-benefits i {
    color: #28a745;
    font-size: 0.9rem;
}

/* Newsletter Grid */
.newsletter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.newsletter-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.newsletter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #002452, #003080);
    color: white;
}

.newsletter-date {
    text-align: center;
}

.date-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date-year {
    font-size: 0.8rem;
    opacity: 0.8;
}

.newsletter-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.newsletter-content {
    padding: 1.5rem;
}

.newsletter-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #002452;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.newsletter-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.newsletter-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.topic-tag {
    background: rgba(0, 36, 82, 0.1);
    color: #002452;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.newsletter-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
}

.newsletter-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #888;
}

.newsletter-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-actions {
    display: flex;
    gap: 1rem;
}

/* ===============================
   VIDEO PAGE STYLES
   =============================== */

/* Featured Video */
.featured-video-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.video-player-wrapper {
    position: relative;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.05);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #002452;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
}

.video-details {
    padding-left: 2rem;
}

.video-title {
    font-size: 2rem;
    font-weight: 700;
    color: #002452;
    margin-bottom: 1rem;
}

.video-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.video-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.video-instructor,
.video-level,
.video-views {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #888;
    font-size: 0.9rem;
}

.video-actions {
    display: flex;
    gap: 1rem;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-card-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail-image {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.video-play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #002452;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    background: white;
    transform: scale(1.1);
}

.video-duration-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
}

.video-card-content {
    padding: 1.5rem;
}

.video-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #002452;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.video-card-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.video-card-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #888;
}

.video-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-card-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.5rem;
}

.video-card-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-card-actions {
    display: flex;
    gap: 1rem;
}

.btn-watch {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: #002452;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-watch:hover {
    background: #003080;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    background: white;
    border-radius: 1rem;
    width: 90%;
    max-width: 800px;
    max-height: 90%;
    overflow: hidden;
}

.video-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.video-modal-header h3 {
    margin: 0;
    color: #002452;
}

.video-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888;
    transition: color 0.3s ease;
}

.video-modal-close:hover {
    color: #002452;
}

.video-modal-body {
    padding: 0;
}

.video-modal-body iframe,
.video-modal-body video {
    width: 100%;
    height: 450px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #888;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #666;
}

/* Button Styles */
.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background: #002452;
    color: white;
}

.btn-primary:hover {
    background: #003080;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */

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

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        min-width: auto;
    }

    .featured-magazine-card,
    .featured-video-container,
    .subscription-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .magazine-details,
    .video-details {
        padding-left: 0;
        text-align: center;
    }

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

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

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

    .video-modal-content {
        width: 95%;
        margin: 1rem;
    }

    .video-modal-body iframe,
    .video-modal-body video {
        height: 250px;
    }
}

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

    .magazine-meta,
    .video-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .magazine-actions,
    .video-actions {
        flex-direction: column;
    }

    .newsletter-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .video-card-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Compact Stats for Events Filter */
.events-compact-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.compact-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.compact-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.compact-stat__number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d084;
}

.compact-stat__label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* Smaller Calendar */
.events-calendar {
    padding: 3rem 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.calendar-day {
    aspect-ratio: 1;
    min-height: 60px;
    border: 1px solid rgba(229, 231, 235, 0.3);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.calendar-day-header {
    background: rgba(0, 208, 132, 0.1);
    border: 1px solid rgba(0, 208, 132, 0.3);
    font-weight: 600;
    color: #00d084;
    min-height: 40px;
    aspect-ratio: auto;
}

.calendar-day-number {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.calendar-event-dots {
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
}

.calendar-event-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #00d084;
}

@media (max-width: 768px) {
    .events-compact-stats {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .compact-stat {
        padding: 0.5rem 1rem;
    }

    .compact-stat__number {
        font-size: 1.25rem;
    }

    .compact-stat__label {
        font-size: 0.75rem;
    }

    .calendar-grid {
        gap: 0.25rem;
        max-width: 100%;
    }

    .calendar-day {
        min-height: 50px;
        padding: 0.25rem;
    }

    .calendar-day-header {
        min-height: 35px;
    }

    .calendar-day-number {
        font-size: 0.75rem;
    }

    .calendar-event-dot {
        width: 3px;
        height: 3px;
    }
}

/* Research Page Styles */
.research-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.research-dashboard {
    text-align: center;
}

.dashboard-header {
    margin-bottom: 3rem;
}

.dashboard-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.dashboard-description {
    font-size: 1.125rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

.research-filters {
    padding: 4rem 0;
    background: #f9fafb;
}

.filters-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 500;
    color: #374151;
    font-size: 0.875rem;
}

.search-input {
    position: relative;
}

.search-input i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.search-input input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.search-input input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.filter-group select {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-group select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.research-grid-section {
    padding: 4rem 0;
    background: white;
    position: relative;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.research-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.research-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #6366f1;
}

.research-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 1.5rem 0;
}

.research-thumbnail {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 100px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 8px;
    position: relative;
    color: #6b7280;
    font-size: 2rem;
}

.research-pages {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 0.625rem;
    padding: 2px 6px;
    border-radius: 4px;
}

.research-actions {
    display: flex;
    gap: 0.5rem;
}

.research-bookmark-btn,
.research-share-btn {
    width: 32px;
    height: 32px;
    background: #f3f4f6;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6b7280;
}

.research-bookmark-btn:hover,
.research-share-btn:hover {
    background: #e5e7eb;
    color: #374151;
}

.research-card__content {
    padding: 1.5rem;
}

.research-category {
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 1rem;
}

.research-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.research-card__description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.research-card__meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.research-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

.research-meta-item i {
    color: #00d084;
}

.research-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.research-tag {
    background: #f3f4f6;
    color: #6b7280;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.research-card__footer {
    display: flex;
    gap: 0.75rem;
    padding: 0 1.5rem 1.5rem;
}

.research-download-btn,
.research-preview-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.research-download-btn {
    background: #6366f1;
    color: white;
    border: none;
}

.research-download-btn:hover {
    background: #4f46e5;
}

.research-preview-btn {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.research-preview-btn:hover {
    background: #e5e7eb;
}

.no-research {
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
}

.no-research__icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.no-research h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.no-research p {
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

/* Etkinlikler Bölümü Stilleri */
.events-list {
    margin-top: 2rem;
}

.event-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: rgba(var(--color-light-rgb), 0.5);
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 4rem;
    height: 4rem;
    background-color: var(--color-primary);
    color: var(--color-light);
    border-radius: 0.5rem;
    margin-right: 1rem;
    padding: 0.5rem;
}

.event-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-details {
    flex: 1;
}

.event-details h4 {
    margin-bottom: 0.25rem;
}

.event-details h4 a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-details h4 a:hover {
    color: var(--color-primary);
}

.event-details p {
    margin: 0;
    color: var(--color-gray);
}

@media (max-width: 768px) {
    .event-item {
        padding: 0.75rem;
    }

    .event-date {
        min-width: 3.5rem;
        height: 3.5rem;
    }

    .event-day {
        font-size: 1.25rem;
    }

    .event-month {
        font-size: 0.7rem;
    }
}

/* ABD Pazarına Giriş Bölümü Stilleri */
.abd-steps {
    margin-top: 2rem;
}

.abd-steps h3 {
    color: var(--color-dark);
    font-weight: 600;
    position: relative;
    padding-left: 1.5rem;
}

.abd-steps h3:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.75rem;
    height: 0.75rem;
    background: var(--color-primary);
    border-radius: 50%;
}

.abd-steps__list {
    list-style: none;
    padding-left: 1.5rem;
    margin: 0.75rem 0;
}

.abd-steps__list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.abd-steps__list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5rem;
    height: 0.5rem;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.abd-steps__list li:hover:before {
    background: var(--color-primary);
    transform: translateY(-50%) scale(1.2);
}

.abd-steps__list li a {
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.abd-steps__list li a:hover {
    color: var(--color-primary);
    padding-left: 0.25rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .abd-steps h3 {
        font-size: 1.1rem;
        padding-left: 1.25rem;
    }

    .abd-steps__list {
        padding-left: 1rem;
    }

    .abd-steps__list li {
        padding: 0.4rem 0 0.4rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* KOBİ 50 Bölümü Stilleri */
.kobi-features {
    margin-top: 2rem;
}

.kobi-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background-color: rgba(var(--color-light-rgb), 0.5);
    transition: all 0.3s ease;
}

.kobi-feature:hover {
    transform: translateX(5px);
    background-color: rgba(var(--color-primary-rgb), 0.1);
}

.kobi-feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--color-primary);
    color: var(--color-light);
    border-radius: 50%;
    margin-right: 1rem;
}

.kobi-feature__icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.kobi-feature__text {
    flex: 1;
}

.kobi-feature__text h4 {
    margin: 0;
    font-weight: 600;
}

@media (max-width: 768px) {
    .kobi-feature {
        padding: 0.5rem;
    }

    .kobi-feature__icon {
        width: 2rem;
        height: 2rem;
    }

    .kobi-feature__icon svg {
        width: 1rem;
        height: 1rem;
    }

    .kobi-feature__text h4 {
        font-size: 0.9rem;
    }
}

/* Enhanced Navigation Dots - Universal */
.page-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-nav__label {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    right: 3rem;
    top: 0;
    transform: translateY(-50%);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-nav__label.active {
    opacity: 1;
}

.page-nav__label-text {
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-nav__dots {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1rem 0.8rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.page-nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgb(49 49 49 / 40%);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.page-nav-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.3);
}

.page-nav-dot.active {
    background: #00d084;
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(0, 208, 132, 0.6);
}

.page-nav-dot.active::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 208, 132, 0.8));
}

/* Mobile responsive for nav dots */
@media (max-width: 1200px) {
    .page-nav {
        right: 1.5rem;
        gap: 1rem;
    }

    .page-nav__dots {
        padding: 0.8rem 0.6rem;
        gap: 0.6rem;
    }

    .page-nav__label {
        right: 2.5rem;
    }

    .page-nav__label-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .page-nav {
        right: 1rem;
        gap: 0.8rem;
    }

    .page-nav__dots {
        padding: 0.6rem 0.5rem;
        gap: 0.5rem;
        border-radius: 15px;
    }

    .page-nav__label {
        right: 2rem;
    }

    .page-nav__label-text {
        font-size: 0.8rem;
    }

    .page-nav-dot {
        width: 6px;
        height: 6px;
    }

    .page-nav-dot.active::before {
        left: -1rem;
        width: 0.8rem;
    }
}

@media (max-width: 480px) {
    .page-nav {
        right: 0.75rem;
        gap: 0.5rem;
    }

    .page-nav__dots {
        padding: 0.5rem 0.4rem;
        gap: 0.4rem;
        border-radius: 12px;
    }

    .page-nav__label {
        right: 1.5rem;
    }

    .page-nav__label-text {
        font-size: 0.7rem;
    }

    .page-nav-dot {
        width: 5px;
        height: 5px;
    }

    .page-nav-dot.active::before {
        left: -0.8rem;
        width: 0.6rem;
    }
}

/* Button Styles - ABD Pazarına Giriş Butonları */
.btn-7l7 {
    display: inline-flex;
    position: relative;
}

p+.btn-7l7 {
    margin-top: 2.5em;
}

.btn-7l7.is--scroll-7o8 {
    cursor: pointer;
}

.btn-p52 {
    position: relative;
}

.btn-ewp {
    grid-column-gap: .75em;
    grid-row-gap: .75em;
    color: var(--color-dark);
    letter-spacing: -.02em;
    cursor: pointer;
    border-radius: .5em;
    flex: 0 auto;
    align-items: center;
    padding: 0;
    line-height: 1;
    text-decoration: none;
    display: flex;
    position: relative;
}

.btn-ewp:hover {
    text-decoration: none;
}

.btn-3k6 {
    display: none;
}

.text-h7p {
    align-items: center;
    display: flex;
    position: relative;
}

.row-x9m {
    background-color: var(--color-primary);
    border-radius: .25em;
    flex-shrink: 0;
    width: 2.5em;
    height: 2.5em;
    position: relative;
    overflow: hidden;
    transition: background-color var(--animation-ease);
}

.btn-h19 {
    white-space: nowrap;
    font-size: 1.25em;
    font-weight: 700;
    transition: color var(--animation-ease);
}

.row-2on {
    background-color: var(--color-dark);
    border-radius: .25em;
    width: 0;
    height: 0;
    position: absolute;
    top: 15%;
    left: 50%;
    transition: all var(--animation-default), background-color var(--animation-ease);
}

@media (hover: hover) and (pointer: fine) {
    [data-hover]:hover .row-2on {
        left: calc(var(--grow) * -1);
        top: calc(var(--grow) * -1);
        width: calc(100% + (var(--grow) * 2));
        height: calc(100% + (var(--grow) * 2));
    }
}

.row-1t4 {
    color: var(--color-dark);
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
}

/* S
ervice Tiles Background Images - Only for Services Section */
.service-tile {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
    z-index: 1;
}

.service-tile:hover::before {
    background: rgba(0, 0, 0, 0.2);
}

.service-tile .growing-tile__start,
.service-tile .growing-tile__end {
    position: relative;
    z-index: 2;
}

.service-tile .growing-tile__text {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Individual Service Backgrounds */
.service-tile--abd {
    background-image: url('../assets/abdpazari.jpg');
}

.service-tile--kosgeb {
    background-image: url('../assets/kosgeb.jpg');
}

.service-tile--pazarlama {
    background-image: url('../assets/pazarlama.jpg');
}

.service-tile--hukuki {
    background-image: url('../assets/hukuki.jpg');
}

.service-tile--lojistik {
    background-image: url('../assets/lojistik.jpg');
}

.service-tile--egitim {
    background-image: url('../assets/egitimvementor.jpg');
}

/* Modern Events Section - Site Theme Consistent */
.modern-events-container {
    margin-top: 3rem;
}

.modern-events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.modern-event-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 450px;
    display: flex;
    flex-direction: column;
}

.modern-event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #00d084;
}

.modern-event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #00d084;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 3;
}

.modern-event-card:hover::before {
    transform: scaleX(1);
}

.modern-event-card__image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
}

.event-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(20%);
}

.modern-event-card:hover .event-bg-image {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.event-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #666;
    font-size: 3rem;
    transition: all 0.3s ease;
}

.modern-event-card:hover .event-image-placeholder {
    color: #00d084;
    background: #f1f1f1;
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.modern-event-card:hover .event-overlay {
    opacity: 1;
}

.event-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    z-index: 2;
    min-width: 70px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.modern-event-card:hover .event-date-badge {
    background: rgba(255, 255, 255, 1);
    border-color: #00d084;
    transform: translateY(-2px);
}

.event-date-badge__day {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.event-date-badge__month {
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    margin-top: 2px;
}

.event-date-badge__year {
    font-size: 0.7rem;
    color: #999;
    margin-top: 2px;
}

.event-category-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 208, 132, 0.1);
    color: #00d084;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    border: 1px solid rgba(0, 208, 132, 0.2);
    transition: all 0.3s ease;
}

.modern-event-card:hover .event-category-tag {
    background: #00d084;
    color: white;
    transform: translateY(-2px);
}

.modern-event-card__content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-content__header {
    margin-bottom: 1rem;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.modern-event-card:hover .event-title {
    color: #00d084;
}

.event-meta-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.event-meta__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    transition: color 0.3s ease;
}

.event-meta__item i {
    color: #999;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.modern-event-card:hover .event-meta__item i {
    color: #00d084;
}

.event-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex: 1;
}

.event-action {
    margin-top: auto;
}

.event-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #1a1a1a;
    padding: 12px 24px;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.event-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #00d084;
    transition: left 0.3s ease;
    z-index: -1;
}

.event-btn:hover {
    color: white;
    border-color: #00d084;
    transform: translateY(-2px);
    text-decoration: none;
}

.event-btn:hover::before {
    left: 0;
}

.event-btn__icon {
    transition: transform 0.3s ease;
}

.event-btn:hover .event-btn__icon {
    transform: translateX(3px);
}

/* No Events State */
.no-events-modern {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: #f8f9fa;
    border-radius: 20px;
    border: 2px dashed #e0e0e0;
    transition: all 0.3s ease;
}

.no-events-modern:hover {
    border-color: #00d084;
    background: #ffffff;
}

.no-events-modern__content {
    max-width: 400px;
    margin: 0 auto;
}

.no-events-modern__icon {
    font-size: 4rem;
    color: #999;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.no-events-modern:hover .no-events-modern__icon {
    color: #00d084;
}

.no-events-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.no-events-modern p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.notify-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #00d084;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.notify-btn:hover {
    background: #00b572;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .modern-event-card {
        height: auto;
        min-height: 400px;
    }

    .modern-event-card__image {
        height: 200px;
    }

    .event-date-badge {
        top: 15px;
        left: 15px;
        padding: 10px;
        min-width: 60px;
    }

    .event-category-tag {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .event-title {
        font-size: 1.2rem;
    }

    .event-meta-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* 
KOBİ 50 Awards Section - Site Theme Consistent */
.kobi50-awards-section {
    padding: 5rem 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.kobi50-awards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.02) 0%, rgba(0, 208, 132, 0.05) 100%);
    z-index: 1;
}

.kobi50-awards-section .container {
    position: relative;
    z-index: 2;
}

/* Header Section */
.kobi50-header {
    text-align: center;
    margin-bottom: 4rem;
}

.kobi50-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.kobi50-header__badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #00d084;
}

.kobi50-badge {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00d084;
    letter-spacing: 0.5px;
}

.kobi50-year {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    background: #00d084;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.kobi50-title {
    margin-bottom: 1.5rem;
}

.kobi50-title__main {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.kobi50-title__sub {
    display: block;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 600;
    color: #666;
    font-style: italic;
}

.kobi50-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 208, 132, 0.1);
    border: 1px solid rgba(0, 208, 132, 0.2);
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    animation: pulse-status 2s infinite;
}

@keyframes pulse-status {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.kobi50-status__indicator {
    width: 8px;
    height: 8px;
    background: #00d084;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0.3;
    }
}

.kobi50-status__text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #00d084;
}

/* Main Content */
.kobi50-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.kobi50-description {
    margin-bottom: 3rem;
}

.kobi50-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.kobi50-description p:last-child {
    margin-bottom: 0;
}

/* Benefits Grid */
.kobi50-benefits {
    display: grid;
    gap: 2rem;
}

.kobi50-benefit {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.kobi50-benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #00d084;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.kobi50-benefit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #00d084;
}

.kobi50-benefit:hover::before {
    transform: scaleY(1);
}

.kobi50-benefit__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(0, 208, 132, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d084;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.kobi50-benefit:hover .kobi50-benefit__icon {
    background: #00d084;
    color: white;
    transform: scale(1.1);
}

.kobi50-benefit__content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.kobi50-benefit__content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Visual Section */
.kobi50-content__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.kobi50-award-visual {
    position: relative;
    width: 300px;
    height: 300px;
}

.kobi50-award-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 3px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.kobi50-award-circle:hover {
    transform: scale(1.05);
    border-color: #00d084;
    box-shadow: 0 25px 50px rgba(0, 208, 132, 0.2);
}

.kobi50-award-inner {
    text-align: center;
}

.kobi50-award-number {
    font-size: 4rem;
    font-weight: 900;
    color: #00d084;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.kobi50-award-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.kobi50-award-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.kobi50-award-rays::before,
.kobi50-award-rays::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 60px;
    background: #00d084;
    transform-origin: center;
}

.kobi50-award-rays::before {
    transform: translate(-50%, -50%) rotate(0deg);
    box-shadow:
        0 0 0 0 #00d084,
        0 0 0 0 #00d084 rotate(45deg),
        0 0 0 0 #00d084 rotate(90deg),
        0 0 0 0 #00d084 rotate(135deg);
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Categories Section */
.kobi50-categories {
    margin-bottom: 4rem;
}

.kobi50-categories__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

.kobi50-categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.kobi50-category {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.kobi50-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #00d084;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.kobi50-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #00d084;
}

.kobi50-category:hover::before {
    transform: scaleX(1);
}

.kobi50-category__icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 208, 132, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #00d084;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.kobi50-category:hover .kobi50-category__icon {
    background: #00d084;
    color: white;
    transform: scale(1.1);
}

.kobi50-category h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.kobi50-category p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Call to Action */
.kobi50-cta {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.kobi50-cta__content {
    margin-bottom: 2rem;
}

.kobi50-cta__content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.kobi50-cta__content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.kobi50-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.kobi50-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.kobi50-btn--primary {
    background: #00d084;
    color: white;
    border: 1px solid #00d084;
}

.kobi50-btn--primary:hover {
    background: #00b572;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 208, 132, 0.3);
    color: white;
    text-decoration: none;
}

.kobi50-btn--secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #e0e0e0;
}

.kobi50-btn--secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #00d084;
    transition: left 0.3s ease;
    z-index: -1;
}

.kobi50-btn--secondary:hover {
    color: white;
    border-color: #00d084;
    transform: translateY(-2px);
    text-decoration: none;
}

.kobi50-btn--secondary:hover::before {
    left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .kobi50-awards-section {
        padding: 3rem 0;
    }

    .kobi50-header {
        margin-bottom: 3rem;
    }

    .kobi50-header__badge {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
    }

    .kobi50-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .kobi50-content__visual {
        order: -1;
    }

    .kobi50-award-visual {
        width: 250px;
        height: 250px;
    }

    .kobi50-award-number {
        font-size: 3rem;
    }

    .kobi50-categories__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .kobi50-cta {
        padding: 2rem;
    }

    .kobi50-cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .kobi50-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* States
 Explorer Section - Site Theme Consistent */
.states-explorer-section {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
}

/* Header */
.states-explorer-header {
    text-align: center;
    margin-bottom: 4rem;
}

.states-explorer-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 208, 132, 0.1);
    border: 1px solid rgba(0, 208, 132, 0.2);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    color: #00d084;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.states-explorer-header__badge:hover {
    background: #00d084;
    color: white;
    transform: translateY(-2px);
}

.states-explorer-header__badge i {
    font-size: 1rem;
}

.states-explorer-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.states-explorer-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Map Container */
.states-map-container {
    margin-bottom: 4rem;
}

.states-map-wrapper {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.states-map-wrapper:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #00d084;
}

.states-map-header {
    text-align: center;
    margin-bottom: 2rem;
}

.states-map-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.states-map-header p {
    color: #666;
    font-size: 1rem;
}

.states-map-preview {
    position: relative;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.states-map-preview:hover {
    transform: scale(1.02);
}

.states-map-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
}

.states-map-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: grayscale(30%);
}

.states-map-preview:hover .states-map-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.states-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.states-map-preview:hover .states-map-overlay {
    opacity: 1;
}

.states-map-overlay__content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.states-map-preview:hover .states-map-overlay__content {
    transform: translateY(0);
}

.states-map-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00d084;
}

.states-map-overlay__content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.states-map-overlay__content p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Featured States */
.featured-states {
    margin-top: 3rem;
}

.featured-states__title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.featured-states__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.featured-state {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.featured-state::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #00d084;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.featured-state:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #00d084;
}

.featured-state:hover::before {
    transform: scaleY(1);
}

.featured-state__flag {
    font-size: 2rem;
    flex-shrink: 0;
}

.featured-state__content {
    flex: 1;
}

.featured-state__content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.featured-state__content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.featured-state__arrow {
    color: #999;
    transition: all 0.3s ease;
}

.featured-state:hover .featured-state__arrow {
    color: #00d084;
    transform: translateX(3px);
}

/* Features Grid */
.states-features {
    margin-bottom: 4rem;
}

.states-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.states-feature {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.states-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #00d084;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.states-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #00d084;
}

.states-feature:hover::before {
    transform: scaleX(1);
}

.states-feature__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(0, 208, 132, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d084;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.states-feature:hover .states-feature__icon {
    background: #00d084;
    color: white;
    transform: scale(1.1);
}

.states-feature__content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.states-feature__content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Call to Action */
.states-cta {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.states-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.02) 0%, rgba(0, 208, 132, 0.05) 100%);
    z-index: 1;
}

.states-cta__content,
.states-cta__actions {
    position: relative;
    z-index: 2;
}

.states-cta__content {
    margin-bottom: 2rem;
}

.states-cta__content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.states-cta__content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.states-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.states-btn--primary {
    background: #00d084;
    color: white;
    border: 1px solid #00d084;
}

.states-btn--primary:hover {
    background: #00b572;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 208, 132, 0.3);
    color: white;
    text-decoration: none;
}

.states-btn i:first-child {
    font-size: 1.1rem;
}

.states-btn i:last-child {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .states-explorer-section {
        padding: 3rem 0;
    }

    .states-explorer-header {
        margin-bottom: 3rem;
    }

    .states-map-wrapper {
        padding: 2rem;
    }

    .states-map-image {
        height: 250px;
    }

    .featured-states__grid {
        grid-template-columns: 1fr;
    }

    .states-features__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .states-feature {
        padding: 1.5rem;
    }

    .states-cta {
        padding: 2rem;
    }

    .states-btn {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
}

/* Market Entry Modern Section - Minimal & Interactive */
.market-entry-modern {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.market-entry-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.01) 0%, rgba(0, 208, 132, 0.03) 100%);
    z-index: 1;
}

.market-entry-modern .container {
    position: relative;
    z-index: 2;
}

/* Header */
.market-entry-header {
    text-align: center;
    margin-bottom: 5rem;
}

.market-entry-badge {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.market-entry-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #00d084;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.market-entry-badge__line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #00d084 50%, transparent 100%);
    animation: pulse-line 2s ease-in-out infinite;
}

@keyframes pulse-line {

    0%,
    100% {
        opacity: 0.5;
        transform: scaleX(1);
    }

    50% {
        opacity: 1;
        transform: scaleX(1.2);
    }
}

.market-entry-title-container {
    max-width: 900px;
    margin: 0 auto;
}

.market-entry-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.market-entry-title__main {
    display: inline-block;
    margin: 0 0.5rem;
}

.market-entry-title__highlight {
    display: inline-block;
    color: #00d084;
    position: relative;
    margin: 0 0.5rem;
}

.market-entry-title__highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #00d084 50%, transparent 100%);
    animation: highlight-expand 3s ease-in-out infinite;
}

@keyframes highlight-expand {

    0%,
    100% {
        transform: scaleX(0.3);
        opacity: 0.5;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

.market-entry-subtitle {
    max-width: 700px;
    margin: 0 auto;
}

.market-entry-subtitle p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

/* Interactive Journey */
.market-journey {
    margin-bottom: 5rem;
}

.market-journey__timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.timeline-progress {
    height: 100%;
    background: linear-gradient(90deg, #00d084 0%, #00b572 100%);
    width: 0%;
    transition: width 2s ease-in-out;
    animation: timeline-flow 8s ease-in-out infinite;
}

@keyframes timeline-flow {
    0% {
        width: 0%;
    }

    33% {
        width: 33%;
    }

    66% {
        width: 66%;
    }

    100% {
        width: 100%;
    }
}

.journey-step {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: step-appear 1s ease-out forwards;
}

.journey-step:nth-child(2) {
    animation-delay: 0.3s;
}

.journey-step:nth-child(3) {
    animation-delay: 0.6s;
}

.journey-step:nth-child(4) {
    animation-delay: 0.9s;
}

@keyframes step-appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.journey-step__marker {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 2rem;
    z-index: 2;
}

.journey-step__number {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #999;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    background: #ffffff;
    transition: all 0.4s ease;
}

.journey-step__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 208, 132, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #00d084;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
}

.journey-step:hover .journey-step__number {
    border-color: #00d084;
    color: #00d084;
    transform: scale(1.05);
}

.journey-step:hover .journey-step__icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    background: #00d084;
    color: white;
}

.journey-step__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.journey-step__header {
    margin-bottom: 2rem;
}

.journey-step__header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.journey-step__header p {
    color: #666;
    font-size: 1rem;
}

.journey-step__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.journey-step:hover .journey-step__details {
    opacity: 1;
    transform: translateY(0);
}

.step-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #00d084;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #00d084;
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.step-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.step-card li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.step-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00d084;
    font-weight: 600;
}

.step-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00d084;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.step-link:hover {
    color: #00b572;
    text-decoration: none;
    transform: translateX(3px);
}

/* Stats Section */
.market-stats {
    margin-bottom: 5rem;
    padding: 3rem 0;
    background: #f8f9fa;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
}

.market-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.market-stat {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.market-stat::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: #e0e0e0;
}

.market-stat:last-child::after {
    display: none;
}

.market-stat__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00d084;
    line-height: 1;
    margin-bottom: 0.5rem;
    animation: count-up 2s ease-out;
}

.market-stat__label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.market-stat__desc {
    font-size: 0.8rem;
    color: #666;
}

/* CTA Section */
.market-entry-cta {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.market-entry-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.02) 0%, rgba(0, 208, 132, 0.05) 100%);
    z-index: 1;
}

.market-entry-cta__content,
.market-entry-cta__actions {
    position: relative;
    z-index: 2;
}

.market-entry-cta__content {
    margin-bottom: 2rem;
}

.market-entry-cta__content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.market-entry-cta__content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.market-entry-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.market-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.market-cta-btn--primary {
    background: #00d084;
    color: white;
    border: 1px solid #00d084;
}

.market-cta-btn--primary:hover {
    background: #00b572;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 208, 132, 0.3);
    color: white;
    text-decoration: none;
}

.market-cta-btn--secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #e0e0e0;
}

.market-cta-btn--secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #00d084;
    transition: left 0.3s ease;
    z-index: -1;
}

.market-cta-btn--secondary:hover {
    color: white;
    border-color: #00d084;
    transform: translateY(-3px);
    text-decoration: none;
}

.market-cta-btn--secondary:hover::before {
    left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .market-entry-modern {
        padding: 4rem 0;
    }

    .market-entry-header {
        margin-bottom: 3rem;
    }

    .market-entry-badge {
        flex-direction: column;
        gap: 1rem;
    }

    .market-entry-badge__line {
        width: 40px;
    }

    .journey-step__marker {
        width: 120px;
        height: 120px;
    }

    .journey-step__icon {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .journey-step__details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .market-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .market-stat::after {
        display: none;
    }

    .market-entry-cta {
        padding: 2rem;
    }

    .market-entry-cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .market-cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Interactive Animations */
@media (prefers-reduced-motion: no-preference) {
    .journey-step {
        cursor: pointer;
    }

    .journey-step:hover .journey-step__marker {
        animation: marker-pulse 1s ease-in-out;
    }

    @keyframes marker-pulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }
    }
}

/* Market Entry Full Width Section - Clean & Minimal */
.market-entry-fullwidth {
    background: #ffffff;
    position: relative;
}

/* Header */
.market-entry-header {
    padding: 4rem 0;
    text-align: center;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.market-entry-badge {
    margin-bottom: 2rem;
}

.market-entry-badge span {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #00d084;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.5rem 2rem;
    border: 1px solid #00d084;
    border-radius: 25px;
    background: rgba(0, 208, 132, 0.05);
}

.market-entry-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.market-entry-title .highlight {
    color: #00d084;
    position: relative;
}

.market-entry-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: #00d084;
    opacity: 0.3;
}

.market-entry-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Journey Steps Full Width */
.market-journey-fullwidth {
    position: relative;
}

.journey-timeline {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}

.timeline-connector {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #e0e0e0 0%, #00d084 50%, #e0e0e0 100%);
    transform: translateX(-50%);
}

.journey-step-full {
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

.journey-step-alt {
    background: #f8f9fa;
}

.journey-step-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

.step-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border: 3px solid #00d084;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #00d084;
    flex-shrink: 0;
}

.step-details h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.step-details p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.step-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #00d084;
    border-radius: 15px 15px 0 0;
}

.step-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-card-header i {
    width: 40px;
    height: 40px;
    background: rgba(0, 208, 132, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d084;
    font-size: 1.1rem;
}

.step-card-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.step-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.step-card-list li {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
}

.step-card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00d084;
    font-weight: 600;
    font-size: 1.2rem;
}

.step-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00d084;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid #00d084;
    border-radius: 25px;
    background: rgba(0, 208, 132, 0.05);
    transition: all 0.3s ease;
}

.step-card-link:hover {
    background: #00d084;
    color: white;
    text-decoration: none;
}

/* Stats Section */
.market-stats-fullwidth {
    padding: 4rem 0;
    background: #1a1a1a;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #00d084;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    opacity: 0.9;
}

/* CTA Section */
.market-entry-cta-fullwidth {
    padding: 4rem 0;
    background: #f8f9fa;
    text-align: center;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: #00d084;
    color: white;
    border: 1px solid #00d084;
}

.cta-btn-primary:hover {
    background: #00b572;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 208, 132, 0.3);
}

.cta-btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #e0e0e0;
}

.cta-btn-secondary:hover {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .journey-step-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .step-info {
        justify-content: center;
    }

    .timeline-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .market-entry-header {
        padding: 3rem 0;
    }

    .journey-step-full {
        padding: 3rem 0;
    }

    .step-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-info {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* About KOBİPORT Section - Site Theme Consistent */
.about-kobiport-section {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
}

/* Header */
.about-kobiport-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-badge {
    margin-bottom: 2rem;
}

.about-badge span {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #00d084;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.5rem 2rem;
    border: 1px solid #00d084;
    border-radius: 25px;
    background: rgba(0, 208, 132, 0.05);
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.about-title span {
    color: #00d084;
    font-style: italic;
}

/* Main Content */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content__main {
    margin-bottom: 4rem;
}

.about-description {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.about-description__lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.about-description__text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* KOBİ 50 Info */
.kobi50-info {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.kobi50-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #00d084;
    border-radius: 20px 20px 0 0;
}

.kobi50-info__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.kobi50-badge {
    background: #00d084;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.kobi50-info__header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.kobi50-info p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Support Section */
.about-support {
    margin-bottom: 4rem;
}

.about-support__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.about-support__subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.support-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.support-feature {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.support-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #00d084;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.support-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #00d084;
}

.support-feature:hover::before {
    transform: scaleX(1);
}

.support-feature__icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 208, 132, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #00d084;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.support-feature:hover .support-feature__icon {
    background: #00d084;
    color: white;
    transform: scale(1.1);
}

.support-feature__content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.support-feature__content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* CTA Section */
.about-cta {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.02) 0%, rgba(0, 208, 132, 0.05) 100%);
    z-index: 1;
}

.about-cta__content,
.about-cta__actions {
    position: relative;
    z-index: 2;
}

.about-cta__content {
    margin-bottom: 2rem;
}

.about-cta__content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.about-cta__content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.about-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.about-btn--primary {
    background: #00d084;
    color: white;
    border: 1px solid #00d084;
}

.about-btn--primary:hover {
    background: #00b572;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 208, 132, 0.3);
}

.about-btn--secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #e0e0e0;
}

.about-btn--secondary:hover {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-kobiport-section {
        padding: 3rem 0;
    }

    .about-kobiport-header {
        margin-bottom: 3rem;
    }

    .about-content__main {
        margin-bottom: 3rem;
    }

    .kobi50-info {
        padding: 2rem;
    }

    .kobi50-info__header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .support-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-cta {
        padding: 2rem;
    }

    .about-cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .about-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Kullanıcıdan Gelen Ekstra Mobil Responsive Ayarlamaları */
.btn__text {
    font-size: 23px;
    padding: 0 2px 0 8px;
}

@media (max-width: 768px) {
    p {
        /* Not: Kullanıcı tarafından istenen 5.125em çok büyük olduğu için 1.125em olarak ayarlandı. */
        font-size: 1.125em;
    }
}

@media (max-width: 480px) {
    .hero-video {
        height: 60vh;
    }
}

.events-section__header.text-center {
    padding-top: 51px;
}

a.btn.w-inline-block {
    margin-bottom: 30px;
}

/* Mobil için ek growing-tile ayarı */
@media (max-width: 768px) {
    .growing-tile__text {
        flex-grow: 1;
        max-width: 67em;
    }
}