:root {
--bg-dark: #0d1b2e;
--bg-mid: #0f1f35;
--bg-card: #0f1829;
--bg-white: #ffffff;
--blue-neon: #4a9eda;
--blue-mid: #2271b3;
--blue-deep: #0d2a4a;
--blue-panel: #0d2744;
--red-accent: #c0392b;
--red-dark: #8b1a1a;
--red-panel: #6e1515;
--white: #ffffff;
--text-dark: #1a2332;
--text-mid: #4a5568;
--gray: rgba(255, 255, 255, 0.55);
--nav-h: 68px;
--font: 'Inter', sans-serif;
--glass: rgba(255, 255, 255, 0.06);
--shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
--radius: 14px;
}
html {
scroll-behavior: smooth;
}
body {
font-family: var(--font);
background: #0d1b2e;
color: var(--white);
overflow-x: hidden;
padding-bottom: 0;
}
.navbar {
display: block;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 999;
height: var(--nav-h);
padding: 0;
}
.nav-link {
display: inline-flex;
align-items: center;
gap: 5px;
padding: 8px 16px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
color: rgba(255, 255, 255, 0.85) !important;
text-decoration: none;
white-space: nowrap;
transition: color 0.2s, background 0.2s;
cursor: pointer;
background: transparent;
}
.lang-switcher {
display: flex;
align-items: center;
gap: 7px;
padding: 7px 14px;
border-radius: 20px;
border: 1.5px solid rgba(255, 255, 255, 0.2);
font-size: 13px;
font-weight: 600;
color: rgba(255, 255, 255, 0.8);
cursor: pointer;
transition: border-color 0.2s, color 0.2s;
}
@media (max-width: 768px) {
.nav-container {
padding: 0 24px;
}
.nav-links {
display: none;
}
.nav-links.open {
display: flex;
flex-direction: column;
align-items: flex-start;
position: fixed;
inset: var(--nav-h) 0 0 0;
background: rgba(10, 16, 30, 0.98);
padding: 28px 24px;
gap: 4px;
z-index: 998;
overflow-y: auto;
}
.hamburger {
display: flex;
}
.has-dropdown .dropdown {
position: static;
transform: none;
opacity: 0;
pointer-events: none;
max-height: 0;
overflow: hidden;
background: transparent;
border: none;
box-shadow: none;
padding: 0 0 0 16px;
margin-top: 0;
width: 100%;
min-width: unset;
transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}
.has-dropdown.dropdown-open .dropdown {
opacity: 1;
pointer-events: all;
max-height: 350px;
margin-top: 8px;
}
.has-dropdown .dropdown a {
padding: 8px 12px;
}
}
.section {
padding: 80px 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
}
@media (max-width: 768px) {
.container {
padding: 0 24px;
}
.section {
padding: 60px 0;
}
}
.section-title-dark {
font-size: clamp(22px, 3vw, 34px);
font-weight: 800;
color: #1a2332;
margin-bottom: 12px;
letter-spacing: -0.3px;
text-align: center;
}
.section-desc-dark {
font-size: 14px;
color: #6b7a8d;
max-width: 580px;
line-height: 1.75;
margin: 0 auto;
text-align: center;
}
.section-title-white {
font-size: clamp(22px, 3vw, 34px);
font-weight: 800;
color: #ffffff;
margin-bottom: 12px;
letter-spacing: -0.3px;
text-align: center;
}
.section-desc-white {
font-size: 14px;
color: rgba(255, 255, 255, 0.65);
max-width: 580px;
line-height: 1.75;
margin: 0 auto;
text-align: center;
}
.section-header-center {
text-align: center;
margin-bottom: 56px;
}
.reveal {
opacity: 0;
transform: translateY(28px);
transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
will-change: transform, opacity;
}
.footer {
background: #0a0a0a;
padding: 44px 0 0;
}
.footer-top > div {
max-width: 100% !important;
flex: none !important;
}
@media (max-width: 1100px) {
.footer-top {
grid-template-columns: auto auto auto;
gap: 32px;
}
.footer-contact {
grid-column: span 3;
text-align: left;
justify-self: start;
min-width: unset;
}
.footer-contact h5 {
text-align: left;
}
.footer-contact-list li {
justify-content: flex-start;
}
}
@media (max-width: 900px) {
.footer-top {
grid-template-columns: 1fr 1fr;
gap: 28px;
}
.footer-contact {
grid-column: span 2;
text-align: left;
justify-self: start;
}
.footer-contact h5 {
text-align: left;
}
.footer-contact-list li {
justify-content: flex-start;
}
}
@media (max-width: 576px) {
.footer-top {
grid-template-columns: 1fr;
gap: 24px;
}
.footer-contact {
grid-column: span 1;
}
}
@keyframes heroFadeIn {
from {
opacity: 0;
transform: translateY(22px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes dividerGlow {
0%, 100% {
box-shadow: 0 0 8px rgba(74, 158, 218, 0.5);
width: 60px;
}
50% {
box-shadow: 0 0 18px rgba(74, 158, 218, 0.9);
width: 80px;
}
}
:root {
--bg-dark: #0d1b2e;
--bg-mid: #0f1f35;
--bg-card: #0f1829;
--bg-white: #ffffff;
--blue-neon: #4a9eda;
--blue-mid: #2271b3;
--blue-deep: #0d2a4a;
--blue-panel: #0d2744;
--red-accent: #c0392b;
--red-dark: #8b1a1a;
--red-panel: #6e1515;
--white: #ffffff;
--text-dark: #1a2332;
--text-mid: #4a5568;
--gray: rgba(255, 255, 255, 0.55);
--nav-h: 68px;
--font: 'Inter', sans-serif;
--glass: rgba(255, 255, 255, 0.06);
--shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
--radius: 14px;
}
.navbar {
background: rgba(10, 16, 30, 0.55); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255, 255, 255, 0.07); transition: background 0.35s, box-shadow 0.35s;
}
.nav-link {
display: inline-flex;
align-items: center;
gap: 5px;
padding: 8px 16px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
color: rgba(255, 255, 255, 0.85);
text-decoration: none;
white-space: nowrap;
transition: color 0.2s, background 0.2s;
cursor: pointer;
}
.hero {
position: relative;
width: 100%;
height: 100vh;
min-height: 600px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.hero-bg {
position: absolute;
inset: 0;
}
.hero-bg-img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 40%;
display: block;
}
.hero-overlay {
position: absolute;
inset: 0;
z-index: 1;
background: linear-gradient(180deg,
rgba(10, 16, 30, 0.72) 0%,
rgba(10, 16, 30, 0.30) 35%,
rgba(10, 16, 30, 0.38) 65%,
rgba(10, 16, 30, 0.75) 100%);
}
.hero-content {
position: relative;
z-index: 5;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
animation: heroFadeIn 0.9s ease 0.15s both;
padding: 0 20px;
margin-top: -60px;
}
.hero-brand-row {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
margin-bottom: 14px;
}
.hero-brand-logo {
height: 80px;
width: auto;
object-fit: contain;
filter: drop-shadow(0 2px 16px rgba(255, 255, 255, 0.25));
}
.hero-title {
font-size: clamp(48px, 7.5vw, 86px);
font-weight: 800;
letter-spacing: 2px;
color: #fff;
line-height: 1;
text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 255, 255, 0.08);
margin: 0;
}
.hero-divider {
width: 60px;
height: 2.5px;
background: linear-gradient(90deg, transparent, var(--blue-neon), transparent);
border-radius: 2px;
margin: 0 auto 16px;
box-shadow: 0 0 10px rgba(74, 158, 218, 0.7);
animation: dividerGlow 2.5s ease-in-out infinite;
}
.hero-subtitle {
font-size: clamp(15px, 2vw, 19px);
font-weight: 300;
letter-spacing: 4px;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.70);
margin: 0;
}
.main-wrapper {
background: #ffffff;
margin: 0 16px;
border-radius: 20px 20px 16px 16px;
overflow: hidden;
margin-top: -20px;
position: relative;
z-index: 10;
box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.4);
}
.footer {
margin: 0 16px;
border-radius: 0 0 16px 16px;
overflow: hidden;
}
.section {
padding: 80px 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
}
.section-title-dark {
font-size: clamp(22px, 3vw, 34px);
font-weight: 800;
color: #1a2332;
margin-bottom: 12px;
letter-spacing: -0.3px;
text-align: center;
}
.section-desc-dark {
font-size: 14px;
color: #6b7a8d;
max-width: 580px;
line-height: 1.75;
margin: 0 auto;
text-align: center;
}
.section-title-white {
font-size: clamp(22px, 3vw, 34px);
font-weight: 800;
color: #ffffff;
margin-bottom: 12px;
letter-spacing: -0.3px;
text-align: center;
}
.section-desc-white {
font-size: 14px;
color: rgba(255, 255, 255, 0.6);
max-width: 580px;
line-height: 1.75;
margin: 0 auto;
text-align: center;
}
.section-header-center {
text-align: center;
margin-bottom: 56px;
}
.reveal {
opacity: 0;
transform: translateY(28px);
transition: opacity 0.65s ease, transform 0.65s ease;
}
.offer-section {
background: #ffffff;
}
.offer-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px 24px;
}
.offer-card {
background: #F5F5F5;
border: 1px solid #e2e8f0;
border-radius: 16px;
padding: 32px 28px;
text-align: left;
transition: transform 0.25s, box-shadow 0.25s;
cursor: default;
display: flex;
flex-direction: column;
}
.offer-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}
.offer-card-header {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 20px;
}
.offer-card-icon {
font-size: 20px;
color: #4a5568;
flex-shrink: 0;
}
.offer-card-icon.benefits-icon {
color: #2ebd60;
}
.offer-card h3 {
font-size: 18px;
font-weight: 700;
color: #1a2332;
margin: 0;
line-height: 1.35;
}
.offer-bullet-list {
list-style: disc;
padding-left: 20px;
display: flex;
flex-direction: column;
gap: 10px;
margin: 0;
}
.offer-bullet-list li {
font-size: 13.5px;
color: #4a5568;
line-height: 1.6;
}
.ecosystem-section {
position: relative;
background: #1a2332;
overflow: hidden;
padding: 80px 0;
}
.ecosystem-section::before {
content: '';
position: absolute;
inset: 0;
background: url('images/ecosystem-bg.webp') center/cover no-repeat;
opacity: 0.35;
z-index: 0;
}
.ecosystem-section::after {
content: '';
position: absolute;
inset: 0;
background: rgba(15, 25, 45, 0.62);
z-index: 0;
}
.ecosystem-section .container {
position: relative;
z-index: 1;
}
.section-header-left {
text-align: left;
margin-bottom: 48px;
}
.section-header-left .section-title-white {
text-align: left;
}
.section-header-left .section-desc-white {
text-align: left;
margin: 0;
max-width: 680px;
}
.paas-slider-wrapper {
position: relative;
width: 100%;
}
.paas-slider {
display: flex;
gap: 20px;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
padding-bottom: 16px;
cursor: grab;
}
.paas-slider:active {
cursor: grabbing;
}
.paas-slider::-webkit-scrollbar {
display: none;
}
.paas-card {
flex: 0 0 calc(25% - 15px);
min-width: 280px;
background: #FFFFFFE5;
border-radius: 16px;
padding: 30px 24px;
scroll-snap-align: start;
display: flex;
flex-direction: column;
gap: 12px;
transition: transform 0.25s, box-shadow 0.25s;
cursor: default;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.paas-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}
.paas-card-header {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 6px;
}
.paas-card-icon {
font-size: 20px;
flex-shrink: 0;
}
.paas-card h3 {
font-size: 16px;
font-weight: 700;
color: #1a2332;
margin: 0;
line-height: 1.3;
}
.paas-card-desc {
font-size: 13px;
color: #4a5568;
line-height: 1.5;
margin: 0 0 4px 0;
}
.paas-card-list {
list-style: disc;
padding-left: 20px;
display: flex;
flex-direction: column;
gap: 8px;
margin: 0;
}
.paas-card-list li {
font-size: 12.5px;
color: #4a5568;
line-height: 1.5;
}
.paas-dots {
display: flex;
justify-content: center;
gap: 8px;
margin-top: 24px;
}
.paas-dot {
width: 10px;
height: 10px;
border-radius: 50%;
border: none;
background: rgba(255, 255, 255, 0.35);
cursor: pointer;
padding: 0;
transition: background 0.25s, transform 0.25s;
}
.paas-dot.active {
background: #ffffff;
transform: scale(1.2);
}
@media (max-width: 1100px) {
.paas-card {
flex: 0 0 calc(33.333% - 14px);
}
}
@media (max-width: 800px) {
.paas-card {
flex: 0 0 calc(50% - 10px);
}
}
@media (max-width: 500px) {
.paas-card {
flex: 0 0 100%;
}
}
.trust-section {
background: #ffffff;
padding: 100px 0;
}
.trust-grid {
display: flex;
justify-content: center;
gap: 32px;
flex-wrap: wrap;
}
.trust-card {
width: 448px;
max-width: 100%;
min-height: 400px;
border-radius: 16px;
padding: 42px 36px;
text-align: left;
display: flex;
flex-direction: column;
gap: 10px;
transition: transform 0.25s, box-shadow 0.25s;
cursor: default;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
box-sizing: border-box;
}
.trust-card:hover {
transform: translateY(-4px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.trust-card-security {
background: #E2FFEA;
}
.trust-card-privacy {
background: #E5E2FF;
}
.trust-card-header {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 8px;
}
.trust-card-icon {
font-size: 24px;
width: 24px;
height: 24px;
flex-shrink: 0;
}
.trust-card h3 {
font-size: 20px;
font-weight: 700;
color: #1a2332;
margin: 0;
line-height: 1.35;
}
.trust-card-desc {
font-size: 15px;
font-weight: 600;
color: #1a2332;
line-height: 1.4;
margin: 0 0 12px 0;
}
.trust-card-list {
list-style: disc;
padding-left: 20px;
display: flex;
flex-direction: column;
gap: 10px;
margin: 0;
}
.trust-card-list li {
font-size: 13.5px;
color: #4a5568;
line-height: 1.5;
}
@media (max-width: 768px) {
.trust-card {
height: auto;
min-height: auto;
padding: 32px 24px;
}
}
.jp-section {
position: relative;
background: #1a2332;
overflow: hidden;
padding: 80px 0;
}
.jp-section::before {
content: '';
position: absolute;
inset: 0;
background: url('images/ecosystem-bg.webp') center/cover no-repeat;
opacity: 0.35;
z-index: 0;
}
.jp-section::after {
content: '';
position: absolute;
inset: 0;
background: rgba(15, 25, 45, 0.62);
z-index: 0;
}
.jp-section .container {
position: relative;
z-index: 1;
}
.jp-slider-wrapper {
position: relative;
width: 100%;
}
.jp-slider {
display: flex;
gap: 20px;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
padding-bottom: 16px;
cursor: grab;
}
.jp-slider:active {
cursor: grabbing;
}
.jp-slider::-webkit-scrollbar {
display: none;
}
.jp-card {
flex: 0 0 calc(25% - 15px);
min-width: 280px;
background: #FFFFFFE5;
border-radius: 16px;
padding: 30px 24px;
scroll-snap-align: start;
display: flex;
flex-direction: column;
gap: 12px;
transition: transform 0.25s, box-shadow 0.25s;
cursor: default;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.jp-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}
.jp-card-header {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 6px;
}
.jp-card-icon {
font-size: 20px;
flex-shrink: 0;
}
.jp-card h3 {
font-size: 16px;
font-weight: 700;
color: #1a2332;
margin: 0;
line-height: 1.3;
}
.jp-card-desc {
font-size: 13px;
color: #4a5568;
line-height: 1.5;
margin: 0;
}
.jp-dots {
display: flex;
justify-content: center;
gap: 8px;
margin-top: 24px;
}
.jp-dot {
width: 10px;
height: 10px;
border-radius: 50%;
border: none;
background: rgba(255, 255, 255, 0.35);
cursor: pointer;
padding: 0;
transition: background 0.25s, transform 0.25s;
}
.jp-dot.active {
background: #ffffff;
transform: scale(1.2);
}
@media (max-width: 1100px) {
.jp-card {
flex: 0 0 calc(33.333% - 14px);
}
}
@media (max-width: 800px) {
.jp-card {
flex: 0 0 calc(50% - 10px);
}
}
@media (max-width: 500px) {
.jp-card {
flex: 0 0 100%;
}
}
.journey-section {
background: #ffffff;
}
.journey-slider-wrapper {
position: relative;
width: 100%;
}
.journey-slider {
display: flex;
gap: 20px;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
padding-bottom: 16px;
cursor: grab;
}
.journey-slider:active {
cursor: grabbing;
}
.journey-slider::-webkit-scrollbar {
display: none;
}
.journey-card {
flex: 0 0 calc(33.333% - 14px);
min-width: 320px;
border-radius: 16px;
padding: 32px 28px;
scroll-snap-align: start;
display: flex;
flex-direction: column;
gap: 16px;
transition: transform 0.25s, box-shadow 0.25s;
cursor: default;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}
.journey-card:hover {
transform: translateY(-4px);
box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.journey-card-staff {
background: #E2F0FF;
}
.journey-card-shortvisit {
background: #FFE2E2;
}
.journey-card-events {
background: #FFE2FD;
}
.journey-card-hotel {
background: #E2FFF0;
}
.journey-card-vip {
background: #ece8ff;
}
.journey-card-title {
font-size: 18px;
font-weight: 700;
color: #1a2332;
margin: 0 0 4px 0;
line-height: 1.35;
}
.journey-card-desc {
font-size: 12.5px;
color: #4a5568;
line-height: 1.6;
margin: 0;
}
.journey-card-body {
display: flex;
flex-direction: column;
gap: 14px;
}
.journey-subsection {
display: flex;
flex-direction: column;
gap: 4px;
}
.journey-sub-title {
font-size: 13.5px;
font-weight: 700;
color: #1a2332;
margin: 0;
line-height: 1.3;
}
.journey-sub-desc {
font-size: 12.5px;
color: #4a5568;
line-height: 1.5;
margin: 0;
}
.journey-dots {
display: flex;
justify-content: center;
gap: 8px;
margin-top: 24px;
}
.journey-dot {
width: 10px;
height: 10px;
border-radius: 50%;
border: none;
background: #c8d6e8;
cursor: pointer;
padding: 0;
transition: background 0.25s, transform 0.25s;
}
.journey-dot.active {
background: #2271b3;
transform: scale(1.2);
}
@media (max-width: 1100px) {
.journey-card {
flex: 0 0 calc(50% - 10px);
}
}
@media (max-width: 700px) {
.journey-card {
flex: 0 0 100%;
}
}
.digital-section {
position: relative;
background: #0d1b2e;
overflow: hidden;
}
.digital-section::before {
content: '';
position: absolute;
inset: 0;
background: url('images/parking-digital-bg.webp') center/cover no-repeat;
opacity: 0.22;
z-index: 0;
}
.digital-section .container {
position: relative;
z-index: 1;
}
.digital-section .section-title-dark {
color: #ffffff;
margin-bottom: 0;
}
.digital-slider-wrapper {
position: relative;
width: 100%;
}
.digital-slider {
display: flex;
gap: 0;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
padding-bottom: 8px;
cursor: grab;
justify-content: space-between;
}
.digital-slider:active {
cursor: grabbing;
}
.digital-slider::-webkit-scrollbar {
display: none;
}
.digital-item {
flex: 0 0 calc(16.666% - 0px);
min-width: 130px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 16px;
scroll-snap-align: start;
padding: 12px 8px;
cursor: default;
transition: opacity 0.25s;
}
.digital-item:hover {
opacity: 0.85;
}
.digital-item-icon {
width: 52px;
height: 52px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.digital-item-img {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
filter: brightness(0) invert(1);
}
.digital-item-label {
font-size: 13px;
font-weight: 500;
color: #ffffff;
line-height: 1.5;
margin: 0;
}
.digital-dots {
display: flex;
justify-content: center;
gap: 8px;
margin-top: 28px;
}
.digital-dot {
width: 10px;
height: 10px;
border-radius: 50%;
border: none;
background: rgba(255, 255, 255, 0.35);
cursor: pointer;
padding: 0;
transition: background 0.25s, transform 0.25s;
}
.digital-dot.active {
background: #4a9eda;
transform: scale(1.2);
}
.equipment-section {
background: #ffffff;
}
.equip-slider-wrapper {
position: relative;
width: 100%;
}
.equip-slider {
display: flex;
gap: 20px;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
padding-bottom: 16px;
cursor: grab;
}
.equip-slider:active {
cursor: grabbing;
}
.equip-slider::-webkit-scrollbar {
display: none;
}
.equip-card {
flex: 0 0 calc(33.333% - 14px);
min-width: 320px;
background: #E2F0FF;
border-radius: 16px;
padding: 32px 28px;
scroll-snap-align: start;
display: flex;
flex-direction: column;
gap: 16px;
transition: transform 0.25s, box-shadow 0.25s;
cursor: default;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}
.equip-card:hover {
transform: translateY(-4px);
box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.equip-card-icon-wrap {
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: flex-start;
flex-shrink: 0;
margin-bottom: 2px;
}
.equip-card-img {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
filter: brightness(0);
}
.equip-card-title {
font-size: 18px;
font-weight: 700;
color: #1a2332;
margin: 0;
line-height: 1.35;
}
.equip-card-desc {
font-size: 12.5px;
color: #4a5568;
line-height: 1.6;
margin: 0;
}
.equip-card-subtitle {
font-size: 13px;
font-weight: 700;
color: #1a2332;
display: block;
margin: 12px 0 4px 0;
}
.equip-card-list {
list-style: disc;
padding-left: 17px;
display: flex;
flex-direction: column;
gap: 5px;
margin: 0;
}
.equip-card-list li {
font-size: 12.5px;
color: #4a5568;
line-height: 1.55;
}
.equip-dots {
display: flex;
justify-content: center;
gap: 8px;
margin-top: 24px;
}
.equip-dot {
width: 10px;
height: 10px;
border-radius: 50%;
border: none;
background: #c8d6e8;
cursor: pointer;
padding: 0;
transition: background 0.25s, transform 0.25s;
}
.equip-dot.active {
background: #2271b3;
transform: scale(1.2);
}
@media (max-width: 1100px) {
.equip-card {
flex: 0 0 calc(50% - 10px);
}
}
@media (max-width: 700px) {
.equip-card {
flex: 0 0 100%;
}
}
.services-section {
position: relative;
padding: 90px 0;
overflow: hidden;
background: #111e2d;
}
.services-bg-img {
position: absolute;
inset: 0;
width: 120%;
height: 120%;
object-fit: cover;
object-position: center;
display: block;
z-index: 1;
filter: blur(6px) brightness(0.65) saturate(1.1);
}
.services-overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.4);
z-index: 2;
}
.services-inner {
position: relative;
z-index: 3;
width: 100%;
max-width: 1140px;
margin: 0 auto;
padding: 0 24px;
}
.services-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
margin-top: 48px;
}
.services-card {
background: #1E72B98F;
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 16px;
padding: 30px 24px;
display: flex;
flex-direction: column;
gap: 16px;
color: #ffffff;
transition: transform 0.25s, box-shadow 0.25s;
cursor: default;
box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}
.services-card:hover {
transform: translateY(-4px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
border-color: rgba(255, 255, 255, 0.25);
}
.services-card-title {
font-size: 18px;
font-weight: 700;
color: #ffffff;
margin: 0;
line-height: 1.3;
}
.services-card-desc {
font-size: 12.5px;
color: rgba(255, 255, 255, 0.7);
line-height: 1.5;
margin: 0;
}
.services-card-body {
display: flex;
flex-direction: column;
gap: 14px;
}
.services-subsection {
display: flex;
flex-direction: column;
gap: 4px;
}
.services-sub-title {
font-size: 13.5px;
font-weight: 700;
color: #ffffff;
margin: 0;
line-height: 1.45;
}
.services-sub-desc {
font-size: 12px;
color: rgba(255, 255, 255, 0.65);
line-height: 1.5;
margin: 0;
}
.services-sub-title-plain {
font-size: 13.5px;
font-weight: 700;
color: #ffffff;
margin: 0 0 6px 0;
line-height: 1.45;
}
.services-card-footer-desc {
font-size: 12px;
color: rgba(255, 255, 255, 0.65);
line-height: 1.5;
margin-top: 16px;
}
.services-card-list {
list-style: disc;
padding-left: 17px;
display: flex;
flex-direction: column;
gap: 6px;
margin: 0;
}
.services-card-list li {
font-size: 13.5px;
font-weight: 700;
color: #ffffff;
line-height: 1.45;
}
.ready-section {
position: relative;
padding: 90px 0;
overflow: hidden;
background: #111e2d;
}
.ready-bg-img {
position: absolute;
inset: -10px;
width: calc(100% + 20px);
height: calc(100% + 20px);
object-fit: cover;
object-position: center;
display: block;
z-index: 1;
filter: blur(2px) brightness(0.85);
}
.ready-overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.4);
z-index: 2;
}
.ready-inner {
position: relative;
z-index: 3;
width: 100%;
max-width: 1140px;
margin: 0 auto;
padding: 0 24px;
}
.ready-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
margin-top: 40px;
}
.ready-card {
background: #1E72B98F;
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 16px;
padding: 32px 28px;
display: flex;
flex-direction: column;
gap: 16px;
color: #ffffff;
transition: transform 0.25s, box-shadow 0.25s;
cursor: default;
box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}
.ready-card:hover {
transform: translateY(-4px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
border-color: rgba(255, 255, 255, 0.25);
}
.ready-card-title {
font-size: 18px;
font-weight: 700;
color: #ffffff;
margin: 0;
line-height: 1.35;
}
.ready-card-desc {
font-size: 12.5px;
color: rgba(255, 255, 255, 0.7);
line-height: 1.6;
margin: 0;
}
.ready-card-list {
list-style: disc;
padding-left: 17px;
display: flex;
flex-direction: column;
gap: 5px;
margin: 0;
}
.ready-card-list li {
font-size: 12.5px;
color: #ffffff;
line-height: 1.55;
}
@media (max-width: 1100px) {
.services-grid {
grid-template-columns: repeat(2, 1fr);
}
.ready-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 650px) {
.services-grid {
grid-template-columns: 1fr;
}
.ready-grid {
grid-template-columns: 1fr;
}
.services-inner,
.ready-inner {
padding: 0 16px;
}
}
.footer {
border-radius: 0 0 16px 16px;
}
@media (max-width: 1100px) {
.digital-grid {
grid-template-columns: repeat(3, 1fr);
}
.equipment-grid {
grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 900px) {
.offer-grid {
grid-template-columns: repeat(2, 1fr);
}
.partners-grid {
grid-template-columns: repeat(2, 1fr);
}
.digital-grid {
grid-template-columns: repeat(2, 1fr);
}
.equipment-grid {
grid-template-columns: repeat(2, 1fr);
}
.ch-body {
grid-template-columns: 1fr;
}
.ch-arrows {
flex-direction: row;
padding-top: 0;
padding: 12px 0;
}
.ch-arrow-cell {
flex: 1;
}
.journey-grid {
gap: 16px;
}
.journey-arrow {
display: none;
}
.journey-step {
min-width: 140px;
}
}
@media (max-width: 700px) {
.main-wrapper {
margin: 0 8px;
}
.footer {
margin: 0 8px;
}
.nav-links.open {
display: flex;
flex-direction: column;
position: absolute;
top: var(--nav-h);
left: 0;
right: 0;
background: rgba(10, 16, 30, 0.99);
padding: 16px;
gap: 4px;
}
.has-dropdown .dropdown {
position: static;
transform: none;
opacity: 0;
pointer-events: none;
max-height: 0;
overflow: hidden;
background: transparent;
border: none;
box-shadow: none;
padding: 0 0 0 16px;
margin-top: 0;
width: 100%;
min-width: unset;
transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}
.has-dropdown.dropdown-open .dropdown {
opacity: 1;
pointer-events: all;
max-height: 350px;
margin-top: 8px;
}
.has-dropdown .dropdown a {
padding: 8px 12px;
}
.offer-grid,
.partners-grid,
.digital-grid,
.equipment-grid {
grid-template-columns: 1fr;
}
.services-tabs {
flex-wrap: wrap;
gap: 12px 0;
}
.services-tab {
padding: 4px 24px;
}
.services-tab-divider {
display: none;
}
}
body {
padding-bottom: 40px;
}
.relative-z {
position: relative;
z-index: 2;
}
.comparison-section.overview-bg {
position: relative;
background: none;
overflow: hidden;
padding: 70px 24px 90px;
color: white;
}
.comparison-section.overview-bg::before {
content: '';
position: absolute;
inset: 0;
background: url('images/overview-p-and-m.webp') center/cover no-repeat;
z-index: 0;
}
.comparison-bg-overlay {
position: absolute;
inset: 0;
background: rgba(10, 16, 30, 0.72);
z-index: 1;
}
.cmp-inner {
max-width: 1140px;
margin: 0 auto;
}
.cmp-h1 {
text-align: center;
font-size: clamp(26px, 3.5vw, 42px);
font-weight: 700;
margin-bottom: 16px;
color: #ffffff;
letter-spacing: -0.5px;
line-height: 1.25;
}
.cmp-h1 span {
margin: 0 12px;
color: rgba(255, 255, 255, 0.8);
font-weight: 400;
text-transform: lowercase;
}
.cmp-divider {
border: none;
border-top: 1px solid rgba(255, 255, 255, 0.30);
margin: 0 0 32px 0;
width: 100%;
}
.comparison-grid {
display: grid;
grid-template-columns: 1fr 40px 1fr;
gap: 0 16px;
align-items: stretch;
}
.cmp-col-head {
padding-bottom: 14px;
border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.cmp-head-mid {
padding-bottom: 14px;
border-bottom: none;
}
.cmp-col-head h2 {
font-size: clamp(22px, 2.5vw, 32px);
font-weight: 700;
margin-bottom: 0;
color: #ffffff;
letter-spacing: -0.3px;
}
.cmp-item {
padding: 14px 0 16px;
border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.cmp-item--last {
border-bottom: none;
}
.cmp-item h3 {
font-size: clamp(16px, 1.8vw, 20px);
margin-bottom: 6px;
font-weight: 700;
color: #ffffff;
line-height: 1.35;
}
.cmp-item p {
color: rgba(255, 255, 255, 0.76);
font-size: 14px;
line-height: 1.6;
margin: 0;
}
.cmp-arrows-cell {
display: flex;
align-items: center;
justify-content: center;
padding: 14px 0 16px;
}
.cmp-arrows-cell--last {
border-bottom: none;
}
.cmp-arrow {
width: 38px;
height: 38px;
background: #ffffff;
color: #1e3d62;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
font-weight: 700;
flex-shrink: 0;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
line-height: 1;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cmp-arrow:hover {
transform: scale(1.12);
box-shadow: 0 6px 14px rgba(0, 0, 0, 0.26);
cursor: pointer;
}
@media (max-width: 768px) {
.cmp-h1 {
font-size: clamp(22px, 4vw, 28px);
margin-bottom: 40px;
}
.comparison-grid {
grid-template-columns: 1fr;
gap: 0;
}
.comparison-grid> :nth-child(1) {
order: 1;
border-bottom: 2px solid rgba(255, 255, 255, 0.25);
padding-bottom: 8px;
margin-bottom: 8px;
}
.comparison-grid> :nth-child(4) {
order: 2;
}
.comparison-grid> :nth-child(7) {
order: 3;
}
.comparison-grid> :nth-child(10) {
order: 4;
}
.comparison-grid> :nth-child(13) {
order: 5;
border-bottom: none;
}
.comparison-grid> :nth-child(3) {
order: 6;
border-bottom: 2px solid rgba(255, 255, 255, 0.25);
padding-bottom: 8px;
margin-top: 40px;
margin-bottom: 8px;
}
.comparison-grid> :nth-child(6) {
order: 7;
}
.comparison-grid> :nth-child(9) {
order: 8;
}
.comparison-grid> :nth-child(12) {
order: 9;
}
.comparison-grid> :nth-child(15) {
order: 10;
border-bottom: none;
}
.cmp-head-mid,
.cmp-arrows-cell {
display: none !important;
}
.cmp-item {
padding: 16px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
}