.row {
display: flex;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
}
.col,
.col-6,
.col-12,
.col-md-2,
.col-md-6 {
position: relative;
width: 100%;
padding-right: 15px;
padding-left: 15px;
}
.col            { flex-basis: 0; flex-grow: 1; max-width: 100%; }
.col-6          { flex: 0 0 50%;  max-width: 50%; }
.col-12         { flex: 0 0 100%; max-width: 100%; }
.col-md-2,
.col-md-6       { flex: 0 0 100%; max-width: 100%; }
@media (min-width: 768px) {
.col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-md-6 { flex: 0 0 50%;        max-width: 50%; }
.justify-content-md-end { justify-content: flex-end; }
}
.d-flex { display: flex; }
.justify-content-start { justify-content: flex-start; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-md-0 { margin-top: 1.5rem; }
@media (min-width: 768px) {
.text-md-right { text-align: right; }
.mt-md-0 { margin-top: 0; }
}
.skip-link {
position: absolute;
left: -9999px;
top: 0;
z-index: 10000;
padding: 10px 18px;
background: #0d1b2e;
color: #fff;
border-radius: 0 0 6px 0;
font: 600 14px/1.2 'Inter', sans-serif;
}
.skip-link:focus {
left: 0;
}
:focus-visible {
outline: 2px solid #4da3ff;
outline-offset: 2px;
}
img {
max-width: 100%;
}
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: 0.001ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.001ms !important;
scroll-behavior: auto !important;
}
.reveal { opacity: 1 !important; transform: none !important; }
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.grabbing,
.grabbing * {
user-select: none !important;
-webkit-user-select: none !important;
}
::-webkit-scrollbar {
width: 5px;
}
::-webkit-scrollbar-track {
background: #0A101E;
}
::-webkit-scrollbar-thumb {
background: var(--blue-mid);
border-radius: 3px;
}
a {
text-decoration: none !important;
color: inherit;
}
a:hover {
text-decoration: none !important;
color: inherit;
}
button:focus,
a:focus {
outline: none !important;
box-shadow: none !important;
}
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
figure {
margin-top: 0;
margin-bottom: 0;
}
ul,
ol {
padding-left: 0;
}
.navbar.scrolled {
background: rgba(10, 16, 30, 0.97);
box-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}
.nav-container {
max-width: 1260px;
margin: 0 auto;
height: 100%;
padding: 0 36px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
width: 100%;
}
.nav-brand {
display: flex;
align-items: center;
flex-shrink: 0;
}
.nav-logo-img {
height: 42px;
width: auto;
object-fit: contain;
display: block;
filter: brightness(1.05);
}
.nav-links {
display: flex;
align-items: center;
gap: 2px;
list-style: none;
flex: 1;
justify-content: center;
margin-bottom: 0;
padding-left: 0;
}
.nav-links li {
position: relative;
}
.nav-link:hover {
color: #fff !important;
background: rgba(255, 255, 255, 0.07);
}
.nav-link.active,
.nav-link--active {
color: #fff !important;
background: rgba(255, 255, 255, 0.08);
}
.nav-arrow {
font-size: 9px;
opacity: 0.6;
transition: transform 0.25s;
}
.has-dropdown:hover .nav-arrow,
.has-dropdown.dropdown-open .nav-arrow {
transform: rotate(180deg);
}
.dropdown {
position: absolute;
top: calc(100% + 10px);
left: 50%;
transform: translateX(-50%) translateY(-6px);
min-width: 200px;
background: rgba(10, 16, 30, 0.98);
backdrop-filter: blur(20px);
border: 1px solid rgba(74, 158, 218, 0.18);
border-radius: 12px;
padding: 8px;
opacity: 0;
pointer-events: none;
transition: opacity 0.2s, transform 0.2s;
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.has-dropdown:hover .dropdown,
.has-dropdown.dropdown-open .dropdown {
opacity: 1;
pointer-events: all;
transform: translateX(-50%) translateY(0);
}
.dropdown a {
display: block;
padding: 9px 14px;
font-size: 13px;
color: rgba(255, 255, 255, 0.72) !important;
text-decoration: none;
border-radius: 8px;
transition: background 0.15s, color 0.15s;
}
.dropdown a:hover {
background: rgba(74, 158, 218, 0.12);
color: var(--blue-neon) !important;
}
.dropdown a.active {
background: rgba(74, 158, 218, 0.16) !important;
color: var(--blue-neon) !important;
font-weight: 600;
}
.nav-right {
display: flex;
align-items: center;
gap: 12px;
}
.lang-switcher i {
font-size: 13px;
}
.lang-switcher:hover {
border-color: var(--blue-neon);
color: var(--blue-neon);
}
.hamburger {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 4px;
}
.hamburger span {
display: block;
width: 22px;
height: 2px;
background: var(--white);
border-radius: 2px;
transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
opacity: 0;
}
.hamburger.open span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
.footer-logo-row {
padding-bottom: 32px;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
height: 46px;
width: auto;
object-fit: contain;
display: block;
filter: brightness(1.05);
}
.footer-top {
display: grid;
grid-template-columns: auto auto auto 1fr;
gap: 0 72px;
padding: 40px 0 44px;
align-items: start;
}
.footer-links-group h5,
.footer-contact h5 {
font-size: 13.5px;
font-weight: 700;
color: #ffffff;
margin-bottom: 20px;
letter-spacing: 0.5px;
text-transform: uppercase;
}
.footer-links-group ul {
list-style: none;
display: flex;
flex-direction: column;
gap: 12px;
padding-left: 0;
margin-bottom: 0;
}
.footer-links-group a {
font-size: 12.5px;
color: rgba(255, 255, 255, 0.6) !important;
text-decoration: none;
transition: color 0.25s ease, padding-left 0.25s ease;
line-height: 1.4;
display: inline-block;
}
.footer-links-group a:hover {
color: var(--blue-neon) !important;
padding-left: 4px;
}
.footer-contact {
text-align: right;
justify-self: end;
min-width: 220px;
}
.footer-contact h5 {
text-align: right;
}
.footer-contact-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 12px;
padding-left: 0;
margin-bottom: 0;
}
.footer-contact-list li {
font-size: 12.5px;
color: rgba(255, 255, 255, 0.6);
display: flex;
align-items: center;
justify-content: flex-end;
line-height: 1.4;
}
.footer-contact-list span {
color: rgba(255, 255, 255, 0.6);
}
.footer-contact-list a {
color: rgba(255, 255, 255, 0.6) !important;
text-decoration: none;
transition: color 0.25s ease;
}
.footer-contact-list a:hover {
color: var(--blue-neon) !important;
}
.footer-contact-icon {
color: var(--blue-neon);
opacity: 0.9;
font-size: 13px;
display: inline-block;
}
.footer-bottom {
padding: 20px 0;
border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom p {
font-size: 12px;
color: rgba(255, 255, 255, 0.35);
font-weight: 400;
margin: 0;
}
.form-status {
margin: 10px 0 0;
font-size: 14px;
min-height: 1.2em;
color: #2e7d32;
}
.form-status.is-error {
color: #c62828;
}
.field-error {
border-color: #c62828 !important;
outline: 1px solid rgba(198, 40, 40, .35);
}
.nf-section {
min-height: 52vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 80px 20px;
}
.nf-code { font-size: 64px; font-weight: 800; margin: 0 0 8px; opacity: .35; }
.nf-text { max-width: 520px; margin: 14px auto 26px; line-height: 1.6; }
.nf-btn {
display: inline-block;
padding: 12px 26px;
border-radius: 30px;
background: #0d1b2e;
color: #fff !important;
font-weight: 600;
}
.nf-btn:hover { background: #16294a; }