    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --white: #FFFFFF;
        --black: #1D1D1F;
        --gray-1: #F5F5F7;
        --gray-2: #86868B;
        --gray-3: #D2D2D7;
        --gray-4: #6E6E73;
        --font: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
        --max: 1200px;
        --radius-card: 18px;
        --radius-btn: 980px;
    }

    html {
        scroll-behavior: smooth;
        overflow-x: hidden;
    }

        html::-webkit-scrollbar {
            display: none;
        }

    html {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    body {
        font-family: var(--font);
        background: var(--white);
        color: var(--black);
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
    }
    /* ─── NAV ─── */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 24px;
        background: rgba(255,255,255,0.82);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border-bottom: 1px solid var(--gray-3);
    }

    .nav-logo {
        font-size: 17px;
        font-weight: 600;
        letter-spacing: -0.02em;
        color: var(--black);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .nav-logo span.dot {
            color: var(--gray-2);
            font-weight: 400;
        }

    .nav-links {
        display: none;
        list-style: none;
        gap: 28px;
    }

        .nav-links a {
            font-size: 13px;
            font-weight: 400;
            color: var(--black);
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.15s;
        }

            .nav-links a:hover {
                opacity: 1;
            }

            .nav-links a.active {
                opacity: 1;
                font-weight: 500;
            }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .nav-phone {
        display: none;
        font-size: 13px;
        font-weight: 500;
        color: var(--black);
        text-decoration: none;
        gap: 4px;
        align-items: center;
    }

    .nav-whatsapp {
        display: none;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #25D366;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    .nav-hamburger {
        width: 32px;
        height: 32px;
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        padding: 4px;
    }

        .nav-hamburger span {
            display: block;
            width: 20px;
            height: 1.5px;
            background: var(--black);
            border-radius: 2px;
            transition: all 0.2s;
        }

    @media (min-width: 1024px) {
        nav {
            padding: 0 40px;
            height: 56px;
        }

        .nav-links {
            display: flex;
        }

        .nav-phone {
            display: flex;
        }

        .nav-whatsapp {
            display: flex;
        }

        .nav-hamburger {
            display: none;
        }
    }
    /* Mobile menu */
    .mobile-menu {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 99;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(20px);
        padding: 80px 24px 120px;
        flex-direction: column;
    }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            font-size: 22px;
            font-weight: 500;
            color: var(--black);
            text-decoration: none;
            padding: 16px 0;
            border-bottom: 1px solid var(--gray-3);
            display: block;
        }

            .mobile-menu a:first-child {
                border-top: 1px solid var(--gray-3);
            }
    /* ─── BUTONLAR ─── */
    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 14px 28px;
        border-radius: var(--radius-btn);
        background: var(--white);
        color: var(--black);
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        transition: transform 0.2s;
        border: none;
        cursor: pointer;
        font-family: var(--font);
    }

        .btn-primary:hover {
            transform: scale(1.02);
        }

    .btn-dark {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 14px 28px;
        border-radius: var(--radius-btn);
        background: var(--black);
        color: var(--white);
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        border: none;
        cursor: pointer;
        font-family: var(--font);
        transition: transform 0.2s, opacity 0.2s;
    }

        .btn-dark:hover {
            transform: scale(1.02);
            opacity: 0.85;
        }

    .btn-ghost {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 13px 28px;
        border-radius: var(--radius-btn);
        background: transparent;
        color: var(--black);
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        border: 1px solid var(--gray-3);
        font-family: var(--font);
        transition: transform 0.2s, border-color 0.2s;
        cursor: pointer;
    }

        .btn-ghost:hover {
            transform: scale(1.02);
            border-color: var(--black);
        }

    .btn-wa {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 13px 24px;
        border-radius: var(--radius-btn);
        background: #25D366;
        color: var(--white);
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        border: none;
        cursor: pointer;
        font-family: var(--font);
        transition: transform 0.2s, opacity 0.2s;
    }

        .btn-wa:hover {
            transform: scale(1.02);
            opacity: 0.9;
        }
    /* ─── SECTION ORTAK ─── */
    section {
        padding: 80px 24px;
    }

    @media (min-width: 768px) {
        section {
            padding: 120px 40px;
        }
    }

    .section-inner {
        max-width: var(--max);
        margin: 0 auto;
    }

    .section-label {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--gray-2);
        margin-bottom: 12px;
    }

    .section-title {
        font-size: clamp(32px, 5vw, 52px);
        font-weight: 600;
        letter-spacing: -0.025em;
        line-height: 1.1;
        color: var(--black);
        margin-bottom: 16px;
    }

    .section-sub {
        font-size: 17px;
        color: var(--gray-2);
        line-height: 1.6;
        max-width: 520px;
    }
    /* ─── HERO ─── */
    .hero {
        margin-top: 52px;
        background: var(--gray-1);
        padding: 80px 24px;
        background-color: #1D1D1F;
    }

    @media (min-width: 768px) {
        .hero {
            margin-top: 56px;
            padding: 80px 40px;
            background-color: #1D1D1F;
        }
    }

    .hero-inner {
        max-width: var(--max);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 48px;
        align-items: center;
    }

    @media (min-width: 768px) {
        .hero-inner {
            grid-template-columns: 1fr 1fr;
            gap: 64px;
        }
    }

    .hero-label {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--gray-2);
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: clamp(36px, 6vw, 68px);
        font-weight: 600;
        letter-spacing: -0.03em;
        line-height: 1.05;
        color: var(--white);
        margin-bottom: 16px;
    }

    .hero-sub {
        font-size: clamp(16px, 2vw, 19px);
        color: rgba(255,255,255,0.7);
        line-height: 1.55;
    }

    .hero-img-ph {
        background: var(--white);
        border: 1px solid var(--gray-3);
        border-radius: 16px;
        aspect-ratio: 16/9;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 24px;
        color: var(--gray-2);
    }

        .hero-img-ph .ph-icon {
            font-size: 28px;
            opacity: 0.4;
            margin-bottom: 10px;
        }

        .hero-img-ph .ph-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--black);
        }

        .hero-img-ph .ph-dims {
            font-size: 11px;
            margin-top: 4px;
        }

        .hero-img-ph .ph-folder {
            font-size: 10px;
            margin-top: 3px;
            color: var(--gray-3);
        }
    /* ─── RAKAMLAR ─── */
    #rakamlar {
        border-bottom: 1px solid var(--gray-3);
        padding: 64px 24px;
    }

    @media (min-width: 768px) {
        #rakamlar {
            padding: 80px 40px;
        }
    }

    .rakamlar-grid {
        max-width: var(--max);
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    @media (min-width: 768px) {
        .rakamlar-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .rakam-item {
        padding: 32px 24px;
        border-right: 1px solid var(--gray-3);
        border-bottom: 1px solid var(--gray-3);
    }

        .rakam-item:nth-child(2n) {
            border-right: none;
        }

        .rakam-item:nth-last-child(-n+2) {
            border-bottom: none;
        }

    @media (max-width: 767px) {
        .rakam-item:nth-last-child(-n+2) {
            border-bottom: 1px solid var(--gray-3);
        }

        .rakam-item:last-child {
            grid-column: 1 / -1;
            border-right: none;
            border-bottom: none;
        }
    }

    @media (min-width: 768px) {
        .rakam-item {
            border-bottom: none;
        }

            .rakam-item:nth-child(2n) {
                border-right: 1px solid var(--gray-3);
            }

            .rakam-item:last-child {
                border-right: none;
            }

            .rakam-item:first-child {
                padding-left: 0;
            }
    }

    .rakam-num {
        font-size: clamp(36px, 5vw, 56px);
        font-weight: 600;
        letter-spacing: -0.04em;
        color: var(--black);
        line-height: 1;
        margin-bottom: 8px;
    }

    .rakam-label {
        font-size: 13px;
        color: var(--gray-2);
        line-height: 1.5;
    }
    /* ─── HIKAYE / ZAMAn ÇİZGİSİ ─── */
    #hikaye {
        background: var(--gray-1);
    }

    .hikaye-header {
        margin-bottom: 64px;
    }

    .zaman-list {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .zaman-item {
        display: grid;
        grid-template-columns: 80px 1fr;
        gap: 24px;
        padding: 32px 0;
        border-top: 1px solid var(--gray-3);
        align-items: start;
    }

        .zaman-item:last-child {
            border-bottom: 1px solid var(--gray-3);
        }

    .zaman-yil {
        font-size: 13px;
        font-weight: 600;
        color: var(--gray-2);
        letter-spacing: 0.02em;
        padding-top: 3px;
    }

    .zaman-body {
    }

    .zaman-baslik {
        font-size: 19px;
        font-weight: 600;
        color: var(--black);
        letter-spacing: -0.015em;
        margin-bottom: 6px;
        line-height: 1.25;
    }

    .zaman-aciklama {
        font-size: 15px;
        color: var(--gray-2);
        line-height: 1.6;
    }

    .zaman-ph {
        margin-top: 20px;
        background: var(--white);
        border: 1px solid var(--gray-3);
        border-radius: 12px;
        padding: 20px 24px;
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .zaman-ph-icon {
        font-size: 20px;
        opacity: 0.4;
        flex-shrink: 0;
    }

    .zaman-ph-text {
        font-size: 11px;
        color: var(--gray-2);
        line-height: 1.5;
    }

        .zaman-ph-text strong {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: var(--black);
            margin-bottom: 2px;
        }

    @media (min-width: 768px) {
        .zaman-item {
            grid-template-columns: 120px 1fr;
            gap: 40px;
        }

        .zaman-yil {
            font-size: 14px;
        }
    }
    /* ─── DEĞERLER ─── */
    #degerler {
    }

    .degerler-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 56px;
    }

    @media (min-width: 700px) {
        .degerler-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .deger-item {
        padding: 40px 0;
        border-top: 1px solid var(--gray-3);
    }

    @media (min-width: 700px) {
        .deger-item {
            padding: 48px 40px;
            border-right: 1px solid var(--gray-3);
        }

            .deger-item:first-child {
                padding-left: 0;
            }

            .deger-item:last-child {
                border-right: none;
                padding-right: 0;
            }
    }

    .deger-num {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--gray-2);
        margin-bottom: 20px;
    }

    .deger-baslik {
        font-size: clamp(26px, 3vw, 36px);
        font-weight: 600;
        letter-spacing: -0.025em;
        color: var(--black);
        line-height: 1.1;
        margin-bottom: 16px;
    }

    .deger-aciklama {
        font-size: 15px;
        color: var(--gray-2);
        line-height: 1.7;
        max-width: 320px;
    }
    /* ─── EKİP FOTOĞRAFI ─── */
    #ekip {
        background: var(--gray-1);
    }

    .ekip-split {
        display: grid;
        grid-template-columns: 1fr;
        gap: 48px;
        align-items: center;
    }

    @media (min-width: 900px) {
        .ekip-split {
            grid-template-columns: 1fr 1fr;
            gap: 80px;
        }
    }

    .img-ph {
        background: var(--white);
        border: 1px solid var(--gray-3);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 40px 24px;
        color: var(--gray-2);
    }

    .img-ph-icon {
        font-size: 32px;
        margin-bottom: 12px;
        opacity: 0.4;
    }

    .img-ph-name {
        font-size: 13px;
        font-weight: 600;
        color: var(--black);
        margin-bottom: 4px;
    }

    .img-ph-dims {
        font-size: 11px;
        color: var(--gray-2);
    }

    .img-ph-folder {
        font-size: 10px;
        color: var(--gray-3);
        margin-top: 3px;
    }

    .ekip-text {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

        .ekip-text p {
            font-size: 17px;
            color: var(--gray-2);
            line-height: 1.75;
        }

            .ekip-text p strong {
                color: var(--black);
                font-weight: 600;
            }
    /* ─── YETKİLİ BAYİ ROZETLERİ ─── */
    #rozetler {
        border-top: 1px solid var(--gray-3);
        border-bottom: 1px solid var(--gray-3);
        padding: 64px 24px;
    }

    @media (min-width: 768px) {
        #rozetler {
            padding: 80px 40px;
        }
    }

    .rozetler-inner {
        max-width: var(--max);
        margin: 0 auto;
    }

    .rozetler-label {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--gray-2);
        margin-bottom: 40px;
    }

    .rozetler-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    @media (min-width: 600px) {
        .rozetler-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .rozet-card {
        aspect-ratio: 1;
        background: var(--gray-1);
        border: 1px solid var(--gray-3);
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 24px;
        text-align: center;
    }

    .rozet-icon {
        font-size: 24px;
        opacity: 0.3;
    }

    .rozet-name {
        font-size: 11px;
        font-weight: 500;
        color: var(--gray-2);
        line-height: 1.4;
    }

    .rozet-ph-info {
        font-size: 9px;
        color: var(--gray-3);
        margin-top: 2px;
    }
    /* ─── CTA ─── */
    #cta {
        background: var(--black);
    }

        #cta .section-label {
            color: var(--gray-2);
        }

        #cta .section-title {
            color: #FFFFFF;
        }

    .cta-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 40px;
    }

    .cta-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 36px;
        align-items: start;
    }

    @media (min-width: 860px) {
        .cta-grid {
            grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
            gap: 64px;
        }
    }

    .hakkimizda-lead-form {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding-top: 6px;
    }

    .hakkimizda-form-title {
        color: #FFFFFF;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: -0.01em;
    }

    .hakkimizda-form-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    @media (min-width: 520px) {
        .hakkimizda-form-row {
            grid-template-columns: 1fr 1fr;
        }
    }

    .hakkimizda-lead-form input,
    .hakkimizda-lead-form textarea {
        width: 100%;
        border: 1px solid rgba(255,255,255,0.22);
        border-radius: 10px;
        background: rgba(255,255,255,0.08);
        color: #FFFFFF;
        font-family: var(--font);
        font-size: 14px;
        padding: 13px 14px;
        outline: none;
    }

    .hakkimizda-lead-form textarea {
        min-height: 88px;
        resize: vertical;
        line-height: 1.5;
    }

    .hakkimizda-lead-form input::placeholder,
    .hakkimizda-lead-form textarea::placeholder {
        color: rgba(255,255,255,0.5);
    }

    .hakkimizda-lead-form input:focus,
    .hakkimizda-lead-form textarea:focus {
        border-color: rgba(255,255,255,0.62);
    }

    .hakkimizda-lead-form button {
        width: 100%;
        padding: 14px 24px;
        border-radius: var(--radius-btn);
        border: none;
        background: #FFFFFF;
        color: #1D1D1F;
        font-family: var(--font);
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
    }
    /* ─── FOOTER ─── */
    footer {
        background: #1D1D1F;
        border-top: 1px solid #333;
        padding: 64px 24px 32px;
        color: rgba(255,255,255,0.6);
    }

    @media (min-width: 768px) {
        footer {
            padding: 80px 40px 40px;
        }
    }

    .footer-inner {
        max-width: var(--max);
        margin: 0 auto;
    }

    .footer-top {
        display: grid;
        grid-template-columns: 1fr;
        gap: 48px;
        margin-bottom: 56px;
        padding-bottom: 56px;
        border-bottom: 1px solid #333;
    }

    @media (min-width: 600px) {
        .footer-top {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 900px) {
        .footer-top {
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
        }
    }

    .footer-brand .logo {
        font-size: 18px;
        font-weight: 600;
        color: #FFFFFF;
        letter-spacing: -0.02em;
        margin-bottom: 12px;
    }

    .footer-brand p {
        font-size: 13px;
        line-height: 1.6;
        color: rgba(255,255,255,0.45);
    }

    .footer-brand .contact-info {
        margin-top: 20px;
    }

        .footer-brand .contact-info a {
            display: block;
            font-size: 13px;
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            margin-bottom: 6px;
            transition: color 0.15s;
        }

            .footer-brand .contact-info a:hover {
                color: #FFFFFF;
            }

    .footer-col h4 {
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.4);
        margin-bottom: 16px;
    }

    .footer-col ul {
        list-style: none;
    }

        .footer-col ul li {
            margin-bottom: 10px;
        }

            .footer-col ul li a {
                font-size: 13px;
                color: rgba(255,255,255,0.6);
                text-decoration: none;
                transition: color 0.15s;
            }

                .footer-col ul li a:hover {
                    color: #FFFFFF;
                }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    @media (min-width: 768px) {
        .footer-bottom {
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
        }
    }

    .footer-copy {
        font-size: 12px;
        color: rgba(255,255,255,0.3);
    }

    .footer-legal {
        display: flex;
        gap: 16px;
    }

        .footer-legal a {
            font-size: 12px;
            color: rgba(255,255,255,0.3);
            text-decoration: none;
            transition: color 0.15s;
        }

            .footer-legal a:hover {
                color: rgba(255,255,255,0.7);
            }

    .footer-hours {
        padding: 24px;
        background: #2a2a2a;
        border: 1px solid #3a3a3a;
        border-radius: 12px;
        margin-bottom: 40px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-hours-item h5 {
        font-size: 11px;
        font-weight: 500;
        color: rgba(255,255,255,0.4);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-bottom: 8px;
    }

    .footer-hours-item p {
        font-size: 13px;
        color: rgba(255,255,255,0.65);
        line-height: 1.6;
    }
    /* ─── STICKY ALT CTA ─── */
    .sticky-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 90;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(20px);
        border-top: 1px solid var(--gray-3);
        padding: 12px 16px 16px;
        gap: 8px;
    }

    @media (min-width: 768px) {
        .sticky-cta {
            display: none;
        }
    }

    .sticky-cta-btn {
        flex: 1;
        padding: 12px 8px;
        border-radius: 12px;
        border: 1px solid var(--gray-3);
        background: transparent;
        color: var(--black);
        font-size: 12px;
        font-weight: 500;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
        transition: background 0.15s;
        font-family: var(--font);
    }

        .sticky-cta-btn:hover {
            background: var(--gray-1);
        }

        .sticky-cta-btn.wa {
            background: #25D366;
            border-color: #25D366;
            color: #FFFFFF;
            flex: 0 0 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sticky-cta-btn.primary-m {
            background: #1D1D1F;
            color: var(--white);
            border-color: var(--black);
        }
    /* chatbot removed */
    /* ─── FADE UP ─── */
    .fade-up {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
    /* ─── MOBILE ≤480px ─── */
    @media (max-width: 480px) {
        section {
            padding: 56px 16px;
        }

        .hero {
            padding: 56px 16px 48px;
        }

        .rakamlar-grid {
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .rozetler-grid {
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .rozet-kart {
            padding: 20px 16px;
        }

        .footer-hours {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .hikaye-2col {
            gap: 32px;
        }

        .hikaye-paragraflar p {
            font-size: 15px;
        }

        .deger-aciklama {
            font-size: 14px;
        }

        .ekip-text p {
            font-size: 15px;
        }

        .cta-buttons {
            flex-direction: column;
            width: 100%;
        }

            .cta-buttons a {
                width: 100%;
                justify-content: center;
            }
    }


.hikaye-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 768px) {
    .hikaye-2col {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: stretch;
    }
}

.hikaye-foto {
    min-width: 0;
}

    .hikaye-foto .img-ph {
        width: 100%;
        border-radius: 16px;
        overflow: hidden;
        background: #E8E8ED;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 280px;
    }

.hikaye-metin {
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.hikaye-paragraflar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
}

    .hikaye-paragraflar p {
        font-size: 17px;
        line-height: 1.7;
        color: #1D1D1F;
        margin: 0;
        overflow-wrap: break-word;
        word-break: break-word;
    }

/* ─── ÖDÜL BÖLÜMÜ ─── */
#odul-section {
    background: var(--white);
    padding: 80px 24px;
    border-bottom: 1px solid var(--gray-3);
}

@media (min-width: 768px) {
    #odul-section {
        padding: 120px 40px;
    }
}

.odul-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    max-width: var(--max);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .odul-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

@media (min-width: 1024px) {
    .odul-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.odul-text-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.odul-text-border {
    border-left: 2px solid #E5E5EA;
    padding-left: clamp(24px, 4vw, 44px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.odul-title {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--black);
    margin: 0;
}

.odul-subtitle {
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.45;
    color: var(--gray-2);
    margin: 0;
}

.odul-foto {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.odul-foto-wrapper {
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    overflow: hidden;
    background: #000000;
    box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

.odul-foto-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 24px;
}
