﻿:root {
            --primary: #1D7BFF;
            --primary-hover: #0056C6;
            --dark-ink: #0B132B;
            --dark-surface: #1C2541;
            --glacier-blue: #E0F2FE;
            --silver-white: #F8FAFC;
            --text-dark: #1E293B;
            --text-muted: #64748B;
            --theme-gray: rgb(83,92,104);
            --transition: all 0.3s ease;
            --border-color: rgba(226, 232, 240, 0.8);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--silver-white);
            color: var(--text-dark);
            line-height: 1.6;
        }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        img { max-width: 100%; height: auto; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .site-header {
            background-color: var(--dark-ink);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 70px;
            display: flex;
            align-items: center;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        .logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        .logo img {
            display: block;
            height: 38px;
            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: #ffffff;
            white-space: nowrap;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 25px;
        }
        .nav-menu a {
            color: #94A3B8;
            font-size: 15px;
            font-weight: 500;
        }
        .nav-menu a:hover {
            color: #ffffff;
        }
        .nav-menu a.active {
            color: var(--primary);
        }
        .header-btn {
            background-color: var(--primary);
            color: #ffffff !important;
            padding: 8px 18px;
            border-radius: 6px;
            font-weight: 600;
        }
        .header-btn:hover {
            background-color: var(--primary-hover);
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 24px;
            cursor: pointer;
        }

        
        .drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(4px);
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        .drawer-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .drawer {
            position: fixed;
            top: 0;
            left: -300px;
            width: 300px;
            height: 100%;
            background: var(--dark-ink);
            z-index: 10000;
            box-shadow: 5px 0 25px rgba(0,0,0,0.5);
            transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            padding: 20px;
        }
        .drawer.active {
            left: 0;
        }
        .drawer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 15px;
            margin-bottom: 20px;
        }
        .drawer-close {
            background: none;
            border: none;
            color: #ffffff;
            font-size: 28px;
            cursor: pointer;
        }
        .drawer-nav {
            display: flex;
            flex-direction: column;
            gap: 15px;
            overflow-y: auto;
        }
        .drawer-nav a {
            color: #94A3B8;
            font-size: 16px;
            font-weight: 500;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .drawer-nav a:hover, .drawer-nav a.active {
            color: #ffffff;
            padding-left: 5px;
        }

        
        .hero-layout-01 {
            background: radial-gradient(circle at top, #111E38 0%, var(--dark-ink) 100%);
            color: #ffffff;
            padding: 100px 0 120px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .hero-layout-01::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(29, 123, 255, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(29, 123, 255, 0.15);
            border: 1px solid rgba(29, 123, 255, 0.3);
            color: #1D7BFF;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .hero-title {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 0%, #E2E8F0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-subtitle {
            font-size: 18px;
            color: #94A3B8;
            max-width: 700px;
            margin: 0 auto 35px;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 60px;
        }
        .btn-primary {
            background-color: var(--primary);
            color: #ffffff;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(29, 123, 255, 0.4);
        }
        .btn-primary:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
        }
        .btn-secondary {
            background-color: rgba(255, 255, 255, 0.05);
            color: #ffffff;
            border: 1px solid rgba(255,255,255,0.1);
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
        }
        .btn-secondary:hover {
            background-color: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }
        
        
        .hero-visual-wrapper {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        .hero-visual-panel {
            background: rgba(15, 23, 42, 0.7);
            border: 1px solid rgba(29, 123, 255, 0.2);
            border-radius: 16px;
            padding: 30px;
            backdrop-filter: blur(12px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }
        .hero-visual-panel img {
            border-radius: 8px;
            opacity: 0.95;
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
        }
        .floating-card {
            position: absolute;
            background: rgba(15, 23, 42, 0.85);
            border: 1px solid rgba(29, 123, 255, 0.25);
            border-radius: 12px;
            padding: 15px;
            width: 180px;
            text-align: left;
            backdrop-filter: blur(8px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: var(--transition);
        }
        .floating-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }
        .fc-top-left { top: -20px; left: -100px; }
        .fc-top-right { top: -20px; right: -100px; }
        .fc-bottom-left { bottom: 20px; left: -120px; }
        .fc-bottom-right { bottom: 20px; right: -120px; }
        
        .floating-card .icon {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 8px;
        }
        .floating-card h4 {
            font-size: 14px;
            color: #ffffff;
            margin-bottom: 4px;
        }
        .floating-card p {
            font-size: 12px;
            color: #94A3B8;
        }
        .mobile-hero-cards {
            display: none;
        }

        
        .trust-strip {
            background-color: var(--silver-white);
            border-bottom: 1px solid var(--border-color);
            padding: 30px 0;
        }
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }
        .trust-item h3 {
            font-size: 28px;
            color: var(--theme-gray);
            font-weight: 700;
            margin-bottom: 5px;
        }
        .trust-item p {
            color: var(--text-muted);
            font-size: 14px;
        }

        
        .section { padding: 80px 0; }
        .bg-white { background-color: #ffffff; }
        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 50px;
        }
        .section-header h2 {
            font-size: 32px;
            color: var(--text-dark);
            font-weight: 700;
            margin-bottom: 15px;
        }
        .section-header p {
            color: var(--text-muted);
        }
        
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .card {
            background-color: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 30px;
            transition: var(--transition);
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border-color: var(--primary);
        }
        .card-icon {
            width: 50px;
            height: 50px;
            background-color: var(--glacier-blue);
            color: var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 20px;
        }
        .card h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: var(--text-dark);
        }
        .card p {
            color: var(--text-muted);
            font-size: 15px;
        }

        
        .news-section {
            background-color: #ffffff;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }
        .news-card {
            background-color: var(--silver-white);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.08);
            border-color: var(--primary);
        }
        .news-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .news-card:hover .news-img img {
            transform: scale(1.05);
        }
        .news-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary);
            color: #ffffff;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
        }
        .news-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .news-meta {
            display: flex;
            gap: 15px;
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 10px;
        }
        .news-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .news-summary {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 15px;
            flex-grow: 1;
        }
        .news-footer {
            border-top: 1px solid var(--border-color);
            padding-top: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .news-btn {
            font-size: 14px;
            color: var(--primary);
            font-weight: 600;
        }

        
        .cta-section {
            background: linear-gradient(135deg, var(--dark-ink) 0%, var(--dark-surface) 100%);
            color: #ffffff;
            text-align: center;
            padding: 80px 0;
            position: relative;
        }
        .cta-title { font-size: 32px; font-weight: 700; margin-bottom: 15px; }
        .cta-desc { font-size: 16px; color: #94A3B8; max-width: 600px; margin: 0 auto 30px; }

        
        .site-footer {
            background-color: var(--dark-ink);
            color: #94A3B8;
            padding: 60px 0 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo-area .logo span { color: #ffffff; }
        .footer-desc { margin-top: 15px; font-size: 14px; line-height: 1.6; }
        .footer-title { color: #ffffff; font-size: 16px; font-weight: 600; margin-bottom: 20px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { font-size: 14px; }
        .footer-links a:hover { color: #ffffff; }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }
        .footer-legal a { margin-left: 15px; }
        .footer-legal a:hover { color: #ffffff; }

        
        @media (max-width: 1024px) {
            .fc-top-left { left: -30px; }
            .fc-top-right { right: -30px; }
            .fc-bottom-left { left: -40px; }
            .fc-bottom-right { right: -40px; }
        }
        @media (max-width: 768px) {
            .nav-menu { display: none; }
            .menu-toggle { display: block; }
            .hero-title { font-size: 32px; }
            .hero-subtitle { font-size: 16px; }
            .floating-card { display: none; }
            .hero-visual-panel { display: none; }
            .mobile-hero-cards {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
                margin-top: 30px;
            }
            .mobile-hero-cards .floating-card {
                display: block;
                position: static;
                width: 100%;
                background: rgba(255, 255, 255, 0.03);
                border: 1px solid rgba(255, 255, 255, 0.1);
            }
            .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
            .grid-3, .news-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
            .footer-legal a { margin: 0 8px; }
        }