:root {
    --site-ink: #0f2744;
    --site-accent: #3d8fd9;
    --site-cyan: #5eb0f0;
    --site-sand: #e8eef5;
    --site-cream: #f7f9fc;
    --home-navy: #071536;
    --home-navy-2: #0c1f4a;
    --home-line: rgba(170, 205, 255, 0.22);
    --site-header-h: 5.2rem;
}

html {
    overflow-x: hidden;
}
* { box-sizing: border-box; }

body.site-body {
    margin: 0;
    min-height: 100vh;
    padding-top: var(--site-header-h);
    font-family: "Segoe UI", system-ui, sans-serif;
    color: var(--site-ink);
    background: linear-gradient(165deg, #0f2744 0%, #1a3a5c 42%, #e8eef5 42.1%, var(--site-cream) 100%);
}

body.site-home {
    padding-top: 0;
    font-family: "Outfit", "Segoe UI", sans-serif;
    color: #e8f0ff;
    background: var(--home-navy);
    overflow-x: hidden;
}

/* Girişli ana sayfa: yalnızca hero — footer 100vh altına taşmasın */
html:has(> body.site-home:not(.site-home-tanitim)) {
    height: 100%;
    overflow: hidden;
}
body.site-home:not(.site-home-tanitim) {
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
}
body.site-home:not(.site-home-tanitim) main {
    height: 100%;
}
body.site-home:not(.site-home-tanitim) .home-hero,
body.site-home:not(.site-home-tanitim) .home-hero-stage {
    min-height: 100%;
    height: 100%;
}
body.site-home:not(.site-home-tanitim) .home-foot {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    max-width: none;
    margin: 0;
    padding: 0 1.35rem 1.15rem;
    pointer-events: none;
}
body.site-home:not(.site-home-tanitim) .home-foot span {
    display: block;
    max-width: 1180px;
    margin: 0 auto;
}
body.site-home:not(.site-home-tanitim) .home-foot a {
    pointer-events: auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 60;
    backdrop-filter: blur(10px);
    background: rgba(15, 39, 68, 0.92);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
body.site-home .site-header {
    background: rgba(7, 21, 54, 0.86);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0.4rem 1.35rem;
    padding-left: max(1.35rem, env(safe-area-inset-left));
    padding-right: max(1.35rem, env(safe-area-inset-right));
    display: flex;
    align-items: center;
    gap: 1rem;
}
.site-brand {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.06em;
    text-decoration: none;
    font-family: "Sora", "Outfit", sans-serif;
    line-height: 0;
}
.site-brand img {
    display: block;
    width: 200px;
    height: 67px;
    object-fit: contain;
    mix-blend-mode: lighten;
}
.site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}
.site-nav:empty { display: none; }
.site-nav > a {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
}
.site-nav > a:hover, .site-nav > a.active { color: #fff; }

.site-header-aksiyon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
.site-nav-toggle {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 6px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.site-nav-toggle-cizgi,
.site-nav-toggle-cizgi::before,
.site-nav-toggle-cizgi::after {
    display: block;
    width: 1.05rem;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    position: relative;
}
.site-nav-toggle-cizgi::before,
.site-nav-toggle-cizgi::after {
    content: "";
    position: absolute;
    left: 0;
}
.site-nav-toggle-cizgi::before { top: -6px; }
.site-nav-toggle-cizgi::after { top: 6px; }
.site-nav-toggle[aria-expanded="true"] .site-nav-toggle-cizgi {
    background: transparent;
}
.site-nav-toggle[aria-expanded="true"] .site-nav-toggle-cizgi::before {
    top: 0;
    transform: rotate(45deg);
}
.site-nav-toggle[aria-expanded="true"] .site-nav-toggle-cizgi::after {
    top: 0;
    transform: rotate(-45deg);
}

.site-giris-wrap { position: relative; }
.site-giris-btn {
    border: 1px solid rgba(255,255,255,0.35);
    background: transparent;
    color: #fff;
    border-radius: 6px;
    padding: 0.4rem 0.95rem;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}
.site-giris-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }
.site-giris-perde {
    display: none;
}
.site-giris-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    width: 280px;
    max-width: calc(100vw - 1.5rem);
    background: #fff;
    color: var(--site-ink);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    padding: 1rem;
    z-index: 50;
}
.site-giris-panel-baslik {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin: 0 0 0.75rem;
    color: var(--site-ink);
    font-size: 0.95rem;
}
.site-giris-kapat {
    width: 2rem;
    height: 2rem;
    margin: -0.35rem -0.35rem -0.35rem 0;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #445;
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
}
.site-giris-kapat:hover { background: var(--site-sand); }
.site-giris-captcha {
    border-radius: 4px;
    border: 1px solid #dde3ea;
    background: #fff;
}

.site-hesabim-wrap { position: relative; }
.site-hesabim-wrap .site-giris-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    max-width: 16rem;
}
.site-hesabim-ad {
    font-weight: 600;
    max-width: 9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    opacity: 0.9;
}
.site-hesabim-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 200px;
    background: #fff;
    color: var(--site-ink);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    padding: 0.4rem 0;
    z-index: 50;
}
.site-hesabim-menu a,
.site-hesabim-menu button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.55rem 1rem;
    border: 0;
    background: transparent;
    color: var(--site-ink);
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
}
.site-hesabim-menu a:hover,
.site-hesabim-menu button:hover { background: var(--site-sand); }
.site-hesabim-cikis {
    margin: 0;
    border-top: 1px solid #e6ebf1;
    padding-top: 0.25rem;
    margin-top: 0.25rem;
}

/* body.site-body diyagonal gradyanı daha spesifik; alt sayfalarda ezilmeli */
body.site-body.site-body-alt {
    background: var(--site-cream);
}
body.site-body.site-body-alt .site-form-wrap {
    color: var(--site-ink);
    background: #fff;
    border-radius: 12px;
    padding: 1.75rem 1.5rem 1.6rem;
    box-shadow: 0 10px 32px rgba(15, 39, 68, 0.1);
    position: relative;
    z-index: 1;
}
body.site-body.site-body-alt .site-form-wrap .site-card {
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin-top: 0.85rem;
    border-radius: 0;
}
.site-dl dt { color: #567; font-weight: 500; }
.site-dl dd { margin-bottom: 0.65rem; }

.site-oturum {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.site-oturum-ad {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    max-width: 12rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.site-oturum-cikis { margin: 0; }

/* --- Eski hero (diğer sayfalar için yedek) --- */
.site-hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4.5rem 1.25rem 5rem;
    color: #fff;
    min-height: 58vh;
}
.site-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    opacity: 0.75;
    margin-bottom: 0.75rem;
}
.site-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}
.site-lead {
    max-width: 34rem;
    font-size: 1.1rem;
    line-height: 1.55;
    opacity: 0.9;
    margin-bottom: 1.75rem;
}
.site-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.site-cta .btn-outline-light { border-width: 1.5px; }

.site-form-wrap {
    max-width: 640px;
    margin: 2rem auto 3rem;
    padding: 0 1.25rem;
}
.site-form-wrap h1 { margin-bottom: 0.35rem; }
.site-form-wrap #paketOzet {
    margin-top: 0.4rem;
    font-size: 0.9rem;
}
.site-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 8px 28px rgba(15,39,68,0.08);
    margin-top: 1rem;
}
.site-honeypot {
    position: absolute !important;
    left: -9999px !important;
    height: 0 !important;
    width: 0 !important;
    opacity: 0 !important;
}
.site-foot {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem 2rem;
    color: #567;
    font-size: 0.85rem;
}
.site-foot-ic {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem 1.2rem;
}
.site-foot a {
    color: #2b579a;
    text-decoration: none;
}
.site-foot a:hover { text-decoration: underline; }

/* ========== Ana sayfa hero (tam ekran) ========== */
.home-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: flex-end;
    padding: 0;
    overflow: hidden;
}
.home-hero-bleed {
    align-items: stretch;
}
.home-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #050d1c;
}
.home-hero-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
    transform: scale(1.06);
    animation: home-kenburns 22s ease-in-out infinite alternate;
    filter: saturate(1.08) contrast(1.05);
}
.home-hero-scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg,
            rgba(4, 12, 28, 0.92) 0%,
            rgba(6, 18, 40, 0.78) 38%,
            rgba(7, 21, 54, 0.35) 62%,
            rgba(5, 14, 32, 0.55) 100%),
        linear-gradient(180deg,
            rgba(4, 10, 24, 0.55) 0%,
            transparent 28%,
            transparent 55%,
            rgba(4, 10, 24, 0.88) 100%);
    pointer-events: none;
}
.home-hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 45% 40% at 72% 58%, rgba(61, 143, 217, 0.28) 0%, transparent 70%),
        radial-gradient(ellipse 30% 28% at 18% 70%, rgba(94, 176, 240, 0.12) 0%, transparent 65%);
    pointer-events: none;
    animation: home-glow-pulse 7s ease-in-out infinite;
}
.home-hero-stage {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: clamp(6.5rem, 14vh, 8rem) 1.35rem 5.5rem;
    display: flex;
    align-items: flex-end;
    min-height: 100vh;
    min-height: 100dvh;
}
.home-hero-copy {
    max-width: 34rem;
    padding: 0;
    animation: home-rise 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.home-bilgi {
    margin-bottom: 1rem;
    padding: 0.65rem 0.9rem;
    border-radius: 8px;
    background: rgba(46, 160, 90, 0.18);
    border: 1px solid rgba(90, 200, 130, 0.35);
    color: #d8ffe8;
    font-size: 0.92rem;
}
.home-brand {
    margin: 0 0 1.1rem;
    font-family: "Sora", "Outfit", sans-serif;
    font-size: clamp(2.4rem, 6.5vw, 4.2rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 0.95;
    color: #fff;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
    animation: home-brand-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.home-baslik {
    margin: 0 0 0.95rem;
    font-family: "Sora", "Outfit", sans-serif;
    font-size: clamp(1.45rem, 3.4vw, 2.15rem);
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: -0.02em;
    color: #f2f6ff;
    animation: home-rise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.home-vurgu {
    margin: 0 0 1.15rem;
    min-height: 1.55em;
    font-size: clamp(1.15rem, 2.4vw, 1.5rem);
    font-weight: 500;
    color: #7ec8ff;
    letter-spacing: 0.01em;
    animation: home-rise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}
.home-imlec {
    display: inline-block;
    width: 2px;
    height: 1.05em;
    margin-left: 2px;
    vertical-align: -0.12em;
    background: #7ec8ff;
    animation: home-blink 0.9s step-end infinite;
}
.home-lead {
    margin: 0 0 2rem;
    max-width: 28rem;
    font-size: clamp(1.02rem, 1.5vw, 1.12rem);
    line-height: 1.6;
    color: rgba(226, 236, 255, 0.82);
    animation: home-rise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.26s both;
}
.home-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    animation: home-rise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.34s both;
}
.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.55rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.home-btn:hover { transform: translateY(-2px); }
.home-btn-ana {
    background: var(--site-accent);
    color: #fff;
    border: 1px solid transparent;
    box-shadow: 0 10px 28px rgba(61, 143, 217, 0.35);
}
.home-btn-ana:hover { background: #4a9ce6; color: #fff; }
.home-btn-cizgi {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(6px);
}
.home-btn-cizgi:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.home-scroll {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 1.35rem;
    transform: translateX(-50%);
    width: 28px;
    height: 44px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.2s ease;
}
.home-scroll:hover { opacity: 1; }
.home-scroll-cizgi {
    width: 3px;
    height: 10px;
    border-radius: 2px;
    background: #fff;
    animation: home-scroll-dot 1.6s ease-in-out infinite;
}
.home-foot {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.35rem 1.75rem;
    color: rgba(180, 198, 230, 0.55);
    font-size: 0.82rem;
}
.home-foot .site-foot-ic {
    max-width: 1180px;
    margin: 0 auto;
}
.home-foot a {
    color: rgba(200, 216, 245, 0.85);
    text-decoration: none;
}
.home-foot a:hover { color: #fff; }

@keyframes home-rise {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes home-brand-in {
    from { opacity: 0; transform: translateY(28px) scale(0.98); letter-spacing: 0.08em; }
    to { opacity: 1; transform: translateY(0) scale(1); letter-spacing: 0.02em; }
}
@keyframes home-kenburns {
    from { transform: scale(1.06) translate3d(0, 0, 0); }
    to { transform: scale(1.14) translate3d(-2.2%, 1%, 0); }
}
@keyframes home-blink {
    50% { opacity: 0; }
}
@keyframes home-glow-pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}
@keyframes home-scroll-dot {
    0% { opacity: 0.25; transform: translateY(0); }
    40% { opacity: 1; }
    100% { opacity: 0.15; transform: translateY(12px); }
}

@media (max-width: 900px) {
    :root { --site-header-h: 4.15rem; }
    .site-brand img {
        width: 142px;
        height: 48px;
    }
    .site-header-inner {
        flex-wrap: wrap;
        padding-top: 0.35rem;
        padding-bottom: 0.35rem;
        row-gap: 0;
    }
    .site-nav-toggle {
        display: inline-flex;
    }
    .site-nav {
        display: none;
        order: 3;
        width: 100%;
        margin-left: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.25rem 0 0.45rem;
    }
    .site-nav.site-nav-acik {
        display: flex;
    }
    .site-nav > a {
        padding: 0.75rem 0.1rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        font-size: 1rem;
        white-space: normal;
    }
    .site-header-aksiyon {
        margin-left: auto;
    }
    .site-giris-perde {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 50;
        background: rgba(4, 12, 28, 0.55);
    }
    .site-giris-perde[hidden] {
        display: none !important;
    }
    .site-giris-panel {
        position: fixed;
        left: max(0.75rem, env(safe-area-inset-left));
        right: max(0.75rem, env(safe-area-inset-right));
        top: calc(var(--site-header-h) + 0.5rem);
        width: auto;
        max-width: 26rem;
        margin: 0 auto;
        max-height: calc(100dvh - var(--site-header-h) - 1.25rem);
        overflow-y: auto;
        z-index: 70;
        padding: 1.1rem 1.1rem 1.25rem;
        -webkit-overflow-scrolling: touch;
    }
    .site-giris-panel .form-control,
    .site-giris-panel .form-control-sm {
        font-size: 16px;
        min-height: 2.6rem;
    }
    .site-hesabim-menu {
        position: fixed;
        left: max(0.75rem, env(safe-area-inset-left));
        right: max(0.75rem, env(safe-area-inset-right));
        top: calc(var(--site-header-h) + 0.5rem);
        min-width: 0;
        max-width: 26rem;
        margin: 0 auto;
    }
    .site-hesabim-wrap .site-giris-btn {
        max-width: 11rem;
    }
    .site-hesabim-ad { max-width: 6rem; }
    body.site-giris-govde-kilit,
    body.site-nav-govde-kilit {
        overflow: hidden;
    }
    .home-hero-img { object-position: 62% center; }
    .home-hero-scrim {
        background:
            linear-gradient(180deg,
                rgba(4, 12, 28, 0.72) 0%,
                rgba(4, 12, 28, 0.45) 35%,
                rgba(4, 12, 28, 0.82) 100%),
            linear-gradient(90deg, rgba(4, 12, 28, 0.55) 0%, transparent 55%);
    }
    .home-hero-stage {
        padding: 5.6rem max(1rem, env(safe-area-inset-right)) 3.5rem max(1rem, env(safe-area-inset-left));
        align-items: flex-end;
    }
    .home-brand { font-size: clamp(2.1rem, 11vw, 3.2rem); }
}

@media (max-width: 640px) {
    .site-hero { padding-top: 2.5rem; min-height: auto; }
    .home-cta { flex-direction: column; align-items: stretch; }
    .home-btn { width: 100%; }
    .home-scroll { display: none; }
    .home-hero-copy { max-width: none; }
    .home-lead { max-width: none; }
    .site-form-wrap {
        margin-top: 1.25rem;
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
    .site-card { padding: 1.15rem; }
}

/* ========== Tanıtım (misafir ana sayfa) ========== */
body.site-home-tanitim {
    overflow-x: hidden;
}
body.site-home-tanitim .home-hero {
    min-height: 100vh;
}

.tanitim-blok {
    position: relative;
    z-index: 1;
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
    color: #132a45;
    background: #f4f7fb;
}
.tanitim-blok + .tanitim-blok {
    border-top: 1px solid rgba(15, 39, 68, 0.08);
}
.tanitim-giris {
    background:
        linear-gradient(180deg, #0a1a3a 0%, #0e2448 100%);
    color: #e8f0ff;
    border-top: 0;
}
.tanitim-giris .tanitim-ust { color: var(--site-cyan); }
.tanitim-giris .tanitim-baslik { color: #fff; }
.tanitim-giris .tanitim-metin { color: rgba(220, 230, 250, 0.82); }

.tanitim-yetenek { background: #eef3f9; }
.tanitim-icerik-genis {
    width: min(920px, 100%);
}
.hakkinda-eski-cekirdek {
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    overflow: hidden;
}
.hakkinda-giris {
    margin: 0 0 2rem;
    max-width: 46rem;
}
.hakkinda-giris p {
    margin: 0 0 0.95rem;
    font-size: 1.04rem;
    line-height: 1.7;
    color: rgba(15, 39, 68, 0.78);
}
.hakkinda-giris p:last-child { margin-bottom: 0; }
.tanitim-kime { background: #f7f9fc; }
.tanitim-adimlar { background: #e8eef5; }

.tanitim-icerik {
    width: min(880px, 100%);
    margin: 0 auto;
    padding: 0 1.35rem;
}
.tanitim-ust {
    margin: 0 0 0.65rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--site-accent);
}
.tanitim-baslik {
    margin: 0 0 1rem;
    font-family: "Sora", "Outfit", sans-serif;
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--site-ink);
}
.tanitim-metin {
    margin: 0;
    max-width: 40rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(15, 39, 68, 0.78);
}
.tanitim-metin-kisa {
    margin-bottom: 2.25rem;
    max-width: 32rem;
}

.yetenek-liste {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.yetenek-satir {
    display: grid;
    grid-template-columns: 4.5rem minmax(0, 1fr);
    gap: 1rem 1.35rem;
    padding: 1.35rem 0;
    border-top: 1px solid rgba(15, 39, 68, 0.1);
}
.yetenek-satir:last-child {
    border-bottom: 1px solid rgba(15, 39, 68, 0.1);
}
.yetenek-no {
    font-family: "Sora", "Outfit", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(61, 143, 217, 0.55);
    line-height: 1.2;
    padding-top: 0.15rem;
}
.yetenek-govde h3 {
    margin: 0 0 0.4rem;
    font-family: "Sora", "Outfit", sans-serif;
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--site-ink);
}
.yetenek-govde p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.55;
    color: rgba(15, 39, 68, 0.72);
    max-width: 36rem;
}
.tanitim-hakkinda .yetenek-govde p {
    max-width: 44rem;
    line-height: 1.65;
}
.hakkinda-devam {
    margin: 1.5rem 0 0;
    font-size: 1.02rem;
}
.hakkinda-devam a {
    font-weight: 600;
    color: var(--site-accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(61, 143, 217, 0.4);
}
.hakkinda-devam a:hover { color: #2b6fad; }
.hakkinda-giris a {
    color: var(--site-accent);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(61, 143, 217, 0.4);
}

.kime-satir {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem 2rem;
    margin-top: 1.75rem;
}
.kime-madde h3 {
    margin: 0 0 0.45rem;
    font-family: "Sora", "Outfit", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--site-ink);
}
.kime-madde p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(15, 39, 68, 0.7);
}

.adim-liste {
    list-style: none;
    margin: 1.75rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.adim-liste li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    font-size: 1.02rem;
    line-height: 1.5;
    color: rgba(15, 39, 68, 0.8);
}
.adim-liste li span {
    flex: 0 0 2rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--site-ink);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: "Sora", "Outfit", sans-serif;
}

.tanitim-cta {
    position: relative;
    z-index: 1;
    padding: clamp(3.5rem, 8vw, 5rem) 0;
    background:
        radial-gradient(ellipse 60% 80% at 70% 40%, rgba(61, 143, 217, 0.22) 0%, transparent 55%),
        linear-gradient(160deg, #071536 0%, #0c1f4a 55%, #0a1838 100%);
    color: #e8f0ff;
}
.tanitim-cta-icerik {
    text-align: left;
}
.tanitim-cta h2 {
    margin: 0 0 0.75rem;
    font-family: "Sora", "Outfit", sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}
.tanitim-cta p {
    margin: 0 0 1.75rem;
    max-width: 34rem;
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(220, 230, 250, 0.78);
}

.home-foot-tanitim {
    margin: 0 auto;
    padding: 1.5rem 1.35rem 2rem;
    max-width: 1180px;
    color: rgba(180, 198, 230, 0.55);
    background: #071536;
}

.tanitim-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.tanitim-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.yetenek-satir.tanitim-reveal:nth-child(2) { transition-delay: 0.04s; }
.yetenek-satir.tanitim-reveal:nth-child(3) { transition-delay: 0.08s; }
.yetenek-satir.tanitim-reveal:nth-child(4) { transition-delay: 0.12s; }
.yetenek-satir.tanitim-reveal:nth-child(5) { transition-delay: 0.16s; }
.yetenek-satir.tanitim-reveal:nth-child(6) { transition-delay: 0.2s; }
.yetenek-satir.tanitim-reveal:nth-child(7) { transition-delay: 0.24s; }
.yetenek-satir.tanitim-reveal:nth-child(8) { transition-delay: 0.28s; }
.kime-madde.tanitim-reveal:nth-child(2) { transition-delay: 0.08s; }
.kime-madde.tanitim-reveal:nth-child(3) { transition-delay: 0.14s; }
.adim-liste li.tanitim-reveal:nth-child(2) { transition-delay: 0.06s; }
.adim-liste li.tanitim-reveal:nth-child(3) { transition-delay: 0.12s; }
.adim-liste li.tanitim-reveal:nth-child(4) { transition-delay: 0.18s; }

/* ========== Fiyat kartları (Namecheap hosting tarzı) ========== */
.tanitim-fiyat {
    background: #f3f4f6;
    padding-bottom: clamp(3rem, 7vw, 5rem);
}
.tanitim-icerik-fiyat {
    width: min(920px, 100%);
    margin-bottom: 2rem;
    text-align: center;
}
.tanitim-icerik-fiyat .tanitim-ust,
.tanitim-icerik-fiyat .tanitim-baslik,
.tanitim-icerik-fiyat .fiyat-giris {
    margin-left: auto;
    margin-right: auto;
}
.fiyat-giris {
    margin-bottom: 0;
    max-width: 36rem;
}
.nc-kartlar {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0.35rem 1.2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}
.nc-kart {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.75rem 1.45rem 1.5rem;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}
.nc-kart-populer {
    border-color: #ff5c35;
    box-shadow: 0 16px 40px rgba(255, 92, 53, 0.18);
    transform: translateY(-8px);
}
.nc-populer {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff5c35;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.28rem 0.85rem;
    border-radius: 999px;
    white-space: nowrap;
}
.nc-adi {
    margin: 0.35rem 0 0.45rem;
    font-family: "Sora", "Outfit", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #111827;
    text-align: center;
}
.nc-aciklama {
    margin: 0 0 1.15rem;
    min-height: 3.2rem;
    font-size: 0.9rem;
    line-height: 1.45;
    color: #6b7280;
    text-align: center;
}
.nc-fiyat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 1.1rem;
}
.nc-aylik {
    font-family: "Sora", "Outfit", sans-serif;
    font-size: 2.05rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #111827;
    line-height: 1.05;
}
.nc-aylik small {
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0.15rem;
    color: #9ca3af;
}
.nc-yil {
    font-size: 0.78rem;
    color: #6b7280;
}
.nc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.72rem 1rem;
    border-radius: 8px;
    background: #ff5c35;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.01em;
}
.nc-btn:hover {
    background: #e64e2b;
    color: #fff;
}
.nc-yenile {
    margin: 0.7rem 0 1.1rem;
    font-size: 0.72rem;
    line-height: 1.4;
    color: #9ca3af;
    text-align: center;
}
.nc-liste {
    list-style: none;
    margin: 0;
    padding: 0.85rem 0 0;
    border-top: 1px solid #eef0f3;
}
.nc-liste li {
    position: relative;
    padding: 0.42rem 0 0.42rem 1.55rem;
    font-size: 0.88rem;
    line-height: 1.4;
    color: #374151;
}
.nc-liste li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: inset 0 0 0 2px #22c55e;
}
.nc-liste li::after {
    content: "";
    position: absolute;
    left: 0.28rem;
    top: 0.82rem;
    width: 0.38rem;
    height: 0.22rem;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}
.fiyat-kur {
    width: min(920px, 100%);
    margin: 1.35rem auto 0;
    padding: 0 1.35rem;
    font-size: 0.78rem;
    line-height: 1.45;
    color: #9ca3af;
    text-align: center;
}

@media (max-width: 980px) {
    .nc-kartlar {
        grid-template-columns: 1fr;
        max-width: 26rem;
    }
    .nc-kart-populer {
        transform: none;
    }
}

@media (max-width: 760px) {
    .kime-satir {
        grid-template-columns: 1fr;
        gap: 1.35rem;
    }
    .yetenek-satir {
        grid-template-columns: 3.2rem minmax(0, 1fr);
        gap: 0.65rem 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tanitim-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .home-hero-img,
    .home-hero-glow,
    .home-scroll-cizgi,
    .home-brand,
    .home-baslik,
    .home-vurgu,
    .home-lead,
    .home-cta { animation: none !important; }
    .home-hero-img { transform: scale(1.04); }
    .nc-kart-populer { transform: none; }
}

/* --- Hakkında sayfası --- */
body.site-hakkinda {
    font-family: "Outfit", "Segoe UI", sans-serif;
}
.hakkinda-sayfa {
    width: min(52rem, 100%);
    margin: 0 auto 3rem;
    padding: 2rem 1.25rem 1rem;
    color: var(--site-ink);
}
.hakkinda-ust h1 {
    margin: 0 0 1rem;
    font-family: "Sora", "Outfit", sans-serif;
    font-size: clamp(1.7rem, 3.4vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
}
.hakkinda-lead {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.7;
    color: rgba(15, 39, 68, 0.78);
}
.hakkinda-toc {
    margin: 2rem 0 2.25rem;
    padding: 1.15rem 1.25rem 1.05rem;
    background: #fff;
    border: 1px solid rgba(15, 39, 68, 0.1);
    border-radius: 12px;
}
.hakkinda-toc-baslik {
    margin: 0 0 0.65rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--site-accent);
}
.hakkinda-toc ol {
    margin: 0;
    padding-left: 1.2rem;
}
.hakkinda-toc li {
    margin: 0.28rem 0;
    font-size: 0.95rem;
    line-height: 1.45;
}
.hakkinda-toc a {
    color: var(--site-ink);
    text-decoration: none;
    border-bottom: 1px solid rgba(61, 143, 217, 0.35);
}
.hakkinda-toc a:hover { color: var(--site-accent); }
.hakkinda-bolum {
    margin: 0 0 2.35rem;
    scroll-margin-top: calc(var(--site-header-h) + 0.75rem);
}
.hakkinda-bolum h2 {
    margin: 0 0 0.85rem;
    font-family: "Sora", "Outfit", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}
.hakkinda-bolum h3 {
    margin: 1.15rem 0 0.5rem;
    font-family: "Sora", "Outfit", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
}
.hakkinda-bolum p {
    margin: 0 0 0.85rem;
    font-size: 1.02rem;
    line-height: 1.7;
    color: rgba(15, 39, 68, 0.8);
}
.hakkinda-bolum p:last-child { margin-bottom: 0; }
.hakkinda-liste {
    margin: 0.35rem 0 1rem;
    padding-left: 1.2rem;
}
.hakkinda-liste li {
    margin: 0.4rem 0;
    font-size: 1.01rem;
    line-height: 1.6;
    color: rgba(15, 39, 68, 0.8);
}
.hakkinda-kutu {
    margin: 1rem 0 0;
    padding: 0.95rem 1.1rem;
    background: #fff;
    border-left: 4px solid var(--site-accent);
    border-radius: 0 10px 10px 0;
    box-shadow: 0 8px 24px rgba(15, 39, 68, 0.06);
}
.hakkinda-kutu p { margin: 0; }
.hakkinda-uc {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 1rem 0 1.1rem;
}
.hakkinda-uc > div {
    background: #fff;
    border-radius: 10px;
    padding: 1rem 1.05rem 0.95rem;
    border: 1px solid rgba(15, 39, 68, 0.08);
}
.hakkinda-uc h3 { margin: 0 0 0.4rem; }
.hakkinda-uc p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
}
.hakkinda-adim {
    margin: 0.4rem 0 1rem;
    padding-left: 1.2rem;
}
.hakkinda-adim li {
    margin: 0.65rem 0;
    font-size: 1.01rem;
    line-height: 1.65;
    color: rgba(15, 39, 68, 0.8);
}
.hakkinda-sss dt {
    margin: 1rem 0 0.35rem;
    font-family: "Sora", "Outfit", sans-serif;
    font-size: 1.02rem;
    font-weight: 600;
}
.hakkinda-sss dd {
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(15, 39, 68, 0.78);
}
.hakkinda-son {
    margin: 2.5rem 0 0;
    padding: 1.5rem 1.35rem 1.45rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 32px rgba(15, 39, 68, 0.08);
}
.hakkinda-son h2 { margin: 0 0 0.7rem; font-size: 1.25rem; }
.hakkinda-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}
@media (max-width: 800px) {
    .hakkinda-uc { grid-template-columns: 1fr; }
}

.seo-izlek {
    max-width: 920px;
    margin: 0.75rem auto 0;
    padding: 0 1.2rem;
    font-size: 0.82rem;
}
.seo-izlek ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.4rem;
    list-style: none;
    margin: 0;
    padding: 0;
    color: rgba(15, 39, 68, 0.55);
}
.seo-izlek li:not(:last-child)::after {
    content: "/";
    margin-left: 0.4rem;
    color: rgba(15, 39, 68, 0.35);
}
.seo-izlek a { color: inherit; text-decoration: none; }
.seo-izlek a:hover { text-decoration: underline; }
.site-foot-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.9rem;
    justify-content: center;
}
.site-foot-nav a {
    color: inherit;
    text-decoration: none;
    opacity: 0.85;
    font-size: 0.86rem;
}
.site-foot-nav a:hover { text-decoration: underline; opacity: 1; }
