/* ============================================================
   ogrenci-kocluk.css — Öğrenci Koçluk Satış Sitesi: Koç Vektör Teması
   Renk paleti: Mor/Menekşe (#7c3aed) + Pembe-Mor gradyan aksan (#ec4899) — atlasrehberlik.com esintili
   Bağımsız dosya; public.css, koc.css ve student-base.css'e bağımlılık yok.
   ============================================================ */

/* ── Renk Sistemi ─────────────────────────────────────────── */
:root {
    --ok-primary:        #7c3aed;
    --ok-primary-light:  #a78bfa;
    --ok-primary-hover:  #6d28d9;
    --ok-primary-soft:   #f3e8ff;
    --ok-navy:           #150a2e;
    --ok-navy-mid:       #1f0f42;
    --ok-navy-light:     #341a63;
    --ok-accent:         #ec4899;
    --ok-accent-dark:    #db2777;
    --ok-accent-soft:    #fce7f3;
    --ok-success:        #16a34a;
    --ok-surface:        #ffffff;
    --ok-surface-alt:    #f8f7fc;
    --ok-surface-2:      #f0edf9;
    --ok-border:         #e5defc;
    --ok-border-2:       #e6e5ec;
    --ok-text:           #16132a;
    --ok-text-muted:     #64607c;
    --ok-text-light:     #9d9ab5;
    --ok-radius:         16px;
    --ok-radius-sm:      10px;
    --ok-shadow:         0 4px 26px 0 rgba(21,10,46,.12);
    --ok-shadow-sm:      0 2px 12px 0 rgba(21,10,46,.08);
    --ok-shadow-glow:    0 10px 28px rgba(124,58,237,.3);
    --ok-navbar-h:       78px;
    --ok-topbar-h:       38px;
    --ok-header-h:       calc(var(--ok-navbar-h) + var(--ok-topbar-h));
    --ok-hero-gradient:  radial-gradient(1100px 550px at 88% -8%, rgba(236,72,153,.28), transparent 60%),
                         radial-gradient(900px 500px at -8% 108%, rgba(124,58,237,.4), transparent 60%),
                         linear-gradient(160deg, #150a2e 0%, #241246 45%, #3b1876 100%);
}
@media (max-width: 767px) {
    :root { --ok-topbar-h: 0px; }
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

.ok-page {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    background: var(--ok-surface);
    color: var(--ok-text);
    min-height: 100vh;
    padding-top: var(--ok-header-h);
    overflow-x: hidden;
}

/* ── Topbar (üst bilgi çubuğu) ────────────────────────────── */
.ok-topbar { background: var(--ok-navy); }
.ok-topbar-inner {
    height: var(--ok-topbar-h); display: flex; align-items: center; justify-content: space-between;
    gap: 14px; overflow: hidden;
}
.ok-topbar-contact { display: flex; align-items: center; gap: 22px; }
.ok-topbar-contact a, .ok-topbar-social a {
    color: rgba(255,255,255,.78); text-decoration: none; font-size: 0.78rem; font-weight: 600;
    display: inline-flex; align-items: center; gap: 7px; transition: color .15s;
}
.ok-topbar-contact a i { color: var(--ok-accent); font-size: 0.78rem; }
.ok-topbar-contact a:hover, .ok-topbar-social a:hover { color: #fff; }
.ok-topbar-social { display: flex; align-items: center; gap: 16px; }
.ok-topbar-social a { font-size: 0.85rem; }
@media (max-width: 767px) { .ok-topbar { display: none; } }

/* ── Navbar ───────────────────────────────────────────────── */
.ok-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .25s, box-shadow .25s;
}
.ok-navbar.scrolled { border-color: var(--ok-border-2); box-shadow: var(--ok-shadow-sm); }
/* Minimal navbar (ödeme/kayıt sayfaları): üst bilgi çubuğu basılmaz, boşluk telafisi gerekir */
.ok-navbar-minimal ~ .ok-page { padding-top: var(--ok-navbar-h); }
.ok-navbar-minimal ~ .ok-page.ok-pay-page,
.ok-navbar-minimal ~ .ok-page.ok-auth-page,
.ok-navbar-minimal ~ .ok-page.ok-result-page { min-height: calc(100vh - var(--ok-navbar-h)); }

/* ok-pay-page/ok-auth-page/ok-result-page kendi padding-top'unu ayrıca tanımladığından
   (bkz. aşağıdaki ilgili bölümler), burada hem tam header hem minimal navbar durumu için
   sabit üst boşluk garanti altına alınır (specificity ile .ok-page'in genel kuralını ezer).
   ok-auth-page/ok-result-page dikey ortalanan (flex + min-height:100vh-header) "tek ekrana
   sığan" sayfalar olduğundan üst boşluğa EKSTRA piksel eklenmez — aksi halde toplam yükseklik
   100vh'i aşıp header'ın altında gereksiz taşma/scroll oluşturur. ok-pay-page ise uzun/kaydırmalı
   bir sayfa olduğu için adım göstergesinden önce ekstra nefes payı bırakılır. */
.ok-page.ok-pay-page { padding-top: calc(var(--ok-header-h) + 44px); }
.ok-page.ok-auth-page,
.ok-page.ok-result-page { padding-top: var(--ok-header-h); }
.ok-navbar-minimal ~ .ok-page.ok-pay-page { padding-top: calc(var(--ok-navbar-h) + 44px); }
.ok-navbar-minimal ~ .ok-page.ok-auth-page,
.ok-navbar-minimal ~ .ok-page.ok-result-page { padding-top: var(--ok-navbar-h); }

.ok-navbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; min-height: var(--ok-navbar-h); gap: 16px;
    padding-top: 4px; padding-bottom: 4px;
}
.ok-navbar-brand { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.ok-logo-img { height: 66px; max-width: 220px; object-fit: contain; }
.ok-logo-text {
    font-size: 1.5rem; font-weight: 800; color: var(--ok-navy);
    display: inline-flex; align-items: center; gap: 8px; letter-spacing: -.02em;
}
.ok-logo-text i { color: var(--ok-primary); font-size: 1.3rem; }

.ok-nav-links { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
@media (max-width: 991px) { .ok-nav-links { display: none; } }

.ok-navbar-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.ok-nav-desktop-btn { display: inline-flex; }
.ok-navbar-right .ok-nav-mobile-btn { display: none; }
@media (max-width: 991px) {
    .ok-nav-desktop-btn { display: none !important; }
    .ok-navbar-right .ok-nav-mobile-btn { display: flex; }
}

.ok-nav-link {
    padding: 8px 14px; border-radius: var(--ok-radius-sm); color: var(--ok-text);
    text-decoration: none; font-size: 0.9rem; font-weight: 600; transition: background .18s, color .18s;
}
.ok-nav-link:hover, .ok-nav-link.active { background: var(--ok-primary-soft); color: var(--ok-primary); }

.ok-hamburger {
    width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--ok-border-2);
    background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.ok-hamburger span { display: block; width: 18px; height: 2px; background: var(--ok-navy); border-radius: 2px; transition: transform .2s, opacity .2s; }
.ok-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.ok-hamburger.open span:nth-child(2) { opacity: 0; }
.ok-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.ok-mobile-menu { max-height: 0; overflow: hidden; background: #fff; border-bottom: 1px solid var(--ok-border-2); transition: max-height .3s ease; }
.ok-mobile-menu.open { max-height: 480px; }
.ok-mobile-inner { display: flex; flex-direction: column; padding: 12px 0 20px; }
.ok-mobile-link { padding: 12px 6px; color: var(--ok-text); text-decoration: none; font-weight: 600; border-bottom: 1px solid var(--ok-surface-2); display: flex; align-items: center; gap: 10px; }
.ok-mobile-link i { color: var(--ok-primary); width: 18px; }
.ok-mobile-actions { margin-top: 14px; }

/* ── Buttons ──────────────────────────────────────────────── */
.ok-btn-primary {
    display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px;
    background: var(--ok-primary); color: #fff !important; border: none; border-radius: 999px;
    font-weight: 700; font-size: 0.92rem; text-decoration: none; transition: background .18s, transform .18s, box-shadow .18s;
    box-shadow: var(--ok-shadow-glow); cursor: pointer;
}
.ok-btn-primary:hover { background: var(--ok-primary-hover); transform: translateY(-1px); color: #fff; }
.ok-btn-outline {
    display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px;
    background: transparent; color: var(--ok-navy) !important; border: 1.5px solid var(--ok-border-2); border-radius: 999px;
    font-weight: 700; font-size: 0.92rem; text-decoration: none; transition: border-color .18s, background .18s;
}
.ok-btn-outline:hover { border-color: var(--ok-primary); background: var(--ok-primary-soft); color: var(--ok-primary) !important; }
.ok-btn-white {
    display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px;
    background: #fff; color: var(--ok-primary) !important; border: none; border-radius: 999px;
    font-weight: 800; font-size: 0.98rem; text-decoration: none; transition: transform .18s;
}
.ok-btn-white:hover { transform: translateY(-1px); }
.ok-btn-lg { padding: 14px 28px; font-size: 1rem; }

/* ── Hero (koyu mor gradyan slider — atlasrehberlik.com esintili) ────── */
.ok-hero {
    position: relative; padding: calc(var(--ok-header-h) + 46px) 0 0;
    background: var(--ok-hero-gradient);
    overflow: hidden; color: #fff;
}
.ok-hero-dots {
    position: absolute; inset: 0; pointer-events: none; opacity: .35;
    background-image: radial-gradient(rgba(255,255,255,.5) 1.4px, transparent 1.4px);
    background-size: 28px 28px; mask-image: radial-gradient(ellipse 70% 60% at 75% 15%, #000 40%, transparent 90%);
}
.ok-badge {
    display: inline-flex; align-items: center; gap: 9px; padding: 8px 17px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(6px);
    color: #fff; border-radius: 999px; font-weight: 700; font-size: 0.82rem; margin-bottom: 22px;
}
.ok-badge-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--ok-accent); position: relative; }
.ok-badge-pulse::after {
    content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--ok-accent);
    animation: ok-pulse 1.8s ease-out infinite;
}
@keyframes ok-pulse { 0% { transform: scale(.6); opacity: 1; } 100% { transform: scale(1.8); opacity: 0; } }

.ok-hero-title { font-size: clamp(2.1rem, 4.2vw, 3.35rem); font-weight: 800; line-height: 1.14; letter-spacing: -.02em; color: #fff; margin-bottom: 20px; }
.ok-hero-accent {
    background: linear-gradient(90deg, #c4b5fd, #f9a8d4); -webkit-background-clip: text; background-clip: text;
    color: transparent; position: relative;
}
.ok-hero-sub { font-size: 1.08rem; color: rgba(255,255,255,.78); line-height: 1.7; margin-bottom: 26px; max-width: 560px; }
.ok-hero-sub strong { color: #fff; }

.ok-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }

.ok-trust-row { display: flex; flex-wrap: wrap; gap: 18px; }
.ok-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; color: rgba(255,255,255,.75); font-weight: 600; }
.ok-trust-item i { color: #4ade80; }

/* Kontrol listesi (checklist) — Atlas hero'daki onay işaretli maddeler */
.ok-hero-checklist { list-style: none; padding: 0; margin: 0 0 24px; }
.ok-hero-checklist li {
    display: flex; align-items: center; gap: 11px; color: rgba(255,255,255,.92);
    font-weight: 600; font-size: 0.96rem; padding: 6px 0;
}
.ok-hero-checklist i { color: #4ade80; font-size: 1.1rem; flex-shrink: 0; }

/* Özellik rozetleri (pill) — UnitKoç Panel / Çalıştıkça Kazan vb. */
.ok-hero-feature-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.ok-hero-pill {
    display: inline-flex; align-items: center; gap: 8px; padding: 10px 17px;
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: 999px;
    color: #fff; font-size: 0.82rem; font-weight: 700;
}
.ok-hero-pill i { color: #f9a8d4; }

.ok-hero-fineprint {
    margin-top: 16px; color: rgba(255,255,255,.55); font-size: 0.82rem;
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.ok-hero-fineprint .dot-sep { opacity: .6; }

/* Sınav tipi seçim çipleri */
.ok-exam-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.ok-exam-chip {
    padding: 8px 18px; border-radius: 999px; border: 1.5px solid rgba(255,255,255,.22); background: rgba(255,255,255,.05);
    font-weight: 700; font-size: 0.85rem; color: #fff; cursor: pointer; text-decoration: none; transition: all .18s;
}
.ok-exam-chip:hover, .ok-exam-chip.active { border-color: var(--ok-accent); background: var(--ok-accent); color: #fff; }

/* Hero — büyük CTA butonu (beyaz, yuvarlak) */
.ok-btn-hero-white {
    display: inline-flex; align-items: center; gap: 10px; padding: 18px 34px;
    background: #fff; color: var(--ok-navy) !important; border: none; border-radius: 999px;
    font-weight: 800; font-size: 1.02rem; text-decoration: none; box-shadow: 0 16px 36px rgba(0,0,0,.35);
    transition: transform .18s, box-shadow .18s;
}
.ok-btn-hero-white:hover { transform: translateY(-2px); box-shadow: 0 20px 42px rgba(0,0,0,.4); color: var(--ok-navy) !important; }
.ok-btn-hero-white i { color: var(--ok-primary); }

/* Hero görsel — video/foto kartı */
.ok-hero-visual { position: relative; padding: 30px 26px 30px 10px; }
.ok-hero-videocard {
    border-radius: 24px; overflow: hidden; box-shadow: 0 34px 74px rgba(0,0,0,.45); position: relative; z-index: 2;
    max-width: 400px; margin: 0 auto;
}
.ok-hero-videocard-photo {
    aspect-ratio: 4/5; position: relative; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(165deg, #341a63 0%, #7c3aed 55%, #ec4899 140%);
}
.ok-hero-videocard-photo::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.16) 1.6px, transparent 1.6px); background-size: 22px 22px;
    opacity: .5;
}
.ok-hero-videocard-photo i.ok-hero-videocard-icon {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    font-size: 9rem; color: rgba(255,255,255,.12); pointer-events: none;
}
.ok-hero-videocard-tag {
    position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 2;
    background: rgba(10,4,26,.55); backdrop-filter: blur(8px); color: #fff; padding: 13px 16px;
    border-radius: 14px; font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; gap: 10px;
}
.ok-hero-videocard-tag i { color: var(--ok-accent); }
.ok-hero-float-badge {
    position: absolute; top: 20px; right: 0; background: #fff; color: var(--ok-navy); padding: 11px 19px;
    border-radius: 999px; font-weight: 800; font-size: 0.82rem; box-shadow: var(--ok-shadow); z-index: 3;
    display: flex; align-items: center; gap: 8px; animation: ok-float 4s ease-in-out infinite;
}
.ok-hero-float-badge i { color: var(--ok-primary); }
@keyframes ok-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (max-width: 767px) { .ok-hero-float-badge { position: static; display: inline-flex; margin-top: 16px; } }

/* Hero — legacy ilerleme kartı (bazı sayfalarda kullanılmaya devam edebilir) */
.ok-hero-card { background: #fff; border-radius: 20px; box-shadow: var(--ok-shadow); padding: 24px; position: relative; z-index: 2; color: var(--ok-text); }
.ok-card-header-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.ok-avatar {
    width: 46px; height: 46px; border-radius: 50%; background: var(--ok-primary-soft); color: var(--ok-primary);
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.ok-card-name { font-weight: 800; color: var(--ok-navy); font-size: 1rem; }
.ok-card-sub { font-size: 0.8rem; color: var(--ok-text-light); }
.ok-tag-up { background: #dcfce7; color: #16a34a; padding: 4px 10px; border-radius: 999px; font-size: 0.78rem; font-weight: 800; }
.ok-prog-item { margin-bottom: 14px; }
.ok-prog-label { display: flex; justify-content: space-between; font-size: 0.82rem; font-weight: 700; color: var(--ok-navy); margin-bottom: 6px; }
.ok-prog-wrap { height: 8px; background: var(--ok-surface-2); border-radius: 999px; overflow: hidden; }
.ok-prog-bar { height: 100%; border-radius: 999px; }
.ok-ai-chip {
    margin-top: 16px; display: flex; align-items: center; gap: 10px; background: var(--ok-primary-soft);
    color: var(--ok-primary-hover); padding: 10px 14px; border-radius: 12px; font-size: 0.82rem; font-weight: 700;
}
.ok-float-card {
    position: absolute; background: #fff; border-radius: 14px; box-shadow: var(--ok-shadow); padding: 12px 16px;
    display: flex; align-items: center; gap: 10px; z-index: 3; animation: ok-float 4s ease-in-out infinite; color: var(--ok-text);
}
.ok-float-tr { top: -6px; right: -6px; }
.ok-float-bl { bottom: 10px; left: -18px; animation-delay: .6s; }
.ok-float-icon-wrap { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.ok-float-title { font-size: 0.82rem; font-weight: 800; color: var(--ok-navy); }
.ok-float-sub { font-size: 0.74rem; color: var(--ok-text-light); }
@media (max-width: 991px) { .ok-float-card { display: none; } }

/* Hero slider ok butonları */
.ok-hero-arrow {
    position: absolute; top: 42%; width: 48px; height: 48px; border-radius: 50%; z-index: 6;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 1.25rem; cursor: pointer; transition: background .18s, transform .18s;
}
.ok-hero-arrow:hover { background: rgba(255,255,255,.22); transform: translateY(-50%) scale(1.05); }
.ok-hero-arrow-prev { left: 8px; }
.ok-hero-arrow-next { right: 8px; }
@media (max-width: 991px) { .ok-hero-arrow { display: none; } }

/* Stats band */
.ok-stats-band { background: rgba(0,0,0,.18); margin-top: 56px; padding: 30px 0; border-top: 1px solid rgba(255,255,255,.08); }
.ok-stats-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.ok-stat { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; min-width: 130px; }
.ok-stat-num { font-size: 1.7rem; font-weight: 800; color: #fff; }
.ok-stat-lbl { font-size: 0.8rem; color: rgba(255,255,255,.65); font-weight: 600; margin-top: 4px; }
.ok-stat-div { width: 1px; height: 40px; background: rgba(255,255,255,.15); }
@media (max-width: 767px) { .ok-stat-div { display: none; } }

/* ── Generic Section ──────────────────────────────────────── */
.ok-section { padding: 88px 0; }
.ok-section-alt { background: var(--ok-surface-alt); }
.ok-section-eyebrow {
    display: inline-flex; align-items: center; gap: 8px; color: var(--ok-primary); font-weight: 800;
    font-size: 0.84rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 14px;
}
.ok-section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: var(--ok-navy); letter-spacing: -.02em; line-height: 1.25; }
.ok-section-title .accent { color: var(--ok-primary); }
.ok-section-subtitle { color: var(--ok-text-muted); font-size: 1.02rem; max-width: 680px; line-height: 1.7; margin-top: 14px; }

/* Pain / solution grid */
.ok-pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 991px) { .ok-pain-grid { grid-template-columns: 1fr; } }
.ok-pain-card { background: var(--ok-surface-alt); border-radius: var(--ok-radius); padding: 28px; border: 1px solid var(--ok-border-2); }
.ok-pain-icon-wrap {
    width: 50px; height: 50px; border-radius: 14px; background: var(--ok-primary-soft); color: var(--ok-primary);
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px;
}
.ok-pain-problem { color: var(--ok-text-muted); font-size: 0.94rem; line-height: 1.6; margin-bottom: 14px; }
.ok-pain-arrow { color: var(--ok-text-light); margin-bottom: 14px; }
.ok-pain-solution { color: var(--ok-navy); font-weight: 700; font-size: 0.92rem; line-height: 1.5; }
.ok-pain-solution i { color: var(--ok-success); margin-right: 6px; }

/* Steps (nasıl çalışır) */
.ok-steps { display: flex; align-items: stretch; gap: 12px; flex-wrap: wrap; justify-content: center; }
.ok-step-card {
    flex: 1; min-width: 220px; background: #fff; border: 1px solid var(--ok-border-2); border-radius: var(--ok-radius);
    padding: 26px 22px; text-align: center; box-shadow: var(--ok-shadow-sm);
}
.ok-step-num {
    width: 34px; height: 34px; border-radius: 50%; background: var(--ok-navy); color: #fff; font-weight: 800;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.ok-step-icon-wrap { font-size: 1.6rem; color: var(--ok-primary); margin-bottom: 12px; }
.ok-step-title { font-weight: 800; color: var(--ok-navy); margin-bottom: 8px; }
.ok-step-desc { font-size: 0.86rem; color: var(--ok-text-muted); line-height: 1.6; }
.ok-step-arrow { display: flex; align-items: center; color: var(--ok-border-2); font-size: 1.2rem; }
@media (max-width: 991px) { .ok-step-arrow { display: none; } }

/* ── Paket kartları (OgrenciKocPackageCatalog / OgrenciKocDenemeKulubuCatalog RenderTabsHtml) ───────── */
.ok-pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
@media (max-width: 991px) { .ok-pkg-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }
.ok-pkg-card {
    position: relative; background: #fff; border: 1.5px solid var(--ok-border-2); border-radius: 20px;
    display: flex; flex-direction: column; box-shadow: var(--ok-shadow-sm); overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}
.ok-pkg-card:hover { transform: translateY(-4px); box-shadow: var(--ok-shadow); }
.ok-pkg-popular { border-color: var(--ok-primary); box-shadow: 0 14px 36px rgba(124,58,237,.2); }
.ok-pkg-badge {
    position: absolute; top: 14px; right: 14px; z-index: 3; background: var(--ok-accent); color: #fff;
    padding: 6px 16px; border-radius: 999px; font-size: 0.72rem; font-weight: 800; white-space: nowrap;
    box-shadow: 0 6px 16px rgba(219,39,119,.35);
}

/* Kart üstü foto/video paneli (atlasrehberlik.com esintili) */
.ok-pkg-photo {
    position: relative; aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.ok-pkg-photo::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.18) 1.6px, transparent 1.6px); background-size: 20px 20px; opacity: .55;
}
.ok-pkg-photo-yks { background: linear-gradient(150deg, var(--ok-navy) 0%, var(--ok-primary) 65%, var(--ok-accent) 150%); }
.ok-pkg-photo-lgs { background: linear-gradient(150deg, #1e0f3d 0%, #5b21b6 65%, #a78bfa 150%); }
.ok-pkg-photo-orta { background: linear-gradient(150deg, #1e0f3d 0%, #7c3aed 65%, #c026d3 150%); }
.ok-pkg-play {
    width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.95); border: none; z-index: 2;
    color: var(--ok-primary); font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 8px 22px rgba(0,0,0,.3); transition: transform .18s;
}
.ok-pkg-play:hover { transform: scale(1.08); }
.ok-pkg-photo-label {
    position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 2; color: #fff; font-weight: 700;
    font-size: 0.8rem; text-align: center; background: rgba(10,4,26,.4); backdrop-filter: blur(4px);
    padding: 8px 10px; border-radius: 10px;
}

.ok-pkg-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.ok-pkg-icon {
    width: 52px; height: 52px; border-radius: 14px; background: var(--ok-primary-soft); color: var(--ok-primary);
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px;
}
.ok-pkg-popular .ok-pkg-icon { background: var(--ok-primary); color: #fff; }
.ok-pkg-name { font-size: 1.2rem; font-weight: 800; color: var(--ok-navy); margin-bottom: 10px; }
.ok-pkg-price-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.ok-pkg-old { color: var(--ok-text-light); text-decoration: line-through; font-size: 0.95rem; }
.ok-pkg-price { font-size: 1.9rem; font-weight: 800; color: var(--ok-navy); }
.ok-pkg-per { font-size: 0.95rem; font-weight: 600; color: var(--ok-text-muted); margin-left: 3px; }
.ok-pkg-sub { font-size: 0.85rem; color: var(--ok-text-muted); margin-bottom: 20px; min-height: 40px; }
.ok-pkg-feats { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.ok-pkg-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--ok-text); padding: 7px 0; line-height: 1.4; }
.ok-pkg-check {
    width: 19px; height: 19px; border-radius: 50%; background: var(--ok-primary-soft); color: var(--ok-primary);
    display: flex; align-items: center; justify-content: center; font-size: 0.62rem; flex-shrink: 0; margin-top: 2px;
}
.ok-pkg-btn {
    width: 100%; padding: 13px; border-radius: 999px; border: 1.5px solid var(--ok-border-2); background: #fff;
    color: var(--ok-navy); font-weight: 800; font-size: 0.94rem; display: flex; align-items: center; justify-content: center; gap: 8px;
    cursor: pointer; transition: all .18s; text-decoration: none;
}
.ok-pkg-btn:hover { border-color: var(--ok-primary); color: var(--ok-primary); }
.ok-pkg-btn-primary { background: var(--ok-primary); border-color: var(--ok-primary); color: #fff; box-shadow: var(--ok-shadow-glow); }
.ok-pkg-btn-primary:hover { background: var(--ok-primary-hover); color: #fff; }
.ok-pkg-btn:disabled { opacity: .6; cursor: not-allowed; }
.ok-pricing-note { text-align: center; color: var(--ok-text-muted); font-size: 0.86rem; margin-top: 26px; }
.ok-pricing-note a { color: var(--ok-primary); font-weight: 700; text-decoration: none; }

/* ══════════════════════════════════════════════════════════════
   Psikolojik & Akademik Testler (kocluk-testler.aspx)
   ══════════════════════════════════════════════════════════════ */
.ok-test-free-banner {
    display: flex; align-items: center; justify-content: center; gap: 12px; text-align: center;
    background: var(--ok-primary-soft); color: var(--ok-primary-hover); border-radius: 14px;
    padding: 14px 22px; font-size: 0.9rem; font-weight: 600; margin-bottom: 26px; flex-wrap: wrap;
}
.ok-test-free-banner i { font-size: 1.1rem; color: var(--ok-accent-dark); }

.ok-test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
@media (max-width: 991px) { .ok-test-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .ok-test-grid { grid-template-columns: 1fr; } }

.ok-test-card {
    position: relative; background: #fff; border: 1px solid var(--ok-border-2); border-radius: var(--ok-radius);
    padding: 26px 22px 22px; display: flex; flex-direction: column; transition: transform .18s, box-shadow .18s;
}
.ok-test-card:hover { transform: translateY(-4px); box-shadow: var(--ok-shadow); }
.ok-test-card-free { border-color: var(--ok-success); }

.ok-test-badge {
    position: absolute; top: 16px; right: 16px; font-size: 0.7rem; font-weight: 800; padding: 5px 11px;
    border-radius: 999px; display: inline-flex; align-items: center; gap: 5px; letter-spacing: .01em;
}
.ok-test-badge-free { background: #dcfce7; color: var(--ok-success); }
.ok-test-badge-locked { background: var(--ok-surface-2); color: var(--ok-text-light); }

.ok-test-icon {
    width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; margin-bottom: 16px;
}
.ok-test-name { font-weight: 800; color: var(--ok-navy); font-size: 1.02rem; margin-bottom: 8px; padding-right: 70px; }
.ok-test-desc { font-size: 0.86rem; color: var(--ok-text-muted); line-height: 1.5; margin-bottom: 16px; flex-grow: 1; }
.ok-test-meta { display: flex; gap: 16px; font-size: 0.78rem; color: var(--ok-text-light); font-weight: 600; margin-bottom: 18px; }
.ok-test-meta i { color: var(--ok-primary-light); margin-right: 4px; }

.ok-test-btn {
    width: 100%; padding: 12px; border-radius: 999px; border: none; font-weight: 800; font-size: 0.88rem;
    display: flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; text-decoration: none;
    transition: all .18s;
}
.ok-test-btn-free { background: var(--ok-success); color: #fff; }
.ok-test-btn-free:hover { background: #15803d; color: #fff; }
.ok-test-btn-locked { background: var(--ok-surface-alt); color: var(--ok-text-light); border: 1.5px solid var(--ok-border-2); }
.ok-test-btn-locked:hover { border-color: var(--ok-primary); color: var(--ok-primary); background: var(--ok-primary-soft); }

.ok-swal-lock-icon { border-color: var(--ok-primary) !important; color: var(--ok-primary) !important; }

/* Başarı hikâyeleri */
.ok-story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 991px) { .ok-story-grid { grid-template-columns: 1fr; } }
.ok-story-card { background: #fff; border: 1px solid var(--ok-border-2); border-radius: var(--ok-radius); padding: 26px; box-shadow: var(--ok-shadow-sm); }
.ok-story-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.ok-story-avatar {
    width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--ok-primary), var(--ok-primary-light));
    color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; flex-shrink: 0;
}
.ok-story-name { font-weight: 800; color: var(--ok-navy); }
.ok-story-tag { font-size: 0.78rem; color: var(--ok-text-light); }
.ok-story-metric { display: flex; gap: 18px; margin-bottom: 14px; }
.ok-story-metric-item { text-align: center; flex: 1; background: var(--ok-surface-alt); border-radius: 10px; padding: 10px 6px; }
.ok-story-metric-num { font-weight: 800; color: var(--ok-primary); font-size: 1.05rem; }
.ok-story-metric-lbl { font-size: 0.7rem; color: var(--ok-text-light); font-weight: 600; }
.ok-story-quote { font-size: 0.87rem; color: var(--ok-text-muted); line-height: 1.6; font-style: italic; }

/* Ekibimiz — küçük hero */
.ok-hero-sm { padding-bottom: 64px; }
.ok-hero-sm .ok-badge { display: inline-flex; }

/* Ekibimiz — mentör kartları */
.ok-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1199px) { .ok-team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px) { .ok-team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ok-team-grid { grid-template-columns: 1fr; } }
.ok-team-card {
    background: #fff; border: 1px solid var(--ok-border-2); border-radius: var(--ok-radius);
    overflow: hidden; box-shadow: var(--ok-shadow-sm); transition: transform .2s, box-shadow .2s;
    display: flex; flex-direction: column;
}
.ok-team-card:hover { transform: translateY(-4px); box-shadow: var(--ok-shadow); }
.ok-team-photo-wrap { aspect-ratio: 1 / 1; overflow: hidden; background: var(--ok-surface-alt); }
.ok-team-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.ok-team-photo-placeholder {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
    background: linear-gradient(180deg, #eef0f4, #e3e5ea); color: #9096a3;
}
.ok-team-photo-placeholder i { font-size: 2.1rem; color: #b3b8c4; }
.ok-team-photo-placeholder span { font-size: 0.78rem; font-weight: 700; text-align: center; line-height: 1.4; color: #9096a3; }
.ok-team-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex-grow: 1; }
.ok-team-name { font-weight: 800; color: var(--ok-navy); font-size: 1.05rem; margin-bottom: 3px; }
.ok-team-title { font-size: 0.82rem; color: var(--ok-primary); font-weight: 700; margin-bottom: 10px; }
.ok-team-specialty {
    display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--ok-primary-hover);
    font-weight: 800; background: var(--ok-primary-soft); border-radius: 999px; padding: 4px 12px; margin-bottom: 6px;
}
.ok-team-specialty i { color: var(--ok-primary); }
.ok-team-branch, .ok-team-university {
    display: flex; align-items: center; gap: 7px; font-size: 0.78rem; color: var(--ok-text-muted);
    font-weight: 600; margin-bottom: 5px;
}
.ok-team-branch i, .ok-team-university i { color: var(--ok-primary); width: 14px; text-align: center; flex-shrink: 0; }
.ok-team-bio { font-size: 0.82rem; color: var(--ok-text-muted); line-height: 1.6; margin: 10px 0 14px; flex-grow: 1; }
.ok-team-stats { display: flex; align-items: center; gap: 12px; background: var(--ok-surface-alt); border-radius: 10px; padding: 10px 6px; margin-bottom: 12px; }
.ok-team-stat { flex: 1; text-align: center; }
.ok-team-stat-num { display: block; font-weight: 800; color: var(--ok-navy); font-size: 1rem; }
.ok-team-stat-lbl { display: block; font-size: 0.66rem; color: var(--ok-text-light); font-weight: 600; }
.ok-team-stat-div { width: 1px; align-self: stretch; background: var(--ok-border-2); }
.ok-team-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ok-team-tag {
    font-size: 0.68rem; font-weight: 700; color: var(--ok-primary); background: var(--ok-primary-soft);
    border-radius: 999px; padding: 4px 10px;
}

/* FAQ */
.ok-faq { max-width: 820px; margin: 0 auto; }
.ok-faq-item { border-bottom: 1px solid var(--ok-border-2); }
.ok-faq-q {
    width: 100%; text-align: left; background: none; border: none; padding: 20px 4px; display: flex;
    justify-content: space-between; align-items: center; font-weight: 700; color: var(--ok-navy); font-size: 1rem; cursor: pointer;
}
.ok-faq-q i { color: var(--ok-primary); transition: transform .2s; flex-shrink: 0; margin-left: 12px; }
.ok-faq-item.open .ok-faq-q i { transform: rotate(180deg); }
.ok-faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; color: var(--ok-text-muted); font-size: 0.9rem; line-height: 1.7; }
.ok-faq-item.open .ok-faq-a { max-height: 420px; padding-bottom: 20px; }

/* kocluk-sss.aspx — arama kutusu + sonuç bulunamadı durumu */
.ok-faq-search-wrap {
    position: relative; max-width: 480px; margin-top: 28px;
}
.ok-faq-search-wrap i {
    position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--ok-text-light); font-size: 0.95rem;
}
.ok-faq-search-wrap input {
    width: 100%; padding: 15px 20px 15px 46px; border-radius: 999px; border: 1.5px solid var(--ok-border-2);
    font-size: 0.95rem; font-family: inherit; outline: none; background: #fff; box-shadow: var(--ok-shadow-sm);
    transition: border-color .18s, box-shadow .18s;
}
.ok-faq-search-wrap input:focus { border-color: var(--ok-primary); box-shadow: 0 0 0 4px var(--ok-primary-soft); }
.ok-faq-no-result { text-align: center; padding: 50px 20px; color: var(--ok-text-muted); }
.ok-faq-no-result i { font-size: 2.2rem; color: var(--ok-primary-light); margin-bottom: 12px; display: block; }
.ok-faq-tabs { max-width: 900px; margin: 0 auto; }
.ok-faq-tabs .ok-tabs-nav { margin-bottom: 12px; }

/* Açık zeminde kullanılan "tümünü gör" tarzı link */
.ok-link-arrow { color: var(--ok-text-muted); text-decoration: none; font-size: 0.92rem; }
.ok-link-arrow strong { color: var(--ok-primary); }
.ok-link-arrow:hover strong { text-decoration: underline; }

/* CTA band */
.ok-cta-band {
    background: linear-gradient(135deg, var(--ok-navy) 0%, var(--ok-primary-hover) 100%);
    padding: 76px 0; color: #fff; position: relative; overflow: hidden;
}
.ok-cta-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 14px; }
.ok-cta-sub { color: rgba(255,255,255,.82); font-size: 1rem; max-width: 620px; margin: 0 auto 30px; }
.ok-cta-login-link { color: #fff; text-decoration: none; font-size: 0.92rem; opacity: .9; }
.ok-cta-login-link strong { text-decoration: underline; }
.ok-cta-stars { color: var(--ok-accent); font-size: 1.1rem; letter-spacing: 4px; margin-bottom: 18px; }

/* ── Footer ───────────────────────────────────────────────── */
.ok-footer { background: var(--ok-navy); color: rgba(255,255,255,.7); padding: 64px 0 26px; }
.ok-footer-logo-text { font-size: 1.35rem; font-weight: 800; color: #fff; display: inline-flex; align-items: center; gap: 8px; }
.ok-footer-logo-text i { color: var(--ok-accent); }
/* Yüklenen logo görseli opak (beyaz) zeminliyse koyu footer'da göze batmaması için kart içine alınır */
.ok-footer-logo-badge { display: inline-flex; background: #fff; border-radius: 12px; padding: 10px 16px; box-shadow: 0 6px 18px rgba(0,0,0,.25); }
.ok-footer-logo-badge img { display: block; }
.ok-footer-tagline { margin-top: 14px; font-size: 0.86rem; line-height: 1.6; max-width: 280px; }
.ok-footer-heading { color: #fff; font-weight: 800; font-size: 0.86rem; text-transform: uppercase; letter-spacing: .03em; margin-bottom: 14px; }
.ok-footer-link { display: block; color: rgba(255,255,255,.65); text-decoration: none; font-size: 0.88rem; padding: 5px 0; transition: color .15s; }
.ok-footer-link:hover { color: #fff; }
.ok-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 22px; font-size: 0.82rem; text-align: center; }

.ok-auth-footer { padding: 20px 0; color: var(--ok-text-light); font-size: 0.82rem; }
.ok-auth-footer-link { color: var(--ok-text-light); text-decoration: none; }
.ok-auth-footer-link:hover { color: var(--ok-primary); }

/* ── Ödeme Sayfası ────────────────────────────────────────── */
.ok-pay-page { padding: 0 0 80px; background: var(--ok-surface-alt); min-height: calc(100vh - var(--ok-header-h)); }
.ok-pay-steps { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; }
.ok-pay-step { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; font-weight: 700; color: var(--ok-text-light); }
.ok-pay-step-ico { width: 30px; height: 30px; border-radius: 50%; background: var(--ok-surface-2); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }
.ok-pay-step.done { color: var(--ok-success); }
.ok-pay-step.done .ok-pay-step-ico { background: #dcfce7; color: var(--ok-success); }
.ok-pay-step.active { color: var(--ok-primary); }
.ok-pay-step.active .ok-pay-step-ico { background: var(--ok-primary); color: #fff; }

.ok-pay-error { max-width: 560px; margin: 40px auto; background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; padding: 26px; border-radius: var(--ok-radius); text-align: center; }
.ok-pay-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 26px; align-items: flex-start; }
@media (max-width: 991px) { .ok-pay-layout { grid-template-columns: 1fr; } }

.ok-pay-card { background: #fff; border-radius: var(--ok-radius); box-shadow: var(--ok-shadow-sm); overflow: hidden; }
.ok-pay-card-head { display: flex; align-items: center; gap: 14px; padding: 22px 24px; border-bottom: 1px solid var(--ok-border-2); }
.ok-pay-card-ico { width: 40px; height: 40px; border-radius: 10px; background: var(--ok-primary-soft); color: var(--ok-primary); display: flex; align-items: center; justify-content: center; }
.ok-pay-card-title { font-weight: 800; color: var(--ok-navy); }
.ok-pay-card-sub { font-size: 0.8rem; color: var(--ok-text-light); }
.ok-pay-card-body { padding: 22px 24px; }
.ok-pay-ssl { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--ok-success); margin-bottom: 16px; font-weight: 600; }

.ok-pay-summary { background: #fff; border-radius: var(--ok-radius); box-shadow: var(--ok-shadow-sm); padding: 22px 24px; margin-bottom: 18px; }
.ok-pay-summary-title { font-weight: 800; color: var(--ok-navy); margin-bottom: 14px; }
.ok-pay-summary-name { font-weight: 700; color: var(--ok-navy); display: flex; align-items: center; gap: 8px; }
.ok-pay-summary-desc { font-size: 0.82rem; color: var(--ok-text-light); margin: 6px 0 16px; }
.ok-pay-summary-rows { border-top: 1px dashed var(--ok-border-2); padding-top: 14px; }
.ok-pay-summary-row { display: flex; justify-content: space-between; font-size: 0.88rem; color: var(--ok-text-muted); padding: 4px 0; }
.ok-pay-summary-total { font-weight: 800; color: var(--ok-navy); font-size: 1.05rem; padding-top: 8px; }
.ok-pay-sec { background: #fff; border-radius: var(--ok-radius); box-shadow: var(--ok-shadow-sm); padding: 18px 22px; }
.ok-pay-sec-item { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: var(--ok-text-muted); padding: 6px 0; }
.ok-pay-sec-item i { color: var(--ok-primary); width: 16px; }
.ok-pay-summary-old { color: var(--ok-text-light); text-decoration: line-through; font-weight: 600; margin-right: 6px; }

/* ══════════════════════════════════════════════════════════════
   Sipariş Bilgileri sayfası (kocluk-siparis.aspx) — ödeme öncesi
   kullanıcı/fatura/teslimat bilgisi toplama formu (ok-pay-* düzenini kullanır)
   ══════════════════════════════════════════════════════════════ */
.ok-pay-hint {
    display: flex; align-items: center; gap: 10px; background: var(--ok-primary-soft); color: var(--ok-primary-hover);
    border-radius: 12px; padding: 12px 16px; font-size: 0.85rem; font-weight: 600; margin-bottom: 22px;
}
.ok-pay-hint i { font-size: 0.95rem; }
.ok-pay-hint a { color: var(--ok-primary-hover); text-decoration: underline; font-weight: 800; }

.ok-pay-form-section { margin-bottom: 26px; }
.ok-pay-form-section:last-of-type { margin-bottom: 0; }
.ok-pay-form-section-title {
    display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--ok-navy);
    font-size: 0.98rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px dashed var(--ok-border-2);
}
.ok-pay-form-section-num {
    width: 26px; height: 26px; border-radius: 50%; background: var(--ok-primary); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 0.78rem; flex-shrink: 0;
}
.ok-pay-form-section-title small { font-weight: 600; color: var(--ok-text-light); font-size: 0.78rem; margin-left: auto; }

.ok-pay-check-row {
    display: flex; align-items: center; gap: 10px; background: var(--ok-surface-alt); border-radius: 10px;
    padding: 12px 14px; margin-bottom: 16px; font-size: 0.86rem; font-weight: 600; color: var(--ok-text);
}
.ok-pay-check-row input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--ok-primary); cursor: pointer; flex-shrink: 0; }
.ok-pay-check-row label { cursor: pointer; margin: 0; }

.ok-pay-note {
    display: flex; align-items: flex-start; gap: 9px; font-size: 0.8rem; color: var(--ok-text-light);
    margin-top: 16px; line-height: 1.5;
}
.ok-pay-note i { margin-top: 2px; color: var(--ok-primary-light); }

.ok-pay-submit-row { margin-top: 24px; }
.ok-pay-submit-row .ok-btn-primary { width: 100%; justify-content: center; border: none; font-size: 1rem; padding: 15px; cursor: pointer; }

.ok-pay-alert {
    background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; padding: 12px 16px; border-radius: 10px;
    display: flex; align-items: flex-start; gap: 10px; font-size: 0.86rem; margin-bottom: 20px;
}

/* Sonuç sayfası */
.ok-result-page { padding: 24px 0; min-height: calc(100vh - var(--ok-header-h)); display: flex; align-items: center; justify-content: center; background: var(--ok-surface-alt); }
.ok-result-card { max-width: 520px; width: 100%; background: #fff; border-radius: 20px; box-shadow: var(--ok-shadow); padding: 48px 36px; text-align: center; }
.ok-result-icon { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; margin: 0 auto 22px; }
.ok-result-icon.success { background: #dcfce7; color: var(--ok-success); }
.ok-result-icon.fail { background: #fee2e2; color: #dc2626; }
.ok-result-title { font-size: 1.5rem; font-weight: 800; color: var(--ok-navy); margin-bottom: 12px; }
.ok-result-msg { color: var(--ok-text-muted); line-height: 1.7; margin-bottom: 28px; }
.ok-result-meta { background: var(--ok-surface-alt); border-radius: 12px; padding: 16px 20px; margin-bottom: 26px; text-align: left; font-size: 0.88rem; color: var(--ok-text); }
.ok-result-meta strong { color: var(--ok-navy); }

@media (max-width: 767px) {
    .ok-section { padding: 60px 0; }
    .ok-hero { padding-top: calc(var(--ok-header-h) + 28px); }
    .ok-hero-visual { padding: 20px 4px; }
}

/* ══════════════════════════════════════════════════════════════
   HERO SLIDER (Koçluk / Deneme Kulübü)
   ══════════════════════════════════════════════════════════════ */
.ok-hero-slide { display: none; animation: ok-fade .45s ease; }
.ok-hero-slide.active { display: block; }
@keyframes ok-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.ok-badge-accent { background: rgba(236,72,153,.15); border-color: rgba(236,72,153,.35); color: #fbcfe8; }
.ok-badge-accent .ok-badge-pulse { background: var(--ok-accent); }
.ok-badge-accent .ok-badge-pulse::after { border-color: var(--ok-accent); }

.ok-hero-dots-nav { display: flex; justify-content: center; gap: 10px; margin: 10px 0 0; position: relative; z-index: 2; }
.ok-hero-dot {
    width: 34px; height: 5px; border-radius: 999px; border: none; background: rgba(255,255,255,.25);
    cursor: pointer; transition: background .2s, width .2s;
}
.ok-hero-dot.active { background: #fff; width: 50px; }

/* Deneme Kulübü hero-visual mini "kargo takip" kartı */
.ok-dk-step { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 0.86rem; font-weight: 700; color: var(--ok-text-light); }
.ok-dk-step i { width: 18px; text-align: center; }
.ok-dk-step.done { color: var(--ok-success); }
.ok-dk-step.done i { color: var(--ok-success); }
.ok-dk-step.active { color: var(--ok-accent-dark); }
.ok-dk-step.active i { color: var(--ok-accent-dark); }

/* ══════════════════════════════════════════════════════════════
   TABS — Sınav tipi sekmeleri (RenderTabsHtml)
   ══════════════════════════════════════════════════════════════ */
.ok-tabs-wrap { }
.ok-tabs-nav {
    display: flex; flex-wrap: nowrap; gap: 4px; justify-content: center; margin: 0 auto 44px;
    background: var(--ok-surface-2); border-radius: 999px; padding: 6px; max-width: 100%;
    width: fit-content; overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none;
}
.ok-tabs-nav::-webkit-scrollbar { display: none; }
.ok-tab-btn {
    padding: 12px 24px; border-radius: 999px; border: none; background: transparent; color: var(--ok-text-muted);
    font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: all .18s; white-space: nowrap; flex-shrink: 0;
}
.ok-tab-btn:hover { color: var(--ok-navy); }
.ok-tab-btn.active { background: #fff; color: var(--ok-navy); box-shadow: var(--ok-shadow-sm); }
.ok-tab-panel { animation: ok-fade .3s ease; }
.ok-pkg-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin: 0 auto; }
@media (max-width: 767px) { .ok-tabs-nav { max-width: 100%; justify-content: flex-start; margin-left: 0; margin-right: 0; } .ok-pkg-grid-2 { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════
   VİDEO KARTLARI + LIGHTBOX
   ══════════════════════════════════════════════════════════════ */
.ok-video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 991px) { .ok-video-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.ok-video-card { cursor: pointer; }
.ok-video-thumb {
    position: relative; aspect-ratio: 16/10; border-radius: var(--ok-radius); overflow: hidden;
    display: flex; align-items: center; justify-content: center; box-shadow: var(--ok-shadow-sm);
}
.ok-video-thumb-1 { background: linear-gradient(135deg, var(--ok-navy), var(--ok-primary-hover)); }
.ok-video-thumb-2 { background: linear-gradient(135deg, var(--ok-primary-hover), var(--ok-primary-light)); }
.ok-video-thumb-3 { background: linear-gradient(135deg, var(--ok-accent-dark), var(--ok-accent)); }
.ok-video-play {
    width: 62px; height: 62px; border-radius: 50%; background: rgba(255,255,255,.95); border: none;
    color: var(--ok-primary); font-size: 1.3rem; display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 8px 24px rgba(0,0,0,.25); transition: transform .18s;
}
.ok-video-play:hover { transform: scale(1.08); }
.ok-video-caption { margin-top: 12px; font-weight: 700; color: var(--ok-navy); font-size: 0.92rem; text-align: center; }

.ok-video-modal {
    display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(10,10,25,.86);
    align-items: center; justify-content: center; padding: 20px;
}
.ok-video-modal.open { display: flex; }
.ok-video-modal-inner { width: 100%; max-width: 900px; position: relative; }
.ok-video-modal-close {
    position: absolute; top: -46px; right: 0; width: 38px; height: 38px; border-radius: 50%; border: none;
    background: rgba(255,255,255,.15); color: #fff; font-size: 1.1rem; cursor: pointer;
}
.ok-video-modal-close:hover { background: rgba(255,255,255,.3); }
.ok-video-modal-body { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; border-radius: 14px; overflow: hidden; }
.ok-video-modal-body iframe { width: 100%; height: 100%; border: none; }
.ok-video-placeholder {
    position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: rgba(255,255,255,.85); gap: 8px; text-align: center; padding: 20px;
}
.ok-video-placeholder i { font-size: 2.4rem; color: var(--ok-primary-light); margin-bottom: 6px; }
.ok-video-placeholder p { font-weight: 700; font-size: 1.05rem; margin: 0; }
.ok-video-placeholder span { font-size: 0.86rem; opacity: .7; }

/* ══════════════════════════════════════════════════════════════
   DENEME KULÜBÜ — Hero (koyu tema), özellikler, partner rozetleri
   ══════════════════════════════════════════════════════════════ */
.ok-dk-hero {
    position: relative; padding: calc(var(--ok-header-h) + 46px) 0 60px;
    background: var(--ok-hero-gradient);
    overflow: hidden; color: #fff;
}
.ok-badge-dark { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); color: #fff; }
.ok-badge-dark .ok-badge-pulse { background: var(--ok-accent); }
.ok-badge-dark .ok-badge-pulse::after { border-color: var(--ok-accent); }
.ok-dk-hero-title { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; color: #fff; margin-bottom: 20px; }
.ok-dk-hero-sub { font-size: 1.06rem; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 26px; max-width: 560px; }
.ok-dk-hero-sub strong { color: #fff; }
.ok-dk-hero .ok-exam-chip { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.25); color: #fff; }
.ok-dk-hero .ok-exam-chip:hover, .ok-dk-hero .ok-exam-chip.active { background: var(--ok-accent); border-color: var(--ok-accent); color: var(--ok-navy); }
.ok-btn-outline-dark {
    display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px;
    background: transparent; color: #fff !important; border: 1.5px solid rgba(255,255,255,.35); border-radius: 999px;
    font-weight: 700; font-size: 0.92rem; text-decoration: none; transition: all .18s;
}
.ok-btn-outline-dark:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff !important; }
.ok-dk-stats-row { display: flex; gap: 30px; flex-wrap: wrap; margin-top: 8px; }
.ok-dk-stat { display: flex; flex-direction: column; }
.ok-dk-stat-num { font-size: 1.5rem; font-weight: 800; color: #fff; }
.ok-dk-stat-lbl { font-size: 0.78rem; color: rgba(255,255,255,.65); font-weight: 600; }
.ok-dk-hero-visual { position: relative; padding: 10px; }
.ok-dk-hero-video { max-width: 340px; margin: 0 auto; }
.ok-dk-hero-video-badge {
    margin-top: 14px; text-align: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px; padding: 8px 16px; font-size: 0.82rem; font-weight: 700; color: #fff;
}

.ok-dk-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 991px) { .ok-dk-feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ok-dk-feature-grid { grid-template-columns: 1fr; } }
.ok-dk-feature {
    display: flex; align-items: flex-start; gap: 14px; background: #fff; border: 1px solid var(--ok-border-2);
    border-radius: var(--ok-radius); padding: 20px; box-shadow: var(--ok-shadow-sm);
}
.ok-dk-feature-ico {
    width: 44px; height: 44px; border-radius: 12px; background: var(--ok-accent-soft); color: var(--ok-accent-dark);
    display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0;
}
.ok-dk-feature-title { font-weight: 800; color: var(--ok-navy); font-size: 0.92rem; margin-bottom: 3px; }
.ok-dk-feature-sub { font-size: 0.8rem; color: var(--ok-text-muted); }

.ok-partner-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 10px; }
.ok-partner-badge {
    padding: 12px 26px; border-radius: 12px; background: var(--ok-surface-alt); border: 1px dashed var(--ok-border);
    color: var(--ok-text-muted); font-weight: 700; font-size: 0.88rem;
}

/* ══════════════════════════════════════════════════════════════
   CHECKOUT MODAL (SweetAlert2 içerik özelleştirmeleri)
   ══════════════════════════════════════════════════════════════ */
.ok-swal-intro { font-size: 0.86rem; color: var(--ok-text-muted); margin-bottom: 12px; text-align: left; }
.ok-swal-login-hint { font-size: 0.84rem; color: var(--ok-text-muted); text-align: left; margin-top: 4px; }
.ok-swal-login-hint a { color: var(--ok-primary); font-weight: 700; text-decoration: none; }

/* ══════════════════════════════════════════════════════════════
   Sonuç sayfası — misafir satın alımda oluşturulan hesap bilgisi
   ══════════════════════════════════════════════════════════════ */
.ok-result-newacc {
    background: var(--ok-primary-soft); border: 1px solid var(--ok-border); border-radius: 14px;
    padding: 18px 20px; margin-bottom: 26px; text-align: left; font-size: 0.88rem; color: var(--ok-text);
}
.ok-result-newacc-title { font-weight: 800; color: var(--ok-primary-hover); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.ok-result-newacc p { margin: 6px 0; color: var(--ok-text-muted); }
.ok-result-newacc-row { display: flex; justify-content: space-between; gap: 10px; padding: 6px 0; border-top: 1px dashed var(--ok-border); }
.ok-result-newacc-row span { color: var(--ok-text-muted); }
.ok-result-newacc-row strong { color: var(--ok-navy); }
.ok-result-newacc-note { font-size: 0.78rem; color: var(--ok-accent-dark) !important; }

/* ══════════════════════════════════════════════════════════════
   Öğrenci Koçluk kayıt ekranı (kocluk-kayit.aspx)
   ══════════════════════════════════════════════════════════════ */
.ok-auth-page { padding: 24px 0; background: var(--ok-surface-alt); min-height: calc(100vh - var(--ok-header-h)); display: flex; align-items: center; }
.ok-auth-wrap { max-width: 480px; margin: 0 auto; width: 100%; padding: 0 16px; }
.ok-auth-card { background: #fff; border-radius: 20px; box-shadow: var(--ok-shadow); padding: 40px 34px; }
.ok-auth-title { font-size: 1.6rem; font-weight: 800; color: var(--ok-navy); margin-bottom: 6px; }
.ok-auth-subtitle { color: var(--ok-text-muted); font-size: 0.9rem; }
.ok-auth-alert {
    background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; padding: 12px 16px; border-radius: 10px;
    display: flex; align-items: flex-start; gap: 10px; font-size: 0.86rem; margin: 16px 0;
}
.ok-auth-group { margin-bottom: 16px; }
.ok-auth-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .ok-auth-row { grid-template-columns: 1fr; } }
.ok-auth-label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--ok-navy); margin-bottom: 6px; }
.ok-auth-input, .ok-auth-select {
    width: 100%; padding: 12px 14px; border-radius: 10px; border: 1.5px solid var(--ok-border-2);
    font-size: 0.92rem; font-family: inherit; color: var(--ok-text); background: #fff; transition: border-color .18s;
}
.ok-auth-input:focus, .ok-auth-select:focus { outline: none; border-color: var(--ok-primary); }
.ok-auth-submit { width: 100%; justify-content: center; margin-top: 6px; border: none; }
.ok-auth-features { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 20px; }
.ok-auth-features span { font-size: 0.8rem; color: var(--ok-text-muted); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.ok-auth-features i { color: var(--ok-success); }
.ok-auth-footer-link { text-align: center; margin-top: 20px; font-size: 0.88rem; color: var(--ok-text-muted); }
.ok-auth-footer-link a { color: var(--ok-primary); font-weight: 700; text-decoration: none; }
.ok-auth-back { color: var(--ok-text-light); text-decoration: none; font-size: 0.86rem; }
.ok-auth-back:hover { color: var(--ok-primary); }
