.home-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.top-note {
    height: 34px;
    color: #dce4ef;
    background: #0b1424;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.top-note .home-container {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0;
}

.top-note strong { color: #ffc65c; }
.status { display: flex; align-items: center; gap: 8px; }
.status::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #47d98b;
    box-shadow: 0 0 0 5px rgba(71, 217, 139, .12);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    margin: 0;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(16, 21, 30, .07);
    border-radius: 0;
    background: rgba(247, 245, 239, .9);
    box-shadow: none;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.navbar { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.site-header .brand { display: flex; align-items: center; gap: 12px; color: #10151e; text-decoration: none; }
.site-header .brand img { display: block; width: 72px; height: 72px; object-fit: contain; }
.site-header .brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.site-header .brand-copy strong { font-family: 'Manrope', sans-serif; font-size: 16px; letter-spacing: .04em; text-transform: uppercase; }
.site-header .brand-copy small { margin-top: 5px; color: #647083; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 7px; }
.nav-links a { padding: 10px 13px; border-radius: 10px; color: #3f4b5d; font-size: 14px; font-weight: 700; text-decoration: none; transition: .2s ease; }
.nav-links a:hover { color: #10151e; background: rgba(16, 21, 30, .055); }
.nav-links a.active:not(.nav-cta) { color: #111c2f; background: #ffe9b8; box-shadow: inset 0 0 0 1px rgba(245, 166, 35, .26); }
.nav-cta { display: inline-flex; align-items: center; gap: 10px; padding: 12px 17px !important; color: #fff !important; background: #111c2f; box-shadow: 0 10px 24px rgba(17, 28, 47, .16); }
.nav-cta:hover { color: #fff !important; background: #253753 !important; transform: translateY(-1px); }

.site-footer {
    display: block;
    margin: 0;
    padding: 0;
    border-radius: 0;
    color: #aeb8c7;
    background: #0b1424;
    font-size: inherit;
}

.site-footer .footer-main { display: grid; grid-template-columns: 1.3fr .7fr .8fr; gap: 60px; padding: 70px 0 55px; }
.footer-brand { display: flex; align-items: center; gap: 14px; color: #fff; }
.footer-brand img { width: 65px; height: 65px; object-fit: contain; border-radius: 12px; background: #fff; }
.site-footer .footer-brand strong { display: block; color: #fff; font-family: 'Manrope', sans-serif; font-size: 18px; }
.footer-brand span { color: #7f8da1; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.site-footer .footer-about { max-width: 430px; margin: 20px 0 0; color: #8f9caf; font-size: 13px; }
.site-footer .footer-col h4 { margin: 0 0 18px; color: #fff; font-family: 'Manrope', sans-serif; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.site-footer .footer-col a,
.site-footer .footer-col address { display: block; margin: 10px 0; color: #9aa7b9; font-size: 13px; font-style: normal; text-decoration: none; }
.site-footer .footer-col a:hover { color: #ffc65c; }
.site-footer .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0 28px; border-top: 1px solid rgba(255, 255, 255, .08); color: #68778d; font-size: 11px; }
.site-footer .gst { color: #8997aa; font-weight: 700; letter-spacing: .06em; }

@media (max-width: 760px) {
    .top-note .home-container { justify-content: center; text-align: center; }
    .top-note .status:last-child { display: none; }
    .navbar { min-height: 74px; }
    .site-header .brand img { width: 58px; height: 58px; }
    .site-header .brand-copy small,
    .nav-links a:not(.nav-cta) { display: none; }
    .site-footer .footer-main { grid-template-columns: 1fr; gap: 35px; }
    .site-footer .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
    .home-container { width: min(100% - 24px, 1180px); }
}

@media (max-width: 430px) {
    .site-header .brand-copy { display: none; }
    .navbar { gap: 10px; }
    .nav-cta { padding: 10px 12px !important; font-size: 12px !important; }
}

@media print {
    .top-note,
    .site-header,
    .site-footer { display: none !important; }
}
