/* ============================================================
   DiziFilmBaşvuru — Sinematik tasarım sistemi
   ============================================================ */
:root {
    --bg: #0a0a10;
    --bg-2: #101019;
    --kart: rgba(255, 255, 255, 0.04);
    --kart-cizgi: rgba(255, 255, 255, 0.09);
    --altin: #e9b43d;
    --altin-2: #f6d06a;
    --altin-koyu: #b8860b;
    --metin: #f2f0ea;
    --soluk: #a3a0b2;
    --hata: #ff6b62;
    --basari: #4ade80;
    --govde-font: 'Manrope', system-ui, -apple-system, sans-serif;
    --baslik-font: 'Sora', 'Manrope', sans-serif;
    --radius: 18px;
    --gecis: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--metin);
    font-family: var(--govde-font);
    font-size: 16.5px;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3 { font-family: var(--baslik-font); line-height: 1.15; letter-spacing: -0.02em; }

.konteyner { width: min(1180px, 92%); margin: 0 auto; }

/* --- Film greni --- */
.grain {
    position: fixed; inset: -50%;
    width: 200%; height: 200%;
    pointer-events: none; z-index: 2000; opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: grenkay 8s steps(10) infinite;
}
@keyframes grenkay {
    0%, 100% { transform: translate(0, 0); }
    20% { transform: translate(-2%, 1%); }
    40% { transform: translate(1%, -2%); }
    60% { transform: translate(-1%, 2%); }
    80% { transform: translate(2%, -1%); }
}

/* --- Navigasyon --- */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 18px 0;
    transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.nav.dolu {
    background: rgba(10, 10, 16, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 10px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
    border-bottom: 1px solid var(--kart-cizgi);
}
.nav-ic { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-isaret {
    width: 38px; height: 38px; border-radius: 11px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--altin), var(--altin-2));
    color: #0a0a0f;
    box-shadow: 0 4px 18px rgba(233, 180, 61, 0.35);
}
.logo-isaret svg { width: 22px; height: 22px; }
.logo-yazi { font-family: var(--baslik-font); font-weight: 700; font-size: 1.12rem; letter-spacing: -0.01em; }
.logo-yazi b { color: var(--altin); }

.nav-linkler { display: flex; align-items: center; gap: 28px; }
.nav-linkler a { font-weight: 600; font-size: 0.95rem; color: var(--soluk); transition: color 0.25s; position: relative; }
.nav-linkler a:hover, .nav-linkler a.aktif { color: var(--metin); }
.nav-linkler a.aktif:not(.nav-cta)::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
    border-radius: 2px; background: linear-gradient(90deg, var(--altin), var(--altin-2));
}
.nav-cta {
    background: linear-gradient(135deg, var(--altin), var(--altin-2));
    color: #191204 !important; padding: 10px 22px; border-radius: 999px;
    font-weight: 800 !important;
    box-shadow: 0 6px 22px rgba(233, 180, 61, 0.35);
    transition: transform 0.25s var(--gecis), box-shadow 0.25s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(233, 180, 61, 0.5); }

.hamburger { display: none; background: none; border: 0; width: 42px; height: 42px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--metin); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.acik span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.acik span:nth-child(2) { opacity: 0; }
.hamburger.acik span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Butonlar --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 34px; border-radius: 999px; border: 0;
    font-weight: 800; font-size: 1.02rem; font-family: var(--govde-font);
    transition: transform 0.3s var(--gecis), box-shadow 0.3s;
    will-change: transform;
}
.btn-altin {
    background: linear-gradient(135deg, var(--altin), var(--altin-2));
    color: #191204;
    box-shadow: 0 10px 34px rgba(233, 180, 61, 0.38);
}
.btn-altin:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 44px rgba(233, 180, 61, 0.55); }
.btn-hayalet {
    background: rgba(255, 255, 255, 0.05); color: var(--metin);
    border: 1px solid var(--kart-cizgi);
    backdrop-filter: blur(6px);
}
.btn-hayalet:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.09); }
.btn[disabled] { opacity: 0.6; pointer-events: none; }

/* --- Hero --- */
.hero {
    position: relative; min-height: 100svh;
    display: flex; align-items: center;
    padding: 130px 0 90px; overflow: hidden;
}
.hero-isik {
    position: absolute; pointer-events: none; border-radius: 50%;
    filter: blur(90px); opacity: 0.55;
}
.hero-isik.bir {
    width: 640px; height: 640px; top: -220px; left: -160px;
    background: radial-gradient(circle, rgba(233, 180, 61, 0.35), transparent 65%);
    animation: nefes 9s ease-in-out infinite;
}
.hero-isik.iki {
    width: 520px; height: 520px; bottom: -180px; right: -120px;
    background: radial-gradient(circle, rgba(120, 80, 255, 0.22), transparent 65%);
    animation: nefes 11s ease-in-out 2s infinite;
}
@keyframes nefes { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.15); opacity: 0.75; } }

.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; position: relative; z-index: 2; }

.rozet {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 8px 18px; border-radius: 999px;
    background: rgba(233, 180, 61, 0.1);
    border: 1px solid rgba(233, 180, 61, 0.3);
    color: var(--altin-2); font-weight: 700; font-size: 0.85rem;
    letter-spacing: 0.04em; text-transform: uppercase;
}
.rozet::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--altin); box-shadow: 0 0 12px var(--altin); animation: yanip 2s infinite; }
@keyframes yanip { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero h1 { font-size: clamp(2.5rem, 5.4vw, 4.1rem); font-weight: 800; margin: 22px 0 20px; }
.hero h1 .vurgu {
    background: linear-gradient(120deg, var(--altin), var(--altin-2) 60%, #fff2c9);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    position: relative; white-space: nowrap;
}
.hero-alt { color: var(--soluk); font-size: 1.14rem; max-width: 520px; margin-bottom: 34px; }
.hero-butonlar { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-mini { display: flex; gap: 26px; margin-top: 44px; flex-wrap: wrap; }
.hero-mini div { display: flex; align-items: center; gap: 9px; color: var(--soluk); font-size: 0.92rem; font-weight: 600; }
.hero-mini svg { width: 18px; height: 18px; color: var(--basari); flex: none; }

/* Hero afiş kolajı */
.kolaj { position: relative; height: 560px; }
.kolaj-kart {
    position: absolute; border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
    transition: transform 0.5s var(--gecis);
    will-change: transform;
}
.kolaj-kart::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(10, 10, 16, 0.75));
}
.kolaj-kart img { width: 100%; height: 100%; object-fit: cover; }
.kolaj-kart span {
    position: absolute; left: 14px; bottom: 12px; z-index: 2;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em;
    color: rgba(255,255,255,0.92);
}
.kolaj-kart.a { width: 46%; height: 62%; top: 4%; left: 2%; transform: rotate(-5deg); z-index: 2; animation: yuzer 7s ease-in-out infinite; }
.kolaj-kart.b { width: 44%; height: 56%; top: 0; right: 4%; transform: rotate(4deg); animation: yuzer 8s ease-in-out 1.2s infinite; }
.kolaj-kart.c { width: 42%; height: 52%; bottom: 2%; left: 16%; transform: rotate(2deg); z-index: 3; animation: yuzer 9s ease-in-out 0.6s infinite; }
.kolaj-kart.d { width: 38%; height: 46%; bottom: 6%; right: 0; transform: rotate(-3deg); animation: yuzer 7.5s ease-in-out 2s infinite; }
@keyframes yuzer { 0%, 100% { margin-top: 0; } 50% { margin-top: -14px; } }
.kolaj-kart:hover { transform: rotate(0deg) scale(1.04) !important; z-index: 5; }

.kolaj-halka {
    position: absolute; inset: 8% 4%; border-radius: 30px; z-index: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(233, 180, 61, 0.12), transparent 55%),
        radial-gradient(circle at 75% 80%, rgba(120, 80, 255, 0.1), transparent 55%);
}

/* Aşağı kaydır ipucu */
.kaydir {
    position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
    width: 26px; height: 44px; border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px; z-index: 3;
}
.kaydir::before {
    content: ''; position: absolute; top: 8px; left: 50%; margin-left: -2px;
    width: 4px; height: 8px; border-radius: 4px; background: var(--altin);
    animation: kaydirt 1.8s infinite;
}
@keyframes kaydirt { 0% { transform: translateY(0); opacity: 1; } 75% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* --- Bölüm başlıkları --- */
.bolum { padding: 96px 0; position: relative; }
.bolum-baslik { text-align: center; max-width: 660px; margin: 0 auto 60px; }
.bolum-baslik .ust {
    color: var(--altin); font-weight: 800; letter-spacing: 0.18em;
    text-transform: uppercase; font-size: 0.8rem;
}
.bolum-baslik h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin: 12px 0 14px; }
.bolum-baslik p { color: var(--soluk); }

/* --- Sayaç bandı --- */
.sayac-band {
    border-top: 1px solid var(--kart-cizgi); border-bottom: 1px solid var(--kart-cizgi);
    background: linear-gradient(180deg, rgba(233, 180, 61, 0.05), transparent);
    padding: 46px 0;
}
.sayac-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.sayac-kut .buyuk {
    font-family: var(--baslik-font); font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    font-weight: 800;
    background: linear-gradient(120deg, var(--altin), var(--altin-2));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sayac-kut .etiket { color: var(--soluk); font-weight: 600; font-size: 0.92rem; margin-top: 4px; }

/* --- Afiş marquee --- */
.serit { overflow: hidden; padding: 10px 0 26px; position: relative; }
.serit::before, .serit::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none;
}
.serit::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.serit::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.serit-ic { display: flex; gap: 22px; width: max-content; animation: aktar 38s linear infinite; }
.serit:hover .serit-ic { animation-play-state: paused; }
@keyframes aktar { to { transform: translateX(-50%); } }
.afis {
    width: 190px; height: 270px; border-radius: 14px; overflow: hidden; position: relative;
    border: 1px solid rgba(255, 255, 255, 0.12); flex: none;
    transition: transform 0.4s var(--gecis), box-shadow 0.4s;
}
.afis img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--gecis); }
.afis:hover { transform: translateY(-8px); box-shadow: 0 22px 44px rgba(0, 0, 0, 0.5); }
.afis:hover img { transform: scale(1.07); }
.serit-not { text-align: center; color: var(--soluk); font-size: 0.85rem; margin-top: 18px; }

/* --- Adımlar --- */
.adimlar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: adim; }
.adim {
    position: relative; padding: 40px 30px 34px;
    background: var(--kart); border: 1px solid var(--kart-cizgi); border-radius: var(--radius);
    transition: transform 0.4s var(--gecis), border-color 0.4s, background 0.4s;
    overflow: hidden;
}
.adim::before {
    counter-increment: adim; content: '0' counter(adim);
    position: absolute; top: 14px; right: 20px;
    font-family: var(--baslik-font); font-size: 3.4rem; font-weight: 800;
    color: rgba(233, 180, 61, 0.12); line-height: 1;
}
.adim:hover { transform: translateY(-8px); border-color: rgba(233, 180, 61, 0.4); background: rgba(233, 180, 61, 0.05); }
.adim-ikon {
    width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
    background: linear-gradient(135deg, rgba(233, 180, 61, 0.2), rgba(233, 180, 61, 0.06));
    border: 1px solid rgba(233, 180, 61, 0.3); margin-bottom: 20px;
}
.adim-ikon svg { width: 26px; height: 26px; color: var(--altin-2); }
.adim h3 { font-size: 1.2rem; margin-bottom: 10px; }
.adim p { color: var(--soluk); font-size: 0.96rem; }

/* --- Özellik kartları --- */
.ozellikler { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ozellik {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 26px 24px; background: var(--kart);
    border: 1px solid var(--kart-cizgi); border-radius: var(--radius);
    transition: transform 0.35s var(--gecis), border-color 0.35s;
}
.ozellik:hover { transform: translateY(-6px); border-color: rgba(233, 180, 61, 0.35); }
.ozellik-ikon {
    flex: none; width: 46px; height: 46px; border-radius: 13px;
    display: grid; place-items: center;
    background: rgba(233, 180, 61, 0.12); border: 1px solid rgba(233, 180, 61, 0.25);
}
.ozellik-ikon svg { width: 23px; height: 23px; color: var(--altin-2); }
.ozellik h3 { font-size: 1.03rem; margin-bottom: 5px; }
.ozellik p { color: var(--soluk); font-size: 0.9rem; }

/* --- SSS akordeon --- */
.sss-liste { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.sss-kut { background: var(--kart); border: 1px solid var(--kart-cizgi); border-radius: 16px; overflow: hidden; transition: border-color 0.3s; }
.sss-kut.acik { border-color: rgba(233, 180, 61, 0.4); }
.sss-soru {
    width: 100%; background: none; border: 0; color: var(--metin);
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    padding: 20px 24px; font-size: 1.03rem; font-weight: 700; text-align: left;
}
.sss-soru .arti { flex: none; width: 26px; height: 26px; position: relative; transition: transform 0.35s var(--gecis); }
.sss-soru .arti::before, .sss-soru .arti::after {
    content: ''; position: absolute; background: var(--altin); border-radius: 2px;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.sss-soru .arti::before { width: 14px; height: 2px; }
.sss-soru .arti::after { width: 2px; height: 14px; }
.sss-kut.acik .arti { transform: rotate(45deg); }
.sss-cevap { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--gecis); }
.sss-cevap p { padding: 0 24px 22px; color: var(--soluk); }

/* --- CTA bandı --- */
.cta-band { padding: 30px 0 110px; }
.cta-kut {
    position: relative; text-align: center; overflow: hidden;
    padding: 72px 32px; border-radius: 28px;
    background:
        radial-gradient(circle at 20% 0%, rgba(233, 180, 61, 0.22), transparent 55%),
        radial-gradient(circle at 85% 100%, rgba(120, 80, 255, 0.16), transparent 55%),
        var(--bg-2);
    border: 1px solid rgba(233, 180, 61, 0.25);
}
.cta-kut h2 { font-size: clamp(1.9rem, 4vw, 3rem); max-width: 640px; margin: 0 auto 16px; }
.cta-kut p { color: var(--soluk); margin-bottom: 34px; }
.cta-isilti {
    position: absolute; top: -60%; left: -20%; width: 40%; height: 220%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    transform: rotate(18deg); animation: isilti 5.5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes isilti { 0% { left: -45%; } 60%, 100% { left: 120%; } }

/* --- İç sayfa hero --- */
.sayfa-hero {
    position: relative; padding: 160px 0 70px; text-align: center; overflow: hidden;
    background:
        radial-gradient(ellipse 70% 60% at 50% -10%, rgba(233, 180, 61, 0.14), transparent),
        var(--bg);
}
.sayfa-hero h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); margin: 14px 0 12px; }
.sayfa-hero p { color: var(--soluk); max-width: 620px; margin: 0 auto; }

/* --- Başvuru sayfası --- */
.basvuru-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: start; }
.basvuru-yan { position: sticky; top: 110px; display: grid; gap: 18px; }
.yan-kart {
    padding: 26px; background: var(--kart);
    border: 1px solid var(--kart-cizgi); border-radius: var(--radius);
}
.yan-kart h3 { font-size: 1.06rem; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.yan-kart h3 svg { width: 20px; height: 20px; color: var(--altin); }
.yan-kart ul { list-style: none; display: grid; gap: 11px; }
.yan-kart li { display: flex; gap: 10px; align-items: flex-start; color: var(--soluk); font-size: 0.93rem; }
.yan-kart li svg { flex: none; width: 17px; height: 17px; color: var(--basari); margin-top: 3px; }

.form-kart {
    position: relative;
    padding: 40px 38px 44px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--kart-cizgi); border-radius: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}
.form-kart::before {
    content: ''; position: absolute; inset: -1px; border-radius: 24px; padding: 1px;
    background: linear-gradient(140deg, rgba(233, 180, 61, 0.5), transparent 30%, transparent 70%, rgba(233, 180, 61, 0.25));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    pointer-events: none;
}
.form-baslik { margin-bottom: 26px; }
.form-baslik h2 { font-size: 1.5rem; margin-bottom: 6px; }
.form-baslik p { color: var(--soluk); font-size: 0.94rem; }

.alan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.alan { display: flex; flex-direction: column; gap: 8px; }
.alan.genis { grid-column: 1 / -1; }
.alan label { font-weight: 700; font-size: 0.88rem; color: var(--metin); }
.alan label .zorunlu { color: var(--altin); }
.alan input, .alan select, .alan textarea {
    width: 100%; padding: 14px 16px;
    background: rgba(10, 10, 16, 0.55);
    border: 1px solid var(--kart-cizgi); border-radius: 13px;
    color: var(--metin); font-family: inherit; font-size: 0.98rem;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
    appearance: none; -webkit-appearance: none;
}
.alan select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' fill='none'%3E%3Cpath d='M1 1.5 7 7.5 13 1.5' stroke='%23a3a0b2' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center;
    padding-right: 42px;
}
.alan select option { background: #14141e; color: var(--metin); }
.alan textarea { min-height: 120px; resize: vertical; }
.alan input::placeholder, .alan textarea::placeholder { color: rgba(163, 160, 178, 0.55); }
.alan input:focus, .alan select:focus, .alan textarea:focus {
    outline: none; border-color: var(--altin);
    box-shadow: 0 0 0 4px rgba(233, 180, 61, 0.14);
    background: rgba(10, 10, 16, 0.8);
}
.alan input.hatali, .alan select.hatali, .alan textarea.hatali { border-color: var(--hata); }
.alan .alan-hata { color: var(--hata); font-size: 0.82rem; font-weight: 600; display: none; }
.alan.hata-goster .alan-hata { display: block; }
.alan-hata-sunucu { color: var(--hata); font-size: 0.82rem; font-weight: 600; }

/* Segment (Kendim / Çocuğum) */
.segment {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 6px;
    background: rgba(10, 10, 16, 0.55); border: 1px solid var(--kart-cizgi); border-radius: 14px;
}
.segment label {
    position: relative; text-align: center; padding: 12px 10px; border-radius: 10px;
    font-weight: 700; font-size: 0.94rem; color: var(--soluk); cursor: pointer;
    transition: color 0.25s, background 0.3s;
}
.segment input { position: absolute; opacity: 0; pointer-events: none; }
.segment label.secili {
    color: #191204;
    background: linear-gradient(135deg, var(--altin), var(--altin-2));
    box-shadow: 0 4px 14px rgba(233, 180, 61, 0.3);
}

#veliAlan { display: none; }
#veliAlan.goster { display: flex; animation: belir 0.4s var(--gecis); }
@keyframes belir { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* KVKK onay */
.kvkk-kutu { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.kvkk-kutu input {
    appearance: none; -webkit-appearance: none; -moz-appearance: none;
    width: 26px; height: 26px; margin-top: 1px; flex: none;
    border: 2px solid rgba(233, 180, 61, 0.55);
    border-radius: 8px;
    background: rgba(10, 10, 16, 0.55);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.kvkk-kutu input:hover { border-color: var(--altin); box-shadow: 0 0 0 4px rgba(233, 180, 61, 0.12); }
.kvkk-kutu input:checked {
    border-color: var(--altin);
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='13' fill='none'%3E%3Cpath d='M1.5 7 6 11.5 14.5 1.5' stroke='%23191204' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 15px no-repeat,
        linear-gradient(135deg, var(--altin), var(--altin-2));
    box-shadow: 0 4px 16px rgba(233, 180, 61, 0.45);
    transform: scale(1.05);
}
.kvkk-kutu span { font-size: 0.88rem; color: var(--soluk); }
.kvkk-kutu a { color: var(--altin-2); font-weight: 700; text-decoration: underline; }

.gonder-btn { width: 100%; margin-top: 26px; padding: 18px; font-size: 1.08rem; }
.gonder-btn .yukleniyor { display: none; width: 20px; height: 20px; border: 3px solid rgba(25, 18, 4, 0.3); border-top-color: #191204; border-radius: 50%; animation: donel 0.8s linear infinite; }
.gonder-btn.gonderiliyor .yukleniyor { display: inline-block; }
@keyframes donel { to { transform: rotate(360deg); } }
.form-guven { display: flex; justify-content: center; gap: 20px; margin-top: 18px; flex-wrap: wrap; }
.form-guven span { display: inline-flex; align-items: center; gap: 7px; color: var(--soluk); font-size: 0.8rem; font-weight: 600; }
.form-guven svg { width: 15px; height: 15px; color: var(--basari); }

.uyari-kutu {
    padding: 16px 20px; border-radius: 14px; margin-bottom: 22px;
    font-weight: 600; font-size: 0.93rem;
    background: rgba(255, 107, 98, 0.1); border: 1px solid rgba(255, 107, 98, 0.35); color: #ffb3ad;
}
.uyari-kutu ul { margin: 6px 0 0 18px; }

/* Gizli bot alanı */
.hp-alan { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; overflow: hidden; }

/* --- Teşekkür sayfası --- */
.tesekkur {
    min-height: 100svh; display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative; overflow: hidden; padding: 140px 0 80px;
}
.tesekkur-ic { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; }
.onay-halka {
    width: 118px; height: 118px; margin: 0 auto 34px; border-radius: 50%;
    display: grid; place-items: center;
    background: rgba(74, 222, 128, 0.1); border: 2px solid rgba(74, 222, 128, 0.4);
    animation: halkabuyu 0.8s var(--gecis) both;
}
.onay-halka.bilgi { background: rgba(233, 180, 61, 0.1); border-color: rgba(233, 180, 61, 0.45); }
@keyframes halkabuyu { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.onay-halka svg { width: 54px; height: 54px; }
.onay-halka .tik { stroke: var(--basari); stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 60; stroke-dashoffset: 60; animation: tikciz 0.7s 0.45s var(--gecis) forwards; }
.onay-halka.bilgi .tik { stroke: var(--altin-2); }
@keyframes tikciz { to { stroke-dashoffset: 0; } }
.tesekkur h1 { font-size: clamp(2rem, 4.6vw, 3rem); margin-bottom: 16px; }
.tesekkur p { color: var(--soluk); font-size: 1.08rem; margin-bottom: 36px; }
.tesekkur-adimlar { display: grid; gap: 12px; margin: 0 0 38px; text-align: left; }
.tesekkur-adimlar div {
    display: flex; gap: 14px; align-items: center; padding: 15px 20px;
    background: var(--kart); border: 1px solid var(--kart-cizgi); border-radius: 14px;
    color: var(--soluk); font-size: 0.94rem; font-weight: 600;
}
.tesekkur-adimlar b { color: var(--altin-2); font-family: var(--baslik-font); }

/* --- Metin sayfaları (KVKK, hakkımızda) --- */
.metin-govde { max-width: 820px; margin: 0 auto; color: var(--soluk); display: grid; gap: 18px; }
.metin-govde h2 { color: var(--metin); font-size: 1.35rem; margin-top: 18px; }
.metin-govde h3 { color: var(--metin); font-size: 1.1rem; margin-top: 8px; }
.metin-govde li { margin-left: 20px; }
.metin-govde strong { color: var(--metin); }

/* --- Footer --- */
.footer { border-top: 1px solid var(--kart-cizgi); padding: 64px 0 30px; background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 46px; }
.footer h4 { font-size: 0.95rem; margin-bottom: 16px; color: var(--metin); }
.footer-grid > div { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer-grid a:not(.logo) { color: var(--soluk); font-size: 0.92rem; transition: color 0.2s; }
.footer-grid a:not(.logo):hover { color: var(--altin-2); }
.footer-marka p { color: var(--soluk); font-size: 0.92rem; max-width: 300px; }
.footer-alt {
    border-top: 1px solid var(--kart-cizgi); padding-top: 24px;
    display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
    color: var(--soluk); font-size: 0.83rem;
}

/* --- Reveal animasyonları --- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--gecis), transform 0.8s var(--gecis); }
.reveal.gorunur { opacity: 1; transform: none; }
.reveal-gecikme-1 { transition-delay: 0.1s; }
.reveal-gecikme-2 { transition-delay: 0.2s; }
.reveal-gecikme-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* --- Duyarlı tasarım --- */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .kolaj { height: 460px; max-width: 560px; margin: 0 auto; width: 100%; }
    .adimlar, .ozellikler { grid-template-columns: repeat(2, 1fr); }
    .basvuru-grid { grid-template-columns: 1fr; }
    .basvuru-yan { position: static; order: 2; }
}

@media (max-width: 720px) {
    body { font-size: 15.5px; }
    .nav-linkler {
        position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 84vw);
        background: rgba(12, 12, 20, 0.97); backdrop-filter: blur(18px);
        flex-direction: column; justify-content: center; gap: 34px;
        transform: translateX(100%); transition: transform 0.45s var(--gecis);
        box-shadow: -30px 0 60px rgba(0, 0, 0, 0.5); z-index: 99;
    }
    .nav-linkler.acik { transform: translateX(0); }
    .nav-linkler a { font-size: 1.15rem; }
    .hamburger { display: flex; z-index: 101; }
    .hero { padding-top: 110px; }
    .hero-butonlar .btn { width: 100%; }
    .sayac-grid { grid-template-columns: repeat(2, 1fr); }
    .adimlar, .ozellikler, .alan-grid { grid-template-columns: 1fr; }
    .kolaj { height: 380px; }
    .form-kart { padding: 28px 20px 34px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-marka { grid-column: 1 / -1; }
    .bolum { padding: 68px 0; }
    .afis { width: 150px; height: 214px; }
}
