﻿:root {
      --primary: rgb(244,63,94);
      --primary-hover: rgb(225,29,72);
      --secondary: #1D7BFF;
      --secondary-glow: rgba(29, 123, 255, 0.15);
      --dark-bg: #0A0F1D;
      --silver-white: #F1F5F9;
      --text-main: #0F172A;
      --text-muted: #475569;
      --border-color: #E2E8F0;
      --card-bg: #FFFFFF;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--text-main); background: #FAFBFD; line-height: 1.6; overflow-x: hidden; }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; height: auto; }
    
    
    .header { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; transition: var(--transition); }
    .header-container { max-width: 1200px; margin: 0 auto; padding: 15px 20px; display: flex; align-items: center; justify-content: space-between; }
    .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); white-space: nowrap; }
    .nav-desktop { display: flex; align-items: center; gap: 30px; }
    .nav-desktop a { font-size: 15px; font-weight: 500; color: var(--text-muted); transition: var(--transition); }
    .nav-desktop a:hover { color: var(--primary); }
    .nav-btn { background: var(--primary); color: #fff !important; padding: 8px 20px; border-radius: 99px; font-weight: 600 !important; box-shadow: 0 4px 12px rgba(244,63,94,0.2); }
    .nav-btn:hover { background: var(--primary-hover); transform: translateY(-1px); }
    .menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-main); }

    
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 998; opacity: 0; pointer-events: none; transition: var(--transition); }
    .drawer { position: fixed; top: 0; left: -300px; width: 300px; height: 100%; background: #fff; z-index: 999; box-shadow: 4px 0 20px rgba(0,0,0,0.15); display: flex; flex-direction: column; transition: var(--transition); }
    .drawer.active { left: 0; }
    .drawer-overlay.active { opacity: 1; pointer-events: auto; }
    .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; cursor: pointer; color: var(--text-muted); }
    .drawer-menu { padding: 20px 0; overflow-y: auto; flex: 1; }
    .drawer-menu a { display: block; padding: 12px 30px; font-size: 16px; font-weight: 500; color: var(--text-muted); border-left: 3px solid transparent; }
    .drawer-menu a:hover, .drawer-menu a.active { color: var(--primary); background: rgba(244,63,94,0.05); border-left-color: var(--primary); }

    
    .hero-layout-01 { background: radial-gradient(circle at 50% 10%, #15223F 0%, #0A0F1D 100%); color: #fff; padding: 100px 20px 140px; position: relative; text-align: center; overflow: hidden; }
    .hero-layout-01 .hero-glow { position: absolute; top: -10%; left: 50%; transform: translateX(-50%); width: 80%; height: 60%; background: radial-gradient(circle, rgba(29,123,255,0.18) 0%, transparent 70%); pointer-events: none; }
    .hero-layout-01 .container { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }
    .hero-layout-01 .badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(29, 123, 255, 0.15); border: 1px solid rgba(29, 123, 255, 0.3); color: #8FBAFF; padding: 6px 16px; border-radius: 99px; font-size: 13px; font-weight: 600; margin-bottom: 24px; letter-spacing: 0.5px; }
    .hero-layout-01 h1 { font-size: 52px; font-weight: 800; line-height: 1.25; background: linear-gradient(135deg, #FFFFFF 30%, #BDD6FF 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 20px; letter-spacing: -1px; }
    .hero-layout-01 p.subtitle { font-size: 18px; color: #94A3B8; max-width: 680px; margin: 0 auto 35px; line-height: 1.6; }
    .hero-layout-01 .btn-group { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 60px; }
    .hero-layout-01 .btn-primary { background: var(--secondary); color: #fff; padding: 14px 32px; border-radius: 8px; font-weight: 600; font-size: 16px; box-shadow: 0 10px 25px rgba(29, 123, 255, 0.3); transition: var(--transition); border: 1px solid var(--secondary); }
    .hero-layout-01 .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(29, 123, 255, 0.4); }
    .hero-layout-01 .btn-outline { background: transparent; color: #E2E8F0; padding: 14px 32px; border-radius: 8px; font-weight: 600; font-size: 16px; border: 1px solid rgba(255,255,255,0.2); transition: var(--transition); }
    .hero-layout-01 .btn-outline:hover { background: rgba(255,255,255,0.05); color: #fff; border-color: rgba(255,255,255,0.4); }
    
    
    .visual-wrapper { max-width: 1000px; margin: 0 auto -200px; position: relative; z-index: 10; padding: 0 20px; }
    .central-panel { background: rgba(15, 23, 42, 0.6); border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(16px); border-radius: 20px; padding: 40px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); }
    .panel-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 20px; margin-bottom: 30px; }
    .panel-title { font-size: 18px; font-weight: 700; color: #F1F5F9; display: flex; align-items: center; gap: 8px; }
    .panel-title::before { content: ''; display: inline-block; width: 8px; height: 8px; background: #1D7BFF; border-radius: 50%; box-shadow: 0 0 10px #1D7BFF; }
    .panel-meta { display: flex; gap: 12px; font-size: 12px; color: #64748B; }
    .panel-meta span { background: rgba(255,255,255,0.05); padding: 4px 10px; border-radius: 4px; }
    
    
    .simulator-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; }
    .sim-card { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); padding: 20px; border-radius: 12px; }
    .sim-card label { font-size: 12px; color: #94A3B8; text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 8px; }
    .sim-card .value { font-size: 28px; font-weight: 700; color: #FFFFFF; }
    .sim-card .unit { font-size: 14px; color: #64748B; margin-left: 4px; }
    
    
    .surrounding-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 30px; }
    .floating-card { background: #FFFFFF; border: 1px solid var(--border-color); border-radius: 16px; padding: 24px; text-align: left; box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04); transition: var(--transition); }
    .floating-card:hover { transform: translateY(-5px); box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08); border-color: rgba(29, 123, 255, 0.3); }
    .floating-card .icon-box { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: rgba(29, 123, 255, 0.1); color: var(--secondary); font-size: 20px; font-weight: bold; margin-bottom: 16px; }
    .floating-card h3 { font-size: 16px; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
    .floating-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

    
    .spacer-block { height: 260px; }

    
    .trust-bar { background: #fff; border-bottom: 1px solid var(--border-color); padding: 40px 20px; }
    .trust-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 30px; }
    .trust-item { text-align: center; }
    .trust-item .num { font-size: 36px; font-weight: 800; color: var(--secondary); line-height: 1; margin-bottom: 6px; }
    .trust-item .label { font-size: 14px; color: var(--text-muted); font-weight: 500; }

    
    .section-padding { padding: 80px 20px; }
    .section-title-wrap { text-align: center; max-width: 700px; margin: 0 auto 50px; }
    .section-title { font-size: 32px; font-weight: 800; color: var(--text-main); margin-bottom: 15px; }
    .section-desc { font-size: 16px; color: var(--text-muted); }

    
    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }
    .adv-card { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 16px; padding: 35px; text-align: center; transition: var(--transition); }
    .adv-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
    .adv-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(244,63,94,0.08); color: var(--primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 24px; font-weight: bold; }
    .adv-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
    .adv-card p { font-size: 14px; color: var(--text-muted); }

    
    .flow-section { background: #F8FAFC; }
    .flow-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; position: relative; }
    .flow-step { text-align: center; position: relative; }
    .flow-num { width: 50px; height: 50px; border-radius: 50%; background: var(--text-main); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; margin: 0 auto 20px; border: 4px solid #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.08); z-index: 2; position: relative; }
    .flow-step h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
    .flow-step p { font-size: 13px; color: var(--text-muted); padding: 0 15px; }

    
    .articles-section { background: #FFF; }
    .articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }
    .article-card { background: #fff; border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: var(--transition); }
    .article-card:hover { transform: translateY(-4px); box-shadow: 0 12px 25px rgba(0,0,0,0.08); }
    .article-img { aspect-ratio: 16/10; overflow: hidden; background: #e2e8f0; position: relative; }
    .article-img img { width: 100%; height: 100%; object-fit: cover; }
    .article-tag { position: absolute; top: 12px; left: 12px; background: rgba(0,0,0,0.6); color: #fff; padding: 4px 8px; border-radius: 4px; font-size: 11px; font-weight: 600; }
    .article-content { padding: 20px; display: flex; flex-direction: column; flex: 1; }
    .article-title { font-size: 16px; font-weight: 700; color: var(--text-main); line-height: 1.4; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .article-summary { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .article-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: #94A3B8; margin-top: auto; border-top: 1px solid var(--border-color); padding-top: 15px; }
    
    
    .cta-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%); color: #fff; text-align: center; padding: 80px 20px; position: relative; overflow: hidden; }
    .cta-container { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
    .cta-section h2 { font-size: 36px; font-weight: 800; margin-bottom: 20px; }
    .cta-section p { font-size: 18px; opacity: 0.9; margin-bottom: 35px; max-width: 600px; margin-left: auto; margin-right: auto; }
    .cta-btn { background: #FFFFFF; color: var(--primary) !important; font-weight: 700; padding: 14px 36px; border-radius: 99px; font-size: 16px; display: inline-block; box-shadow: 0 10px 25px rgba(0,0,0,0.1); transition: var(--transition); }
    .cta-btn:hover { transform: scale(1.05); }

    
    .footer { background: #0F172A; color: #94A3B8; padding: 70px 20px 30px; border-top: 1px solid rgba(255,255,255,0.05); }
    .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; margin-bottom: 50px; }
    .footer-brand .logo span { color: #fff; }
    .footer-brand p { margin-top: 20px; font-size: 14px; line-height: 1.6; }
    .footer-col h4 { font-size: 15px; font-weight: 700; color: #F1F5F9; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a { font-size: 14px; transition: var(--transition); }
    .footer-col ul li a:hover { color: #fff; }
    .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 13px; }
    .footer-bottom-links { display: flex; gap: 20px; }

    
    @media (max-width: 1024px) {
      .hero-layout-01 h1 { font-size: 40px; }
      .surrounding-cards { grid-template-columns: repeat(2, 1fr); }
      .visual-wrapper { margin-bottom: -150px; }
      .spacer-block { height: 200px; }
    }
    @media (max-width: 768px) {
      .nav-desktop { display: none; }
      .menu-toggle { display: block; }
      .hero-layout-01 h1 { font-size: 32px; }
      .hero-layout-01 p.subtitle { font-size: 15px; }
      .simulator-grid { grid-template-columns: 1fr; }
      .surrounding-cards { grid-template-columns: 1fr; }
      .visual-wrapper { margin-bottom: -80px; }
      .spacer-block { height: 120px; }
      .grid-3 { grid-template-columns: 1fr; }
      .flow-steps { grid-template-columns: 1fr; }
      .articles-grid { grid-template-columns: 1fr; }
      .footer-container { grid-template-columns: 1fr; }
    }