/* =========================================================================
   İSG Belge — Tasarım sistemi (siyah & sarı)
   Referans paleti: #1a1a1a (siyah) + #f5c518 (sarı), beyaz kartlar.
   El yazımı, self-host. Tailwind/CDN yok.
   ========================================================================= */

:root {
    --yellow: #f5c518;
    --yellow-hover: #e0b010;
    --black: #1a1a1a;
    --black-2: #2a2a2a;
    --black-3: #3a3a3a;
    --green: #2e7d32;

    --text-900: #1a1a1a;
    --text-700: #2d2d2d;
    --text-600: #4a4a4a;
    --text-500: #6a6a6a;
    --text-400: #8a8a8a;

    --bg: #f5f5f5;
    --card: #ffffff;
    --border: #e0e0e0;
    --border-soft: #ececec;

    --radius: 20px;
    --radius-lg: 28px;
    --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.08);
    --shadow-yellow: 0 4px 15px rgba(245, 197, 24, 0.4);

    --container: 1200px;
    --header-h: 72px;

    --font-body: 'Poppins', 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
    --font-display: 'Inter', 'Segoe UI', Roboto, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    /* Taban font-size deepseek referansıyla birebir aynı: tarayıcı varsayılanı (16px). */
    overflow-x: hidden;
    max-width: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-700);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden; /* mobilde istenmeyen yatay kaymayı engelle */
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text { color: var(--yellow); }

main { overflow-x: clip; } /* içerikteki hiçbir öğe sayfayı yatayda genişletemesin */
main.has-solid-header { padding-top: var(--header-h); }

/* Çapa hedefleri fixed header'ın altında kalmasın */
#anasayfa, #mevzuat, #egitimler, #paketler, #sorgula, #sss, #iletisim {
    scroll-margin-top: calc(var(--header-h) + 24px);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 40px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn-accent {
    background: var(--yellow);
    color: var(--black);
}
.btn-accent:hover {
    background: var(--yellow-hover);
    transform: scale(1.02);
    box-shadow: var(--shadow-yellow);
}
.btn-ghost {
    background: transparent;
    color: var(--yellow);
    border: 2px solid var(--yellow);
}
.btn-ghost:hover { background: var(--yellow); color: var(--black); }

/* =========================================================================
   Header — daima siyah, sarı alt çizgi, sticky
   ========================================================================= */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--black);
    border-bottom: 3px solid var(--yellow);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: box-shadow .3s ease;
}
.site-header.is-scrolled { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 20px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-text { display: flex; flex-direction: column; }
.brand-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.3px;
    color: var(--yellow);
    line-height: 1;
}
.brand-logo span { color: #fff; }
.brand-domain { font-size: 0.62rem; font-weight: 300; color: #999; letter-spacing: 1px; margin-top: 3px; }
.brand-img { height: 46px; width: auto; display: block; }
.brand-img--footer { height: 64px; }

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
    margin: 0; padding: 0;
}
.main-nav a {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    color: #e0e0e0;
    transition: color .2s ease;
}
.main-nav a:hover { color: var(--yellow); }
.main-nav a.active { color: var(--yellow); font-weight: 700; }

.header-cta {
    background: transparent;
    color: var(--yellow);
    border: 2px solid var(--yellow);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all .2s ease;
}
.header-cta:hover { background: var(--yellow); color: var(--black); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 24px; height: 2px;
    background: var(--yellow);
    border-radius: 2px;
}

/* =========================================================================
   Decorative blobs (siyah hero üstünde hafif sarı parıltı)
   ========================================================================= */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(8px);
}
.hero-blob--purple { top: -120px; right: -120px; width: 380px; height: 380px; background: rgba(245, 197, 24, 0.12); }
.hero-blob--orange { bottom: -80px; left: -80px; width: 300px; height: 300px; background: rgba(245, 197, 24, 0.07); }

/* =========================================================================
   Home hero (one-page) — siyah zemin, sarı vurgu
   ========================================================================= */
.home-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 90px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    color: #fff;
    text-align: center;
    border-bottom: 4px solid var(--yellow);
}
.home-hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.eyebrow {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--yellow);
    background: rgba(245, 197, 24, 0.12);
    border: 1px solid rgba(245, 197, 24, 0.3);
    margin-bottom: 20px;
}
.home-hero h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.3rem);
    line-height: 1.18;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
    color: #fff;
}
.home-hero h1 .gradient-text { color: var(--yellow); }
.home-hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 32px;
}
.home-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Placeholder sections ---------- */
.section-placeholder {
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.section-placeholder:nth-child(even) { background: #fff; }
.section-eyebrow {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--yellow);
    background: var(--black);
    margin-bottom: 16px;
}
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-900);
    margin: 0 0 12px;
    line-height: 1.2;
    text-align: center;
}
.placeholder-note { color: var(--text-600); font-size: 1.05rem; }

/* =========================================================================
   Page hero (blog list / detail) — siyah, sarı vurgu
   ========================================================================= */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 60px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    color: #fff;
    text-align: center;
    border-bottom: 4px solid var(--yellow);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.page-hero h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin: 0 0 14px;
    color: #fff;
}
.page-hero h1 .gradient-text { color: var(--yellow); }
.page-hero-sub {
    font-size: clamp(1rem, 2vw, 1.12rem);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin: 0 auto 20px;
    max-width: 600px;
}
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.9rem; }
.breadcrumb a { color: rgba(255, 255, 255, 0.6); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb .current { color: var(--yellow); font-weight: 600; }
.breadcrumb .sep { color: rgba(255, 255, 255, 0.35); }

/* =========================================================================
   Blog list
   ========================================================================= */
.blog-list-section { padding: 60px 0 90px; background: var(--bg); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--yellow);
}

.blog-card-media {
    display: block;
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--black);
    border-bottom: 3px solid var(--yellow);
}
.blog-card-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.blog-card:hover .blog-card-media img { transform: scale(1.05); }

.blog-badge {
    position: absolute;
    top: 16px; left: 16px;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black);
    background: var(--yellow);
}

.blog-card-body { padding: 24px 22px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; gap: 16px; margin-bottom: 10px; }
.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-500);
}
.meta-ico { width: 14px; height: 14px; color: var(--yellow); }

.blog-card-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-900);
    margin: 0 0 10px;
    transition: color .2s ease;
}
.blog-card:hover .blog-card-title { color: var(--yellow); }

.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-600);
    line-height: 1.6;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.read-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--yellow);
    text-decoration: none;
    transition: gap .25s ease;
}
.read-more svg { transition: transform .25s ease; }
.blog-card:hover .read-more { gap: 12px; }

/* Sayfalama */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
    flex-wrap: wrap;
}
.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 12px;
    border: 2px solid var(--border);
    background: #fff;
    color: var(--text-700);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all .2s ease;
}
.page-link:hover { border-color: var(--yellow); color: var(--black); }
.page-link.is-active {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--black);
}
.page-arrow { padding: 0 10px; }

/* =========================================================================
   Blog detail
   ========================================================================= */
.blog-detail { background: var(--bg); }
.blog-detail-top,
.blog-detail-header,
.blog-detail-meta,
.blog-detail-image,
.blog-detail-content,
.blog-detail-footer {
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.blog-detail-top { padding-top: 40px; }
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 30px;
    background: var(--yellow);
    transition: all .3s ease;
}
.back-link:hover { background: var(--yellow-hover); transform: translateX(-4px); }
.back-link svg { transition: transform .3s ease; }
.back-link:hover svg { transform: translateX(-2px); }

.blog-detail-header { padding-top: 30px; padding-bottom: 10px; text-align: center; }
.blog-badge--inline { position: static; display: inline-block; margin-bottom: 18px; }
.blog-detail-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 22px;
    background: linear-gradient(135deg, #f5c518 0%, #e0890e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.blog-detail-summary {
    font-size: 1.15rem;
    color: var(--text-600);
    line-height: 1.6;
    font-style: italic;
    background: #fff;
    border: 1px solid var(--border);
    border-left: 5px solid var(--yellow);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 0;
}

.blog-detail-meta { display: flex; justify-content: center; gap: 16px; margin: 28px auto 36px; }
.blog-date-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-500);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 8px 16px;
}
.blog-date-chip svg { color: var(--yellow); }

.blog-detail-image { margin-bottom: 40px; }
.blog-detail-image-inner {
    width: 100%;
    height: 360px;
    background-size: cover;
    background-position: center;
    background-color: var(--black);
    border-radius: var(--radius);
    border: 2px solid var(--yellow);
}

.blog-detail-content { padding-bottom: 50px; }

/* CMS tam-döküman içeriği: izole iframe, tam genişlik, otomatik yükseklik */
.blog-detail--embed { padding-bottom: 0; }
.cms-backbar {
    background: var(--black);
    border-bottom: 1px solid var(--black-3);
    padding: 14px 0;
}
.cms-backbar .container { display: flex; }
.cms-embed { width: 100%; }
.cms-frame {
    width: 100%;
    border: 0;
    display: block;
    min-height: 70vh;
    background: #fff;
    overflow: hidden;
}

/* Article typography (fragment içerik) */
.blog-article {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-700);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.blog-article h1, .blog-article h2, .blog-article h3, .blog-article h4 {
    color: var(--text-900);
    font-weight: 700;
    line-height: 1.3;
    margin: 28px 0 14px;
}
.blog-article h1 { font-size: 2rem; }
.blog-article h2 {
    font-size: 1.6rem;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--yellow);
}
.blog-article h3 { font-size: 1.3rem; }
.blog-article h4 { font-size: 1.15rem; }
.blog-article p { margin: 16px 0; }
.blog-article a {
    color: var(--text-900);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--yellow);
    transition: color .2s ease;
}
.blog-article a:hover { color: var(--yellow-hover); }
.blog-article ul, .blog-article ol { margin: 16px 0; padding-left: 24px; }
.blog-article li { margin: 8px 0; }
.blog-article img { margin: 28px 0; border-radius: var(--radius); }
.blog-article blockquote {
    margin: 24px 0;
    padding: 18px 24px;
    border-left: 6px solid var(--yellow);
    background: var(--black);
    color: #e0e0e0;
    border-radius: 0 16px 16px 0;
    font-style: italic;
}
.blog-article strong { color: var(--text-900); }

/* Detail footer: share + back to top (ortalı, marka renkli pill butonlar) */
.blog-detail-footer {
    padding-top: 40px;
    padding-bottom: 70px;
    margin-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}
.share-section { width: 100%; text-align: center; }
.share-title { font-size: 1.4rem; font-weight: 800; color: var(--text-900); margin: 0 0 22px; }
.share-buttons { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    border: none;
    background: var(--c, var(--black));
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.share-btn svg { fill: currentColor; }
.share-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.06);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 999px;
    border: none;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(245, 197, 24, 0.35);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.back-to-top:hover { transform: translateY(-3px); background: var(--yellow-hover); color: var(--black); box-shadow: 0 12px 28px rgba(245, 197, 24, 0.5); }

/* =========================================================================
   404
   ========================================================================= */
.error-page {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: grid;
    place-items: center;
    text-align: center;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    color: #fff;
    border-bottom: 4px solid var(--yellow);
}
.error-inner { position: relative; z-index: 1; }
.error-code {
    font-family: var(--font-display);
    font-size: clamp(4rem, 14vw, 8rem);
    font-weight: 900;
    line-height: 1;
    color: var(--yellow);
}
.error-page h1 { font-size: 1.8rem; margin: 8px 0 12px; color: #fff; }
.error-page p { color: rgba(255, 255, 255, 0.78); margin: 0 0 28px; }

/* =========================================================================
   Footer — siyah, sarı üst çizgi, yuvarlatılmış üst köşe
   ========================================================================= */
.site-footer {
    background: var(--black);
    color: #b0b0b0;
    padding: 50px 0 25px;
    margin-top: 40px;
    border-radius: 30px 30px 0 0;
    border-top: 4px solid var(--yellow);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col li span { color: #b0b0b0; }
.brand-footer { display: inline-flex; margin-bottom: 16px; }
.footer-desc { line-height: 1.8; margin: 0 0 20px; max-width: 340px; color: #b0b0b0; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
    display: inline-grid;
    place-items: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--black);
    border: 2px solid var(--black-3);
    color: var(--yellow);
    text-decoration: none;
    transition: all .25s ease;
}
.footer-social a:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); transform: translateY(-3px); }

.footer-col h4 { color: var(--yellow); font-size: 1.05rem; font-weight: 700; margin: 0 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { text-decoration: none; color: #b0b0b0; transition: color .25s ease; }
.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: var(--header-h); left: 0; right: 0;
        background: var(--black);
        border-bottom: 3px solid var(--yellow);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
        padding: 12px 0;
        transform: translateY(-130%);
        transition: transform .3s ease;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
    }
    .main-nav.open { transform: translateY(0); }
    .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
    .main-nav a { padding: 14px 24px; }
    .nav-toggle { display: flex; padding: 8px 0 8px 4px; }
    /* "Giriş Yap" mobilde de görünür: marka solda, buton + hamburger sağda */
    .container { padding: 0 16px; }
    .header-inner { gap: 10px; }
    .brand { margin-right: auto; }
    .brand-logo { font-size: 1.2rem; }
    .brand-img { height: 38px; }
    .header-cta { display: inline-flex; padding: 8px 14px; font-size: 0.8rem; }

    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .blog-detail-top, .blog-detail-header, .blog-detail-meta,
    .blog-detail-image, .blog-detail-content, .blog-detail-footer {
        padding-left: 20px; padding-right: 20px;
    }
    .blog-detail-image-inner { height: 240px; }
    .blog-article { padding: 28px 22px; }
    .blog-article h2 { font-size: 1.4rem; }
    .blog-detail-footer { flex-direction: column; align-items: center; }
}

/* =========================================================================
   Ana sayfa bileşenleri (referans: deepseek tasarımı, blog hariç)
   ========================================================================= */

/* Butonlar */
.btn-primary {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: 0.25s;
}
.btn-primary:hover { background: var(--yellow-hover); transform: scale(1.02); box-shadow: var(--shadow-yellow); }
.btn-white { background: var(--black); color: var(--yellow); border: 2px solid var(--yellow); }
.btn-white:hover { background: var(--yellow); color: var(--black); }
.btn-success { background: var(--green); color: #fff; border: none; padding: 12px 28px; border-radius: 40px; font-weight: 700; cursor: pointer; }
.btn-success:hover { background: #1b5e20; transform: scale(1.02); }

/* Rozetler */
.badge { background: var(--black-2); padding: 4px 14px; border-radius: 30px; font-size: 0.75rem; font-weight: 600; color: var(--yellow); display: inline-block; }
.badge-red { background: var(--yellow); color: var(--black); padding: 4px 14px; border-radius: 30px; font-weight: 700; font-size: 0.7rem; text-transform: uppercase; }
.badge-green { background: var(--green); color: #fff; padding: 4px 14px; border-radius: 30px; font-weight: 600; font-size: 0.7rem; text-transform: uppercase; }

/* Hero */
.hero { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; padding: 40px 0 50px; gap: 30px 40px; }
.hero-text { flex: 1 1 460px; min-width: 0; }
/* video + mağaza rozetleri tek kolon; video büyük/yüksek */
.hero-media { flex: 1 1 520px; min-width: 0; display: flex; flex-direction: column; gap: 16px; }
.hero-media .hero-image { flex: 0 0 auto; width: 100%; margin-top: 0; }
.hero-media .store-badges { margin-top: 0; justify-content: center; }
.hero-image { aspect-ratio: 16 / 10; margin-top: 0; }
@media (max-width: 1100px) {
    .hero-text { flex: 1 1 100%; }
    .hero-media { flex: 1 1 100%; }
}

/* Video kapağı (facade) — özel İSG kapağı, YouTube markası yok */
.hero-video-cover {
    position: relative;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(120% 120% at 30% 15%, #2c2c2c 0%, #1a1a1a 60%);
}
.hvc-glow {
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,197,24,0.22), transparent 70%);
    filter: blur(6px);
    pointer-events: none;
}
.hvc-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hvc-shield { width: 56px; height: 56px; color: var(--yellow); }
.hvc-title { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--yellow); letter-spacing: -0.3px; }
.hvc-title span { color: #fff; }
.hvc-sub { color: rgba(255,255,255,0.65); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; }
.hvc-play {
    position: absolute;
    z-index: 2;
    bottom: 18px; right: 18px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--black);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    transition: transform .2s ease;
}
.hvc-play svg { width: 24px; height: 24px; margin-left: 3px; }
.hero-video-cover:hover .hvc-play { transform: scale(1.1); }
.hero-video-cover:hover .hvc-glow { background: radial-gradient(circle, rgba(245,197,24,0.32), transparent 70%); }
.hero-text { flex: 1 1 450px; }
.hero-text h1 { font-size: 2.7rem; font-weight: 800; line-height: 1.2; margin: 16px 0 18px; color: var(--text-900); font-family: var(--font-display); }
.hero-tag { background: var(--black); display: inline-block; padding: 6px 18px; border-radius: 40px; font-size: 0.8rem; font-weight: 600; color: var(--yellow); margin-bottom: 12px; }
.hero-text > p { font-size: 1rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 28px; margin: 24px 0; }
.stat-item { display: flex; flex-direction: column; }
.stat-number { font-size: 1.8rem; font-weight: 700; color: var(--text-900); }
.stat-label { color: var(--text-600); font-size: 0.9rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }
.hero-actions .btn-primary { padding: 11px 22px; font-size: 0.9rem; white-space: nowrap; }
.hero-image {
    flex: 1 1 520px;
    aspect-ratio: 16 / 10;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border: 2px solid var(--yellow);
}
.hero-video { width: 100%; height: 100%; border: 0; display: block; }

/* Bölüm alt başlığı */
.section-sub { color: var(--text-600); margin-bottom: 30px; }

/* Modül kartları */
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 24px; margin: 30px 0; justify-content: center; }
.module-card { background: #fff; padding: 24px 18px; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: 0.25s; }
.module-card:hover { border-color: var(--yellow); box-shadow: 0 10px 28px rgba(245,197,24,0.15); transform: translateY(-4px); }
.module-card .m-icon { font-size: 1.6rem; color: var(--yellow); margin-bottom: 12px; }
.module-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-900); }
.module-card .meta { font-size: 0.85rem; color: var(--text-600); margin: 6px 0; }
.module-card .desc { font-size: 0.9rem; color: var(--text-700); margin: 12px 0; line-height: 1.4; }
.module-card .link { color: var(--yellow); font-weight: 700; font-size: 0.9rem; text-decoration: none; }
.module-card .link:hover { text-decoration: underline; }

/* 4 adım */
.flow-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 25px 0 40px; }
.flow-step { background: #fff; padding: 24px 16px; border-radius: var(--radius); border: 1px solid var(--border); text-align: center; transition: 0.25s; }
.flow-step:hover { border-color: var(--yellow); box-shadow: 0 8px 20px rgba(245,197,24,0.1); }
.flow-step .step-num { background: var(--yellow); color: var(--black); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 40px; font-weight: 700; margin: 0 auto 12px; }
.flow-step h4 { color: var(--text-900); margin-bottom: 8px; }

/* Fiyat kutuları */
.price-box { background: #fff; border-radius: 24px; padding: 30px 24px; border: 2px solid var(--border); display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; margin: 20px 0; transition: 0.25s; }
.price-box:hover { border-color: var(--yellow); box-shadow: 0 8px 24px rgba(245,197,24,0.12); }
.price-box .price { font-size: 2rem; font-weight: 700; color: var(--text-900); }
.price-box .price small { font-size: 1rem; font-weight: 400; color: var(--text-600); }
.price-box h4 { color: var(--text-900); }

/* Referanslar / yorumlar */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin: 30px 0; }
.testimonial { background: #fff; padding: 22px 20px; border-radius: var(--radius); border: 1px solid var(--border); transition: 0.25s; }
.testimonial:hover { border-color: var(--yellow); }
.testimonial .stars { color: var(--yellow); letter-spacing: 2px; }
.testimonial p { margin: 12px 0; font-style: italic; color: #1f1f1f; }
.testimonial .author { font-weight: 600; color: var(--text-900); }

/* SSS */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin: 20px 0 30px; }
.faq-item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] { border-color: var(--yellow); box-shadow: 0 6px 18px rgba(245, 197, 24, 0.1); }
.faq-q {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    font-weight: 700;
    color: var(--text-900);
    font-size: 1rem;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { background: #fffdf3; }
.faq-num {
    flex: none;
    width: 30px; height: 30px;
    border-radius: 8px;
    background: var(--black);
    color: var(--yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
}
.faq-q-text { flex: 1; line-height: 1.4; }
.faq-chevron { flex: none; color: var(--text-500); transition: transform .25s ease; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: var(--yellow); }
.faq-a {
    padding: 0 22px 20px 66px;
    color: var(--text-700);
    line-height: 1.65;
    font-size: 0.95rem;
}
@media (max-width: 600px) { .faq-a { padding-left: 22px; } }

/* Uyarı kutusu */
.warning-box { background: var(--black); padding: 20px 24px; border-radius: 24px; border-left: 6px solid var(--yellow); margin: 20px 0 40px; color: #e0e0e0; }
.warning-box p { color: #e0e0e0; }
.warning-box a { color: var(--yellow); }

/* Sertifika kutusu */
.certificate-box { background: #fff; border-radius: var(--radius-lg); padding: 30px; border: 2px solid var(--border); margin: 30px 0; transition: 0.25s; }
.certificate-box:hover { border-color: var(--yellow); }

/* Hızlı teklif formu */
.quick-form { background: #fff; padding: 32px 30px; border-radius: var(--radius-lg); box-shadow: 0 12px 40px rgba(0,0,0,0.06); margin: 30px 0; border: 2px solid var(--border); transition: border-color .2s ease; }
.quick-form:hover { border-color: var(--yellow); }
.quick-form-head { margin-bottom: 22px; }
.quick-form-head h3 { font-size: 1.3rem; color: var(--text-900); margin: 0 0 4px; }
.quick-form-head p { color: var(--text-600); margin: 0; }
.quick-form-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: end; }
.qf-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.qf-field label { font-weight: 600; color: var(--text-900); font-size: 0.85rem; }
.qf-field input { width: 100%; padding: 12px 16px; border: 2px solid var(--border); border-radius: 12px; font-size: 0.95rem; background: #fafafa; transition: .2s; font-family: inherit; }
.qf-field input:focus { outline: none; border-color: var(--yellow); background: #fff; box-shadow: 0 0 0 4px rgba(245,197,24,0.1); }
.qf-submit { grid-column: 1 / -1; justify-self: start; }

@media (max-width: 860px) { .quick-form-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .quick-form-grid { grid-template-columns: 1fr; } .qf-submit { justify-self: stretch; text-align: center; } }

/* İletişim */
.contact-section { background: #fff; border-radius: var(--radius-lg); padding: 50px 40px; margin: 40px 0; border: 2px solid var(--border); transition: 0.25s; }
.contact-section:hover { border-color: var(--yellow); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 30px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 18px; padding: 16px; border-radius: 16px; transition: 0.2s; border: 1px solid transparent; }
.contact-info-item:hover { background: #fafafa; border-color: var(--yellow); }
.contact-info-item .icon { width: 50px; height: 50px; min-width: 50px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--black); }
.contact-info-item .content { min-width: 0; }
.contact-info-item .content h4 { font-size: 1rem; color: var(--text-900); margin: 0 0 8px; min-height: 50px; display: flex; align-items: center; }
.contact-info-item .content p { color: var(--text-600); font-size: 0.95rem; line-height: 1.5; }
.contact-info-item .content a { color: var(--text-900); text-decoration: none; font-weight: 500; transition: 0.2s; }
.contact-info-item .content a:hover { color: var(--yellow); }
.contact-form-wrapper { background: #f8f8f8; padding: 35px; border-radius: var(--radius); border: 1px solid var(--border); }
.contact-form-wrapper h3 { color: var(--text-900); margin-bottom: 20px; font-size: 1.4rem; }
.contact-form-wrapper .form-group { margin-bottom: 18px; }
.contact-form-wrapper label { display: block; font-weight: 600; color: var(--text-900); margin-bottom: 6px; font-size: 0.9rem; }
.contact-form-wrapper input, .contact-form-wrapper textarea, .contact-form-wrapper select { width: 100%; padding: 12px 16px; border: 2px solid var(--border); border-radius: 12px; font-size: 0.95rem; background: #fff; transition: 0.2s; font-family: inherit; }
.contact-form-wrapper input:focus, .contact-form-wrapper textarea:focus, .contact-form-wrapper select:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(245,197,24,0.1); }
.contact-form-wrapper textarea { min-height: 120px; resize: vertical; }
.contact-form-wrapper .btn-primary { width: 100%; padding: 14px; font-size: 1.05rem; text-align: center; }
.map-placeholder { background: var(--black); border-radius: var(--radius); padding: 40px 20px; text-align: center; color: var(--yellow); border: 2px solid var(--yellow); min-height: 200px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.map-placeholder i { font-size: 3rem; margin-bottom: 12px; }
.map-placeholder p { font-size: 0.95rem; max-width: 300px; }
.social-links { display: flex; gap: 16px; margin-top: 12px; }
.social-links a { width: 44px; height: 44px; border-radius: 50%; background: var(--black); display: flex; align-items: center; justify-content: center; color: var(--yellow); font-size: 1.2rem; transition: 0.25s; text-decoration: none; border: 2px solid var(--black); }
.social-links a:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); transform: translateY(-3px); }

/* Belge sorgulama / doğrulama */
.verify-section { background: #fff; border-radius: var(--radius-lg); padding: 50px 40px; margin: 40px 0; border: 2px solid var(--border); transition: 0.25s; }
.verify-section:hover { border-color: var(--yellow); }
.verify-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 30px; }
.verify-box { background: #fafafa; padding: 30px; border-radius: var(--radius); border: 1px solid var(--border); transition: 0.25s; }
.verify-box:hover { border-color: var(--yellow); }
.verify-box .verify-icon { font-size: 2.5rem; color: var(--yellow); margin-bottom: 16px; }
.verify-box h3 { color: var(--text-900); margin-bottom: 12px; }
.verify-box p { color: var(--text-600); font-size: 0.95rem; line-height: 1.6; margin-bottom: 16px; }
.verify-box .input-group { display: flex; flex-direction: column; gap: 12px; }
.verify-box .input-group input { padding: 12px 16px; border: 2px solid var(--border); border-radius: 12px; font-size: 0.95rem; transition: 0.2s; background: #fff; font-family: inherit; }
.verify-box .input-group input:focus { outline: none; border-color: var(--yellow); }
.verify-box .input-group .btn-primary { width: 100%; text-align: center; }
.verify-result { background: #e8f5e9; padding: 20px; border-radius: 16px; border-left: 4px solid var(--green); margin-top: 16px; }
.verify-result .result-item { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid #c8e6c9; gap: 12px; }
.verify-result .result-item:last-child { border-bottom: none; }
.verify-result .result-item .label { color: var(--text-700); font-weight: 500; }
.verify-result .result-item .value { color: var(--text-900); font-weight: 600; text-align: right; }
.verify-result .status-valid { color: var(--green); font-weight: 700; }
.verify-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 30px; }
.verify-features .feature-item { background: #f8f8f8; padding: 20px; border-radius: 16px; text-align: center; border: 1px solid var(--border); transition: 0.25s; }
.verify-features .feature-item:hover { border-color: var(--yellow); }
.verify-features .feature-item i { font-size: 2rem; color: var(--yellow); margin-bottom: 10px; }
.verify-features .feature-item h4 { color: var(--text-900); margin-bottom: 6px; }
.verify-features .feature-item p { color: var(--text-600); font-size: 0.85rem; }

/* Güvenlik bölümü (koyu) */
.security-section { background: var(--black); border-radius: var(--radius-lg); padding: 50px 40px; margin: 40px 0; border: 2px solid var(--yellow); color: #e0e0e0; }
.security-section .section-title { color: var(--yellow); }
.security-section .section-sub { color: #b0b0b0; }
.security-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-top: 30px; }
.security-item { background: var(--black-2); padding: 24px; border-radius: 16px; border: 1px solid var(--black-3); transition: 0.25s; text-align: center; }
.security-item:hover { border-color: var(--yellow); transform: translateY(-4px); }
.security-item i { font-size: 2.5rem; color: var(--yellow); margin-bottom: 14px; }
.security-item h4 { color: var(--yellow); margin-bottom: 8px; }
.security-item p { color: #b0b0b0; font-size: 0.9rem; line-height: 1.6; }
.security-item .badge-green { display: inline-block; margin-top: 10px; }

@media (max-width: 700px) {
    .hero-text h1 { font-size: 2.2rem; }
    .contact-section, .verify-section, .security-section { padding: 30px 20px; }
    .contact-form-wrapper { padding: 25px; }
    .verify-grid { grid-template-columns: 1fr; }
    /* Hero mobilde temiz istif: çocuklar tam genişlik, taşma yok */
    .hero { flex-direction: column; align-items: stretch; }
    .hero-text, .hero-media, .hero-image { flex: 0 0 auto; width: 100%; min-width: 0; }
    .hero-image { height: auto; }
    /* Uzun metin kutuları taşmasın */
    .grid-4, .flow-grid, .testimonial-grid, .security-grid, .verify-features { grid-template-columns: 1fr; }
}

/* =========================================================================
   Mevzuat slider
   ========================================================================= */
.mevzuat { margin: 24px 0 44px; }
.slider { position: relative; margin-top: 18px; max-width: 100%; }
.slider-viewport { overflow: hidden; border-radius: var(--radius-lg); width: 100%; transition: height .35s ease; }
.slider-track { display: flex; align-items: flex-start; transition: transform .45s cubic-bezier(.4,0,.2,1); will-change: transform; }
.slider-slide { flex: 0 0 100%; width: 100%; max-width: 100%; align-self: flex-start; }

.mevzuat-card {
    background: linear-gradient(145deg, #1a1a1a, #232323);
    border-left: 6px solid var(--yellow);
    border-radius: var(--radius-lg);
    padding: 34px 38px;
    min-height: 200px;
    color: #d8d8d8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mevzuat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    background: var(--yellow);
    color: var(--black);
    border-radius: 12px;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 18px;
}
.mevzuat-text { line-height: 1.7; margin: 0 0 12px; font-size: 1.02rem; }
.mevzuat-text:last-child { margin-bottom: 0; }
.mevzuat-text .hl { color: var(--yellow); }
.mevzuat-text .hl-w { color: #fff; }
.mevzuat-text--muted { color: #aeaeae; font-size: 0.95rem; }
.mevzuat-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--yellow);
    font-weight: 700;
    text-decoration: none;
    transition: gap .2s ease;
}
.mevzuat-link:hover { gap: 12px; }

/* kontroller (alt, ortalı): ok + noktalar + ok */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
}
.slider-btn {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--yellow);
    color: var(--black);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    transition: transform .2s ease, background .2s ease;
}
.slider-btn:hover { transform: scale(1.08); background: var(--yellow-hover); }
.slider-dots { display: flex; align-items: center; gap: 8px; }
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: #cfcfcf;
    cursor: pointer;
    padding: 0;
    transition: background .2s ease, width .2s ease;
}
.slider-dot.is-active { background: var(--yellow); width: 28px; }

@media (max-width: 700px) {
    .mevzuat-card { padding: 26px 22px; min-height: 0; }
    .mevzuat-text { font-size: 0.96rem; }
}

/* =========================================================================
   Eğitim içeriği — 2 kart (8 saat / 16 saat), tek satır
   ========================================================================= */
.edu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}
.edu-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px 32px;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.edu-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 10px 28px rgba(245, 197, 24, 0.15);
    transform: translateY(-4px);
}
.edu-card--featured { border-color: var(--yellow); background: #fffdf3; }
.edu-head { border-bottom: 2px solid var(--border); padding-bottom: 18px; margin-bottom: 6px; }
.edu-hours {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--black);
    color: var(--yellow);
    border-radius: 999px;
    padding: 6px 16px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 14px;
}
.edu-head h3 { font-size: 1.55rem; color: var(--text-900); margin: 0 0 6px; font-weight: 800; }
.edu-head p { color: var(--text-600); font-size: 0.95rem; margin: 0; line-height: 1.5; }
.edu-topics { list-style: none; margin: 18px 0 24px; padding: 0; }
.edu-topics li {
    position: relative;
    padding: 11px 0 11px 32px;
    border-bottom: 1px solid var(--border-soft);
    color: var(--text-700);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.45;
}
.edu-topics li:last-child { border-bottom: none; }
.edu-topics li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 900;
}
.edu-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 16px 0 0;
    padding: 12px 16px;
    background: var(--black);
    color: #f3e6b8;
    border-left: 4px solid var(--yellow);
    border-radius: 0 10px 10px 0;
    font-size: 0.88rem;
    line-height: 1.5;
    font-weight: 500;
}
.edu-note i { color: var(--yellow); margin-top: 3px; }
.edu-cta { margin-top: auto; align-self: flex-end; }

/* 2026 mevzuat değişiklikleri — hizalı, bordersız tablo görünümü */
.reg-changes { background: #fefcf5; border: 2px solid var(--yellow); border-radius: 20px; padding: 28px 30px; margin: 20px 0 40px; }
.reg-title { color: var(--text-900); display: flex; align-items: center; gap: 10px; margin: 0 0 22px; font-size: 1.2rem; font-weight: 700; }
.reg-title i { color: var(--yellow); }
.reg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 44px; }
.reg-item { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; }
.reg-check {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
    margin-top: 1px;
}
.reg-content { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.reg-label { font-weight: 700; color: var(--text-900); font-size: 0.95rem; }
.reg-desc { color: var(--text-700); font-size: 0.9rem; line-height: 1.45; }
.reg-madde {
    display: inline-block;
    background: rgba(245, 197, 24, 0.2);
    color: #8a6a00;
    font-weight: 700;
    font-size: 0.72rem;
    padding: 1px 8px;
    border-radius: 6px;
    margin-left: 4px;
    white-space: nowrap;
}
@media (max-width: 760px) {
    .reg-grid { grid-template-columns: 1fr; gap: 16px; }
    .reg-changes { padding: 22px 20px; }
}

@media (max-width: 760px) {
    .edu-grid { grid-template-columns: 1fr; }
    .edu-card { padding: 26px 22px; }
}

/* =========================================================================
   Referans bandı (otomatik kayan marquee — ok yok)
   ========================================================================= */
.ref-band { margin: 44px 0; text-align: center; }
.ref-band-label {
    display: inline-block;
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: 22px;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
    display: inline-flex;
    gap: 56px;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
    white-space: nowrap;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-500);
    letter-spacing: .02em;
}
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* =========================================================================
   Eğitim müfredat detay sayfası
   ========================================================================= */
.course-detail { padding: 50px 0 80px; background: var(--bg); }
.course-stats { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 36px; }
.course-stat { background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 10px 22px; font-size: 0.95rem; color: var(--text-700); }
.course-stat strong { color: var(--text-900); font-size: 1.1rem; }

.lesson-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.lesson { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.lesson[open] { border-color: var(--yellow); box-shadow: 0 6px 18px rgba(245, 197, 24, 0.12); }
.lesson-summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 14px; padding: 18px 22px; }
.lesson-summary::-webkit-details-marker { display: none; }
.lesson-summary:hover { background: #fffdf3; }
.lesson-code { background: var(--black); color: var(--yellow); font-weight: 700; font-size: 0.8rem; padding: 5px 12px; border-radius: 8px; white-space: nowrap; }
.lesson-title { font-weight: 700; color: var(--text-900); flex: 1; line-height: 1.35; }
.lesson-count { color: var(--text-500); font-size: 0.82rem; white-space: nowrap; }
.lesson-chevron { color: var(--text-500); transition: transform .25s ease; flex: none; }
.lesson[open] .lesson-chevron { transform: rotate(180deg); color: var(--yellow); }
.lesson-body { padding: 0 22px 22px; }
.lesson-konu { margin: 0 0 16px; padding: 12px 16px; background: var(--bg); border-left: 4px solid var(--yellow); border-radius: 0 10px 10px 0; color: var(--text-700); font-weight: 600; font-size: 0.92rem; }
.lesson-konu span { color: var(--text-500); font-weight: 500; }
.lesson-topics { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
.lesson-topics li { padding: 9px 0 9px 24px; position: relative; color: var(--text-700); font-size: 0.92rem; border-bottom: 1px solid var(--border-soft); }
.lesson-topics li::before { content: ''; position: absolute; left: 2px; top: 17px; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); }

.course-cta-box { max-width: 900px; margin: 40px auto 0; background: linear-gradient(145deg, #1a1a1a, #232323); border-radius: var(--radius-lg); padding: 34px 38px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; border-left: 6px solid var(--yellow); }
.course-cta-box h3 { color: #fff; margin: 0 0 6px; font-size: 1.3rem; }
.course-cta-box p { color: #b0b0b0; margin: 0; font-size: 0.95rem; }
.course-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 760px) {
    .lesson-topics { grid-template-columns: 1fr; }
    .lesson-summary { flex-wrap: wrap; gap: 10px; }
    .lesson-count { order: 3; }
    .course-cta-box { padding: 26px 22px; }
}

.footer-social a i { font-size: 1.05rem; }

/* Sorgula (verify) — başlık ikon yanında + mobil sonuç kutusu düzeni */
.verify-head { margin-bottom: 12px; }
.verify-head .verify-icon { margin-bottom: 16px; }
.verify-head h3 { margin: 0; }
@media (max-width: 600px) {
    .verify-box { padding: 24px 16px; }
    .verify-head { display: flex; align-items: center; gap: 12px; }
    .verify-head .verify-icon { font-size: 1.7rem; margin-bottom: 0; }
    .verify-head h3 { font-size: 1.1rem; }
    .verify-result { padding: 16px 14px; }
    .verify-result .result-item { flex-direction: column; align-items: flex-start; gap: 2px; }
    .verify-result .result-item .value { text-align: left; }
}

/* =========================================================================
   Öne çıkan özellikler — Sertifika vurgulu
   ========================================================================= */
.features-hl { margin: 50px 0; }
.hl-feature {
    background: linear-gradient(135deg, var(--yellow) 0%, #ffd84d 100%);
    color: var(--black);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 34px;
    align-items: center;
    margin: 30px 0 24px;
    box-shadow: 0 16px 44px rgba(245, 197, 24, 0.35);
}
.hl-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--black); color: var(--yellow); padding: 6px 14px; border-radius: 999px; font-size: 0.76rem; font-weight: 700; margin-bottom: 16px; }
.hl-feature-icon { font-size: 2.4rem; color: var(--black); margin-bottom: 12px; }
.hl-feature h3 { font-size: 1.8rem; margin: 0 0 10px; color: var(--black); font-weight: 800; }
.hl-feature-main p { color: #2d2d2d; font-size: 1rem; line-height: 1.6; margin: 0; }
.hl-feature-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.hl-feature-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--black); background: rgba(0, 0, 0, 0.07); padding: 13px 16px; border-radius: 12px; font-size: 0.95rem; }
.hl-feature-list li i { color: var(--black); width: 20px; text-align: center; }

.hl-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hl-card { background: linear-gradient(145deg, #1a1a1a, #232323); color: #e0e0e0; border-radius: var(--radius); padding: 30px 26px; border: 1px solid var(--black-3); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.hl-card:hover { border-color: var(--yellow); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); }
.hl-icon { font-size: 2rem; color: var(--yellow); margin-bottom: 14px; }
.hl-card h3 { color: #fff; font-size: 1.2rem; margin: 0 0 8px; }
.hl-card p { color: #b0b0b0; font-size: 0.92rem; line-height: 1.6; margin: 0; }

@media (max-width: 860px) {
    .hl-feature { grid-template-columns: 1fr; padding: 28px 22px; }
    .hl-row { grid-template-columns: 1fr; }
}

/* Uygulama mağaza rozetleri */
.store-badges { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 18px; }
.store-badges a { line-height: 0; }
.store-badges img { height: 52px; width: auto; display: block; }
@media (max-width: 480px) { .store-badges img { height: 46px; } }

/* İletişim formu durum mesajı */
.form-status { margin: 14px 0 0; padding: 12px 16px; border-radius: 12px; font-size: 0.9rem; font-weight: 600; }
.form-status.is-ok { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.form-status.is-err { background: #fdecea; color: #c0392b; border: 1px solid #f5c6cb; }

.qf-status { grid-column: 1 / -1; margin-top: 0; }
