﻿:root {
            --primary-color: #E1251B;
            --primary-hover: #C11F17;
            --accent-color: #FFA000;
            --bg-color: rgb(255,255,255);
            --bg-alt: #F9FAFB;
            --text-main: #1F2937;
            --text-muted: #6B7280;
            --border-color: #E5E7EB;
            --max-width: 1200px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background-color: var(--bg-color); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        
        .site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border-color); }
        .header-container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; height: 72px; 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: 18px; font-weight: 800; line-height: 1; color: var(--primary-color); white-space: nowrap; }
        
        .desktop-nav { display: flex; gap: 32px; align-items: center; }
        .desktop-nav a { font-size: 15px; font-weight: 500; color: #4B5563; }
        .desktop-nav a:hover { color: var(--primary-color); }
        
        .header-actions { display: flex; align-items: center; gap: 16px; }
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; font-size: 14px; font-weight: 600; border-radius: 8px; transition: all 0.3s ease; cursor: pointer; }
        .btn-primary { background: linear-gradient(135deg, var(--primary-color), #FF5722); color: #fff; border: none; box-shadow: 0 4px 12px rgba(225, 37, 27, 0.2); }
        .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(225, 37, 27, 0.3); }
        .btn-primary-outline { border: 2px solid var(--primary-color); color: var(--primary-color); background: transparent; }
        .btn-primary-outline:hover { background: var(--primary-color); color: #fff; }
        
        .drawer-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; padding: 4px; }
        .drawer-toggle span { display: block; width: 24px; height: 2px; background-color: var(--text-main); transition: all 0.3s ease; }
        
        .drawer-nav { position: fixed; top: 0; left: -100%; width: 280px; height: 100vh; background: #fff; z-index: 1001; transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 4px 0 24px rgba(0,0,0,0.15); display: flex; flex-direction: column; }
        .drawer-nav.active { left: 0; }
        .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: 28px; color: var(--text-muted); cursor: pointer; line-height: 1; }
        .drawer-body { padding: 20px 0; overflow-y: auto; flex: 1; }
        .drawer-menu { display: flex; flex-direction: column; }
        .drawer-menu a { padding: 14px 24px; font-size: 16px; font-weight: 500; border-bottom: 1px solid #F3F4F6; }
        .drawer-menu a:hover { background-color: var(--bg-alt); color: var(--primary-color); }
        .drawer-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.4); z-index: 1000; display: none; backdrop-filter: blur(2px); }
        .drawer-overlay.active { display: block; }

        .hero-section { background: radial-gradient(circle at 80% 20%, rgba(255, 160, 0, 0.08), transparent 50%), linear-gradient(135deg, #FFF5F5 0%, #FFFFFF 100%); padding: 80px 20px; overflow: hidden; }
        .hero-container { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; gap: 60px; }
        .hero-content { flex: 1; }
        .hero-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(225, 37, 27, 0.08); color: var(--primary-color); padding: 6px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; margin-bottom: 24px; }
        .hero-title { font-size: 48px; font-weight: 800; line-height: 1.2; color: #111827; margin-bottom: 20px; }
        .hero-title span { color: var(--primary-color); }
        .hero-desc { font-size: 18px; color: var(--text-muted); margin-bottom: 36px; max-width: 540px; }
        .hero-btns { display: flex; gap: 16px; }
        .hero-visual { flex: 1; display: flex; justify-content: center; position: relative; }
        .visual-box { width: 440px; height: 440px; background: #fff; border-radius: 30px; box-shadow: 0 20px 40px rgba(0,0,0,0.06); border: 8px solid #FFF; overflow: hidden; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(135deg, #FFEBEB, #FFF); }
        .visual-decor { position: absolute; width: 140px; height: 140px; background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%); opacity: 0.15; border-radius: 50%; top: -20px; right: -20px; }
        .visual-chart { width: 85%; height: 60%; background: #fff; border-radius: 16px; box-shadow: 0 10px 25px rgba(0,0,0,0.05); padding: 20px; display: flex; flex-direction: column; justify-content: space-between; }
        .chart-row { display: flex; gap: 8px; align-items: flex-end; height: 100px; padding-bottom: 10px; border-bottom: 1px dashed var(--border-color); }
        .chart-bar { flex: 1; background: linear-gradient(to top, var(--primary-color), var(--accent-color)); border-radius: 4px; transition: height 1s ease; }

        .trust-badge-bar { background: #111827; color: #fff; padding: 24px 20px; }
        .trust-container { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
        .trust-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
        .trust-num { font-size: 24px; font-weight: 800; color: var(--accent-color); }
        .trust-text { font-size: 14px; color: #9CA3AF; }

        .features-section { padding: 100px 20px; background-color: var(--bg-alt); }
        .section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
        .section-title { font-size: 36px; font-weight: 800; color: #111827; margin-bottom: 16px; }
        .section-subtitle { font-size: 16px; color: var(--text-muted); }
        .feature-grid { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .feature-card { background: #fff; border-radius: 16px; padding: 40px 30px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02), 0 2px 4px -1px rgba(0,0,0,0.01); transition: all 0.3s ease; border: 1px solid var(--border-color); }
        .feature-card:hover { transform: translateY(-5px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.05); border-color: rgba(225, 37, 27, 0.2); }
        .feature-icon { width: 56px; height: 56px; background: rgba(225, 37, 27, 0.05); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--primary-color); }
        .feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
        .feature-card p { color: var(--text-muted); font-size: 15px; }

        .info-section { padding: 100px 20px; background: #fff; }
        .info-container { max-width: var(--max-width); margin: 0 auto; }
        .info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
        .info-card { background: var(--bg-alt); border-radius: 16px; overflow: hidden; border: 1px solid var(--border-color); display: flex; flex-direction: column; transition: transform 0.3s ease; }
        .info-card:hover { transform: translateY(-4px); }
        .info-img { height: 200px; background-color: #E5E7EB; background-size: cover; background-position: center; position: relative; }
        .info-img-tag { position: absolute; top: 16px; left: 16px; background: var(--primary-color); color: #fff; padding: 4px 10px; border-radius: 4px; font-size: 12px; font-weight: 600; }
        .info-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
        .info-meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
        .info-title { font-size: 18px; font-weight: 700; color: #111827; margin-bottom: 10px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .info-summary { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
        .info-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border-color); }
        .read-more { font-size: 14px; font-weight: 600; color: var(--primary-color); display: inline-flex; align-items: center; gap: 4px; }
        .read-more:hover { color: var(--primary-hover); }

        .cta-section { background: linear-gradient(135deg, #1F2937 0%, #111827 100%); color: #fff; padding: 80px 20px; text-align: center; position: relative; overflow: hidden; }
        .cta-container { max-width: 600px; margin: 0 auto; position: relative; z-index: 2; }
        .cta-title { font-size: 36px; font-weight: 800; margin-bottom: 20px; }
        .cta-desc { font-size: 16px; color: #9CA3AF; margin-bottom: 36px; }

        .site-footer { background: #111827; color: #9CA3AF; border-top: 1px solid #1F2937; padding: 80px 20px 40px; font-size: 14px; }
        .footer-container { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
        .footer-brand { display: flex; flex-direction: column; gap: 20px; }
        .footer-brand .logo span { color: #fff; }
        .footer-brand p { line-height: 1.6; }
        .footer-title { color: #fff; font-size: 16px; font-weight: 600; margin-bottom: 24px; position: relative; }
        .footer-title::after { content: ''; display: block; width: 24px; height: 2px; background: var(--primary-color); margin-top: 8px; }
        .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
        .footer-links a:hover { color: #fff; }
        .footer-bottom { max-width: var(--max-width); margin: 0 auto; padding-top: 40px; border-top: 1px solid #1F2937; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
        .footer-meta-links { display: flex; gap: 24px; }

        @media (max-width: 1024px) {
            .hero-container { flex-direction: column; text-align: center; padding: 40px 0; }
            .hero-content { display: flex; flex-direction: column; align-items: center; }
            .hero-desc { margin-left: auto; margin-right: auto; }
            .feature-grid, .info-grid { grid-template-columns: repeat(2, 1fr); }
            .trust-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
        }
        @media (max-width: 768px) {
            .desktop-nav, .header-actions .btn-primary-outline { display: none; }
            .drawer-toggle { display: flex; }
            .hero-title { font-size: 36px; }
            .feature-grid, .info-grid { grid-template-columns: 1fr; }
            .footer-container { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .visual-box { width: 320px; height: 320px; }
        }