﻿:root {
            --primary: rgb(244,63,94);
            --primary-hover: rgb(225,29,72);
            --primary-light: rgba(244,63,94,0.08);
            --dark: #0f172a;
            --slate: #475569;
            --light: #f8fafc;
            --border: #e2e8f0;
            --shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
            --shadow-lg: 0 20px 40px -15px rgba(244,63,94,0.15);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--dark); background: #fff; line-height: 1.6; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; transition: all 0.3s; }
        img { max-width: 100%; height: auto; }
        ul { list-style: none; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        
        
        header { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; transition: all 0.3s; }
        .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: 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(--dark); white-space: nowrap; }
        .logo span strong { color: var(--primary); }
        
        .nav-desktop { display: flex; align-items: center; gap: 32px; }
        .nav-desktop a { font-size: 15px; font-weight: 600; color: var(--slate); padding: 8px 0; border-bottom: 2px solid transparent; }
        .nav-desktop a:hover { color: var(--primary); border-bottom-color: var(--primary); }
        .nav-btn { background: var(--primary); color: #fff !important; padding: 10px 24px !important; border-radius: 8px; border: none !important; box-shadow: 0 4px 12px rgba(244,63,94,0.2); }
        .nav-btn:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(244,63,94,0.3); }
        
        .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
        .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); margin: 5px 0; transition: 0.3s; }

        
        .drawer { position: fixed; top: 0; left: -100%; width: 100%; height: 100%; z-index: 999; transition: 0.4s ease-in-out; visibility: hidden; }
        .drawer.active { left: 0; visibility: visible; }
        .drawer-overlay { position: absolute; width: 100%; height: 100%; background: rgba(15,23,42,0.6); backdrop-filter: blur(4px); }
        .drawer-content { position: absolute; width: 300px; height: 100%; background: #fff; box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: space-between; padding: 24px; transition: 0.4s ease-in-out; transform: translateX(-100%); }
        .drawer.active .drawer-content { transform: translateX(0); }
        .drawer-header { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); padding-bottom: 16px; margin-bottom: 24px; }
        .drawer-close { background: none; border: none; font-size: 28px; cursor: pointer; color: var(--slate); }
        .drawer-menu { display: flex; flex-direction: column; gap: 16px; }
        .drawer-menu a { font-size: 16px; font-weight: 600; color: var(--dark); padding: 10px 12px; border-radius: 6px; }
        .drawer-menu a:hover { background: var(--primary-light); color: var(--primary); }
        .drawer-footer { border-top: 1px solid var(--border); padding-top: 24px; }

        
        .hero { padding: 96px 0; background: radial-gradient(circle at 90% 10%, rgba(244,63,94,0.06) 0%, rgba(255,255,255,0) 60%), linear-gradient(180deg, var(--light) 0%, #fff 100%); position: relative; overflow: hidden; }
        .hero::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(244,63,94,0.04) 0%, rgba(255,255,255,0) 70%); top: -10%; right: -10%; z-index: 1; }
        .hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
        .hero-text h1 { font-size: 48px; line-height: 1.2; font-weight: 900; color: var(--dark); margin-bottom: 24px; letter-spacing: -1px; }
        .hero-text h1 span { color: var(--primary); position: relative; }
        .hero-text h1 span::after { content: ''; position: absolute; bottom: 4px; left: 0; width: 100%; height: 8px; background: rgba(244,63,94,0.15); z-index: -1; }
        .hero-text p { font-size: 18px; color: var(--slate); margin-bottom: 40px; line-height: 1.8; }
        .hero-btns { display: flex; gap: 16px; margin-bottom: 48px; }
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; border-radius: 8px; font-size: 16px; font-weight: 700; cursor: pointer; transition: 0.3s; }
        .btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 24px rgba(244,63,94,0.25); }
        .btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(244,63,94,0.35); }
        .btn-secondary { background: #fff; color: var(--dark); border: 1px solid var(--border); }
        .btn-secondary:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
        .hero-badges { display: flex; gap: 32px; border-top: 1px solid var(--border); padding-top: 32px; }
        .badge-item { display: flex; flex-direction: column; }
        .badge-num { font-size: 24px; font-weight: 800; color: var(--primary); }
        .badge-label { font-size: 13px; color: var(--slate); margin-top: 4px; }
        .hero-image { position: relative; display: flex; justify-content: center; }
        .image-wrapper { position: relative; width: 100%; max-width: 480px; aspect-ratio: 1; background: linear-gradient(135deg, rgba(244,63,94,0.1) 0%, rgba(244,63,94,0.02) 100%); border-radius: 24px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.8); }
        .image-wrapper svg { width: 60%; height: 60%; fill: var(--primary); filter: drop-shadow(0 10px 15px rgba(244,63,94,0.2)); }
        .float-card { position: absolute; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); padding: 16px 20px; border-radius: 12px; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.6); display: flex; align-items: center; gap: 12px; }
        .fc-1 { top: 15%; left: -10%; animation: float 6s ease-in-out infinite; }
        .fc-2 { bottom: 15%; right: -5%; animation: float 6s ease-in-out infinite 3s; }
        .fc-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; color: var(--primary); font-weight: bold; }
        .fc-text h4 { font-size: 14px; font-weight: 800; color: var(--dark); }
        .fc-text p { font-size: 11px; color: var(--slate); }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        
        .compare { padding: 96px 0; background: #fff; }
        .sec-header { text-align: center; max-width: 700px; margin: 0 auto 64px auto; }
        .sec-tag { font-size: 13px; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; display: inline-block; background: var(--primary-light); padding: 4px 12px; border-radius: 30px; }
        .sec-title { font-size: 36px; font-weight: 900; color: var(--dark); margin-bottom: 16px; }
        .sec-desc { font-size: 16px; color: var(--slate); }
        
        .compare-table { width: 100%; border-collapse: separate; border-spacing: 0 12px; margin-top: 32px; }
        .compare-table th { background: var(--light); color: var(--slate); font-size: 14px; font-weight: 700; text-align: left; padding: 16px 24px; border: none; }
        .compare-table th:first-child { border-radius: 8px 0 0 8px; }
        .compare-table th:last-child { border-radius: 0 8px 8px 0; text-align: right; }
        .compare-row { background: #fff; border: 1px solid var(--border); box-shadow: 0 4px 6px rgba(15,23,42,0.02); transition: 0.3s; }
        .compare-row:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary); }
        .compare-td { padding: 24px; vertical-align: middle; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
        .compare-td:first-child { border-left: 1px solid var(--border); border-radius: 12px 0 0 12px; }
        .compare-td:last-child { border-right: 1px solid var(--border); border-radius: 0 12px 12px 0; text-align: right; }
        
        .broker-info { display: flex; align-items: center; gap: 16px; }
        .broker-logo { width: 44px; height: 44px; border-radius: 8px; background: var(--light); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--primary); border: 1px solid var(--border); }
        .broker-name { font-size: 16px; font-weight: 800; color: var(--dark); }
        .broker-tag { font-size: 11px; background: #e2e8f0; color: var(--slate); padding: 2px 6px; border-radius: 4px; margin-top: 4px; display: inline-block; }
        .val-badge { font-size: 14px; font-weight: 700; color: var(--dark); }
        .val-sub { font-size: 12px; color: var(--slate); margin-top: 4px; }
        .rating { display: flex; align-items: center; gap: 4px; color: #fbbf24; font-weight: bold; font-size: 15px; }

        
        .features { padding: 96px 0; background: var(--light); position: relative; }
        .feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
        .feat-card { background: #fff; border-radius: 16px; padding: 40px; box-shadow: var(--shadow); transition: 0.3s; border: 1px solid transparent; }
        .feat-card:hover { transform: translateY(-6px); border-color: rgba(244,63,94,0.15); box-shadow: var(--shadow-lg); }
        .feat-icon { width: 56px; height: 56px; border-radius: 12px; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: bold; margin-bottom: 24px; }
        .feat-card h3 { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
        .feat-card p { font-size: 15px; color: var(--slate); line-height: 1.7; }

        
        .news { padding: 96px 0; background: #fff; }
        .news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
        .news-header .sec-header { text-align: left; margin: 0; }
        .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
        .post-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); transition: 0.3s; display: flex; flex-direction: column; height: 100%; }
        .post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(244,63,94,0.15); }
        .post-img-box { position: relative; aspect-ratio: 16/10; background: var(--light); overflow: hidden; }
        .post-img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .post-card:hover .post-img { transform: scale(1.05); }
        .post-tag-badge { position: absolute; top: 16px; left: 16px; background: var(--primary); color: #fff; font-size: 11px; font-weight: bold; padding: 4px 10px; border-radius: 4px; }
        .post-body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
        .post-meta { display: flex; gap: 16px; font-size: 12px; color: var(--slate); margin-bottom: 12px; }
        .post-title { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 12px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .post-title:hover { color: var(--primary); }
        .post-desc { font-size: 14px; color: var(--slate); margin-bottom: 20px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; flex-grow: 1; }
        .post-footer { border-top: 1px solid var(--border); padding-top: 16px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; font-weight: 700; color: var(--primary); }
        .post-footer svg { transition: 0.3s; fill: var(--primary); }
        .post-card:hover .post-footer svg { transform: translateX(4px); }

        
        .cta { background: var(--dark); padding: 80px 0; color: #fff; position: relative; overflow: hidden; }
        .cta::before { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(244,63,94,0.15) 0%, rgba(255,255,255,0) 70%); bottom: -20%; left: -10%; }
        .cta::after { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(244,63,94,0.15) 0%, rgba(255,255,255,0) 70%); top: -20%; right: -10%; }
        .cta-content { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
        .cta-content h2 { font-size: 36px; font-weight: 900; margin-bottom: 24px; line-height: 1.3; }
        .cta-content p { font-size: 16px; opacity: 0.8; margin-bottom: 40px; line-height: 1.8; }

        
        footer { background: #0f172a; color: rgba(255,255,255,0.7); padding: 80px 0 32px 0; border-top: 1px solid rgba(255,255,255,0.05); font-size: 14px; }
        .footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 0.6fr); gap: 48px; margin-bottom: 64px; }
        .footer-col h4 { color: #fff; font-size: 16px; font-weight: 800; margin-bottom: 24px; position: relative; }
        .footer-col h4::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 24px; height: 2px; background: var(--primary); }
        .footer-desc { line-height: 1.8; margin-top: 16px; }
        .footer-links { display: flex; flex-direction: column; gap: 12px; }
        .footer-links a:hover { color: var(--primary); padding-left: 4px; }
        .footer-contact { display: flex; flex-direction: column; gap: 12px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
        .footer-copy { font-size: 13px; }
        .footer-meta { display: flex; gap: 24px; font-size: 13px; }
        .footer-meta a:hover { color: var(--primary); }

        
        @media (max-width: 1024px) {
            .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 48px; }
            .hero-text h1 { font-size: 38px; }
            .hero-btns, .hero-badges { justify-content: center; }
            .hero-image { display: none; }
            .feat-grid { grid-template-columns: repeat(2, 1fr); }
            .news-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .nav-toggle { display: block; }
            .feat-grid, .news-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .compare-table { display: block; overflow-x: auto; }
            .compare-table thead { display: none; }
            .compare-table tbody, .compare-row { display: block; width: 100%; }
            .compare-td { display: block; text-align: left !important; padding: 16px; border: none !important; border-bottom: 1px solid var(--border) !important; }
            .compare-td:last-child { border-bottom: none !important; }
            .compare-row { border-radius: 12px; border: 1px solid var(--border); margin-bottom: 16px; }
            .sec-title { font-size: 28px; }
        }