/* ============================================================
   GONCA KILINÇ — Ana Stil Dosyası
   Tamamen sıfırdan yazılmış CSS — Bootstrap/Tailwind YOK
   ============================================================ */

/* ── CSS Değişkenleri ── */
:root {
    --renk-birincil: #7C3AED;
    --renk-ikincil: #D4AF37;
    --renk-arka: #0F172A;
    --renk-kart: #1E293B;
    --renk-kart-2: #162032;
    --renk-kart-3: #243447;
    --renk-metin: #F8FAFC;
    --renk-metin-ikincil: #94A3B8;
    --renk-metin-soluk: #64748B;
    --renk-basari: #22C55E;
    --renk-hata: #EF4444;
    --gradient-turuncu: linear-gradient(135deg, #4A1D96, #7C3AED);
    --gradient-altin: linear-gradient(135deg, #7C3AED, #D4AF37);
    --gradient-hover: linear-gradient(135deg, #6D28D9, #7C3AED);
    --golge-turuncu: 0 8px 30px rgba(124, 58, 237, 0.35);
    --golge-turuncu-guclu: 0 12px 40px rgba(124, 58, 237, 0.6);
    --golge-karti: 0 4px 20px rgba(0, 0, 0, 0.5);
    --border-karti: 1px solid rgba(255, 255, 255, 0.07);
    --border-turuncu: 1px solid rgba(124, 58, 237, 0.3);
    --gecis: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-ana: 'Poppins', sans-serif;
}

/* ── Arka Plan Efektleri ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background-color: var(--renk-arka);
    background-image: radial-gradient(rgba(124, 58, 237, 0.35) 2px, transparent 2px);
    background-size: 70px 70px;
    pointer-events: none;
}
.bg-efektler {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}
.glow {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
}
.glow-mor-1 {
    top: -18%; left: -12%;
    width: 65vw; height: 65vh;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.30) 0%, transparent 70%);
    filter: blur(120px);
    animation: glow-hareket-1 20s infinite alternate ease-in-out;
}
.glow-turuncu {
    top: -10%; right: -15%;
    width: 55vw; height: 55vh;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.20) 0%, transparent 70%);
    filter: blur(110px);
    animation: glow-hareket-2 25s infinite alternate ease-in-out;
}
.glow-mor-2 {
    bottom: -20%; left: 30%;
    width: 50vw; height: 50vh;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, transparent 70%);
    filter: blur(130px);
    animation: glow-hareket-3 22s infinite alternate ease-in-out;
}
@keyframes glow-hareket-1 {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(8vw, 6vh) scale(1.15); }
    100% { transform: translate(-4vw, 10vh) scale(0.95); }
}
@keyframes glow-hareket-2 {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(-10vw, 8vh) scale(1.1); }
    100% { transform: translate(5vw, -5vh) scale(1.05); }
}
@keyframes glow-hareket-3 {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(-6vw, -8vh) scale(1.2); }
    100% { transform: translate(8vw, 4vh) scale(0.9); }
}
@media (max-width: 768px) {
    .glow-mor-1 { width: 90vw; height: 40vh; filter: blur(90px); }
    .glow-turuncu { width: 70vw; height: 35vh; filter: blur(80px); }
    .glow-mor-2 { width: 60vw; height: 30vh; filter: blur(80px); }
}
@media (prefers-reduced-motion: reduce) {
    .glow { animation: none !important; }
}

/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-ana);
    background-color: transparent;
    color: var(--renk-metin);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--renk-birincil);
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1E293B;
}

::-webkit-scrollbar-thumb {
    background: var(--renk-birincil);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9D4EDD;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--gecis);
}

ul, ol {
    list-style: none;
}

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

/* ── Kapsayıcı ── */
.kapsayici {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Gradient Metin ── */
.gradient-metin {
    background: var(--gradient-altin);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Bölüm Etiket ── */
.bolum-etiket {
    display: inline-block;
    font-size: 13px;
    color: var(--renk-birincil);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px;
}

.bolum-etiket-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 13px;
    color: var(--renk-birincil);
    font-weight: 600;
    margin-bottom: 20px;
}

/* ── Bölüm Başlıkları ── */
.bolum-baslik {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.bolum-aciklama {
    color: var(--renk-metin-ikincil);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* ── Butonlar ── */
.btn-birincil {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
    transition: var(--gecis);
    border: none;
    cursor: pointer;
    font-family: var(--font-ana);
    letter-spacing: 0.5px;
}

.btn-birincil:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.65);
    background: linear-gradient(135deg, #FBBF24, #F59E0B);
}

.btn-ikincil {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--renk-birincil);
    color: var(--renk-birincil);
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--gecis);
    cursor: pointer;
    font-family: var(--font-ana);
}

.btn-ikincil:hover {
    background: rgba(124, 58, 237, 0.1);
    transform: translateY(-2px);
}

/* ── Kartlar (Genel) ── */
.kart {
    background: var(--renk-kart);
    border: var(--border-karti);
    border-radius: 12px;
    padding: 28px;
    transition: var(--gecis);
}

.kart:hover {
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 8px 40px rgba(124, 58, 237, 0.15);
    transform: translateY(-4px);
}

/* ════════════════════════════════════════════
   BÖLÜM 0: NAVBAR (Referans birebir)
   ════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    transition: var(--gecis);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.navbar.kaydi {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(124, 58, 237, 0.08);
}

.navbar-icerik {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Logo */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

.navbar-logo .logo-ikon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #FF6B00, #FF8C00);
    border-radius: 10px;
    font-size: 16px;
    color: #fff;
}

.navbar-logo .logo-metin {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.3px;
}

.navbar-logo .logo-metin .turuncu {
    color: #FF6B00;
    font-weight: 800;
}

/* ── Yardımcı Renk Sınıfları ── */
.v-turuncu { color: #FF6B00; }
.v-yesil { color: #34d399; }
.v-gradient {
    background: linear-gradient(135deg, #FF6B00, #FF8C00, #f59e0b, #FF6B00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Menü — Ortada */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-menu a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    font-weight: 500;
    transition: var(--gecis);
    position: relative;
    padding: 4px 0;
    letter-spacing: 0.2px;
}

.navbar-menu a:hover,
.navbar-menu a.aktif {
    color: #fff;
}

/* Sağ Butonlar */
.navbar-sag {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.navbar-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
    transition: var(--gecis);
    font-family: var(--font-ana);
    cursor: pointer;
}

.navbar-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.navbar-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 22px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    transition: var(--gecis);
    font-family: var(--font-ana);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}

.navbar-btn-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(245, 158, 11, 0.5);
}

/* Canlı Ziyaretçi Sayacı */
.canli-sayac {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.10);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    padding: 6px 16px;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: 16px;
}

.canli-sayac-nokta {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    display: inline-block;
    animation: sayac-nabiz 1.5s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
}

@keyframes sayac-nabiz {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.canli-sayac-metin {
    font-size: 12px;
    color: #22C55E;
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.canli-sayac-metin strong {
    font-weight: 700;
    font-size: 13px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: var(--gecis);
    border-radius: 2px;
}

.hamburger.aktif span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.hamburger.aktif span:nth-child(2) {
    opacity: 0;
}

.hamburger.aktif span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* Mobil Menü Overlay */
.mobil-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 20, 37, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobil-menu.aktif {
    display: flex;
    opacity: 1;
}

.mobil-menu a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 20px;
    font-weight: 600;
    transition: var(--gecis);
}

.mobil-menu a:hover {
    color: var(--renk-birincil);
}

/* ════════════════════════════════════════════
   BÖLÜM 1: HERO (Referans birebir — ortalı)
   ════════════════════════════════════════════ */
.hero {
    padding: 130px 0 60px;
    background: transparent;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(124, 58, 237, 0.03));
    pointer-events: none;
}

.hero-baslik {
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero-baslik .satir-gradient {
    background: var(--gradient-altin);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-baslik .satir-beyaz {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.hero-altbaslik {
    color: var(--renk-metin-ikincil);
    font-size: 16px;
    margin: 0 auto 48px;
    max-width: 580px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Hero Görsel Kutusu — Referans birebir */
.hero-gorsel-kutu {
    position: relative;
    max-width: 780px;
    margin: 0 auto 40px;
    background: var(--renk-kart);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(124, 58, 237, 0.08);
    z-index: 1;
}

.hero-gorsel-kutu img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.hero-gorsel-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(0, 0, 0, 0.35);
    opacity: 1;
    transition: var(--gecis);
}

.hero-play-btn {
    width: 72px;
    height: 72px;
    background: var(--gradient-turuncu);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 8px 40px rgba(124, 58, 237, 0.45);
    transition: var(--gecis);
    cursor: pointer;
    border: none;
}

.hero-play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 50px rgba(124, 58, 237, 0.6);
}

.hero-play-metin {
    text-align: left;
}

.hero-play-metin strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.hero-play-metin span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* Profil Kartı (hero altında) */
.hero-profil {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.hero-profil-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(124, 58, 237, 0.4);
    overflow: hidden;
    flex-shrink: 0;
}

.hero-profil-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-profil-bilgi {
    text-align: left;
}

.hero-profil-bilgi strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.hero-profil-bilgi span {
    font-size: 13px;
    color: var(--renk-metin-ikincil);
}

/* Hero Alt Bilgi Barı */
.hero-alt-bilgi {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    color: var(--renk-metin-ikincil);
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

.hero-alt-bilgi span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-alt-bilgi .ayirici {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

@keyframes nabiz {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ════════════════════════════════════════════
   BÖLÜM 2: SORUNLAR
   ════════════════════════════════════════════ */
.sorunlar {
    padding: 100px 0;
    background: rgba(22, 32, 50, 0.6);
    overflow: hidden;
}

.sorunlar .bolum-baslik,
.sorunlar .bolum-aciklama {
    text-align: center;
}

.sorunlar .bolum-aciklama {
    margin-left: auto;
    margin-right: auto;
}

.sorun-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.sorun-kart {
    background: var(--renk-kart);
    border: var(--border-karti);
    border-radius: 12px;
    padding: 28px;
    transition: var(--gecis);
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.08), 0 4px 20px rgba(0,0,0,0.3);
}

.sorun-kart:hover {
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.18), 0 8px 30px rgba(0,0,0,0.4);
}

.sorun-kart-ikon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(124, 58, 237, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .sorun-grid {
        grid-template-columns: 1fr;
    }
    .sorun-kart {
        display: grid;
        grid-template-columns: 48px 1fr;
        grid-template-rows: auto auto auto;
        column-gap: 16px;
        align-items: start;
    }
    .sorun-kart-ikon {
        grid-column: 1;
        grid-row: 1 / 4;
        margin-bottom: 0;
        margin-top: 2px;
    }
    .sorun-kart h3 { grid-column: 2; grid-row: 1; }
    .sorun-kart p  { grid-column: 2; grid-row: 2; }
    .sorun-kart .sorun-hata { grid-column: 2; grid-row: 3; }
}

.sorun-kart-ikon i {
    font-size: 20px;
    color: var(--renk-birincil);
}

.sorun-kart h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.sorun-kart p {
    color: var(--renk-metin-ikincil);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.sorun-hata {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    color: var(--renk-birincil);
    font-weight: 500;
}

.sorunlar .merkez {
    text-align: center;
}

/* ── Sorunlar Alt CTA Bloğu ── */
.sorun-cta-blok {
    margin-top: 48px;
    text-align: center;
    background: linear-gradient(180deg, rgba(239,68,68,0.06) 0%, rgba(124,58,237,0.08) 50%, rgba(255,107,0,0.04) 100%);
    border: 1px solid rgba(239,68,68,0.18);
    border-radius: 16px;
    padding: 48px 40px;
    box-shadow: 0 0 50px rgba(239,68,68,0.06), 0 0 30px rgba(124,58,237,0.06), 0 8px 30px rgba(0,0,0,0.3);
}
.sorun-kotu-haber {
    font-size: 20px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 12px;
    line-height: 1.6;
}
.sorun-kotu-haber strong {
    color: #f87171;
    font-weight: 700;
}
.sorun-kotu-haber em {
    color: #fb923c;
    font-style: normal;
    text-decoration: underline;
    text-decoration-color: rgba(251,146,60,0.4);
}
.sorun-iyi-haber {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 32px;
}
.sorun-iyi-haber strong {
    color: #34d399;
    font-weight: 700;
}
.btn-sorun-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #FF6B00, #FF8C00, #FFa500);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(255,107,0,0.35);
}
.btn-sorun-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 35px rgba(255,107,0,0.5);
}
.btn-sorun-cta i {
    font-size: 16px;
}
.sorun-cta-alt {
    margin-top: 14px;
    font-size: 13px;
    color: var(--renk-metin-soluk);
}
@media (max-width: 768px) {
    .sorun-cta-blok { padding: 28px 20px; margin-top: 32px; }
    .sorun-kotu-haber, .sorun-iyi-haber { font-size: 15px; }
    .btn-sorun-cta { padding: 14px 28px; font-size: 15px; }
}

/* ════════════════════════════════════════════
   BÖLÜM 3: ÇÖZÜM / NEDEN BEN
   ════════════════════════════════════════════ */
.cozum {
    padding: 100px 0;
    background: transparent;
}

.cozum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.cozum-ozellik {
    padding: 20px 24px;
    border-left: 3px solid var(--renk-birincil);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.06), 0 2px 12px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    transition: var(--gecis);
    border-radius: 0 8px 8px 0;
    background: rgba(124, 58, 237, 0.03);
}

.cozum-ozellik:hover {
    background: rgba(124, 58, 237, 0.08);
}

.cozum-ozellik-baslik {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.cozum-ozellik-baslik i {
    color: var(--renk-birincil);
    font-size: 18px;
}

.cozum-ozellik-baslik h3 {
    font-size: 17px;
    font-weight: 600;
}

.cozum-ozellik p {
    color: var(--renk-metin-ikincil);
    font-size: 14px;
}

/* Sağ Kolon — Yeşil Tik Listesi */
.cozum-kutu {
    background: var(--renk-kart);
    border: 2px solid rgba(124, 58, 237, 0.25);
    border-radius: 16px;
    padding: 36px;
}

.cozum-kutu-baslik {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.cozum-kutu-baslik .ikon-daire {
    width: 40px;
    height: 40px;
    background: var(--renk-basari);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.cozum-kutu-baslik h3 {
    font-size: 20px;
    font-weight: 700;
}

.cozum-kutu-baslik span {
    display: block;
    font-size: 13px;
    color: var(--renk-basari);
    font-weight: 500;
}

.cozum-liste {
    margin-bottom: 28px;
}

.cozum-liste-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
}

.cozum-liste-item:last-child {
    border-bottom: none;
}

.cozum-liste-item i {
    color: var(--renk-ikincil);
    font-size: 18px;
    flex-shrink: 0;
}

/* ════════════════════════════════════════════
   BÖLÜM 4: NASIL ÇALIŞIR (Timeline)
   ════════════════════════════════════════════ */
.adimlar {
    padding: 100px 0;
    background: rgba(22, 32, 50, 0.6);
}

.adimlar .merkez {
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 42px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--renk-birincil), rgba(124, 58, 237, 0.1));
}

.timeline-item {
    display: flex;
    gap: 28px;
    margin-bottom: 40px;
    position: relative;
    align-items: flex-start;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-ikon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--gradient-turuncu);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    z-index: 2;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
    position: relative;
    left: 17px;
}

.timeline-icerik {
    background: var(--renk-kart);
    border: var(--border-karti);
    border-radius: 12px;
    padding: 24px;
    flex: 1;
    transition: var(--gecis);
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.08), 0 4px 20px rgba(0,0,0,0.3);
}

.timeline-icerik:hover {
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateX(8px);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.18), 0 8px 30px rgba(0,0,0,0.4);
}

.timeline-numara {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B00, #FF8C00, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.35;
    line-height: 1;
    margin-bottom: 8px;
}

.timeline-icerik h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-icerik p {
    color: var(--renk-metin-ikincil);
    font-size: 14px;
    line-height: 1.7;
}

/* ════════════════════════════════════════════
   BÖLÜM 5: İSTATİSTİKLER
   ════════════════════════════════════════════ */
.istatistikler {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(22,32,50,0.6), rgba(36,52,71,0.5), rgba(22,32,50,0.6));
}

.istatistikler .merkez {
    text-align: center;
}

.istatistik-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.istatistik-kutu {
    background: var(--renk-kart);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    transition: var(--gecis);
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.08), 0 4px 24px rgba(0,0,0,0.3);
}

.istatistik-kutu:hover {
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 0 45px rgba(255, 107, 0, 0.18), 0 8px 40px rgba(0,0,0,0.4);
}

.istatistik-detay {
    font-size: 12px;
    color: var(--renk-metin-soluk);
    margin-top: 8px;
    letter-spacing: 0.3px;
}

.istatistik-kutu .ikon {
    width: 50px;
    height: 50px;
    background: rgba(124, 58, 237, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.istatistik-kutu .ikon i {
    font-size: 22px;
    color: var(--renk-birincil);
}

.istatistik-kutu .sayi {
    font-size: 48px;
    font-weight: 800;
    color: var(--renk-birincil);
    line-height: 1.1;
}

.istatistik-kutu .etiket {
    font-size: 14px;
    color: var(--renk-metin-ikincil);
    margin-top: 8px;
}

/* Başarı Barı */
.basari-bar {
    background: var(--renk-kart);
    border: var(--border-karti);
    border-radius: 12px;
    padding: 28px 36px;
}

.basari-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--renk-metin-ikincil);
}

.basari-bar-item i {
    color: var(--renk-birincil);
    font-size: 14px;
}

/* ════════════════════════════════════════════
   BÖLÜM 6: YORUMLAR (Testimonials)
   ════════════════════════════════════════════ */
.yorumlar-bolum {
    padding: 100px 0;
    background: transparent;
}

.yorumlar-bolum .merkez {
    text-align: center;
}

.yorum-kart {
    background: var(--renk-kart);
    border: var(--border-karti);
    border-radius: 12px;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--gecis);
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.08), 0 4px 20px rgba(0,0,0,0.3);
}
.yorum-kart:hover {
    border-color: rgba(124, 58, 237, 0.35);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.16), 0 8px 30px rgba(0,0,0,0.4);
}

.yorum-yildizlar {
    color: var(--renk-ikincil);
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    gap: 3px;
}

.yorum-metin {
    font-size: 14px;
    color: var(--renk-metin-ikincil);
    font-style: italic;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.yorum-metin::before {
    content: '\201C';
    font-size: 24px;
    color: var(--renk-birincil);
    font-weight: 800;
    margin-right: 4px;
}

.yorum-alt {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.yorum-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(124, 58, 237, 0.35);
    background: var(--gradient-turuncu);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
    overflow: hidden;
}

.yorum-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yorum-bilgi strong {
    font-size: 14px;
    display: block;
}

.yorum-bilgi span {
    font-size: 12px;
    color: var(--renk-metin-ikincil);
}

.swiper {
    padding-bottom: 50px;
}

.swiper-pagination-bullet {
    background: var(--renk-metin-ikincil);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--renk-birincil);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--renk-birincil);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

/* ════════════════════════════════════════════
   BÖLÜM 7: TAKIM ARKADAŞLARI
   ════════════════════════════════════════════ */
.takim {
    padding: 100px 0;
    background: rgba(22, 32, 50, 0.6);
}

.takim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.takim-ozellikler {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.takim-ozellik {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    font-size: 16px;
}

.takim-ozellik i {
    color: var(--renk-birincil);
    font-size: 20px;
    width: 24px;
    text-align: center;
}

/* ÜCRETSİZ Kutu */
.ucretsiz-kutu {
    background: var(--renk-kart);
    border: 2px solid var(--renk-birincil);
    border-radius: 16px;
    padding: 36px;
    text-align: center;
}

.ucretsiz-badge {
    display: inline-block;
    background: var(--gradient-turuncu);
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.ucretsiz-kutu h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.ucretsiz-kutu .fiyat {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-altin);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.ucretsiz-kutu p {
    color: var(--renk-metin-ikincil);
    font-size: 14px;
    margin-bottom: 24px;
}

.guven-rozetleri {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--renk-metin-ikincil);
}

/* ════════════════════════════════════════════
   BÖLÜM 8: SSS (Akordeon)
   ════════════════════════════════════════════ */
.sss {
    padding: 100px 0;
    background: transparent;
}

.sss .merkez {
    text-align: center;
}

.sss-liste {
    max-width: 750px;
    margin: 0 auto;
}

.sss-item {
    background: var(--renk-kart);
    border: var(--border-karti);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--gecis);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.06), 0 2px 12px rgba(0,0,0,0.25);
}
.sss-item:hover {
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: 0 0 35px rgba(124, 58, 237, 0.14), 0 4px 20px rgba(0,0,0,0.35);
}

.sss-item.aktif {
    border-color: rgba(124, 58, 237, 0.3);
}

.sss-soru {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: var(--gecis);
    font-weight: 600;
    font-size: 15px;
}

.sss-soru:hover {
    background: var(--renk-kart-3);
}

.sss-soru .sss-ikon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--renk-birincil);
    font-size: 14px;
    transition: transform 0.4s ease;
}

.sss-item.aktif .sss-ikon {
    transform: rotate(180deg);
    background: var(--renk-birincil);
    color: #fff;
}

.sss-cevap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.sss-cevap-icerik {
    padding: 0 24px 20px;
    color: var(--renk-metin-ikincil);
    font-size: 14px;
    line-height: 1.8;
}

/* ════════════════════════════════════════════
   BÖLÜM 9: SON CTA
   ════════════════════════════════════════════ */
.son-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(22,32,50,0.6), rgba(11,25,48,0.5));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.son-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.son-cta-kutu {
    background: var(--renk-kart);
    border: var(--border-turuncu);
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.son-cta .bolum-baslik {
    font-size: clamp(24px, 3.5vw, 40px);
    margin-bottom: 16px;
}

.son-cta .bolum-aciklama {
    margin-bottom: 32px;
}

.son-cta-butonlar {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.son-cta .guven-alt {
    font-size: 13px;
    color: var(--renk-metin-soluk);
}

/* ════════════════════════════════════════════
   BÖLÜM 10: FOOTER
   ════════════════════════════════════════════ */
.footer {
    background: rgba(11, 20, 37, 0.85);
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-kolon h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-kolon p {
    color: var(--renk-metin-ikincil);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-sosyal {
    display: flex;
    gap: 12px;
}

.footer-sosyal a {
    width: 38px;
    height: 38px;
    background: var(--renk-kart);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--renk-metin-ikincil);
    transition: var(--gecis);
}

.footer-sosyal a:hover {
    background: var(--renk-birincil);
    color: #fff;
}

.footer-linkler li {
    margin-bottom: 10px;
}

.footer-linkler a {
    color: var(--renk-metin-ikincil);
    font-size: 14px;
    transition: var(--gecis);
}

.footer-linkler a:hover {
    color: var(--renk-birincil);
    padding-left: 4px;
}

.footer-iletisim li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--renk-metin-ikincil);
    font-size: 14px;
}

.footer-iletisim i {
    color: #FF6B00;
    width: 16px;
    text-align: center;
}

.footer-alt {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--renk-metin-soluk);
}

.footer-alt-linkler {
    display: flex;
    gap: 20px;
}

.footer-alt-linkler a {
    color: var(--renk-metin-soluk);
}

.footer-alt-linkler a:hover {
    color: var(--renk-birincil);
}

.footer-imza {
    text-align: center;
    padding: 12px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-imza a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-imza a:hover {
    color: var(--renk-birincil);
}

/* ── Scroll to Top ── */
.yukari-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--gradient-turuncu);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--gecis);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--golge-turuncu);
}

.yukari-btn.gorunur {
    opacity: 1;
    visibility: visible;
}

.yukari-btn:hover {
    transform: translateY(-3px);
}

/* ── İletişim Formu (Footer üstü veya modal) ── */
.iletisim-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-grup {
    margin-bottom: 16px;
}

.form-grup label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--renk-metin-ikincil);
}

.form-grup input,
.form-grup textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--renk-kart);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-family: var(--font-ana);
    transition: var(--gecis);
    outline: none;
}

.form-grup input:focus,
.form-grup textarea:focus {
    border-color: var(--renk-birincil);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-grup textarea {
    min-height: 120px;
    resize: vertical;
}

/* ── Bildirimler ── */
.bildirim {
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
    font-weight: 500;
}

.bildirim-basari {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--renk-basari);
}

.bildirim-hata {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--renk-hata);
}

.bildirim-uyari {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--renk-ikincil);
}

/* ── Yardımcılar ── */
.merkez { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }
.gizle { display: none; }

/* ════════════════════════════════════════════
   BAŞVURU MODALİ
   ════════════════════════════════════════════ */
.modal-kaplama {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: modalGoster 0.25s ease;
}
@keyframes modalGoster {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.modal-kutu {
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 36px;
    width: 100%;
    max-width: 520px;
    position: relative;
    animation: modalKaydir 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}
@keyframes modalKaydir {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
.modal-kapat {
    position: absolute; top: 16px; right: 16px;
    background: rgba(255,255,255,0.06);
    border: none; color: #aaa;
    width: 32px; height: 32px; border-radius: 50%;
    cursor: pointer; font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.modal-kapat:hover { background: rgba(255,107,0,0.15); color: #FF6B00; }
.modal-baslik { margin-bottom: 24px; }
.modal-baslik h3 {
    font-size: 22px; font-weight: 700; color: #FF6B00;
    margin-bottom: 6px;
}
.modal-baslik p { font-size: 13px; color: #888; }
.modal-form-satir {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.zorunlu { color: #FF6B00; }
.modal-guven {
    text-align: center; font-size: 12px; color: #555;
    margin-top: 12px;
}
.modal-guven i { margin-right: 4px; }
.modal-basari {
    text-align: center; padding: 32px 16px;
}
.modal-basari i {
    font-size: 48px; color: #22C55E; display: block; margin-bottom: 12px;
}
.modal-basari h4 { font-size: 20px; margin-bottom: 8px; }
.modal-basari p  { color: #888; font-size: 14px; }
.modal-hata {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.2);
    color: #EF4444; border-radius: 8px;
    padding: 10px 14px; font-size: 13px;
    margin-bottom: 12px;
}
@media (max-width: 480px) {
    .modal-kutu { padding: 24px 18px; }
    .modal-form-satir { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   HERO PROFİL SAYAÇLARI (alt-bilgi altında)
   ════════════════════════════════════════════ */
.hero-profil-sayaclar {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 24px auto 0;
    max-width: 560px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 20px 0;
    z-index: 1;
    position: relative;
}
.hps-item {
    flex: 1;
    text-align: center;
    padding: 0 16px;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.hps-item:last-child { border-right: none; }
.hps-item strong {
    display: block;
    font-size: 24px; font-weight: 800;
    color: #FF6B00;
    line-height: 1.1;
    margin-bottom: 5px;
}
.hps-item strong i {
    font-size: 16px;
    margin-right: 3px;
    vertical-align: middle;
}
.hps-item span {
    font-size: 11px; color: #777;
    display: block; line-height: 1.4;
}
@media (max-width: 480px) {
    .hero-profil-sayaclar { max-width: 100%; margin: 16px 0 0; }
    .hps-item strong { font-size: 18px; }
    .hps-item span   { font-size: 10px; }
}

/* ════════════════════════════════════════════
   HERO PROFİL KARTI
   ════════════════════════════════════════════ */
.hero-profil-kart {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.12), 0 0 100px rgba(255, 107, 0, 0.05), 0 8px 40px rgba(0,0,0,0.4);
    padding: 32px;
    max-width: 680px;
    margin: 32px auto 0;
    text-align: left;
}
.hpk-ust {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 20px;
}
.hpk-avatar {
    width: 72px; height: 72px; min-width: 72px;
    border-radius: 50%;
    border: 3px solid #FF6B00;
    overflow: hidden;
    box-shadow: 0 0 0 4px rgba(255,107,0,0.15);
}
.hpk-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hpk-kimlik h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.hpk-kimlik span { font-size: 14px; color: #FF6B00; font-weight: 500; }
.hpk-rozetler {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 20px;
}
.hpk-rozet {
    background: rgba(255,107,0,0.08);
    border: 1px solid rgba(255,107,0,0.2);
    color: #ccc; font-size: 12px; font-weight: 500;
    padding: 6px 12px; border-radius: 20px;
    display: inline-flex; align-items: center; gap: 6px;
}
.hpk-rozet i { color: #FF6B00; }
.hpk-biyografi {
    background: rgba(255,255,255,0.04);
    border-left: 3px solid #FF6B00;
    border-radius: 0 10px 10px 0;
    padding: 16px 18px;
    margin-bottom: 24px;
    font-size: 14px; line-height: 1.8; color: #bbb;
}
.hpk-cta {
    display: flex; gap: 12px; flex-wrap: wrap;
    margin-bottom: 20px;
}
.hpk-ozellikler {
    display: flex; flex-wrap: wrap; gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.hpk-ozellikler span {
    font-size: 12px; color: #888;
    display: inline-flex; align-items: center; gap: 6px;
}
.hpk-ozellikler i { color: #22C55E; }

/* Sayaçlar */
.hpk-sayaclar {
    display: flex;
    gap: 0;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.hpk-sayac-item {
    flex: 1;
    text-align: center;
    padding: 0 8px;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.hpk-sayac-item:last-child { border-right: none; }
.hpk-sayac-item strong {
    display: block;
    font-size: 26px; font-weight: 800;
    color: #FF6B00;
    line-height: 1.1;
    margin-bottom: 4px;
}
.hpk-sayac-item span {
    font-size: 11px; color: #777;
    display: block; line-height: 1.4;
}

@media (max-width: 600px) {
    .hero-profil-kart { padding: 20px 16px; }
    .hpk-cta { flex-direction: column; }
    .hpk-cta a { width: 100%; justify-content: center; }
    /* Özellikler mobilde tek satırda, küçük yazı */
    .hpk-ozellikler {
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 4px;
    }
    .hpk-ozellikler span {
        font-size: 10px;
        white-space: nowrap;
        gap: 4px;
    }
    .hpk-sayac-item strong { font-size: 20px; }
    .hpk-sayac-item span   { font-size: 10px; }
}

/* ════════════════════════════════════════════
   INSTAGRAM BANNER
   ════════════════════════════════════════════ */
.insta-banner {
    margin: 28px 0 20px;
    border: 1px solid rgba(255,107,0,0.2);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255,107,0,0.06), rgba(255,107,0,0.02));
    padding: 20px 28px;
}
.insta-banner-icerik {
    display: flex; align-items: center;
    justify-content: space-between; gap: 20px;
    flex-wrap: wrap;
}
.insta-banner-sol {
    display: flex; align-items: center; gap: 16px;
}
.insta-banner-ikon {
    width: 52px; height: 52px; min-width: 52px;
    background: linear-gradient(135deg, #FF6B00, #E55A00);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #fff;
}
.insta-banner-sol strong {
    display: block; font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px;
}
.insta-banner-sol span { font-size: 13px; color: #888; }
.insta-btn { white-space: nowrap; }
@media (max-width: 600px) {
    .insta-banner-icerik { flex-direction: column; align-items: flex-start; }
    .insta-btn { width: 100%; justify-content: center; }
}
