﻿:root { --primary: rgb(251,188,5); --text-main: #1f2937; --text-muted: #6b7280; --bg-body: #f3f4f6; --bg-surface: #ffffff; --bg-dark: #111827; --border-color: #e5e7eb; --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05); --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1); --radius-lg: 12px; --container-width: 1200px; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: sans-serif; background: var(--bg-body); color: var(--text-main); line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh;}
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; }
        .container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }
        .btn-primary { background: var(--primary); color: #111; padding: 10px 24px; border-radius: 8px; font-weight: 600; display: inline-block; border: none;}
        
        
        .site-header { background: var(--bg-surface); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 100; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; height: 80px; }
        .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; }
        .logo span { font-size: 22px; font-weight: 800; line-height: 1; color: var(--text-main); white-space: nowrap; }
        .desktop-nav { display: none; }
        .desktop-nav ul { display: flex; gap: 30px; }
        .desktop-nav a { font-weight: 500; padding: 8px 0; }
        .desktop-nav a:hover { color: var(--primary); }
        .header-actions { display: none; }
        .menu-toggle { display: block; background: none; border: none; font-size: 24px; cursor: pointer; }
        @media (min-width: 992px) { .desktop-nav, .header-actions { display: block; } .menu-toggle { display: none; } }

        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; opacity: 0; visibility: hidden; transition: 0.3s; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -320px; bottom: 0; width: 280px; background: var(--bg-surface); z-index: 999; transition: 0.3s; display: flex; flex-direction: column; }
        .drawer.active { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { background: none; border: none; font-size: 24px; cursor: pointer; }
        .drawer-body { padding: 20px 0; overflow-y: auto; }
        .drawer-nav a { display: block; padding: 15px 20px; font-weight: 500; border-bottom: 1px solid var(--border-color); }

        
        .page-header { background: var(--bg-dark); color: #fff; padding: 80px 0; text-align: center; }
        .page-header h1 { font-size: 36px; margin-bottom: 15px; color: var(--primary); }
        .page-header p { font-size: 18px; color: #d1d5db; max-width: 700px; margin: 0 auto; }
        
        .about-section { padding: 80px 0; }
        .about-grid { display: grid; grid-template-columns: 1fr; gap: 50px; align-items: center; }
        .about-text h2 { font-size: 30px; margin-bottom: 25px; position: relative; padding-left: 20px; }
        .about-text h2::before { content: ''; position: absolute; left: 0; top: 5px; bottom: 5px; width: 6px; background: var(--primary); border-radius: 3px; }
        .about-text p { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }
        .about-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
        @media (min-width: 992px) { .about-grid { grid-template-columns: 1fr 1fr; } }

        .capabilities { background: var(--bg-surface); padding: 80px 0; }
        .cap-header { text-align: center; margin-bottom: 50px; }
        .cap-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
        .cap-card { padding: 40px; border: 1px solid var(--border-color); border-radius: var(--radius-lg); text-align: center; transition: 0.3s; }
        .cap-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
        .cap-num { font-size: 48px; font-weight: 800; color: rgba(251,188,5,0.2); margin-bottom: 10px; font-family: monospace; }
        .cap-card h3 { font-size: 22px; margin-bottom: 15px; }
        @media (min-width: 768px) { .cap-grid { grid-template-columns: repeat(3, 1fr); } }

        
        .site-footer { background: var(--bg-dark); color: #d1d5db; padding: 60px 0 20px; margin-top: auto; border-top: 4px solid var(--primary); }
        .footer-top { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-brand .logo span { color: #fff; }
        .footer-brand p { margin-top: 20px; font-size: 14px; color: #9ca3af; max-width: 300px; }
        .footer-title { color: #fff; font-size: 18px; margin-bottom: 20px; font-weight: 600; }
        .footer-links ul { display: flex; flex-direction: column; gap: 10px; }
        .footer-links a { color: #9ca3af; font-size: 14px; }
        .footer-bottom { padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 15px; align-items: center; font-size: 14px; text-align: center; }
        .footer-bottom-links { display: flex; gap: 20px; }
        @media (min-width: 768px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; } .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }