﻿:root {
      --primary: #1D7BFF;
      --primary-hover: #0056b3;
      --accent: rgb(255,45,85);
      --bg-dark: #0B132B;
      --bg-dark-light: #1C2541;
      --text-light: #F8F9FA;
      --text-muted: #A0AEC0;
      --border-color: rgba(29, 123, 255, 0.2);
      --glacier-white: #E2F1FF;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background-color: var(--bg-dark); color: var(--text-light); line-height: 1.6; overflow-x: hidden; }
    a { color: inherit; text-decoration: none; transition: all 0.3s; }
    
    
    header { background: rgba(11, 19, 43, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); position: fixed; width: 100%; top: 0; z-index: 1000; }
    .header-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; }
    .logo { display: inline-flex; align-items: center; gap: 12px; }
    .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(--glacier-white); white-space: nowrap; }
    
    nav.desktop-nav { display: flex; align-items: center; gap: 24px; }
    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); }
    .nav-btn { background: var(--primary); color: white; padding: 8px 16px; border-radius: 6px; font-size: 14px; font-weight: bold; }
    .nav-btn:hover { background: var(--primary-hover); transform: translateY(-1px); }
    
    .menu-toggle { display: none; background: none; border: none; color: var(--text-light); font-size: 24px; cursor: pointer; }
    
    
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 2000; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
    .drawer { position: fixed; top: 0; left: -300px; width: 300px; height: 100%; background: var(--bg-dark-light); z-index: 2001; transition: left 0.3s ease; display: flex; flex-direction: column; padding: 20px; box-shadow: 5px 0 15px rgba(0,0,0,0.5); }
    .drawer.open { left: 0; }
    .drawer-overlay.open { opacity: 1; pointer-events: auto; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; border-bottom: 1px solid var(--border-color); padding-bottom: 15px; }
    .drawer-close { background: none; border: none; color: var(--text-light); font-size: 24px; cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; overflow-y: auto; flex-grow: 1; }
    .drawer-nav a { font-size: 16px; color: var(--text-muted); padding: 5px 0; }
    .drawer-nav a:hover { color: var(--primary); }

    
    .hero-layout-01 { position: relative; padding: 140px 20px 100px; text-align: center; background: radial-gradient(circle at center, rgba(29, 123, 255, 0.15) 0%, var(--bg-dark) 70%); border-bottom: 1px solid var(--border-color); overflow: hidden; }
    .hero-container { max-width: 1000px; margin: 0 auto; position: relative; z-index: 2; }
    .hero-badge { display: inline-block; background: rgba(29, 123, 255, 0.1); border: 1px solid var(--primary); color: var(--primary); padding: 6px 16px; border-radius: 50px; font-size: 14px; font-weight: 600; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px; }
    .hero-title { font-size: 48px; font-weight: 800; line-height: 1.2; color: #FFF; margin-bottom: 20px; letter-spacing: -0.5px; }
    .hero-title span { color: var(--primary); }
    .hero-subtitle { font-size: 18px; color: var(--text-muted); max-width: 700px; margin: 0 auto 35px; }
    .hero-buttons { display: flex; justify-content: center; gap: 16px; margin-bottom: 60px; }
    .btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; border-radius: 6px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
    .btn-primary { background: var(--primary); color: white; border: 1px solid var(--primary); }
    .btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(29, 123, 255, 0.3); }
    .btn-secondary { background: transparent; color: var(--glacier-white); border: 1px solid rgba(255,255,255,0.2); }
    .btn-secondary:hover { background: rgba(255,255,255,0.05); border-color: var(--primary); transform: translateY(-2px); }

    
    .hero-visual-panel { position: relative; max-width: 800px; margin: 0 auto; background: rgba(28, 37, 65, 0.5); border: 1px solid var(--border-color); border-radius: 12px; padding: 40px 20px; backdrop-filter: blur(5px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
    .panel-mockup { font-family: monospace; text-align: left; background: #070D19; padding: 20px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); color: #00FFCC; font-size: 13px; max-width: 600px; margin: 0 auto; overflow-x: auto; }
    
    
    .float-card { position: absolute; background: rgba(11, 19, 43, 0.95); border: 1px solid var(--border-color); border-radius: 8px; padding: 12px 18px; display: flex; align-items: center; gap: 12px; width: 220px; text-align: left; box-shadow: 0 10px 20px rgba(0,0,0,0.3); transition: transform 0.3s; }
    .float-card:hover { transform: translateY(-5px); border-color: var(--accent); }
    .float-card .icon { font-size: 24px; color: var(--primary); }
    .float-card h4 { font-size: 14px; font-weight: bold; color: #FFF; margin-bottom: 2px; }
    .float-card p { font-size: 11px; color: var(--text-muted); }
    
    
    .card-tl { top: -20px; left: -80px; }
    .card-tr { top: -20px; right: -80px; }
    .card-bl { bottom: -20px; left: -80px; }
    .card-br { bottom: -20px; right: -80px; }

    
    .trust-strip { padding: 30px 20px; background: var(--bg-dark-light); border-bottom: 1px solid var(--border-color); text-align: center; }
    .trust-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
    .trust-item { display: flex; flex-direction: column; align-items: center; }
    .trust-val { font-size: 24px; font-weight: bold; color: var(--primary); }
    .trust-lbl { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

    
    section.section-padding { padding: 80px 20px; }
    .container { max-width: 1200px; margin: 0 auto; }
    .section-title { text-align: center; margin-bottom: 50px; }
    .section-title h2 { font-size: 32px; font-weight: 700; color: #FFF; margin-bottom: 12px; }
    .section-title p { color: var(--text-muted); font-size: 16px; max-width: 600px; margin: 0 auto; }

    
    .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
    .feat-card { background: var(--bg-dark-light); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; padding: 30px; transition: all 0.3s; }
    .feat-card:hover { border-color: var(--primary); transform: translateY(-5px); }
    .feat-icon { width: 50px; height: 50px; background: rgba(29, 123, 255, 0.1); display: flex; align-items: center; justify-content: center; border-radius: 8px; margin-bottom: 20px; color: var(--primary); font-size: 24px; }
    .feat-card h3 { font-size: 20px; margin-bottom: 12px; color: #FFF; }
    .feat-card p { color: var(--text-muted); font-size: 14px; }

    
    .news-section { background: rgba(28,37,65,0.3); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
    .article-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
    .article-card { background: var(--bg-dark-light); border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); transition: transform 0.3s; display: flex; flex-direction: column; height: 100%; }
    .article-card:hover { transform: translateY(-5px); border-color: var(--primary); }
    .article-img { width: 100%; height: 200px; object-fit: cover; background: #000; }
    .article-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
    .article-meta { display: flex; align-items: center; gap: 15px; font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
    .article-title { font-size: 18px; font-weight: bold; color: #FFF; margin-bottom: 10px; line-height: 1.4; }
    .article-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; flex-grow: 1; }
    .article-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 15px; font-size: 13px; }
    .article-tags { color: var(--primary); }

    
    .cta-section { text-align: center; background: linear-gradient(135deg, var(--bg-dark-light) 0%, #080D19 100%); border-top: 1px solid var(--border-color); }
    .cta-box { max-width: 800px; margin: 0 auto; padding: 40px 20px; }

    
    footer { background: #050A14; border-top: 1px solid var(--border-color); padding: 60px 20px 20px; color: var(--text-muted); font-size: 14px; }
    .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
    .footer-brand { display: flex; flex-direction: column; gap: 15px; }
    .footer-brand p { font-size: 13px; line-height: 1.8; }
    .footer-col h4 { color: #FFF; margin-bottom: 20px; font-size: 16px; font-weight: bold; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a:hover { color: var(--primary); }
    .footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 15px; font-size: 12px; }

    @media (max-width: 1024px) {
      .float-card { position: static; width: 100%; margin-top: 15px; }
      .hero-visual-panel { padding: 20px; }
      .hero-title { font-size: 32px; }
    }
    @media (max-width: 768px) {
      nav.desktop-nav { display: none; }
      .menu-toggle { display: block; }
      .footer-container { grid-template-columns: 1fr; gap: 30px; }
    }