/* Mobile-first shared styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; height: 100%; }
body { font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; line-height: 1.6; color: #1f2937; background: #F5F5F5; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* Header */
.m-navbar { position: sticky; top: 0; width: 100%; background: #111827; color: #fff; z-index: 1000; border-bottom: 1px solid #222; }
.m-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; padding: 0 16px; }
.m-logo { display: inline-flex; align-items: center; gap: 10px; }
.m-logo img { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; }
.m-logo span { font-weight: 800; font-size: 18px; letter-spacing: .2px; }
.m-menu-btn { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border: 1px solid #2b2b2b; border-radius: 10px; background: #0f172a; color: #fff; }
.m-menu-btn:active { transform: scale(0.98); }

.m-drawer { position: fixed; top: 64px; right: 0; left: 0; background: #0b1220; border-bottom: 1px solid #1f2937; transform: translateY(-100%); transition: transform .25s ease; }
.m-drawer.open { transform: translateY(0); }
.m-nav-links { list-style: none; display: flex; flex-direction: column; }
.m-nav-links a { display: block; padding: 14px 18px; color: #e5e7eb; font-weight: 700; }
.m-nav-links a:hover { background: #111827; color: #ffffff; }

/* Hero */
.m-hero { padding: 24px 0 16px; background: linear-gradient(135deg, #25a849, #208243); color: #fff; }
.m-hero .title { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.m-hero .subtitle { font-size: 16px; opacity: .95; }
.m-cta { margin-top: 16px; display: inline-flex; gap: 10px; }
.m-btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 9999px; font-weight: 700; }
.m-btn.primary { background: #fff; color: #208243; }
.m-btn.secondary { background: transparent; color: #fff; border: 2px solid #fff; }

/* Sections */
.m-section { padding: 20px 0; }
.m-card { background: #ffffff; border-radius: 14px; padding: 16px; box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.m-list { list-style: none; display: grid; gap: 12px; }

/* Footer */
.m-footer { background: #1f2937; color: #9ca3af; padding: 20px 0; margin-top: 24px; border-top: 1px solid #374151; }
.m-footer .brand { color: #ffffff; font-weight: 800; font-size: 18px; margin-bottom: 8px; }
.m-footer .links { display: grid; gap: 6px; margin: 10px 0 0; }
.m-footer a { color: #9ca3af; }
.m-footer a:hover { color: #ffffff; }

/* Larger than mobile tweaks */
@media (min-width: 480px) {
  .m-hero .title { font-size: 32px; }
  .m-hero .subtitle { font-size: 18px; }
}


