﻿:root {
      --primary-color: rgb(8, 145, 178);
      --primary-hover: rgb(6, 116, 143);
      --primary-light: rgba(8, 145, 178, 0.1);
      --bg-dark: #0b132b;
      --bg-darker: #050a18;
      --text-light: #f8fafc;
      --text-muted: #94a3b8;
      --text-dark: #1e293b;
      --border-color: rgba(255, 255, 255, 0.1);
      --card-bg-dark: rgba(28, 37, 65, 0.8);
      --glacier-blue: #e0f2fe;
      --silver-white: #f1f5f9;
      --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }

    
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background-color: #f8fafc; color: var(--text-dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }
    a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
    img { max-width: 100%; height: auto; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

    
    header { background-color: var(--bg-darker); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; backdrop-filter: blur(8px); }
    .header-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
    
    
    .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
    .logo img { display: block; height: 36px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
    .logo span { display: inline-block; font-size: 18px; font-weight: 800; color: var(--text-light); white-space: nowrap; letter-spacing: 0.5px; }

    
    .nav-menu { display: flex; align-items: center; gap: 32px; list-style: none; }
    .nav-menu a { color: var(--text-muted); font-size: 15px; font-weight: 500; }
    .nav-menu a:hover, .nav-menu a.active { color: var(--text-light); }
    
    .nav-right-btn { background-color: var(--primary-color); color: var(--text-light); padding: 10px 20px; border-radius: 6px; font-size: 14px; font-weight: 600; }
    .nav-right-btn:hover { background-color: var(--primary-hover); }

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

    
    .mobile-drawer-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); z-index: 1000; opacity: 0; transition: opacity 0.3s ease; }
    .mobile-drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background-color: var(--bg-darker); z-index: 1001; padding: 24px; display: flex; flex-direction: column; gap: 32px; transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 4px 0 25px rgba(0, 0, 0, 0.5); overflow-y: auto; }
    .mobile-drawer.active { left: 0; }
    .mobile-drawer-overlay.active { display: block; opacity: 1; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; }
    .drawer-close { background: none; border: none; color: var(--text-light); font-size: 28px; cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; }
    .drawer-nav a { color: var(--text-muted); font-size: 16px; font-weight: 500; padding: 8px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
    .drawer-nav a:hover { color: var(--text-light); }

    
    .hero-layout-01 { background: radial-gradient(circle at 50% 30%, #1c2541 0%, var(--bg-darker) 100%); position: relative; padding: 100px 0 160px; overflow: hidden; text-align: center; border-bottom: 1px solid var(--border-color); }
    .hero-layout-01 .hero-bg-glows { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
    .hero-layout-01 .glow { position: absolute; border-radius: 50%; filter: blur(120px); }
    .hero-layout-01 .glow-1 { top: -10%; left: 30%; width: 300px; height: 300px; background: rgba(29, 123, 255, 0.15); }
    .hero-layout-01 .glow-2 { top: 20%; left: 50%; width: 400px; height: 400px; background: rgba(8, 145, 178, 0.15); transform: translate(-50%, -50%); }
    
    .hero-layout-01 .hero-container { position: relative; z-index: 2; }
    .hero-layout-01 .hero-badge { display: inline-flex; align-items: center; background: rgba(8, 145, 178, 0.15); border: 1px solid rgba(8, 145, 178, 0.3); color: var(--glacier-blue); padding: 8px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px; }
    .hero-layout-01 .hero-title { font-size: 48px; font-weight: 800; color: var(--text-light); line-height: 1.2; max-width: 900px; margin: 0 auto 20px; letter-spacing: -1px; }
    .hero-layout-01 .hero-subtitle { font-size: 18px; color: var(--text-muted); max-width: 750px; margin: 0 auto 36px; line-height: 1.7; }
    .hero-layout-01 .hero-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 70px; }
    
    .btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; border: none; }
    .btn-primary { background-color: var(--primary-color); color: var(--text-light); box-shadow: 0 4px 14px rgba(8, 145, 178, 0.4); }
    .btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-2px); }
    .btn-secondary { background-color: rgba(255, 255, 255, 0.05); color: var(--text-light); border: 1px solid var(--border-color); }
    .btn-secondary:hover { background-color: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }

    
    .hero-visual-wrapper { position: relative; max-width: 860px; margin: 0 auto; }
    .hero-main-panel { background: var(--card-bg-dark); border: 1px solid var(--border-color); border-radius: 12px; padding: 30px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); backdrop-filter: blur(12px); }
    .panel-header { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 15px; margin-bottom: 20px; }
    .panel-header .dots { display: flex; gap: 6px; }
    .panel-header .dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
    .panel-header .dot:nth-child(1) { background-color: #ef4444; }
    .panel-header .dot:nth-child(2) { background-color: #f59e0b; }
    .panel-header .dot:nth-child(3) { background-color: #10b981; }
    .panel-header .panel-title { font-size: 13px; color: var(--text-muted); font-weight: 500; font-family: monospace; }
    
    .chart-mockup { height: 180px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; }
    .chart-line { position: absolute; top: 30%; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--primary-color), transparent); }
    .chart-bars { display: flex; align-items: flex-end; justify-content: space-between; height: 100%; padding: 0 20px; }
    .chart-bars span { width: 24px; background: linear-gradient(180deg, var(--primary-color) 0%, rgba(8,145,178,0.1) 100%); border-radius: 4px 4px 0 0; animation: pulseHeight 2s infinite alternate ease-in-out; }
    @keyframes pulseHeight { 0% { opacity: 0.7; } 100% { opacity: 1; } }

    
    .floating-card { position: absolute; background: rgba(11, 19, 43, 0.9); border: 1px solid rgba(8, 145, 178, 0.3); border-radius: 10px; padding: 15px 20px; display: flex; align-items: center; gap: 15px; text-align: left; box-shadow: var(--shadow-lg); backdrop-filter: blur(8px); width: 230px; transition: transform 0.3s ease; }
    .floating-card:hover { transform: scale(1.05); }
    .floating-card .card-icon { font-size: 24px; line-height: 1; color: var(--primary-color); }
    .floating-card h4 { font-size: 15px; font-weight: 700; color: var(--text-light); margin-bottom: 2px; }
    .floating-card p { font-size: 12px; color: var(--text-muted); line-height: 1.3; }

    .f-card-1 { top: -20px; left: -100px; }
    .f-card-2 { top: -20px; right: -100px; }
    .f-card-3 { bottom: 20px; left: -120px; }
    .f-card-4 { bottom: 20px; right: -120px; }

    
    .trust-banner { background-color: var(--bg-darker); padding: 40px 0; border-bottom: 1px solid var(--border-color); }
    .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
    .trust-item h3 { font-size: 28px; font-weight: 800; color: var(--primary-color); margin-bottom: 6px; }
    .trust-item p { font-size: 14px; color: var(--text-muted); }

    
    .section-padding { padding: 90px 0; }
    .section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
    .section-header h2 { font-size: 36px; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; letter-spacing: -0.5px; }
    .section-header p { font-size: 16px; color: #64748b; }

    
    .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .feature-card { background-color: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 40px 30px; transition: all 0.3s ease; box-shadow: var(--shadow-sm); }
    .feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
    .feature-icon { width: 56px; height: 56px; background-color: var(--primary-light); color: var(--primary-color); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 24px; }
    .feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
    .feature-card p { font-size: 15px; color: #64748b; line-height: 1.6; }

    
    .steps-section { background-color: #f1f5f9; }
    .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
    .step-card { text-align: center; position: relative; }
    .step-num { width: 48px; height: 48px; background-color: var(--primary-color); color: var(--text-light); font-size: 20px; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 4px 10px rgba(8,145,178,0.3); }
    .step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
    .step-card p { font-size: 14px; color: #64748b; }

    
    .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .post-card { background-color: #ffffff; border-radius: 12px; overflow: hidden; border: 1px solid #e2e8f0; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: all 0.3s ease; }
    .post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
    .post-img { height: 200px; overflow: hidden; background-color: #e2e8f0; position: relative; }
    .post-img img { width: 100%; height: 100%; object-fit: cover; }
    .post-tag { position: absolute; top: 15px; left: 15px; background: var(--primary-color); color: var(--text-light); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 3px; text-transform: uppercase; }
    .post-content { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
    .post-meta { display: flex; align-items: center; gap: 15px; font-size: 13px; color: #64748b; margin-bottom: 12px; }
    .post-title { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }
    .post-desc { font-size: 14px; color: #64748b; line-height: 1.5; margin-bottom: 20px; flex-grow: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .post-footer { border-top: 1px solid #f1f5f9; padding-top: 15px; display: flex; align-items: center; justify-content: space-between; }
    .post-more { font-size: 14px; font-weight: 600; color: var(--primary-color); }

    
    .cta-section { background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%); padding: 80px 0; text-align: center; border-bottom: 1px solid var(--border-color); }
    .cta-container h2 { font-size: 36px; font-weight: 800; color: var(--text-light); margin-bottom: 16px; }
    .cta-container p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto 32px; }

    
    footer { background-color: var(--bg-darker); color: var(--text-muted); padding: 80px 0 30px; border-top: 1px solid var(--border-color); }
    .footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
    .footer-brand .logo { margin-bottom: 20px; }
    .footer-brand .logo span { color: var(--text-light); }
    .footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
    .footer-group h4 { font-size: 16px; font-weight: 600; color: var(--text-light); margin-bottom: 24px; }
    .footer-group ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-group a { font-size: 14px; }
    .footer-group a:hover { color: var(--text-light); }
    
    .footer-bottom { border-top: 1px solid var(--border-color); padding-top: 30px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
    .footer-bottom-links { display: flex; gap: 20px; }
    .footer-bottom-links a:hover { color: var(--text-light); }

    
    @media (max-width: 1024px) {
      .f-card-1, .f-card-2, .f-card-3, .f-card-4 { position: static; width: 100%; transform: none !important; }
      .hero-visual-wrapper { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
      .hero-main-panel { order: -1; }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .news-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .nav-menu, .nav-right-btn { display: none; }
      .menu-toggle { display: block; }
      .hero-layout-01 .hero-title { font-size: 32px; }
      .hero-layout-01 .hero-subtitle { font-size: 15px; }
      .trust-grid { grid-template-columns: repeat(2, 1fr); }
      .features-grid { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: 1fr; }
      .news-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    }