/* ============================================================
   AJANS SİTESİ — ANA STİL DOSYASI
   Dark Premium Theme | Mobile First | Modern & Minimal
   ============================================================ */

/* ---- CSS Variables ---- */

/* Font fallback — CLS önleme (Inter yüklenene kadar system font kullan, metrik uyumu) */
@font-face {
    font-family: 'Inter Fallback';
    src: local('Arial');
    ascent-override: 90.49%;
    descent-override: 22.56%;
    line-gap-override: 0%;
    size-adjust: 107.06%;
}

:root {
    /* Renkler — Dark Tema */
    --bg-primary:     #0a0a0f;
    --bg-secondary:   #111118;
    --bg-card:        #16161f;
    --bg-card-hover:  #1c1c28;
    --bg-elevated:    #1e1e2a;

    --border-color:   #2a2a3a;
    --border-light:   #1f1f2e;

    --text-primary:   #f0f0f5;
    --text-secondary: #a0a0b8;
    --text-muted:     #6b6b80;

    /* Accent — İndigo/Mor Gradient */
    --accent:         #6366f1;
    --accent-light:   #818cf8;
    --accent-dark:    #4f46e5;
    --accent-glow:    rgba(99, 102, 241, 0.15);
    --gradient:       linear-gradient(135deg, #6366f1, #8b5cf6);
    --gradient-text:  linear-gradient(135deg, #818cf8, #a78bfa);

    /* Fonksiyonel */
    --success:        #22c55e;
    --warning:        #eab308;
    --danger:         #ef4444;
    --info:           #3b82f6;

    /* Tipografi */
    --font-family:    'Inter', 'Inter Fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono:      'JetBrains Mono', 'Fira Code', monospace;

    /* Boyutlar */
    --header-height:  72px;
    --container-max:  1200px;
    --radius-sm:      6px;
    --radius-md:      10px;
    --radius-lg:      16px;
    --radius-xl:      24px;

    /* Gölge */
    --shadow-sm:      0 1px 2px rgba(0,0,0,0.3);
    --shadow-md:      0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg:      0 8px 32px rgba(0,0,0,0.5);
    --shadow-glow:    0 0 40px rgba(99,102,241,0.1);

    /* Geçiş */
    --transition:     0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main { flex: 1; }

a {
    color: var(--accent-light);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--text-primary); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

/* ---- Layout ---- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container { padding: 0 32px; }
}

.section {
    padding: 80px 0;
}

@media (min-width: 768px) {
    .section { padding: 100px 0; }
}

.section-alt { background: var(--bg-secondary); }

/* ---- Text Gradient ---- */
.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-sm  { padding: 10px 20px; font-size: 0.85rem; }
.btn-md  { padding: 12px 28px; }
.btn-lg  { padding: 14px 32px; font-size: 1rem; }

.btn:focus-visible { outline: 2px solid var(--accent-light); outline-offset: 2px; }

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 2px 12px rgba(99,102,241,0.3);
}
.btn-primary:hover {
    color: #fff;
    box-shadow: 0 4px 20px rgba(99,102,241,0.5);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent-light);
    background: var(--accent-glow);
}

.btn-white {
    background: #fff;
    color: var(--bg-primary);
}
.btn-white:hover {
    color: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
    color: #fff;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transition: background var(--transition);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 700;
}
.logo:hover { color: var(--text-primary); }
.logo-text { letter-spacing: -0.02em; }

/* Logo Components */
.logo-monogram {
    width: 32px; height: 32px; border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary, #8b5cf6));
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.82rem; flex-shrink: 0;
}
.logo-wordmark { display: flex; flex-direction: column; line-height: 1.2; }
.logo-subtext { font-size: 0.62rem; font-weight: 400; color: var(--text-muted); letter-spacing: 0.04em; }
.logo-img { height: 36px; width: auto; object-fit: contain; }
.footer-logo .logo-monogram { width: 28px; height: 28px; font-size: 0.72rem; }
.footer-logo .logo-img { height: 28px; }

/* Nav Links */
.nav-menu {
    display: none;
    gap: 4px;
}

@media (min-width: 992px) {
    .nav-menu {
        display: flex;
        align-items: center;
    }
}

.nav-link {
    display: block;
    padding: 8px 16px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(255,255,255,0.04);
}
.nav-link.active {
    color: var(--accent-light);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 0;
}

@media (min-width: 992px) {
    .mobile-toggle { display: none; }
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 18px;
}
.hamburger span {
    display: block;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MOBILE MENU — Full-screen Klasik Dikey Liste ===== */
.mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-menu.is-open {
    display: flex;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    flex-shrink: 0;
}
.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
}
.mobile-menu-close {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.15s;
}
.mobile-menu-close:active {
    border-color: var(--text-secondary);
}

.mobile-menu-nav {
    flex: 1;
    padding: 12px 0;
    overflow-y: auto;
}
.mobile-menu-item {
    display: block;
    padding: 16px 24px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid var(--border-light);
    transition: color 0.15s;
}
.mobile-menu-item:last-child {
    border-bottom: none;
}
.mobile-menu-item.is-active {
    color: var(--accent-light, #a78bfa);
    font-weight: 600;
}

.mobile-menu-footer {
    flex-shrink: 0;
    padding: 16px 20px;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mobile-menu-cta {
    display: block;
    text-align: center;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.15s;
    color: var(--text-primary);
}
.mobile-menu-cta:hover { color: var(--text-primary); }
.mobile-menu-cta:active { opacity: 0.85; }
.mobile-menu-cta-primary {
    background: var(--gradient);
    color: #fff;
}
.mobile-menu-cta-primary:hover { color: #fff; }
.mobile-menu-cta-secondary {
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    background: transparent;
}
.mobile-menu-cta-secondary:hover { color: var(--text-secondary); }

/* 992px+ → mobil menü hiç görünmez */
@media (min-width: 992px) {
    .mobile-menu { display: none !important; }
}

/* Mobile Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9998;
}
.menu-overlay.active {
    display: block;
}

/* Body scroll lock */
body.menu-open {
    overflow: hidden;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero {
        padding-top: calc(var(--header-height) + 80px);
        padding-bottom: 60px;
    }
    .hero .container {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-glow);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-light);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}
@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Hero Visual */
/* ── Hero Visual: Kod Editörü ── */
.hero-visual {
    display: none;
    position: relative;
}

@media (min-width: 992px) {
    .hero-visual { display: block; }
}

.hero-editor {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 80px rgba(99,102,241,0.06);
}
.editor-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
}
.editor-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
}
.editor-dot.r { background: #ef4444; }
.editor-dot.y { background: #eab308; }
.editor-dot.g { background: #22c55e; }
.editor-tab {
    margin-left: 16px;
    font-size: 0.75rem;
    color: var(--accent-light);
    background: var(--accent-glow);
    padding: 4px 14px;
    border-radius: 6px;
}
.editor-body {
    padding: 24px;
    font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
    font-size: 0.82rem;
    line-height: 1.9;
}
.editor-body .line { display: flex; gap: 16px; }
.editor-body .ln { color: #3a3a50; user-select: none; min-width: 24px; text-align: right; }
.editor-body .kw { color: #c084fc; }
.editor-body .fn { color: #60a5fa; }
.editor-body .str { color: #34d399; }
.editor-body .op { color: var(--text-primary); }
.editor-body .num { color: #f59e0b; }

.editor-body .line {
    opacity: 0;
    animation: editorTypeIn 0.4s ease forwards;
}
.editor-body .line:nth-child(1)  { animation-delay: 0.1s; }
.editor-body .line:nth-child(2)  { animation-delay: 0.25s; }
.editor-body .line:nth-child(3)  { animation-delay: 0.4s; }
.editor-body .line:nth-child(4)  { animation-delay: 0.55s; }
.editor-body .line:nth-child(5)  { animation-delay: 0.7s; }
.editor-body .line:nth-child(6)  { animation-delay: 0.85s; }
.editor-body .line:nth-child(7)  { animation-delay: 1.0s; }
.editor-body .line:nth-child(8)  { animation-delay: 1.15s; }
.editor-body .line:nth-child(9)  { animation-delay: 1.3s; }
.editor-body .line:nth-child(10) { animation-delay: 1.45s; }
.editor-body .line:nth-child(11) { animation-delay: 1.6s; }

@keyframes editorTypeIn {
    from { opacity: 0; transform: translateX(-8px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   STATS BAR — Kartlı Yapı
   ============================================================ */
.stats-bar {
    padding: 56px 0;
    background: var(--bg-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .stats-bar { padding: 72px 0; }
    .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

.stat-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px 20px 24px;
    text-align: center;
    transition: border-color var(--transition), box-shadow var(--transition);
    overflow: hidden;
}

.stat-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

/* Üst accent çizgi */
.stat-accent {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gradient);
    border-radius: 0 0 2px 2px;
    opacity: 0.6;
    transition: width var(--transition), opacity var(--transition);
}

.stat-card:hover .stat-accent {
    width: 60px;
    opacity: 1;
}

.stat-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.stat-suffix {
    font-size: 0.6em;
    font-weight: 600;
    opacity: 0.7;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    padding: 5px 14px;
    background: var(--accent-glow);
    border: 1px solid rgba(99,102,241,0.15);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    color: var(--text-primary);
}
.service-card--has-cover {
    padding: 0;
    overflow: hidden;
}
.service-card--has-cover .service-card-body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.service-card:hover {
    color: var(--text-primary);
    border-color: var(--accent);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: var(--accent-light);
}

.service-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-light);
    transition: color var(--transition);
}
.service-card:hover .service-link { color: var(--text-primary); }

/* ── Service Card Cover Image ── */
.service-card-cover {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bg-primary);
}
.service-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.service-card:hover .service-card-cover img {
    transform: scale(1.04);
}
.service-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(139,92,246,0.08));
}
.service-card-placeholder span {
    font-size: 2rem;
    opacity: 0.35;
}

/* ============================================================
   PRICING CARDS — Vurgulu Orta Kart
   ============================================================ */
.section-pricing {
    padding: 80px 0;
}
@media (min-width: 768px) {
    .section-pricing { padding: 100px 0; }
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
}

@media (min-width: 640px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

/* Vurgulu kart */
.pricing-card--featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.pricing-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gradient);
    border-radius: 0 0 2px 2px;
}

/* Popüler badge */
.pricing-badge {
    position: absolute;
    top: -11px;
    right: 20px;
    padding: 4px 12px;
    background: var(--gradient);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 100px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* Seçili paket highlight */
.pricing-card--selected {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.25), var(--shadow-glow);
    animation: pricingPulse 1.8s ease-out;
}
@keyframes pricingPulse {
    0%   { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.5); }
    40%  { box-shadow: 0 0 0 12px rgba(99, 102, 241, 0); }
    100% { box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.25), var(--shadow-glow); }
}

.pricing-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pricing-card-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.pricing-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.pricing-amount .pricing-currency {
    font-size: 0.5em;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 2px;
}

.pricing-amount-label {
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 6px 0;
    line-height: 1.4;
}

.pricing-features li::before {
    content: '';
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    border-radius: 50%;
    background: var(--accent-glow);
    border: 1px solid rgba(99,102,241,0.2);
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23818cf8' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* ============================================================
   SCRIPT CARDS
   ============================================================ */
/* ── Scripts: Klasik Ürün Kartları ── */
.scripts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 640px) {
    .scripts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .scripts-grid { grid-template-columns: repeat(3, 1fr); }
}

.script-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition), transform var(--transition);
}
.script-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
}

.script-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}
.script-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.script-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,15,0.15) 0%, transparent 30%, transparent 70%, rgba(10,10,15,0.2) 100%);
    pointer-events: none;
    z-index: 1;
}
.script-card:hover .script-image img {
    transform: scale(1.03);
}

.script-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--bg-secondary);
    color: var(--text-muted);
    font-size: 2rem;
    opacity: 0.5;
}

.script-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    z-index: 2;
}

.script-body {
    padding: 24px 24px 0;
    flex: 1;
}

.script-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.script-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.script-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tech-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.15);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent-light);
}

.script-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 24px 24px;
    margin-top: auto;
}

.script-price {
    display: flex;
    flex-direction: column;
}
.script-old-price {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: line-through;
}
.script-current-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.section-process {
    background: var(--bg-secondary);
}

/* ── Process: Minimal Timeline ── */
.process-timeline {
    position: relative;
}
.process-line {
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}
.process-step {
    position: relative;
    padding-top: 36px;
}
.process-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--accent);
    transition: background var(--transition);
}
.process-step:hover .process-dot {
    background: var(--accent);
}
.process-num {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.process-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.process-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-line { display: none; }
    .process-dot { display: none; }
    .process-step { padding-top: 0; }
}
@media (max-width: 639px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 0;
        padding-left: 40px;
    }
    .process-line {
        display: block;
        top: 0;
        left: 8px;
        right: auto;
        width: 1px;
        height: 100%;
    }
    .process-dot {
        display: block;
        left: -40px;
        top: 4px;
    }
    .process-step {
        padding-top: 0;
        padding-bottom: 36px;
    }
    .process-step:last-child { padding-bottom: 0; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
/* ── Testimonials: Kart + Görsel ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 640px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition), transform var(--transition);
}
.testimonial-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
}

.testimonial-image {
    aspect-ratio: 5/3;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}
.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-body {
    padding: 24px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 1px;
}

/* ============================================================
   FAQ
   ============================================================ */
.section-faq {
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item:hover,
.faq-item.active {
    border-color: var(--border-color);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    gap: 16px;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform var(--transition);
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 24px 18px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ============================================================
   CTA BANNER — Çerçeveli Signature
   ============================================================ */
.cta-section {
    padding: 0 0 100px;
}

.cta-banner {
    position: relative;
    padding: 64px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    text-align: center;
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

@media (min-width: 768px) {
    .cta-banner { padding: 80px 56px; }
}

/* Üst gradient signature çizgi */
.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: var(--gradient);
    border-radius: 0 0 2px 2px;
}

/* Subtle glow */
.cta-banner::after {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(99,102,241,0.06), transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.cta-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.cta-trust {
    margin-top: 24px;
    font-size: 0.76rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* ============================================================
   ACCOUNT NAV
   ============================================================ */
.account-nav {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.account-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    transition: all 0.2s;
    white-space: nowrap;
}
.account-nav-link:hover {
    color: var(--text-primary);
    border-color: var(--text-muted);
}
.account-nav-link.is-active {
    background: var(--accent, #6366f1);
    color: #fff;
    border-color: transparent;
}
.account-nav-link.is-active:hover {
    color: #fff;
}

@media (max-width: 600px) {
    .account-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
    }
    .account-nav::-webkit-scrollbar {
        display: none;
    }
    .account-nav-link {
        padding: 8px 14px;
        font-size: 0.78rem;
        flex-shrink: 0;
    }
}

/* ============================================================
   ACCOUNT PROFILE — Mobile Responsive
   ============================================================ */
@media (max-width: 480px) {
    section[style*="padding:80px"] {
        padding: 60px 0 40px !important;
    }
    div[style*="padding:24px"] {
        padding: 16px !important;
    }
    .container[style*="max-width:800px"] {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 14px;
}
.footer-logo:hover { color: var(--text-primary); }

.footer-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 8px;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    transition: all var(--transition);
}
.footer-social a:hover {
    color: var(--accent-light);
    border-color: var(--accent);
    background: var(--accent-glow);
}

.footer-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent-light); }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}
.footer-contact svg {
    flex-shrink: 0;
    color: var(--text-muted);
    margin-top: 2px;
}
.footer-contact a {
    color: var(--text-secondary);
}
.footer-contact a:hover { color: var(--accent-light); }

.footer-cta-links {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.btn-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all var(--transition);
}
.btn-footer-cta:hover {
    border-color: var(--accent);
    color: var(--accent-light);
    background: var(--accent-glow);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 20px;
}
.footer-legal a {
    font-size: 0.82rem;
    color: var(--text-muted);
}
.footer-legal a:hover { color: var(--text-secondary); }

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all var(--transition);
}
.whatsapp-fab:hover {
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* ============================================================
   UTILITY / SHARED STYLES
   ============================================================ */

/* Placeholder pages */
.page-placeholder {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--header-height) + 60px) 20px 80px;
}

/* 404 Page */
.error-page {
    text-align: center;
    padding: calc(var(--header-height) + 100px) 20px 100px;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-code {
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.error-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.error-desc {
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 420px;
}

/* Contact page */
.contact-section {
    padding: calc(var(--header-height) + 60px) 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 0.9rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Flash Messages */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.alert-success {
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.2);
    color: var(--success);
}

.alert-error {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.2);
    color: var(--danger);
}

/* Page title (inner pages — no hero, no breadcrumb) */
.page-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.page-intro {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin-bottom: 32px;
}

/* Inner pages: first section needs header offset */
main > .section:first-child,
main > .section-pricing:first-child {
    padding-top: calc(var(--header-height) + 48px);
}

/* ============================================================
   SCROLL ANIMATIONS (optional, lightweight)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .script-card,
    .testimonial-card,
    .process-step,
    .faq-item {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeUp 0.5s ease forwards;
    }

    @keyframes fadeUp {
        to { opacity: 1; transform: translateY(0); }
    }

    .services-grid > :nth-child(1) { animation-delay: 0.05s; }
    .services-grid > :nth-child(2) { animation-delay: 0.1s; }
    .services-grid > :nth-child(3) { animation-delay: 0.15s; }
    .services-grid > :nth-child(4) { animation-delay: 0.2s; }
    .services-grid > :nth-child(5) { animation-delay: 0.25s; }
    .services-grid > :nth-child(6) { animation-delay: 0.3s; }

    .scripts-grid > :nth-child(1) { animation-delay: 0.05s; }
    .scripts-grid > :nth-child(2) { animation-delay: 0.1s; }
    .scripts-grid > :nth-child(3) { animation-delay: 0.15s; }

    .process-steps > :nth-child(1) { animation-delay: 0.05s; }
    .process-steps > :nth-child(2) { animation-delay: 0.15s; }
    .process-steps > :nth-child(3) { animation-delay: 0.25s; }
    .process-steps > :nth-child(4) { animation-delay: 0.35s; }
}

/* ============================================================
   DYNAMIC PAGE STYLES — Blog, References, Detail Pages
   ============================================================ */

/* ---- Blog Grid ---- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.blog-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(99,102,241,0.15);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body { padding: 20px; }

.blog-card-meta {
    display: flex;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.blog-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---- References Grid ---- */
.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.reference-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s;
}
.reference-card:hover {
    transform: translateY(-2px);
    border-color: rgba(99,102,241,0.3);
}

.reference-image {
    height: 220px;
    overflow: hidden;
}
.reference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reference-body { padding: 24px; }
.reference-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

/* ---- Scripts Grid ---- */
/* ---- Content Body / Prose ---- */
.content-body {
    min-width: 0;
}
/* ---- Form Styles (contact) ---- */
.contact-form .form-row { display: grid; gap: 16px; margin-bottom: 16px; }
.contact-form .form-row-2 { grid-template-columns: 1fr 1fr; }
.contact-form .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.2s;
}
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}
.contact-form .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Alert boxes */
.alert {
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}
.alert-success {
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.2);
    color: var(--success);
}
.alert-error {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.2);
    color: var(--danger);
}

/* ---- Responsive overrides ---- */
@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .references-grid { grid-template-columns: 1fr; }
    .scripts-grid { grid-template-columns: 1fr; }
    .contact-form .form-row-2 { grid-template-columns: 1fr; }

    /* Detail page grids → stack */
    .section > .container > div[style*="grid-template-columns: 1fr 3"],
    .section > .container > div[style*="grid-template-columns: 1fr 340px"],
    .section > .container > div[style*="grid-template-columns: 1fr 320px"],
    .section > .container > div[style*="grid-template-columns: 1fr 300px"],
    .section > .container > div[style*="grid-template-columns: 1fr 380px"] {
        display: block !important;
    }
    .section > .container > div > aside {
        margin-top: 32px;
    }
}

/* ============================================================
   CONTENT LAYOUT (Detail pages with sidebar)
   ============================================================ */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

@media (max-width: 992px) {
    .content-layout { grid-template-columns: 1fr; }
}

.content-main { min-width: 0; }

.content-image {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    margin-bottom: 28px;
}

.content-sidebar { position: sticky; top: 100px; }

.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
}

.sidebar-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.sidebar-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.sidebar-price {
    text-align: center;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-old-price {
    display: block;
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.sidebar-current-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
}

.sidebar-meta {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.88rem;
}

.sidebar-meta-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.sidebar-list {
    list-style: none;
    padding: 0;
}

.sidebar-list li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sidebar-list li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.sidebar-list li a:hover { color: var(--accent); }

/* Prose (HTML content) */
.prose {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 72ch;
}

.prose > :first-child { margin-top: 0; }

.prose h2 { font-size: 1.5rem; font-weight: 700; margin: 32px 0 12px; color: var(--text-primary); }
.prose h3 { font-size: 1.2rem; font-weight: 700; margin: 24px 0 8px; color: var(--text-primary); }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 16px 0; padding-left: 24px; }
.prose li { margin-bottom: 8px; }
.prose img { max-width: 100%; border-radius: var(--radius-lg); margin: 16px 0; }
.prose blockquote { border-left: 3px solid var(--accent); padding: 12px 20px; margin: 16px 0; background: rgba(99,102,241,0.05); border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.prose code { background: rgba(255,255,255,0.06); padding: 2px 6px; border-radius: 4px; font-family: var(--font-mono); font-size: 0.88em; }
.prose pre { background: var(--bg-secondary); padding: 16px 20px; border-radius: var(--radius-md); overflow-x: auto; margin: 16px 0; }
.prose a { color: var(--accent); text-decoration: underline; }

/* ============================================================
   SCRIPT DETAIL — Ürün Sayfası Bileşenleri (sd-*)
   ============================================================ */

/* Hero highlights */
.sd-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    justify-content: center;
}

.sd-highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: var(--accent-glow);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 20px;
    font-size: 0.82rem;
    color: var(--accent-light);
}

/* İçerik blok başlığı */
.sd-block {
    margin-top: 40px;
}

.sd-block-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

/* Özellikler grid */
.sd-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 10px;
}

.sd-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.sd-feature-check {
    color: var(--success);
    flex-shrink: 0;
    font-weight: 600;
}

/* Gereksinimler listesi */
.sd-requirements {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.sd-req-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.sd-req-border {
    border-bottom: 1px solid var(--border-light);
}

.sd-req-dot {
    color: var(--accent);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Bilgi kutusu (destek vb.) */
.sd-info-box {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* Lisans notu */
.sd-license {
    margin-top: 24px;
    padding: 16px 20px;
    background: var(--accent-glow);
    border: 1px solid rgba(99,102,241,0.15);
    border-radius: var(--radius-md);
}

.sd-license p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.sd-license-label {
    color: var(--accent-light);
}

/* Sidebar CTA grubu */
.sidebar-cta-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.sidebar-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.92rem;
}

/* Primary (Satın Al / Bilgi Al) daha güçlü */
.sidebar-cta-btn.btn-primary {
    padding: 18px 28px;
    font-size: 1rem;
}

.sidebar-cta-demo {
    border-color: var(--success);
    color: var(--success);
}

.sidebar-cta-demo:hover {
    background: rgba(34, 197, 94, 0.08);
    border-color: var(--success);
    color: var(--success);
}

/* Sidebar bilgi grubu */
.sidebar-info-group {
    border-top: 1px solid var(--border-light);
    padding-top: 14px;
    margin-top: 4px;
}

.sidebar-meta-value {
    font-weight: 600;
}

.sidebar-price-contact {
    font-size: 1.1rem;
}

/* Sidebar güven notu */
.sidebar-trust-note {
    margin-top: 16px;
    padding: 12px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: var(--radius-md);
    text-align: center;
}

.sidebar-trust-note p {
    font-size: 0.78rem;
    color: var(--success);
    line-height: 1.5;
    margin: 0;
}

/* Related Section */
.related-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.related-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.blog-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-card-body { padding: 20px; }

.blog-card-meta {
    display: flex;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card-title a { color: var(--text-primary); }
.blog-card-title a:hover { color: var(--accent); }

.blog-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.blog-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
}

/* Blog Article */
.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.blog-category-link {
    color: var(--accent);
    font-weight: 600;
}

.blog-article-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
}

.blog-article-excerpt {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.blog-tag {
    padding: 4px 14px;
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--accent);
    transition: background 0.2s;
}

.blog-tag:hover { background: rgba(99,102,241,0.2); }

/* ============================================================
   REFERENCES GRID
   ============================================================ */
.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

@media (max-width: 640px) {
    .references-grid { grid-template-columns: 1fr; }
}

.reference-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.2s;
}

.reference-card:hover { transform: translateY(-2px); }

.reference-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.reference-body { padding: 24px; }

.reference-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.reference-client { color: var(--accent); font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.reference-desc { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 12px; line-height: 1.6; }

.reference-quote {
    border-left: 3px solid var(--accent);
    padding: 12px 16px;
    margin: 12px 0;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.9rem;
    background: rgba(99,102,241,0.05);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* ============================================================
   PAGINATION (front)
   ============================================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
}

.pagination-link, .pagination-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.pagination-link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.pagination-current {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* ============================================================
   CONTACT LAYOUT
   ============================================================ */
/* ── İletişim — Centered Card ── */
.contact-center {
    text-align: center;
    margin-bottom: 48px;
}
.contact-hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}
.contact-hero-desc {
    font-size: 1rem;
    color: var(--text-secondary);
}

.contact-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.btn-block { display: block; width: 100%; text-align: center; padding: 16px 32px; font-size: 1rem; }

/* Hızlı iletişim bar */
.contact-quick-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.contact-quick-label {
    font-size: 0.85rem;
    color: #6b6b80;
}
.contact-qbtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: border-color 0.2s, background 0.2s;
}
.contact-wa {
    color: #4ade80;
    background: rgba(37, 211, 102, 0.06);
    border-color: rgba(37, 211, 102, 0.12);
}
.contact-wa:hover {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.3);
}

/* Form row inside views */
.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
.form-row-2 { grid-template-columns: 1fr 1fr; }

@media (max-width: 768px) {
    .contact-hero-title { font-size: 1.75rem; }
    .contact-card { padding: 24px; }
    .contact-quick-bar { flex-direction: column; gap: 12px; }
}
@media (max-width: 640px) {
    .form-row-2 { grid-template-columns: 1fr; }
}

/* Filter Bar */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.filter-tag {
    padding: 6px 14px;
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.15);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.filter-tag:hover { border-color: var(--accent); color: var(--accent); }

/* Empty state */
.section-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 1rem;
}

/* ============================================================
   CHECKOUT — Review & Pay
   ============================================================ */
.co-wrap { max-width: 520px; }

.co-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.2s;
}
.co-back:hover { color: var(--accent-light); }

/* Adım göstergesi */
.co-steps {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.co-step {
    display: flex;
    align-items: center;
    gap: 8px;
}

.co-step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
}

.co-step-active {
    background: var(--gradient);
    color: #fff;
}

.co-step-pending {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
}

.co-step-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.co-step-label-active {
    color: var(--text-primary);
}

.co-step-line {
    flex: 1;
    height: 1px;
    background: var(--border-light);
    margin: 0 12px;
}

/* Bölüm yapısı */
.co-section {
    margin-bottom: 20px;
}

.co-section-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

/* Kart */
.co-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 22px;
}

/* Ürün bloğu */
.co-product {
    display: flex;
    gap: 14px;
    align-items: center;
}

.co-product-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.co-product-info { flex: 1; }

.co-product-name {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.co-product-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.co-product-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-light);
    flex-shrink: 0;
}

/* Form alanları */
.co-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.co-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 480px) {
    .co-row { grid-template-columns: 1fr; }
}

.co-field {}

.co-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.co-input {
    width: 100%;
    padding: 11px 14px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.88rem;
    font-family: var(--font-family);
    transition: border-color 0.2s;
}
.co-input:focus {
    outline: none;
    border-color: var(--accent);
}

.co-hint {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.co-field-error {
    color: var(--danger);
    font-size: 0.72rem;
    margin-top: 4px;
}

/* Fiyat satırları */
.co-price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.co-price-discount {
    color: var(--success);
}

.co-price-total {
    padding-top: 14px;
    margin-top: 8px;
    border-top: 1px solid var(--border-light);
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}

.co-price-total-value {
    font-size: 1.3rem;
    font-weight: 800;
}

/* CTA butonu */
.co-submit {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    font-weight: 600;
    justify-content: center;
    margin-top: 24px;
}

/* Güven notu */
.co-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.72rem;
    color: var(--text-muted);
}
.co-trust svg { opacity: 0.5; }

/* ============================================================
   FAZ 8 — UI POLISH & TUTARLILIK
   Mevcut stile dokunmaz, sadece eksik state'leri ekler.
   ============================================================ */

/* ---- 1) Tipografi Hiyerarşi ---- */
h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 12px; }
h2 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); margin-bottom: 10px; }
h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); margin-bottom: 8px; }
h4 { font-size: 1.05rem; margin-bottom: 6px; }
.prose p,
.page-intro p,
.section-text p,
.empty-state-desc { max-width: 72ch; }

/* ---- 2) Buton: disabled + loading ---- */
.btn:disabled,
.btn.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
    transform: none !important;
    box-shadow: none !important;
}

.btn.is-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}
.btn.is-loading::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 50%;
    margin: -9px 0 0 -9px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btnSpin 0.6s linear infinite;
}
@keyframes btnSpin {
    to { transform: rotate(360deg); }
}

/* Tüm buton varyantlarında focus-visible ring */
.btn-outline:focus-visible,
.btn-white:focus-visible,
.btn-outline-white:focus-visible,
button:focus-visible,
a.btn:focus-visible {
    outline: 2px solid var(--accent-light);
    outline-offset: 2px;
}

/* Mobile: parmak dostu minimum yükseklik */
@media (max-width: 768px) {
    .btn, button[type="submit"], .co-submit {
        min-height: 44px;
    }
}

/* ---- 3) Form: error state + hint text ---- */
.form-control.is-error,
.form-control:invalid:not(:placeholder-shown) {
    border-color: var(--danger);
}
.form-control.is-error:focus {
    box-shadow: 0 0 0 3px rgba(239,68,68,0.15);
    border-color: var(--danger);
}

.form-hint {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 6px;
    line-height: 1.4;
}
.form-hint-error {
    color: var(--danger);
}

/* Label spacing tutarlılığı */
.form-label {
    margin-bottom: 6px;
}

/* Placeholder kontrastı artırma */
.form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

/* Select stilini input ile eşitle */
select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b80' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 44px;
    text-overflow: ellipsis;
}

/* ---- 4) Alert iyileştirme ---- */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-left: 3px solid transparent;
}
.alert-success {
    border-left-color: var(--success);
}
.alert-error {
    border-left-color: var(--danger);
}
.alert-warning {
    background: rgba(234,179,8,0.1);
    border: 1px solid rgba(234,179,8,0.2);
    border-left-color: var(--warning);
    color: var(--warning);
}
.alert-info {
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.2);
    border-left-color: var(--info);
    color: var(--info);
}

/* ---- 5) Empty State — Standart kutu ---- */
.empty-state {
    background: var(--bg-card);
    border: 1px dashed var(--border-color);
    border-radius: 12px;
    padding: 48px 24px;
    text-align: center;
}
.empty-state-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(99,102,241,0.08);
    margin: 0 auto 16px;
}
.empty-state-icon svg {
    color: var(--text-muted);
    opacity: 0.6;
}
.empty-state-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}
.empty-state-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    max-width: 340px;
    margin: 0 auto;
    line-height: 1.5;
}
.empty-state-action {
    margin-top: 16px;
}

/* ---- 6) Account Nav — mobile scroll ---- */
@media (max-width: 640px) {
    nav[style*="flex-wrap"] {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
    }
    nav[style*="flex-wrap"]::-webkit-scrollbar {
        display: none;
    }
    nav[style*="flex-wrap"] a {
        white-space: nowrap;
        flex-shrink: 0;
    }
}