﻿:root {
      --primary: #F97316;
      --primary-hover: #FB923C;
      --bg-light: #FFF7ED;
      --bg-dark: #2B1708;
      --text-dark: #1F2937;
      --accent: #FED7AA;
      --base-black: rgb(0,0,0);
      --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: var(--font-sans); color: var(--text-dark); background-color: var(--bg-light); line-height: 1.6; overflow-x: hidden; }
    a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
    
    
    header { background-color: rgba(255, 247, 237, 0.95); backdrop-filter: blur(8px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--accent); }
    .header-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 15px 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(--bg-dark); white-space: nowrap; }
    
    .nav-desktop { display: flex; align-items: center; gap: 24px; }
    .nav-desktop a { font-weight: 500; color: var(--bg-dark); font-size: 15px; }
    .nav-desktop a:hover { color: var(--primary); }
    .nav-actions { display: flex; align-items: center; gap: 12px; }
    .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; font-weight: 600; border-radius: 8px; font-size: 14px; cursor: pointer; transition: all 0.3s ease; border: none; }
    .btn-primary { background-color: var(--primary); color: #fff; }
    .btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-1px); }
    .btn-secondary { background-color: transparent; border: 2px solid var(--primary); color: var(--primary); }
    .btn-secondary:hover { background-color: var(--primary); color: #fff; }
    
    
    .menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
    .menu-toggle span { display: block; width: 24px; height: 3px; background-color: var(--bg-dark); margin: 5px 0; border-radius: 2px; }

    
    .drawer { position: fixed; top: 0; left: -100%; width: 280px; height: 100vh; background-color: var(--bg-light); z-index: 1000; box-shadow: 4px 0 20px rgba(0,0,0,0.15); transition: left 0.3s ease; padding: 24px; display: flex; flex-direction: column; }
    .drawer.active { left: 0; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; border-bottom: 1px solid var(--accent); padding-bottom: 15px; }
    .drawer-close { background: none; border: none; font-size: 24px; color: var(--bg-dark); cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; flex-grow: 1; }
    .drawer-nav a { font-size: 16px; font-weight: 600; color: var(--bg-dark); }
    .drawer-nav a:hover { color: var(--primary); }
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.5); z-index: 999; display: none; }
    .drawer-overlay.active { display: block; }

    
    .hero-layout-04 { display: flex; flex-direction: column; background: linear-gradient(180deg, var(--bg-light) 0%, #FFF 100%); text-align: center; overflow: hidden; position: relative; }
    .hero-top { max-width: 900px; margin: 0 auto; padding: 60px 20px 40px 20px; }
    .hero-tag { display: inline-block; background-color: var(--accent); color: var(--bg-dark); padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
    .hero-layout-04 h1 { font-size: 48px; font-weight: 800; line-height: 1.2; color: var(--bg-dark); margin-bottom: 20px; }
    .hero-layout-04 p { font-size: 18px; color: #4B5563; max-width: 680px; margin: 0 auto 30px auto; }
    .hero-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
    
    .hero-divider { position: relative; width: 100%; height: 60px; margin-bottom: -1px; }
    .hero-divider svg { display: block; width: 100%; height: 100%; }

    .hero-bottom-visual { background-color: var(--bg-dark); padding: 50px 20px 80px 20px; width: 100%; position: relative; }
    .visual-wrapper { max-width: 1100px; margin: 0 auto; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; padding: 30px; backdrop-filter: blur(10px); }
    .visual-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 15px; margin-bottom: 24px; color: #fff; }
    .visual-dots { display: flex; gap: 6px; }
    .visual-dot { width: 10px; height: 10px; border-radius: 50%; background: #EF4444; }
    .visual-dot:nth-child(2) { background: #F59E0B; }
    .visual-dot:nth-child(3) { background: #10B981; }
    .visual-title { font-size: 14px; color: var(--accent); font-weight: 600; }
    
    .dashboard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
    .dash-card { background: rgba(255,255,255,0.08); border-radius: 12px; padding: 20px; border: 1px solid rgba(255,255,255,0.05); text-align: left; transition: transform 0.3s; }
    .dash-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.12); }
    .dash-icon { font-size: 24px; margin-bottom: 12px; }
    .dash-num { font-size: 28px; font-weight: 800; color: var(--primary); line-height: 1.2; margin-bottom: 4px; }
    .dash-label { font-size: 13px; color: #D1D5DB; }

    
    .trust-layer { background-color: #FFF; padding: 30px 20px; border-bottom: 1px solid var(--accent); }
    .trust-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 20px; }
    .trust-item { text-align: center; font-weight: 600; color: #4B5563; font-size: 14px; display: flex; align-items: center; gap: 8px; }
    .trust-item svg { width: 20px; height: 20px; fill: var(--primary); }

    
    .section-wrap { max-width: 1200px; margin: 0 auto; padding: 80px 20px; }
    .section-title { text-align: center; margin-bottom: 50px; }
    .section-title h2 { font-size: 36px; font-weight: 800; color: var(--bg-dark); margin-bottom: 15px; }
    .section-title p { color: #6B7280; font-size: 16px; max-width: 600px; margin: 0 auto; }
    
    
    .benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
    .benefit-card { background: #fff; border-radius: 12px; padding: 30px; border: 1px solid var(--accent); transition: all 0.3s; }
    .benefit-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(43, 23, 8, 0.05); }
    .benefit-card .icon-box { width: 50px; height: 50px; background-color: var(--bg-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--primary); }
    .benefit-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--bg-dark); }
    .benefit-card p { color: #6B7280; font-size: 14px; }

    
    .cta-section { background: linear-gradient(135deg, var(--bg-dark) 0%, #150A02 100%); color: #fff; padding: 80px 20px; text-align: center; position: relative; }
    .cta-wrap { max-width: 700px; margin: 0 auto; }
    .cta-wrap h2 { font-size: 36px; font-weight: 800; margin-bottom: 20px; color: #fff; }
    .cta-wrap p { color: var(--accent); font-size: 16px; margin-bottom: 30px; }

    
    footer { background-color: var(--bg-dark); color: #9CA3AF; padding: 60px 20px 30px 20px; border-top: 2px solid var(--primary); font-size: 14px; }
    .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
    .footer-brand .logo span { color: #fff; }
    .footer-brand p { margin-top: 15px; max-width: 320px; line-height: 1.8; }
    .footer-title { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 20px; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a:hover { color: #fff; }
    .footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }

    @media (max-width: 768px) {
      .nav-desktop { display: none; }
      .menu-toggle { display: block; }
      .hero-layout-04 h1 { font-size: 32px; }
      .hero-layout-04 p { font-size: 15px; }
      .footer-container { grid-template-columns: 1fr; }
    }