/**
 * Pulsrad - Temel Tasarım Sistemi & Standartlar
 * Ana Tipografi: Space Grotesk (Tüm Metinler ve Başlıklar) | Monospace: JetBrains Mono
 * Standart: pulsrad-standards SKILL (İkon kütüphanesi kullanılmaz, buton ve tipografi bütünlüğü)
 */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;600;700&display=swap');

:root {
    --font-main: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --transition-fast: 0.18s ease;
    --transition-smooth: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-full: 9999px;
    
    /* Vurgular (Her iki temada ortak sinyal renkleri) */
    --bullish: #00d588;
    --bullish-bg: rgba(0, 213, 136, 0.12);
    --bullish-glow: rgba(0, 213, 136, 0.35);
    
    --bearish: #ff3366;
    --bearish-bg: rgba(255, 51, 102, 0.12);
    --bearish-glow: rgba(255, 51, 102, 0.35);
    
    --accent-blue: #2979ff;
    --accent-blue-bg: rgba(41, 121, 255, 0.12);
    --accent-gold: #ffb800;
    --accent-purple: #9d4edd;
    
    /* Standart Yeşil Buton Rengi (Hero metrik üst başlıkları / --bullish ile tam uyumlu) */
    --btn-green: #00d588;
    --btn-green-hover: #00be7a;
    --btn-green-active: #00a86b;
    --btn-green-glow: rgba(0, 213, 136, 0.35);
}

/* Reset & Genel */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 15px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

h1, h2, h3, h4, h5, h6, .hero-title, .section-title, .pkg-card-title, .platform-info-col h3 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* Kapsayıcı */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-fluid {
    width: 100%;
    padding: 0 1.5rem;
}

/* -------------------------------------------------------------
   BUTON STANDARTLARI (Tüm Sitede ve Admin Panelinde Ortak)
   ------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-main);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.76rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-smooth);
    user-select: none;
    white-space: nowrap;
}

/* Yeşil Buton Standartları: #00d588 & Pulsrad İkon Gradyanı (#00d588 Zümrüt -> #00cef4 Neon Cyan) */
.btn-primary, .btn-success {
    background-color: #00d588 !important;
    background: linear-gradient(135deg, #00d588 0%, #00cef4 100%) !important;
    color: #060b14 !important;
    border-color: #00d588 !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 20px rgba(0, 213, 136, 0.35), 0 0 16px rgba(0, 206, 244, 0.2);
}
.btn-primary:hover, .btn-success:hover {
    background-color: #00be7a !important;
    background: linear-gradient(135deg, #00e592 0%, #15e5ff 100%) !important;
    border-color: #00be7a !important;
    box-shadow: 0 6px 28px rgba(0, 213, 136, 0.5), 0 0 24px rgba(0, 206, 244, 0.35);
    transform: translateY(-2px);
    color: #060b14 !important;
}
.btn-primary:active, .btn-success:active {
    background-color: #00a86b !important;
    background: linear-gradient(135deg, #00be7a 0%, #00badf 100%) !important;
    border-color: #00a86b !important;
    transform: translateY(0);
    color: #060b14 !important;
}

.btn-blue {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}
.btn-blue:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-white {
    background: #ffffff;
    color: #060b14;
    border: 1px solid #ffffff;
    font-weight: 700;
}
.btn-white:hover {
    background: #f1f5f9;
    color: #000000;
    border-color: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--border-color);
}
.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-focus);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}
.btn-outline:hover {
    background: var(--bg-card);
    border-color: var(--border-color-focus);
}

.btn-danger {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: #ffffff;
}
.btn-danger:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.35);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 0.95rem 2rem;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* -------------------------------------------------------------
   ROZETLER (İkon yerine saf CSS & Tipografi)
   ------------------------------------------------------------- */
.badge-radar {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.65rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
}

.badge-bullish {
    background: var(--bullish-bg);
    color: var(--bullish);
    border: 1px solid rgba(0, 213, 136, 0.25);
}

.badge-bearish {
    background: var(--bearish-bg);
    color: var(--bearish);
    border: 1px solid rgba(255, 51, 102, 0.25);
}

.badge-neutral {
    background: var(--bg-tag);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.badge-exchange {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    font-family: var(--font-main);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--bullish);
    display: inline-block;
    box-shadow: 0 0 8px var(--bullish);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.75; box-shadow: 0 0 0 0 rgba(0, 213, 136, 0.7); }
    70% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 7px rgba(0, 213, 136, 0); }
    100% { transform: scale(0.95); opacity: 0.75; box-shadow: 0 0 0 0 rgba(0, 213, 136, 0); }
}

/* -------------------------------------------------------------
   KARTLAR & PANELLER
   ------------------------------------------------------------- */
.card-radar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-card);
}
.card-radar:hover {
    border-color: var(--border-color-focus);
    box-shadow: var(--shadow-hover);
}

/* -------------------------------------------------------------
   FORMLAR (Login, Register, İletişim, Admin Ortak)
   ------------------------------------------------------------- */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text-primary);
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
    border-color: var(--border-color-focus);
    box-shadow: 0 0 0 3px var(--focus-ring);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* -------------------------------------------------------------
   TABLOLAR & RADAR LİSTESİ
   ------------------------------------------------------------- */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-radar {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.92rem;
}

.table-radar th {
    background-color: var(--bg-th);
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.9rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.table-radar td {
    padding: 0.95rem 1rem;
    border-bottom: 1px solid var(--border-color-light);
    color: var(--text-primary);
    vertical-align: middle;
}

.table-radar tr:hover td {
    background-color: var(--bg-tr-hover);
}

.coin-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.coin-symbol {
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--text-primary);
}

.coin-pair {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.price-mono {
    font-family: var(--font-mono);
    font-weight: 600;
}

/* Bildirim & Uyarı Kutuları */
.alert-radar {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    font-size: 0.92rem;
    font-weight: 500;
}

.alert-success {
    background-color: var(--bullish-bg);
    color: var(--bullish);
    border: 1px solid rgba(0, 213, 136, 0.3);
}

.alert-danger {
    background-color: var(--bearish-bg);
    color: var(--bearish);
    border: 1px solid rgba(255, 51, 102, 0.3);
}

.alert-info {
    background-color: var(--accent-blue-bg);
    color: var(--accent-blue);
    border: 1px solid rgba(41, 121, 255, 0.3);
}

/* Navigasyon & Menü (Daima Koyu Terminal Görünümü: Açık & Koyu Temada Ortak) */
.navbar-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 11, 14, 0.94) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.35);
    transition: background-color var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

body.has-fixed-navbar {
    padding-top: 70px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #f8fafc !important;
}

.brand-logo .accent-tag {
    background: linear-gradient(135deg, #00e676, #00c853);
    color: #06170d;
    padding: 0.15rem 0.45rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 900;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8 !important;
    transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: #00ff88 !important;
}

.mobile-nav-drawer ul li a {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.navbar-main .nav-actions .btn {
    padding: 0.55rem 1.25rem !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.25;
}

.navbar-main .btn-secondary {
    background: #181b24 !important;
    color: #f8fafc !important;
    border-color: #262c3b !important;
}

.navbar-main .btn-secondary:hover {
    background: #222735 !important;
    border-color: #384259 !important;
    color: #ffffff !important;
}

.navbar-main .btn-outline {
    background: transparent !important;
    color: #f8fafc !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
}

.navbar-main .btn-outline:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

/* Dil & Tema Seçici (Genel & Koyu Terminal Stili) */
.lang-selector-dropdown {
    position: relative;
    display: inline-block;
}

.lang-btn,
.navbar-main .lang-btn,
.navbar-main .theme-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.75rem;
    border-radius: var(--radius-sm);
    background: #181b24 !important;
    border: 1px solid #262c3b !important;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    color: #f8fafc !important;
    transition: background var(--transition-fast), border-color var(--transition-fast);
    line-height: 1.2;
}

.lang-btn:hover,
.navbar-main .lang-btn:hover,
.navbar-main .theme-toggle-btn:hover {
    background: #222735 !important;
    border-color: #384259 !important;
}

.lang-menu-list {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #12141a !important;
    border: 1px solid #1e222d !important;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.85) !important;
    min-width: 170px;
    padding: 0.4rem 0;
    display: none;
    z-index: 1050;
    list-style: none;
    margin: 0;
}

.lang-menu-list.show {
    display: block !important;
}

.footer-col .lang-menu-list {
    top: auto;
    bottom: calc(100% + 6px);
    right: auto;
    left: 0;
}

.footer-bottom .lang-menu-list {
    top: auto;
    bottom: calc(100% + 8px);
    right: 0;
    left: auto;
}

.lang-item,
.navbar-main .lang-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: #f8fafc !important;
    text-decoration: none;
    transition: background-color var(--transition-fast), color var(--transition-fast);
    white-space: nowrap;
}

.lang-item:hover,
.navbar-main .lang-item:hover {
    background-color: rgba(255, 255, 255, 0.08) !important;
    color: var(--bullish, #00d588) !important;
}

.navbar-main .mobile-menu-btn {
    color: #f8fafc !important;
}

.lang-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 2px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.theme-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.8rem;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    cursor: pointer;
    color: var(--text-primary);
    font-size: 0.82rem;
    font-weight: 700;
}

/* Footer (Kurumsal Kripto Terminali Mimarisi) */
.footer-main {
    margin-top: auto;
    background: linear-gradient(180deg, #090c13 0%, #05070a 100%) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 4.5rem 0 2rem;
    color: var(--text-secondary);
    position: relative;
    overflow: hidden;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 900px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 213, 136, 0.5), rgba(0, 206, 244, 0.5), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1.15fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.35rem;
    position: relative;
    padding-bottom: 0.65rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #00d588, transparent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-links a:hover {
    color: #00d588 !important;
    transform: translateX(4px);
}

.footer-micro-tag {
    font-size: 0.62rem;
    font-weight: 800;
    font-family: var(--font-mono, monospace);
    padding: 0.12rem 0.45rem;
    border-radius: 4px;
    background: rgba(0, 213, 136, 0.12);
    color: #00d588;
    border: 1px solid rgba(0, 213, 136, 0.25);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-micro-tag.cyan {
    background: rgba(0, 206, 244, 0.12);
    color: #00cef4;
    border-color: rgba(0, 206, 244, 0.25);
}

.footer-micro-tag.gold {
    background: rgba(243, 186, 47, 0.12);
    color: #f3ba2f;
    border-color: rgba(243, 186, 47, 0.25);
}

/* Canlı Telemetri & Sistem Durum Rozeti */
.footer-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    background: rgba(0, 213, 136, 0.06);
    border: 1px solid rgba(0, 213, 136, 0.2);
    font-size: 0.76rem;
    font-family: var(--font-mono, monospace);
    margin-bottom: 1.35rem;
    color: #e2e8f0;
}

.footer-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00d588;
    box-shadow: 0 0 8px #00d588;
    animation: livePulse 2s infinite ease-in-out;
}

.footer-status-ping {
    color: #00d588;
    font-weight: 800;
}

/* Kurumsal Yasal Feragat Kutusu */
.footer-disclaimer-box {
    padding: 1.25rem 1.65rem;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin-bottom: 2.25rem;
    backdrop-filter: blur(8px);
}

.footer-disclaimer-header {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.78rem;
    font-weight: 800;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.45rem;
}

.footer-disclaimer-header svg {
    color: #00d588;
    flex-shrink: 0;
}

.footer-disclaimer-text {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #64748b;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.footer-trust-badge svg {
    color: #00d588;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.25rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }
    .footer-bottom-right {
        justify-content: center;
    }
}

/* -------------------------------------------------------------
   SPLIT-SCREEN AUTH SAYFALARI (Login & Register Özel Tasarım)
   ------------------------------------------------------------- */
.auth-split-page {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    width: 100%;
    background-color: var(--bg-body);
    overflow: hidden;
}

.auth-visual-column {
    flex: 1.15;
    position: relative;
    background: #0a0b0e url('../../uploads/auth_bg.jpg') no-repeat center center / cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem 3.5rem;
    overflow: hidden;
    height: 100vh;
    box-sizing: border-box;
}

.auth-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(7, 10, 17, 0.78) 0%, rgba(11, 18, 30, 0.92) 100%);
    backdrop-filter: blur(1.5px);
    z-index: 1;
}

.auth-visual-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    box-sizing: border-box;
}

/* Soldaki yazıları ve kartları dikey olarak tam ortalama */
.auth-visual-body {
    margin: auto 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 520px;
}

.auth-visual-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 480px;
    margin: 1.75rem 0 0 0;
}

.auth-visual-badge-item {
    background: rgba(15, 23, 38, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform var(--transition-smooth);
}
.auth-visual-badge-item:hover {
    transform: translateX(6px);
    border-color: rgba(0, 213, 136, 0.35);
}

.auth-visual-badge-item .badge-icon-box {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: rgba(0, 213, 136, 0.15);
    border: 1px solid rgba(0, 213, 136, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bullish);
    font-weight: 800;
    font-size: 0.85rem;
    font-family: var(--font-mono);
    flex-shrink: 0;
}

.auth-form-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem 3.5rem;
    background-color: var(--bg-body);
    overflow-y: auto;
    height: 100vh;
    box-sizing: border-box;
}

.auth-form-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.auth-form-center-box {
    width: 100%;
    max-width: 480px;
    margin: auto auto;
    padding: 1rem 0;
}

.auth-form-center-box.wide {
    max-width: 560px;
}

/* Sol ve Sağ Alt Çizgiler & Barlar - Tamamen Birebir Eşit ve Aynı Hizada */
.auth-visual-footer-bar,
.auth-form-footer-bar {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    min-height: 44px;
    box-sizing: border-box;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .auth-split-page {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }
    .auth-visual-column {
        padding: 2.5rem 1.5rem;
        min-height: 380px;
        height: auto;
        flex: none;
    }
    .auth-form-column {
        padding: 2.5rem 1.5rem;
        height: auto;
        max-height: none;
    }
}

/* -------------------------------------------------------------
   TEK PAKET (SINGLE PLAN) BÜTÜNLEŞİK KART MİMARİSİ
   ------------------------------------------------------------- */
.single-plan-card {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--bullish);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 50px rgba(0, 213, 136, 0.12);
    padding: 3rem;
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
}

.single-plan-left {
    display: flex;
    flex-direction: column;
}

.single-plan-right {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.95) 0%, rgba(9, 13, 22, 0.98) 100%);
    border: 1px solid rgba(0, 213, 136, 0.35);
    border-radius: var(--radius-lg);
    padding: 3rem 2.25rem 2.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(0, 213, 136, 0.08);
    transition: var(--transition);
}

.single-plan-right:hover {
    border-color: var(--bullish);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 45px rgba(0, 213, 136, 0.15);
}

.plan-price-wrapper {
    background: rgba(0, 213, 136, 0.03);
    border: 1px solid rgba(0, 213, 136, 0.16);
    border-radius: var(--radius-md);
    padding: 1.4rem 1rem;
    margin: 1.25rem 0 1.5rem;
    text-align: center;
}

.plan-old-price {
    font-size: 1.15rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-family: var(--font-mono);
    font-weight: 600;
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
}

.plan-price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.45rem;
    line-height: 1;
}

.plan-price-val {
    font-size: 3.8rem;
    font-weight: 900;
    font-family: var(--font-mono);
    color: var(--bullish);
    line-height: 1;
    letter-spacing: -0.02em;
}

.plan-price-curr {
    font-size: 1.2rem;
    font-weight: 800;
    font-family: var(--font-mono);
    color: var(--bullish);
    letter-spacing: 0.04em;
}

.plan-price-cycle {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-secondary);
    font-family: var(--font-main);
}

.plan-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .single-plan-card {
        grid-template-columns: 1fr;
        padding: 2.25rem 1.5rem;
        gap: 2.5rem;
    }
}

@media (max-width: 576px) {
    .plan-features-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
    .single-plan-right {
        padding: 2.25rem 1.25rem 2rem;
    }
    .plan-price-val {
        font-size: 3.2rem;
    }
}

/* =============================================================
   2 PAKETLİ FİYATLANDIRMA & ÖZELLİK KARŞILAŞTIRMA MATRİSİ
   ============================================================= */
.pkg-matrix-wrapper {
    width: 100%;
    margin-bottom: 4.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pkg-matrix-table {
    width: 100%;
    min-width: 780px;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.45);
}

.pkg-matrix-table th, 
.pkg-matrix-table td {
    padding: 1.15rem 1.5rem;
    vertical-align: middle;
    border-bottom: 1px solid #1a1e29;
}

.pkg-matrix-table tr:last-child td {
    border-bottom: none;
}

.pkg-matrix-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Sütun Oranları */
.pkg-col-feat {
    width: 48%;
    text-align: left;
}
.pkg-col-p1 {
    width: 26%;
    text-align: center;
    background: rgba(255, 255, 255, 0.01);
}
.pkg-col-p2 {
    width: 26%;
    text-align: center;
    background: rgba(0, 213, 136, 0.035);
    border-left: 1px solid rgba(0, 213, 136, 0.22);
    border-right: 1px solid rgba(0, 213, 136, 0.22);
    position: relative;
}

/* Başlık Hücreleri */
.pkg-head-cell {
    padding: 2.2rem 1.5rem 1.8rem !important;
    vertical-align: top !important;
}

.pkg-matrix-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 213, 136, 0.15);
    color: var(--bullish);
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 0 12px rgba(0, 213, 136, 0.2);
}

.pkg-matrix-check-highlight {
    background: rgba(0, 213, 136, 0.25);
    color: var(--bullish);
    box-shadow: 0 0 16px rgba(0, 213, 136, 0.35);
}

.pkg-matrix-cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    font-weight: 700;
    font-size: 1.25rem;
}

.pkg-matrix-feat-name {
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.pkg-matrix-feat-extra {
    color: #38bdf8 !important;
}

.pkg-matrix-badge-p2 {
    display: inline-block;
    background: linear-gradient(135deg, #00e676, #00c853);
    color: #06170d;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.35rem 0.95rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
    margin-bottom: 0.65rem;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.35);
}

.pkg-matrix-price-wrap {
    margin: 1rem 0 1.25rem;
}

.pkg-matrix-price-num {
    font-size: 2.8rem;
    font-weight: 900;
    font-family: var(--font-mono);
    color: var(--bullish);
    line-height: 1;
}

.pkg-matrix-price-curr {
    font-size: 1rem;
    font-weight: 800;
    font-family: var(--font-mono);
    color: var(--bullish);
    margin-left: 0.2rem;
}

.pkg-matrix-price-unit {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.pkg-matrix-old-price {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-family: var(--font-mono);
    margin-bottom: 0.25rem;
}

/* =============================================================
   YAN YANA 2 PAKET KARTI TASARIMI (PRO RADAR & ELITE TERMINAL)
   Ultra Modern Crypto-FinTech Terminal Tasarımı
   ============================================================= */
.packages-two-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem;
    max-width: 1060px;
    margin: 0 auto 3.5rem;
    align-items: stretch;
}

.pkg-plan-card {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.7) 0%, rgba(13, 19, 33, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.75rem 2.25rem 2.25rem;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.pkg-plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.pkg-plan-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55), 0 0 25px rgba(0, 213, 136, 0.08);
}

.pkg-plan-card.featured {
    background: linear-gradient(180deg, rgba(0, 213, 136, 0.08) 0%, rgba(0, 206, 244, 0.03) 40%, rgba(13, 19, 33, 0.95) 100%);
    border: 1px solid rgba(0, 213, 136, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 213, 136, 0.15), 0 0 20px rgba(0, 206, 244, 0.1);
}

.pkg-plan-card.featured::before {
    background: linear-gradient(90deg, transparent, #00d588, #00cef4, transparent);
    height: 2px;
}

.pkg-plan-card.featured:hover {
    border-color: rgba(0, 213, 136, 0.65);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(0, 213, 136, 0.25), 0 0 30px rgba(0, 206, 244, 0.18);
}

.pkg-card-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00d588 0%, #00cef4 100%);
    color: #03150c;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.4rem 1.25rem;
    border-radius: 0 0 14px 14px;
    letter-spacing: 0.06em;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(0, 213, 136, 0.45), 0 0 12px rgba(0, 206, 244, 0.3);
    text-transform: uppercase;
}

.pkg-card-header {
    text-align: center;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.pkg-card-tag {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 0.2rem 0.75rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pkg-card-title {
    font-size: 2.15rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.45rem;
    letter-spacing: -0.02em;
}

.pkg-card-sub {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 420px;
}

.pkg-card-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2.2rem;
    flex-grow: 1;
}

.pkg-card-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.94rem;
    line-height: 1.5;
    color: var(--text-primary);
}

.pkg-card-feature-item.vip-include {
    font-weight: 700;
    color: #ffffff;
    padding: 0.65rem 0.85rem;
    background: rgba(0, 213, 136, 0.06);
    border: 1px solid rgba(0, 213, 136, 0.18);
    border-radius: 8px;
    margin-bottom: 0.25rem;
}

.pkg-card-feature-item.extra {
    color: #e2e8f0;
}

.pkg-feature-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 213, 136, 0.15);
    color: #00d588;
    flex-shrink: 0;
    margin-top: 1px;
}

.pkg-feature-check.cyan {
    background: rgba(0, 206, 244, 0.15);
    color: #00cef4;
}

.pkg-card-check {
    color: var(--bullish);
    font-weight: 900;
    font-size: 1.15rem;
    flex-shrink: 0;
    line-height: 1.2;
}

.pkg-card-footer {
    margin-top: auto;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.pkg-card-price-wrap {
    margin-bottom: 1.35rem;
}

.pkg-card-old-price {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-family: var(--font-mono);
    margin-bottom: 0.25rem;
}

.pkg-card-price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.4rem;
}

.pkg-card-price-num {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--font-mono);
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.pkg-plan-card.featured .pkg-card-price-num {
    background: linear-gradient(135deg, #ffffff 40%, #00d588 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pkg-card-price-curr {
    font-size: 1.2rem;
    font-weight: 800;
    font-family: var(--font-mono);
    color: var(--bullish);
}

.pkg-card-price-unit {
    font-size: 0.92rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.pkg-card-yearly-total {
    display: none;
    margin: 0.5rem auto 0;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--bullish, #00d588);
    background: rgba(0, 213, 136, 0.1);
    border: 1px solid rgba(0, 213, 136, 0.25);
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    letter-spacing: 0.02em;
    width: fit-content;
}

.pkg-plan-card.featured .pkg-card-yearly-total {
    color: #00cef4;
    background: rgba(0, 206, 244, 0.1);
    border-color: rgba(0, 206, 244, 0.25);
}

/* Web3 Güven & Özellik Şeridi */
.pkg-trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1060px;
    margin: 0 auto 5.5rem;
    padding: 1.75rem 2rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    backdrop-filter: blur(12px);
}

.pkg-trust-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.pkg-trust-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(0, 213, 136, 0.1);
    border: 1px solid rgba(0, 213, 136, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d588;
    flex-shrink: 0;
}

.pkg-trust-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 0.15rem;
}

.pkg-trust-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.35;
}

@media (max-width: 860px) {
    .packages-two-cards-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
    .pkg-trust-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.25rem;
    }
}

@media (max-width: 540px) {
    .pkg-trust-strip {
        grid-template-columns: 1fr;
    }
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    background: rgba(0, 213, 136, 0.08);
    border: 1px solid rgba(0, 213, 136, 0.25);
    border-radius: var(--radius-sm);
    color: #00d588;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon-btn.icon-only {
    width: 36px;
    height: 36px;
    padding: 0;
    justify-content: center;
}

.social-icon-btn:hover {
    background: #00d588;
    border-color: #00d588;
    color: #060b14;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 213, 136, 0.35);
}

@keyframes pulseHeart {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.25);
    }
}

/* -------------------------------------------------------------
   PLATFORM SHOWCASE SECTION (Gelişmiş Terminal Tasarımı)
   ------------------------------------------------------------- */
.platform-section {
    position: relative;
    padding: 5.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.platform-section-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 4.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 961px) {
    .platform-section-grid.reversed {
        grid-template-columns: 1.15fr 1fr;
    }
    .platform-section-grid.reversed .platform-info-col {
        order: 2;
    }
    .platform-section-grid.reversed .platform-features-list {
        order: 1;
    }
}

.platform-info-col {
    display: flex;
    flex-direction: column;
}

/* Üst Canlı Rozet (Live Terminal Tag) */
.platform-meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.platform-meta-tag .live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px currentColor;
    animation: radarPulse 2s infinite ease-in-out;
}

@keyframes radarPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.35); opacity: 0.65; }
}

/* Hızlı Metrik Paneli (Telemetry Stat Strip) */
.platform-stat-strip {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin: 1.75rem 0 2.25rem;
    flex-wrap: wrap;
}

.stat-pill {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.65rem 1.15rem;
    background: rgba(18, 22, 33, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    min-width: 105px;
    backdrop-filter: blur(8px);
}

.stat-pill .stat-val {
    font-family: var(--font-mono, monospace);
    font-weight: 800;
    font-size: 1.15rem;
    line-height: 1.1;
}

.stat-pill .stat-lbl {
    font-size: 0.7rem;
    color: var(--text-muted, #64748b);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}

/* Aksiyon Butonu */
.btn-platform-action {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.85rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    width: fit-content;
    border: 1px solid currentColor;
}

.btn-platform-action::before {
    content: "";
    position: absolute;
    inset: 0;
    background: currentColor;
    opacity: 0.08;
    transition: opacity 0.28s ease;
}

.btn-platform-action:hover::before {
    opacity: 0.18;
}

.btn-platform-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.btn-platform-action .arrow-icon {
    display: inline-block;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-platform-action:hover .arrow-icon {
    transform: translateX(4px);
}

/* Sağ Sütun: Özellik Kartları Listesi */
.platform-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.platform-feature-card {
    position: relative;
    background: linear-gradient(135deg, rgba(16, 21, 31, 0.82) 0%, rgba(9, 13, 20, 0.94) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 1.35rem 1.6rem;
    display: flex;
    gap: 1.35rem;
    align-items: flex-start;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
}

/* Soldaki İnce Canlı Vurgu Çizgisi */
.platform-feature-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--card-accent, #f3ba2f);
    opacity: 0.35;
    transition: all 0.3s ease;
}

/* Kartın Arka Planındaki Hafif Vurgu Işıması */
.platform-feature-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 10% 50%, var(--card-accent, #f3ba2f) 0%, transparent 65%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.platform-feature-card:hover {
    background: linear-gradient(135deg, rgba(22, 29, 44, 0.9) 0%, rgba(13, 18, 28, 0.98) 100%);
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateX(6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55), 0 0 25px rgba(0, 0, 0, 0.2);
}

.platform-feature-card:hover::before {
    opacity: 1;
    width: 4px;
    box-shadow: 0 0 14px var(--card-accent, #f3ba2f);
}

.platform-feature-card:hover::after {
    opacity: 0.05;
}

/* Numaratör / Rozet */
.platform-feature-num {
    font-family: var(--font-mono, monospace);
    font-size: 0.92rem;
    font-weight: 800;
    padding: 0.45rem 0.65rem;
    border-radius: 8px;
    line-height: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.03);
    color: var(--card-accent, #f3ba2f);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.platform-feature-card:hover .platform-feature-num {
    border-color: var(--card-accent, #f3ba2f);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 14px rgba(var(--card-accent-rgb, 243, 186, 47), 0.3), inset 0 0 8px rgba(var(--card-accent-rgb, 243, 186, 47), 0.15);
}

/* Kart İçeriği */
.platform-feature-content {
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.platform-feature-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.45rem;
    flex-wrap: wrap;
}

.platform-feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.platform-feature-tag {
    font-size: 0.68rem;
    font-family: var(--font-mono, monospace);
    font-weight: 700;
    padding: 0.18rem 0.55rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.platform-feature-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 960px) {
    .platform-section {
        padding: 3.5rem 0;
    }
    .platform-section-grid {
        grid-template-columns: 1fr;
        gap: 2.75rem;
    }
    .platform-feature-card:hover {
        transform: translateY(-2px);
    }
}

/* -------------------------------------------------------------
   RADAR ACCORDION BİLEŞENİ (SSS / FAQ)
   ------------------------------------------------------------- */
.radar-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.radar-accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.radar-accordion-item:hover {
    border-color: rgba(0, 213, 136, 0.4);
}

.radar-accordion-item.active {
    border-color: var(--bullish);
    box-shadow: 0 4px 20px rgba(0, 213, 136, 0.08);
}

.radar-accordion-header {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: var(--transition);
}

.radar-accordion-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.radar-accordion-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin: 0;
}

.radar-accordion-num {
    font-family: var(--font-mono);
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--bullish);
    opacity: 0.85;
}

.radar-accordion-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
    transition: transform var(--transition-smooth), color var(--transition);
    flex-shrink: 0;
}

.radar-accordion-item.active .radar-accordion-icon {
    transform: rotate(45deg);
    color: var(--bullish);
    background: rgba(0, 213, 136, 0.15);
}

.radar-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
    padding: 0 1.5rem;
    background: var(--bg-body);
}

.radar-accordion-item.active .radar-accordion-content {
    max-height: 350px;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.radar-accordion-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto 5.5rem;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* -------------------------------------------------------------
   HERO BÖLÜMÜ (Daima Koyu Terminal Görünümü: Açık & Koyu Temada Ortak)
   ------------------------------------------------------------- */
.hero-radar {
    position: relative;
    padding: 6.5rem 0 6rem;
    overflow: hidden;
    background-color: #0a0b0e !important;
    border-bottom: 1px solid #1e222d !important;
}

.highlight {
    background: linear-gradient(135deg, #00e676 0%, #00d588 45%, #00e5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #00e676;
    display: inline;
    filter: drop-shadow(0 0 25px rgba(0, 230, 118, 0.45));
}

/* Siber Radar Arka Plan Izgarası (Hafif ve Temiz) */
.hero-cyber-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 213, 136, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 213, 136, 0.035) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center top;
    mask-image: radial-gradient(ellipse 90% 80% at 75% 50%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 75% 50%, black 20%, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

/* İki Sütunlu Hero Düzeni: Sol Metin & Materyaller, Sağ Radar */
.hero-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Sol Sütun: Yazılar & Materyaller */
.hero-content-col {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.95rem;
    border-radius: 9999px;
    background: rgba(0, 213, 136, 0.08);
    border: 1px solid rgba(0, 213, 136, 0.28);
    color: #00ff88;
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
}

.hero-radar .hero-title {
    font-size: clamp(2.3rem, 4.2vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #f8fafc !important;
}

.hero-radar .hero-subtitle {
    font-size: 1.15rem;
    color: #94a3b8 !important;
    line-height: 1.8;
    margin-bottom: 2.25rem;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

/* Materyaller: Canlı İstatistikler & Güven Rozetleri */
.hero-radar .hero-materials {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid #1e222d !important;
}

.hero-material-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-material-num {
    font-family: var(--font-mono);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--bullish) !important;
    letter-spacing: -0.01em;
}

.hero-radar .hero-material-label {
    font-size: 0.82rem;
    color: #94a3b8 !important;
    font-weight: 500;
}

.hero-radar .hero-material-divider {
    width: 1px;
    height: 30px;
    background: #1e222d !important;
}

/* Sağ Sütun: Taktiksel Radar Ekranı (Kartsız, Büyütülmüş) */
.hero-radar-col {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.radar-standalone-container {
    position: relative;
    width: 100%;
    max-width: 630px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Radar Arkası Lüks Yeşil Halo Işığı */
.radar-standalone-container::before {
    content: '';
    position: absolute;
    inset: -34px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.14) 0%, rgba(0, 213, 136, 0.04) 55%, transparent 75%);
    filter: blur(35px);
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 992px) {
    .hero-split-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    .hero-content-col {
        text-align: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-materials {
        justify-content: center;
    }
    .radar-standalone-container {
        max-width: 440px;
        margin: 0 auto;
    }
}
@media (max-width: 576px) {
    .radar-standalone-container {
        max-width: 320px;
    }
}

.radar-disc {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 136, 0.4);
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.05) 0%, rgba(10, 15, 26, 0.75) 60%, rgba(6, 11, 20, 0.95) 100%);
    box-shadow: 
        0 0 60px rgba(0, 255, 136, 0.16),
        0 0 100px rgba(0, 0, 0, 0.8),
        inset 0 0 80px rgba(0, 255, 136, 0.1);
    overflow: visible;
}

/* Eşmerkezli Radar Halkaları */
.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
}

.radar-circle-1 {
    width: 84%;
    height: 84%;
    border: 1px dashed rgba(0, 213, 136, 0.22);
}

.radar-circle-2 {
    width: 66%;
    height: 66%;
    border: 1px solid rgba(0, 213, 136, 0.26);
    box-shadow: 0 0 15px rgba(0, 213, 136, 0.05);
}

.radar-circle-3 {
    width: 48%;
    height: 48%;
    border: 1px dashed rgba(0, 213, 136, 0.22);
}

.radar-circle-4 {
    width: 28%;
    height: 28%;
    border: 1px solid rgba(0, 213, 136, 0.3);
    box-shadow: 0 0 20px rgba(0, 213, 136, 0.08);
}

.radar-circle-center {
    width: 14px;
    height: 14px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 18px #00ff88, 0 0 35px rgba(0, 255, 136, 0.7);
    animation: centerPulse 2.5s ease-in-out infinite alternate;
}

.center-pulse-beacon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(0, 255, 136, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: beaconPing 2.4s cubic-bezier(0, 0, 0.2, 1) infinite;
    pointer-events: none;
}

/* Radar Eksen Çizgileri (Crosshairs) */
.radar-axis-h {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 213, 136, 0.4) 15%, 
        rgba(0, 255, 170, 0.8) 50%, 
        rgba(0, 213, 136, 0.4) 85%, 
        transparent 100%);
}

.radar-axis-v {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(0, 213, 136, 0.4) 15%, 
        rgba(0, 255, 170, 0.8) 50%, 
        rgba(0, 213, 136, 0.4) 85%, 
        transparent 100%);
}

.radar-axis-d1 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 1px;
    transform: translate(-50%, -50%) rotate(45deg);
    background: linear-gradient(90deg, transparent, rgba(0, 213, 136, 0.15) 20%, rgba(0, 213, 136, 0.15) 80%, transparent);
}

.radar-axis-d2 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 1px;
    transform: translate(-50%, -50%) rotate(-45deg);
    background: linear-gradient(90deg, transparent, rgba(0, 213, 136, 0.15) 20%, rgba(0, 213, 136, 0.15) 80%, transparent);
}

/* 360° Dönen Sonar Tarama İbresi */
.radar-sweep-beam {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, 
        transparent 0deg, 
        transparent 280deg, 
        rgba(0, 213, 136, 0.05) 310deg, 
        rgba(0, 255, 136, 0.35) 360deg);
    animation: tacticalRadarSweep 5.5s linear infinite;
    transform-origin: 50% 50%;
}

.radar-sweep-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(0, 255, 136, 0.9) 30%, transparent 100%);
    box-shadow: 0 0 14px rgba(0, 255, 136, 0.9), 0 0 28px rgba(0, 213, 136, 0.6);
}

/* ===================================================
   HAREKETLİ RADAR SİNYAL MİNİ KARTLARI (FLOATING CARDS)
   =================================================== */
.radar-floating-card {
    position: absolute;
    background: rgba(12, 17, 28, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 255, 136, 0.35);
    border-radius: 12px;
    padding: 0.65rem 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    z-index: 6;
    cursor: default;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
    user-select: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75), 0 0 20px rgba(0, 255, 136, 0.12);
}

.radar-floating-card:hover {
    transform: scale(1.1) translateY(-4px) !important;
    z-index: 20;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.85), 0 0 28px rgba(0, 255, 136, 0.3);
}

/* 1. BINANCE KARTI: Sol Üst Kadran */
.rfc-binance {
    top: 15%;
    left: 7%;
    border-color: rgba(243, 186, 47, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75), 0 0 20px rgba(243, 186, 47, 0.15);
    animation: rfcFloat1 6.4s ease-in-out infinite alternate;
}
.rfc-binance:hover {
    border-color: #f3ba2f;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.85), 0 0 30px rgba(243, 186, 47, 0.35);
}

/* 2. WHALE KARTI: Sağ Üst Kadran */
.rfc-whale {
    top: 17%;
    right: 7%;
    border-color: rgba(0, 213, 255, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75), 0 0 20px rgba(0, 213, 255, 0.15);
    animation: rfcFloat2 7.2s ease-in-out infinite alternate;
}
.rfc-whale:hover {
    border-color: #00d5ff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.85), 0 0 30px rgba(0, 213, 255, 0.35);
}

/* 3. PUMP.FUN KARTI: Sağ Alt Kadran */
.rfc-pumpfun {
    bottom: 16%;
    right: 8%;
    border-color: rgba(20, 241, 149, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75), 0 0 20px rgba(20, 241, 149, 0.15);
    animation: rfcFloat3 6.8s ease-in-out infinite alternate;
}
.rfc-pumpfun:hover {
    border-color: #14f195;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.85), 0 0 30px rgba(20, 241, 149, 0.35);
}

/* 4. RAYDIUM KARTI: Sol Alt Kadran */
.rfc-raydium {
    bottom: 18%;
    left: 8%;
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75), 0 0 20px rgba(168, 85, 247, 0.15);
    animation: rfcFloat4 7.6s ease-in-out infinite alternate;
}
.rfc-raydium:hover {
    border-color: #c084fc;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.85), 0 0 30px rgba(168, 85, 247, 0.35);
}

/* Kart Başlığı & Durum Noktası */
.rfc-badge-header {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-mono, monospace);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #94a3b8;
}

.rfc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}
.rfc-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid currentColor;
    animation: rfcDotPing 1.8s infinite;
}

.rfc-dot-binance { background: #f3ba2f; color: #f3ba2f; box-shadow: 0 0 8px #f3ba2f; }
.rfc-dot-whale { background: #00d5ff; color: #00d5ff; box-shadow: 0 0 8px #00d5ff; }
.rfc-dot-pumpfun { background: #14f195; color: #14f195; box-shadow: 0 0 8px #14f195; }
.rfc-dot-raydium { background: #c084fc; color: #c084fc; box-shadow: 0 0 8px #c084fc; }

.rfc-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.rfc-pair {
    font-family: var(--font-main, sans-serif);
    font-weight: 800;
    font-size: 0.88rem;
    color: #ffffff;
    letter-spacing: -0.2px;
    white-space: nowrap;
}

.rfc-stat {
    font-family: var(--font-mono, monospace);
    font-weight: 700;
    font-size: 0.72rem;
    padding: 0.16rem 0.45rem;
    border-radius: 4px;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.rfc-stat-bullish {
    background: rgba(243, 186, 47, 0.16);
    color: #f3ba2f;
    border: 1px solid rgba(243, 186, 47, 0.35);
}

.rfc-stat-whale {
    background: rgba(0, 213, 255, 0.16);
    color: #00d5ff;
    border: 1px solid rgba(0, 213, 255, 0.35);
}

.rfc-stat-green {
    background: rgba(20, 241, 149, 0.16);
    color: #14f195;
    border: 1px solid rgba(20, 241, 149, 0.35);
}

.rfc-stat-purple {
    background: rgba(168, 85, 247, 0.16);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.35);
}

/* Yüzme / Uçuşma Animasyonları (Floating Trajectories) */
@keyframes rfcFloat1 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(7px, -12px); }
    100% { transform: translate(-5px, 8px); }
}

@keyframes rfcFloat2 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-8px, -13px); }
    100% { transform: translate(6px, 9px); }
}

@keyframes rfcFloat3 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(9px, 11px); }
    100% { transform: translate(-7px, -7px); }
}

@keyframes rfcFloat4 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-7px, 11px); }
    100% { transform: translate(7px, -9px); }
}

@keyframes rfcDotPing {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(2.2); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

@keyframes beaconPing {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.9; }
    100% { transform: translate(-50%, -50%) scale(2.6); opacity: 0; }
}

@media (max-width: 576px) {
    .radar-floating-card {
        padding: 0.42rem 0.65rem;
        border-radius: 9px;
        gap: 0.2rem;
    }
    .rfc-pair {
        font-size: 0.74rem;
    }
    .rfc-stat {
        font-size: 0.62rem;
        padding: 0.1rem 0.35rem;
    }
    .rfc-badge-header {
        font-size: 0.58rem;
    }
}

/* 7. Tepe Lazer Tarama Çizgisi */
.hero-laser-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: 1080px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 213, 136, 0.25) 20%, 
        rgba(0, 255, 170, 1) 50%, 
        rgba(0, 213, 136, 0.25) 80%, 
        transparent 100%);
    box-shadow: 0 0 24px rgba(0, 255, 170, 0.9), 0 0 48px rgba(0, 213, 136, 0.5);
    animation: laserPulse 4s ease-in-out infinite alternate;
}

@keyframes tacticalRadarSweep {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes centerPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        box-shadow: 0 0 14px #00ff88;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        box-shadow: 0 0 24px #00ff88, 0 0 45px rgba(0, 255, 136, 0.8);
    }
}

@keyframes radarSweepSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* -------------------------------------------------------------
   PRICING TOGGLE SWITCH (Aylık / Yıllık Fiyat Geçişi)
   ------------------------------------------------------------- */
.pricing-toggle-container {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.pricing-toggle-wrapper {
    display: inline-flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.35rem 0.4rem;
    gap: 0.35rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.pricing-toggle-btn {
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.7rem 1.6rem;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.pricing-toggle-btn:hover {
    color: #ffffff;
}

.pricing-toggle-btn.active {
    background: linear-gradient(135deg, #00d588 0%, #00cef4 100%);
    color: #03150c;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(0, 213, 136, 0.4), 0 0 12px rgba(0, 206, 244, 0.25);
}

.pricing-discount-tag {
    font-size: 0.72rem;
    background: rgba(0, 213, 136, 0.18);
    color: var(--bullish);
    padding: 0.22rem 0.65rem;
    border-radius: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 1px solid rgba(0, 213, 136, 0.3);
    transition: var(--transition);
}

.pricing-toggle-btn.active .pricing-discount-tag {
    background: #03150c;
    color: #00d588;
    border-color: rgba(0, 0, 0, 0.2);
}

/* -------------------------------------------------------------
   SOL ALT ÇEREZ UYARISI POPUP (Cookie Consent) - Siteyle Tam Uyumlu
   ------------------------------------------------------------- */
.cookie-consent-popup {
    position: fixed;
    bottom: 1.75rem;
    left: 1.75rem;
    z-index: 99999;
    max-width: 440px;
    width: calc(100vw - 3.5rem);
    background: rgba(10, 15, 29, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 210, 255, 0.08);
    padding: 1.35rem 1.5rem;
    animation: cookieSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-consent-inner {
    position: relative;
    display: block;
}

.cookie-content-col {
    padding-right: 1.5rem;
}

.cookie-title {
    font-size: 0.98rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-desc {
    font-size: 0.84rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 1.1rem;
}

.cookie-link {
    color: var(--bullish);
    text-decoration: underline;
    font-weight: 600;
    margin-left: 0.3rem;
}

.cookie-link:hover {
    color: #00ff88;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cookie-close-btn {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-close-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

@keyframes cookieSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 576px) {
    .cookie-consent-popup {
        bottom: 1rem;
        left: 1rem;
        width: calc(100vw - 2rem);
        padding: 1.1rem;
    }
}




