/* AdaptaBill — Shared Styles */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    background: #f8fafc;
    line-height: 1.6;
}

/* Nav */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 250, 252, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 100;
    padding: 16px 0;
}
.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1a1a2e;
}
.nav-brand img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}
.nav-brand span {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.3px;
}
.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}
.nav-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: #1a1a2e; }

/* Footer */
footer {
    border-top: 1px solid #f1f5f9;
    padding: 40px 32px;
    text-align: center;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-inner p,
.footer-inner a {
    color: #94a3b8;
    font-size: 13px;
    text-decoration: none;
}
.footer-inner a:hover { color: #64748b; }

/* Responsive */
@media (max-width: 768px) {
    .footer-inner { flex-direction: column; gap: 12px; }
    .nav-links { display: none; }
}
