/* Main Stylesheet for Pınar Musaoğlu Website */
:root {
    --primary-color: #111;
    --text-color: #6b6b6b;
    --bg-color: #fff;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --page-gutter: 24px;
}

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

html {
    overflow-x: clip; /* hidden breaks position:sticky */
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: clip !important;
    /* iOS Safari: safe area for notch/home indicator */
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
    padding-bottom: env(safe-area-inset-bottom, 0);
}

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

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--page-gutter);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Header */
.site-header {
    background: #ffffff;
    /* White background as per reference */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
    padding: 0;
    padding-top: env(safe-area-inset-top, 0);
    height: 90px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    /* iOS Safari: reduce fixed-position jitter */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.site-header.scrolled {
    height: 70px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 40px;
}

/* Logo / menu / sağ aksiyonlar arası daha dengeli dağılım */
.header-left {
    flex: 0 0 auto;
}

.header-center {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.header-right {
    flex: 0 0 auto;
}

/* Header Left: Logo */
.header-left .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    gap: 25px;
    /* Increased from 15px */
}

.logo-pm {
    font-family: 'Times New Roman', serif;
    /* Or a specific serif font if available */
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
}

.logo-divider {
    width: 1px;
    height: 45px;
    /* Slightly taller */
    background-color: var(--primary-color);
    display: block;
}

.logo-text {
    font-family: var(--font-main);
    font-size: 11px;
    /* Slightly larger */
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Increased letter spacing */
    display: block;
}

/* Header Center: Navigation */
.header-center ul {
    display: flex;
    list-style: none;
    gap: 45px;
    /* Increased from 30px */
    margin: 0;
    padding: 0;
}

.header-center a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    /* Slightly larger */
    letter-spacing: 2px;
    /* Increased letter spacing */
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

.header-center a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.header-center a:hover::after,
.header-center a.active::after {
    width: 100%;
}

/* Header Right: Actions */
.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
    /* Increased from 20px */
}

.header-socials {
    display: flex;
    gap: 15px;
    /* Increased from 10px */
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-icon:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.search-trigger {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--primary-color);
    padding: 5px;
    transition: opacity 0.3s;
}

.search-trigger:hover {
    opacity: 0.7;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    z-index: 1100;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 120px 24px 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.open {
    opacity: 1;
    visibility: visible;
}

.search-overlay-inner {
    width: 100%;
    max-width: 560px;
}

.search-overlay-form {
    position: relative;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 12px;
}

.search-overlay-input {
    width: 100%;
    padding: 16px 48px 16px 0;
    font-size: 24px;
    font-family: var(--font-main);
    color: var(--primary-color);
    border: none;
    background: none;
    outline: none;
}

.search-overlay-input::placeholder {
    color: var(--text-color);
    opacity: 0.5;
}

.search-overlay-close {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.search-overlay-close:hover {
    opacity: 0.7;
}

.search-overlay-results {
    margin-top: 20px;
    max-height: 50vh;
    overflow-y: auto;
}

.search-overlay-result-item {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: color 0.2s, padding-left 0.2s;
}

.search-overlay-result-item:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.search-overlay-no-results {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

.search-overlay-hint {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.8;
}

/* Menu Toggle (Hamburger) - SVG, hover'da X'e dönüşen animasyonlu ikon */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
    margin-left: 10px;
    color: var(--primary-color);
    transition: color 0.25s ease;
}

.menu-toggle-icon {
    width: 24px;
    height: 16px;
    display: block;
    pointer-events: none;
}

.menu-toggle-line {
    transition: transform 0.35s ease, opacity 0.25s ease;
    transform-origin: 12px 8px;
}

.menu-toggle .line-1,
.menu-toggle .line-2,
.menu-toggle .line-3 {
    transform-origin: 12px 8px;
}

.menu-toggle.active .line-1 {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active .line-2 {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .line-3 {
    transform: translateY(-6px) rotate(-45deg);
}

@media (hover: hover) and (pointer: fine) {
    .menu-toggle:hover .line-1 {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle:hover .line-2 {
        opacity: 0;
        transform: scaleX(0);
    }

    .menu-toggle:hover .line-3 {
        transform: translateY(-6px) rotate(-45deg);
    }
}

/* CTA Button */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.header-cta:hover {
    background-color: #333;
    transform: translateY(-1px);
}

.diagonal-arrow {
    transform: rotate(-45deg);
    font-size: 10px;
}

/* Responsive Logic */
@media (max-width: 1200px) {
    .desktop-nav {
        display: none;
        /* Hide center nav on tablets/smaller desktops */
    }
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 900;
}

.mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-inner {
    background: #ffffff;
    width: 80%;
    max-width: 340px;
    height: 100%;
    padding: 80px 32px 32px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.mobile-menu-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-color);
    opacity: 0.8;
}

.mobile-menu-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
}

.mobile-nav {
    margin-top: 28px;
    flex: 1;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
}

.mobile-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.25s ease;
}

.mobile-nav a:hover::before,
.mobile-nav a.active::before {
    width: 14px;
}

.mobile-nav a.active {
    color: var(--primary-color);
}

.mobile-nav a i {
    font-size: 15px;
    margin-right: 10px;
}

.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.mobile-menu-socials {
    display: flex;
    gap: 10px;
}

.mobile-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    color: var(--primary-color);
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mobile-social-icon:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.mobile-menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-menu-cta:hover {
    background: #333;
    transform: translateY(-1px);
}

@media (min-width: 769px) {
    .mobile-menu-overlay {
        display: none;
    }
    .mobile-menu-overlay.open {
        display: flex;
    }
}

@media (max-width: 768px) {

    .desktop-only-flex,
    .header-cta {
        display: none;
        /* Hide social, search, cta on mobile */
    }

    .site-header {
        height: 70px;
        padding: 0 15px;
    }

    .logo-pm {
        font-size: 30px;
    }

    .logo-divider {
        height: 30px;
    }

    .logo-text {
        font-size: 9px;
    }

    .menu-toggle {
        margin-left: 0;
        /* Reset margin since it's the only item on right */
    }

    .ref-item {
        flex: 0 0 50%;
    }
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    transition: color 0.3s;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    /* iOS Safari: -webkit-fill-available / 100dvh avoid jump when URL bar hides */
    height: 100vh;
    height: 100dvh;
    min-height: -webkit-fill-available;
    min-height: 700px;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
    /* Remove margin since header is fixed */
}

.hero-slide {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-bg.desktop-bg {
    display: block;
}

.hero-bg.mobile-bg {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 90px;
    max-width: 1200px;
}

.hero-text-wrapper {
    max-width: 60%;
}

.hero-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 300;
    color: var(--primary-color);
    margin: 0 0 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-main);
}

.hero-title strong {
    font-weight: 700;
}

.hero-desc {
    font-size: 17px;
    line-height: 1.55;
    color: var(--primary-color);
    margin: 0 0 16px;
    font-family: var(--font-main);
}

.hero-text {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-text strong {
    font-weight: 700;
}

.signature-wrapper {
    margin-top: 30px;
}

.signature {
    height: 80px;
    width: auto;
    opacity: 0.8;
}

.hero-badges {
    position: absolute;
    bottom: 10px;
    /* Header logosu / container içeriği ile aynı sol çizgiye hizala */
    left: max(var(--page-gutter), calc(50% - 600px + var(--page-gutter)));
    display: flex;
    gap: 20px;
    z-index: 10;
}

.hero-badges img {
    height: 60px;
    width: auto;
    filter: grayscale(0%);
    opacity: 1;
}

.hero-badges img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-bg.desktop-bg {
        display: none;
    }

    .hero-bg.mobile-bg {
        display: block;
        /* Görseldeki yüz metnin altında kalsın; üst kısım boş alana denk gelsin */
        background-position: 50% 40%;
    }

    .hero-slide {
        align-items: flex-start;
    }

    .hero-content {
        padding-top: 70px;
        display: flex;
        align-items: flex-start;
    }

    .hero-text-wrapper {
        max-width: 100%;
        text-align: center;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 10px;
        letter-spacing: 0.5px;
    }

    .hero-desc {
        font-size: 14px;
        line-height: 1.35;
        margin-bottom: 6px;
    }

    .hero-text-wrapper .hero-desc:last-of-type {
        margin-bottom: 0;
    }

    .signature-wrapper {
        margin-top: 10px;
    }

    .signature {
        height: 44px;
        max-width: 180px;
    }

    .hero-text {
        font-size: 28px;
        color: #fff;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .hero-badges {
        left: 50%;
        transform: translateX(-50%);
        bottom: 6vh;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
    }

    .hero-badges img {
        height: 48px;
    }

    .logo img {
        height: 35px;
    }
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 40px;
    text-align: center;
}

.service-card {
    padding: 30px;
    background: #fff;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.icon-wrapper {
    margin-bottom: 20px;
}

.icon-wrapper img {
    height: 60px;
    width: auto;
}

.service-card h4 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-link {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-link:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.highlight {
    font-weight: 400;
}

/* Features başlık: küçük adımlar → büyük değişim (metni temsil eden, döngülü efekt) */
.section-header-steps {
    margin-bottom: 48px;
}

.section-title-steps {
    display: block;
    margin-bottom: 20px !important;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-color);
}

.section-title-steps .title-small {
    font-size: 0.85em;
    font-weight: 500;
    color: var(--text-color);
    opacity: 0.9;
}

.section-title-steps .title-big {
    display: inline-block;
    font-size: 1.05em;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0.15em;
}

.section-title-steps .title-journey {
    font-weight: 500;
    color: var(--text-color);
}

/* Adım çizgisi: küçük adımlar sırayla, sonra büyük değişim – loop */
.step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}

.step-visual .step {
    display: block;
    height: 4px;
    border-radius: 2px;
    background: rgba(17, 17, 17, 0.12);
    transition: background 0.35s ease, transform 0.35s ease;
}

.step-visual .step-1 { width: 20px; animation: stepFill 2.4s ease-in-out infinite; }
.step-visual .step-2 { width: 20px; animation: stepFill 2.4s ease-in-out 0.15s infinite; }
.step-visual .step-3 { width: 20px; animation: stepFill 2.4s ease-in-out 0.3s infinite; }
.step-visual .step-4 { width: 20px; animation: stepFill 2.4s ease-in-out 0.45s infinite; }
.step-visual .step-5 { width: 20px; animation: stepFill 2.4s ease-in-out 0.6s infinite; }
.step-visual .step-big {
    width: 48px;
    margin-left: 4px;
    animation: stepFillBig 2.4s ease-in-out 0.75s infinite;
}

@keyframes stepFill {
    0%, 25% { background: rgba(17, 17, 17, 0.12); transform: scaleY(1); }
    35% { background: var(--primary-color); transform: scaleY(1.4); }
    45%, 100% { background: rgba(17, 17, 17, 0.12); transform: scaleY(1); }
}

@keyframes stepFillBig {
    0%, 30% { background: rgba(17, 17, 17, 0.12); transform: scaleY(1); }
    40% { background: var(--primary-color); transform: scaleY(1.5); box-shadow: 0 0 12px rgba(17, 17, 17, 0.2); }
    55%, 100% { background: rgba(17, 17, 17, 0.12); transform: scaleY(1); box-shadow: none; }
}

@media (max-width: 768px) {
    .section-title-steps {
        font-size: 26px;
    }
}

.section-desc {
    margin-bottom: 30px;
    font-size: 16px;
    color: var(--text-color);
    max-width: 500px;
    line-height: 1.6;
}

/* Programs Section – desktop: 2 kolon grid */
.programs-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--page-gutter);
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.btn-dark {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-dark:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Accordion */
.programs-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 320px;
}

.programs-accordion-scroll {
    flex: 1;
    min-width: 0;
    min-height: 0;
    max-height: 280px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.programs-accordion-scroll::-webkit-scrollbar {
    display: none;
}

/* Alt: tek satır yatay navigasyon (yukarı | noktalar | aşağı) */
.programs-accordion-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 8px 8px;
    flex-shrink: 0;
    border-top: 1px solid #eee;
    background: linear-gradient(to bottom, #fafafa 0%, #fff 100%);
}

.programs-accordion-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.programs-accordion-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: scale(1.08);
}

.programs-accordion-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.programs-accordion-btn i {
    font-size: 11px;
}

.programs-accordion-dots {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.programs-accordion-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.programs-accordion-dot:hover {
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.08);
    transform: scale(1.2);
}

.programs-accordion-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.accordion-header {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-main);
}

.accordion-header i {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 240px;
}

.accordion-content p {
    padding-bottom: 20px;
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
}

.accordion-content p:last-of-type {
    padding-bottom: 8px;
}

.accordion-detail-link {
    display: inline-block;
    padding: 8px 16px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-color);
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.accordion-detail-link:hover {
    color: #fff;
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Stats */
.stats-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding-top: 50px;
    border-top: 1px solid #f0f0f0;
}

.stat-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-size: 22px;
    margin-bottom: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.06);
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.2);
}

.stat-number {
    display: block;
    font-size: 50px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number .plus {
    font-size: 30px;
    vertical-align: super;
}

.stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
    line-height: 1.3;
}

/* Features/Tabs Section */
.features-section {
    position: relative;
    background: #f9f9f9;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(1);
    opacity: 0.12;
    pointer-events: none;
}

.features-section[data-active-tab="tab1"]::before {
    background-image: url('../images/davranis-bilimi.jpg');
}

.features-section[data-active-tab="tab2"]::before {
    background-image: url('../images/agency7.jpg');
}

.features-section[data-active-tab="tab3"]::before {
    background-image: url('../images/agency.jpg');
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    position: relative;
    overflow: hidden;
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Aktif tab için belirgin süre barı: önce ince bir track, üstünde dolan renkli bar */
.tab-btn::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 3px;
    width: 100%;
    background: rgba(0, 0, 0, 0.06);
}

.tab-btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 3px;
    width: 0;
    background: var(--primary-color);
}

.tab-btn.active::after {
    animation: tabProgress var(--tab-auto-delay, 6000ms) linear forwards;
}

@keyframes tabProgress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
}

.tab-content.active {
    display: block;
    animation: tabFadeUp 0.6s ease forwards;
}

@keyframes tabFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tab-image {
    position: relative;
    overflow: visible;
}

.tab-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.25s ease-out;
    will-change: transform;
}

.tab-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.tab-text p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-arrow:hover {
    background: var(--primary-color);
    color: #fff;
}

.tab-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        min-width: 0;
    }

    /* Tüm sayfalarda: fade-left/fade-right reveal taşma yapmasın */
    .reveal[data-reveal="fade-left"],
    .reveal[data-reveal="fade-right"] {
        transform: none !important;
        opacity: 1 !important;
    }

    /* Tüm sayfalarda: grid/flex dikey ortalı olsun */
    .about-grid,
    .kurumsal-intro-grid,
    .contact-layout,
    .programs-category-grid,
    .why-cards,
    .podcast-intro-layout,
    .atolye-grid-container {
        align-items: center;
    }

    .programs-section .container,
    .podcast-section .container {
        min-width: 0;
    }

    /* ===== Programs: mobilde tam ortalı – flex, tek kaynak padding ===== */
    .programs-section {
        overflow-x: hidden;
        box-sizing: border-box;
        padding-left: var(--page-gutter);
        padding-right: var(--page-gutter);
    }

    .programs-section .programs-section__container {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .programs-section .reveal {
        transform: none !important;
        opacity: 1 !important;
    }

    /* Grid kaldır, flex ile tek sütun + ortalı içerik */
    .programs-section .programs-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        width: 100%;
        max-width: 100%;
        margin-bottom: 80px;
        grid-template-columns: unset;
    }

    .programs-section .programs-intro {
        width: 100%;
        max-width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .programs-section .programs-intro .section-title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .programs-section .programs-intro .section-desc {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        max-width: 100%;
    }

    .programs-section .programs-intro .btn-dark {
        display: inline-block;
    }

    .programs-section .programs-accordion-wrapper {
        width: 100%;
        max-width: 100%;
        max-height: none;
        box-sizing: border-box;
    }

    .programs-accordion-scroll {
        max-height: 320px;
    }

    .programs-accordion-nav {
        padding: 10px 6px 6px;
        gap: 12px;
    }

    .stats-row {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .section {
        padding: 60px 0;
    }

    .section.programs-section {
        padding-left: var(--page-gutter);
        padding-right: var(--page-gutter);
    }

    .section-title {
        font-size: 28px;
    }

    .tab-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .tabs-nav {
        flex-direction: column;
        gap: 10px;
    }

    .tab-btn {
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
    }

    .btn-arrow {
        /* Center on mobile if text is centered */
        margin: 0 auto;
    }
}

/* Podcast Section */
.podcast-section {
    background-color: #fff;
}

.podcast-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.podcast-image img {
    width: auto;
    max-width: 200px;
    height: auto;
    max-height: 200px;
    display: block;
    margin-bottom: 20px;
}

.podcast-content {
    grid-column: span 1;
}

.podcast-iframe {
    grid-column: span 2;
    margin-top: 40px;
}

.podcast-platforms {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.platform-btn:hover {
    background: #f0f0f0;
}

@media (min-width: 992px) {
    .podcast-wrapper {
        grid-template-columns: auto 1fr;
    }

    .podcast-content {
        grid-column: span 1;
    }

    .podcast-iframe {
        grid-column: 2;
        grid-row: 1 / span 2;
        margin-top: 0;
        margin-left: 40px;
    }
}

@media (max-width: 768px) {
    .podcast-section .podcast-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
        min-width: 0;
        width: 100%;
    }

    .podcast-section .container {
        min-width: 0;
    }

    .podcast-section .podcast-image {
        text-align: center;
    }

    .podcast-section .podcast-image img {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .podcast-section .podcast-content {
        text-align: center;
    }

    .podcast-section .podcast-content .section-title {
        text-align: center !important;
    }

    .podcast-section .podcast-iframe {
        grid-column: 1;
        margin-top: 24px;
        margin-left: 0;
        min-width: 0;
    }

    .podcast-section .podcast-iframe iframe {
        max-width: 100%;
        box-sizing: border-box;
    }

    .podcast-section .podcast-platforms {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Programs & Hero: animated sınıfları yüzünden asla gizlenmesin */
.programs-section .programs-intro,
.programs-section .programs-accordion,
.hero-badges {
    opacity: 1;
}

/* References Section */
.references-section {
    background-color: #f9f9f9;
}

.references-slider {
    overflow-x: hidden;
    overflow-y: visible;
    min-width: 0;
}

.references-slider-reverse {
    margin-top: 16px;
}

.references-subtext {
    margin-top: 12px;
    font-size: 15px;
    color: var(--text-color);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.references-grid {
    display: flex;
    gap: 24px;
    align-items: center;
    will-change: transform;
    animation: referencesScroll 20s linear infinite;
    min-width: 0;
}

.references-grid-reverse {
    animation-name: referencesScroll;
    animation-duration: 20s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: reverse;
}

.ref-item {
    flex: 0 0 180px;
    width: 180px;
    min-width: 180px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.ref-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.ref-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes referencesScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .references-grid {
        animation-duration: 12s;
    }
    .references-grid-reverse {
        animation-duration: 12s;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(180deg, #f5f5f5 0%, #fafafa 100%);
    border-top: 1px solid #eee;
}

.cta-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06), 0 2px 12px rgba(0, 0, 0, 0.04);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0;
    overflow: hidden;
}

.cta-main {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 44px 40px 44px 44px;
    min-width: 0;
    text-align: left;
}

.cta-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--primary-color);
    color: #fff;
    font-size: 22px;
}

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

.cta-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.cta-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    line-height: 1.35;
}

.cta-subtext {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.88;
    margin: 0;
    line-height: 1.55;
}

.cta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 44px 44px 44px 32px;
    min-width: 0;
    border-left: 1px solid #f0f0f0;
}

.cta-button {
    padding: 14px 28px;
    font-size: 15px;
    white-space: nowrap;
}

.cta-note {
    font-size: 11px;
    color: var(--text-color);
    opacity: 0.6;
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .cta-inner {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .cta-main {
        flex-direction: column;
        padding: 36px 24px 24px;
        text-align: center;
    }

    .cta-action {
        border-left: none;
        border-top: 1px solid #f0f0f0;
        padding: 24px 24px 36px;
    }

    .cta-title {
        font-size: 20px;
    }
}

@media (max-width: 360px) {
    .services-grid {
        gap: 24px;
    }

    .service-card {
        padding: 24px 20px;
    }

    .cta-main {
        padding: 28px 18px 20px;
    }

    .cta-action {
        padding: 20px 18px 28px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        text-align: center;
        white-space: normal;
        line-height: 1.35;
    }
}

/* Footer */
.site-footer {
    background-color: #0d0d0d;
    color: #fff;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer .container {
    padding-top: 40px;
    padding-bottom: 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding-bottom: 28px;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-logo {
    display: inline-block;
    line-height: 0;
}

.footer-logo img {
    display: block;
    height: 44px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.footer-badges img {
    height: 42px;
    width: auto;
    opacity: 0.92;
    transition: opacity 0.25s ease;
}

.footer-badges img:hover {
    opacity: 1;
}

.footer-tagline {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-weight: 500;
}

.footer-social {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    transition: background 0.25s ease, transform 0.2s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* Footer: mobilde dikey mizanpaj */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
        padding-bottom: 24px;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        padding-top: 20px;
    }
}

/* Bireysel sayfası */
.bireysel-page {
    --bireysel-border: #e9e9ea;
    --bireysel-surface: #f7f8fa;
    --bireysel-focus: #111;
}

.bireysel-page .bireysel-hero {
    padding: 110px 0 72px;
    border-bottom: none;
    background:
        radial-gradient(circle at 92% 12%, rgba(17, 17, 17, 0.08), transparent 36%),
        linear-gradient(165deg, #f5f6f8 0%, #ffffff 62%);
}

.bireysel-page .bireysel-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    align-items: start;
}

.bireysel-page .bireysel-hero-main {
    max-width: 660px;
}

.bireysel-page .bireysel-hero-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 0 0 12px;
    opacity: 0.9;
}

.bireysel-page .page-hero-title {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.bireysel-page .page-hero-desc {
    font-size: 18px;
    line-height: 1.72;
    max-width: 620px;
    opacity: 0.95;
}

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

.bireysel-page .bireysel-hero-actions .btn {
    min-height: 46px;
}

.bireysel-page .bireysel-hero-signals {
    display: grid;
    gap: 12px;
}

.bireysel-page .hero-signal-card {
    background: #fff;
    border: 1px solid var(--bireysel-border);
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 12px 28px rgba(10, 14, 25, 0.06);
}

.bireysel-page .hero-signal-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.bireysel-page .hero-signal-text {
    margin: 0;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.55;
}

.bireysel-page .bireysel-atolye-section {
    padding-top: 44px;
}

.bireysel-page .program-explorer {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.bireysel-page .bireysel-section-header,
.bireysel-page .program-explorer-heading {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 760px;
}

.bireysel-page .bireysel-section-eyebrow {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: #575757;
}

.bireysel-page .bireysel-section-title {
    margin: 0;
    font-size: 34px;
    line-height: 1.22;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.bireysel-page .bireysel-section-desc {
    margin: 0;
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.7;
}

.bireysel-page .program-toolbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 18px;
    padding: 16px;
    border: 1px solid var(--bireysel-border);
    border-radius: 14px;
    background: #fff;
}

.bireysel-page .program-filter-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bireysel-page .program-filter-tab {
    border: 1px solid #d7d7d8;
    background: #fff;
    color: #585858;
    border-radius: 999px;
    height: 40px;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background 280ms ease, color 280ms ease, border-color 280ms ease;
}

.bireysel-page .program-filter-tab.active,
.bireysel-page .program-filter-tab:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.bireysel-page .program-search {
    position: relative;
    display: flex;
    align-items: center;
    min-width: min(100%, 340px);
    flex: 1 1 260px;
}

.bireysel-page .program-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #767676;
    font-size: 13px;
}

.bireysel-page .program-search input {
    width: 100%;
    height: 42px;
    border: 1px solid #d6d6d7;
    border-radius: 999px;
    background: #fff;
    color: var(--primary-color);
    padding: 0 16px 0 38px;
    font-size: 14px;
    font-family: var(--font-main);
}

.bireysel-page .program-search input::placeholder {
    color: #8a8a8a;
}

.bireysel-page .program-search input:focus,
.bireysel-page .program-filter-tab:focus-visible,
.bireysel-page .faq-toggle:focus-visible,
.bireysel-page .atolye-btn:focus-visible,
.bireysel-page .past-programs-disclosure summary:focus-visible {
    outline: 2px solid var(--bireysel-focus);
    outline-offset: 2px;
}

.bireysel-page .program-results-count {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.02em;
}

.bireysel-page .atolye-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin: 0;
    padding: 0;
}

.bireysel-page .program-grid-active {
    margin-top: 2px;
}

.bireysel-page .past-programs-disclosure {
    border: 1px solid var(--bireysel-border);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.bireysel-page .past-programs-disclosure summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    padding: 15px 18px;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
}

.bireysel-page .past-programs-disclosure summary::-webkit-details-marker {
    display: none;
}

.bireysel-page .past-program-count {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #767676;
}

.bireysel-page .past-programs-disclosure[open] summary {
    border-bottom: 1px solid #ededee;
}

.bireysel-page .program-grid-past {
    padding: 20px;
}

.bireysel-page .program-empty-state {
    border: 1px dashed #d7d7d8;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    color: #666;
    font-size: 15px;
}

.bireysel-page .program-empty-state p {
    margin: 0;
}

.bireysel-page .atolye-card {
    background: #fff;
    border: 1px solid var(--bireysel-border);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    min-height: 100%;
    transition: border-color 280ms ease, transform 280ms ease, box-shadow 280ms ease;
}

.bireysel-page .atolye-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f0f0f0;
}

.bireysel-page .atolye-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 320ms ease;
}

.bireysel-page .atolye-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 8, 8, 0.56);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bireysel-page .atolye-card-inner {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.bireysel-page .atolye-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.bireysel-page .atolye-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 10px;
}

.bireysel-page .atolye-badge-available {
    background: var(--primary-color);
    color: #fff;
}

.bireysel-page .atolye-badge-sold {
    background: #ececee;
    color: #777;
}

.bireysel-page .atolye-card-date {
    margin: 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #666;
}

.bireysel-page .atolye-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bireysel-page .atolye-card-title {
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
    color: var(--primary-color);
}

.bireysel-page .atolye-card-description {
    margin: 0;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.65;
}

.bireysel-page .atolye-card-footer {
    border-top: 1px solid #f0f0f1;
    padding-top: 12px;
}

.bireysel-page .atolye-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    border-radius: 10px;
    border: 1px solid #d9d9db;
    color: var(--primary-color);
    background: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0 16px;
    transition: background 280ms ease, border-color 280ms ease, color 280ms ease;
}

.bireysel-page .atolye-btn-arrow {
    transition: transform 280ms ease;
}

.bireysel-page .atolye-btn:hover {
    border-color: var(--primary-color);
    background: #fafafa;
}

.bireysel-page .atolye-btn:hover .atolye-btn-arrow {
    transform: translateX(3px);
}

.bireysel-page .atolye-btn-disabled,
.bireysel-page .atolye-btn[disabled] {
    pointer-events: none;
    border-color: #e3e3e4;
    background: #f3f3f4;
    color: #8f8f90;
}

.bireysel-page .atolye-card[data-program-status="active"]:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 16px 36px rgba(10, 14, 25, 0.12);
}

.bireysel-page .atolye-card[data-program-status="active"]:hover .atolye-card-image img {
    transform: scale(1.035);
}

.bireysel-page .atolye-card[data-program-status="past"] {
    opacity: 0.86;
}

.bireysel-page .bireysel-process {
    background: var(--bireysel-surface);
}

.bireysel-page .process-steps {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.bireysel-page .process-step {
    position: relative;
    border: 1px solid var(--bireysel-border);
    border-radius: 14px;
    background: #fff;
    padding: 20px 18px 18px;
    min-height: 204px;
}

.bireysel-page .process-step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.bireysel-page .process-step-title {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 1.3;
    color: var(--primary-color);
}

.bireysel-page .process-step-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-color);
}

.bireysel-page .bireysel-faq {
    padding-top: 66px;
}

.bireysel-page .faq-accordion {
    margin-top: 26px;
    border: 1px solid var(--bireysel-border);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.bireysel-page .faq-item + .faq-item {
    border-top: 1px solid #ededee;
}

.bireysel-page .faq-question {
    margin: 0;
}

.bireysel-page .faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 0;
    background: #fff;
    color: var(--primary-color);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    text-align: left;
    cursor: pointer;
    padding: 18px 20px;
}

.bireysel-page .faq-toggle i {
    font-size: 13px;
    color: #727272;
    transition: transform 280ms ease;
}

.bireysel-page .faq-toggle[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.bireysel-page .faq-answer {
    padding: 0 20px 18px;
}

.bireysel-page .faq-answer p {
    margin: 0;
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
}

.bireysel-page .bireysel-cta-inner {
    align-items: start;
}

.bireysel-page .cta-benefits {
    margin: 12px 0 0;
    padding-left: 16px;
    display: grid;
    gap: 6px;
    font-size: 13px;
    color: #656565;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .bireysel-page .bireysel-hero-grid {
        grid-template-columns: 1fr;
    }

    .bireysel-page .bireysel-hero-signals {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bireysel-page .process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bireysel-page .program-toolbar {
        align-items: flex-start;
    }

    .bireysel-page .program-results-count {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .bireysel-page .bireysel-hero {
        padding: 100px 0 52px;
    }

    .bireysel-page .page-hero-title {
        font-size: 32px;
    }

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

    .bireysel-page .bireysel-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

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

    .bireysel-page .bireysel-section-title {
        font-size: 28px;
    }

    .bireysel-page .program-toolbar {
        flex-direction: column;
    }

    .bireysel-page .program-filter-tabs {
        width: 100%;
    }

    .bireysel-page .program-filter-tab {
        flex: 1 1 auto;
        min-width: 88px;
    }

    .bireysel-page .program-search {
        min-width: 100%;
    }

    .bireysel-page .atolye-grid-container {
        grid-template-columns: 1fr;
    }

    .bireysel-page .program-grid-past {
        padding: 14px;
    }

    .bireysel-page .process-steps {
        grid-template-columns: 1fr;
    }

    .bireysel-page .process-step {
        min-height: auto;
    }

    .bireysel-page .faq-toggle {
        font-size: 15px;
        padding: 16px;
    }

    .bireysel-page .faq-answer {
        padding: 0 16px 16px;
    }
}

/* ========== Hakkımda sayfası ========== */
.page-hero {
    padding: 120px 0 48px;
    background: linear-gradient(180deg, #f5f5f5 0%, #fafafa 100%);
    border-bottom: 1px solid #eee;
}

.page-hero-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.page-hero-desc {
    font-size: 17px;
    color: var(--text-color);
    margin: 0;
    max-width: 520px;
    line-height: 1.5;
}

.about-section {
    padding: 72px 0 80px;
    overflow: visible;
}

.about-section .container {
    overflow: visible;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 56px;
    overflow: visible;
}

.about-image {
    position: sticky;
    top: 110px;
    overflow: hidden;
    border-radius: 12px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    object-fit: cover;
    object-position: top center;
    aspect-ratio: 4 / 5;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.about-image-reveal img {
    opacity: 0;
    transform: scale(0.98);
}

.about-image-reveal.in-view img,
.about-image-reveal.reveal.is-visible img {
    opacity: 1;
    transform: scale(1);
    animation: aboutImageReveal 0.8s ease-out forwards;
}

@keyframes aboutImageReveal {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.about-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-name {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.about-subtitle {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
    margin: 0;
    font-weight: 500;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-color);
    margin: 0;
}

.about-badges {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 8px;
}

.about-badges img {
    height: 48px;
    width: auto;
    display: block;
}

.about-signature {
    margin-top: 8px;
}

.about-signature img {
    max-width: 160px;
    height: auto;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 36px;
    }

    .page-hero-title {
        font-size: 28px;
    }

    .page-hero-desc {
        font-size: 15px;
    }

    .about-section {
        padding: 48px 0 56px;
    }

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

    .about-image {
        position: static;
    }

    .about-image img {
        aspect-ratio: 4 / 3;
        object-position: top center;
    }

    .about-name {
        font-size: 26px;
    }

    .about-text p {
        font-size: 15px;
    }
}

/* ========== Hakkımda sayfası (Premium revamp) ========== */
.hakkimda-page {
    --hakkimda-border: #e7e8ea;
    --hakkimda-surface: #f6f7f9;
    --hakkimda-focus: #111;
}

.hakkimda-page .hakkimda-hero {
    padding: 110px 0 72px;
    border-bottom: none;
    background:
        radial-gradient(circle at 90% 12%, rgba(17, 17, 17, 0.09), transparent 34%),
        linear-gradient(168deg, #f4f5f7 0%, #ffffff 65%);
}

.hakkimda-page .hakkimda-hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 34px;
    align-items: start;
}

.hakkimda-page .hakkimda-hero-main {
    max-width: 680px;
}

.hakkimda-page .hakkimda-hero-eyebrow {
    margin: 0 0 12px;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary-color);
}

.hakkimda-page .page-hero-title {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hakkimda-page .page-hero-desc {
    font-size: 18px;
    line-height: 1.72;
    max-width: 620px;
}

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

.hakkimda-page .hakkimda-hero-actions .btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hakkimda-page .hakkimda-profile-card {
    border: 1px solid var(--hakkimda-border);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(10, 14, 25, 0.08);
}

.hakkimda-page .hakkimda-profile-image-wrap {
    aspect-ratio: 4 / 3;
    background: #f0f0f1;
}

.hakkimda-page .hakkimda-profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hakkimda-page .hakkimda-profile-content {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hakkimda-page .hakkimda-profile-name {
    margin: 0;
    font-size: 24px;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.hakkimda-page .hakkimda-profile-role {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #636363;
    font-weight: 600;
}

.hakkimda-page .hakkimda-hero-metrics {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.hakkimda-page .hakkimda-hero-metrics li {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #efeff0;
    background: #fafafb;
    display: grid;
    gap: 4px;
}

.hakkimda-page .hakkimda-hero-metrics strong {
    font-size: 13px;
    color: var(--primary-color);
    letter-spacing: 0.01em;
}

.hakkimda-page .hakkimda-hero-metrics span {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-color);
}

.hakkimda-page .hakkimda-shell {
    padding-top: 50px;
}

.hakkimda-page .hakkimda-shell-grid {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.hakkimda-page .hakkimda-side-nav-wrap {
    position: sticky;
    top: 112px;
}

.hakkimda-page .hakkimda-side-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--hakkimda-border);
    border-radius: 14px;
    background: #fff;
}

.hakkimda-page .hakkimda-side-nav a {
    text-decoration: none;
    color: #595959;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 12px;
    transition: background 240ms ease, color 240ms ease;
}

.hakkimda-page .hakkimda-side-nav a.is-active,
.hakkimda-page .hakkimda-side-nav a:hover {
    background: var(--primary-color);
    color: #fff;
}

.hakkimda-page .hakkimda-shell-main {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.hakkimda-page [data-about-section] {
    scroll-margin-top: 120px;
}

.hakkimda-page .hakkimda-block {
    border: 1px solid var(--hakkimda-border);
    border-radius: 16px;
    background: #fff;
    padding: 24px 24px 26px;
}

.hakkimda-page .hakkimda-block-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 760px;
}

.hakkimda-page .hakkimda-block-eyebrow {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: #5a5a5a;
}

.hakkimda-page .hakkimda-block-title {
    margin: 0;
    font-size: 32px;
    line-height: 1.22;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.hakkimda-page .hakkimda-block-desc {
    margin: 0;
    font-size: 16px;
    line-height: 1.68;
    color: var(--text-color);
}

.hakkimda-page .about-timeline {
    margin-top: 24px;
    display: grid;
    gap: 16px;
}

.hakkimda-page .about-timeline-item {
    border: 1px solid #ececee;
    border-radius: 14px;
    background: #fcfcfd;
    padding: 16px 16px 14px;
}

.hakkimda-page .about-timeline-period {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #666;
}

.hakkimda-page .about-timeline-title {
    margin: 0 0 8px;
    font-size: 21px;
    line-height: 1.3;
    color: var(--primary-color);
}

.hakkimda-page .about-timeline-summary {
    margin: 0;
    font-size: 14px;
    line-height: 1.68;
    color: var(--text-color);
}

.hakkimda-page .about-timeline-extra {
    margin-top: 10px;
}

.hakkimda-page .about-timeline-extra ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-color);
}

.hakkimda-page .about-timeline-toggle {
    margin-top: 10px;
    border: 0;
    background: none;
    color: var(--primary-color);
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
}

.hakkimda-page .about-expertise-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.hakkimda-page .about-expertise-card {
    border: 1px solid #ececee;
    border-radius: 14px;
    background: #fafafb;
    padding: 18px 16px;
    min-height: 170px;
}

.hakkimda-page .about-expertise-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    color: var(--primary-color);
    line-height: 1.3;
}

.hakkimda-page .about-expertise-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-color);
}

.hakkimda-page .about-proof-strip {
    margin-top: 24px;
    border: 1px solid #ececee;
    border-radius: 14px;
    background: #fcfcfd;
    padding: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.hakkimda-page .about-badges {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hakkimda-page .about-badges img {
    height: 48px;
    width: auto;
    display: block;
}

.hakkimda-page .about-signature img {
    max-width: 170px;
    height: auto;
    display: block;
    opacity: 0.9;
}

.hakkimda-page .about-ecosystem-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.hakkimda-page .about-ecosystem-card {
    border: 1px solid #ececee;
    border-radius: 14px;
    background: #fafafb;
    padding: 18px 16px;
}

.hakkimda-page .about-ecosystem-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
    color: var(--primary-color);
    line-height: 1.35;
}

.hakkimda-page .about-ecosystem-card ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 6px;
    font-size: 14px;
    line-height: 1.62;
    color: var(--text-color);
}

.hakkimda-page .about-faq-accordion {
    margin-top: 24px;
    border: 1px solid #ececee;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.hakkimda-page .about-faq-item + .about-faq-item {
    border-top: 1px solid #ededee;
}

.hakkimda-page .about-faq-question {
    margin: 0;
}

.hakkimda-page .about-faq-toggle {
    width: 100%;
    border: 0;
    background: #fff;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    text-align: left;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    padding: 18px 20px;
}

.hakkimda-page .about-faq-toggle i {
    font-size: 13px;
    color: #727272;
    transition: transform 260ms ease;
}

.hakkimda-page .about-faq-toggle[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.hakkimda-page .about-faq-answer {
    padding: 0 20px 18px;
}

.hakkimda-page .about-faq-answer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
}

.hakkimda-page .hakkimda-cta-section {
    padding-top: 44px;
}

.hakkimda-page .hakkimda-cta-inner {
    align-items: start;
}

.hakkimda-page .hakkimda-cta-benefits {
    margin: 12px 0 0;
    padding-left: 16px;
    display: grid;
    gap: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

.hakkimda-page .hakkimda-side-nav a:focus-visible,
.hakkimda-page .about-timeline-toggle:focus-visible,
.hakkimda-page .about-faq-toggle:focus-visible {
    outline: 2px solid var(--hakkimda-focus);
    outline-offset: 2px;
}

@media (max-width: 1100px) {
    .hakkimda-page .hakkimda-hero-grid {
        grid-template-columns: 1fr;
    }

    .hakkimda-page .hakkimda-shell-grid {
        grid-template-columns: 1fr;
    }

    .hakkimda-page .hakkimda-side-nav-wrap {
        position: static;
    }

    .hakkimda-page .hakkimda-side-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 992px) {
    .hakkimda-page .about-expertise-grid,
    .hakkimda-page .about-ecosystem-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hakkimda-page .hakkimda-hero {
        padding: 100px 0 52px;
    }

    .hakkimda-page .page-hero-title {
        font-size: 32px;
    }

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

    .hakkimda-page .hakkimda-hero-actions .btn {
        width: 100%;
    }

    .hakkimda-page .hakkimda-block {
        padding: 20px 16px 20px;
    }

    .hakkimda-page .hakkimda-block-title {
        font-size: 27px;
    }

    .hakkimda-page .about-timeline-title {
        font-size: 19px;
    }

    .hakkimda-page .about-faq-toggle {
        font-size: 15px;
        padding: 16px;
    }

    .hakkimda-page .about-faq-answer {
        padding: 0 16px 16px;
    }
}

@media (max-width: 390px) {
    .hakkimda-page .page-hero-title {
        font-size: 28px;
    }

    .hakkimda-page .hakkimda-profile-name {
        font-size: 21px;
    }

    .hakkimda-page .hakkimda-block-title {
        font-size: 24px;
    }

    .hakkimda-page .hakkimda-side-nav {
        gap: 6px;
    }

    .hakkimda-page .hakkimda-side-nav a {
        width: 100%;
        text-align: center;
    }
}

/* ========== Podcast sayfası ========== */
.podcast-page-hero .page-hero-desc {
    max-width: 560px;
}

.podcast-page-intro-section {
    padding: 48px 0 56px;
}

.podcast-page-player-section {
    padding: 32px 0 80px;
    background: #f9f9f9;
}

.podcast-player-heading {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin: 0 0 20px;
}

/* Tanıtım: sol fotoğraf, sağ içerik */
.podcast-intro-layout {
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    align-items: start;
    gap: 48px;
}

.podcast-intro-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f0f0;
}

/* Dikey (portrait) fotoğraf */
.podcast-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
}

.podcast-intro-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.podcast-page-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
    margin: 0;
}

.podcast-page-title .highlight {
    font-weight: 400;
}

.podcast-page-desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-color);
    margin: 0;
}

.podcast-page-show {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.podcast-show-card {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
}

.podcast-show-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.podcast-show-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.podcast-show-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.podcast-show-host {
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
}

.podcast-show-card .podcast-page-cta {
    margin-top: 4px;
}

/* Podcast butonu: ses frekansı animasyonu */
/* Ses çubukları animasyonu (podcast CTA + anasayfa podcast butonu) */
.podcast-page-cta .sound-bars,
.btn .sound-bars {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 18px;
}

.btn .sound-bars {
    margin-left: 8px;
}

.podcast-page-cta .sound-bar,
.btn .sound-bar {
    width: 4px;
    height: 8px;
    background: currentColor;
    border-radius: 2px;
    animation: soundBar 0.6s ease-in-out infinite alternate;
}

.podcast-page-cta .sound-bar:nth-child(1),
.btn .sound-bar:nth-child(1) { animation-delay: 0s; }
.podcast-page-cta .sound-bar:nth-child(2),
.btn .sound-bar:nth-child(2) { animation-delay: 0.1s; }
.podcast-page-cta .sound-bar:nth-child(3),
.btn .sound-bar:nth-child(3) { animation-delay: 0.2s; }
.podcast-page-cta .sound-bar:nth-child(4),
.btn .sound-bar:nth-child(4) { animation-delay: 0.3s; }
.podcast-page-cta .sound-bar:nth-child(5),
.btn .sound-bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes soundBar {
    0% { transform: scaleY(0.4); }
    100% { transform: scaleY(1); }
}

.podcast-show-intro {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

.podcast-page-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
}

.podcast-page-cta:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
}

.podcast-page-embed {
    width: 100%;
}

.podcast-embed-iframe {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* ========== İletişim sayfası ========== */
.contact-section {
    padding: 56px 0 72px;
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

.contact-eyebrow {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 0 0 24px;
}

.contact-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06), 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 0;
    min-height: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 48px 40px 48px 48px;
    min-width: 0;
}

.contact-form .form-row {
    display: grid;
    gap: 20px;
}

.contact-form .form-row-half {
    grid-template-columns: 1fr 1fr;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-family: inherit;
    color: var(--text-color);
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background: #fafafa;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:hover,
.contact-form textarea:hover {
    background: #fff;
    border-color: #e0e0e0;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-submit {
    align-self: flex-start;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.contact-submit i {
    font-size: 12px;
    transition: transform 0.2s;
}

.contact-submit:hover i {
    transform: translateX(3px);
}

.contact-info {
    padding: 48px 48px 48px 40px;
    background: linear-gradient(180deg, #f8f9fa 0%, #fafafa 100%);
    border-left: 1px solid #eee;
    min-width: 0;
}

.contact-info-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.contact-info-desc {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0 0 28px;
    opacity: 0.9;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-color);
}

.contact-info-list li:last-child {
    margin-bottom: 0;
}

.contact-info-list a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-list a:hover {
    color: var(--primary-color);
}

.contact-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: #fff;
    color: var(--primary-color);
    font-size: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-info-list li:hover .contact-info-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-social {
    display: flex;
    gap: 12px;
}

.contact-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: var(--primary-color);
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.contact-social a:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* ========== Kurumsal sayfası ========== */
.kurumsal-page {
    --kurumsal-border: #e7e8ea;
    --kurumsal-surface: #f6f7f9;
    --kurumsal-focus: #111;
}

.kurumsal-page .kurumsal-hero {
    padding: 110px 0 72px;
    border-bottom: none;
    background:
        radial-gradient(circle at 88% 12%, rgba(17, 17, 17, 0.09), transparent 34%),
        linear-gradient(170deg, #f4f5f7 0%, #ffffff 65%);
}

.kurumsal-page .kurumsal-hero-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 32px;
    align-items: start;
}

.kurumsal-page .kurumsal-hero-main {
    max-width: 680px;
}

.kurumsal-page .kurumsal-hero-eyebrow {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.kurumsal-page .page-hero-title {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.kurumsal-page .page-hero-desc {
    font-size: 18px;
    line-height: 1.72;
    max-width: 630px;
}

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

.kurumsal-page .kurumsal-hero-actions .btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.kurumsal-page .kurumsal-hero-signals {
    display: grid;
    gap: 12px;
}

.kurumsal-page .kurumsal-signal-card {
    border: 1px solid var(--kurumsal-border);
    border-radius: 14px;
    background: #fff;
    padding: 16px 18px;
    box-shadow: 0 12px 28px rgba(10, 14, 25, 0.06);
}

.kurumsal-page .kurumsal-signal-title {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
}

.kurumsal-page .kurumsal-signal-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

.kurumsal-page .kurumsal-program-explorer-section {
    padding-top: 46px;
}

.kurumsal-page .kurumsal-program-explorer {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kurumsal-page .kurumsal-section-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 760px;
}

.kurumsal-page .kurumsal-section-eyebrow {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: #585858;
}

.kurumsal-page .kurumsal-section-title {
    margin: 0;
    font-size: 34px;
    line-height: 1.22;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.kurumsal-page .kurumsal-section-desc {
    margin: 0;
    font-size: 16px;
    line-height: 1.68;
    color: var(--text-color);
}

.kurumsal-page .kurumsal-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 18px;
    border: 1px solid var(--kurumsal-border);
    border-radius: 14px;
    background: #fff;
    padding: 16px;
}

.kurumsal-page .kurumsal-filter-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
}

.kurumsal-page .kurumsal-filter-tab {
    border: 1px solid #d7d8da;
    background: #fff;
    color: #5a5a5a;
    border-radius: 999px;
    height: 40px;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background 260ms ease, color 260ms ease, border-color 260ms ease;
}

.kurumsal-page .kurumsal-filter-tab.active,
.kurumsal-page .kurumsal-filter-tab:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.kurumsal-page .kurumsal-search {
    position: relative;
    display: flex;
    align-items: center;
    min-width: min(100%, 340px);
    flex: 1 1 260px;
}

.kurumsal-page .kurumsal-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: #777;
}

.kurumsal-page .kurumsal-search input {
    width: 100%;
    height: 42px;
    border-radius: 999px;
    border: 1px solid #d6d7d9;
    background: #fff;
    color: var(--primary-color);
    font-size: 14px;
    padding: 0 16px 0 38px;
    font-family: var(--font-main);
}

.kurumsal-page .kurumsal-search input::placeholder {
    color: #8a8a8a;
}

.kurumsal-page .kurumsal-results-count {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

.kurumsal-page .kurumsal-search input:focus,
.kurumsal-page .kurumsal-filter-tab:focus-visible,
.kurumsal-page .kurumsal-program-details summary:focus-visible,
.kurumsal-page .kurumsal-program-link:focus-visible,
.kurumsal-page .kurumsal-faq-toggle:focus-visible {
    outline: 2px solid var(--kurumsal-focus);
    outline-offset: 2px;
}

.kurumsal-page .kurumsal-program-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.kurumsal-page .kurumsal-program-card {
    border: 1px solid var(--kurumsal-border);
    border-radius: 14px;
    background: #fff;
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 100%;
    transition: border-color 280ms ease, box-shadow 280ms ease, transform 280ms ease;
}

.kurumsal-page .kurumsal-program-card:hover {
    border-color: #c8c9cc;
    box-shadow: 0 16px 34px rgba(10, 14, 25, 0.09);
    transform: translateY(-4px);
}

.kurumsal-page .kurumsal-program-card-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.kurumsal-page .kurumsal-program-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--primary-color);
    color: #fff;
    font-size: 17px;
}

.kurumsal-page .kurumsal-program-title {
    margin: 0;
    font-size: 20px;
    line-height: 1.25;
    color: var(--primary-color);
}

.kurumsal-page .kurumsal-program-tag {
    margin: 4px 0 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #676767;
    font-weight: 600;
}

.kurumsal-page .kurumsal-program-summary {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-color);
}

.kurumsal-page .kurumsal-program-chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.kurumsal-page .kurumsal-program-chips li {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    background: #f2f3f5;
    color: #4b4b4b;
    font-size: 12px;
    font-weight: 600;
    padding: 0 12px;
}

.kurumsal-page .kurumsal-program-details {
    border-top: 1px solid #efeff0;
    padding-top: 12px;
}

.kurumsal-page .kurumsal-program-details summary {
    cursor: pointer;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    list-style: none;
}

.kurumsal-page .kurumsal-program-details summary::-webkit-details-marker {
    display: none;
}

.kurumsal-page .kurumsal-program-detail-list {
    margin: 10px 0 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
    color: var(--text-color);
    font-size: 13px;
    line-height: 1.6;
}

.kurumsal-page .kurumsal-program-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.kurumsal-page .kurumsal-program-link i {
    font-size: 12px;
    transition: transform 260ms ease;
}

.kurumsal-page .kurumsal-program-link:hover i {
    transform: translateX(3px);
}

.kurumsal-page .kurumsal-empty-state {
    border: 1px dashed #d5d6d8;
    border-radius: 14px;
    text-align: center;
    padding: 18px;
    color: #666;
}

.kurumsal-page .kurumsal-empty-state p {
    margin: 0;
}

.kurumsal-page .kurumsal-process {
    background: var(--kurumsal-surface);
}

.kurumsal-page .kurumsal-process-steps {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.kurumsal-page .kurumsal-process-step {
    background: #fff;
    border: 1px solid var(--kurumsal-border);
    border-radius: 14px;
    padding: 20px 18px 18px;
    min-height: 206px;
}

.kurumsal-page .kurumsal-process-index {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.kurumsal-page .kurumsal-process-title {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 1.3;
    color: var(--primary-color);
}

.kurumsal-page .kurumsal-process-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-color);
}

.kurumsal-page .kurumsal-impact {
    padding-top: 66px;
}

.kurumsal-page .kurumsal-impact-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.kurumsal-page .kurumsal-impact-card {
    border: 1px solid var(--kurumsal-border);
    border-radius: 14px;
    background: #fff;
    padding: 22px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 200px;
    transition: border-color 280ms ease, box-shadow 280ms ease, transform 280ms ease;
}

.kurumsal-page .kurumsal-impact-card:hover {
    border-color: #c8c9cc;
    box-shadow: 0 14px 30px rgba(10, 14, 25, 0.08);
    transform: translateY(-4px);
}

.kurumsal-page .kurumsal-impact-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f2f3f5;
    color: var(--primary-color);
    font-size: 16px;
}

.kurumsal-page .kurumsal-impact-title {
    margin: 0;
    font-size: 18px;
    color: var(--primary-color);
    line-height: 1.35;
}

.kurumsal-page .kurumsal-impact-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

.kurumsal-page .kurumsal-faq {
    padding-top: 66px;
}

.kurumsal-page .kurumsal-faq-accordion {
    margin-top: 26px;
    border: 1px solid var(--kurumsal-border);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.kurumsal-page .kurumsal-faq-item + .kurumsal-faq-item {
    border-top: 1px solid #ededee;
}

.kurumsal-page .kurumsal-faq-question {
    margin: 0;
}

.kurumsal-page .kurumsal-faq-toggle {
    width: 100%;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    text-align: left;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--primary-color);
    background: #fff;
    cursor: pointer;
    padding: 18px 20px;
}

.kurumsal-page .kurumsal-faq-toggle i {
    color: #727272;
    font-size: 13px;
    transition: transform 260ms ease;
}

.kurumsal-page .kurumsal-faq-toggle[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.kurumsal-page .kurumsal-faq-answer {
    padding: 0 20px 18px;
}

.kurumsal-page .kurumsal-faq-answer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
}

.kurumsal-page .kurumsal-cta-section {
    padding-top: 44px;
}

.kurumsal-page .kurumsal-cta-inner {
    align-items: start;
}

.kurumsal-page .kurumsal-cta-benefits {
    margin: 12px 0 0;
    padding-left: 16px;
    display: grid;
    gap: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 1100px) {
    .kurumsal-page .kurumsal-hero-grid {
        grid-template-columns: 1fr;
    }

    .kurumsal-page .kurumsal-hero-signals {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .kurumsal-page .kurumsal-impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kurumsal-page .kurumsal-process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .kurumsal-page .kurumsal-program-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0 56px;
    }

    .contact-eyebrow {
        margin-bottom: 20px;
    }

    .contact-card {
        border-radius: 16px;
    }

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

    .contact-form {
        padding: 32px 24px 28px;
    }

    .contact-form .form-row-half {
        grid-template-columns: 1fr;
    }

    .contact-submit {
        width: 100%;
        justify-content: center;
    }

    .contact-info {
        padding: 28px 24px 32px;
        border-left: none;
        border-top: 1px solid #eee;
    }

    .contact-info-title {
        font-size: 18px;
    }

    .contact-info-desc {
        margin-bottom: 22px;
    }

    .contact-info-list {
        margin-bottom: 22px;
    }

    .podcast-page-intro-section {
        padding: 36px 0 40px;
    }

    .podcast-page-player-section {
        padding: 24px 0 56px;
    }

    .podcast-intro-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .podcast-intro-image {
        order: -1; /* Fotoğraf üstte */
    }

    .podcast-page-title {
        font-size: 24px;
    }

    .podcast-show-card {
        flex-direction: column;
        text-align: center;
    }

    .podcast-show-card img {
        width: 100px;
        height: 100px;
    }

    .kurumsal-page .kurumsal-hero {
        padding: 100px 0 52px;
    }

    .kurumsal-page .page-hero-title {
        font-size: 32px;
    }

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

    .kurumsal-page .kurumsal-hero-actions .btn {
        width: 100%;
    }

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

    .kurumsal-page .kurumsal-section-title {
        font-size: 28px;
    }

    .kurumsal-page .kurumsal-toolbar {
        flex-direction: column;
    }

    .kurumsal-page .kurumsal-filter-tabs {
        width: 100%;
    }

    .kurumsal-page .kurumsal-filter-tab {
        flex: 1 1 auto;
        min-width: 92px;
    }

    .kurumsal-page .kurumsal-search {
        min-width: 100%;
    }

    .kurumsal-page .kurumsal-process-steps {
        grid-template-columns: 1fr;
    }

    .kurumsal-page .kurumsal-process-step {
        min-height: auto;
    }

    .kurumsal-page .kurumsal-impact-grid {
        grid-template-columns: 1fr;
    }

    .kurumsal-page .kurumsal-faq-toggle {
        font-size: 15px;
        padding: 16px;
    }

    .kurumsal-page .kurumsal-faq-answer {
        padding: 0 16px 16px;
    }
}

/* ========================
   Scroll Reveal Animations
   ======================== */

.reveal {
    opacity: 0;
    transform: translateY(var(--reveal-distance, 24px));
    transition:
        opacity var(--reveal-duration, 600ms) ease-out var(--reveal-delay, 0ms),
        transform var(--reveal-duration, 600ms) ease-out var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal[data-reveal="fade-up"] {
    transform: translateY(var(--reveal-distance, 24px));
}

.reveal[data-reveal="fade-down"] {
    transform: translateY(calc(var(--reveal-distance, 24px) * -1));
}

.reveal[data-reveal="fade-left"] {
    transform: translateX(var(--reveal-distance, 24px));
}

.reveal[data-reveal="fade-right"] {
    transform: translateX(calc(var(--reveal-distance, 24px) * -1));
}

.reveal[data-reveal="scale-up"] {
    transform: scale(0.96);
}

.reveal[data-reveal="scale-up"].is-visible {
    transform: scale(1);
}

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

    .reveal,
    .reveal.is-visible,
    .reveal[data-reveal="fade-up"],
    .reveal[data-reveal="fade-down"],
    .reveal[data-reveal="fade-left"],
    .reveal[data-reveal="fade-right"],
    .reveal[data-reveal="scale-up"] {
        transition: none !important;
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .references-grid,
    .references-grid-reverse,
    .step-visual .step,
    .podcast-page-cta .sound-bar,
    .btn .sound-bar,
    .preloader-logo,
    .preloader-divider,
    .preloader-name,
    .tab-btn.active::after,
    .tab-content.active {
        animation: none !important;
    }

    .tab-btn.active::after {
        width: 100%;
    }

    .bireysel-page .atolye-card,
    .bireysel-page .atolye-card-image img,
    .bireysel-page .atolye-btn,
    .bireysel-page .program-filter-tab,
    .bireysel-page .faq-toggle i {
        transition: none !important;
    }

    .kurumsal-page .kurumsal-filter-tab,
    .kurumsal-page .kurumsal-program-card,
    .kurumsal-page .kurumsal-impact-card,
    .kurumsal-page .kurumsal-program-link i,
    .kurumsal-page .kurumsal-faq-toggle i {
        transition: none !important;
    }

    .kurumsal-page .kurumsal-program-card:hover,
    .kurumsal-page .kurumsal-impact-card:hover {
        transform: none !important;
    }

    .kurumsal-page .kurumsal-program-link:hover i,
    .kurumsal-page .kurumsal-faq-toggle[aria-expanded="true"] i {
        transform: none !important;
    }

    .hakkimda-page .hakkimda-side-nav a,
    .hakkimda-page .about-timeline-toggle,
    .hakkimda-page .about-faq-toggle i {
        transition: none !important;
    }

    .hakkimda-page .about-faq-toggle[aria-expanded="true"] i {
        transform: none !important;
    }
}

/* ========================
   Preloader (Logo Intro)
   ======================== */

body.is-preloading {
    overflow-y: hidden;
    overflow-x: clip;
}

#preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    display: block;
    font-family: 'Times New Roman', serif;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--primary-color);
    opacity: 0;
    transform: translateY(10px);
    animation: preloaderLogo 0.8s ease-out forwards;
}

.preloader-divider {
    display: block;
    width: 80px;
    height: 1px;
    margin: 14px auto;
    background: var(--primary-color);
    transform-origin: center;
    transform: scaleX(0);
    opacity: 0.8;
    animation: preloaderDivider 0.7s ease-out forwards;
    animation-delay: 0.35s;
}

.preloader-name {
    display: block;
    font-family: var(--font-main);
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-color);
    opacity: 0;
    transform: translateY(6px);
    animation: preloaderName 0.7s ease-out forwards;
    animation-delay: 0.45s;
}

@keyframes preloaderLogo {
    0% {
        opacity: 0;
        letter-spacing: 0.4em;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        letter-spacing: 0.1em;
        transform: translateY(0);
    }
}

@keyframes preloaderDivider {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes preloaderName {
    0% {
        opacity: 0;
        transform: translateY(6px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Back to top — tüm sayfalarda, sağ altta */
.back-to-top {
    position: fixed;
    bottom: calc(28px + env(safe-area-inset-bottom, 0));
    right: calc(28px + env(safe-area-inset-right, 0));
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease, color 0.2s ease;
    z-index: 999;
}

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

.back-to-top:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.back-to-top i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
    .back-to-top i {
        font-size: 16px;
    }
}
