﻿:root {
  --primary: rgb(48,209,88);
  --primary-hover: rgb(40,180,75);
  --bg-dark: #0f172a;
  --bg-light: #f8fafc;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }
body { background-color: var(--bg-light); color: var(--text-main); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }


.header { background: var(--bg-dark); position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.header-inner { 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: 22px; font-weight: 800; line-height: 1; color: #fff; white-space: nowrap; }
.desktop-nav { display: flex; gap: 24px; align-items: center; }
.desktop-nav a { color: #f8fafc; font-size: 16px; font-weight: 500; }
.desktop-nav a:hover { color: var(--primary); }
.mobile-menu-btn { display: none; background: none; border: none; color: #fff; cursor: pointer; }
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); opacity: 0; visibility: hidden; transition: 0.3s; z-index: 999; }
.drawer { position: fixed; top: 0; left: -320px; width: 280px; height: 100%; background: #fff; z-index: 1000; transition: left 0.3s ease; display: flex; flex-direction: column; }
.drawer.active { left: 0; }
.drawer-overlay.active { opacity: 1; visibility: visible; }
.drawer-header { padding: 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); }
.drawer-header .logo span { color: var(--text-main); }
.close-btn { background: none; border: none; font-size: 28px; cursor: pointer; color: var(--text-muted); }
.drawer-nav { padding: 20px; display: flex; flex-direction: column; gap: 15px; }
.drawer-nav a { font-size: 16px; color: var(--text-main); padding-bottom: 12px; border-bottom: 1px solid #f1f5f9; font-weight: 500; }
.drawer-nav a:hover { color: var(--primary); }
.footer { background: var(--bg-dark); color: #94a3b8; padding: 60px 0 24px; margin-top: 60px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer .logo span { color: #fff; }
.footer-desc { margin-top: 16px; font-size: 14px; line-height: 1.8; max-width: 400px; }
.footer-nav h4 { color: #f8fafc; margin-bottom: 20px; font-size: 18px; }
.footer-nav ul { list-style: none; }
.footer-nav ul li { margin-bottom: 12px; }
.footer-nav ul li a:hover { color: var(--primary); }
.footer-bottom { text-align: center; border-top: 1px solid #1e293b; padding-top: 24px; font-size: 14px; }

@media(max-width: 768px){
  .desktop-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .footer-inner { grid-template-columns: 1fr; }
}


.dl-hero { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); color: #fff; padding: 100px 0; overflow: hidden; }
.dl-hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.dl-text { flex: 1; min-width: 300px; }
.dl-text h1 { font-size: 42px; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.dl-text h1 span { color: var(--primary); }
.dl-text p { font-size: 18px; color: #cbd5e1; margin-bottom: 40px; max-width: 500px; }
.dl-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
.btn-dl { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: #1e293b; padding: 15px 30px; border-radius: 8px; font-weight: 700; font-size: 18px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); transition: transform 0.3s; }
.btn-dl:hover { transform: translateY(-3px); }
.btn-dl.primary { background: var(--primary); color: #fff; box-shadow: 0 4px 15px rgba(48,209,88,0.4); }
.dl-visual { flex: 1; min-width: 300px; position: relative; }
.dl-visual img { max-width: 320px; margin: 0 auto; border-radius: 24px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); border: 4px solid #334155; }

.dl-steps { padding: 80px 0; background: #fff; text-align: center; }
.dl-steps h2 { font-size: 32px; margin-bottom: 50px; color: var(--text-main); }
.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.step-item { padding: 30px; border-radius: 12px; background: var(--bg-light); border: 1px solid var(--border); }
.step-num { width: 48px; height: 48px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: bold; margin: 0 auto 20px; }
.step-item h3 { font-size: 20px; margin-bottom: 15px; }
.step-item p { color: var(--text-muted); font-size: 15px; }