:root {
    --color-background: #f0f4f8;
    --color-surface: #ffffff;
    --color-surface-alt: #f8fbff;
    --color-primary: #1c2f5c;
    --color-accent: #2f6fed;
    --color-muted: #6b7285;
    --color-dark: #161b2b;
    --shadow-soft: 0 18px 36px rgba(22, 27, 43, 0.15);
    --shadow-hard: 0 32px 60px rgba(28, 47, 92, 0.22);
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --font-sans:
        "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
    --header-height: 104px;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    background: var(--color-background);
    color: var(--color-dark);
    line-height: 1.7;
    letter-spacing: 0.01em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover,
a:focus {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    display: block;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1040;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(28, 47, 92, 0.08);
    transition:
        background 0.28s ease,
        backdrop-filter 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.site-header .navbar {
    padding-block: 0.3rem;
}

.site-main {
    padding-top: var(--header-height, 104px);
}

@media (min-width: 992px) {
    body.home-header-overlay .site-main {
        padding-top: 0;
    }

    body.home-header-overlay .site-header {
        background: transparent;
        backdrop-filter: blur(0);
        border-bottom-color: transparent;
        box-shadow: none;
    }

    body.home-header-overlay .site-header .navbar-brand,
    body.home-header-overlay .site-header .nav-link {
        color: rgba(255, 255, 255, 0.92);
    }

    body.home-header-overlay .site-header .nav-link.active,
    body.home-header-overlay .site-header .nav-link:hover,
    body.home-header-overlay .site-header .nav-link:focus {
        color: #fff;
        background: rgba(255, 255, 255, 0.14);
    }

    body.home-header-overlay .site-header .btn-language-pill {
        background: rgba(12, 22, 44, 0.38);
        color: rgba(255, 255, 255, 0.95);
        border-color: rgba(255, 255, 255, 0.24);
        box-shadow: 0 8px 18px rgba(8, 12, 26, 0.22);
    }

    body.home-header-overlay .site-header .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.45);
    }

    body.home-header-overlay .site-header .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    body.home-header-overlay .site-header.is-scrolled {
        backdrop-filter: blur(12px);
        background: rgba(255, 255, 255, 0.82);
        border-bottom-color: rgba(28, 47, 92, 0.08);
    }

    body.home-header-overlay .site-header.is-scrolled .navbar-brand {
        color: var(--color-primary);
    }

    body.home-header-overlay .site-header.is-scrolled .nav-link {
        color: var(--color-muted);
    }

    body.home-header-overlay .site-header.is-scrolled .nav-link.active,
    body.home-header-overlay .site-header.is-scrolled .nav-link:hover,
    body.home-header-overlay .site-header.is-scrolled .nav-link:focus {
        color: var(--color-primary);
        background: rgba(47, 111, 237, 0.12);
    }

    body.home-header-overlay .site-header.is-scrolled .btn-language-pill {
        background: rgba(255, 255, 255, 0.95);
        color: var(--color-primary);
        border-color: rgba(28, 47, 92, 0.08);
        box-shadow: 0 8px 18px rgba(15, 29, 59, 0.08);
    }

    body.home-header-overlay .site-header.is-scrolled .navbar-toggler {
        border-color: rgba(28, 47, 92, 0.2);
    }

    body.home-header-overlay .site-header.is-scrolled .navbar-toggler-icon {
        background-image: var(--bs-navbar-toggler-icon-bg);
    }
}

.site-header .navbar > .container,
.site-header .navbar > .container-fluid {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-header .navbar-brand {
    font-weight: 700;
    font-size: clamp(1.25rem, 1.9vw, 1.6rem);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.site-header .navbar-brand span {
    font-size: clamp(1.1rem, 1.7vw, 1.4rem);
    line-height: 1.1;
    white-space: nowrap;
}

.site-header .site-logo {
    width: clamp(68px, 6vw, 96px);
    height: clamp(44px, 5vw, 64px);
    max-height: 64px;
    min-width: 68px;
    flex-shrink: 0;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
    border: 0;
    filter: none;
}

.site-header .navbar-collapse {
    align-items: center;
    flex-grow: 1;
    justify-content: flex-start;
    column-gap: 0.5rem;
    min-width: 0;
}

@media (min-width: 992px) {
    .site-header .navbar-collapse {
        justify-content: flex-end;
    }

    .site-header .primary-nav {
        flex-wrap: nowrap;
        justify-content: flex-end;
        gap: 0.35rem;
        margin-left: auto !important;
        padding-left: 0;
        flex: 0 1 auto;
    }

    .site-header .navbar-brand {
        margin-right: 0.35rem;
    }

    .site-header .nav-actions {
        margin-left: 0.65rem;
    }
}

.site-header .nav-actions {
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    gap: 0.85rem;
    margin-left: 0;
    align-items: center;
}

.site-header .nav-actions .btn {
    padding: 0.55rem 1.15rem;
    font-size: 0.92rem;
}

.language-switcher {
    position: relative;
}

.btn-language-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(28, 47, 92, 0.08);
    background: rgba(255, 255, 255, 0.95);
    padding: 0.45rem 1rem;
    font-weight: 600;
    color: var(--color-primary);
    box-shadow: 0 8px 18px rgba(15, 29, 59, 0.08);
    width: 100%;
}

.btn-language-pill .language-code-pill {
    background: rgba(79, 70, 229, 0.18);
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
    font-size: 0.8rem;
}

.btn-language-pill .language-flag,
.language-dropdown-menu .language-flag {
    height: 18px;
    width: 26px;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 0 1px rgba(28, 47, 92, 0.08);
}

.language-dropdown-menu {
    border-radius: 1rem;
    border: 1px solid rgba(28, 47, 92, 0.1);
    box-shadow: 0 18px 40px rgba(15, 29, 59, 0.15);
}

.language-dropdown-menu .dropdown-item {
    border-radius: 0.85rem;
    padding: 0.55rem 0.85rem;
    font-weight: 600;
}

.site-header .nav-actions .contact-quick-actions {
    gap: 0.5rem;
}

.site-header .nav-actions .contact-quick-action {
    padding: 0.5rem 0.95rem;
    box-shadow: none;
    border: 1px solid rgba(28, 47, 92, 0.08);
}

.site-header .nav-actions .contact-quick-action__icon {
    width: 1.8rem;
    height: 1.8rem;
}

.site-header .nav-actions .contact-quick-action__chevron {
    display: none;
}

.site-header .nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    padding: 0.55rem 0.85rem;
    border-radius: var(--radius-sm);
    color: var(--color-muted);
    white-space: nowrap;
}

.site-header .nav-link.active,
.site-header .nav-link:hover,
.site-header .nav-link:focus {
    color: var(--color-primary);
    background: rgba(47, 111, 237, 0.12);
}

.site-header .navbar-nav .dropdown-menu {
    border-radius: var(--radius-md);
    padding: 0.5rem;
    min-width: 240px;
    border: 1px solid rgba(28, 47, 92, 0.06);
    box-shadow: 0 22px 45px rgba(15, 29, 59, 0.15);
}

.site-header .navbar-nav .dropdown-menu .dropdown-item {
    border-radius: var(--radius-sm);
    font-weight: 500;
    padding: 0.55rem 0.75rem;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.site-header .navbar-nav .dropdown-menu .dropdown-item:hover,
.site-header .navbar-nav .dropdown-menu .dropdown-item:focus {
    background: rgba(47, 111, 237, 0.12);
    color: var(--color-primary);
}

.site-header .navbar-nav .dropdown-item-parent > .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: var(--color-primary);
}

.site-header .navbar-nav .dropdown-item-parent .bi {
    font-size: 0.9rem;
}

.site-header .navbar-nav .dropdown-divider {
    margin: 0.35rem 0;
    border-color: rgba(28, 47, 92, 0.08);
}

.site-header .navbar-nav .dropdown-submenu {
    position: relative;
}

.site-header .navbar-nav .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.35rem;
}

.site-header .navbar-nav .dropdown-submenu > .dropdown-toggle::after {
    transform: rotate(-90deg);
    transition: transform 0.2s ease;
}

.site-header .navbar-nav .dropdown-submenu > .dropdown-toggle.show::after {
    transform: rotate(90deg);
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .site-header .navbar-collapse {
        flex-wrap: wrap;
        row-gap: 0.75rem;
    }

    .site-header .navbar-nav {
        width: 100%;
        justify-content: flex-end;
    }

    .site-header .nav-actions {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .site-header .nav-actions {
        margin-left: 0.65rem;
    }
}

@media (max-width: 991.98px) {
    .site-header .navbar-collapse.collapse:not(.show) {
        display: none;
    }

    .site-header .navbar-collapse.show {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .site-header .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin: 0.4rem 0;
        box-shadow: none;
        border: none;
        padding: 0.25rem 0 0.4rem 0;
        background: transparent;
    }

    .site-header .navbar-nav .dropdown-submenu > .dropdown-menu {
        left: 0;
        margin-left: 1rem;
        padding-left: 0.5rem;
    }

    .site-header .navbar-nav .dropdown-submenu > .dropdown-toggle::after {
        transform: rotate(0deg);
    }

    .site-header .primary-nav {
        width: 100%;
        align-items: flex-start;
        justify-content: flex-start;
        margin-left: 0 !important;
        padding-left: 0;
    }

    .site-header .primary-nav .nav-link {
        width: 100%;
        text-align: left;
    }

    .site-header .nav-actions {
        align-items: flex-start;
        width: 100%;
    }
}

.hero-section {
    position: relative;
    padding: clamp(4rem, 6vw, 7rem) 0;
    background:
        radial-gradient(
            circle at top right,
            rgba(47, 111, 237, 0.18),
            transparent 55%
        ),
        linear-gradient(160deg, rgba(28, 47, 92, 0.9), rgba(28, 47, 92, 0.72)),
        url("https://images.unsplash.com/photo-1487956382158-bb926046304a?auto=format&fit=crop&w=1800&q=80")
            center/cover;
    color: #fff;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(28, 47, 92, 0.05),
        rgba(28, 47, 92, 0.8)
    );
    mix-blend-mode: screen;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.75rem, 5vw, 4rem);
    font-weight: 700;
    margin-top: 1.75rem;
    margin-bottom: 1.25rem;
    max-width: 16ch;
    line-height: 1.1;
}

.hero-lead {
    color: rgba(255, 255, 255, 0.82);
    max-width: 48ch;
    font-size: 1.1rem;
}

.blog-hero {
    position: relative;
    padding: clamp(3.5rem, 5vw, 6rem) 0;
    background:
        linear-gradient(180deg, rgba(22, 27, 43, 0.72), rgba(22, 27, 43, 0.9)),
        var(--blog-hero-cover, linear-gradient(120deg, #1c2f5c, #2f6fed));
    background-size: cover;
    background-position: center;
    color: #fff;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    overflow: hidden;
}

.blog-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(255, 255, 255, 0.08),
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 0%,
            rgba(79, 70, 229, 0.18),
            transparent 40%
        );
    pointer-events: none;
}

.blog-hero .container {
    position: relative;
    z-index: 1;
}

.blog-hero__content {
    max-width: 820px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.blog-hero__title {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0;
}

.blog-hero__lead {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    max-width: 70ch;
    margin: 0;
}

.detail-media-hero {
    position: relative;
    width: 100%;
    height: clamp(340px, 56vw, 780px);
    overflow: hidden;
    background: #0c1424;
}

.detail-media-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.25rem;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}

.showcase-hero {
    position: relative;
    padding: 0;
    background: transparent;
    color: #fff;
    overflow: hidden;
}

.showcase-hero .container {
    position: relative;
    z-index: 1;
}

.showcase-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
}

.showcase-chip {
    min-width: 140px;
    padding: 0.9rem 1.1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 16px 28px rgba(12, 20, 36, 0.35);
}

.showcase-chip__label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
}

.showcase-chip__value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.showcase-carousel {
    position: relative;
}

.showcase-carousel--full .carousel-inner {
    border-radius: calc(var(--radius-lg) + 8px);
    overflow: hidden;
}

.showcase-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    min-height: clamp(340px, 55vh, 520px);
    background: #0a1223;
    box-shadow: 0 24px 50px rgba(8, 12, 26, 0.4);
}

.showcase-card__media {
    position: absolute;
    inset: 0;
    display: grid;
}

.showcase-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
    transform: scale(1.02);
    cursor: zoom-in;
}

.showcase-card__shadow {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(7, 12, 24, 0.35) 0%,
        rgba(7, 12, 24, 0.9) 65%
    );
}

.showcase-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1.2rem, 3vw, 2rem);
    z-index: 1;
    backdrop-filter: blur(1px);
    pointer-events: none;
}

.showcase-card__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
}

.showcase-card__summary {
    max-width: 55ch;
    color: rgba(255, 255, 255, 0.78);
    pointer-events: auto;
}

.blog-layout {
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.blog-content {
    padding: clamp(1.5rem, 2vw, 2rem);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(28, 47, 92, 0.08);
    background: linear-gradient(180deg, #fff, #f7f9fc);
    box-shadow: 0 18px 36px rgba(22, 27, 43, 0.08);
}

.blog-cover {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.25rem;
    box-shadow: 0 14px 30px rgba(22, 27, 43, 0.12);
}

.blog-cover img {
    width: 100%;
    height: clamp(240px, 35vh, 380px);
    object-fit: cover;
    display: block;
}

.blog-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    font-weight: 600;
    color: var(--color-muted);
    margin-bottom: 1.25rem;
}

.blog-body {
    color: #1d2434;
    font-size: 1.02rem;
    line-height: 1.9;
}

.blog-body h2,
.blog-body h3,
.blog-body h4 {
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.blog-body img {
    border-radius: var(--radius-md);
    box-shadow: 0 12px 28px rgba(22, 27, 43, 0.1);
    margin: 1.5rem 0;
}

.blog-body blockquote {
    border-left: 4px solid var(--color-accent);
    padding-left: 1rem;
    color: var(--color-primary);
    background: rgba(47, 111, 237, 0.05);
}

.blog-sidebar {
    position: sticky;
    top: 120px;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(28, 47, 92, 0.08);
    background: #fff;
    box-shadow: 0 12px 30px rgba(22, 27, 43, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.blog-sidebar__section + .blog-sidebar__section {
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(28, 47, 92, 0.08);
}

.blog-facts li {
    padding: 0.35rem 0;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-sidebar__cta .btn-primary-custom {
    justify-content: center;
}

@media (max-width: 991.98px) {
    .blog-layout {
        margin-top: 0;
    }

    .blog-sidebar {
        position: static;
    }
}

.blog-hub-hero {
    position: relative;
    padding: clamp(3.5rem, 5vw, 6rem) 0;
    background: linear-gradient(
        135deg,
        rgba(28, 47, 92, 0.9),
        rgba(47, 111, 237, 0.75)
    );
    color: #fff;
    overflow: hidden;
}

.blog-hub-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 20% 10%,
            rgba(255, 255, 255, 0.08),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 0%,
            rgba(255, 255, 255, 0.12),
            transparent 45%
        );
    pointer-events: none;
}

.blog-hub {
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.content-switcher {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.content-switcher .nav-pills {
    background: #fff;
    border-radius: 999px;
    padding: 0.3rem;
    box-shadow: 0 14px 30px rgba(22, 27, 43, 0.08);
}

.content-switcher .nav-link {
    border-radius: 999px;
    padding: 0.6rem 1.4rem;
    font-weight: 700;
    color: var(--color-muted);
}

.content-switcher .nav-link.active {
    background: linear-gradient(135deg, var(--color-primary), #2f6fed);
    color: #fff;
    box-shadow: 0 10px 24px rgba(28, 47, 92, 0.25);
}

.showcase-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
    pointer-events: auto;
}

.showcase-card__toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 22px rgba(7, 12, 24, 0.45);
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.showcase-card__toggle:hover,
.showcase-card__toggle:focus-visible {
    transform: translateY(-2px);
    background: #fff;
    color: var(--color-primary);
    border-color: rgba(28, 47, 92, 0.15);
}

.showcase-card__details {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(6px);
    transition:
        max-height 0.35s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
    pointer-events: auto;
}

.showcase-card__details .btn {
    pointer-events: auto;
}

.showcase-card--details-open .showcase-card__details {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767.98px) {
    .project-gallery--hero.showcase-card--details-open
        .project-gallery__caption {
        max-height: 75%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .project-gallery--hero.showcase-card--details-open .showcase-card__details {
        max-height: none;
        flex: 1 1 auto;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .project-gallery--hero .showcase-card__details .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }
}

.showcase-carousel__controls {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

@media (min-width: 992px) {
    body.home-header-overlay .showcase-carousel__controls {
        z-index: 1051;
    }
}

.showcase-carousel__controls .carousel-control-prev,
.showcase-carousel__controls .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(12, 22, 44, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 24px rgba(5, 8, 18, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.showcase-carousel__controls .carousel-control-prev {
    left: clamp(0.65rem, 2vw, 1.25rem);
}

.showcase-carousel__controls .carousel-control-next {
    right: clamp(0.65rem, 2vw, 1.25rem);
}

.showcase-carousel__controls .carousel-control-prev:hover,
.showcase-carousel__controls .carousel-control-next:hover {
    background: #fff;
    color: var(--color-primary);
    box-shadow: 0 14px 26px rgba(5, 8, 18, 0.45);
}

.contact-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.contact-quick-actions--header {
    margin-left: 0;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.contact-quick-action {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    background: var(--contact-action-bg, var(--color-accent));
    color: var(--contact-action-color, #fff);
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(15, 29, 59, 0.15);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-quick-action:hover,
.contact-quick-action:focus {
    transform: translateY(-2px);
    color: inherit;
    box-shadow: 0 14px 25px rgba(15, 29, 59, 0.2);
    text-decoration: none;
}

.contact-quick-action__icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-quick-action__body {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.contact-quick-action__title {
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-quick-action__body small {
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    opacity: 0.85;
}

.contact-quick-action__chevron {
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-quick-actions--header .contact-quick-action {
    padding: 0.45rem 0.85rem;
    gap: 0.5rem;
    border: 1px solid rgba(15, 29, 59, 0.08);
    box-shadow: none;
    background: var(--contact-action-bg, var(--color-accent));
    color: var(--contact-action-color, #fff);
}

.contact-quick-actions--header .contact-quick-action__icon {
    width: 1.8rem;
    height: 1.8rem;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.18);
    color: var(--contact-action-color, #fff);
}

.contact-quick-actions--header .contact-quick-action__body {
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
}

.contact-quick-actions--header .contact-quick-action__body small,
.contact-quick-actions--header .contact-quick-action__chevron {
    display: none;
}

.contact-quick-actions--cta,
.contact-quick-actions--hero {
    min-width: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.contact-quick-actions--cta .contact-quick-action {
    padding: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    justify-content: center;
}

.contact-quick-actions--cta .contact-quick-action__icon {
    background: transparent;
    width: 100%;
    height: 100%;
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-quick-actions--cta .contact-quick-action__body {
    display: none;
}

@media (max-width: 575px) {
    .contact-quick-actions {
        width: auto;
    }

    .contact-quick-action {
        width: 100%;
        justify-content: space-between;
    }
}

.btn {
    border-radius: var(--radius-md);
    padding: 0.85rem 1.6rem;
    font-weight: 600;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    text-align: center;
}

.btn-primary-custom {
    background: var(--color-accent);
    border: none;
    color: #fff;
    box-shadow: 0 12px 25px rgba(47, 111, 237, 0.35);
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
    background: #1d4fb4;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-custom {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
}

.btn-outline-custom:hover,
.btn-outline-custom:focus {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.surface-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 2.5rem;
}

.surface-card--blur {
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.section-wrapper {
    padding: clamp(3.5rem, 6vw, 5rem) 0;
}

#viewer.section-wrapper {
    padding-top: clamp(2rem, 4vw, 3rem);
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 3rem;
}

.section-heading.text-center {
    text-align: center;
    align-items: center;
}

.section-heading .eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.section-heading h2 {
    font-size: clamp(2.1rem, 4vw, 3rem);
    font-weight: 700;
    margin: 0;
}

.section-heading p {
    max-width: 60ch;
    color: var(--color-muted);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.feature-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.feature-card {
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hard);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(47, 111, 237, 0.12);
    color: var(--color-accent);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.about-value-card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    background: var(--color-surface);
    height: 100%;
    overflow: hidden;
}

.about-value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
}

.about-value-card p {
    color: var(--color-muted);
}

.about-value-card--mission {
    background: linear-gradient(135deg, #1c2f5c, #2f6fed);
    color: #f2f4ff;
    box-shadow: 0 22px 48px rgba(28, 47, 92, 0.35);
}

.about-value-card--vision {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #e8ecff;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35);
}

.about-value-card--mission h3,
.about-value-card--vision h3 {
    color: #fff;
}

.about-value-card--mission p,
.about-value-card--vision p {
    color: rgba(255, 255, 255, 0.85);
}

.about-value-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(47, 111, 237, 0.12);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    font-size: 0.78rem;
}

.about-value-chip--muted {
    background: rgba(28, 47, 92, 0.06);
    color: var(--color-muted);
}

.about-value-card--mission .about-value-chip,
.about-value-card--vision .about-value-chip {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.team-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 440px;
    box-shadow: 0 20px 45px rgba(12, 18, 36, 0.22);
    background: #0b1324;
}

.team-card__media {
    position: absolute;
    inset: 0;
}

.team-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-card__placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(160deg, #1b2f59, #2d68da);
    color: #fff;
    font-size: 3rem;
}

.team-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem 1.25rem 1.75rem;
    background: linear-gradient(0deg, rgba(6, 10, 20, 0.88), rgba(6, 10, 20, 0.15) 55%, rgba(6, 10, 20, 0));
    color: #fff;
    z-index: 1;
    cursor: pointer;
}

.team-card__info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.team-card__headline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
}

.team-card__headline .team-card__name {
    flex: 1;
    min-width: 0;
}

.team-card__name {
    font-weight: 700;
    font-size: 1.15rem;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.team-card__role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
}

.team-card__toggle {
    position: static;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: background 0.2s ease, transform 0.2s ease;
    margin-left: auto;
}

.team-card__toggle:hover,
.team-card__toggle:focus-visible {
    background: rgba(255, 255, 255, 0.26);
    transform: scale(1.05);
}

.team-card__details {
    position: absolute;
    inset: 0;
    padding: 1.25rem;
    display: flex;
    align-items: flex-end;
    background: rgba(6, 10, 20, 0.9);
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.team-card__details-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.team-card__details-close:hover,
.team-card__details-close:focus-visible {
    background: rgba(255, 255, 255, 0.26);
    transform: scale(1.05);
}

.team-card__bio {
    margin-top: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.82);
}

.team-card--details-open .team-card__details {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.team-card__social {
    display: flex;
    gap: 0.45rem;
}

.team-card__social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    transition: background 0.2s ease, transform 0.2s ease;
}

.team-card__social a:hover,
.team-card__social a:focus-visible {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 47, 92, 0.08);
    color: var(--color-primary);
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.team-social a:hover,
.team-social a:focus {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(28, 47, 92, 0.28);
}

.project-card {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    position: relative;
}

.project-card h4,
.project-card h5 {
    font-size: clamp(1.02rem, 2vw, 1.25rem);
    line-height: 1.25;
}

.project-card .badge-outline {
    font-size: 0.82rem;
    padding: 0.35rem 0.65rem;
}

.project-card img {
    height: 260px;
    width: 100%;
    object-fit: cover;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hard);
}

.project-card__summary {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--color-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    margin-bottom: 0.25rem;
}

.project-card__summary::after {
    content: "";
    position: absolute;
    pointer-events: none;
    inset: auto 0 0 0;
    height: 2.4rem;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        var(--color-surface) 90%
    );
    opacity: 1;
    transition: opacity 0.2s ease;
}

.project-card__summary.is-expanded {
    -webkit-line-clamp: initial;
    max-height: none;
}

.project-card__summary.is-expanded::after {
    opacity: 0;
}

.project-card__summary-toggle {
    background: #f5f7fb;
    border: 1px solid rgba(28, 47, 92, 0.12);
    color: var(--color-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0;
    display: grid;
    place-items: center;
    align-self: center;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
    box-shadow: 0 8px 18px rgba(15, 29, 59, 0.1);
}

.project-card__summary-toggle:hover,
.project-card__summary-toggle:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(28, 47, 92, 0.22);
    box-shadow: 0 10px 18px rgba(15, 29, 59, 0.14);
    background: #fff;
}

.project-card__summary-toggle.is-active {
    background: rgba(47, 111, 237, 0.12);
    border-color: rgba(47, 111, 237, 0.5);
}

.project-card__summary-popover {
    position: absolute;
    left: 1.4rem;
    right: 1.4rem;
    bottom: 1.2rem;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 29, 59, 0.08);
    box-shadow: 0 16px 40px rgba(7, 12, 24, 0.24);
    padding: 1rem 1.1rem;
    max-height: min(38vh, 360px);
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(47, 111, 237, 0.45) rgba(15, 29, 59, 0.06);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition:
        opacity 0.22s ease,
        transform 0.22s ease;
    z-index: 3;
}

.project-card__summary-popover.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.project-card__summary-popover-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
    color: var(--color-primary);
}

.project-card__summary-close {
    background: transparent;
    border: 1px solid rgba(28, 47, 92, 0.14);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: var(--color-primary);
}

.project-card__footer,
.applied-card__footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.project-card__footer .btn,
.project-card__footer a.btn-link,
.applied-card__footer .btn,
.applied-card__footer a {
    margin-left: 0;
}

.project-gallery {
    border-radius: calc(var(--radius-lg) + 6px);
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(47, 111, 237, 0.15),
            transparent 55%
        ),
        var(--color-surface);
    box-shadow: var(--shadow-soft);
    padding: clamp(1rem, 2vw, 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-gallery__main {
    position: relative;
    border-radius: calc(var(--radius-lg) - 4px);
    overflow: hidden;
    height: clamp(320px, 55vh, 520px);
    width: 100%;
    background: var(--color-surface-alt);
}

.project-gallery__main .carousel-inner,
.project-gallery__main .carousel-item {
    height: 100%;
}

.project-gallery__media {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(28, 47, 92, 0.12),
        rgba(47, 111, 237, 0.08)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.5rem, 2vw, 1.25rem);
}

.project-gallery__media--video {
    background: #0a1636;
}

.project-gallery__media iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.project-gallery__video-trigger {
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    background: none;
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: calc(var(--radius-lg) - 12px);
    cursor: pointer;
    isolation: isolate;
}

.project-gallery__video-trigger::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        rgba(7, 12, 28, 0.1),
        rgba(7, 12, 28, 0.55)
    );
    mix-blend-mode: multiply;
    transition: opacity 0.2s ease;
    opacity: 0.75;
    z-index: 1;
}

.project-gallery__video-trigger:hover::after,
.project-gallery__video-trigger:focus-visible::after {
    opacity: 0.55;
}

.project-gallery__video-trigger:focus-visible {
    outline: 3px solid rgba(47, 111, 237, 0.55);
    outline-offset: -3px;
}

.project-gallery__video-trigger img,
.project-gallery__video-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-gallery__video-fallback {
    background:
        radial-gradient(
            circle at 25% 20%,
            rgba(47, 111, 237, 0.35),
            transparent 55%
        ),
        #050a1d;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    text-transform: uppercase;
}

.project-gallery__video-fallback .bi {
    font-size: 1.75rem;
}

.project-gallery__video-trigger-icon {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: rgba(13, 23, 45, 0.85);
    transform: translate(-50%, -50%);
    display: grid;
    place-content: center;
    color: #fff;
    font-size: 1.85rem;
    z-index: 2;
    box-shadow: 0 18px 36px rgba(5, 6, 12, 0.45);
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.project-gallery__video-trigger:hover .project-gallery__video-trigger-icon,
.project-gallery__video-trigger:focus-visible
    .project-gallery__video-trigger-icon {
    transform: translate(-50%, -50%) scale(1.05);
    background: rgba(47, 111, 237, 0.9);
}

.project-gallery__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

.project-gallery__caption {
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    background: rgba(13, 23, 45, 0.68);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    box-shadow: 0 18px 36px rgba(10, 17, 34, 0.35);
}

.project-gallery .carousel-control-prev,
.project-gallery .carousel-control-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(13, 23, 45, 0.55);
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.project-gallery .carousel-control-prev:hover,
.project-gallery .carousel-control-next:hover {
    background: rgba(47, 111, 237, 0.85);
    transform: translateY(-50%) scale(1.05);
}

.project-gallery .carousel-control-prev-icon,
.project-gallery .carousel-control-next-icon {
    filter: invert(1);
}

.project-gallery__thumbs {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    overflow-x: auto;
    padding-bottom: 0.2rem;
}

.project-gallery__thumb {
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    width: 100px;
    height: 72px;
    overflow: hidden;
    padding: 0;
    background: none;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(22, 27, 43, 0.18);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        opacity 0.2s ease;
    opacity: 0.65;
    flex-shrink: 0;
}

.project-gallery__thumb:hover,
.project-gallery__thumb:focus {
    opacity: 1;
}

.project-gallery__thumb.active {
    border-color: rgba(47, 111, 237, 0.9);
    box-shadow: var(--shadow-soft);
    transform: translateY(-3px);
    opacity: 1;
}

.project-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-gallery__thumb-video {
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    text-align: center;
    background: rgba(28, 47, 92, 0.9);
    color: #fff;
    padding: 0.35rem;
    font-size: 0.78rem;
    gap: 0.15rem;
}

.project-gallery__thumb-video .bi {
    font-size: 1.2rem;
}

.project-gallery--fallback .project-gallery__caption {
    background: rgba(28, 47, 92, 0.8);
}

.project-gallery--hero {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.project-gallery--hero .project-gallery__main {
    border-radius: 0;
    background: #0c1424;
    overflow: hidden;
    height: calc(100vh - var(--header-height, 120px));
    min-height: clamp(500px, 72vh, 820px);
}

@media (min-width: 992px) {
    body.home-header-overlay .project-gallery--hero .project-gallery__main {
        height: 100vh;
        min-height: clamp(560px, 78vh, 860px);
    }
}

.project-gallery--hero .project-gallery__media {
    padding: 0;
    background: none;
}

.project-gallery--hero .project-gallery__image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.project-gallery--hero .project-gallery__caption {
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    background: linear-gradient(
        180deg,
        rgba(7, 12, 24, 0.45),
        rgba(7, 12, 24, 0.95)
    );
    display: grid;
    gap: 0.35rem;
    cursor: pointer;
}

.project-gallery--hero .showcase-card__title {
    margin-bottom: 0;
}

.project-gallery--hero .showcase-card__details {
    margin-top: 0.35rem;
}

.project-gallery--hero .carousel-control-prev,
.project-gallery--hero .carousel-control-next {
    top: 1rem;
    bottom: auto;
    transform: none;
    background: rgba(6, 10, 22, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.project-gallery--hero .carousel-control-prev {
    left: auto;
    right: 3.5rem;
}

.project-gallery--hero .carousel-control-next {
    right: 1rem;
}

.project-detail-hero {
    margin-top: -1rem;
}

.project-detail-hero .project-detail-gallery {
    border-radius: 0;
    box-shadow: none;
    display: grid;
    grid-template-rows: auto auto;
    gap: 0.85rem;
}

.project-detail-hero .project-detail-gallery .project-gallery__main {
    height: auto;
    min-height: clamp(360px, 64vh, 760px);
    aspect-ratio: 16 / 7;
}

.project-detail-hero .project-detail-gallery .project-gallery__media {
    padding: clamp(0.75rem, 1.8vw, 1.5rem);
    background: #e9eef8;
}

.project-detail-hero .project-detail-gallery .project-gallery__image {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.project-detail-hero .project-detail-gallery__thumbs-wrap {
    padding: 0;
    width: 100%;
}

.project-detail-hero .project-detail-gallery .carousel-control-prev,
.project-detail-hero .project-detail-gallery .carousel-control-next {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(8, 14, 28, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(3px);
}

.project-detail-hero .project-detail-gallery .carousel-control-prev {
    left: 1rem;
    right: auto;
}

.project-detail-hero .project-detail-gallery .carousel-control-next {
    right: 1rem;
}

.project-detail-hero .project-detail-gallery .carousel-control-prev:hover,
.project-detail-hero .project-detail-gallery .carousel-control-next:hover {
    background: rgba(47, 111, 237, 0.88);
    border-color: rgba(255, 255, 255, 0.45);
}

.project-detail-gallery__thumbs {
    width: 100%;
    padding-inline: clamp(0.75rem, 2.4vw, 2.5rem);
    gap: 0.9rem;
    overflow-x: auto;
    scrollbar-width: thin;
}

.project-detail-gallery__thumbs .project-gallery__thumb {
    flex: 1 0 clamp(120px, 12vw, 190px);
    max-width: none;
    width: auto;
    height: clamp(74px, 8.5vw, 112px);
}

.project-detail-summary {
    max-width: none;
    width: 100%;
    margin-inline: 0;
}

.project-pricing-heading {
    max-width: 820px;
    margin-inline: auto;
}

.project-pricing-heading p {
    margin-inline: auto;
}

@media (max-width: 991.98px) {
    .project-gallery__main {
        height: clamp(240px, 45vh, 360px);
    }
}

@media (max-width: 575.98px) {
    html,
    body {
        overflow-x: hidden;
    }

    .site-header .navbar {
        padding-block: 0.1rem;
    }

    .site-header .site-logo {
        width: 56px;
        height: 40px;
        min-width: 56px;
        max-height: 48px;
    }

    .site-header .navbar-brand span {
        font-size: 1rem;
    }

    .project-gallery {
        padding: 0.85rem;
    }

    .project-detail-hero {
        overflow-x: clip;
        margin-top: 0;
    }

    .project-detail-hero .project-detail-gallery {
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
        padding: 0 !important;
        gap: 0.6rem;
    }

    .project-detail-hero .project-detail-gallery .project-gallery__main,
    .project-detail-hero .project-detail-gallery .carousel-inner,
    .project-detail-hero .project-detail-gallery .carousel-item,
    .project-detail-hero .project-detail-gallery .project-gallery__media {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .project-gallery__caption {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        font-size: 0.85rem;
    }

    .project-gallery__thumb {
        width: 84px;
        height: 60px;
    }

    .project-gallery--hero .project-gallery__main {
        height: auto;
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .project-detail-hero .project-detail-gallery .project-gallery__main {
        width: 100%;
        max-width: 100%;
        min-height: 0;
        aspect-ratio: 4 / 3;
        overflow: hidden;
    }

    .project-detail-hero .project-detail-gallery .project-gallery__media {
        padding: 0;
        background: #0c1424;
        display: grid;
        place-items: center;
    }

    .project-detail-hero .project-detail-gallery .project-gallery__image {
        width: 100%;
        height: 100%;
        max-width: 100%;
        object-fit: contain;
        object-position: center;
    }

    .project-detail-gallery__thumbs {
        gap: 0.65rem;
        padding-inline: 0.75rem;
    }

    .project-detail-hero .project-detail-gallery .carousel-control-prev,
    .project-detail-hero .project-detail-gallery .carousel-control-next {
        width: 40px;
        height: 40px;
        z-index: 4;
        top: 50%;
        transform: translateY(-50%) !important;
    }

    .project-detail-hero .project-detail-gallery .carousel-control-prev {
        left: 0.2rem !important;
    }

    .project-detail-hero .project-detail-gallery .carousel-control-next {
        right: 0.2rem !important;
    }

    .project-detail-gallery__thumbs .project-gallery__thumb {
        flex-basis: clamp(96px, 32vw, 138px);
        height: clamp(62px, 19vw, 86px);
    }

    .detail-media-hero {
        height: clamp(220px, 52vw, 320px);
    }

    .site-footer .row {
        margin-left: 0;
        margin-right: 0;
    }

    .site-footer .row > [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }
}

.article-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hard);
}

.article-card img {
    width: 100%;
    height: clamp(200px, 24vw, 260px);
    object-fit: cover;
    object-position: center;
    display: block;
}

.muted-meta {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.card-text-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.badge-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(44, 62, 98, 0.16);
    color: var(--color-muted);
    background: rgba(44, 62, 98, 0.05);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.quote-block {
    border-left: 4px solid rgba(47, 111, 237, 0.4);
    padding-left: 1.5rem;
    font-style: italic;
    color: var(--color-muted);
}

.site-footer {
    background: linear-gradient(140deg, #121a2d, #1c2f5c);
    color: rgba(255, 255, 255, 0.82);
    padding: 4rem 0 2.5rem;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    margin-top: 6rem;
}

.site-footer .footer-brand {
    font-weight: 700;
    font-size: 1.45rem;
}

.site-footer .site-logo {
    max-height: 56px;
    max-width: clamp(140px, 12vw, 220px);
    width: auto;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
    flex-shrink: 0;
}

.site-footer .footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.3rem 0;
}

.site-footer .footer-links a:hover {
    color: #fff;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    background: rgba(47, 111, 237, 0.32);
}

.contact-card,
.info-card {
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
    padding: 2.5rem;
}

.form-control,
.form-select {
    border-radius: var(--radius-md);
    border: 1px solid rgba(28, 47, 92, 0.18);
    padding: 0.85rem 1rem;
    transition:
        border 0.2s ease,
        box-shadow 0.2s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(47, 111, 237, 0.45);
    box-shadow: 0 0 0 3px rgba(47, 111, 237, 0.18);
}

.hero-video-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hard);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.1),
        rgba(15, 23, 42, 0.75)
    );
}

.hero-video {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.hero-video-play {
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
}

.hero-video-meta {
    background: rgba(15, 23, 42, 0.55);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    backdrop-filter: blur(8px);
}

.hero-modal-video {
    border-radius: var(--radius-md);
    background: #000;
    max-height: min(80vh, 720px);
    object-fit: cover;
}

@media (max-width: 575.98px) {
    .hero-modal-video {
        border-radius: 0;
        max-height: none;
    }
}

.projects-tabs .nav-pills .nav-link {
    border-radius: 999px;
    font-weight: 600;
    padding: 0.75rem 1.6rem;
    color: var(--color-muted);
    background: rgba(28, 47, 92, 0.08);
    border: 1px solid transparent;
}

.projects-tabs .nav-pills .nav-link.active {
    color: #fff;
    background: var(--color-accent);
    box-shadow: 0 12px 25px rgba(47, 111, 237, 0.28);
}

.blog-tabs {
    display: flex;
    align-items: center;
    gap: 0.3rem !important;
    width: max-content;
    margin-inline: auto;
    padding: 0.35rem;
    border-radius: 999px;
    background: rgba(28, 47, 92, 0.08);
    border: 1px solid rgba(28, 47, 92, 0.14);
    box-shadow: 0 10px 22px rgba(20, 29, 50, 0.08);
}

.blog-tabs .nav-link {
    border: 0;
    border-radius: 999px;
    padding: 0.62rem 1.25rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #3c4a67;
    background: transparent;
    transition: all 0.18s ease;
}

.blog-tabs .nav-link:hover {
    background: rgba(47, 111, 237, 0.14);
    color: #1c2f5c;
}

.blog-tabs .nav-link.active,
.blog-tabs .nav-link.active:hover {
    background: linear-gradient(135deg, #2f6fed, #1f5dde);
    color: #fff;
    box-shadow: 0 10px 20px rgba(31, 93, 222, 0.34);
}

.plan-media {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.plan-media__cover {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(28, 47, 92, 0.08);
    box-shadow: 0 14px 30px rgba(28, 47, 92, 0.16);
}

.plan-media__cover img,
.plan-media__cover video {
    width: 100%;
    height: clamp(200px, 26vh, 260px);
    object-fit: cover;
    display: block;
}

.plan-media__cover video {
    pointer-events: none;
}

.plan-media__thumbs {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.plan-media__thumb {
    width: 96px;
    height: 72px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(28, 47, 92, 0.08);
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(28, 47, 92, 0.12);
}

.plan-media__thumb img,
.plan-media__thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.plan-media__thumb video {
    pointer-events: none;
}

.plan-media__more {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.5rem 0.85rem;
    border-radius: 14px;
    background: rgba(28, 47, 92, 0.1);
    color: var(--color-dark);
}

.language-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border-radius: 999px;
    padding: 0.55rem 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    background: rgba(255, 255, 255, 0.9);
}

.language-dropdown-toggle:hover,
.language-dropdown-toggle:focus {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 12px 25px rgba(28, 47, 92, 0.15) !important;
}

.language-dropdown-menu {
    min-width: 220px;
    border-radius: 18px;
    padding: 0.4rem;
    box-shadow: 0 22px 45px rgba(15, 29, 59, 0.15);
    border: 1px solid rgba(28, 47, 92, 0.08);
}

.language-dropdown-menu .dropdown-item {
    border-radius: 14px;
    padding: 0.55rem 0.75rem;
    font-weight: 500;
}

.language-dropdown-menu .dropdown-item.active,
.language-dropdown-menu .dropdown-item:active,
.language-dropdown-menu .dropdown-item:hover {
    background: rgba(47, 111, 237, 0.12);
    color: var(--color-dark);
}

.language-label {
    font-size: 0.95rem;
    font-weight: 600;
}

.language-name {
    font-weight: 600;
}

.language-code {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-filters .badge {
    cursor: pointer;
    font-weight: 600;
}

.blog-filters .badge.bg-primary {
    box-shadow: 0 10px 22px rgba(47, 111, 237, 0.25);
}

.blog-filters .filter-label {
    font-weight: 600;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.map-embed-wrapper {
    position: relative;
    width: 100%;
    height: 440px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hard);
    margin: 0;
}

.map-embed-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.g-recaptcha {
    transform: scale(0.98);
    transform-origin: left;
}

.table-modern thead {
    background: rgba(28, 47, 92, 0.04);
}

.table-modern th {
    border: none;
    padding: 1rem 1.25rem;
    color: var(--color-muted);
    font-weight: 600;
}

.table-modern td {
    padding: 1rem 1.25rem;
    vertical-align: middle;
}

.page-content {
    font-size: 1.05rem;
    color: #333a4d;
}

.page-content h2,
.page-content h3,
.page-content h4 {
    margin-top: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-content p {
    margin-bottom: 1.2rem;
}

.menu-landing-hero {
    position: relative;
    padding: clamp(3.5rem, 6vw, 5.5rem) 0 clamp(2.5rem, 4vw, 4rem);
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(47, 111, 237, 0.18),
            transparent 55%
        ),
        radial-gradient(
            circle at 80% 0%,
            rgba(28, 47, 92, 0.12),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            rgba(247, 250, 255, 0.95),
            rgba(226, 235, 255, 0.9)
        );
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    margin-bottom: 0;
    box-shadow: 0 35px 70px rgba(28, 47, 92, 0.15);
    overflow: hidden;
    z-index: 1;
}

.menu-landing-hero::after {
    content: "";
    position: absolute;
    top: -40%;
    left: 50%;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(47, 111, 237, 0.2),
        transparent 65%
    );
    opacity: 0.6;
    transform: translateX(-50%);
    pointer-events: none;
}

.menu-landing-hero > .container {
    position: relative;
    z-index: 2;
}

.menu-landing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(47, 111, 237, 0.12);
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
}

.menu-landing-eyebrow i {
    font-size: 1rem;
}

.menu-landing-title {
    font-size: clamp(2.4rem, 4.5vw, 3.5rem);
    font-weight: 700;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.menu-landing-lead {
    font-size: 1.1rem;
    color: var(--color-muted);
    max-width: 60ch;
}

.menu-landing-card {
    border-radius: var(--radius-lg);
}

.menu-landing-links {
    margin-top: 1.5rem;
}

.menu-landing-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1.15rem;
    border-radius: var(--radius-md);
    background: rgba(47, 111, 237, 0.08);
    color: var(--color-primary);
    font-weight: 600;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.menu-landing-link:hover,
.menu-landing-link:focus {
    text-decoration: none;
    background: rgba(47, 111, 237, 0.18);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.menu-landing-link i {
    font-size: 1.1rem;
}

.menu-landing-hero .surface-card--blur {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 25px 55px rgba(15, 29, 59, 0.15);
    backdrop-filter: blur(18px);
}

.menu-landing-hero .hero-actions .btn {
    box-shadow: 0 18px 32px rgba(47, 111, 237, 0.35);
}

.menu-landing-hero + .section-wrapper {
    padding-top: clamp(3rem, 5vw, 4.75rem);
    margin-top: 0;
}

@media (max-width: 991.98px) {
    .hero-section {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .hero-actions {
        justify-content: center;
    }

    .surface-card {
        margin-top: 3rem;
    }

    .menu-landing-hero {
        border-radius: 0;
        margin-bottom: 0;
        padding: 3rem 0 2rem;
        box-shadow: none;
    }

    .menu-landing-card {
        margin-top: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .site-header .navbar-brand span {
        font-size: 1rem;
    }

    .hero-section {
        text-align: center;
    }

    .hero-title {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .menu-landing-hero {
        text-align: center;
    }

    .menu-landing-links {
        margin-top: 1.5rem;
    }
}

img[data-lightbox-enabled="true"] {
    cursor: zoom-in;
}

body.image-lightbox-open {
    overflow: hidden;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 10, 25, 0.55);
    overflow: hidden;
    z-index: 5000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.image-lightbox::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top left,
            rgba(67, 106, 255, 0.22),
            transparent 55%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(255, 164, 104, 0.18),
            transparent 45%
        ),
        rgba(4, 7, 15, 0.75);
    backdrop-filter: blur(26px) saturate(130%);
    -webkit-backdrop-filter: blur(26px) saturate(130%);
    z-index: 0;
}

.image-lightbox.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.image-lightbox__content {
    width: min(96vw, 1400px);
    height: min(92vh, 900px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.image-lightbox__stage {
    flex: 1;
    background: linear-gradient(
        145deg,
        rgba(15, 19, 35, 0.45),
        rgba(29, 38, 64, 0.4)
    );
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    touch-action: none;
    box-shadow: 0 40px 80px rgba(5, 8, 20, 0.45);
}

.image-lightbox__stage.is-dragging {
    cursor: grabbing;
}

.image-lightbox__image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform-origin: center center;
    transition: transform 0.12s ease-out;
    user-select: none;
    touch-action: none;
}

.image-lightbox__video {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    background: #000;
    border: 0;
    display: none;
}

.image-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease,
        border-color 0.2s ease;
    z-index: 3;
}

.image-lightbox__nav--prev {
    left: 1.1rem;
}

.image-lightbox__nav--next {
    right: 1.1rem;
}

.image-lightbox__nav:hover,
.image-lightbox__nav:focus-visible {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%) scale(1.04);
}

.image-lightbox__nav svg {
    width: 18px;
    height: 18px;
}

.image-lightbox__toolbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
}

.image-lightbox__button {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 999px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.image-lightbox__button:hover,
.image-lightbox__button:focus-visible {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.image-lightbox__button svg,
.image-lightbox__close svg {
    width: 22px;
    height: 22px;
}

.image-lightbox__icon line,
.image-lightbox__icon circle,
.image-lightbox__icon polyline,
.image-lightbox__icon path {
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.image-lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: none;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    line-height: 0;
    z-index: 2;
}

.image-lightbox__close:hover,
.image-lightbox__close:focus-visible {
    background: rgba(0, 0, 0, 0.65);
}

.image-lightbox.is-video .image-lightbox__stage {
    cursor: default;
    touch-action: auto;
}

.image-lightbox.is-video .image-lightbox__image {
    display: none;
}

.image-lightbox.is-video .image-lightbox__video {
    display: block;
}

.image-lightbox.is-video .image-lightbox__toolbar {
    display: none;
}

@media (max-width: 575.98px) {
    main .project-detail-hero {
        margin-top: 0;
        padding-inline: 0.75rem;
    }

    main .project-detail-hero .project-detail-gallery {
        border-radius: 1.25rem;
        background: #fff;
        box-shadow: var(--shadow-soft);
        padding: 0.75rem;
        gap: 0.65rem;
    }

    main .project-detail-hero .project-detail-gallery .project-gallery__main {
        height: auto;
        min-height: 0;
        aspect-ratio: 1 / 1;
        border-radius: 1rem;
        overflow: hidden;
    }

    main .project-detail-hero .project-detail-gallery .project-gallery__media {
        background: #e9eef8;
        padding: 0.45rem;
    }

    main .project-detail-hero .project-detail-gallery .project-gallery__image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    main .project-detail-hero .project-detail-gallery .carousel-control-prev,
    main .project-detail-hero .project-detail-gallery .carousel-control-next {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        border-radius: 999px;
        background: rgba(15, 24, 41, 0.55);
        border: 1px solid rgba(255, 255, 255, 0.28);
        z-index: 6;
    }

    main .project-detail-hero .project-detail-gallery .carousel-control-prev {
        left: 0.35rem;
        right: auto;
    }

    main .project-detail-hero .project-detail-gallery .carousel-control-next {
        right: 0.35rem;
        left: auto;
    }

    main .project-detail-hero .project-detail-gallery .carousel-control-prev-icon,
    main .project-detail-hero .project-detail-gallery .carousel-control-next-icon {
        filter: invert(1);
    }
}

@media (max-width: 575.98px) {
    .image-lightbox__content {
        height: 90vh;
    }

    .image-lightbox__toolbar {
        flex-wrap: wrap;
    }

    .image-lightbox__button {
        width: 44px;
        height: 44px;
    }

    .image-lightbox__nav {
        width: 42px;
        height: 42px;
    }

    .image-lightbox__nav--prev {
        left: 0.75rem;
    }

    .image-lightbox__nav--next {
        right: 0.75rem;
    }
}
.header-action-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    min-width: unset;
}

.header-primary-cta {
    width: auto;
    border-radius: 999px;
    padding: 0.55rem 1.4rem;
    box-shadow: 0 12px 28px rgba(79, 70, 229, 0.18);
}

.header-quick-actions .contact-quick-actions {
    flex-direction: row;
    align-items: center;
    gap: 0.45rem;
}

.header-quick-actions .contact-quick-action {
    justify-content: center;
    width: auto;
    padding: 0.4rem 0.85rem;
}

.contact-quick-actions--floating {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
}

.contact-quick-actions--floating .contact-quick-action {
    padding: 0;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    justify-content: center;
}

.contact-quick-actions--floating .contact-quick-action__icon {
    background: transparent;
    width: 100%;
    height: 100%;
    font-size: 1.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-quick-actions--floating .contact-quick-action__body {
    display: none;
}

.cta-action-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    width: 100%;
}

.cta-primary-action {
    flex: 1 1 260px;
    min-width: 220px;
}

.cta-action-bar__extras {
    display: flex;
    flex: 0 0 auto;
}

.cta-action-bar__extras .contact-quick-actions {
    justify-content: flex-end;
    gap: 0.5rem;
}

@media (max-width: 575px) {
    .cta-action-bar {
        flex-wrap: nowrap;
        align-items: stretch;
    }

    .cta-primary-action {
        flex: 1 1 0;
        min-width: 0;
    }

    .cta-action-bar__extras {
        flex: 0 0 auto;
    }

    .cta-action-bar__extras .contact-quick-actions {
        justify-content: flex-end;
    }
}

.floating-action-widget {
    position: fixed;
    bottom: 1.1rem;
    right: 1.1rem;
    z-index: 1060;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.floating-action-widget__cta {
    width: auto;
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(47, 111, 237, 0.3);
}

.floating-action-widget__card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    border: none;
}

@media (max-width: 575px) {
    .floating-action-widget {
        bottom: 1rem;
        right: 1rem;
        gap: 0.4rem;
    }

    .floating-action-widget__cta {
        width: 100%;
    }
}
@media (max-width: 575px) {
    .header-action-group {
        position: fixed;
        bottom: 1.1rem;
        right: 1.1rem;
        z-index: 1050;
        flex-direction: column;
        align-items: flex-end;
        padding: 0.65rem;
        background: rgba(28, 47, 92, 0.9);
        border-radius: 16px;
        box-shadow: 0 18px 36px rgba(12, 20, 36, 0.28);
        gap: 0.45rem;
    }

    .header-quick-actions .contact-quick-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0.35rem;
    }

    .header-quick-actions .contact-quick-action {
        width: 100%;
        justify-content: center;
    }
}

.status-page {
    min-height: calc(100vh - 220px);
    display: flex;
    align-items: center;
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.status-page.gradient-surface {
    background: linear-gradient(
        135deg,
        rgba(28, 47, 92, 0.04),
        rgba(47, 111, 237, 0.08)
    );
    position: relative;
    overflow: hidden;
}

.status-page__watermark {
    position: absolute;
    font-size: clamp(10rem, 25vw, 18rem);
    font-weight: 800;
    color: rgba(28, 47, 92, 0.05);
    right: 5%;
    top: 10%;
    letter-spacing: 0.05em;
    pointer-events: none;
    line-height: 1;
}

.status-page__logo {
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: min(60%, 480px);
    opacity: 0.05;
    filter: blur(2px);
    pointer-events: none;
}

.status-page__container {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.status-page__content .status-page__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(47, 111, 237, 0.12);
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.status-page__title {
    font-size: clamp(2.1rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.status-page__lead {
    color: var(--color-muted);
    max-width: 48ch;
    margin-bottom: 1.5rem;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: 0 25px 40px rgba(15, 29, 59, 0.12);
}

.status-page__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-icon-only {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 1.35rem;
}

/* Category Cards */
.category-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hard);
    text-decoration: none;
    color: inherit;
}

.category-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(
        135deg,
        rgba(28, 47, 92, 0.08),
        rgba(47, 111, 237, 0.08)
    );
}

.category-card__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
}

.category-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(47, 111, 237, 0.12);
    color: var(--color-accent);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.category-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: var(--color-dark);
}

.category-card__description {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.category-card__footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

.category-card__footer i {
    transition: transform 0.2s ease;
}

.category-card:hover .category-card__footer i {
    transform: translateX(4px);
}

.category-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

@media (min-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .primary-nav > li {
        position: relative;
        margin-inline: 0.15rem;
    }

    .primary-nav > li::after {
        content: "";
        position: absolute;
        inset: 4px 0;
        border-radius: 999px;
        background: rgba(79, 70, 229, 0.08);
        opacity: 0;
        transition: opacity 0.2s ease;
        z-index: -1;
    }

    .primary-nav > li:hover::after,
    .primary-nav > li:focus-within::after {
        opacity: 1;
    }
}

/* Applied Services */
.applied-services-wrapper {
    padding-top: 0.5rem;
}

.applied-hero {
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(
        135deg,
        rgba(47, 111, 237, 0.08),
        rgba(28, 47, 92, 0.04)
    );
    box-shadow: var(--shadow-soft);
    margin-bottom: 1rem;
}

.applied-hero__title {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.applied-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.applied-breadcrumb__item {
    color: var(--color-muted);
    font-weight: 600;
}

.applied-breadcrumb__item.active {
    color: var(--color-dark);
}

.applied-section-heading {
    margin: 1rem 0 1rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.applied-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.applied-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    color: inherit;
    text-decoration: none;
    position: relative;
}

.applied-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hard);
    color: inherit;
    text-decoration: none;
}

.applied-card__image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.applied-card__image-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.applied-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 230px;
    background: var(--color-surface-alt, #f5f7fb);
    color: var(--color-muted);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 2rem;
}

.applied-card__body {
    padding: 1rem 1.1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
}

.applied-card__meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-muted);
}

.applied-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-dark);
}

.applied-card__text {
    font-size: 0.95rem;
    color: var(--color-muted);
    margin: 0;
    flex: 1;
}

.applied-card__cta {
    color: var(--color-accent);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.applied-category-carousel {
    position: relative;
    margin: 0 -0.25rem;
}

.applied-category-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.25rem 2.75rem 0.75rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
    touch-action: pan-x;
    -webkit-user-select: none;
    user-select: none;
}

.applied-category-track::-webkit-scrollbar {
    display: none;
}

.applied-category-track.is-dragging {
    cursor: grabbing;
}

.applied-category-scroll {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-dark);
    box-shadow: var(--shadow-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.applied-category-scroll:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: var(--shadow-hard);
}

.applied-category-scroll--prev {
    left: 0.35rem;
}

.applied-category-scroll--next {
    right: 0.35rem;
}

.applied-card--category {
    justify-content: flex-end;
    flex: 0 0 clamp(220px, 30vw, 300px);
    scroll-snap-align: start;
}

.applied-card--category .applied-card__image img {
    height: 220px;
}

.applied-card--category .applied-card__image--placeholder {
    height: 220px;
    border-bottom: none;
}

.applied-card__overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 0.85rem 1rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.35) 70%, rgba(0, 0, 0, 0));
    color: #fff;
    display: flex;
    align-items: flex-end;
    min-height: 70px;
}

.applied-card__overlay-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.applied-card--project .applied-card__image img {
    height: 250px;
}

.applied-card--project .applied-card__image--placeholder,
.applied-card__image--placeholder.applied-card__image--placeholder-project {
    height: 250px;
}

.applied-card-grid--projects .applied-card {
    min-height: 100%;
}

.applied-sidebar {
    position: sticky;
    top: 92px;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
}

.applied-sidebar__toggle {
    margin-top: 0.75rem;
    width: 100%;
    border: 1px solid rgba(28, 47, 92, 0.12);
    border-radius: 999px;
    background: #fff;
    color: var(--color-dark);
    font-weight: 600;
    padding: 0.5rem 0.9rem;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.applied-sidebar__toggle i {
    transition: transform 0.2s ease;
}

.applied-sidebar.is-open .applied-sidebar__toggle i {
    transform: rotate(180deg);
}

.applied-sidebar__content {
    margin-top: 0;
}

.applied-nav {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.applied-nav__item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.75rem 0.6rem calc(0.75rem + (var(--depth, 0) * 12px));
    border-radius: var(--radius-sm);
    border: 1px solid rgba(28, 47, 92, 0.08);
    color: var(--color-muted);
    background: #fff;
}

.applied-nav__row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.35rem;
}

.applied-nav__toggle {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(28, 47, 92, 0.12);
    background: #fff;
    color: var(--color-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.applied-nav__toggle:hover {
    color: var(--color-dark);
    border-color: rgba(47, 111, 237, 0.35);
}

.applied-nav__toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.applied-nav__item:hover {
    color: var(--color-dark);
    border-color: rgba(47, 111, 237, 0.25);
}

.applied-nav__item.is-active {
    background: rgba(47, 111, 237, 0.08);
    border-color: rgba(47, 111, 237, 0.45);
    color: var(--color-dark);
}

.applied-nav__label {
    flex: 1;
    font-weight: 600;
}

.applied-nav__bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.8;
}

.applied-nav__children {
    margin-left: 0.5rem;
    padding-left: 0.5rem;
    border-left: 1px dashed rgba(28, 47, 92, 0.14);
    display: none;
}

.applied-nav__children.is-open {
    display: block;
}

@media (max-width: 991.98px) {
    .applied-sidebar {
        position: static;
    }

    .applied-sidebar__toggle {
        display: inline-flex;
    }

    .applied-sidebar__content {
        display: none;
        margin-top: 0.75rem;
    }

    .applied-sidebar.is-open .applied-sidebar__content {
        display: block;
    }
}

/* 360° / Virtual Tours */
.virtual-hero {
    position: relative;
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(47, 111, 237, 0.12),
            transparent 40%
        ),
        radial-gradient(
            circle at 80% 10%,
            rgba(28, 47, 92, 0.12),
            transparent 45%
        ),
        linear-gradient(135deg, #0f1d3b, #1e3266 55%, #0f1d3b);
    color: #fff;
    overflow: hidden;
}

.virtual-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(255, 255, 255, 0.05),
        transparent 55%
    );
    pointer-events: none;
}

.virtual-hero .eyebrow {
    color: rgba(255, 255, 255, 0.75);
}

.virtual-hero__title {
    font-size: clamp(2.25rem, 3vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.virtual-hero__lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
}

.virtual-hero__meta {
    display: inline-flex;
    flex-direction: column;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}

.virtual-hero__meta-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.virtual-hero__meta-value {
    font-weight: 700;
}

.virtual-hero__orb {
    position: relative;
    width: min(360px, 70vw);
    aspect-ratio: 1 / 1;
    margin-left: auto;
    margin-right: auto;
}

.virtual-hero__orb-core {
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #0f1d3b;
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #e0e7ff);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.virtual-hero__orb-core .bi {
    font-size: 2rem;
}

.virtual-hero__orb-label {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #243b55;
}

.virtual-hero__orb-ring {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.35);
    animation: orbit-spin 16s linear infinite;
}

.virtual-hero__orb-ring--inner {
    inset: 22%;
    animation-duration: 12s;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.5);
}

@keyframes orbit-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.virtual-card {
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(28, 47, 92, 0.08);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.virtual-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hard);
}

.virtual-card__media {
    position: relative;
    background: #0f1d3b;
    min-height: 220px;
    overflow: hidden;
}

.virtual-card__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.virtual-card__media--video::after {
    content: "Video";
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 29, 59, 0.85);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.panorama-thumb {
    width: 100%;
    height: 240px;
    background-size: 500% auto;
    background-repeat: no-repeat;
    background-position: center 50%;
    position: relative;
}

.virtual-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(47, 111, 237, 0.9);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.virtual-card__hint {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 0.35rem 0.65rem;
    border-radius: 10px;
    background: rgba(15, 29, 59, 0.75);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
}

.virtual-card__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.virtual-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.virtual-card__desc {
    color: var(--color-muted);
    line-height: 1.5;
    min-height: 48px;
}

.virtual-viewer {
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #0f1d3b, #182a55);
    padding: clamp(1rem, 2vw, 1.5rem);
    box-shadow: var(--shadow-soft);
}

.virtual-viewer__video video {
    width: 100%;
    border-radius: var(--radius-md);
    display: block;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.virtual-viewer__panorama {
    position: relative;
    width: 100%;
    min-height: 520px;
    border-radius: var(--radius-lg);
    background: #0f1d3b;
    overflow: hidden;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
    cursor: grab;
    border: 8px solid #0f2043;
}

.virtual-viewer__panorama:active {
    cursor: grabbing;
}

.virtual-viewer__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(15, 29, 59, 0.28),
        rgba(15, 29, 59, 0.05),
        rgba(15, 29, 59, 0.28)
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    pointer-events: none;
}

.virtual-viewer__cursor {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #0f1d3b;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.virtual-viewer__panorama canvas {
    width: 100% !important;
    height: 100% !important;
}

.virtual-viewer__panorama--fallback {
    background-size: cover;
    background-position: center;
}

.virtual-viewer__hint {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 29, 59, 0.9);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: hint-fade-in 0.5s ease;
}

@keyframes hint-fade-in {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.virtual-viewer__hint i {
    font-size: 1rem;
}

.virtual-viewer__hint.is-hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
}

.virtual-detail-hero {
    padding: clamp(1.75rem, 4vw, 2.75rem) 0;
    background: linear-gradient(135deg, #f7f9fc, #eef2f9);
    border-bottom: 1px solid rgba(28, 47, 92, 0.08);
}

.virtual-detail__title {
    font-size: clamp(2rem, 2.6vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.virtual-detail__lead {
    font-size: 1.05rem;
    color: var(--color-muted);
    max-width: 800px;
}

.virtual-detail__meta {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid rgba(28, 47, 92, 0.08);
    box-shadow: var(--shadow-soft);
    padding: 1.25rem;
    display: grid;
    gap: 0.75rem;
}

.virtual-detail__meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 600;
}

.virtual-detail__meta-row span {
    color: var(--color-muted);
    font-weight: 500;
}

.section-wrapper--alt {
    background: var(--color-surface-alt);
    border-top: 1px solid rgba(28, 47, 92, 0.06);
    border-bottom: 1px solid rgba(28, 47, 92, 0.06);
}
