﻿:root {
            --primary-color: rgb(98,114,164);
            --primary-glow: #1D7BFF;
            --secondary-glow: #00D2FF;
            --dark-bg: #0B0F19;
            --card-bg: #161D2F;
            --text-main: #F5F7FA;
            --text-muted: #9EAFCB;
            --border-color: rgba(255,255,255,0.08);
            --transition-speed: 0.3s;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: #060913;
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a { color: inherit; text-decoration: none; transition: all var(--transition-speed); }
        img { max-width: 100%; height: auto; }

        
        header {
            background-color: rgba(11, 15, 25, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 16px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        .logo img {
            display: block;
            height: 40px;
            width: auto;
            max-width: 160px;
            object-fit: contain;
            flex-shrink: 0;
        }
        .logo span {
            display: inline-block;
            font-size: 20px;
            font-weight: 800;
            line-height: 1;
            color: var(--text-main);
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        nav.desktop-nav {
            display: flex;
            align-items: center;
            gap: 28px;
        }
        nav.desktop-nav a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-muted);
        }
        nav.desktop-nav a:hover, nav.desktop-nav a.active {
            color: var(--primary-glow);
        }
        .nav-btn {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-glow));
            color: #fff;
            padding: 8px 18px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
        }
        .nav-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(29, 123, 255, 0.3);
        }
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1010;
        }
        .menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--text-main);
            border-radius: 3px;
            transition: var(--transition-speed);
        }

        
        .mobile-drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(0,0,0,0.6);
            backdrop-filter: blur(4px);
            z-index: 1005;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-speed);
        }
        .mobile-drawer {
            position: fixed;
            top: 0;
            left: -300px;
            width: 300px;
            height: 100vh;
            background-color: var(--dark-bg);
            border-right: 1px solid var(--border-color);
            z-index: 1006;
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 32px;
            transition: transform var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
        }
        .mobile-drawer.open {
            transform: translateX(300px);
        }
        .mobile-drawer-overlay.open {
            opacity: 1;
            visibility: visible;
        }
        .drawer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .drawer-close {
            font-size: 28px;
            cursor: pointer;
            color: var(--text-muted);
        }
        .drawer-nav {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .drawer-nav a {
            font-size: 16px;
            font-weight: 500;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.03);
        }

        
        .hero-layout-01 {
            padding: 140px 20px 80px 20px;
            background: radial-gradient(circle at top, rgba(29, 123, 255, 0.15) 0%, rgba(6, 9, 19, 1) 70%);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
        }
        .hero-layout-01 .brand-tag {
            background: rgba(29, 123, 255, 0.12);
            border: 1px solid rgba(29, 123, 255, 0.3);
            color: var(--secondary-glow);
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 24px;
            letter-spacing: 1px;
        }
        .hero-layout-01 h1 {
            font-size: clamp(32px, 5vw, 56px);
            line-height: 1.2;
            font-weight: 800;
            color: #fff;
            max-width: 900px;
            margin-bottom: 20px;
            background: linear-gradient(to bottom, #ffffff 40%, #c5d3ec 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-layout-01 p.subtitle {
            font-size: clamp(16px, 2vw, 19px);
            color: var(--text-muted);
            max-width: 720px;
            margin-bottom: 36px;
        }
        .hero-layout-01 .btn-group {
            display: flex;
            gap: 16px;
            margin-bottom: 60px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-glow) 0%, #0056b3 100%);
            color: #fff;
            padding: 14px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            box-shadow: 0 8px 24px rgba(29, 123, 255, 0.4);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(29, 123, 255, 0.6);
        }
        .btn-secondary {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.12);
            color: #fff;
            padding: 14px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
        }
        .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.2);
        }

        
        .visual-container {
            position: relative;
            max-width: 1000px;
            width: 100%;
            margin-top: 20px;
        }
        .main-visual-panel {
            background: rgba(22, 29, 47, 0.7);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            backdrop-filter: blur(10px);
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .main-visual-panel svg {
            width: 100%;
            height: 100%;
        }
        .floating-card {
            position: absolute;
            background: rgba(18, 26, 44, 0.9);
            border: 1px solid rgba(29, 123, 255, 0.2);
            border-radius: 12px;
            padding: 16px 20px;
            width: 180px;
            text-align: left;
            box-shadow: 0 10px 25px rgba(0,0,0,0.4);
            animation: floatUpDown 4s ease-in-out infinite;
        }
        .floating-card.fc-1 { top: 10%; left: -80px; animation-delay: 0s; }
        .floating-card.fc-2 { top: 60%; left: -60px; animation-delay: 1s; }
        .floating-card.fc-3 { top: 15%; right: -80px; animation-delay: 0.5s; }
        .floating-card.fc-4 { top: 65%; right: -60px; animation-delay: 1.5s; }

        .floating-card h4 {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 4px;
        }
        .floating-card p {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
        }
        .floating-card p span {
            color: var(--secondary-glow);
        }

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

        
        .trust-row {
            padding: 30px 20px;
            border-bottom: 1px solid var(--border-color);
            background-color: rgba(11, 15, 25, 0.5);
            display: flex;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-muted);
        }
        .trust-item svg {
            color: var(--primary-glow);
            width: 20px;
            height: 20px;
        }

        
        section { padding: 80px 20px; }
        .container { max-width: 1200px; margin: 0 auto; }
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-header h2 {
            font-size: clamp(26px, 4vw, 36px);
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
        }
        .section-header p {
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .feature-card {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 36px;
            transition: all var(--transition-speed);
        }
        .feature-card:hover {
            transform: translateY(-5px);
            border-color: rgba(29, 123, 255, 0.4);
            box-shadow: 0 10px 30px rgba(29, 123, 255, 0.1);
        }
        .feature-icon {
            background: rgba(29, 123, 255, 0.1);
            color: var(--primary-glow);
            width: 50px;
            height: 50px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }
        .feature-icon svg { width: 24px; height: 24px; }
        .feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: #fff; }
        .feature-card p { color: var(--text-muted); font-size: 15px; }

        
        .article-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        .article-card {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: all var(--transition-speed);
        }
        .article-card:hover {
            transform: translateY(-5px);
            border-color: rgba(29, 123, 255, 0.3);
        }
        .article-img {
            height: 200px;
            background-color: rgba(0,0,0,0.3);
            position: relative;
            overflow: hidden;
        }
        .article-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .article-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--primary-glow);
            color: #fff;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
        }
        .article-body {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 12px;
        }
        .article-body h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #fff;
            line-height: 1.4;
        }
        .article-body p {
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        .article-footer {
            border-top: 1px solid var(--border-color);
            padding-top: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .read-more-btn {
            color: var(--primary-glow);
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .read-more-btn:hover { color: var(--secondary-glow); }

        
        .steps-container {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        .step-item {
            flex: 1;
            min-width: 250px;
            background: linear-gradient(180deg, var(--card-bg) 0%, rgba(22, 29, 47, 0.4) 100%);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 30px;
            position: relative;
        }
        .step-num {
            font-size: 48px;
            font-weight: 900;
            color: rgba(29, 123, 255, 0.15);
            position: absolute;
            top: 15px;
            right: 20px;
            line-height: 1;
        }
        .step-item h3 { font-size: 18px; margin-bottom: 12px; color: #fff; }
        .step-item p { color: var(--text-muted); font-size: 14px; }

        
        .cta-section {
            background: radial-gradient(circle at center, rgba(98, 114, 164, 0.3) 0%, #060913 100%);
            border-top: 1px solid var(--border-color);
            text-align: center;
            padding: 100px 20px;
        }
        .cta-container h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: #fff; margin-bottom: 16px; }
        .cta-container p { color: var(--text-muted); font-size: 16px; max-width: 600px; margin: 0 auto 36px auto; }

        
        footer {
            background-color: var(--dark-bg);
            border-top: 1px solid var(--border-color);
            padding: 80px 20px 30px 20px;
            font-size: 14px;
            color: var(--text-muted);
        }
        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        .footer-brand .logo { margin-bottom: 20px; }
        .footer-brand p { margin-bottom: 20px; line-height: 1.6; }
        .footer-title { color: #fff; font-weight: 600; font-size: 15px; margin-bottom: 24px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a:hover { color: var(--primary-glow); }
        .footer-contact p { margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            border-top: 1px solid var(--border-color);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .disclaimer {
            font-size: 11px;
            color: rgba(255,255,255,0.3);
            margin-top: 30px;
            border-top: 1px dashed rgba(255,255,255,0.05);
            padding-top: 20px;
            line-height: 1.8;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        
        @media (max-width: 991px) {
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
            .floating-card { display: none; } 
        }
        @media (max-width: 768px) {
            nav.desktop-nav { display: none; }
            .menu-toggle { display: flex; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .hero-layout-01 { padding-top: 100px; }
        }