:root {
            /* Enterprise Grade - Professional Dark Theme */
            --bg-primary: #0a0a0b;
            --bg-secondary: #111113;
            --bg-tertiary: #18181b;
            --bg-card: #1c1c1f;
            --border-color: #27272a;
            --border-subtle: #1f1f22;
            --text-primary: #fafafa;
            --text-secondary: #b4b4bc;
            --text-muted: #94949e;
            --accent-primary: #3b82f6;
            --accent-success: #22c55e;
            --accent-warning: #f59e0b;
            --accent-error: #ef4444;
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.5);
            --shadow-lg: 0 8px 24px rgba(0,0,0,0.6);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html {
            overflow-y: scroll;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes glow {
            0%, 100% { box-shadow: 0 0 5px rgba(59, 130, 246, 0.3); }
            50% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.6); }
        }

        @keyframes ripple {
            0% {
                transform: scale(0);
                opacity: 1;
            }
            100% {
                transform: scale(4);
                opacity: 0;
            }
        }

        @keyframes successPop {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
            20%, 40%, 60%, 80% { transform: translateX(5px); }
        }

        /* Animation Classes */
        .animate-fadeInUp {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .animate-fadeIn {
            animation: fadeIn 0.5s ease-out forwards;
            opacity: 0;
        }

        .animate-slideInLeft {
            animation: slideInLeft 0.5s ease-out forwards;
            opacity: 0;
        }

        .animate-slideInRight {
            animation: slideInRight 0.5s ease-out forwards;
            opacity: 0;
        }

        .animate-scaleIn {
            animation: scaleIn 0.4s ease-out forwards;
            opacity: 0;
        }

        /* Stagger delays */
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        .delay-5 { animation-delay: 0.5s; }
        .delay-6 { animation-delay: 0.6s; }

        /* Hover animations */
        .hover-lift {
            transition: box-shadow 0.3s ease;
        }
        .hover-lift:hover {
            box-shadow: 0 12px 30px rgba(0,0,0,0.4);
        }

        .hover-glow {
            transition: box-shadow 0.3s ease;
        }
        .hover-glow:hover {
            box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
        }

        .hover-scale {
            transition: transform 0.2s ease;
        }
        .hover-scale:hover {
            transform: scale(1.02);
        }

        /* Button ripple effect */
        .btn-ripple {
            position: relative;
            overflow: hidden;
        }
        .btn-ripple::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            background-image: radial-gradient(circle, rgba(255,255,255,0.3) 10%, transparent 10%);
            background-repeat: no-repeat;
            background-position: 50%;
            transform: scale(10);
            opacity: 0;
            transition: transform 0.5s, opacity 0.5s;
        }
        .btn-ripple:active::after {
            transform: scale(0);
            opacity: 1;
            transition: 0s;
        }

        /* Result card animations */
        .result-animate {
            animation: successPop 0.5s ease-out forwards;
        }

        .result-item-animate {
            animation: fadeInUp 0.35s ease-out forwards;
        }

        /* Loading shimmer */
        .shimmer {
            background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--bg-card) 50%, var(--bg-tertiary) 75%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
        }

        /* Icon float animation */
        .icon-float {
            animation: float 3s ease-in-out infinite;
        }

        /* Success checkmark animation */
        .success-check {
            animation: successPop 0.5s ease-out forwards;
        }

        /* Error shake animation */
        .error-shake {
            animation: shake 0.5s ease-out;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            min-height: 100vh;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        .bg-pattern {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image:
                linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 0;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        /* Header styles managed by menu.php */

        /* Hero - Enterprise Style */
        .hero {
            text-align: center;
            padding: 80px 0 48px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            padding: 6px 14px;
            border-radius: 100px;
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin-bottom: 24px;
        }

        .hero-badge i { color: var(--accent-success); font-size: 0.7rem; }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -1px;
            color: var(--text-primary);
        }

        .hero h1 span { color: var(--accent-primary); }

        .hero p {
            font-size: 1.125rem;
            color: var(--text-secondary);
            max-width: 750px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }

        .stats {
            display: flex;
            justify-content: center;
            gap: 48px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.5px;
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 4px;
        }

        /* Validator Card - Clean Design */
        .validator-section { padding: 32px 0 80px; }

        .validator-section .container {
            max-width: 1360px;
        }

        .validator-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 32px;
            box-shadow: var(--shadow-lg);
        }

        .tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 24px;
            padding: 4px;
            background: var(--bg-tertiary);
            border-radius: 10px;
            width: fit-content;
        }

        .tab-btn {
            padding: 10px 20px;
            border: none;
            background: transparent;
            color: var(--text-secondary);
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.875rem;
            font-weight: 500;
            transition: all 0.3s ease;
            font-family: inherit;
            position: relative;
            overflow: hidden;
        }

        .tab-btn.active {
            background: var(--bg-card);
            color: var(--text-primary);
            box-shadow: var(--shadow-sm);
            transform: scale(1.02);
        }

        .tab-btn:hover:not(.active):not(.disabled) {
            color: var(--text-primary);
            background: rgba(255,255,255,0.05);
        }

        .tab-btn:active:not(.disabled) {
            transform: scale(0.98);
        }

        .tab-btn.disabled {
            color: #858590;
            cursor: not-allowed;
        }

        .tab-content { display: none; }
        .tab-content.active { display: block; }

        /* Input - Professional Style */
        .input-group {
            position: relative;
            margin-bottom: 16px;
        }

        .input-group input,
        .input-group textarea {
            width: 100%;
            padding: 16px 18px;
            font-size: 1rem;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            color: var(--text-primary);
            outline: none;
            font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
        }

        .input-group textarea {
            min-height: 140px;
            resize: vertical;
            font-size: 0.9rem;
        }

        .input-group input:focus,
        .input-group textarea:focus {
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15), 0 0 20px rgba(59, 130, 246, 0.1);
        }

        .input-group input,
        .input-group textarea {
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .input-group input::placeholder,
        .input-group textarea::placeholder {
            color: var(--text-muted);
        }

        .btn-validate {
            width: 100%;
            padding: 16px;
            font-size: 1rem;
            font-weight: 600;
            background: var(--accent-primary);
            color: #fff;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.2s;
            font-family: inherit;
        }

        .btn-validate:hover {
            background: #2563eb;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
        }

        .btn-validate:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Limit dolu buton stili - profesyonel kilitli görünüm */
        .btn-validate.limit-exceeded {
            cursor: not-allowed;
            background: linear-gradient(135deg, #3f3f46 0%, #27272a 100%) !important;
            color: #a1a1aa !important;
            box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3) !important;
            border: 1px solid #52525b !important;
            position: relative;
            opacity: 0.85;
            pointer-events: none;
        }

        .btn-validate.limit-exceeded:hover {
            background: linear-gradient(135deg, #3f3f46 0%, #27272a 100%) !important;
            transform: none !important;
            box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3) !important;
        }

        /* Limit bilgisi tooltip */
        .btn-validate.limit-exceeded .limit-info {
            display: block;
            font-size: 0.75rem;
            font-weight: 500;
            opacity: 0.8;
            margin-top: 4px;
        }

        /* Result Header */
        .result-card {
            margin-top: 24px;
            padding: 24px;
            background: var(--bg-tertiary);
            border-radius: 12px;
            border: 1px solid var(--border-color);
            display: none;
            transition: all 0.3s ease;
            overflow-x: auto;
        }

        .result-card.show {
            display: block;
            animation: slideUp 0.4s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .result-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
        }

        .result-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: #fff;
            position: relative;
            flex-shrink: 0;
            margin-top: 4px;
        }

        .result-icon.valid {
            background: var(--accent-success);
            box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
        }

        .result-icon.valid::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 10px;
            background: var(--accent-success);
            animation: pulseRing 1s ease-out;
            opacity: 0;
        }

        @keyframes pulseRing {
            0% { transform: scale(1); opacity: 0.5; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        .result-icon.invalid {
            background: var(--accent-error);
            box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
        }

        .result-title {
            font-size: 1.125rem;
            font-weight: 600;
            -webkit-font-smoothing: antialiased;
        }

        .result-subtitle {
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
            font-weight: 500;
            letter-spacing: 0.3px;
            -webkit-font-smoothing: antialiased;
        }

        .copy-iban-btn {
            background: var(--bg-tertiary);
            border: 1px solid var(--border-subtle);
            border-radius: 6px;
            padding: 4px 8px;
            cursor: pointer;
            color: var(--text-secondary);
            transition: all 0.2s ease;
            font-size: 0.8rem;
        }

        .copy-iban-btn:hover {
            background: var(--accent-primary);
            color: white;
            border-color: var(--accent-primary);
        }

        .copy-iban-btn.copied {
            background: var(--accent-success);
            color: white;
            border-color: var(--accent-success);
        }

        .result-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 12px;
        }

        .result-item {
            padding: 14px;
            background: var(--bg-card);
            border-radius: 10px;
            border: 1px solid var(--border-subtle);
            transition: background 0.15s ease, border-color 0.15s ease;
            cursor: pointer;
            position: relative;
        }

        .result-item-copy-success {
            background: rgba(34, 197, 94, 0.3) !important;
            border-color: #22c55e !important;
        }

        .result-item:hover {
            background: var(--bg-tertiary);
            border-color: var(--accent-primary);
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }

        .result-item-label {
            font-size: 0.85rem;
            color: var(--accent-primary);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
            -webkit-font-smoothing: antialiased;
        }

        .result-item-value {
            font-size: 1.0rem;
            font-weight: 400;
            color: var(--text-primary);
            word-break: break-word;
            -webkit-font-smoothing: antialiased;
        }

        /* Bank Logo in Result Header */
        .result-header-left {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            min-width: 0;
            flex: 1;
        }

        .result-header-logo {
            width: 180px;
            height: 90px;
            background: #ffffff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            flex-shrink: 0;
            overflow: hidden; /* Kenarları temiz tutar */
        }

        /* Beyaz logoların (Garanti gibi) kaybolmaması için hafif bir iç efekt */
        .result-header-logo::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 12px;
            box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
            pointer-events: none;
        }

        .result-header-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 5px; /* Logoya nefes payı bırakır */
            transform: scale(1.1);
            transition: transform 0.3s ease;
        }

        @media (max-width: 768px) {
            .result-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 20px;
            }
            .result-header-left {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 600px) {
            .result-header-logo {
                width: 150px;
                height: 75px;
            }
        }

        /* Features - Minimal Cards */
        .features-section { padding: 80px 0; }

        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .section-subtitle {
            color: var(--text-secondary);
            font-size: 1rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 28px;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--accent-primary);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--accent-primary), #6366f1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .feature-icon i {
            font-size: 1.25rem;
            color: #fff;
        }

        .feature-card h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text-primary);
        }

        .feature-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .feature-card.locked {
            position: relative;
            background: #141416;
            border-color: #222225;
            pointer-events: none;
        }

        .feature-card.locked:hover {
            transform: none;
            border-color: var(--border-color);
            box-shadow: none;
        }

        .feature-card.locked .feature-icon {
            background: var(--bg-tertiary);
        }

        .feature-card.locked .feature-icon i {
            color: var(--text-muted);
        }

        .feature-card.locked::after {
            content: 'PRO';
            position: absolute;
            top: 12px;
            right: 12px;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 6px;
            letter-spacing: 0.5px;
        }

        /* Premium Banner */
        .premium-banner {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 48px;
            text-align: center;
            margin: 48px 0;
        }

        .premium-banner h2 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .premium-banner p {
            color: var(--text-secondary);
            margin-bottom: 24px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .premium-banner .btn {
            background: var(--accent-primary);
            color: #fff;
            padding: 14px 32px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
            transition: all 0.2s;
        }

        .premium-banner .btn:hover {
            background: #2563eb;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
        }

        @keyframes infinityPulse {
            0%, 100% { opacity: 0.5; text-shadow: 0 0 4px rgba(139,92,246,0.2); }
            50% { opacity: 1; text-shadow: 0 0 12px rgba(139,92,246,0.5); }
        }

        /* Ad Banner */
        .ad-banner {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 16px;
            text-align: center;
            margin: 20px 0;
            overflow: hidden;
        }
        .ad-banner ins {
            display: block !important;
            max-width: 100%;
        }
        /* Responsive Ad Sizes */
        .ad-responsive {
            display: block;
            width: 100%;
            max-width: 728px;
            height: auto;
            min-height: 90px;
            margin: 0 auto;
            color: var(--text-muted);
            font-size: 0.8rem;
        }

        /* Footer */
        .footer {
            padding: 32px 0;
            border-top: 1px solid var(--border-color);
            text-align: center;
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* Responsive - Portrait: Menü ve hamburger tamamen gizli, diğer mobil stiller aktif */
        @media screen and (max-width: 768px) and (orientation: portrait) {
            .hero h1 { font-size: 2rem; }
            .hero p { font-size: 1rem; }
            .stats { gap: 32px; }
            .validator-card { padding: 20px; }
            .tabs { width: 100%; }
            .tab-btn { flex: 1; text-align: center; }
        }

        /* Responsive - Landscape: Hamburger görünür, menü gizli */
        @media screen and (max-width: 768px) and (orientation: landscape) {
            .hero h1 { font-size: 2rem; }
            .hero p { font-size: 1rem; }
            .stats { gap: 32px; }
            .validator-card { padding: 20px; }
            .tabs { width: 100%; }
            .tab-btn { flex: 1; text-align: center; }
        }

        /* Fallback: orientation desteklemeyen cihazlar için hamburger varsayılan olarak görünür */
        @media screen and (max-width: 768px) {
            .hero h1 { font-size: 2rem; }
            .hero p { font-size: 1rem; }
            .stats { gap: 32px; }
            .validator-card { padding: 20px; }
            .tabs { width: 100%; }
            .tab-btn { flex: 1; text-align: center; }
        }

        /* Language Selector */
        /* dil_secici_css is moved to main php */

        /* Loading Spinner */
        .spinner {
            display: inline-block;
            width: 18px;
            height: 18px;
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 0.6s cubic-bezier(0.5, 0, 0.5, 1) infinite;
            margin-right: 8px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Button loading state */
        .btn-validate:disabled {
            position: relative;
            background: linear-gradient(90deg, var(--accent-primary) 0%, #2563eb 50%, var(--accent-primary) 100%);
            background-size: 200% 100%;
            animation: btnLoading 1.5s ease infinite;
        }

        @keyframes btnLoading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* Results Table */
        .results-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 16px;
        }

        .results-table th,
        .results-table td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }

        .results-table th {
            background: var(--bg-card);
            font-weight: 600;
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .results-table td { font-size: 0.875rem; }

        .col-hesap-adi {
            width: 220px !important;
            max-width: 220px !important;
            min-width: 180px !important;
            white-space: normal !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
            line-height: 1.4;
            vertical-align: middle;
        }

        .col-islem {
            width: 70px !important;
            min-width: 70px !important;
            text-align: center !important;
            vertical-align: middle;
        }

        .status-valid { color: var(--accent-success); font-weight: 600; }
        .status-invalid { color: var(--accent-error); font-weight: 600; }

        .btn-export {
            background: var(--bg-tertiary);
            color: var(--text-primary);
            padding: 10px 18px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.85rem;
            font-weight: 500;
            margin-top: 16px;
            transition: all 0.2s;
            font-family: inherit;
        }

        .btn-export:hover {
            background: var(--bg-card);
            border-color: var(--accent-primary);
        }

        /* Trust Badges */
        .trust-section {
            padding: 48px 0;
            border-top: 1px solid var(--border-color);
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .trust-badge i {
            font-size: 1.25rem;
            color: var(--text-secondary);
        }

        /* API Section */
        .api-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
        }

        .api-section .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .api-section .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .api-section .section-subtitle {
            color: var(--text-secondary);
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .api-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 24px;
            margin-bottom: 48px;
        }

        .api-code-example {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 28px;
            margin-bottom: 32px;
        }

        .api-code-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        .api-code-header h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .api-code-tabs {
            display: flex;
            gap: 8px;
        }

        .api-code-tab {
            padding: 6px 12px;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 0.75rem;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.2s;
        }

        .api-code-tab.active {
            background: var(--accent-primary);
            color: #fff;
            border-color: var(--accent-primary);
        }

        .api-code-block {
            background: #1e1e2e;
            border-radius: 10px;
            padding: 20px;
            overflow-x: auto;
        }

        .api-code-block pre {
            margin: 0;
            font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
            font-size: 0.85rem;
            line-height: 1.6;
            color: #cdd6f4;
        }

        .api-code-block .keyword { color: #cba6f7; }
        .api-code-block .string { color: #a6e3a1; }
        .api-code-block .comment { color: #6c7086; }
        .api-code-block .function { color: #89b4fa; }

        .api-cta {
            text-align: center;
            padding: 48px 32px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .api-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-primary), #6366f1, #8b5cf6);
        }

        .api-cta h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .api-cta p {
            color: var(--text-secondary);
            margin-bottom: 28px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .api-cta .btn-api {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: linear-gradient(135deg, var(--accent-primary) 0%, #6366f1 100%);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
        }

        .api-cta .btn-api:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
        }

        .api-cta .btn-api i {
            transition: transform 0.3s ease;
        }

        .api-cta .btn-api:hover i {
            transform: translateX(4px);
        }

        /* Saved IBANs Styles */
        .saved-iban-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 16px 20px;
            margin-bottom: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .saved-iban-card:hover {
            border-color: var(--accent-primary);
            transform: translateX(5px);
            box-shadow: var(--shadow-md);
        }

        .saved-iban-info {
            flex: 1;
        }

        .saved-iban-name {
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 4px;
            color: var(--text-primary);
        }

        .saved-iban-number {
            font-family: 'SF Mono', monospace;
            font-size: 0.85rem;
            color: var(--accent-primary);
            margin-bottom: 6px;
        }

        .saved-iban-details {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .saved-iban-actions {
            display: flex;
            gap: 8px;
        }

        .saved-iban-actions button {
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
            padding: 8px 12px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.8rem;
            transition: all 0.2s;
        }

        .saved-iban-actions button:hover {
            background: var(--bg-card);
            color: var(--text-primary);
            border-color: var(--accent-primary);
        }

        .saved-iban-actions button.btn-delete:hover {
            border-color: var(--accent-error);
            color: var(--accent-error);
        }

        .saved-iban-actions button.btn-copy:hover {
            border-color: var(--accent-success);
            color: var(--accent-success);
        }

        .saved-iban-actions button.btn-shre:hover {
            border-color: var(--accent-primary);
            color: var(--accent-primary);
        }

        .no-saved-ibans {
            text-align: center;
            padding: 60px 20px;
            color: var(--text-muted);
        }

        .no-saved-ibans i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--text-secondary);
        }

        /* Save IBAN Button in Results */
        .btn-save-iban {
            background: var(--accent-success);
            color: #fff;
            border: none;
            padding: 10px 18px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.85rem;
            font-weight: 500;
            margin-top: 16px;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-save-iban:hover {
            background: #16a34a;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
        }

        .btn-save-iban:disabled {
            background: var(--bg-tertiary);
            color: var(--text-muted);
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .btn-save-iban.saved {
            background: var(--bg-tertiary);
            color: var(--accent-success);
            border: 1px solid var(--accent-success);
        }

        /* Edit IBAN Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 30px;
            width: 90%;
            max-width: 450px;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .modal-overlay.show .modal-content {
            transform: scale(1);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .modal-header h3 {
            font-size: 1.1rem;
        }

        .modal-close {
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px;
        }

        .modal-close:hover {
            color: var(--text-primary);
        }

        .modal-input {
            width: 100%;
            padding: 14px 16px;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-primary);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .modal-input:focus {
            outline: none;
            border-color: var(--accent-primary);
        }

        .modal-actions {
            display: flex;
            gap: 12px;
            justify-content: flex-end;
        }

        .modal-btn {
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }

        .modal-btn.btn-cancel {
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
        }

        .modal-btn.btn-save {
            background: var(--accent-primary);
            border: none;
            color: #fff;
        }

        .modal-btn.btn-save:hover {
            background: #2563eb;
        }

        /* ===== ENHANCED FEATURES SECTION ===== */

        /* Feature Hero - Amiral Gemisi */
        .feature-hero {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 50%, rgba(236, 72, 153, 0.1) 100%);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 24px;
            padding: 48px;
            margin-bottom: 64px;
            display: flex;
            align-items: center;
            gap: 40px;
            position: relative;
            overflow: hidden;
        }

        .feature-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
            pointer-events: none;
        }

        .feature-hero-icon {
            width: 100px;
            height: 100px;
            min-width: 100px;
            background: linear-gradient(135deg, var(--accent-primary), #8b5cf6);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
        }

        .feature-hero-icon i {
            font-size: 2.5rem;
            color: #fff;
        }

        .feature-hero-content {
            flex: 1;
        }

        .feature-hero-badge {
            display: inline-block;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .feature-hero-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .feature-hero-desc {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        /* New Enhanced Feature Hero Styles */
        .feature-hero-icon-wrapper {
            position: relative;
        }

        .feature-hero-icon-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 140px;
            height: 140px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
            z-index: -1;
        }

        .feature-hero-badges {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 12px;
        }

        .feature-hero-badge.badge-flagship {
            background: linear-gradient(135deg, #f59e0b, #d97706);
        }

        .feature-hero-badge.badge-world-first {
            background: linear-gradient(135deg, #22c55e, #16a34a);
            animation: glow 2s ease-in-out infinite;
        }

        .feature-hero-subtitle {
            font-size: 1.15rem;
            color: var(--accent-primary);
            font-weight: 600;
            margin-bottom: 16px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .feature-hero-legacy {
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .legacy-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #1a1a1a;
            font-size: 0.85rem;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 20px;
            margin-bottom: 12px;
        }

        .legacy-badge i {
            font-size: 0.9rem;
        }

        .legacy-text {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin: 0;
        }

        .feature-point-icon {
            width: 36px;
            height: 36px;
            min-width: 36px;
            background: linear-gradient(135deg, var(--accent-primary), #8b5cf6);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .feature-point-content {
            flex: 1;
        }

        .feature-hero-points {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .feature-point {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 16px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .feature-point:hover {
            background: rgba(0, 0, 0, 0.3);
            transform: translateX(5px);
        }

        .feature-point i {
            width: 32px;
            height: 32px;
            min-width: 32px;
            background: linear-gradient(135deg, var(--accent-primary), #8b5cf6);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 0.85rem;
        }

        .feature-point strong {
            display: block;
            color: var(--text-primary);
            font-size: 0.95rem;
            margin-bottom: 2px;
        }

        .feature-point span {
            color: var(--text-muted);
            font-size: 0.85rem;
            line-height: 1.5;
        }

        /* Enhanced Features Grid */
        .features-grid-enhanced {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 24px;
            margin-bottom: 48px;
        }

        .feature-card-enhanced {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 32px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card-enhanced:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
            border-color: var(--accent-primary);
        }

        .feature-card-enhanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-primary), #8b5cf6);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-card-enhanced:hover::before {
            opacity: 1;
        }

        .feature-card-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
        }

        .feature-icon-enhanced {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .feature-icon-enhanced i {
            font-size: 1.5rem;
            color: #fff;
        }

        .gradient-purple {
            background: linear-gradient(135deg, #8b5cf6, #a855f7);
        }

        .gradient-green {
            background: linear-gradient(135deg, #22c55e, #16a34a);
        }

        .gradient-blue {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
        }

        .gradient-orange {
            background: linear-gradient(135deg, #f59e0b, #d97706);
        }

        .gradient-pink {
            background: linear-gradient(135deg, #ec4899, #db2777);
        }

        .gradient-red {
            background: linear-gradient(135deg, #ef4444, #dc2626);
        }

        .feature-card-enhanced h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
        }

        .feature-desc-main {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--text-secondary);
            padding: 8px 12px;
            background: var(--bg-tertiary);
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .feature-list li:hover {
            background: var(--bg-secondary);
            transform: translateX(5px);
        }

        .feature-list li i {
            color: var(--accent-success);
            font-size: 0.85rem;
        }

        .feature-card-enhanced.locked {
            position: relative;
            background: #141416;
            border-color: #222225;
        }

        .feature-card-enhanced.locked h3 {
            color: #8e8e96;
        }

        .feature-card-enhanced.locked .feature-desc-main {
            color: #8e8e96;
        }

        .feature-card-enhanced.locked .feature-list li {
            color: #8e8e96;
            background: #111113;
        }

        .feature-card-enhanced.locked .feature-icon-enhanced {
            opacity: 0.5;
        }

        .feature-card-enhanced.locked:hover {
            transform: none;
            border-color: var(--accent-primary);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        }

        .feature-card-enhanced.locked:hover::before {
            opacity: 1;
        }

        .feature-card-enhanced.locked::after {
            content: 'PRO';
            position: absolute;
            top: 16px;
            right: 16px;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 6px;
            letter-spacing: 0.5px;
        }

        /* Mini Feature Cards */
        .features-grid-sub {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 16px;
        }

        .feature-card-mini {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 14px;
            padding: 24px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature-card-mini:hover {
            transform: translateY(-4px);
            border-color: var(--accent-primary);
            box-shadow: var(--shadow-md);
        }

        .feature-card-mini i {
            font-size: 2rem;
            color: var(--accent-primary);
            margin-bottom: 12px;
        }

        .feature-card-mini h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .feature-card-mini p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .feature-card-mini.locked {
            position: relative;
            background: #141416;
            border-color: #222225;
        }

        .feature-card-mini.locked h3 {
            color: #8e8e96;
        }

        .feature-card-mini.locked p {
            color: #8e8e96;
        }

        .feature-card-mini.locked i {
            opacity: 0.5;
        }

        .feature-card-mini.locked::after {
            content: 'PRO';
            position: absolute;
            top: 10px;
            right: 10px;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: #fff;
            font-size: 0.65rem;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 4px;
        }

        /* Responsive adjustments for enhanced features */
        @media (max-width: 768px) {
            .feature-hero {
                flex-direction: column;
                text-align: center;
                padding: 32px 24px;
            }

            .feature-hero-icon {
                width: 80px;
                height: 80px;
                min-width: 80px;
            }

            .feature-hero-title {
                font-size: 1.4rem;
            }

            .feature-hero-points {
                text-align: left;
            }

            .feature-hero-badges {
                justify-content: center;
            }

            .feature-hero-subtitle {
                font-size: 1rem;
            }

            .feature-hero-legacy {
                padding: 16px;
            }

            .legacy-badge {
                font-size: 0.75rem;
            }

            .legacy-text {
                font-size: 0.85rem;
            }

            .feature-point-icon {
                width: 32px;
                height: 32px;
                min-width: 32px;
                font-size: 0.8rem;
            }

            .features-grid-enhanced {
                grid-template-columns: 1fr;
            }

            .feature-card-enhanced {
                padding: 24px;
            }
        }

        /* ===== MOTTO HERO STYLES ===== */
        .motto-hero {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 20px;
            padding: 50px 40px;
            margin-top: 80px;
            margin-bottom: 64px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .motto-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
            animation: float 8s ease-in-out infinite;
        }

        .motto-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            color: #fff;
            padding: 12px 24px;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 28px;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }

        .motto-badge i {
            font-size: 1.1rem;
            animation: pulse 2s ease-in-out infinite;
        }

        .motto-title {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 32px;
            letter-spacing: -1px;
        }

        .motto-content {
            position: relative;
            z-index: 1;
        }

        .motto-quote {
            font-size: 1.15rem;
            color: var(--text-secondary);
            font-style: italic;
            margin-bottom: 24px;
            line-height: 1.8;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .motto-solution {
            font-size: 1.05rem;
            color: var(--text-primary);
            margin-bottom: 28px;
            line-height: 1.8;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .motto-tagline {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(16, 185, 129, 0.15));
            border: 1px solid rgba(34, 197, 94, 0.3);
            color: var(--accent-success);
            padding: 14px 24px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            margin-top: 8px;
        }

        .motto-tagline i {
            color: var(--accent-warning);
            animation: glow 2s ease-in-out infinite;
        }

        @media (max-width: 768px) {
            .motto-hero {
                padding: 24px;
                margin-top: 32px;
            }

            .motto-title {
                font-size: 1.75rem;
            }

            .motto-badge {
                font-size: 0.8rem;
                padding: 8px 16px;
            }

            .motto-quote {
                font-size: 1rem;
            }

            .motto-solution {
                font-size: 0.95rem;
            }

            .motto-tagline {
                font-size: 0.85rem;
                padding: 10px 16px;
            }
        }

        /* ===== SCROLL REVEAL ===== */
        .scroll-reveal {
            opacity: 0;
            transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translate(0, 0) scale(1);
        }

        /* Yukarıdan gelme */
        .scroll-reveal-up {
            transform: translateY(60px);
        }

        /* Soldan gelme */
        .scroll-reveal-left {
            transform: translateX(-60px);
        }

        /* Sağdan gelme */
        .scroll-reveal-right {
            transform: translateX(60px);
        }

        /* Scale (büyüyerek gelme) */
        .scroll-reveal-scale {
            transform: scale(0.85);
        }

        /* Sol yukarıdan gelme */
        .scroll-reveal-up-left {
            transform: translateY(40px) translateX(-30px);
        }

        /* Sağ yukarıdan gelme */
        .scroll-reveal-up-right {
            transform: translateY(40px) translateX(30px);
        }

        /* Flip efekti */
        .scroll-reveal-flip {
            transform: perspective(600px) rotateX(15deg);
        }
        .scroll-reveal-flip.revealed {
            transform: perspective(600px) rotateX(0);
        }

        /* Stagger gecikmeleri - grid öğeler için */
        .scroll-stagger-1 { transition-delay: 0.05s; }
        .scroll-stagger-2 { transition-delay: 0.12s; }
        .scroll-stagger-3 { transition-delay: 0.19s; }
        .scroll-stagger-4 { transition-delay: 0.26s; }
        .scroll-stagger-5 { transition-delay: 0.33s; }
        .scroll-stagger-6 { transition-delay: 0.40s; }

        /* Validator bölümü özel */
        .validator-section .scroll-reveal {
            transition-duration: 0.8s;
        }

        /* Feature kartları hover'dan sonra reveal */
        .feature-card-enhanced.scroll-reveal,
        .feature-card-mini.scroll-reveal {
            transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
        }

        /* Trust badge stagger */
        .trust-badge.scroll-reveal {
            transition-duration: 0.5s;
        }

        /* Premium banner */
        .premium-banner.scroll-reveal {
            transition-duration: 0.8s;
        }

        /* Mobile - daha kısa mesafe */
        @media (max-width: 768px) {
            .scroll-reveal-up {
                transform: translateY(40px);
            }
            .scroll-reveal-left {
                transform: translateX(-40px);
            }
            .scroll-reveal-right {
                transform: translateX(40px);
            }
            .scroll-reveal-scale {
                transform: scale(0.9);
            }
        }
        /* ===== CLOUDFLARE TURNSTILE ===== */
        #turnstile-wrapper {
            display: flex;
            justify-content: center;
            margin: 16px 0;
        }

        #turnstile-wrapper iframe {
            border-radius: 8px;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
            }
            50% {
                transform: scale(1.02);
                box-shadow: 0 0 20px 5px rgba(59, 130, 246, 0.2);
            }
        }

        /* Turnstile widget dark mode uyumu */
        .cf-turnstile {
            border-radius: 8px;
            overflow: visible !important;
            display: inline-block !important;
            margin: 0 auto !important;
            min-width: 302px;
        }

        /* Turnstile yüklenirken */
        #turnstile-wrapper {
            margin: 20px 0 !important;
            display: none;
            justify-content: center;
            align-items: center;
            width: 100%;
            overflow: visible !important;
        }

        #turnstile-wrapper:not(:has(iframe)) {
            min-height: 65px;
            background: var(--bg-tertiary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #turnstile-wrapper:not(:has(iframe))::after {
            content: 'Güvenlik doğrulaması yükleniyor...';
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .cf-turnstile iframe {
            max-width: none !important;
            border: none !important;
        }

        .validator-card, .tab-content {
            overflow: visible !important;
        }
