*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { background:#f8f7f2; font-family:'Nunito',sans-serif; color:#222; overflow-x:hidden; }

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  background:rgba(12,53,38,0.97);
  backdrop-filter:blur(12px);
  position:sticky; top:0; z-index:100;
  box-shadow:0 2px 20px rgba(0,0,0,0.15);
}
.nav-inner {
  max-width:1100px; margin:0 auto;
  padding:0 28px;
  display:flex; align-items:center; justify-content:space-between;
  height:62px;
}
.nav-brand { display:flex; align-items:center; gap:10px; text-decoration:none; }
.nav-brand-icon {
  width:36px; height:36px; background:rgba(255,255,255,0.12);
  border-radius:8px; display:flex; align-items:center; justify-content:center;
  font-size:20px;
}
.nav-brand-name { font-size:15px; font-weight:900; color:#fff; letter-spacing:.2px; }
.nav-brand-sub { font-size:9.5px; color:rgba(255,255,255,0.55); font-weight:600; }
.nav-links { display:flex; align-items:center; gap:6px; }
.nav-link { color:rgba(255,255,255,0.75); font-size:12.5px; font-weight:700; text-decoration:none; padding:6px 12px; border-radius:6px; transition:all .2s; }
.nav-link:hover { color:#fff; background:rgba(255,255,255,0.1); }
.nav-cta { background:#e8621a; color:#fff; font-size:12px; font-weight:800; padding:8px 18px; border-radius:6px; text-decoration:none; letter-spacing:.3px; transition:background .2s; }
.nav-cta:hover { background:#c54e0e; }

/* Hamburger */
.nav-hamburger {
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:36px; height:36px; cursor:pointer; padding:4px;
  background:rgba(255,255,255,0.08); border-radius:7px; border:none;
}
.nav-hamburger span {
  display:block; height:2px; background:#fff; border-radius:2px;
  transition:all .25s;
}
.nav-hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity:0; }
.nav-hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display:none;
  position:fixed; top:62px; left:0; right:0; z-index:99;
  background:rgba(12,53,38,0.98); backdrop-filter:blur(12px);
  padding:12px 20px 20px;
  border-top:1px solid rgba(255,255,255,0.08);
  box-shadow:0 8px 24px rgba(0,0,0,0.2);
  flex-direction:column; gap:4px;
}
.nav-drawer.open { display:flex; }
.nav-drawer .nav-link {
  display:block; font-size:14px; padding:11px 14px;
  border-radius:8px; color:rgba(255,255,255,0.85);
}
.nav-drawer .nav-cta {
  margin-top:8px; text-align:center;
  padding:11px 14px; border-radius:8px; font-size:13px;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.site-footer { background:#071e11; padding:44px 28px 28px; }
.footer-inner { max-width:960px; margin:0 auto; }
.footer-top { display:grid; grid-template-columns:1fr 1fr 1fr; gap:40px; padding-bottom:32px; border-bottom:1px solid rgba(255,255,255,0.08); }
.footer-brand-name { font-size:16px; font-weight:900; color:#fff; margin-bottom:6px; }
.footer-brand-sub { font-size:11px; color:rgba(255,255,255,0.45); line-height:1.7; font-weight:600; }
.footer-col-title { font-size:10px; font-weight:800; color:rgba(255,255,255,0.4); text-transform:uppercase; letter-spacing:1.5px; margin-bottom:14px; }
.footer-col p, .footer-col a { font-size:12px; color:rgba(255,255,255,0.6); font-weight:600; line-height:1.9; text-decoration:none; display:block; }
.footer-col a:hover { color:#f5a830; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding-top:22px; }
.footer-copy { font-size:11px; color:rgba(255,255,255,0.3); font-weight:600; }
.footer-badge { font-size:10px; color:rgba(255,255,255,0.25); font-weight:700; background:rgba(255,255,255,0.05); padding:4px 10px; border-radius:4px; }

/* ══════════════════════════════
   RESPONSIVE BASE
══════════════════════════════ */
@media (max-width:768px) {
  .nav-links { display:none; }
  .nav-hamburger { display:flex; }
  .footer-top { grid-template-columns:1fr; gap:28px; }
  .footer-bottom { flex-direction:column; gap:10px; text-align:center; }
}
@media (max-width:480px) {
  .nav-inner { padding:0 16px; height:54px; }
  .nav-drawer { top:54px; }
}
