.glass-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 207, 255, 0.2);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5), 0 4px 20px rgba(0, 207, 255, 0.05);
}

.glass-card-dark {
    background: rgba(25, 28, 30, 0.4);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 207, 255, 0.2);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05), 0 4px 20px rgba(0, 207, 255, 0.1);
}

.hero-glass {
    background: linear-gradient(135deg, rgba(21, 37, 52, 0.58), rgba(0, 43, 90, 0.34));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(0, 207, 255, 0.34);
    box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.08), 0 18px 60px rgba(0, 43, 90, 0.24);
}

.why-card-glass {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.01) 42%, rgba(214, 232, 248, 0.04)),
        rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(1.5px) saturate(130%);
    -webkit-backdrop-filter: blur(1.5px) saturate(130%);
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        inset 0 0 28px rgba(255, 255, 255, 0.08), 0 18px 60px rgba(0, 43, 90, 0.24);
}

.why-card-glass:hover {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02) 42%, rgba(214, 232, 248, 0.06)),
        rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.86);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(0, 43, 90, 0.1),
        0 20px 40px -22px rgba(0, 43, 90, 0.7);
}

.profile-card-glass:hover {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.01) 42%, rgba(214, 232, 248, 0.04)),
        rgba(255, 255, 255, 0.015);
    border-color: rgba(0, 207, 255, 0.5);
    box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.08), 0 18px 60px rgba(0, 43, 90, 0.24);
}

.brand-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1120px;
    margin-inline: auto;
}

.brand-logo-item {
    display: flex;
    flex: 0 1 calc(50% - 12px);
    align-items: center;
    justify-content: center;
    height: 104px;
    padding: 16px 20px;
}

.brand-logo {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 210px;
    object-fit: contain;
    transition: transform 250ms ease, filter 250ms ease;
}

.brand-logo-item:hover .brand-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 12px rgba(0, 43, 90, 0.14));
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1120px;
    margin-inline: auto;
}

.product-card {
    position: relative;
    display: flex;
    flex: 0 1 min(100%, 420px);
    min-width: 0;
    max-width: 420px;
    flex-direction: column;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(116, 119, 125, 0.42);
    border-radius: 8px;
    box-shadow: 0 8px 18px -16px rgba(0, 43, 90, 0.5);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
    z-index: 1;
    transform: scale(1.04);
    border-color: #00CFFF;
    box-shadow:
        0 0 0 1px rgba(0, 207, 255, 0.45),
        0 14px 30px -14px rgba(0, 43, 90, 0.55),
        0 0 22px rgba(0, 207, 255, 0.24);
}

.product-card--landscape {
    flex-basis: min(100%, 360px);
    max-width: 100%;
}

.product-card--portrait {
    max-width: 396px;
}

.product-card-media {
    display: flex;
    width: 100%;
    aspect-ratio: 1 / 1;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: #ffffff;
    transition: padding 220ms ease;
}

.product-card--landscape .product-card-media {
    aspect-ratio: var(--product-aspect-ratio, 16 / 10);
}

.product-card:hover .product-card-media {
    padding-top: 8px;
    padding-bottom: 44px;
}

.product-card-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 220ms ease;
}

.product-card:hover .product-card-image {
    transform: translateY(-2px);
}

.product-card-title {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -8px 14px -14px rgba(0, 43, 90, 0.65);
    color: #002B5A;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
    opacity: 0;
    text-align: center;
    transform: translateY(100%);
    transition: opacity 200ms ease, transform 220ms ease;
}

.product-card:hover .product-card-title {
    opacity: 1;
    transform: translateY(0);
}

.product-empty-state {
    width: min(100%, 320px);
    margin: 0 auto;
    padding: 18px 20px;
    border: 1px dashed rgba(0, 43, 90, 0.24);
    border-radius: 8px;
    color: rgba(15, 28, 44, 0.68);
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .product-card--portrait {
        flex-basis: calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
    }

    .product-card--landscape {
        flex-basis: min(100%, 460px);
        max-width: min(100%, 460px);
    }
}

@media (min-width: 1024px) {
    .product-card--portrait {
        flex-basis: calc((100% - 60px) / 4);
        max-width: calc((100% - 60px) / 4);
    }

    .product-card--landscape {
        flex-basis: calc((((100% - 60px) / 4) * 1.25) + 5px);
        max-width: calc((((100% - 60px) / 4) * 1.25) + 5px);
    }
}

.contact-map-wrap {
    width: 100%;
    min-height: 320px;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(0, 43, 90, 0.12);
    border-radius: 12px;
    box-shadow: 0 18px 36px -26px rgba(0, 43, 90, 0.55);
}

.contact-map {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
}

.contact-link {
    color: #002B5A;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(0, 207, 255, 0.55);
    text-underline-offset: 4px;
    transition: color 180ms ease, text-decoration-color 180ms ease, text-shadow 180ms ease;
}

.contact-link:hover {
    color: #00CFFF;
    text-decoration-color: #00CFFF;
    text-shadow: 0 0 14px rgba(0, 207, 255, 0.28);
}

.glow-border-top-left {
    position: relative;
}

.glow-border-top-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 207, 255, 0.5) 0%, transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.bg-pattern {
    background-image: radial-gradient(rgba(0, 207, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.tech-dot-grid {
    background-image: radial-gradient(rgba(0, 43, 90, 0.2) 1.2px, transparent 1.2px);
    background-size: 30px 30px;
}

.floating-nav {
    position: relative;
    background: rgba(214, 232, 248, 0.22);
    backdrop-filter: blur(5px) saturate(145%);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
    border: 1.5px solid rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 16px 34px -20px rgba(0, 43, 90, 0.75);
}

.floating-nav.dark {
    background: rgba(15, 28, 44, 0.6);
}

@media (max-width: 767px) {
    .nav-inner {
        min-height: 64px;
        justify-content: space-between;
    }

    .nav-logo {
        position: static;
        transform: none;
    }

    .nav-menu-button {
        position: static;
        flex-shrink: 0;
        z-index: 2;
    }
}

.mobile-navigation {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 6px;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    background: rgba(235, 244, 251, 0.92);
    backdrop-filter: blur(20px) saturate(145%);
    -webkit-backdrop-filter: blur(20px) saturate(145%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    box-shadow: 0 18px 38px -20px rgba(0, 43, 90, 0.72);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.mobile-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-nav-link,
.mobile-nav-cta {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #002B5A;
    font-weight: 600;
}

.mobile-nav-link.active {
    background: #c5def4;
    box-shadow:
        inset 0 0 0 2px rgba(0, 43, 90, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

.mobile-nav-cta {
    margin-top: 4px;
    background: #002B5A;
    color: #ffffff;
}

.mobile-menu-icon {
    position: relative;
    display: block;
    width: 24px;
    height: 20px;
}

.mobile-menu-icon::before,
.mobile-menu-icon::after {
    position: absolute;
    left: 0;
    width: 24px;
    height: 3px;
    border-radius: 9999px;
    background: #002B5A;
    content: "";
    transition: top 180ms ease, transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.mobile-menu-icon::before {
    top: 2px;
    box-shadow: 0 7px 0 #002B5A, 0 14px 0 #002B5A;
}

.mobile-menu-icon::after {
    top: 9px;
    opacity: 0;
}

.nav-menu-button[aria-expanded="true"] .mobile-menu-icon::before {
    top: 9px;
    transform: rotate(45deg);
    box-shadow: none;
}

.nav-menu-button[aria-expanded="true"] .mobile-menu-icon::after {
    transform: rotate(-45deg);
    opacity: 1;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 9999px;
    color: #002B5A;
    font-weight: 600;
    padding: 0 9px;
    transition: background-color 200ms ease, color 200ms ease, font-weight 200ms ease;
    white-space: nowrap;
}

.nav-link.active {
    background: #D6E8F8;
    color: #002B5A;
}

.nav-link:hover {
    color: #002B5A;
}

.nav-link.active {
    font-weight: 700;
}

.material-symbols-outlined {
    display: inline-block;
    width: 1em;
    max-width: 1em;
    overflow: hidden;
    visibility: hidden;
    white-space: nowrap;
}

.material-icons-ready .material-symbols-outlined {
    visibility: visible;
}

.material-outline {
    font-variation-settings: 'FILL' 0;
}

.material-filled {
    font-variation-settings: 'FILL' 1;
}

@media (min-width: 1024px) {
    .nav-link {
        min-height: 40px;
        padding: 0 12px;
    }

    .brand-logo-item {
        flex-basis: calc(25% - 18px);
        height: 112px;
    }
}

@media (min-width: 1280px) {
    .nav-link {
        min-height: 42px;
        padding: 0 16px;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .brand-logo-item {
        flex-basis: calc(33.333% - 16px);
    }
}
