﻿:root {
      --primary: rgb(13,148,136);
      --primary-dark: #0f766e;
      --primary-light: #f0fdfa;
      --text-dark: #0f172a;
      --text-muted: #64748b;
      --bg-light: #f8fafc;
      --bg-white: #ffffff;
      --border: #e2e8f0;
      --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
      --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: var(--font); color: var(--text-dark); background-color: var(--bg-white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
    a { color: inherit; text-decoration: none; transition: all 0.2s ease; }
    
    
    header { background: var(--bg-white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
    .header-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 16px 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: 20px; font-weight: 800; line-height: 1; color: var(--text-dark); white-space: nowrap; }
    .nav-menu { display: flex; align-items: center; gap: 28px; }
    .nav-menu a { font-size: 15px; font-weight: 500; color: var(--text-dark); }
    .nav-menu a:hover { color: var(--primary); }
    .header-right { display: flex; align-items: center; gap: 16px; }
    .btn-header { background: var(--primary); color: white !important; padding: 8px 18px; border-radius: 6px; font-size: 14px; font-weight: 600; }
    .btn-header:hover { background: var(--primary-dark); }
    .menu-btn { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-dark); }

    
    .drawer-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 998; }
    .drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background: var(--bg-white); z-index: 999; box-shadow: 2px 0 10px rgba(0,0,0,0.1); transition: left 0.3s ease; display: flex; flex-direction: column; }
    .drawer.active { left: 0; }
    .drawer-overlay.active { display: block; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--border); }
    .drawer-close { background: none; border: none; font-size: 28px; cursor: pointer; color: var(--text-muted); }
    .drawer-nav { display: flex; flex-direction: column; padding: 20px; gap: 18px; }
    .drawer-nav a { font-size: 16px; font-weight: 500; color: var(--text-dark); }
    .drawer-nav a:hover { color: var(--primary); }

    
    .hero { background: radial-gradient(circle at top, rgba(13,148,136, 0.1) 0%, rgba(255,255,255,1) 80%); padding: 80px 20px 100px; text-align: center; border-bottom: 1px solid var(--border); }
    .hero-container { max-width: 1200px; margin: 0 auto; }
    .hero-tag { display: inline-flex; align-items: center; background: var(--primary-light); color: var(--primary); font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 50px; margin-bottom: 24px; border: 1px solid rgba(13,148,136,0.15); }
    .hero-title { font-size: 48px; font-weight: 800; color: var(--text-dark); line-height: 1.2; margin-bottom: 20px; letter-spacing: -0.5px; }
    .hero-title span { color: var(--primary); }
    .hero-desc { font-size: 18px; color: var(--text-muted); max-width: 720px; margin: 0 auto 36px; line-height: 1.6; }
    .hero-btns { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 60px; }
    .btn-main { background: var(--primary); color: white; padding: 14px 28px; border-radius: 8px; font-size: 16px; font-weight: 600; box-shadow: 0 4px 14px rgba(13,148,136,0.25); }
    .btn-main:hover { background: var(--primary-dark); transform: translateY(-1px); }
    .btn-sub { background: var(--bg-white); color: var(--text-dark); padding: 14px 28px; border-radius: 8px; font-size: 16px; font-weight: 600; border: 1px solid var(--border); }
    .btn-sub:hover { background: var(--bg-light); border-color: var(--text-muted); }

    
    .entry-matrix { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; margin-bottom: 40px; }
    .entry-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 12px; padding: 32px; box-shadow: var(--shadow); transition: all 0.3s ease; position: relative; overflow: hidden; }
    .entry-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--primary); transform: scaleY(0); transition: transform 0.2s ease; transform-origin: bottom; }
    .entry-card:hover { transform: translateY(-5px); border-color: rgba(13,148,136,0.3); }
    .entry-card:hover::before { transform: scaleY(1); }
    .entry-icon { width: 48px; height: 48px; background: var(--primary-light); color: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
    .entry-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); }
    .entry-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
    .entry-link { font-size: 14px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 4px; }
    .entry-link:hover { color: var(--primary-dark); }

    
    .trust-strip { background: var(--bg-light); border-y: 1px solid var(--border); padding: 24px 20px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .trust-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 24px; }
    .trust-item { display: flex; align-items: center; gap: 12px; }
    .trust-num { font-size: 24px; font-weight: 800; color: var(--primary); }
    .trust-text { font-size: 14px; color: var(--text-muted); font-weight: 500; }

    
    section { padding: 80px 20px; }
    .container { max-width: 1200px; margin: 0 auto; }
    .section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
    .section-tag { font-size: 12px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1.5px; display: block; margin-bottom: 10px; }
    .section-title { font-size: 32px; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; }
    .section-subtitle { font-size: 16px; color: var(--text-muted); }

    
    .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .step-card { background: var(--bg-light); border-radius: 12px; padding: 30px; position: relative; border: 1px solid transparent; transition: all 0.3s ease; }
    .step-card:hover { border-color: var(--border); background: var(--bg-white); box-shadow: var(--shadow); }
    .step-num { position: absolute; top: 20px; right: 20px; font-size: 36px; font-weight: 900; color: rgba(13,148,136,0.1); line-height: 1; }
    .step-icon { width: 44px; height: 44px; background: var(--primary-light); color: var(--primary); border-radius: 50px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-weight: bold; }
    .step-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
    .step-card p { font-size: 14px; color: var(--text-muted); }

    
    .broker-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .broker-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 12px; padding: 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: space-between; }
    .broker-head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
    .broker-badge { width: 48px; height: 48px; border-radius: 8px; background: var(--bg-light); display: flex; align-items: center; justify-content: center; font-weight: bold; color: var(--primary); font-size: 18px; border: 1px solid var(--border); }
    .broker-info h4 { font-size: 18px; font-weight: 700; color: var(--text-dark); }
    .broker-info p { font-size: 12px; color: var(--text-muted); }
    .broker-stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; margin-bottom: 20px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-box { font-size: 13px; }
    .stat-label { color: var(--text-muted); margin-bottom: 2px; }
    .stat-val { font-weight: 600; color: var(--text-dark); }
    .broker-tags { display: flex; gap: 6px; margin-bottom: 20px; flex-wrap: wrap; }
    .broker-tag { font-size: 11px; padding: 2px 8px; border-radius: 4px; background: var(--bg-light); color: var(--text-muted); }
    .btn-broker { background: var(--primary); color: white; border-radius: 6px; padding: 10px; text-align: center; font-size: 14px; font-weight: 600; }
    .btn-broker:hover { background: var(--primary-dark); }

    
    .news-section { background: var(--bg-light); }
    .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .article-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow); transition: transform 0.2s; }
    .article-card:hover { transform: translateY(-4px); }
    .article-img { width: 100%; height: 200px; background-color: #cbd5e1; background-size: cover; background-position: center; position: relative; }
    .article-cat { position: absolute; top: 16px; left: 16px; background: var(--primary); color: white; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 4px; }
    .article-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
    .article-title { font-size: 18px; font-weight: 700; line-height: 1.4; color: var(--text-dark); margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .article-desc { font-size: 14px; color: var(--text-muted); line-height: 1.5; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
    .article-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 14px; }
    .article-date { display: flex; align-items: center; gap: 4px; }

    
    .cta-section { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); color: white; text-align: center; padding: 80px 20px; position: relative; overflow: hidden; }
    .cta-container { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
    .cta-title { font-size: 36px; font-weight: 800; margin-bottom: 20px; }
    .cta-desc { font-size: 18px; opacity: 0.9; margin-bottom: 32px; line-height: 1.6; }
    .cta-btn { display: inline-block; background: var(--bg-white); color: var(--primary); padding: 14px 32px; border-radius: 8px; font-size: 16px; font-weight: 700; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
    .cta-btn:hover { background: var(--bg-light); transform: translateY(-1px); }

    
    footer { background: #0f172a; color: #94a3b8; border-top: 1px solid #1e293b; font-size: 14px; }
    .footer-top { padding: 80px 20px 40px; }
    .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; }
    .footer-brand { display: flex; flex-direction: column; gap: 20px; }
    .footer-brand .logo span { color: white; }
    .footer-brand-p { font-size: 14px; line-height: 1.6; }
    .footer-title { color: white; font-size: 16px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-links a:hover { color: white; }
    .footer-bottom { border-top: 1px solid #1e293b; padding: 30px 20px; text-align: center; }
    .footer-bottom-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
    .footer-disclaimer { max-width: 1200px; margin: 20px auto 0; font-size: 12px; line-height: 1.8; text-align: left; opacity: 0.6; padding: 0 20px; }

    
    @media (max-width: 1024px) {
      .hero-title { font-size: 40px; }
      .entry-matrix { grid-template-columns: 1fr; gap: 16px; }
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .broker-grid { grid-template-columns: repeat(2, 1fr); }
      .news-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .nav-menu, .header-right .btn-header { display: none; }
      .menu-btn { display: block; }
      .hero { padding: 60px 16px 80px; }
      .hero-title { font-size: 32px; }
      .hero-desc { font-size: 16px; }
      .steps-grid { grid-template-columns: 1fr; }
      .broker-grid { grid-template-columns: 1fr; }
      .news-grid { grid-template-columns: 1fr; }
      .footer-container { grid-template-columns: 1fr; gap: 30px; }
      .footer-bottom-container { flex-direction: column; text-align: center; }
    }