:root {
    --landing-bg-start: #08131f;
    --landing-bg-mid: #13263c;
    --landing-bg-end: #047097;
    --landing-accent: #047097;
    --landing-accent-rgb: 4, 112, 151;
    --landing-accent-soft: #d6f2ff;
    --landing-accent-soft-rgb: 119, 196, 230;
    --landing-surface-start: #ffffff;
    --landing-surface-end: #f6fbfd;
    --landing-surface-soft: #eaf4f8;
    --landing-button-primary-bg: #ffffff;
    --landing-button-primary-text: #0d2940;
    --landing-button-primary-hover: #eef8fc;
    --landing-text-dark: #13263c;
    --landing-text-muted: #567080;
    --landing-text-tab: #44606f;
}

.scroll-container {
    height: 80px;
    overflow: auto;
}

#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.landing-header {
    height: 100px !important;
}

[data-kt-sticky-landing-header=on] .landing-header {
    height: 86px !important;
}

.landing-header > .container,
.landing-header > .container > .d-flex {
    height: 100%;
}

.landing-header .landing-logo {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.landing-hero-section {
    --landing-header-height: 100px;
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(119, 196, 230, 0.26), transparent 34%),
        radial-gradient(circle at 85% 18%, rgba(4, 112, 151, 0.55), transparent 28%),
        linear-gradient(135deg, #08131f 0%, #13263c 52%, #047097 100%);
}

.landing-footer-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(119, 196, 230, 0.26), transparent 34%),
        radial-gradient(circle at 85% 18%, rgba(4, 112, 151, 0.55), transparent 28%),
        linear-gradient(135deg, #08131f 0%, #13263c 52%, #047097 100%);
}

.landing-footer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.06), transparent 24%),
        radial-gradient(circle at 82% 82%, rgba(214, 242, 255, 0.08), transparent 28%);
    pointer-events: none;
}

.landing-footer-section > .container {
    position: relative;
    z-index: 1;
}

.landing-logo {
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.landing-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 48px;
    padding: 0.8rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 28px rgba(3, 16, 29, 0.16);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-header-cta:hover,
.landing-header-cta:focus {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(3, 16, 29, 0.22);
}

.landing-header-cta i {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.88);
}

.landing-header-lang-item {
    display: flex;
    align-items: center;
}

.landing-header-lang-menu {
    position: relative;
}

.landing-header-lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 48px;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.landing-header-lang-toggle:hover,
.landing-header-lang-toggle:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
    color: #ffffff;
    transform: translateY(-1px);
}

.landing-header-lang-flag {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    object-fit: cover;
}

.landing-header-lang-name {
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1;
}

.landing-header-lang-caret {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.landing-header-lang-menu .menu {
    margin-top: 0.75rem;
}

.landing-header-lang-menu .menu-link {
    border-radius: 10px;
}

.landing-header-lang-menu .menu-link.active {
    background: rgba(4, 112, 151, 0.12);
    color: #047097;
}

.landing-hero-wrap {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--landing-header-height));
    min-height: calc(100svh - var(--landing-header-height));
    z-index: 1;
    padding: 2rem 0 5.5rem;
}

.landing-hero-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
    min-height: max(540px, calc(100vh - var(--landing-header-height)));
    min-height: max(540px, calc(100svh - var(--landing-header-height)));
}

.landing-hero-copy {
    max-width: 680px;
}

.landing-hero-title {
    display: flex;
    flex-direction: column;
    margin: 0;
    color: #ffffff;
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.landing-hero-title-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 1.25rem;
    padding: 0.55rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #d6f2ff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.landing-hero-description {
    max-width: 58ch;
    margin: 1.5rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.75;
}

.landing-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.landing-hero-address {
    display: inline-flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: 1.2rem;
    color: #ffffff;
    text-decoration: none;
}

.landing-hero-address:hover,
.landing-hero-address:focus {
    color: #d6f2ff;
}

.landing-hero-address-label {
    color: rgba(214, 242, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-hero-address-value {
    max-width: 56ch;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
}

.landing-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 150px;
    padding: 0.95rem 1.5rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.landing-hero-btn:hover,
.landing-hero-btn:focus {
    transform: translateY(-2px);
}

.landing-hero-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.15rem;
    height: 1.15rem;
    flex: 0 0 1.15rem;
}

.landing-hero-btn-icon i {
    width: 100%;
    height: 100%;
    font-size: 1.15rem;
    color: currentColor;
}

.landing-hero-btn-primary {
    background: #ffffff;
    color: #0d2940;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.landing-hero-btn-primary:hover,
.landing-hero-btn-primary:focus {
    background: #eef8fc;
    color: #0d2940;
}

.landing-hero-btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    backdrop-filter: blur(14px);
}

.landing-hero-btn-secondary:hover,
.landing-hero-btn-secondary:focus {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.landing-hero-btn-ghost {
    background: transparent !important;
    border: 2px solid rgba(214, 242, 255, 0.9) !important;
    color: #ffffff !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    --bs-btn-color: #ffffff;
    --bs-btn-bg: transparent;
    --bs-btn-border-color: rgba(214, 242, 255, 0.9);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: rgba(255, 255, 255, 0.12);
    --bs-btn-hover-border-color: #ffffff;
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: rgba(255, 255, 255, 0.16);
    --bs-btn-active-border-color: #ffffff;
}

.landing-hero-btn-ghost:hover,
.landing-hero-btn-ghost:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}

.landing-spa-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.landing-spa-btn {
    min-width: 230px;
    padding: 1.1rem 1.5rem;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff, #d8eef7);
    color: #047097 !important;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
}

.landing-spa-btn:hover,
.landing-spa-btn:focus {
    transform: translateY(-2px);
    color: #035c7c !important;
}

.landing-app-store-banner {
    display: none;
    margin-top: 1.5rem;
    padding: 1.25rem 1rem 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.landing-hero-panel {
    justify-self: end;
    width: min(100%, 460px);
    padding: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
    box-shadow: 0 28px 60px rgba(2, 11, 21, 0.28);
    backdrop-filter: blur(16px);
}

.landing-hero-gallery-card {
    display: block;
    overflow: hidden;
    border-radius: 24px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 40px rgba(2, 11, 21, 0.2);
}

.landing-hero-gallery-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.landing-hero-gallery-card:hover .landing-hero-gallery-image,
.landing-hero-gallery-card:focus .landing-hero-gallery-image {
    transform: scale(1.03);
}

.landing-services-section {
    position: relative;
}

.landing-services-shell {
    padding: 3rem;
    border: 1px solid rgba(19, 38, 60, 0.08);
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(4, 112, 151, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f6fbfd 100%);
    box-shadow: 0 24px 60px rgba(12, 39, 63, 0.08);
}

.landing-services-header {
    max-width: 720px;
    margin-inline: auto;
}

.landing-services-layout {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

.landing-services-eyebrow {
    display: inline-flex;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(4, 112, 151, 0.08);
    color: #047097;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.landing-services-title {
    margin: 1rem 0 0.75rem;
    color: #13263c;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.landing-services-intro {
    margin: 0;
    color: #567080;
    font-size: 1rem;
    line-height: 1.7;
}

.landing-services-copy {
    max-width: 34ch;
    margin: 0;
    color: #567080;
    font-size: 1.02rem;
    line-height: 1.85;
}

.landing-services-content {
    min-width: 0;
}

.landing-services-content .tab-pane .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

.landing-services-tabs-wrap {
    margin-top: 2rem;
}

.landing-services-tabs-scroll {
    min-width: 0;
    scrollbar-width: none;
}

.landing-services-tabs-scroll::-webkit-scrollbar {
    display: none;
}

.landing-services-tabs {
    width: max-content;
    gap: 0.75rem;
    padding: 0.8rem;
    border: 0;
    border-radius: 999px;
    background: #eaf4f8;
}

.landing-services-tabs-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.9rem;
}

.landing-services-tabs-btn {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--landing-bg-mid) 0%, var(--landing-accent) 100%);
    color: #ffffff;
    box-shadow: 0 0.75rem 1.5rem rgba(var(--landing-accent-rgb), 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.landing-services-tabs-btn:hover,
.landing-services-tabs-btn:focus {
    transform: translateY(-1px);
    color: #ffffff;
    box-shadow: 0 1rem 1.8rem rgba(var(--landing-accent-rgb), 0.26);
}

.landing-services-tabs-btn:disabled {
    opacity: 0.35;
    cursor: default;
    box-shadow: none;
}

.landing-services-tabs-btn[hidden] {
    display: none;
}

.landing-services-tab {
    border: 0 !important;
    border-radius: 999px !important;
    color: #44606f !important;
    background: transparent !important;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.landing-services-tab:hover,
.landing-services-tab:focus {
    color: #13263c !important;
    transform: translateY(-1px);
}

.landing-services-tab.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, #13263c 0%, #047097 100%) !important;
    box-shadow: 0 14px 28px rgba(4, 112, 151, 0.22);
}

.landing-team-section {
    position: relative;
}

.landing-team-bg {
    background:
        radial-gradient(circle at top left, rgba(119, 196, 230, 0.18), transparent 30%),
        radial-gradient(circle at 82% 20%, rgba(4, 112, 151, 0.45), transparent 28%),
        linear-gradient(135deg, #08131f 0%, #13263c 54%, #047097 100%);
}

.landing-team-shell {
    padding: 0 1.25rem 1.5rem;
}

.landing-team-layout {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

.landing-team-header {
    position: relative;
    max-width: 720px;
    margin-inline: auto;
    overflow: hidden;
}

.landing-team-eyebrow {
    display: inline-flex;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #d6f2ff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.landing-team-title {
    margin: 1rem 0 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.landing-team-logo-ghost {
    position: absolute;
    top: -20px;
    left: -10px;
    width: 220px;
    opacity: 0.08;
    filter: blur(2px);
    pointer-events: none;
}

.landing-team-logo-ghost img {
    display: block;
    width: 100%;
    height: auto;
}

.landing-team-content {
    min-width: 0;
}

.landing-team-single {
    display: flex;
    justify-content: center;
}

.landing-team-slider-wrap {
    position: relative;
    background: transparent;
    box-shadow: none;
}

.landing-team-slider {
    padding: 0 0.25rem;
    background: transparent;
    box-shadow: none;
}

.landing-team-slider-wrap .tns-outer,
.landing-team-slider-wrap .tns-ovh,
.landing-team-slider-wrap .tns-inner,
.landing-team-slider-wrap .tns-item,
.landing-team-slider-wrap [data-tns="true"] {
    background: transparent !important;
    box-shadow: none !important;
}

.landing-team-slide {
    padding: 0.5rem 0.85rem;
    background: transparent;
    box-shadow: none;
}

.landing-team-card {
    min-height: 100%;
    padding: 2rem 1.5rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
    box-shadow: 0 10px 24px rgba(2, 11, 21, 0.08);
    backdrop-filter: blur(10px);
}

.landing-team-avatar-wrap {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.35rem;
    padding: 0.5rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.landing-team-avatar {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.9);
}

.landing-team-name {
    display: block;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.4;
}

.landing-team-controls {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.landing-team-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    backdrop-filter: blur(14px);
}

.landing-team-control:hover,
.landing-team-control:focus {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.landing-gallery-header {
    max-width: 720px;
    margin-inline: auto;
}

.landing-gallery-eyebrow {
    display: inline-flex;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(4, 112, 151, 0.08);
    color: #047097;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.landing-gallery-title {
    margin: 1rem 0 0;
    color: #13263c;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.landing-gallery-card {
    position: relative;
    overflow: hidden;
    padding: 0.9rem;
    border: 1px solid rgba(19, 38, 60, 0.1);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 251, 253, 0.98));
    box-shadow: 0 22px 50px rgba(12, 39, 63, 0.14);
    isolation: isolate;
    transition: border-color 0.2s ease;
}

.landing-gallery-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.55), rgba(4, 112, 151, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.9;
    z-index: 2;
}

.landing-gallery-card-media {
    position: relative;
    overflow: hidden;
    border-radius: 22px !important;
    box-shadow: 0 18px 36px rgba(2, 11, 21, 0.16);
    transition: none;
}

.landing-gallery-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
}

.landing-gallery-card-overlay {
    border-radius: 22px !important;
    background: rgba(8, 19, 31, 0.22) !important;
    opacity: 0;
    transition: none;
    backdrop-filter: none;
}

.landing-about-section {
    position: relative;
}

.landing-about-shell {
    padding: 3rem;
    border: 1px solid rgba(19, 38, 60, 0.08);
    border-radius: 36px;
    background:
        radial-gradient(circle at top left, rgba(4, 112, 151, 0.08), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f6fbfd 100%);
    box-shadow: 0 24px 60px rgba(12, 39, 63, 0.08);
}

.landing-about-layout {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

.landing-about-header {
    max-width: 720px;
    margin-inline: auto;
}

.landing-about-eyebrow {
    display: inline-flex;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(4, 112, 151, 0.08);
    color: #047097;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.landing-about-title {
    margin: 1rem 0 0;
    color: #13263c;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.landing-about-content {
    max-width: 980px;
    margin: 0 auto;
    color: #5b7382;
    line-height: 1.85;
}

.landing-about-content article > *:first-child {
    margin-top: 0;
}

.landing-about-content article > *:last-child {
    margin-bottom: 0;
}

.landing-about-content h1,
.landing-about-content h2,
.landing-about-content h3,
.landing-about-content h4,
.landing-about-content h5,
.landing-about-content h6 {
    color: #13263c;
}

.landing-footer-top {
    display: grid;
    gap: 1.5rem;
    padding: 3.5rem 0 2.5rem;
}

.landing-footer-column {
    min-width: 0;
}

.landing-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.landing-footer-logo-wrap {
    width: 84px;
    height: 84px;
    margin-bottom: 1rem;
    padding: 0.4rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
}

.landing-footer-logo {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.landing-footer-title {
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.landing-footer-links {
    display: grid;
    gap: 0.85rem;
}

.landing-footer-brand .landing-footer-links {
    gap: 0.7rem;
}

.landing-footer-link,
.landing-footer-text {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    text-decoration: none;
}

.landing-footer-link:hover,
.landing-footer-link:focus {
    color: #ffffff;
}

.landing-footer-map-icon {
    flex: 0 0 auto;
    margin-right: 0.75rem;
}

.landing-footer-link.open-maps,
.landing-footer-brand .landing-footer-link {
    display: inline-flex;
    align-items: flex-start;
}

.landing-footer-stores {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.landing-footer-links .landing-footer-link i,
.landing-footer-links .landing-footer-link svg,
.landing-footer-links .landing-footer-link img {
    font-size: 1.45rem;
    width: 1.45rem;
    height: 1.45rem;
}

.landing-footer-bottom {
    gap: 1rem;
}

.landing-footer-powered {
    color: rgba(255, 255, 255, 0.58);
}

.landing-footer-powered-link {
    text-decoration: none;
}

.landing-footer-platform-link {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0.5rem;
    gap: 0.5rem;
    text-decoration: none;
}

.landing-footer-platform-logo {
    display: block;
    width: 190px;
    max-width: 100%;
    height: auto;
}

.landing-footer-menu .menu-link {
    color: rgba(255, 255, 255, 0.72) !important;
}

.landing-footer-menu .menu-link:hover,
.landing-footer-menu .menu-link:focus {
    color: #ffffff !important;
}

@media (min-width: 992px) {
    .landing-about-layout {
        grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.7fr);
        gap: 3.5rem;
    }

    .landing-about-header {
        position: sticky;
        top: 120px;
        max-width: 320px;
        margin: 0;
        text-align: left;
    }

    .landing-about-content {
        max-width: none;
        margin: 0;
    }

    .landing-footer-top {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) minmax(0, 1fr);
        gap: 1.75rem;
    }
}

@media (max-width: 991.98px) {
    .landing-about-shell {
        padding: 2rem 1.25rem;
        border-radius: 28px;
    }

    .landing-about-header {
        text-align: center;
    }

    .landing-about-content {
        max-width: 56ch;
    }

    .landing-footer-top {
        padding: 2.5rem 0 2rem;
    }
}

.landing-service-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(19, 38, 60, 0.08);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(12, 39, 63, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.landing-service-card:hover,
.landing-service-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 26px 60px rgba(12, 39, 63, 0.12);
}

.landing-service-card-header {
    min-height: 88px;
    padding: 1.35rem 1.5rem !important;
    border-bottom: 1px solid rgba(19, 38, 60, 0.08);
    background: #f8fbfc;
}

.landing-service-card-title {
    margin: 0;
    color: #13263c !important;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.35;
}

.landing-service-card-body {
    display: flex;
    flex-direction: column;
    height: calc(100% - 96px);
    padding: 1.75rem !important;
}

.landing-service-meta {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem !important;
}

.landing-service-meta-item {
    min-width: 0;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: #f4f9fb;
}

.landing-service-meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(19, 38, 60, 0.08);
}

.landing-service-description {
    flex: 1 1 auto;
    height: auto;
    min-height: 110px;
    padding: 0.5rem 0 0;
    overflow: auto;
}

.landing-service-description-title {
    color: #13263c;
    font-size: 1rem;
    font-weight: 700;
}

.landing-service-description-text {
    color: #5b7382;
    line-height: 1.7;
}

.landing-service-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.95rem 1.35rem;
    border: 2px solid #047097 !important;
    border-radius: 999px;
    background: transparent !important;
    color: #047097 !important;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: none;
    --bs-btn-color: #047097;
    --bs-btn-bg: transparent;
    --bs-btn-border-color: #047097;
    --bs-btn-hover-color: #035c7c;
    --bs-btn-hover-bg: rgba(4, 112, 151, 0.08);
    --bs-btn-hover-border-color: #035c7c;
    --bs-btn-active-color: #035c7c;
    --bs-btn-active-bg: rgba(4, 112, 151, 0.12);
    --bs-btn-active-border-color: #035c7c;
}

.landing-service-cta:hover,
.landing-service-cta:focus {
    background: rgba(4, 112, 151, 0.08) !important;
    border-color: #035c7c !important;
    color: #035c7c !important;
}

.landing-service-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
}

.landing-service-cta-icon i {
    font-size: 1rem;
    color: currentColor;
}

@media (min-width: 992px) {
    .landing-services-layout {
        grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.7fr);
        gap: 3.5rem;
    }

    .landing-services-header {
        max-width: 320px;
        margin: 0;
        text-align: left;
    }

    .landing-services-content .tab-pane .row {
        --bs-gutter-x: 2rem;
        --bs-gutter-y: 2rem;
    }

    .landing-team-shell {
        padding-inline: 1.5rem;
    }

    .landing-team-layout {
        grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.7fr);
        gap: 3.5rem;
    }

    .landing-team-header {
        max-width: 320px;
        margin: 0;
        text-align: left;
        min-height: 260px;
    }

    .landing-team-controls {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    .landing-service-meta {
        grid-template-columns: 1fr;
    }

    .landing-service-meta-item {
        margin-right: 0 !important;
    }
}

@media (min-width: 576px) {
    .landing-service-meta-item {
        margin-right: 0 !important;
    }
}


.landing-hero-section,
.landing-footer-section {
    background:
        radial-gradient(circle at top left, rgba(var(--landing-accent-soft-rgb), 0.26), transparent 34%),
        radial-gradient(circle at 85% 18%, rgba(var(--landing-accent-rgb), 0.55), transparent 28%),
        linear-gradient(135deg, var(--landing-bg-start) 0%, var(--landing-bg-mid) 52%, var(--landing-bg-end) 100%);
}

.landing-header-lang-menu .menu-link.active {
    background: rgba(var(--landing-accent-rgb), 0.12);
    color: var(--landing-accent);
}

.landing-hero-title-kicker,
.landing-team-eyebrow {
    color: var(--landing-accent-soft);
}

.landing-hero-address:hover,
.landing-hero-address:focus {
    color: var(--landing-accent-soft);
}

.landing-hero-address-label {
    color: rgba(var(--landing-accent-soft-rgb), 0.72);
}

.landing-hero-btn-primary {
    background: var(--landing-button-primary-bg);
    color: var(--landing-button-primary-text);
}

.landing-hero-btn-primary:hover,
.landing-hero-btn-primary:focus {
    background: var(--landing-button-primary-hover);
    color: var(--landing-button-primary-text);
}

.landing-hero-btn-ghost {
    border-color: rgba(var(--landing-accent-soft-rgb), 0.9) !important;
    --bs-btn-border-color: rgba(var(--landing-accent-soft-rgb), 0.9);
}

.landing-spa-btn {
    background: linear-gradient(135deg, var(--landing-button-primary-bg), var(--landing-surface-soft));
    color: var(--landing-accent) !important;
}

.landing-spa-btn:hover,
.landing-spa-btn:focus {
    color: var(--landing-accent) !important;
}

.landing-services-shell,
.landing-about-shell {
    background:
        radial-gradient(circle at top right, rgba(var(--landing-accent-rgb), 0.08), transparent 30%),
        linear-gradient(180deg, var(--landing-surface-start) 0%, var(--landing-surface-end) 100%);
}

.landing-services-eyebrow,
.landing-gallery-eyebrow,
.landing-about-eyebrow {
    background: rgba(var(--landing-accent-rgb), 0.08);
    color: var(--landing-accent);
}

.landing-services-title,
.landing-gallery-title,
.landing-about-title,
.landing-about-content h1,
.landing-about-content h2,
.landing-about-content h3,
.landing-about-content h4,
.landing-about-content h5,
.landing-about-content h6,
.landing-service-card-title,
.landing-service-description-title {
    color: var(--landing-text-dark);
}

.landing-services-intro,
.landing-services-copy,
.landing-about-content,
.landing-service-description-text {
    color: var(--landing-text-muted);
}

.landing-services-tabs {
    background: var(--landing-surface-soft);
}

.landing-services-tab {
    color: var(--landing-text-tab) !important;
}

.landing-services-tab:hover,
.landing-services-tab:focus {
    color: var(--landing-text-dark) !important;
}

.landing-services-tab.active {
    background: linear-gradient(135deg, var(--landing-bg-mid) 0%, var(--landing-accent) 100%) !important;
    box-shadow: 0 14px 28px rgba(var(--landing-accent-rgb), 0.22);
}

.landing-team-bg {
    background:
        radial-gradient(circle at top left, rgba(var(--landing-accent-soft-rgb), 0.18), transparent 30%),
        radial-gradient(circle at 82% 20%, rgba(var(--landing-accent-rgb), 0.45), transparent 28%),
        linear-gradient(135deg, var(--landing-bg-start) 0%, var(--landing-bg-mid) 54%, var(--landing-bg-end) 100%);
}

.landing-gallery-card::before {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.55), rgba(var(--landing-accent-rgb), 0.2));
}

.landing-service-card,
.landing-gallery-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(var(--landing-accent-rgb), 0.05));
}

.landing-service-cta {
    border: 2px solid var(--landing-accent) !important;
    color: var(--landing-accent) !important;
    --bs-btn-color: var(--landing-accent);
    --bs-btn-border-color: var(--landing-accent);
    --bs-btn-hover-bg: rgba(var(--landing-accent-rgb), 0.08);
    --bs-btn-active-bg: rgba(var(--landing-accent-rgb), 0.12);
}

.landing-service-cta:hover,
.landing-service-cta:focus {
    background: rgba(var(--landing-accent-rgb), 0.08) !important;
}

.landing-footer-link:hover,
.landing-footer-link:focus,
.landing-footer-menu .menu-link:hover,
.landing-footer-menu .menu-link:focus {
    color: #ffffff !important;
}

@media (max-width: 767.98px) {
    .landing-service-card-header {
        min-height: auto;
    }

    .landing-service-card-body {
        height: auto;
    }
}

@media (max-width: 991.98px) {
    .landing-services-shell {
        padding: 2rem 1.25rem;
        border-radius: 28px;
    }

    .landing-services-header {
        text-align: center;
    }

    .landing-services-copy {
        max-width: 56ch;
        margin-inline: auto;
    }

    .landing-services-tabs {
        padding: 0.65rem;
    }

    .landing-services-tabs-controls {
        justify-content: center;
        gap: 1rem;
    }

    .landing-team-shell {
        padding: 0 0.25rem 1rem;
    }

    .landing-team-header {
        text-align: center;
    }

    .landing-team-logo-ghost {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 767.98px) {
    .landing-services-tabs {
        gap: 0.5rem;
        border-radius: 24px;
    }

    .landing-services-tab {
        width: auto;
    }

    .landing-team-slide {
        padding-inline: 0.25rem;
    }

    .landing-team-card {
        padding: 1.5rem 1.1rem;
        border-radius: 24px;
    }

    .landing-team-avatar-wrap {
        width: 160px;
        height: 160px;
        border-radius: 22px;
    }

    .landing-team-avatar {
        border-radius: 18px;
    }

    .landing-team-controls {
        justify-content: center;
    }

    .landing-footer-stores {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (min-width: 992px) {
    .landing-hero-grid {
        grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.95fr);
        gap: 3rem;
    }
}

@media (max-width: 991.98px) {
    .landing-hero-wrap {
        padding-bottom: 4rem;
    }

    .landing-hero-grid {
        min-height: auto;
    }

    .landing-hero-panel {
        justify-self: stretch;
    }
}

@media (max-width: 767.98px) {
    .landing-header {
        --landing-header-height: 96px;
        height: auto !important;
        min-height: 96px;
        padding: 0.75rem 0;
    }

    [data-kt-sticky-landing-header=on] .landing-header {
        height: 92px !important;
    }

    .landing-hero-wrap {
        padding-top: 1rem;
        align-items: flex-start;
    }

    .landing-hero-title {
        font-size: clamp(2.4rem, 13vw, 3.8rem);
    }

    .landing-hero-description {
        font-size: 0.98rem;
    }

    .landing-hero-actions,
    .landing-spa-actions {
        flex-direction: column;
    }

    .landing-hero-btn,
    .landing-spa-btn {
        width: 100%;
    }

    .landing-hero-panel {
        padding: 1.25rem;
        border-radius: 24px;
    }
}


/* Landing hero enhancements */
.landing-spa-note {
    margin-top: 1.5rem;
    margin-bottom: 0.85rem;
    color: rgba(223, 247, 255, 0.8);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-spa-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.landing-spa-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    min-width: 0;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(179, 230, 255, 0.08));
    color: #ffffff !important;
    text-align: left;
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 42px rgba(3, 18, 33, 0.28);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.landing-spa-btn:hover,
.landing-spa-btn:focus {
    transform: translateY(-3px);
    color: #ffffff !important;
    border-color: rgba(214, 242, 255, 0.42);
    box-shadow: 0 24px 46px rgba(3, 18, 33, 0.34);
}

.landing-spa-btn-arrow i {
    font-size: 1.2rem;
    color: currentColor;
}

.landing-spa-btn-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
    gap: 0.2rem;
}

.landing-spa-btn-label {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    white-space: normal;
}

.landing-spa-btn-meta {
    color: rgba(223, 247, 255, 0.72);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.landing-spa-btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    flex: 0 0 2.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transition: transform 0.22s ease, background-color 0.22s ease;
}

.landing-spa-btn:hover .landing-spa-btn-arrow,
.landing-spa-btn:focus .landing-spa-btn-arrow {
    transform: translateX(2px);
    background: rgba(255, 255, 255, 0.18);
}

.landing-spa-btn-pi {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(121, 223, 255, 0.12));
}

.landing-spa-btn-ls {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 208, 159, 0.12));
}

.landing-app-store-banner {
    display: none;
    margin-top: 1.75rem;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
}

.landing-app-store-content {
    position: relative;
    overflow: hidden;
    padding: 1.3rem 1.25rem 1.2rem;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(110, 215, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 48px rgba(3, 18, 33, 0.2);
}

.landing-app-store-content::before {
    content: "";
    position: absolute;
    inset: auto -10% -48% auto;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.landing-app-store-kicker {
    display: inline-flex;
    margin-bottom: 0.55rem;
    color: rgba(222, 245, 255, 0.82);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.landing-app-store-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 800;
    line-height: 1.08;
}

.landing-app-store-copy {
    margin: 0.7rem 0 1rem;
    max-width: 34ch;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    line-height: 1.55;
}

.landing-app-store-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.55rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 28px rgba(4, 17, 31, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-app-store-link:hover,
.landing-app-store-link:focus {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(4, 17, 31, 0.22);
}

.landing-app-store-link img {
    display: block;
    width: 132px;
    height: 40px;
}

.landing-app-store-banner-google .landing-app-store-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(115, 223, 168, 0.14));
}

.landing-app-store-banner-apple .landing-app-store-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(163, 194, 255, 0.14));
}

@media (max-width: 767.98px) {
    .landing-header .container,
    .landing-hero-grid {
        --bs-gutter-x: 1rem;
    }

    .landing-header-cta {
        min-height: 44px;
        padding: 0.7rem 0.95rem;
        font-size: 0.84rem;
    }

    .landing-header-cta span {
        white-space: nowrap;
    }

    .landing-logo {
        width: 72px;
        height: 72px;
    }

    .landing-hero-grid {
        gap: 1.6rem;
    }

    .landing-hero-copy {
        max-width: none;
    }

    .landing-hero-title {
        font-size: clamp(2.15rem, 11vw, 3.2rem);
        line-height: 1;
    }

    .landing-hero-actions {
        flex-wrap: nowrap;
        gap: 0.85rem;
    }

    .landing-spa-actions {
        grid-template-columns: 1fr;
    }

    .landing-hero-btn {
        min-width: 0;
        flex: 1 1 0;
        padding-inline: 0.9rem;
        font-size: 0.9rem;
    }

    .landing-hero-btn span:last-child {
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
    }

    .landing-hero-address {
        margin-top: 1.35rem;
    }

    .landing-hero-address-value {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .landing-app-store-banner {
        margin-top: 1.5rem;
    }

    .landing-app-store-content {
        padding: 1.2rem 1rem 1.15rem;
        border-radius: 24px;
    }

    .landing-app-store-title {
        font-size: 1.15rem;
        line-height: 1.15;
    }

    .landing-app-store-copy {
        max-width: none;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .landing-hero-panel {
        padding: 1rem;
    }
}

