/* ==========================================================================
   Nav + Footer redesign (2026-08-08)
   Design & copy sourced from "sciopay-website-homepage-html (1).html"
   Old versions backed up at:
     _includes/menu-backup-2026-08-08.html
     _includes/footer-backup-2026-08-08.html
   ========================================================================== */

/* ---------- NAV ---------- */
.nav-wrap{background:#fff;border-bottom:0.5px solid #eeecea;padding:0 2.5rem;position:sticky;top:0;z-index:100}
.nav-inner{max-width:1180px;margin:0 auto;height:64px;display:flex;align-items:center;justify-content:space-between;gap:1rem}
.nav-logo{display:flex;align-items:center;gap:8px;text-decoration:none;flex-shrink:0}
.nav-logo .logo-full{display:block;height:32px;width:auto}
.nav-logo .logo-icon{display:none;height:32px;width:auto}
.nav-links{display:flex;align-items:center;gap:0}
.nav-btn{background:transparent;border:none;cursor:pointer;font-size:14px;font-weight:500;color:#374151;padding:8px 12px;border-radius:6px;display:flex;align-items:center;gap:4px;transition:all 0.15s;white-space:nowrap;font-family:inherit}
.nav-btn:hover,.nav-btn.open{color:#1a6fe6}
.nav-chevron{transition:transform 0.2s;display:inline-flex}
.nav-btn.open .nav-chevron{transform:rotate(180deg)}
.nav-item{position:relative}
.dropdown{display:none;position:absolute;top:calc(100% + 6px);background:#fff;border-radius:14px;border:0.5px solid #e8e8e4;box-shadow:0 10px 36px rgba(0,0,0,0.1);padding:1rem;min-width:480px;z-index:200;left:0}
.dropdown.right{left:auto;right:0;min-width:420px}
.dropdown.show{display:grid;grid-template-columns:1fr 1fr;gap:2px;animation:navDropIn 0.18s ease}
@keyframes navDropIn{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:translateY(0)}}
.drop-item{display:flex;align-items:flex-start;gap:10px;padding:9px 10px;border-radius:9px;cursor:pointer;text-decoration:none;transition:background 0.15s}
.drop-item:hover{background:#f4f5f7}
.drop-icon{width:36px;height:36px;border-radius:9px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.drop-icon svg{width:17px;height:17px}
.drop-title{font-size:13px;font-weight:600;margin:0 0 1px;line-height:1.3}
.drop-desc{font-size:11px;color:#6b7280;margin:0;line-height:1.4}
.btn-start{background:#1a6fe6;color:#fff;border:none;border-radius:7px;padding:9px 20px;font-size:13px;font-weight:600;cursor:pointer;transition:background 0.15s;text-decoration:none;display:inline-flex;align-items:center}
.btn-start:hover{background:#1558c4;color:#fff}

@media(max-width:900px){
  .nav-wrap{padding:0 1.25rem}
  .nav-inner{height:56px}
  .nav-links{display:none}
}

/* ---------- FOOTER ---------- */
.site-footer{background:#f7f7f5;padding:3.5rem 2.5rem 0;border-top:0.5px solid #e8e8e4}
.site-footer-inner{max-width:1180px;margin:0 auto}
.site-footer-top{display:grid;grid-template-columns:1.2fr 1fr 1fr 1fr 1fr;gap:2rem;padding-bottom:3rem;border-bottom:0.5px solid #e4e4e0}
.footer-brand-logo{height:26px;width:auto;margin-bottom:0.875rem;display:block}
.footer-tagline{font-size:12px;color:#888;line-height:1.65;margin:0 0 1.25rem}
.footer-social{display:flex;gap:8px}
.footer-social a{width:32px;height:32px;border-radius:8px;background:rgba(0,0,0,0.04);display:flex;align-items:center;justify-content:center;text-decoration:none;transition:background 0.15s}
.footer-social a:hover{background:rgba(0,0,0,0.08)}
.footer-social svg{width:15px;height:15px;color:#5a6070}
.footer-col-title{font-size:11px;font-weight:700;color:#1a6fe6;text-transform:uppercase;letter-spacing:0.08em;margin:0 0 1rem}
.footer-col a{font-size:12px;color:#5a6070;text-decoration:none;display:block;padding-bottom:8px;border-bottom:0.5px solid #e4e4e0;margin-bottom:8px}
.footer-col a:last-child{border-bottom:none;margin-bottom:0;padding-bottom:0}
.footer-col a:hover{color:#1a6fe6}
.site-footer-legal{display:grid;grid-template-columns:1fr 1fr 1fr;gap:1.5rem;padding:1.5rem 0}
.site-footer-legal p{font-size:10px;color:#aaa;line-height:1.6;margin:0}
.site-footer-legal a{color:#1a6fe6;text-decoration:none}

@media(max-width:900px){
  .site-footer{padding:2.5rem 1.25rem 0}
  .site-footer-top{grid-template-columns:1fr 1fr;gap:1.5rem}
  .site-footer-legal{grid-template-columns:1fr}
}
@media(max-width:480px){
  .site-footer-top{grid-template-columns:1fr}
}
