﻿:root {
            --primary: rgb(239, 68, 68);
            --primary-hover: rgb(220, 38, 38);
            --primary-light: rgba(239, 68, 68, 0.1);
            --dark-blue: #0B192C;
            --glacier-blue: #1D7BFF;
            --silver-white: #F8FAFC;
            --text-dark: #1E293B;
            --text-light: #64748B;
            --border-color: #E2E8F0;
            --card-shadow: 0 10px 30px -5px rgba(0,0,0,0.05);
            --glow-blue: 0 0 50px rgba(29, 123, 255, 0.15);
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: var(--text-dark);
            background-color: var(--silver-white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 72px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
        }

        .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: 18px;
            font-weight: 800;
            line-height: 1;
            color: var(--dark-blue);
            white-space: nowrap;
        }

        .nav-desktop {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-desktop a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-dark);
        }

        .nav-desktop a:hover {
            color: var(--primary);
        }

        .header-btns {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .btn-reg {
            background: var(--primary);
            color: #fff !important;
            padding: 8px 20px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
        }

        .btn-reg:hover {
            background: var(--primary-hover);
            transform: translateY(-1px);
        }

        .menu-trigger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }

        .menu-trigger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--text-dark);
            transition: 0.3s;
        }

        
        .drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(11, 25, 44, 0.5);
            backdrop-filter: blur(5px);
            z-index: 1999;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
        }

        .drawer {
            position: fixed;
            top: 0;
            left: -320px;
            width: 300px;
            height: 100%;
            background: #fff;
            z-index: 2000;
            transition: cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
            display: flex;
            flex-direction: column;
            box-shadow: 10px 0 30px rgba(0,0,0,0.1);
        }

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

        .drawer-close {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-light);
            cursor: pointer;
        }

        .drawer-nav {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .drawer-nav a {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
            padding: 10px 15px;
            border-radius: 8px;
            background: #f8fafc;
        }

        .drawer-nav a:hover {
            background: var(--primary-light);
            color: var(--primary);
        }

        
        .drawer-active .drawer {
            left: 0;
        }

        .drawer-active .drawer-overlay {
            opacity: 1;
            visibility: visible;
        }

        
        .hero-layout-01 {
            padding-top: 140px;
            padding-bottom: 100px;
            background: radial-gradient(circle at 50% 30%, #E0F2FE 0%, var(--silver-white) 70%);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-layout-01::before {
            content: '';
            position: absolute;
            top: 20%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(29, 123, 255, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(29, 123, 255, 0.08);
            border: 1px solid rgba(29, 123, 255, 0.2);
            color: var(--glacier-blue);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
            letter-spacing: 1px;
        }

        .hero-layout-01 h1 {
            font-size: 48px;
            font-weight: 800;
            color: var(--dark-blue);
            line-height: 1.2;
            max-width: 900px;
            margin-bottom: 20px;
        }

        .hero-layout-01 h1 span {
            color: var(--glacier-blue);
            position: relative;
        }

        .hero-desc {
            font-size: 18px;
            color: var(--text-light);
            max-width: 700px;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .hero-actions {
            display: flex;
            gap: 20px;
            margin-bottom: 60px;
            z-index: 10;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--glacier-blue), #0056D2);
            color: #fff;
            padding: 14px 36px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 16px;
            box-shadow: 0 4px 15px rgba(29, 123, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(29, 123, 255, 0.4);
        }

        .btn-secondary {
            background: #fff;
            color: var(--dark-blue);
            border: 1px solid var(--border-color);
            padding: 14px 36px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
        }

        .btn-secondary:hover {
            background: #F1F5F9;
            border-color: var(--glacier-blue);
        }

        
        .visual-system {
            position: relative;
            width: 100%;
            max-width: 1000px;
            margin-top: 20px;
            padding: 0 20px;
        }

        .main-panel {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.7);
            border-radius: 24px;
            padding: 40px;
            box-shadow: var(--card-shadow);
            backdrop-filter: blur(20px);
            position: relative;
            z-index: 2;
        }

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

        .panel-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark-blue);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .panel-status {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: #10B981;
            background: rgba(16, 185, 129, 0.1);
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 600;
        }

        .panel-status::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #10B981;
            border-radius: 50%;
            display: inline-block;
        }

        .panel-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .panel-item {
            text-align: left;
        }

        .panel-item label {
            font-size: 13px;
            color: var(--text-light);
            display: block;
            margin-bottom: 8px;
        }

        .panel-item .value {
            font-size: 28px;
            font-weight: 800;
            color: var(--dark-blue);
        }

        .panel-item .desc {
            font-size: 12px;
            color: #10B981;
            margin-top: 5px;
        }

        
        .float-card {
            position: absolute;
            background: #fff;
            border-radius: 16px;
            padding: 16px 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 3;
            transition: 0.3s ease;
            border: 1px solid rgba(29, 123, 255, 0.1);
        }

        .float-card:hover {
            transform: translateY(-5px);
        }

        .float-card .icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 20px;
            font-weight: bold;
        }

        .float-card.blue-theme .icon {
            background: rgba(29, 123, 255, 0.1);
            color: var(--glacier-blue);
        }

        .float-card-content {
            text-align: left;
        }

        .float-card-content h4 {
            font-size: 14px;
            color: var(--dark-blue);
            font-weight: 700;
        }

        .float-card-content p {
            font-size: 12px;
            color: var(--text-light);
        }

        
        .fc-1 { top: -20px; left: -60px; }
        .fc-2 { top: -30px; right: -60px; }
        .fc-3 { bottom: -20px; left: -40px; }
        .fc-4 { bottom: -30px; right: -40px; }

        
        .trust-banner {
            background: #fff;
            padding: 30px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .trust-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .trust-item span {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
        }

        
        .section-padding {
            padding: 100px 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-header h2 {
            font-size: 36px;
            font-weight: 800;
            color: var(--dark-blue);
            margin-bottom: 15px;
        }

        .section-header p {
            font-size: 16px;
            color: var(--text-light);
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .adv-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--card-shadow);
            border: 1px solid transparent;
            transition: 0.3s;
        }

        .adv-card:hover {
            border-color: rgba(239, 68, 68, 0.2);
            transform: translateY(-5px);
        }

        .adv-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 24px;
            margin-bottom: 25px;
        }

        .adv-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 15px;
        }

        .adv-card p {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.7;
        }

        
        .guide-section {
            background: #0B192C;
            color: #fff;
        }

        .guide-section .section-header h2 {
            color: #fff;
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            position: relative;
        }

        .step-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.05);
            padding: 30px;
            border-radius: 16px;
            text-align: center;
            position: relative;
        }

        .step-num {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            margin: 0 auto 20px;
        }

        .step-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .step-card p {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
        }

        
        .article-section {
            background: #F1F5F9;
        }

        .article-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .article-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
        }

        .article-img {
            height: 200px;
            background: #E2E8F0;
            position: relative;
            overflow: hidden;
        }

        .article-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .article-content {
            padding: 24px;
        }

        .article-meta {
            display: flex;
            gap: 15px;
            font-size: 12px;
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .article-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .article-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .article-summary {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 15px;
            height: 66px;
            overflow: hidden;
        }

        .article-tags {
            display: flex;
            gap: 8px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .article-tags a {
            font-size: 12px;
            background: #F1F5F9;
            color: var(--text-light);
            padding: 2px 10px;
            border-radius: 4px;
        }

        .article-more {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        
        .cta-section {
            background: linear-gradient(135deg, var(--dark-blue), #1E293B);
            color: #fff;
            text-align: center;
        }

        .cta-box {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-box h2 {
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta-box p {
            font-size: 18px;
            color: rgba(255,255,255,0.8);
            margin-bottom: 40px;
        }

        
        footer {
            background: #0B192C;
            color: rgba(255,255,255,0.7);
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-main {
            padding: 80px 0 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 40px;
        }

        .footer-brand .logo span {
            color: #fff;
        }

        .footer-brand p {
            margin-top: 15px;
            font-size: 14px;
            line-height: 1.8;
        }

        .footer-column h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            font-size: 14px;
        }

        .footer-column ul li a:hover {
            color: #fff;
        }

        .footer-contact p {
            font-size: 14px;
            margin-bottom: 12px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding: 30px 0;
            font-size: 13px;
        }

        .footer-bottom-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-links {
            display: flex;
            gap: 20px;
        }

        
        @media (max-width: 1024px) {
            .fc-1, .fc-2, .fc-3, .fc-4 {
                position: static;
                margin-bottom: 15px;
            }
            .visual-system {
                display: flex;
                flex-direction: column;
                gap: 15px;
                margin-top: 40px;
            }
            .panel-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .grid-3, .article-grid, .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .steps-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-desktop, .header-btns {
                display: none;
            }
            .menu-trigger {
                display: flex;
            }
            .hero-layout-01 h1 {
                font-size: 32px;
            }
            .hero-desc {
                font-size: 15px;
            }
            .grid-3, .article-grid, .steps-container, .footer-grid {
                grid-template-columns: 1fr;
            }
            .cta-box h2 {
                font-size: 28px;
            }
            .footer-bottom-container {
                flex-direction: column;
                text-align: center;
            }
        }