.sidenav {
position: fixed;
right: 12px;
top: 50%;
transform: translateY(-50%);
z-index: 1000;
display: flex;
flex-direction: column;
align-items: center;
gap: 2px;
background: rgba(11, 14, 20, 0.82);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 16px;
padding: 10px 6px;
}
.sn-item {
width: 38px;
height: 38px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 10px;
color: rgba(255, 255, 255, 0.35);
transition: all 0.2s;
text-decoration: none;
position: relative;
cursor: pointer;
border: none;
background: none;
}
.sn-item:hover {
color: var(--accent-blue);
background: rgba(59, 130, 246, 0.08);
}
.sn-item.active {
color: var(--accent-blue);
background: rgba(59, 130, 246, 0.1);
}
.sn-item[data-page="surm"]:hover {
color: var(--accent-gold);
background: rgba(212, 168, 75, 0.08);
}
.sn-item::before {
content: attr(data-label);
position: absolute;
right: calc(100% + 10px);
top: 50%;
transform: translateY(-50%);
background: rgba(11, 14, 20, 0.96);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 8px;
padding: 5px 10px;
font-size: 0.7rem;
font-weight: 600;
color: #fff;
white-space: nowrap;
opacity: 0;
pointer-events: none;
transition: opacity 0.15s;
}
.sn-item:hover::before {
opacity: 1;
}
.sn-sep {
width: 22px;
height: 1px;
background: rgba(255, 255, 255, 0.07);
margin: 3px 0;
}
.sn-letter {
font-size: 15px;
font-weight: 700;
line-height: 1;
letter-spacing: -0.5px;
}
.sn-letter--sm {
font-size: 11px;
letter-spacing: 0.5px;
}
.sn-item[data-page="andrea"] {
color: var(--accent-blue);
}
.sn-item[data-page="andrea"]:hover {
color: var(--accent-blue);
background: rgba(59, 130, 246, 0.12);
} .mobile-topbar {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
height: 56px;
background: rgba(11, 14, 20, 0.92);
backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(255, 255, 255, 0.07);
align-items: center;
justify-content: space-between;
padding: 0 20px;
}
.mobile-brand {
font-size: 0.95rem;
font-weight: 800;
color: #fff;
letter-spacing: -0.3px;
}
.mobile-menu-btn {
font-size: 1.4rem;
color: var(--text-white);
padding: 6px;
background: none;
border: none;
cursor: pointer;
}
.mobile-nav-links {
display: none;
position: fixed;
top: 56px;
left: 0;
right: 0;
background: rgba(11, 14, 20, 0.98);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
flex-direction: column;
padding: 16px 20px;
gap: 4px;
}
.mobile-nav-links.active {
display: flex;
}
.mobile-nav-links a {
font-size: 0.92rem;
font-weight: 500;
color: rgba(255, 255, 255, 0.7);
padding: 10px 12px;
border-radius: 8px;
text-decoration: none;
}
.mobile-nav-links a:hover {
color: #fff;
background: rgba(255, 255, 255, 0.05);
}
.footer-v2 {
background: #000;
border-top: 1px solid var(--border-light);
padding: 70px 0 0;
position: relative;
z-index: 2;
}
.footer-v2 .container-wide {
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
}
.footer-main {
display: grid;
grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
gap: 48px;
padding-bottom: 56px;
}
.footer-brand .logo-container {
display: inline-flex;
align-items: center;
gap: 12px;
margin-bottom: 24px;
}
.logo-icon {
width: 60px;
height: 45px;
flex-shrink: 0;
}
.nn-line {
stroke: #FFFFFF;
stroke-width: 1px;
stroke-linecap: round;
fill: none;
}
.nn-node {
fill: #FFFFFF;
stroke: #FFFFFF;
stroke-width: 1.5px;
}
.logo-sep {
width: 1px;
height: 40px;
background: var(--logo-sep);
flex-shrink: 0;
margin: 0 10px 0 5px;
}
.logo-txt-block {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.logo-brand {
font-size: 18px;
font-weight: 800;
color: var(--text-white);
line-height: 1;
}
.logo-slogan {
font-size: 7px;
font-weight: 700;
color: var(--text-gray);
letter-spacing: 3px;
text-transform: uppercase;
line-height: 1.3;
margin-top: 6px;
}
.footer-contact-list {
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 28px;
}
.footer-contact-list li {
display: flex;
align-items: center;
gap: 10px;
font-size: 0.875rem;
color: var(--text-gray);
}
.footer-contact-list svg {
flex-shrink: 0;
opacity: 0.6;
}
.footer-social {
display: flex;
gap: 10px;
}
.footer-social a {
width: 38px;
height: 38px;
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--text-gray);
transition: color 0.2s, border-color 0.2s;
}
.footer-social a:hover {
color: var(--text-white);
border-color: rgba(255, 255, 255, 0.45);
}
.footer-col-title {
font-size: 0.8rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--text-white);
margin-bottom: 20px;
}
.footer-col-links {
display: flex;
flex-direction: column;
gap: 12px;
}
.footer-col-links a {
font-size: 0.9rem;
color: var(--text-gray);
transition: color 0.2s;
}
.footer-col-links a:hover {
color: var(--text-white);
}
.footer-bottom {
border-top: 1px solid var(--border-light);
padding: 20px 0;
}
.footer-bottom p {
text-align: center;
color: var(--text-muted);
font-size: 0.82rem;
margin: 0;
}
.footer-v2 .container-wide {
padding: 0 16px;
}
.eco-mtab::after {
content: '';
position: absolute;
left: 0;
right: 0;
bottom: -1px;
height: 2px;
background: var(--pk);
border-radius: 2px;
transform: scaleX(0);
transform-origin: center;
transition: transform .2s;
}
.eco-mtab.is-active::after {
transform: scaleX(1);
}
@media (max-width: 1024px) {
.sidenav { display: none !important; }
.mobile-topbar { display: flex !important; }
.footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
.footer-main { grid-template-columns: 1fr; gap: 28px; }
}