﻿:root {
            --primary: rgb(255, 184, 108);
            --primary-hover: rgb(240, 160, 80);
            --primary-light: rgba(255, 184, 108, 0.1);
            --primary-light-2: rgba(255, 184, 108, 0.05);
            --text-dark: #111827;
            --text-main: #374151;
            --text-muted: #6b7280;
            --bg-body: #f9fafb;
            --bg-white: #ffffff;
            --border-color: #e5e7eb;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --radius-md: 8px;
            --radius-lg: 16px;
            --radius-full: 9999px;
            --transition: all 0.3s ease;
        }
        * { 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-color: var(--bg-body); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        img { max-width: 100%; height: auto; display: block; }
        ul, ol { list-style: none; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 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; }

        
        .site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); transition: var(--transition); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
        .desktop-nav { display: none; }
        @media (min-width: 1024px) {
            .desktop-nav { display: flex; gap: 32px; align-items: center; }
            .desktop-nav a { font-weight: 500; color: var(--text-dark); font-size: 16px; position: relative; }
            .desktop-nav a:hover { color: var(--primary); }
            .desktop-nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
            .desktop-nav a:hover::after { width: 100%; }
        }
        .header-actions { display: flex; align-items: center; gap: 16px; }
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; font-size: 16px; font-weight: 600; border-radius: var(--radius-full); cursor: pointer; transition: var(--transition); border: none; }
        .btn-primary { background-color: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(255, 184, 108, 0.4); }
        .btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 184, 108, 0.6); }
        .btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
        .btn-outline:hover { background: var(--primary); color: #fff; }
        .mobile-menu-toggle { display: block; background: none; border: none; color: var(--text-dark); cursor: pointer; padding: 4px; }
        @media (min-width: 1024px) { .mobile-menu-toggle { display: none; } }

        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 100; opacity: 0; visibility: hidden; transition: var(--transition); }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: var(--bg-white); z-index: 101; box-shadow: var(--shadow-lg); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; }
        .mobile-drawer.active { transform: translateX(300px); }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; align-items: center; justify-content: space-between; background: var(--bg-body); }
        .drawer-close { background: none; border: none; cursor: pointer; color: var(--text-muted); padding: 4px; }
        .drawer-body { padding: 20px 0; overflow-y: auto; flex: 1; }
        .drawer-nav a { display: block; padding: 16px 24px; font-size: 16px; font-weight: 500; color: var(--text-dark); border-bottom: 1px solid var(--bg-body); }
        .drawer-nav a:hover { background: var(--primary-light); color: var(--primary); padding-left: 28px; }
        .drawer-footer { padding: 20px; border-top: 1px solid var(--border-color); }

        
        .hero { position: relative; padding: 80px 0 100px; background: linear-gradient(135deg, var(--bg-white) 0%, var(--primary-light) 100%); overflow: hidden; }
        .hero::before { content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,184,108,0.2) 0%, rgba(255,255,255,0) 70%); border-radius: 50%; }
        .hero-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; position: relative; z-index: 2; }
        @media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
        .hero-content h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 800; color: var(--text-dark); line-height: 1.2; margin-bottom: 24px; }
        .hero-content h1 span { color: var(--primary); }
        .hero-content p { font-size: 18px; color: var(--text-muted); margin-bottom: 32px; max-width: 500px; line-height: 1.8; }
        .hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
        .hero-visual { position: relative; }
        .hero-visual img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); animation: float 6s ease-in-out infinite; }
        @keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }

        
        .stats-strip { background: var(--bg-white); border-bottom: 1px solid var(--border-color); padding: 40px 0; margin-top: -20px; position: relative; z-index: 10; border-radius: var(--radius-lg) var(--radius-lg) 0 0; box-shadow: 0 -4px 20px rgba(0,0,0,0.02); }
        .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; text-align: center; }
        @media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
        .stat-item h4 { font-size: 32px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
        .stat-item p { font-size: 14px; color: var(--text-muted); font-weight: 500; }

        
        .section { padding: 80px 0; }
        .section-header { text-align: center; margin-bottom: 48px; }
        .section-title { font-size: 32px; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; position: relative; display: inline-block; }
        .section-title::after { content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); width: 40px; height: 3px; background: var(--primary); border-radius: 2px; }
        .section-desc { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

        
        .features-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
        @media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
        .feature-card { background: var(--bg-white); padding: 40px 32px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid transparent; }
        .feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
        .feature-icon { width: 64px; height: 64px; margin: 0 auto 24px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); transition: var(--transition); }
        .feature-card:hover .feature-icon { background: var(--primary); color: #fff; }
        .feature-card h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; }
        .feature-card p { font-size: 15px; color: var(--text-muted); }

        
        .article-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
        @media (min-width: 768px) { .article-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (min-width: 1024px) { .article-grid { grid-template-columns: repeat(4, 1fr); } }
        .post-card { background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border-color); display: flex; flex-direction: column; height: 100%; }
        .post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
        .post-img { position: relative; padding-top: 60%; overflow: hidden; background: #eee; }
        .post-img img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
        .post-card:hover .post-img img { transform: scale(1.05); }
        .post-content { padding: 20px; flex: 1; display: flex; flex-direction: column; }
        .post-meta { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
        .post-title { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .post-title a:hover { color: var(--primary); }
        .post-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
        .post-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border-color); padding-top: 16px; margin-top: auto; }
        .post-tags { display: flex; gap: 8px; font-size: 12px; color: var(--primary); }
        .post-read { font-size: 13px; font-weight: 600; color: var(--text-dark); display: flex; align-items: center; gap: 4px; }
        .post-read:hover { color: var(--primary); }

        
        .cta-section { padding: 100px 0; background: var(--text-dark); color: #fff; position: relative; overflow: hidden; text-align: center; }
        .cta-section::after { content: ''; position: absolute; inset: 0; background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" stroke="rgba(255,184,108,0.1)" stroke-width="2" fill="none"/></svg>') repeat; opacity: 0.5; }
        .cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
        .cta-content h2 { font-size: 36px; font-weight: 800; margin-bottom: 24px; }
        .cta-content p { font-size: 18px; color: #9ca3af; margin-bottom: 40px; }

        
        .site-footer { background: var(--bg-white); border-top: 1px solid var(--border-color); padding: 80px 0 24px; }
        .footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; margin-bottom: 48px; }
        @media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
        .footer-brand p { margin-top: 20px; font-size: 14px; color: var(--text-muted); max-width: 300px; }
        .footer-title { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 24px; }
        .footer-links ul li { margin-bottom: 12px; }
        .footer-links ul a { color: var(--text-muted); font-size: 14px; }
        .footer-links ul a:hover { color: var(--primary); padding-left: 4px; }
        .footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--border-color); color: var(--text-muted); font-size: 14px; display: flex; flex-direction: column; gap: 12px; align-items: center; }
        @media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
        .footer-bottom-links { display: flex; gap: 16px; }
        .footer-bottom-links a:hover { color: var(--primary); }