*, *::before, *::after { box-sizing: border-box; }
html { height: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #ffffff;
    color: #0a0a0a;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

a {
    cursor: pointer;
}

/* NAV */
.nav-bar {
    height: 85px; position: sticky; top: 0;
    display: flex; align-items: center; justify-content: center;
    border-bottom: 1px solid #dadada; z-index: 10;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.nav-bar__inner {
    width: 100%; max-width: 1200px; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
@media (max-width: 930px) { .nav-bar__inner { display: none; } }
.nav-bar__mobile-inner {
    display: none; width: 100%;
    justify-content: space-between; align-items: center;
    margin-left: 20px; margin-right: 20px;
}
@media (max-width: 930px) { .nav-bar__mobile-inner { display: flex; } }
.nav-bar__left { display: flex; align-items: center; gap: 20px; }
.nav-bar__logo-link {
    display: flex;
}
.nav-bar__logo {
    width: 200px;
}
.nav-bar__links { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.nav-bar__link a { display: block; padding: 8px 13px; border-radius: 8px; font-size: 14px; font-weight: 500; color: #0a0a0a; text-decoration: none; transition: background 0.2s; }
.nav-bar__link a:hover { background: #f0f0f0; }
.nav-bar__right { display: flex; align-items: center; gap: 8px; }
.btn { padding: 9px 16px; border-radius: 10px; font-family: "Poppins", sans-serif; font-size: 14px; font-weight: 500; text-decoration: none; cursor: pointer; transition: background 0.2s, transform 0.1s; border: none; display: inline-block; }
.btn:active { transform: scale(0.98); }
.btn--ghost { color: #0a0a0a; background: transparent; }
.btn--ghost:hover { background: #f0f0f0; }
.btn--muted { color: #0a0a0a; background: #ededed; }
.btn--muted:hover { background: #d8d8d8; }
.btn--primary { color: #fff; background: #000; }
.btn--primary:hover { background: #222; }
.icon { cursor: pointer; width: 40px; padding: 5px; border-radius: 5px; transition: background-color 0.2s ease; }
@media (hover: hover) and (pointer: fine) { .icon:hover { background-color: #dadada; } }

/* MOBILE MENU */
.cover { position: fixed; left: 0; top: 0; width: 100%; height: 100%; background-color: #9c9c9c; opacity: 0.7; z-index: 11; }
.menu { position: fixed; width: 300px; height: 100%; top: 0; left: -301px; background-color: #ffffff; border-right: 1px solid #dadada; animation-duration: 0.5s; animation-fill-mode: forwards; z-index: 12; }
@keyframes menuOpen { from { left: -301px; } to { left: 0px; } }
@keyframes menuClose { from { left: 0px; } to { left: -301px; } }
.menu__close { position: relative; top: 20px; left: 240px; }
.menu__links { list-style-type: none; padding: 0; margin: 20px; margin-top: 30px; margin-bottom: 0; display: flex; flex-direction: column; gap: 5px; }
.menu__link { padding: 13px; border-radius: 10px; cursor: pointer; transition: background-color 0.2s ease; }
@media (hover: hover) and (pointer: fine) { .menu__link:hover { background-color: #dadada; } }
.menu__link p { margin: 0; font-weight: 500; }
.menu__link a { text-decoration: none; color: #000000; }
.menu__divider { border-bottom: 1px solid #dadada; margin: 15px 20px; }
.menu__bottom { display: flex; flex-direction: column; margin: 0 20px; gap: 10px; }
.right-bottom-btn { padding: 10px 15px; border-radius: 10px; transition: background-color 0.2s ease; text-decoration: none; font-size: 14px; font-family: "Poppins", sans-serif; font-weight: 500; }
.right-bottom-btn p { margin: 0; }
.menu__contact { color: #000; text-align: center; }
@media (hover: hover) and (pointer: fine) { .menu__contact:hover { background-color: #dadada; } }
.menu__login { text-align: center; background-color: #ededed; color: #000; }
@media (hover: hover) and (pointer: fine) { .menu__login:hover { background-color: #d1d1d1; } }
.menu__signup { text-align: center; background-color: #000000; color: #ffffff; }
@media (hover: hover) and (pointer: fine) { .menu__signup:hover { background-color: #464646; } }

/* PAGE */
.page {
    flex: 1;
    display: flex;
    justify-content: center;
}

.legal {
    width: 1200px;
    margin-right: 20px;
    margin-left: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.legal h1, .legal h2 {
    color: #111;
}

.legal p {
    margin: 10px 0;
}

.legal ul {
    margin: 10px 0 20px 20px;
}

.legal a {
    text-decoration: none;
    color: #11aaa2;
}

/* FOOTER */
.footer { background: #fff; border-top: 1px solid #dadada; display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 28px 24px; }
.footer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 4px 20px; justify-content: center; }
.footer__link a { font-size: 13px; color: #666; text-decoration: none; transition: color 0.2s; }
.footer__link a:hover { color: #000; }
.footer__copy { font-size: 12px; color: #aaa; }