:root {
    --cream: #F5F0EC;
    --cream-2: #FAF7F3;
    --ink: #2E2925;
    --ink-soft: #4A423A;
    --gold: #C2703A;
    --gold-dark: #8C4A1E;
    --gold-light: #F4DCC4;
    --gold-solid: #8C4A1E;
    --gold-solid-hover: #6E3A16;
    --muted: #6C6050;
    --border: #E8D6C2;
    --white: #FFFFFF;
    --danger: #B24C3A;
}

[data-theme="dark"] {
    --cream: #211D19;
    --cream-2: #28231F;
    --ink: #F0EAE0;
    --ink-soft: #C7BEAF;
    --gold: #E08A4C;
    --gold-dark: #F0A868;
    --gold-light: #3D2A1A;
    --muted: #9C927F;
    --border: #423C33;
    --white: #2E2924;
    --danger: #E88A72;
}

    [data-theme="dark"] .footer {
        background: #1C1915;
    }

    [data-theme="dark"] .nav {
        background: rgba(33,29,25,0.92);
    }

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Inter',sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: background .3s, color .3s;
    overflow-x: hidden;
    overflow-x: clip;
    width: 100%;
    max-width: 100vw;
}

main {
    flex: 1;
}

h1, h2, h3 {
    font-family: 'Playfair Display',serif;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: 'Inter',sans-serif;
    cursor: pointer;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250,247,243,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    transition: background .3s;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px;
    max-width: 1800px;
    margin: 0 auto;
    gap: 20px;
}

.logo {
    font-family: 'Playfair Display',serif;
    font-size: 23px;
    font-weight: 700;
    flex-shrink: 0;
}

    .logo .accent {
        color: var(--gold);
    }

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap;
    flex: 1;
    justify-content: center;
}

    .nav-links a {
        font-size: 15px;
        font-weight: 600;
        color: var(--ink-soft);
        padding: 6px 2px;
        border-bottom: 2px solid transparent;
        transition: .2s;
        white-space: nowrap;
    }

        .nav-links a:hover, .nav-links a.active {
            color: var(--ink);
            border-bottom-color: var(--gold);
        }

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

    .nav-right .btn-gold {
        padding: 9px 18px;
        font-size: 13px;
        white-space: nowrap;
    }

.theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--ink);
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
    flex-shrink: 0;
}

    .theme-toggle:hover {
        border-color: var(--gold);
        background: var(--gold-light);
    }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 14.5px;
    transition: .2s;
}

.btn-dark {
    background: var(--gold-solid);
    color: #fff;
}

    .btn-dark:hover {
        background: var(--gold-solid-hover);
    }

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--ink);
    color: var(--ink);
}

    .btn-outline:hover {
        background: var(--ink);
        color: var(--cream-2);
    }

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--ink);
}

.hero {
    padding: 80px 24px 60px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-light);
    color: var(--gold-dark);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .03em;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.18;
    font-weight: 700;
    max-width: 880px;
    margin: 0 0 22px;
}

    .hero h1 .thin {
        font-weight: 500;
        color: var(--ink-soft);
    }

    .hero h1 .gold-em {
        color: var(--gold-dark);
        font-style: italic;
        font-weight: 600;
    }

.hero-sign {
    font-size: 15px;
    letter-spacing: .12em;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 14px;
}

.hero-sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 640px;
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    max-width: 640px;
    border-top: 1px solid var(--border);
    padding-top: 36px;
}

.stat-num {
    font-family: 'Playfair Display',serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--ink);
}

.stat-label {
    font-size: 13.5px;
    color: var(--muted);
    margin-top: 4px;
}

.section {
    padding: 64px 24px;
}

.section-alt {
    background: var(--cream-2);
}

.eyebrow {
    font-size: 12.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px;
}

.section-desc {
    color: var(--muted);
    max-width: 600px;
    margin-bottom: 40px;
}

.grid {
    display: grid;
    gap: 22px;
}

.grid-3 {
    grid-template-columns: repeat(3,1fr);
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
    height: 300px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.stars {
    color: var(--gold);
    font-size: 15px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 14.5px;
    color: var(--ink-soft);
    margin-bottom: 14px;
    font-style: italic;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 6px;
}

    .testi-text::-webkit-scrollbar {
        width: 4px;
    }

    .testi-text::-webkit-scrollbar-track {
        background: transparent;
    }

    .testi-text::-webkit-scrollbar-thumb {
        background: var(--border);
        border-radius: 10px;
    }

.testi-name {
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 26px;
}

    .card h3 {
        font-size: 19px;
        margin: 0 0 8px;
    }

    .card p {
        color: var(--muted);
        font-size: 14.5px;
        margin: 0;
    }

.ann-item {
    background: var(--white);
    border-left: 4px solid var(--gold);
    border-radius: 0 10px 10px 0;
    padding: 16px 20px;
    margin-bottom: 14px;
}

.ann-date {
    font-size: 12px;
    color: var(--muted);
}

.status-pill {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 10px;
}

.status-active {
    background: #E4EEDE;
    color: #5C7A4E;
}

.status-passive {
    background: #F2E1DC;
    color: #B24C3A;
}

.footer {
    background: var(--ink);
    color: #D8D2C4;
    padding: 40px 24px 24px;
    overflow-x: hidden;
    margin-top: 0;
    text-align: center;
}

    .footer .logo {
        color: #fff;
        justify-content: center;
        display: flex;
    }

    .footer p {
        font-size: 13px;
        color: #B7AF9E;
        margin-top: 10px;
    }

.footer-tagline {
    text-align: center;
    color: #B7AF9E;
    font-size: 13.5px;
    margin: 8px 0 0;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin: 22px 0 4px;
    padding-top: 20px;
    border-top: 1px solid #3a362f;
}

    .footer-nav a {
        color: #B7AF9E;
        font-size: 13px;
        font-weight: 600;
        transition: color .2s;
    }

        .footer-nav a:hover {
            color: var(--gold);
        }

.footer-legal-block {
    display: flex;
    align-items: center;
    color: #a29a8b;
    font-size: 12.5px;
}

.footer-legal-link {
    color: #a29a8b;
    text-decoration: underline;
    transition: color .2s;
}

    .footer-legal-link:hover {
        color: var(--gold);
    }

.nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream-2);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 14px;
}

.tool-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tool-tab {
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--white);
    font-weight: 600;
    font-size: 14px;
}

    .tool-tab.active {
        background: var(--ink);
        color: var(--cream-2);
        border-color: var(--ink);
    }

.hidden {
    display: none !important;
}

.pomodoro-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 44px;
    text-align: center;
    max-width: 460px;
    margin: 0 auto;
}

.pomodoro-time {
    font-family: 'Playfair Display',serif;
    font-size: 72px;
    font-weight: 700;
    margin: 20px 0;
}

.pomodoro-mode {
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 700;
}

.pomodoro-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 24px;
}

.pomodoro-presets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.preset-btn {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: var(--cream-2);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-soft);
}

    .preset-btn.active {
        border-color: var(--gold);
        background: var(--gold-light);
        color: var(--gold-dark);
    }

.grid-4 {
    grid-template-columns: repeat(4,1fr);
}

.study-summary {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin-bottom: 30px;
}

    .study-summary .card {
        text-align: center;
    }

    .study-summary .stat-num {
        font-size: 26px;
    }

.study-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 10px;
}

.ders-grup-pill {
    font-size: 11px;
    font-weight: 700;
    background: var(--gold-light);
    color: var(--gold-dark);
    padding: 2px 9px;
    border-radius: 999px;
    margin-left: 8px;
}

.icon-btn {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 6px;
    width: 30px;
    height: 30px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon-btn:hover {
        background: var(--gold-light);
    }

input, textarea, select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter',sans-serif;
    font-size: 14.5px;
    background: var(--white);
    color: var(--ink);
}

    input:focus, textarea:focus, select:focus {
        outline: 2px solid var(--gold-light);
        border-color: var(--gold);
    }

label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-soft);
    display: block;
    margin-bottom: 6px;
}

.field {
    margin-bottom: 18px;
}

textarea {
    min-height: 110px;
    resize: vertical;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12.5px;
    border-radius: 6px;
}

.login-box {
    max-width: 380px;
    margin: 80px auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px;
    text-align: center;
}

@media(max-width:1200px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

@media(max-width:560px) {
    .nav-inner {
        padding: 12px 16px;
        gap: 10px;
    }

    .nav-right {
        gap: 8px;
    }

        .nav-right .btn-gold {
            display: none;
        }

    .logo {
        font-size: 19px;
    }
}

@media(max-width:860px) {
    .hero h1 {
        font-size: 32px;
    }

    .grid-3, .stats-row {
        grid-template-columns: 1fr;
    }
}

@media(max-width:700px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .study-summary {
        grid-template-columns: 1fr;
    }
}

.about-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

    .about-grid .photo-placeholder {
        flex: 0 0 260px;
        width: 260px;
    }

    .about-grid > div:last-child {
        flex: 1;
        min-width: 0;
    }

.photo-placeholder {
    border: 2px solid var(--gold);
    border-radius: 16px;
    background: var(--cream-2);
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
}

    .photo-placeholder .emoji {
        font-size: 48px;
    }

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
    margin: 24px 0;
}

.highlight-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    border-radius: 0 10px 10px 0;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 14.5px;
}

.eyebrow-dash::before {
    content: "— ";
}

.btn-gold {
    background: var(--gold-solid);
    color: #fff;
}

    .btn-gold:hover {
        background: var(--gold-solid-hover);
    }

@media(max-width:560px) {
    .about-grid {
        flex-direction: column;
    }

        .about-grid .photo-placeholder {
            flex: none;
            width: 100%;
            max-width: 280px;
            margin: 0 auto 24px;
        }

    .highlight-grid {
        grid-template-columns: 1fr;
    }
}

.admin-menu-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
    margin-bottom: 36px;
}

.admin-menu-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 14.5px;
    transition: .2s;
}

    .admin-menu-card:hover {
        border-color: var(--gold);
        background: var(--gold-light);
    }

@media(max-width:800px) {
    .admin-menu-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

.star-input {
    position: relative;
    border: 0;
    display: flex;
    flex-direction: row-reverse;
    gap: 2px;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
}

    .star-input input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .star-input label {
        font-size: 30px;
        color: var(--border);
        cursor: pointer;
        line-height: 1;
        transition: color .15s;
    }

    .star-input input:checked ~ label {
        color: var(--gold);
    }

    .star-input label:hover, .star-input label:hover ~ label {
        color: var(--gold-dark);
    }

.testi-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
}

    .testi-scroll::-webkit-scrollbar {
        height: 6px;
    }

    .testi-scroll::-webkit-scrollbar-track {
        background: var(--cream-2);
        border-radius: 10px;
    }

    .testi-scroll::-webkit-scrollbar-thumb {
        background: var(--border);
        border-radius: 10px;
    }

        .testi-scroll::-webkit-scrollbar-thumb:hover {
            background: var(--gold-light);
        }

    .testi-scroll .testi-card {
        scroll-snap-align: start;
        flex: 0 0 300px;
    }

.testi-achievement {
    margin-top: 8px;
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--gold-dark);
    background: var(--gold-light);
    padding: 3px 10px;
    border-radius: 999px;
    flex-shrink: 0;
    width: fit-content;
}

.ann-scroll-wrap {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
}

    .ann-scroll-wrap::-webkit-scrollbar {
        display: none;
    }

.ann-card {
    scroll-snap-align: start;
    flex: 0 0 380px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 22px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform .2s,box-shadow .2s,border-color .2s;
    text-decoration: none;
    color: inherit;
}

    .ann-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg,var(--gold),var(--gold-light));
    }

    .ann-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 32px rgba(0,0,0,.09);
        border-color: var(--gold);
    }

.ann-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--gold-light);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.ann-card-body {
    min-width: 0;
}

.ann-card-date {
    font-size: 11.5px;
    color: var(--muted);
    margin-bottom: 4px;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.ann-card h3 {
    font-family: 'Playfair Display',serif;
    font-size: 16px;
    margin: 0 0 4px;
    color: var(--ink);
}

.ann-card p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ann-card-cta {
    display: inline-block;
    margin-top: 6px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--gold-dark);
}

.ann-new-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold);
    color: #fff;
    font-size: 9.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 999px;
    letter-spacing: .04em;
}

.ann-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 18px;
}

.ann-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: .2s;
}

    .ann-dot.active {
        width: 22px;
        background: var(--gold);
    }

@media(max-width:500px) {
    .ann-card {
        flex: 0 0 300px;
    }
}

.cta-band2 {
    background: var(--ink);
    padding: 18px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 2px solid var(--gold);
}

.cta-decor {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 26px;
    opacity: .04;
    pointer-events: none;
    filter: grayscale(1) brightness(3);
}

.cta-band2-inner {
    position: relative;
    z-index: 1;
}

.cta-band2-title {
    font-family: 'Playfair Display',serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--cream-2);
    line-height: 1.2;
    margin-bottom: 6px;
}

.cta-band2-sub {
    color: rgba(245,240,232,.6);
    font-size: 12.5px;
    margin-bottom: 12px;
}

@media(max-width:600px) {
    .cta-band2-title {
        font-size: 18px;
    }
}

.scroll-top-btn {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--gold-light);
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s;
    z-index: 900;
}

    .scroll-top-btn.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .scroll-top-btn:hover {
        background: var(--gold-dark);
        color: #fff;
    }

.testi-carousel {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .testi-carousel .testi-scroll {
        flex: 1;
        min-width: 0;
    }

.testi-nav {
    flex-shrink: 0;
    position: static;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 4px 14px rgba(0,0,0,.12);
    font-size: 20px;
    color: var(--ink);
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

    .testi-nav:hover {
        background: var(--gold);
        color: #fff;
        border-color: var(--gold);
    }

@media(max-width:640px) {
    .testi-nav {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

@media(max-width:480px) {
    .testi-card {
        height: 240px;
        padding: 18px;
    }

    .testi-scroll .testi-card {
        flex: 0 0 220px;
    }

    .testi-carousel {
        gap: 6px;
    }

    .testi-nav {
        width: 28px;
        height: 28px;
        font-size: 14px;
        flex-shrink: 0;
    }
}

.page-top {
    background: var(--cream-2);
    padding: 56px 24px 40px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

    .page-top::after {
        content: '';
        display: block;
        height: 2px;
        background: linear-gradient(90deg,var(--gold),transparent);
        margin-top: 32px;
        max-width: 1120px;
        margin-left: auto;
        margin-right: auto;
    }

.page-top-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.s-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.s-title {
    font-family: 'Playfair Display',serif;
    font-size: clamp(28px,4vw,42px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 12px;
    color: var(--ink);
}

.s-sub {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 560px;
}

.filt-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.filt {
    padding: 8px 18px;
    font-size: 13.5px;
    font-weight: 600;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    border-radius: 8px;
    transition: .2s;
}

    .filt:hover, .filt.on {
        background: var(--gold);
        color: #fff;
        border-color: var(--gold);
    }

.pkg-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
}

.sk-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.sk-kurum {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 3px 10px;
    margin-bottom: 10px;
    background: var(--gold-light);
    color: var(--gold-dark);
    border-radius: 999px;
}

.sk-ad {
    font-family: 'Playfair Display',serif;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 6px;
    color: var(--ink);
}

.sk-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

@media(min-width:900px) {
    .sk-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

.sk-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.sk-tag {
    background: var(--cream-2);
    border: 1px solid var(--border);
    color: var(--ink-soft);
    font-size: 11.5px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 6px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: start;
}

.contact-info-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 14px;
}

.contact-info-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gold-light);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
}

.contact-info-card:hover .contact-info-icon {
    background: var(--gold);
    color: #fff;
}

.contact-info-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 3px;
}

.contact-info-value {
    font-weight: 700;
    color: var(--ink);
    font-size: 14.5px;
    line-height: 1.4;
}

.contact-info-link {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
}

.contact-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    border-radius: 12px;
    padding: 28px;
}

@media(max-width:800px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.hi-cols {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--border);
}

.hi-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

    .hi-col:first-child {
        border-right: 1px solid var(--border);
    }

.hi-item2 {
    border-bottom: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    padding: 22px 26px;
    cursor: pointer;
    transition: background .15s;
}

    .hi-item2:hover {
        background: var(--cream-2);
    }

.hi-item2-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.hi-icon2 {
    font-size: 20px;
    flex-shrink: 0;
}

.hi-item2-title {
    font-family: 'Playfair Display',serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
}

.hi-item2-sub {
    color: var(--gold-dark);
    font-size: 13.5px;
    font-weight: 600;
}

.hi-toggle-icon {
    font-size: 22px;
    color: var(--gold-dark);
    font-weight: 400;
    flex-shrink: 0;
    line-height: 1;
}

.hi-item2-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
}

.hi-item2.open .hi-item2-body {
    max-height: 260px;
    margin-top: 14px;
}

.hi-item2-body p {
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 12px;
}

.hi-item2-cta {
    color: var(--ink);
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: .05em;
    text-transform: uppercase;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
}

@media(max-width:800px) {
    .hi-cols {
        flex-direction: column;
    }

    .hi-col:first-child {
        border-right: none;
    }
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 20px;
    transition: border-color .2s,transform .2s;
}

    .why-item:hover {
        border-color: var(--gold);
        transform: translateY(-2px);
    }

.why-check {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gold-light);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.why-text {
    font-weight: 600;
    color: var(--ink);
    font-size: 14.5px;
}

@media(max-width:800px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:500px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.sk-standalone {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px;
    position: relative;
    overflow: hidden;
    transition: border-color .3s;
}

    .sk-standalone:hover {
        border-color: var(--gold);
    }

    .sk-standalone::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gold);
    }

.sk-parent {
    grid-column: 1/-1;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

    .sk-parent::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gold);
    }

.sk-parent-sub {
    font-size: 14px;
    color: var(--ink-soft);
    font-weight: 600;
    margin-bottom: 6px;
}

.sk-sub-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 22px;
    border-top: 1px solid var(--border);
}

.sk-sub-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 4px;
    border-bottom: 1px solid var(--border);
}

.sk-sub-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.sk-sub-title {
    font-family: 'Playfair Display',serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
}

.sk-sub-subtitle {
    font-size: 13px;
    color: var(--muted);
    margin-top: 2px;
}

@media(min-width:700px) {
    .sk-sub-grid {
        grid-template-columns: repeat(2,1fr);
        column-gap: 24px;
    }
}

.sk-cta {
    display: inline-block;
    margin-top: 18px;
    color: var(--ink);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .03em;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
}

.sk-support-band {
    margin-top: 36px;
    background: var(--ink);
    border-radius: 14px;
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.sk-support-text {
    color: var(--cream-2);
    font-weight: 600;
    font-size: 15px;
    max-width: 480px;
}

.sk-support-btn {
    background: var(--gold);
    color: #fff;
    font-weight: 700;
    font-size: 13.5px;
    padding: 11px 22px;
    border-radius: 8px;
    white-space: nowrap;
}

    .sk-support-btn:hover {
        background: var(--gold-dark);
    }

.sk-sub-icon:empty, .ann-icon:empty {
    display: none;
}

.inst-osym {
    background: #FCE4D0;
    color: #B5651D;
}

.inst-meb {
    background: #D6E4F0;
    color: #2E5A8C;
}

.inst-ags {
    background: #E6D9F2;
    color: #6B3FA0;
}

.inst-msb {
    background: #E3DFC8;
    color: #6B6432;
}

.inst-emniyet {
    background: #D4EAD8;
    color: #2E7D42;
}

.inst-default {
    background: var(--gold-light);
    color: var(--gold-dark);
}

p {
    white-space: pre-line;
}

.sk-desc,
.camp-desc,
.hi-desc,
.hi-item2-body p,
.card p,
.ann-item p,
.testi-text,
.contact-info-value,
.sk-parent-sub,
.section-desc,
.hero-sub {
    white-space: pre-line;
}

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-excerpt {
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-card-footer {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

    .blog-card-footer .sk-cta {
        margin-top: 10px;
        display: inline-block;
    }

.blog-cat-pill {
    display: inline-block;
    background: var(--gold-light);
    color: var(--gold-dark);
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    letter-spacing: .02em;
}

.camp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.camp-duration-badge {
    display: inline-block;
    background: var(--gold-light);
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 4px 12px;
    border-radius: 999px;
}

@media(min-width:800px) {
    .camp-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

.footer-bottom-row {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding: 0 8px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

    .footer-socials a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        transition: .2s;
    }

        .footer-socials a:hover {
            background: var(--gold);
        }

.footer-credit {
    position: relative;
    z-index: 950;
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: #B7AF9E;
}

    .footer-credit a {
        position: relative;
        z-index: 950;
        color: #B7AF9E;
        text-decoration: none;
        transition: color .2s;
        pointer-events: auto;
        display: inline-block;
    }

        .footer-credit a:hover,
        .footer-credit:hover {
            color: var(--gold);
        }

@media(max-width:600px) {
    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
    }

    .footer-credit {
        margin-top: 10px;
    }
}

.camp-card3 {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: border-color .3s, transform .2s;
}

    .camp-card3::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gold);
    }

    .camp-card3:hover {
        border-color: var(--gold);
        transform: translateY(-3px);
    }

.camp-card3-head {
    padding-bottom: 18px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--border);
}

.camp-card3-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.camp-date-badge {
    display: inline-block;
    background: var(--cream-2);
    border: 1px solid var(--border);
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .03em;
    padding: 4px 12px;
    border-radius: 999px;
}

.camp-card3-title {
    font-family: 'Playfair Display',serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.3;
}

.camp-card3-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.camp-card3-subtitle {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 13.5px;
    margin-top: 6px;
}

.camp-card3-location {
    color: var(--muted);
    font-size: 13px;
    margin-top: 8px;
}

.camp-card3-body {
    flex: 1;
    margin-top: 18px;
}

    .camp-card3-body p {
        color: var(--ink-soft);
        font-size: 14.5px;
        line-height: 1.65;
        margin: 0 0 16px;
    }

.camp-card3-participant {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 14px;
}

.camp-card3-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 4px;
}

.camp-tag-pill {
    background: var(--gold-light);
    color: var(--gold-dark);
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
}

.camp-card3-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: 18px;
}

.camp-card3-price {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 14px;
}

.camp-wa-btn2 {
    background: var(--gold);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 9px 16px;
    border-radius: 8px;
    white-space: nowrap;
    transition: background .2s;
}

    .camp-wa-btn2:hover {
        background: var(--gold-dark);
    }

@media(max-width:500px) {
    .camp-card3-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .camp-wa-btn2 {
        width: 100%;
        text-align: center;
    }
}

.page-transition-overlay {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
}

    .page-transition-overlay.show {
        opacity: 1;
        visibility: visible;
    }

.page-transition-logo {
    font-family: 'Playfair Display',serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--ink);
    animation: transitionPulse 1s ease-in-out infinite;
}

    .page-transition-logo .accent {
        color: var(--gold);
    }

.page-transition-sub {
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
}

@keyframes transitionPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.97);
    }
}

.wa-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 950;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.wa-toggle-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
    transition: transform .2s;
}

    .wa-toggle-btn:hover {
        transform: scale(1.06);
    }

.wa-panel {
    width: 300px;
    max-width: calc(100vw - 48px);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,.2);
    overflow: hidden;
    display: none;
    flex-direction: column;
}

    .wa-panel.show {
        display: flex;
    }

.wa-panel-header {
    background: #211C18;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.wa-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.wa-panel-title {
    color: #fff;
    font-weight: 700;
    font-size: 14.5px;
}

.wa-panel-sub {
    color: rgba(255,255,255,.55);
    font-size: 11.5px;
}

.wa-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    color: rgba(255,255,255,.6);
    font-size: 16px;
    cursor: pointer;
}

    .wa-close:hover {
        color: #fff;
    }

.wa-panel-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--cream-2);
}

.wa-bubble {
    background: var(--white);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.wa-option {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    text-align: center;
    transition: background .2s, border-color .2s;
}

    .wa-option:hover {
        background: var(--gold-light);
        border-color: var(--gold);
    }

@media(max-width:500px) {
    .wa-widget {
        right: 16px;
        bottom: 16px;
    }
}

/* ====================== STORY / EDİTÖRYAL HERO ====================== */
.story-hero {
    padding: 90px 24px 70px;
    max-width: 1100px;
    margin: 0 auto;
}

    .story-hero h1 {
        font-family: 'Playfair Display',serif;
        font-weight: 600;
        font-size: clamp(30px,5vw,54px);
        line-height: 1.28;
        letter-spacing: -0.01em;
        max-width: 820px;
        color: var(--ink);
    }

        .story-hero h1 em {
            font-style: italic;
            color: var(--gold-dark);
            font-weight: 500;
        }

    .story-hero .sub {
        margin-top: 26px;
        font-size: 17px;
        color: var(--muted);
        max-width: 520px;
    }

.story-accent-line {
    margin-top: 40px;
    padding-top: 26px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    letter-spacing: .08em;
    color: var(--muted);
    text-transform: uppercase;
}

.story-lede {
    font-family: 'Playfair Display',serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(20px,2.8vw,26px);
    line-height: 1.55;
    max-width: 760px;
    color: var(--ink);
    margin: 6px 0 0;
}

    .story-lede .hl {
        color: var(--gold-dark);
        font-style: normal;
        font-weight: 700;
    }

/* split (Her Öğrenci Biriciktir) */
.story-split {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 24px 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

    .story-split h2 {
        font-family: 'Playfair Display',serif;
        font-weight: 700;
        font-size: clamp(24px,3.4vw,32px);
        line-height: 1.28;
        color: var(--ink);
    }

    .story-split p {
        color: var(--muted);
        font-size: 15.5px;
        margin-bottom: 12px;
    }

.story-traits {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    border-top: 1px solid var(--border);
}

    .story-traits div {
        padding: 13px 0;
        border-bottom: 1px solid var(--border);
        font-size: 15px;
        color: var(--ink);
        font-weight: 600;
        display: flex;
        justify-content: space-between;
    }

        .story-traits div::after {
            content: '—';
            color: var(--gold);
        }

.story-payoff {
    font-family: 'Playfair Display',serif;
    font-style: italic;
    font-size: 18px;
    color: var(--ink);
    border-left: 2px solid var(--gold);
    padding-left: 20px;
}

@media(max-width:800px) {
    .story-split {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* dark band (Biz Ders Çalıştırmıyoruz) */
.story-band {
    background: var(--ink);
    color: var(--cream);
    padding: 60px 24px;
}

.story-band-inner {
    max-width: 1100px;
    margin: 0 auto;
}

    .story-band-inner .eyebrow {
        color: var(--gold-light);
    }

    .story-band-inner h2 {
        font-family: 'Playfair Display',serif;
        font-weight: 700;
        font-size: clamp(24px,3.6vw,34px);
        color: var(--cream);
        margin-bottom: 30px;
    }

.story-grid4 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    background: rgba(245,240,232,.14);
    border: 1px solid rgba(245,240,232,.14);
}

    .story-grid4 div {
        background: var(--ink);
        padding: 24px 18px;
        font-size: 15.5px;
        font-weight: 600;
    }

@media(max-width:800px) {
    .story-grid4 {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:480px) {
    .story-grid4 {
        grid-template-columns: 1fr;
    }

    .story-fork {
        flex-direction: column;
    }

        .story-fork .no {
            border-right: none;
            border-bottom: 1px solid var(--border);
        }

    .story-rhythm-visual {
        margin: 0 auto;
    }

    .story-rhythm {
        justify-content: center;
        text-align: center;
    }

        .story-rhythm p {
            margin-left: auto;
            margin-right: auto;
        }
}

.story-band-foot {
    margin-top: 28px;
    font-size: 14.5px;
    color: rgba(245,240,232,.65);
}

    .story-band-foot b {
        color: var(--cream);
    }

/* rhythm (Her Gün Bir Adım) */
.story-rhythm {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 24px;
    display: flex;
    align-items: center;
    gap: 44px;
    flex-wrap: wrap;
}

.story-rhythm-visual {
    display: flex;
    gap: 6px;
    align-items: flex-end;
    height: 80px;
}

    .story-rhythm-visual .bar {
        width: 8px;
        background: var(--border);
        border-radius: 2px;
    }

        .story-rhythm-visual .bar.active {
            background: var(--gold);
        }

.story-rhythm h3 {
    font-family: 'Playfair Display',serif;
    font-size: clamp(21px,2.8vw,27px);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ink);
}

.story-rhythm p {
    color: var(--muted);
    font-size: 15px;
    max-width: 400px;
}

.story-tag {
    display: inline-block;
    margin-top: 14px;
    font-size: 12.5px;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 700;
}

/* quote (Sessizce Çalışanlar) */
.story-quote {
    text-align: center;
    padding: 60px 24px;
    max-width: 900px;
    margin: 0 auto;
}

    .story-quote blockquote {
        font-family: 'Playfair Display',serif;
        font-weight: 500;
        font-style: italic;
        font-size: clamp(22px,3.6vw,34px);
        line-height: 1.42;
        color: var(--ink);
        margin: 0;
    }

        .story-quote blockquote .hl {
            color: var(--gold-dark);
            font-style: normal;
            font-weight: 700;
        }

    .story-quote .story-attr {
        margin-top: 24px;
        font-size: 12.5px;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--muted);
    }

/* numbered feature grid (ARE Study System) */
.story-features {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 70px;
}

    .story-features .story-feat-grid {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 1px;
        background: var(--border);
        border: 1px solid var(--border);
    }

    .story-features .feat-card {
        background: var(--white);
        padding: 30px 26px;
    }

        .story-features .feat-card .num {
            font-family: 'Playfair Display',serif;
            font-style: italic;
            font-size: 14px;
            font-weight: 600;
            color: #6E3612;
            margin-bottom: 12px;
        }

        .story-features .feat-card h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--ink);
        }

        .story-features .feat-card p {
            font-size: 14px;
            color: var(--muted);
            margin: 0;
        }

        .story-features .feat-card.closing {
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gold-solid);
        }

            .story-features .feat-card.closing p {
                color: #fff;
                font-family: 'Playfair Display',serif;
                font-style: italic;
                font-size: 15.5px;
                text-align: center;
            }

@media(max-width:800px) {
    .story-features .story-feat-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        background: none;
        border: none;
    }

    .story-features .feat-card {
        border-radius: 12px;
        border: 1px solid var(--border);
        box-shadow: 0 4px 14px rgba(0,0,0,.05);
    }
}

/* closing statement before real CTA band */
.story-closing {
    max-width: 780px;
    margin: 0 auto;
    padding: 20px 24px 70px;
    text-align: center;
}

    .story-closing p {
        font-family: 'Playfair Display',serif;
        font-weight: 600;
        font-size: clamp(22px,3.2vw,30px);
        line-height: 1.4;
        color: var(--ink);
        margin-bottom: 34px;
    }

.story-fork {
    display: flex;
    max-width: 620px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

    .story-fork div {
        flex: 1;
        padding: 20px 18px;
        font-size: 14.5px;
    }

    .story-fork .no {
        color: var(--muted);
        border-right: 1px solid var(--border);
    }

    .story-fork .yes {
        color: var(--ink);
        font-weight: 700;
        background: var(--gold-light);
    }


/* ====================== HİZMETLER SAYFASI — DÜZENLİ İSTATİSTİK KARTI ====================== */
.page-top-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 20px 48px rgba(0,0,0,.08);
}

.hero-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
}

.hero-stat-cell {
    text-align: center;
    padding: 18px 8px;
    border-radius: 10px;
    background: var(--cream-2);
}

.hero-stat-num {
    font-family: 'Playfair Display',serif;
    font-weight: 700;
    font-size: 26px;
    color: var(--gold-dark);
    line-height: 1.1;
    white-space: nowrap;
}

.hero-stat-label {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 600;
    margin-top: 6px;
}

@media(max-width:780px) {
    .page-top-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-stat-card {
        margin-top: 28px;
        padding: 22px 18px;
    }

    .hero-stat-grid {
        gap: 12px 10px;
    }

    .hero-stat-cell {
        padding: 16px 6px;
    }

    .hero-stat-num {
        font-size: 21px;
    }

    .hero-stat-label {
        font-size: 10.5px;
    }
}

@media(max-width:360px) {
    .hero-stat-num {
        font-size: 18px;
    }

    .hero-stat-cell {
        padding: 12px 4px;
    }
}

/* ====================== DUYURU KARTI — GÖRSELLİ VERSİYON ====================== */
/* .ann-card varsayılan olarak yatay (satır) düzeninde — küçük emoji ikonu + yazı
   yan yana durması için. Gerçek bir kapak görseli eklendiğinde bu düzen bozulup
   metni dar bir alana sıkıştırıyordu. Görsel varsa kartı dikey düzene çeviriyoruz. */
.ann-card.has-image {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
}

.ann-card-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
    display: block;
}

.ann-card.has-image .ann-card-body {
    padding: 16px 20px 20px;
}

.ann-card.has-image .ann-new-badge {
    z-index: 2;
}

@media(max-width:600px) {
    .ann-card-img {
        height: 120px;
    }
}
