:root {
    --ms-primary       : #0F97D2;
    --ms-primary-dark  : #0c7fb5;
    --ms-dark          : #1F2937;
    --ms-muted         : #6B7280;
    --ms-border        : #E5E7EB;
    --ms-red           : #d11209;
    --ms-white         : #FFFFFF;
    --ms-font-heading  : 'Poppins', sans-serif;
    --ms-font-body     : 'Inter', sans-serif;
    --ms-font          : 'Inter', sans-serif;
    --ms-transition    : 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--ms-font-body);
    color: var(--ms-dark);
    background-color: var(--ms-white);
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
    width: 6px;
    height: 7px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: var(--ms-primary);
    border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
    background-color: var(--ms-primary-dark);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--ms-primary) transparent;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ms-font-heading);
    font-weight: 700;
    color: var(--ms-dark);
}

.section-title {
    display: inline-block;
    font-family: var(--ms-font-heading);
    font-weight: 700;
    background: linear-gradient(120deg, var(--ms-dark) 0%, var(--ms-primary) 60%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--ms-primary), #06b6d4);
    border-radius: 99px;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

.top-header__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    font-size: 14px;
    color: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.top-header__social-link:hover {
    transform: translateY(-2px);
    opacity: 0.88;
    color: #fff;
}

.top-header__social-link--instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.top-header__social-link--whatsapp {
    background-color: #25D366;
}

.top-header__social-link--facebook {
    background-color: #1877F2;
}

.top-header__social-link--youtube {
    background-color: #FF0000;
}

.main-nav {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1030;
    padding: 0 20px;
    transition: top 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.main-nav__pill {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
    transition:
        border-radius  0.4s cubic-bezier(0.22, 1, 0.36, 1),
        max-width      0.4s cubic-bezier(0.22, 1, 0.36, 1),
        background     0.4s ease,
        box-shadow     0.4s ease,
        border-color   0.4s ease;
}

.main-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px 8px 10px;
    gap: 16px;
}

.main-nav.is-scrolled {
    top: 0;
    padding: 0;
}
.main-nav.is-scrolled .main-nav__pill {
    max-width: 100%;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.96);
    border-color: var(--ms-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.09);
}

.main-nav__brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0;
}
.main-nav__logo {
    height: 72px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: height 0.3s ease;
}
.main-nav.is-scrolled .main-nav__logo {
    height: 46px;
}

.main-nav__collapse {
    flex-grow: 1 !important;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.main-nav__menu {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.main-nav__link {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 7px 14px !important;
    border-radius: 999px;
    white-space: nowrap;
    transition: color var(--ms-transition), background-color var(--ms-transition);
}
.main-nav__link:hover {
    color: var(--ms-white);
    background-color: rgba(255, 255, 255, 0.12);
}
.main-nav__link.active {
    color: var(--ms-white);
    background-color: var(--ms-primary);
    font-weight: 600;
}

.main-nav.is-scrolled .main-nav__link {
    color: var(--ms-dark);
}

.main-nav.is-scrolled .main-nav__link:hover {
    color: var(--ms-primary);
    background-color: rgba(15, 151, 210, 0.08);
}

.main-nav.is-scrolled .main-nav__link.active {
    color: var(--ms-primary);
    background-color: rgba(15, 151, 210, 0.10);
}

.main-nav__toggler {
    display: none;
    background: none;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    padding: 5px 9px;
    cursor: pointer;
    transition: border-color var(--ms-transition);
}

.main-nav__toggler i {
    font-size: 22px;
    color: var(--ms-white);
    display: block;
    line-height: 1;
}

.main-nav__toggler:focus {
    outline: none;
    border-color: var(--ms-primary);
    box-shadow: 0 0 0 3px rgba(15, 151, 210, 0.25);
}

.main-nav.is-scrolled .main-nav__toggler {
    border-color: var(--ms-border);
}
.main-nav.is-scrolled .main-nav__toggler i {
    color: var(--ms-dark);
}

@media (max-width: 991.98px) {
    .main-nav {
        top: 12px;
        padding: 0 12px;
    }
    .main-nav__toggler {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .main-nav__pill {
        border-radius: 20px;
    }
    .main-nav.is-scrolled .main-nav__pill {
        border-radius: 0;
    }
    .main-nav__collapse {
        display: none !important;
        position: absolute;
        top: calc(100% + 10px);
        left: 12px;
        right: 12px;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 16px;
        padding: 12px 16px 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        z-index: 100;
        flex-direction: column;
        align-items: stretch;
    }
    .main-nav.is-scrolled .main-nav__collapse {
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid var(--ms-border);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    }
    .main-nav__collapse.show {
        display: flex !important;
    }
    .main-nav__menu {
        flex-direction: column !important;
        align-items: stretch;
        gap: 4px;
        margin-bottom: 12px;
        width: 100%;
    }
    .main-nav__link {
        border-radius: 10px;
        padding: 10px 14px !important;
        width: 100%;
    }
    .ms-contact-btn {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }
}
@media (max-width: 575.98px) {
    .main-nav {
        top: 8px;
        padding: 0 8px;
    }
    .main-nav__logo {
        height: 36px;
    }
}

.logo-fade-up {
    opacity: 0;
    transform: translateY(18px);
    animation: logo-fade-up 2s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}
@keyframes logo-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

:root {
    --ms-red: #E5342A;
}

.ms-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    margin-left: 20px;
    font-family: var(--ms-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--ms-primary);
    background-color: #f4fbff;
    border: 1.5px solid var(--ms-primary);
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition:
        background-color var(--ms-transition),
        color var(--ms-transition),
        box-shadow var(--ms-transition);
}

.ms-contact-btn__icon {
    font-size: 15px;
    flex-shrink: 0;
}

.ms-contact-btn__text-wrap {
    position: relative;
    height: 1.2em;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ms-contact-btn__text-default,
.ms-contact-btn__text-hover {
    display: block;
    line-height: 1.2em;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                opacity  0.3s ease;
}

.ms-contact-btn__text-default {
    transform: translateY(0);
    opacity: 1;
}

.ms-contact-btn__text-hover {
    transform: translateY(0);
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
}

.ms-contact-btn:hover {
    background-color: var(--ms-primary);
    color: #ffffff;
    border-color: var(--ms-primary-dark);
    box-shadow: 0 4px 14px rgba(42, 160, 229, 0.3);
}

.ms-contact-btn:hover .ms-contact-btn__text-default {
    transform: translateY(-100%);
    opacity: 0;
}

.ms-contact-btn:hover .ms-contact-btn__text-hover {
    transform: translateY(-100%);
    opacity: 1;
}

.ms-contact-btn:focus-visible {
    outline: 3px solid rgba(229, 52, 42, 0.4);
    outline-offset: 2px;
}

@media (max-width: 991.98px) {
    .ms-contact-btn {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: 10px;
    }
}

.hero-section {
    background: none;
    overflow: hidden;
    position: sticky;
    top: 0;
    height: 100vh;
    padding-top: 75px;
}

.hero-scroll-wrapper {
    position: relative;
    height: 300vh;
}

.hero-bg-layer {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
    z-index: -999;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0));
    z-index: 0;
    pointer-events: none;
}

.hero-img-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-img-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        opacity   0.8s ease,
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    will-change: transform, opacity;
    z-index: 1;
}

.hero-img-slide[data-index="0"] {
    transform: translateY(-100%);
}

.hero-img-slide[data-index="1"] {
    transform: translateY(100%);
}

.hero-img-slide[data-index="2"] {
    transform: translateY(100%);
}

.hero-img-slide[data-index="3"] {
    transform: translateX(100%);
}

.hero-img-slide[data-index="4"] {
    transform: translateY(-100%);
}

.hero-section.state-0 .hero-img-slide[data-index="0"],
.hero-section.state-0 .hero-img-slide[data-index="1"] {
    opacity: 1;
    transform: translate(0, 0);
}

.hero-section.state-1 .hero-img-slide[data-index="0"],
.hero-section.state-1 .hero-img-slide[data-index="1"] {
    opacity: 0;
    transform: translate(0, 0); /* Keep centered while fading out */
}

.hero-section.state-1 .hero-img-slide[data-index="2"],
.hero-section.state-1 .hero-img-slide[data-index="3"],
.hero-section.state-1 .hero-img-slide[data-index="4"] {
    opacity: 1;
    transform: translate(0, 0);
}

.hero-section .container-fluid {
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-section__row {
    min-height: calc(100vh - 75px);
    padding: 60px 0;
}

.hero-section__content {
    padding-right: 40px;
}

.hero-section__content .hero-section__badge,
.hero-section__content .hero-section__title,
.hero-section__content .hero-section__subtitle,
.hero-section__content .hero-section__highlights li,
.hero-section__content .hero-section__cta {
    opacity: 0;
    will-change: transform, opacity;
}

.hero-section__content .hero-section__badge {
    animation: hero-badge-reveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-section__content .hero-section__title {
    animation: hero-title-reveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.hero-section__content .hero-section__subtitle {
    animation: hero-subtitle-reveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

.hero-section__content .hero-section__highlights li:nth-child(1) {
    animation: hero-highlight-reveal 1.0s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.hero-section__content .hero-section__highlights li:nth-child(2) {
    animation: hero-highlight-reveal 1.0s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.hero-section__content .hero-section__highlights li:nth-child(3) {
    animation: hero-highlight-reveal 1.0s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.hero-section__content .hero-section__cta {
    animation: hero-cta-reveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.05s forwards;
}

.hero-section__content .hero-section__title-highlight::after {
    width: 0;
    animation: hero-underline-expand 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

@keyframes hero-badge-reveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-title-reveal {
    from {
        opacity: 0;
        transform: translateY(40px) skewY(2deg) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) skewY(0) scale(1);
    }
}

@keyframes hero-subtitle-reveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-highlight-reveal {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes hero-cta-reveal {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-underline-expand {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.hero-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-family: var(--ms-font-body);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 5px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.40);
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hero-section__badge i {
    font-size: 13px;
    color: #ffffff;
}

.hero-section__badge--light {
    background-color: rgba(15, 151, 210, 0.10);
    color: var(--ms-primary);
    border-color: rgba(15, 151, 210, 0.25);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hero-section__badge--light i {
    color: var(--ms-primary);
}

.hero-section__title {
    font-family: var(--ms-font-heading);
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    margin-bottom: 20px;
}

.hero-section__title-highlight {
    color: var(--ms-primary);
    position: relative;
}

.hero-section__title-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--ms-primary);
    border-radius: 2px;
    opacity: 0.6;
}

.hero-section__subtitle {
    font-family: var(--ms-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.18);
    margin-bottom: 28px;
    max-width: 520px;
}

.hero-section__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-bottom: 36px;
    padding: 0;
    list-style: none;
}

.hero-section__highlights li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--ms-font-body);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-section__highlights li i {
    font-size: 15px;
    color: var(--ms-primary);
}

.hero-section__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.hero-section__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    font-family: var(--ms-font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all var(--ms-transition);
    border: 2px solid transparent;
}

.hero-section__btn--primary {
    background: linear-gradient(135deg, var(--ms-primary) 0%, #06b6d4 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 6px 20px rgba(15, 151, 210, 0.30);
}

.hero-section__btn--primary:hover {
    background-color: var(--ms-primary-dark);
    border-color: var(--ms-primary-dark);
    box-shadow: 0 8px 24px rgba(15, 151, 210, 0.40);
    transform: translateY(-2px);
    color: #ffffff;
}

.hero-section__btn--outline {
    background-color: transparent;
    color: var(--ms-border);
    border-color: var(--ms-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hero-section__btn--outline:hover {
    background-color: rgba(15, 151, 210, 0.06);
    border-color: var(--ms-primary);
    color: var(--ms-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(15, 151, 210, 0.15);
}

.hero-section__btn-icon {
    flex-shrink: 0;
}

.hero-section__btn-wrap {
    position: relative;
    height: 1.2em;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: max-content;
}

.hero-section__btn-default,
.hero-section__btn-hover {
    display: block;
    line-height: 1.2em;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                opacity  0.3s ease;
}

.hero-section__btn-default {
    transform: translateY(0);
    opacity: 1;
}

.hero-section__btn-hover {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    transform: translateY(0);
    pointer-events: none;
}

.hero-section__btn--primary:hover {
    transform: translateX(4px);
}

.hero-section__btn--primary:hover .hero-section__btn-default {
    transform: translateY(-100%);
    opacity: 0;
}

.hero-section__btn--primary:hover .hero-section__btn-hover {
    transform: translateY(-100%);
    opacity: 1;
}

.hero-section__image-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section__image-wrap {
    position: relative;
    width: 100%;
    max-width: 580px;
}

.hero-section__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

@media (max-width: 991.98px) {
    .hero-scroll-wrapper {
        height: auto;
    }
    .hero-section {
        position: relative;
        top: auto;
        height: auto;
        min-height: 100svh;
        min-height: 100dvh;
        display: flex;
        align-items: center;
        padding-top: 80px;
        padding-bottom: 36px;
    }
    .hero-bg-overlay {
        background: radial-gradient(circle at 50% 35%, rgba(8, 20, 44, 0.78) 0%, rgba(5, 12, 28, 0.94) 100%);
    }
    .hero-img-layer {
        display: none !important;
    }
    .hero-section__row {
        min-height: auto;
        padding: 24px 0 20px;
        justify-content: center;
        width: 100%;
    }
    .hero-section__content {
        padding-right: 0;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    .hero-section__badge {
        font-size: 12px;
        padding: 5px 14px;
        margin-bottom: 16px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    .hero-section__title {
        font-size: clamp(24px, 5.2vw, 36px);
        line-height: 1.25;
        margin-bottom: 16px;
    }
    .hero-section__subtitle {
        font-size: 14.5px;
        line-height: 1.65;
        margin-bottom: 22px;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        color: rgba(255, 255, 255, 0.92);
    }
    .hero-section__highlights {
        justify-content: center;
        gap: 8px 12px;
        margin-bottom: 26px;
    }
    .hero-section__highlights li {
        font-size: 12px;
        padding: 6px 14px;
        background: rgba(255, 255, 255, 0.09);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 50px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    .hero-section__highlights li i {
        font-size: 13px;
    }
    .hero-section__cta {
        justify-content: center;
        gap: 12px;
    }
}

@media (max-width: 767.98px) {
    .hero-section__content .hero-section__badge {
        animation-duration: 0.6s;
        animation-delay: 0.1s;
    }
    .hero-section__content .hero-section__title {
        animation-duration: 0.7s;
        animation-delay: 0.15s;
    }
    .hero-section__content .hero-section__subtitle {
        animation-duration: 0.6s;
        animation-delay: 0.2s;
    }
    .hero-section__content .hero-section__highlights li:nth-child(1) {
        animation-duration: 0.5s;
        animation-delay: 0.25s;
    }
    .hero-section__content .hero-section__highlights li:nth-child(2) {
        animation-duration: 0.5s;
        animation-delay: 0.3s;
    }
    .hero-section__content .hero-section__highlights li:nth-child(3) {
        animation-duration: 0.5s;
        animation-delay: 0.35s;
    }
    .hero-section__content .hero-section__cta {
        animation-duration: 0.6s;
        animation-delay: 0.4s;
    }

    .hero-section {
        padding-top: 70px;
        padding-bottom: 24px;
    }
    .hero-section__row {
        padding: 8px 0 12px;
    }
    .hero-section__badge {
        font-size: 11px;
        padding: 4px 12px;
        margin-bottom: 10px;
        gap: 5px;
    }
    .hero-section__title {
        font-size: clamp(21px, 5.5vw, 26px);
        line-height: 1.2;
        margin-bottom: 10px;
    }
    .hero-section__subtitle {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 14px;
        max-width: 420px;
        padding: 0 4px;
    }
    .hero-section__highlights {
        gap: 6px 8px;
        margin-bottom: 18px;
    }
    .hero-section__highlights li {
        font-size: 11px;
        padding: 4px 9px;
        gap: 5px;
    }
    .hero-section__highlights li i {
        font-size: 12px;
    }
    .hero-section__cta {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }
    .hero-section__btn {
        flex: 1 1 0;
        max-width: 180px;
        padding: 10px 10px;
        font-size: 12.5px;
        border-radius: 8px;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
    }
    .hero-section__btn i {
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .hero-section__title {
        font-size: 20px;
    }
    .hero-section__subtitle {
        font-size: 12px;
        line-height: 1.45;
        margin-bottom: 12px;
    }
    .hero-section__cta {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }
    .hero-section__btn {
        max-width: 100%;
        width: 100%;
        padding: 10px 16px;
        font-size: 13px;
    }
    .hero-section__highlights li {
        font-size: 10.5px;
        padding: 3px 8px;
    }
}

.features-section {
    padding: 80px 0 100px;
    background-color: #f8fafc;
}

.features-section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.features-section__header-left {
    flex: 1;
    min-width: 280px;
}

.features-section__header-right {
    flex-shrink: 0;
}

.features-section__title {
    font-family: var(--ms-font-heading);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--ms-dark);
    margin: 12px 0 10px;
}

.features-section__subtitle {
    font-family: var(--ms-font-body);
    font-size: 15px;
    color: var(--ms-muted);
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 480px;
}

.feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid var(--ms-border);
    border-radius: 20px;
    overflow: hidden;
    cursor: default;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(15, 151, 210, 0.08);
    border-color: rgba(15, 151, 210, 0.25);
}

.feature-card__img-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #f1f5f9;
}

.feature-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid rgba(15, 151, 210, 0.1);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-card__img {
    transform: scale(1.08) rotate(1deg);
}

.feature-card__inner {
    position: relative;
    padding: 44px 24px 28px;
    background-color: #ffffff;
    z-index: 2;
}

.feature-card__accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--ms-primary) 0%, #06b6d4 100%);
    border-radius: 4px 4px 0 0;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3;
}

.feature-card:hover .feature-card__accent {
    transform: scaleX(1);
}

.feature-card__icon-wrap {
    position: absolute;
    top: -30px;
    left: 24px;
    z-index: 3;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background-color: #ffffff;
    border: 3px solid #ffffff;
    box-shadow: 0 8px 24px rgba(15, 151, 210, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-card__icon-wrap {
    background: linear-gradient(135deg, var(--ms-primary) 0%, #06b6d4 100%);
    color: #ffffff;
    transform: translateY(-4px) scale(1.08) rotate(-6deg);
    box-shadow: 0 12px 28px rgba(15, 151, 210, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-card__icon {
    font-size: 24px;
    color: var(--ms-primary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-card__icon {
    color: #ffffff;
}

.feature-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-card__title {
    font-family: var(--ms-font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--ms-dark);
    margin: 0;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-card__title {
    color: var(--ms-primary-dark);
}

.feature-card__desc {
    font-family: var(--ms-font-body);
    font-size: 14.5px;
    font-weight: 400;
    color: var(--ms-muted);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 767.98px) {
    .features-section {
        padding: 40px 0;
    }

    .feature-card {
        padding: 0;
    }

    .feature-card__inner {
        padding: 32px 20px 20px;
    }

    .feature-card__icon-wrap {
        width: 48px;
        height: 48px;
        top: -24px;
        left: 20px;
        border-radius: 12px;
        border-width: 2.5px;
    }

    .feature-card__icon {
        font-size: 20px;
    }

    .feature-card__title {
        font-size: 16px;
    }
}

.feature-card-col {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity   0.6s ease,
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card-col.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card-col:nth-child(1) { transition-delay: 0s;     }
.feature-card-col:nth-child(2) { transition-delay: 0.12s;  }
.feature-card-col:nth-child(3) { transition-delay: 0.24s;  }
.feature-card-col:nth-child(4) { transition-delay: 0.36s;  }

.brands-section {
    padding: 72px 0 70px;
    background: #000000 url('../img/square-grid.png') center center / cover no-repeat;
    overflow: hidden;
    position: relative;
}

.brands-section .container-fluid,
.brands-section .brands-marquee {
    position: relative;
    z-index: 1;
}

.brands-section__header {
    margin-bottom: 44px;
}

.brands-section__title {
    font-family: var(--ms-font-heading);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
}

.brands-section .section-title {
    background: linear-gradient(120deg, #ffffff 0%, var(--ms-primary) 60%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brands-section__subtitle {
    font-family: var(--ms-font-body);
    font-size: 15.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto;
}

.brands-marquee {
    display: block;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

.brands-marquee__track {
    display: flex;
    padding: 90px 0;
    align-items: center;
    gap: 20px;
    width: max-content;
    animation: marquee-scroll 28s linear infinite;
}

.brands-marquee:hover .brands-marquee__track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.brands-marquee__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: #dfdfdf25;
    border: 1px solid var(--ms-border);
    padding: 12px;
    transition: border-color 0.3s ease,
    box-shadow   0.3s ease,
    background-color 0.3s ease;
}

.brands-marquee__item:hover {
    border-color: rgba(210, 15, 15, 0.308);
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(210, 15, 15, 0.219);
}

.brands-marquee__logo {
    max-width: 100%;
    max-height: 140px;
    width: auto;
    height: auto;
    border-radius: 50%;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
}

.brands-marquee__item:hover .brands-marquee__logo {
    transform: scale(1.09)
}

@media (max-width: 767.98px) {
    .brands-section {
        padding: 44px 0 40px;
    }

    .brands-section__subtitle {
        font-size: 14.5px;
    }

    .brands-marquee__track {
        padding: 45px 0;
    }

    .brands-marquee__item {
        width: 72px;
        height: 72px;
        padding: 12px;
        border-radius: 50%;
    }

    .brands-marquee__logo {
        max-height: 36px;
    }
}

.products-section {
    padding: 64px 0 72px;
    background-color: #f8fafc;
}

.products-section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.products-section__header-left {
    max-width: 520px;
}

.products-section__title {
    font-family: var(--ms-font-heading);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--ms-dark);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.products-section__title-decor {
    position: absolute;
    top: -24px;
    right: -50px;
    width: 45px;
    height: auto;
    pointer-events: none;
    animation: decor-bounce 1.5s ease-in-out infinite;
    transform-origin: bottom left;
}

@keyframes decor-bounce {
    0%, 100% {
        transform: translateY(0) scale(1) rotate(0deg);
    }
    50% {
        transform: translateY(-6px) scale(1.12) rotate(8deg);
    }
}


.products-section__subtitle {
    font-family: var(--ms-font-body);
    font-size: 15px;
    color: var(--ms-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 260px 220px 220px;
    gap: 16px;
}

.bento-item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item--tall {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-item--wide {
    grid-column: span 2;
}

.bento-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-color: #e2e8f0;
    cursor: pointer;
}

.bento-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.bento-item:hover .bento-item__img {
    transform: scale(1.06);
}

.bento-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.52) 0%,
        rgba(0, 0, 0, 0.18) 40%,
        transparent 100%
    );
    transition: opacity 0.3s ease;
}

.bento-item:hover::after {
    opacity: 0.85;
}

.bento-item__label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    font-family: var(--ms-font-heading);
    font-size: 14.5px;
    font-weight: 600;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 18px;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    gap: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-item__label--right {
    left: auto;
    right: 20px;
}

.bento-item__label--top-left {
    bottom: auto;
    top: 20px;
    left: 20px;
}

.bento-item__label--top-right {
    bottom: auto;
    top: 20px;
    left: auto;
    right: 20px;
}

.bento-item__arrow {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    width: 0;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-item:hover .bento-item__label {
    background: linear-gradient(135deg, var(--ms-primary) 0%, #06b6d4 100%);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(15, 151, 210, 0.4);
    padding-right: 14px;
}

.bento-item:hover .bento-item__arrow {
    width: 14px;
    opacity: 1;
    transform: translateX(0);
    margin-left: 4px;
}

@media (max-width: 991.98px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bento-item--large {
        grid-column: span 2;
        grid-row: span 1;
        height: 240px;
    }

    .bento-item--tall {
        grid-column: span 1;
        grid-row: span 1;
        height: 200px;
    }

    .bento-item--wide {
        grid-column: span 2;
        height: 200px;
    }

    .bento-item {
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .products-section {
        padding: 44px 0 52px;
    }

    .products-section__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .bento-item--large {
        height: 200px;
    }

    .bento-item,
    .bento-item--tall,
    .bento-item--wide {
        height: 160px;
    }

    .bento-item__label {
        font-size: 13px;
        padding: 4px 11px;
        bottom: 12px;
        left: 12px;
    }

    .bento-item__label--right {
        left: auto;
        right: 12px;
    }

    .bento-item__label--top-left {
        bottom: auto;
        top: 12px;
        left: 12px;
    }

    .bento-item__label--top-right {
        bottom: auto;
        top: 12px;
        left: auto;
        right: 12px;
    }
}

.about-section {
    padding: 80px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.about-section__img-col {
    position: relative;
}

.about-section__img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(15, 151, 210, 0.12);
}

.about-section__img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transform: scale(1.12);
    transition: transform 0.1s linear;
    transform-origin: center center;
}

.about-section__img-wrap:not(.is-visible) .about-section__img {
    transform: scale(1.12);
}

.about-section__float-badge {
    position: absolute;
    top: 20px;
    left: -16px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border-radius: 14px;
    padding: 12px 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    animation: badge-float 3s ease-in-out infinite;
    border: 1px solid var(--ms-border);
    z-index: 2;
}

.about-section__float-badge-icon {
    font-size: 28px;
    color: var(--ms-primary);
    flex-shrink: 0;
}

.about-section__float-badge-num {
    display: block;
    font-family: var(--ms-font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--ms-dark);
    line-height: 1;
}

.about-section__float-badge-label {
    display: block;
    font-family: var(--ms-font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--ms-muted);
    margin-top: 2px;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0);    }
    50%       { transform: translateY(-8px); }
}

.about-section__content {
    padding-left: 16px;
}

.about-section__heading {
    font-family: var(--ms-font-heading);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    color: var(--ms-dark);
    line-height: 1.25;
    margin: 14px 0 18px;
}

.about-section__desc {
    font-family: var(--ms-font-body);
    font-size: 15.5px;
    color: var(--ms-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.about-section__features {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.about-section__feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ms-font-body);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ms-dark);
    background-color: #f8fafc;
    border: 1px solid var(--ms-border);
    border-radius: 10px;
    padding: 12px 14px;
    transition: border-color 0.3s ease,
                box-shadow   0.3s ease,
                transform    0.3s ease;
}

.about-section__feature-item:hover {
    border-color: rgba(15, 151, 210, 0.4);
    box-shadow: 0 4px 16px rgba(15, 151, 210, 0.10);
    transform: translateY(-3px);
}

.about-section__feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: rgba(15, 151, 210, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.about-section__feature-icon i {
    font-size: 15px;
    color: var(--ms-primary);
}

.about-section__feature-item:hover .about-section__feature-icon {
    background-color: var(--ms-primary);
}

.about-section__feature-item:hover .about-section__feature-icon i {
    color: #ffffff;
}

.about-section__badge-anim {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-section__badge-anim.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-section__badge-anim:nth-child(1) { transition-delay: 0.05s; }
.about-section__badge-anim:nth-child(2) { transition-delay: 0.15s; }
.about-section__badge-anim:nth-child(3) { transition-delay: 0.25s; }
.about-section__badge-anim:nth-child(4) { transition-delay: 0.35s; }
.about-section__badge-anim:nth-child(5) { transition-delay: 0.45s; }

@media (max-width: 991.98px) {
    .about-section {
        padding: 56px 0;
    }

    .about-section__float-badge {
        left: 16px;
        top: 16px;
    }

    .about-section__content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .about-section__features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .about-section__features {
        grid-template-columns: 1fr;
    }
}

.stats-section {
    position: relative;
    padding: 72px 0;
    background: url('../img/dark-waves-bg.png') center center / cover no-repeat;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 24, 0.55);
    pointer-events: none;
    z-index: 0;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stats-glass {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 0;
    background: rgba(63, 63, 63, 0.089);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 120px;
    padding: 48px 32px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.stats-divider {
    width: 1px;
    height: 64px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255, 255, 255, 0.20),
        transparent
    );
    flex-shrink: 0;
}

.stats-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
}

.stats-item__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(15, 151, 210, 0.18);
    border: 1px solid rgba(15, 151, 210, 0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.stats-item__icon-wrap i {
    font-size: 20px;
    color: var(--ms-primary);
}

.stats-item:hover .stats-item__icon-wrap {
    background: rgba(15, 151, 210, 0.35);
    transform: translateY(-4px);
}

.stats-item__num,
.stats-item__suffix {
    font-family: var(--ms-font-heading);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    display: inline;
}

.stats-item__suffix {
    font-size: clamp(22px, 2.5vw, 36px);
    color: var(--ms-primary);
    margin-left: 2px;
}

.stats-item__label {
    font-family: var(--ms-font-body);
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.60);
    margin: 8px 0 0;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .stats-glass {
        flex-wrap: wrap;
        gap: 32px;
        padding: 40px 24px;
    }

    .stats-divider {
        display: none;
    }

    .stats-item {
        flex: 0 0 calc(50% - 16px);
        padding: 0;
    }
}

@media (max-width: 575.98px) {
    .stats-section {
        padding: 52px 0;
    }

    .stats-glass {
        padding: 32px 20px;
        gap: 28px;
    }

    .stats-item {
        flex: 0 0 100%;
    }
}

.anim-fade-left {
    opacity: 0;
    transform: translateX(-48px);
    transition:
        opacity   0.7s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--anim-delay, 0s);
}

.anim-fade-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.anim-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity   0.65s ease,
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--anim-delay, 0s);
}

.anim-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .hero-section__content,
    .anim-fade-left,
    .anim-fade-up {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none;
    }
}

.store-section {
    padding: 80px 0;
    background-color: #f8fafc;
    overflow: hidden;
}

.store-section__content {
    padding-right: 48px;
}

.store-section__title {
    font-family: var(--ms-font-heading);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    color: var(--ms-dark);
    margin: 14px 0 16px;
    position: relative;
    display: inline-block;
}

.store-section__title-decor {
    position: absolute;
    top: -24px;
    right: -50px;
    width: 45px;
    height: auto;
    pointer-events: none;
    animation: decor-bounce 1.5s ease-in-out infinite;
    transform-origin: bottom left;
}

.store-section__desc {
    font-family: var(--ms-font-body);
    font-size: 15px;
    color: var(--ms-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.store-section__features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.store-section__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ms-font-body);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ms-dark);
}

.store-section__features li i {
    font-size: 16px;
    color: var(--ms-primary);
    flex-shrink: 0;
}

.store-section__carousel-col {
    padding-left: 24px;
}

.store-carousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    position: relative;
}

.store-carousel__inner {
    border-radius: 20px;
}

.store-carousel__img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.store-carousel__ctrl {
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.92) !important;
    border-radius: 50% !important;
    border: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.store-carousel__ctrl--prev { left: 16px;  }
.store-carousel__ctrl--next { right: 16px; }

.store-carousel__ctrl i {
    font-size: 18px;
    color: var(--ms-dark);
    line-height: 1;
}

.store-carousel:hover .store-carousel__ctrl {
    opacity: 1;
}

.store-carousel__ctrl--prev:hover {
    transform: translateY(-50%) translateX(-3px);
    background: var(--ms-primary) !important;
}

.store-carousel__ctrl--prev:hover i,
.store-carousel__ctrl--next:hover i {
    color: #ffffff;
}

.store-carousel__ctrl--next:hover {
    transform: translateY(-50%) translateX(3px);
    background: var(--ms-primary) !important;
}

.store-carousel__dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 5;
}

.store-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}

.store-carousel__dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--ms-primary);
}

@media (max-width: 991.98px) {
    .store-section {
        padding: 56px 0;
    }

    .store-section__content {
        padding-right: 0;
        margin-bottom: 36px;
    }

    .store-section__carousel-col {
        padding-left: 0;
    }

    .store-carousel__img {
        height: 340px;
    }
}

@media (max-width: 767.98px) {
    .store-carousel__img {
        height: 240px;
    }

    .store-carousel__ctrl {
        width: 36px;
        height: 36px;
        opacity: 1;
    }

    .store-carousel__ctrl i {
        font-size: 15px;
    }
}

.services-section {
    padding: 72px 0 80px;
    background-color: #ffffff;
    background: url('../img/bg-store.png') center bottom / cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(#ffffffd7 25%,#ffffff42);
    pointer-events: none;
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px 24px 24px;
    background-color: #f8fafc;
    border: 1px solid var(--ms-border);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition:
        transform    0.32s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow   0.32s ease,
        border-color 0.32s ease,
        background   0.32s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 151, 210, 0.12);
    border-color: rgba(15, 151, 210, 0.30);
    background-color: #ffffff;
}

.service-card__icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background-color: rgba(15, 151, 210, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-card__icon-wrap i {
    font-size: 22px;
    color: var(--ms-primary);
    transition: color 0.3s ease;
}

.service-card:hover .service-card__icon-wrap {
    background-color: var(--ms-primary);
    transform: rotate(-6deg) scale(1.08);
}

.service-card:hover .service-card__icon-wrap i {
    color: #ffffff;
}

.service-card__title {
    font-family: var(--ms-font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--ms-dark);
    margin: 0;
    transition: color 0.3s ease;
}

.service-card:hover .service-card__title {
    color: var(--ms-primary);
}

.service-card__desc {
    font-family: var(--ms-font-body);
    font-size: 14px;
    color: var(--ms-muted);
    line-height: 1.7;
    margin: 0;
}

.service-card__accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ms-primary), #06b6d4);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-card__accent {
    transform: scaleX(1);
}

@media (max-width: 767.98px) {
    .services-section {
        padding: 52px 0 60px;
    }
}

.cta-section {
    padding: 56px 0 72px;
    background-color: #ffffff;
}

.cta-section__card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 52px 56px;
    border-radius: 24px;
    background: linear-gradient(135deg, #0F97D2 0%, #1a6fbd 40%, #7c3aed 100%);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 151, 210, 0.25);
}

.cta-section__blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.18;
    filter: blur(40px);
}

.cta-section__blob--1 {
    width: 280px;
    height: 280px;
    background: #ffffff;
    top: -80px;
    left: -60px;
}

.cta-section__blob--2 {
    width: 220px;
    height: 220px;
    background: #a78bfa;
    bottom: -80px;
    right: 120px;
}

.cta-section__text {
    position: relative;
    z-index: 1;
    flex: 1;
}

.cta-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--ms-font-body);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.3px;
    margin-bottom: 14px;
}

.cta-section__eyebrow i {
    font-size: 14px;
    color: #fbbf24;
}

.cta-section__heading {
    font-family: var(--ms-font-heading);
    font-size: clamp(22px, 2.8vw, 36px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 12px;
}

.cta-section__sub {
    font-family: var(--ms-font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.80);
    margin: 0;
}

.cta-section__sub strong {
    color: #ffffff;
    font-weight: 700;
}

.cta-section__action {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cta-section__btn {
    background: #ffffff !important;
    color: var(--ms-primary) !important;
    border: none !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18) !important;
    white-space: nowrap;
}

.cta-section__btn:hover {
    background: #f0f9ff !important;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22) !important;
    color: var(--ms-primary-dark) !important;
}

.cta-section__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ms-font-body);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.80);
    text-decoration: none;
    transition: color 0.25s ease;
}

.cta-section__link:hover {
    color: #ffffff;
}

.cta-section__link i {
    font-size: 14px;
}

@media (max-width: 991.98px) {
    .cta-section__card {
        flex-direction: column;
        text-align: center;
        padding: 44px 32px;
        gap: 28px;
    }

    .cta-section__eyebrow {
        justify-content: center;
    }

    .cta-section__action {
        width: 100%;
    }

    .cta-section__btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .cta-section {
        padding: 40px 0 56px;
    }

    .cta-section__card {
        padding: 36px 24px;
        border-radius: 18px;
    }
}

.testimonials-section {
    padding: 90px 0;
    background-color: #f8fafc;
    overflow: hidden;
    position: relative;
}

.testimonials-section__title {
    font-family: var(--ms-font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin: 14px 0 16px;
    line-height: 1.25;
}

.testimonials-section__subtitle {
    font-family: var(--ms-font-body);
    font-size: 16px;
    color: var(--ms-muted);
    line-height: 1.8;
}

.testimonials-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.t-bento-google-card {
    grid-column: span 1;
    grid-row: span 2;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border: 1px solid var(--ms-border);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform var(--ms-transition), box-shadow var(--ms-transition);
}

.t-bento-google-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.t-bento-google-card__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 20px;
}

.t-bento-google-card__g-logo {
    height: 38px;
    width: auto;
}

.t-bento-google-card__title {
    font-family: var(--ms-font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--ms-dark);
    margin: 0;
    text-align: left;
}

.t-bento-google-card__source {
    font-size: 12px;
    color: var(--ms-muted);
    margin: 0;
    text-align: left;
}

.t-bento-google-card__gauge-wrap {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 10px 0;
}

.t-bento-google-card__gauge {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.t-bento-google-card__gauge-bg {
    fill: none;
    stroke: #e2e8f0;
}

.t-bento-google-card__gauge-progress {
    fill: none;
    stroke: var(--ms-primary);
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease-out;
}

.t-bento-google-card__gauge-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.t-bento-google-card__score {
    font-family: var(--ms-font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--ms-dark);
    line-height: 1;
}

.t-bento-google-card__max {
    font-size: 14px;
    color: var(--ms-muted);
    font-weight: 500;
}

.t-bento-google-card__stars {
    display: flex;
    gap: 4px;
    margin: 15px 0 20px;
}

.t-bento-google-card__stars i {
    font-size: 20px;
    color: #fbbf24;
}

.t-bento-google-card__stats {
    display: flex;
    width: 100%;
    border-top: 1px solid var(--ms-border);
    border-bottom: 1px solid var(--ms-border);
    padding: 16px 0;
    margin-bottom: 18px;
}

.t-bento-google-card__stat-item {
    flex: 1;
}

.t-bento-google-card__stat-item:first-child {
    border-right: 1px solid var(--ms-border);
}

.t-bento-google-card__stat-num {
    display: block;
    font-family: var(--ms-font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--ms-dark);
}

.t-bento-google-card__stat-lbl {
    font-size: 11px;
    color: var(--ms-muted);
}

.t-bento-google-card__trust {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #16a34a;
}

.t-bento-card {
    background: #ffffff;
    border: 1px solid var(--ms-border);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.t-bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ms-primary) 0%, #06b6d4 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.t-bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 151, 210, 0.08);
    border-color: rgba(15, 151, 210, 0.25);
}

.t-bento-card:hover::before {
    opacity: 1;
}

.t-bento-card--wide {
    grid-column: span 2;
}

.t-bento-card__quote-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 64px;
    color: rgba(15, 152, 210, 0.13);
    line-height: 1;
    pointer-events: none;
}

.t-bento-card__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.t-bento-card__stars i {
    font-size: 14px;
    color: #fbbf24;
}

.t-bento-card__comment {
    font-family: var(--ms-font-body);
    font-size: 14.5px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.t-bento-card__user {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
    margin-top: auto;
}

.t-bento-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ms-font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.t-bento-card__avatar--blue { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.t-bento-card__avatar--pink { background: linear-gradient(135deg, #ec4899, #db2777); }
.t-bento-card__avatar--teal { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.t-bento-card__avatar--orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.t-bento-card__avatar--green { background: linear-gradient(135deg, #10b981, #059669); }
.t-bento-card__avatar--indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }

.t-bento-card__name {
    font-family: var(--ms-font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--ms-dark);
    margin: 0 0 2px;
}

.t-bento-card__verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #0284c7;
    background-color: rgba(2, 132, 199, 0.08);
    padding: 2px 8px;
    border-radius: 12px;
}

.t-bento-card__verified i {
    font-size: 10px;
}

@media (max-width: 1024px) {
    .testimonials-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .t-bento-google-card {
        grid-column: span 1;
        grid-row: span 2;
    }
    
    .t-bento-card--wide {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-bento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 35px;
    }
    
    .t-bento-google-card {
        grid-column: span 1;
        grid-row: span 1;
        padding: 24px;
    }
    
    .t-bento-card {
        padding: 24px;
    }
    
    .t-bento-card--wide {
        grid-column: span 1;
    }
}

.site-footer {
    background: linear-gradient(135deg, #ffffff 0%, #ecf7ff 50%, #c6ebff 100%);
    padding: 64px 0 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--ms-primary) 50%, transparent 100%);
}

.site-footer__top {
    padding-bottom: 48px;
}

.site-footer__logo-link {
    display: inline-block;
    margin-bottom: 16px;
}

.site-footer__logo {
    height: 200px;
    width: auto;
    object-fit: contain;
}

.site-footer__tagline {
    font-family: var(--ms-font-body);
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
}

.site-footer__heading {
    font-family: var(--ms-font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--ms-dark);
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.site-footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--ms-primary);
    border-radius: 2px;
}

.site-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ms-font-body);
    font-size: 14px;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.25s ease, gap 0.25s ease;
    word-break: break-all;
    overflow-wrap: break-word;
}

.site-footer__link:hover {
    color: var(--ms-primary);
    gap: 10px;
}

.site-footer__link i {
    font-size: 11px;
    opacity: 0.7;
}

.site-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.site-footer__contact li > i {
    font-size: 15px;
    color: var(--ms-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.site-footer__social-desc {
    font-family: var(--ms-font-body);
    font-size: 13.5px;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.6;
}

.site-footer__socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.site-footer__socials .top-header__social-link {
    width: 36px;
    height: 36px;
    font-size: 16px;
    border-radius: 10px;
}

.site-footer__divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(15, 152, 210, 0.521), transparent);
    margin: 0;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 0;
}

.site-footer__copy,
.site-footer__credit {
    font-family: var(--ms-font-body);
    font-size: 13px;
    color: #4b5563;
    margin: 0;
}

.site-footer__copy strong {
    color: var(--ms-dark);
    font-weight: 600;
}

.site-footer__heart {
    font-style: normal;
}

.site-footer__credit-link {
    color: var(--ms-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s ease;
}

.site-footer__credit-link:hover {
    color: var(--ms-primary-dark);
}

@media (max-width: 991.98px) {
    .site-footer {
        padding: 52px 0 0;
    }
}

@media (max-width: 767.98px) {
    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .site-footer__socials {
        gap: 8px;
    }
}

.page-hero {
    position: relative;
    min-height: 800px;
    padding-top: 150px;
    padding-bottom: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/brands-bg.png') center center / cover no-repeat;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 18, 30, 0.8) 0%, rgba(10, 18, 30, 0.55) 100%);
    z-index: 1;
    pointer-events: none;
}

.page-hero--branches {
    background-image: url('../img/branches-bg.png');
}

.page-hero--about {
    background-image: url('../img/aboutus-bg.png');
}


.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    background: linear-gradient(to top, #ffffff, transparent);
    z-index: 2;
}

.page-hero__container {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.page-hero__bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
}

@keyframes bubblePop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    60% {
        transform: scale(1.12);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-bubble {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(
        circle at 35% 30%,
        rgba(255, 255, 255, 0.45) 0%,
        rgba(255, 255, 255, 0.15) 35%,
        rgba(15, 151, 210, 0.12) 65%,
        rgba(6, 182, 212, 0.22) 100%
    );
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.70);
    box-shadow: 
        inset 0 8px 16px rgba(255, 255, 255, 0.85),
        inset 0 -10px 20px rgba(15, 151, 210, 0.30),
        inset 4px 4px 10px rgba(255, 255, 255, 0.60),
        inset -4px -4px 12px rgba(6, 182, 212, 0.22),
        0 16px 36px rgba(15, 151, 210, 0.18),
        0 4px 12px rgba(0, 0, 0, 0.04);
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s ease,
                border-color 0.3s ease;
}

.hero-bubble::before {
    content: '';
    position: absolute;
    top: 14%;
    left: 18%;
    width: 28%;
    height: 18%;
    border-radius: 50%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.65) 45%,
        transparent 100%
    );
    transform: rotate(-35deg);
    pointer-events: none;
    filter: blur(0.5px);
    z-index: 3;
    cursor: default;
}

.hero-bubble::after {
    content: '';
    position: absolute;
    bottom: 14%;
    right: 18%;
    width: 24%;
    height: 14%;
    border-radius: 50%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.75) 0%,
        rgba(6, 182, 212, 0.45) 55%,
        transparent 100%
    );
    transform: rotate(-25deg);
    pointer-events: none;
    filter: blur(0.8px);
    z-index: 3;
}

.hero-bubble:hover {
    transform: scale(1.16) !important;
    border-color: rgba(255, 255, 255, 0.95);
    cursor: default;
    box-shadow: 
        inset 0 10px 22px rgba(255, 255, 255, 0.95),
        inset 0 -12px 26px rgba(15, 151, 210, 0.42),
        inset 6px 6px 14px rgba(255, 255, 255, 0.75),
        inset -6px -6px 16px rgba(6, 182, 212, 0.32),
        0 24px 50px rgba(15, 151, 210, 0.30),
        0 8px 18px rgba(0, 0, 0, 0.06);
}

.hero-bubble__img {
    position: relative;
    z-index: 2;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
    transition: transform 0.35s ease;
}

.hero-bubble:hover .hero-bubble__img {
    transform: scale(1.08);
}

.hero-bubble--1 {
    width: 104px;
    height: 104px;
    top: 22%;
    left: 8%;
    padding: 18px;
    animation: bubblePop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both, floatWaterBubble1 5.8s ease-in-out infinite 0.8s;
}

.hero-bubble--1 .hero-bubble__img {
    max-width: 70px;
    max-height: 52px;
}

.hero-bubble--2 {
    width: 118px;
    height: 118px;
    top: 45%;
    left: 18%;
    padding: 20px;
    animation: bubblePop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both 0.3s, floatWaterBubble2 6.8s ease-in-out infinite 1.1s;
}

.hero-bubble--2 .hero-bubble__img {
    max-width: 82px;
    max-height: 58px;
}

.hero-bubble--3 {
    width: 96px;
    height: 96px;
    top: 68%;
    left: 9%;
    padding: 16px;
    animation: bubblePop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both 0.6s, floatWaterBubble3 6.2s ease-in-out infinite 1.4s;
}

.hero-bubble--3 .hero-bubble__img {
    max-width: 64px;
    max-height: 48px;
}

.hero-bubble--r1 {
    width: 104px;
    height: 104px;
    top: 20%;
    right: 8%;
    padding: 16px;
    animation: bubblePop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both 0.15s, floatWaterBubbleRight1 6.0s ease-in-out infinite 0.95s;
}

.hero-bubble--r1 .hero-bubble__img {
    max-width: 72px;
    max-height: 54px;
}

.hero-bubble--r2 {
    width: 118px;
    height: 118px;
    top: 46%;
    right: 18%;
    padding: 18px;
    animation: bubblePop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both 0.45s, floatWaterBubbleRight2 6.6s ease-in-out infinite 1.25s;
}

.hero-bubble--r2 .hero-bubble__img {
    max-width: 82px;
    max-height: 58px;
}

.hero-bubble--r3 {
    width: 96px;
    height: 96px;
    top: 68%;
    right: 9%;
    padding: 16px;
    animation: bubblePop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both 0.75s, floatWaterBubbleRight3 5.9s ease-in-out infinite 1.55s;
}

.hero-bubble--r3 .hero-bubble__img {
    max-width: 66px;
    max-height: 50px;
}

@keyframes floatWaterBubble1 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        border-radius: 50% 50% 48% 52% / 52% 48% 52% 48%;
    }
    33% {
        transform: translateY(-10px) rotate(3deg) scale(1.02);
        border-radius: 48% 52% 51% 49% / 51% 49% 52% 48%;
    }
    66% {
        transform: translateY(-18px) rotate(-2deg) scale(0.98);
        border-radius: 52% 48% 49% 51% / 49% 51% 48% 52%;
    }
}

@keyframes floatWaterBubble2 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        border-radius: 51% 49% 52% 48% / 49% 52% 48% 51%;
    }
    33% {
        transform: translateY(-13px) rotate(-4deg) scale(0.98);
        border-radius: 49% 51% 48% 52% / 52% 48% 51% 49%;
    }
    66% {
        transform: translateY(-22px) rotate(3deg) scale(1.03);
        border-radius: 52% 48% 51% 49% / 48% 51% 49% 52%;
    }
}

@keyframes floatWaterBubble3 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        border-radius: 49% 51% 50% 50% / 50% 49% 51% 50%;
    }
    50% {
        transform: translateY(-16px) rotate(4deg) scale(1.02);
        border-radius: 52% 48% 52% 48% / 48% 52% 48% 52%;
    }
}

@keyframes floatWaterBubbleRight1 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        border-radius: 49% 51% 52% 48% / 48% 52% 49% 51%;
    }
    33% {
        transform: translateY(-12px) rotate(-3deg) scale(1.02);
        border-radius: 52% 48% 49% 51% / 51% 49% 52% 48%;
    }
    66% {
        transform: translateY(-19px) rotate(2deg) scale(0.98);
        border-radius: 48% 52% 51% 49% / 49% 51% 48% 52%;
    }
}

@keyframes floatWaterBubbleRight2 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        border-radius: 52% 48% 50% 50% / 50% 51% 49% 50%;
    }
    33% {
        transform: translateY(-15px) rotate(4deg) scale(1.03);
        border-radius: 48% 52% 51% 49% / 52% 48% 50% 50%;
    }
    66% {
        transform: translateY(-21px) rotate(-3deg) scale(0.98);
        border-radius: 51% 49% 48% 52% / 49% 51% 52% 48%;
    }
}

@keyframes floatWaterBubbleRight3 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        border-radius: 50% 50% 51% 49% / 49% 51% 50% 50%;
    }
    50% {
        transform: translateY(-15px) rotate(-3deg) scale(1.02);
        border-radius: 48% 52% 49% 51% / 51% 49% 52% 48%;
    }
}

.page-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(15, 151, 210, 0.10);
    border: 1px solid rgba(15, 151, 210, 0.25);
    border-radius: 999px;
    font-family: var(--ms-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--ms-primary);
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 14px rgba(15, 151, 210, 0.08);
}

.page-hero__badge i {
    font-size: 14px;
    color: var(--ms-primary);
}

.page-hero__title {
    font-family: var(--ms-font-heading);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    color: var(--ms-white);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.page-hero__title-highlight {
    background: linear-gradient(135deg, #38bdf8 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero__subtitle {
    font-family: var(--ms-font-body);
    font-size: clamp(15px, 1.8vw, 17px);
    color: #4b5563;
    line-height: 1.7;
    margin: 0 auto 24px;
    max-width: 680px;
}

.page-hero__breadcrumb-nav {
    display: inline-flex;
    justify-content: center;
    margin-top: 8px;
}

.page-hero__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
    margin: 0;
    list-style: none;
}

.page-hero__breadcrumb-item {
    font-family: var(--ms-font-body);
    font-size: 13.5px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.page-hero__breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.page-hero__breadcrumb-item a:hover {
    color: #38bdf8;
}

.page-hero__breadcrumb-item.active {
    color: #38bdf8;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

.page-hero__breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    display: inline-flex;
    align-items: center;
}

.brands-showcase-section {
    padding: 75px 0 90px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.brands-showcase-section::before {
    content: '';
    position: absolute;
    top: 15%;
    left: -100px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 151, 210, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.brands-showcase-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -100px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.brands-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.brands-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px;
    background: rgba(15, 151, 210, 0.08);
    border: 1px solid rgba(15, 151, 210, 0.20);
    border-radius: 999px;
    font-family: var(--ms-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--ms-primary);
    margin-bottom: 14px;
}

.brands-header__title {
    font-family: var(--ms-font-heading);
    font-size: clamp(28px, 3.8vw, 42px);
    font-weight: 800;
    color: var(--ms-dark);
    line-height: 1.25;
    margin-bottom: 16px;
}

.brands-header__subtitle {
    font-family: var(--ms-font-body);
    font-size: 16px;
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.brand-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 20px;
    padding: 34px 24px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    cursor: pointer;
    min-height: 225px;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    background: linear-gradient(90deg, var(--ms-primary) 0%, #06b6d4 100%);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.brand-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        60deg,
        transparent 35%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 65%
    );
    opacity: 0;
    transform: rotate(25deg);
    transition: opacity 0.6s ease, transform 0.8s ease;
    pointer-events: none;
}

.brand-card:hover {
    transform: translateY(-8px);
    border-color: rgba(15, 151, 210, 0.35);
    box-shadow: 0 18px 36px -10px rgba(15, 151, 210, 0.16), 0 0 0 1px rgba(15, 151, 210, 0.12);
}

.brand-card:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.brand-card:hover::after {
    opacity: 1;
    transform: rotate(25deg) translate(30%, 30%);
}

.brand-card__logo-wrap {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 6px 12px;
    transition: transform 0.35s ease;
}

.brand-card__logo {
    max-width: 200px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    transition: all 0.35s ease;
}

.brand-card:hover .brand-card__logo {
    transform: scale(1.10);
}

.brand-card__status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--ms-font-body);
    font-size: 11.5px;
    font-weight: 600;
    color: #0284c7;
    background-color: rgba(2, 132, 199, 0.08);
    padding: 3px 10px;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.brand-card:hover .brand-card__status {
    background-color: var(--ms-primary);
    color: #ffffff;
}

.assurance-bento-section {
    padding: 95px 0 105px;
    background: linear-gradient(180deg, #f8fafc 0%, #edf6fc 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.assurance-bento-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -140px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 151, 210, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.assurance-bento-section::after {
    content: '';
    position: absolute;
    bottom: 5%;
    right: -140px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.assurance-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 52px;
    position: relative;
    z-index: 1;
}

.assurance-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 18px;
    background: rgba(15, 151, 210, 0.08);
    border: 1px solid rgba(15, 151, 210, 0.20);
    border-radius: 999px;
    font-family: var(--ms-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--ms-primary);
    margin-bottom: 14px;
}

.assurance-header__title {
    font-family: var(--ms-font-heading);
    font-size: clamp(28px, 3.8vw, 42px);
    font-weight: 800;
    color: var(--ms-dark);
    line-height: 1.25;
    margin-bottom: 16px;
}

.assurance-header__subtitle {
    font-family: var(--ms-font-body);
    font-size: 16px;
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
}

.assurance-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.assurance-card {
    grid-column: span 5;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(15, 151, 210, 0.05), 0 2px 8px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.assurance-card--featured {
    grid-column: span 7;
}

.assurance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    background: linear-gradient(90deg, var(--ms-primary) 0%, #06b6d4 100%);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.assurance-card:hover {
    transform: translateY(-8px);
    border-color: rgba(15, 151, 210, 0.35);
    box-shadow: 0 24px 48px -10px rgba(15, 151, 210, 0.16);
}

.assurance-card:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.assurance-card__glow-blob {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.45;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.assurance-card:hover .assurance-card__glow-blob {
    opacity: 0.8;
}

.assurance-card__glow-blob--cyan { background: #06b6d4; }
.assurance-card__glow-blob--blue { background: #0e5be9; }
.assurance-card__glow-blob--amber { background: #f59e0b; }
.assurance-card__glow-blob--purple { background: #8b5cf6; }

.assurance-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.assurance-card__icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.assurance-card:hover .assurance-card__icon-wrap {
    transform: scale(1.10) rotate(3deg);
}

.assurance-card__icon-wrap--cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(15, 151, 210, 0.20) 100%);
    color: #0284c7;
}

.assurance-card__icon-wrap--blue {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(37, 99, 235, 0.20) 100%);
    color: #2563eb;
}

.assurance-card__icon-wrap--amber {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.20) 100%);
    color: #d97706;
}

.assurance-card__icon-wrap--purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(109, 40, 217, 0.20) 100%);
    color: #7c3aed;
}

.assurance-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--ms-font-body);
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
}

.assurance-card__tag--cyan {
    color: #0284c7;
    background: rgba(2, 132, 199, 0.08);
    border: 1px solid rgba(2, 132, 199, 0.20);
}

.assurance-card__tag--blue {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.20);
}

.assurance-card__tag--amber {
    color: #d97706;
    background: rgba(217, 119, 6, 0.08);
    border: 1px solid rgba(217, 119, 6, 0.20);
}

.assurance-card__tag--purple {
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.20);
}

.assurance-card__body {
    position: relative;
    z-index: 1;
}

.assurance-card__title {
    font-family: var(--ms-font-heading);
    font-size: 21px;
    font-weight: 700;
    color: var(--ms-dark);
    margin: 0 0 10px;
    line-height: 1.3;
}

.assurance-card__desc {
    font-family: var(--ms-font-body);
    font-size: 14px;
    color: #6b7280;
    line-height: 1.65;
    margin: 0 0 20px;
}

.assurance-card__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.assurance-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ms-font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--ms-primary);
    background: rgba(15, 151, 210, 0.08);
    padding: 5px 12px;
    border-radius: 8px;
    border: 1px solid rgba(15, 151, 210, 0.15);
    transition: all 0.25s ease;
}

.assurance-pill:hover {
    background: rgba(15, 151, 210, 0.14);
    transform: translateY(-1px);
}

.assurance-pill--amber {
    color: #d97706;
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.18);
}

.assurance-pill--amber:hover {
    background: rgba(245, 158, 11, 0.15);
}

/* Stat Chip */
.assurance-card__stat-chip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.10) 0%, rgba(37, 99, 235, 0.10) 100%);
    border: 1px solid rgba(14, 165, 233, 0.20);
    padding: 10px 16px;
    border-radius: 14px;
}

.stat-chip__num {
    font-family: var(--ms-font-heading);
    font-size: 20px;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
}

.stat-chip__lbl {
    font-family: var(--ms-font-body);
    font-size: 12px;
    font-weight: 600;
    color: #4b5563;
}

@media (max-width: 991.98px) {
    .assurance-card,
    .assurance-card--featured {
        grid-column: span 12;
        padding: 28px 22px;
    }
}

@media (max-width: 575.98px) {
    .assurance-bento-section {
        padding: 60px 0 70px;
    }

    .assurance-card__header {
        margin-bottom: 16px;
    }

    .assurance-card__icon-wrap {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .assurance-card__title {
        font-size: 18px;
    }

    .assurance-card__desc {
        font-size: 13px;
        margin-bottom: 16px;
    }
}

.brand-card-reveal {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-card-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (max-width: 1199.98px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .hero-bubble--1 {
        left: 4%;
        top: 22%;
        width: 86px;
        height: 86px;
    }
    .hero-bubble--2 {
        left: 15%;
        top: 45%;
        width: 98px;
        height: 98px;
    }
    .hero-bubble--3 {
        left: 5%;
        top: 70%;
        width: 78px;
        height: 78px;
    }

    .hero-bubble--r1 {
        right: 4%;
        top: 20%;
        width: 86px;
        height: 86px;
    }
    .hero-bubble--r2 {
        right: 15%;
        top: 46%;
        width: 98px;
        height: 98px;
    }
    .hero-bubble--r3 {
        right: 5%;
        top: 70%;
        width: 78px;
        height: 78px;
    }
}

@media (max-width: 991.98px) {
    .hero-bubble--1 {
        left: 2%;
        top: 20%;
        width: 76px;
        height: 76px;
    }
    .hero-bubble--2 {
        left: 11%;
        top: 48%;
        width: 86px;
        height: 86px;
    }
    .hero-bubble--3 {
        left: 3%;
        top: 72%;
        width: 70px;
        height: 70px;
    }

    .hero-bubble--r1 {
        right: 2%;
        top: 18%;
        width: 76px;
        height: 76px;
    }
    .hero-bubble--r2 {
        right: 11%;
        top: 48%;
        width: 86px;
        height: 86px;
    }
    .hero-bubble--r3 {
        right: 3%;
        top: 72%;
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 767.98px) {
    .page-hero__bubbles {
        display: none;
    }

    .page-hero {
        min-height: 340px;
        padding-top: 120px;
        padding-bottom: 50px;
    }

    .brands-showcase-section {
        padding: 55px 0 70px;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .brand-card {
        padding: 26px 16px 22px;
        min-height: 190px;
        border-radius: 18px;
    }

    .brand-card__logo-wrap {
        height: 90px;
        margin-bottom: 12px;
    }

    .brand-card__logo {
        max-width: 155px;
        max-height: 72px;
    }

    .brand-card__status {
        font-size: 11px;
        padding: 3px 9px;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .brand-card {
        padding: 22px 12px 18px;
        min-height: 175px;
    }

    .brand-card__logo-wrap {
        height: 80px;
    }

    .brand-card__logo {
        max-width: 135px;
        max-height: 62px;
    }
}

.products-range-section {
    padding: 85px 0 95px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.products-range-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -120px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 151, 210, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.products-range-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -120px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.products-range__header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 52px;
    position: relative;
    z-index: 1;
}

.products-range__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 18px;
    background: rgba(15, 151, 210, 0.08);
    border: 1px solid rgba(15, 151, 210, 0.20);
    border-radius: 999px;
    font-family: var(--ms-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--ms-primary);
    margin-bottom: 14px;
}

.products-range__title {
    font-family: var(--ms-font-heading);
    font-size: clamp(28px, 3.8vw, 42px);
    font-weight: 800;
    color: var(--ms-dark);
    line-height: 1.25;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.products-range__title-decor {
    position: absolute;
    top: -24px;
    right: 0px;
    width: 45px;
    height: auto;
    pointer-events: none;
    animation: decor-bounce 1.5s ease-in-out infinite;
    transform-origin: bottom left;
}

.products-range__subtitle {
    font-family: var(--ms-font-body);
    font-size: 16px;
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
}

.products-range__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.product-category-card {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid rgba(229, 231, 235, 0.95);
    border-radius: 22px;
    padding: 28px 24px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.product-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    background: linear-gradient(90deg, var(--ms-primary) 0%, #06b6d4 100%);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.product-category-card:hover {
    transform: translateY(-8px);
    border-color: rgba(15, 151, 210, 0.35);
    box-shadow: 0 20px 40px -10px rgba(15, 151, 210, 0.16);
}

.product-category-card:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.product-category-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--ms-font-body);
    font-size: 11px;
    font-weight: 600;
    color: #0284c7;
    background: rgba(14, 165, 233, 0.10);
    border: 1px solid rgba(14, 165, 233, 0.20);
    padding: 3px 10px;
    border-radius: 999px;
    z-index: 2;
}

.product-category-card__img-wrap {
    width: 100%;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px 0 16px;
    padding: 8px;
}

.product-category-card__img {
    max-height: 190px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.product-category-card:hover .product-category-card__img {
    transform: scale(1.08) translateY(-4px);
    filter: drop-shadow(0 16px 28px rgba(15, 151, 210, 0.22));
}

.product-category-card__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-category-card__title {
    font-family: var(--ms-font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--ms-dark);
    margin: 0 0 8px;
}

.product-category-card__desc {
    font-family: var(--ms-font-body);
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 18px;
    max-width: 320px;
}

.product-category-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ms-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--ms-primary);
    background: rgba(15, 151, 210, 0.08);
    border: 1px solid rgba(15, 151, 210, 0.20);
    padding: 7px 18px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-category-card__btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.product-category-card:hover .product-category-card__btn {
    background: var(--ms-primary);
    color: #ffffff;
    border-color: var(--ms-primary);
}

.product-category-card:hover .product-category-card__btn i {
    transform: translateX(4px);
}

/* Responsive for Products Section */
@media (max-width: 1199.98px) {
    .products-range__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 991.98px) {
    .products-range__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 767.98px) {
    .products-range-section {
        padding: 60px 0 70px;
    }

    .products-range__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .product-category-card {
        padding: 22px 14px 20px;
        border-radius: 18px;
    }

    .product-category-card__img-wrap {
        height: 160px;
    }

    .product-category-card__img {
        max-height: 145px;
    }

    .product-category-card__title {
        font-size: 17px;
    }

    .product-category-card__desc {
        font-size: 12.5px;
        margin-bottom: 14px;
    }

    .product-category-card__btn {
        font-size: 12px;
        padding: 6px 14px;
    }
}

@media (max-width: 575.98px) {
    .products-range__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.branches-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #ffffff 0%, #fafdff 100%);
    position: relative;
}

.branches-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.branches-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ms-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--ms-primary);
    background: rgba(15, 151, 210, 0.08);
    border: 1px solid rgba(15, 151, 210, 0.16);
    padding: 6px 16px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.branches-header__title {
    font-family: var(--ms-font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--ms-dark);
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
}

.branches-header__title-decor {
    position: absolute;
    top: -24px;
    right: -15px;
    width: 45px;
    height: auto;
    pointer-events: none;
    animation: decor-bounce 1.5s ease-in-out infinite;
    transform-origin: bottom left;
}


.branches-header__subtitle {
    font-family: var(--ms-font-body);
    font-size: 16px;
    color: var(--ms-muted);
    line-height: 1.6;
}

.portfolio-3d-carousel-container {
    position: relative;
    width: 100%;
    height: 550px;
    perspective: 1200px;
    transform-style: preserve-3d;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 20px;
    cursor: grab;
    user-select: none;
}

.portfolio-3d-carousel-container:active {
    cursor: grabbing;
}

.portfolio-3d-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-3d-card {
    position: absolute;
    width: 350px;
    height: 480px;
    left: 50%;
    top: 50%;
    margin-left: -175px;
    margin-top: -240px;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: transform 0.1s ease, opacity 0.1s ease;
}

.portfolio-3d-card__glow {
    position: absolute;
    background: radial-gradient(circle, rgba(15, 151, 210, 0.1) 0%, transparent 70%);
    width: 100%;
    height: 100%;
    top: -20%;
    right: -20%;
    filter: blur(25px);
    pointer-events: none;
    z-index: 0;
}

.branch-card {
    background: #ffffff;
    border: 1px solid rgba(15, 151, 210, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
}

.branch-card:hover {
    box-shadow: 0 20px 40px rgba(15, 151, 210, 0.15);
    border-color: rgba(15, 151, 210, 0.2);
}

.portfolio-3d-card .branch-card:hover {
    transform: none;
}

.branch-card__img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
    background-color: #f3f4f6;
}

.branch-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.branch-card:hover .branch-card__img {
    transform: scale(1.08);
}

.branch-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: rgba(15, 151, 210, 0.9);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    font-family: var(--ms-font-body);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 99px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.branch-card__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.branch-card__title {
    font-family: var(--ms-font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--ms-dark);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.branch-card:hover .branch-card__title {
    color: var(--ms-primary);
}

.branch-card__details {
    margin-bottom: 20px;
    flex-grow: 1;
}

.branch-card__detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    font-family: var(--ms-font-body);
    font-size: 13.5px;
    color: #555555;
    line-height: 1.5;
}

.branch-card__detail-item:last-child {
    margin-bottom: 0;
}

.branch-card__detail-item i {
    color: var(--ms-primary);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.branch-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(15, 151, 210, 0.08);
}

.branch-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--ms-font-body);
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.branch-card__btn--primary {
    background: var(--ms-primary);
    color: #ffffff;
    border: 1px solid var(--ms-primary);
}

.branch-card__btn--primary:hover {
    background: var(--ms-primary-dark);
    border-color: var(--ms-primary-dark);
    color: #ffffff;
}

.branch-card__btn--secondary {
    background: rgba(15, 151, 210, 0.06);
    color: var(--ms-primary);
    border: 1px solid rgba(15, 151, 210, 0.15);
}

.branch-card__btn--secondary:hover {
    background: var(--ms-primary);
    color: #ffffff;
    border-color: var(--ms-primary);
}

.portfolio-3d-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    width: 100%;
}

.portfolio-3d-nav-btn {
    background: #ffffff;
    border: 1px solid rgba(15, 151, 210, 0.15);
    color: var(--ms-primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.portfolio-3d-nav-btn:hover {
    background: var(--ms-primary);
    color: #ffffff;
    border-color: var(--ms-primary);
    box-shadow: 0 6px 20px rgba(15, 151, 210, 0.25);
    transform: scale(1.05);
}

.portfolio-3d-nav-btn:active {
    transform: scale(0.95);
}

.portfolio-3d-slider-wrapper {
    max-width: 600px;
    width: 100%;
    padding: 0 20px;
}

.portfolio-3d-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 99px;
    background: rgba(15, 151, 210, 0.1);
    outline: none;
    transition: background 0.3s;
}

.portfolio-3d-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--ms-primary);
    cursor: pointer;
    border: 2.5px solid #ffffff;
    box-shadow: 0 3px 10px rgba(15, 151, 210, 0.3);
    transition: transform 0.2s ease, background-color 0.2s;
}

.portfolio-3d-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    background: var(--ms-primary-dark);
}

.portfolio-3d-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--ms-primary);
    cursor: pointer;
    border: 2.5px solid #ffffff;
    box-shadow: 0 3px 10px rgba(15, 151, 210, 0.3);
    transition: transform 0.2s ease, background-color 0.2s;
}

.portfolio-3d-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
    background: var(--ms-primary-dark);
}

@media (max-width: 991.98px) {
    .branches-section {
        padding: 80px 0 100px;
    }
    
    .branches-header__title {
        font-size: 34px;
    }

    .portfolio-3d-carousel-container {
        height: 480px;
        margin: 30px auto 10px;
    }
    
    .portfolio-3d-card {
        width: 290px;
        height: 420px;
        margin-left: -145px;
        margin-top: -210px;
    }

    .branch-card__img-wrap {
        height: 160px;
    }

    .branch-card__content {
        padding: 16px;
    }

    .branch-card__title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .branch-card__details {
        margin-bottom: 15px;
    }

    .branch-card__detail-item {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .branch-card__actions {
        padding-top: 12px;
        gap: 8px;
    }

    .branch-card__btn {
        font-size: 12.5px;
        padding: 8px 12px;
    }
}

@media (max-width: 767.98px) {
    .branches-section {
        padding: 60px 0 80px;
    }
    
    .branches-header__title {
        font-size: 28px;
    }
    
    .branches-header {
        margin-bottom: 40px;
    }

    .portfolio-3d-carousel-container {
        height: 440px;
    }

    .portfolio-3d-card {
        width: 260px;
        height: 380px;
        margin-left: -130px;
        margin-top: -190px;
    }

    .branch-card__img-wrap {
        height: 130px;
    }

    .branch-card__content {
        padding: 14px;
    }

    .branch-card__title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .branch-card__detail-item {
        font-size: 12.5px;
        margin-bottom: 6px;
        gap: 8px;
    }

    .branch-card__btn {
        font-size: 12px;
        padding: 8px 10px;
        border-radius: 8px;
    }
}

@media (max-width: 480.98px) {
    .portfolio-3d-carousel-container {
        height: 400px;
    }

    .portfolio-3d-card {
        width: 230px;
        height: 340px;
        margin-left: -115px;
        margin-top: -170px;
    }

    .branch-card__img-wrap {
        height: 110px;
    }

    .branch-card__content {
        padding: 10px;
    }

    .branch-card__title {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .branch-card__detail-item {
        font-size: 11.5px;
        margin-bottom: 4px;
        gap: 6px;
    }

    .branch-card__detail-item i {
        font-size: 13px;
        margin-top: 1px;
    }

    .branch-card__actions {
        padding-top: 8px;
        gap: 6px;
    }

    .branch-card__btn {
        font-size: 11px;
        padding: 6px 8px;
        border-radius: 6px;
    }
}

.inquiry-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.inquiry-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ms-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--ms-primary);
    background: rgba(15, 151, 210, 0.08);
    border: 1px solid rgba(15, 151, 210, 0.16);
    padding: 6px 16px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.inquiry-section__title {
    font-family: var(--ms-font-heading);
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--ms-dark);
    line-height: 1.25;
    margin-bottom: 20px;
}

.inquiry-section__title-highlight {
    background: linear-gradient(135deg, var(--ms-primary) 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.inquiry-section__desc {
    font-family: var(--ms-font-body);
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 40px;
}

.inquiry-section__cards-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inquiry-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.inquiry-card:not(.inquiry-card--static):hover {
    transform: translateY(-3px);
    border-color: rgba(15, 151, 210, 0.25);
    box-shadow: 0 10px 30px rgba(15, 151, 210, 0.08);
}

.inquiry-card__icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(15, 151, 210, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--ms-primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.inquiry-card:not(.inquiry-card--static):hover .inquiry-card__icon-wrap {
    background: var(--ms-primary);
    color: #ffffff;
}

.inquiry-card__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.inquiry-card__label {
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.inquiry-card__value {
    font-size: 16px;
    font-weight: 700;
    color: var(--ms-dark);
}

.inquiry-card__arrow {
    font-size: 18px;
    color: #cbd5e1;
    transition: transform 0.3s ease, color 0.3s ease;
}

.inquiry-card:hover .inquiry-card__arrow {
    transform: translateX(4px);
    color: var(--ms-primary);
}

.inquiry-card--static {
    background: #f8fafc;
    border-color: #f1f5f9;
}

.inquiry-card--static .inquiry-card__icon-wrap {
    background: #e2e8f0;
    color: #475569;
}

.inquiry-form-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 44px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
}

.inquiry-form-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.1) 40%, rgba(15, 151, 210, 0.15) 100%);
    z-index: -1;
    pointer-events: none;
}

.inquiry-form-card__header {
    margin-bottom: 30px;
}

.inquiry-form-card__title {
    font-family: var(--ms-font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--ms-dark);
    margin-bottom: 8px;
}

.inquiry-form-card__subtitle {
    font-family: var(--ms-font-body);
    font-size: 14px;
    color: #64748b;
}

.inquiry-form__group {
    margin-bottom: 22px;
}

.inquiry-form__label {
    display: block;
    font-family: var(--ms-font-body);
    font-size: 13.5px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
}

.inquiry-form__input-wrapper {
    position: relative;
}

.inquiry-form__icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #94a3b8;
    pointer-events: none;
    transition: color 0.3s ease;
}

.inquiry-form__icon--textarea {
    top: 18px;
    transform: none;
}

.inquiry-form__input {
    width: 100%;
    padding: 13px 16px 13px 48px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-family: var(--ms-font-body);
    font-size: 14.5px;
    color: var(--ms-dark);
    transition: all 0.3s ease;
    outline: none;
}

.inquiry-form__input:focus {
    border-color: var(--ms-primary);
    box-shadow: 0 0 0 4px rgba(15, 151, 210, 0.12);
}

.inquiry-form__input:focus + .inquiry-form__icon {
    color: var(--ms-primary);
}

.inquiry-form__input--textarea {
    resize: none;
    padding-top: 14px;
}

.inquiry-form__submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    background: linear-gradient(135deg, var(--ms-primary) 0%, #06b6d4 100%);
    border: none;
    border-radius: 12px;
    font-family: var(--ms-font-body);
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(15, 151, 210, 0.2);
    transition: all 0.3s ease;
}

.inquiry-form__submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(15, 151, 210, 0.3);
    filter: brightness(1.05);
}

.inquiry-form__submit-btn:active {
    transform: translateY(0);
}

.inquiry-form__btn-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.inquiry-form__submit-btn:hover .inquiry-form__btn-icon {
    transform: translate(3px, -2px);
}

@media (max-width: 991.98px) {
    .inquiry-section {
        padding: 80px 0;
    }
}

@media (max-width: 767.98px) {
    .inquiry-section {
        padding: 60px 0;
    }
    
    .inquiry-form-card {
        padding: 30px 20px;
        margin-top: 20px;
    }
}

.branches-features-section {
    padding: 80px 0;
    background-color: #f8fafc;
    position: relative;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.branch-feature-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.branch-feature-card__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(15, 151, 210, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.branch-feature-card__icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: rgba(15, 151, 210, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--ms-primary);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.branch-feature-card__icon {
    transition: transform 0.4s ease;
}

.branch-feature-card__title {
    font-family: var(--ms-font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--ms-dark);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.branch-feature-card__desc {
    font-family: var(--ms-font-body);
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

.branch-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(15, 151, 210, 0.25);
    box-shadow: 0 20px 45px rgba(15, 151, 210, 0.1);
}

.branch-feature-card:hover .branch-feature-card__glow {
    opacity: 1;
}

.branch-feature-card:hover .branch-feature-card__icon-wrap {
    background: linear-gradient(135deg, var(--ms-primary) 0%, #06b6d4 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 151, 210, 0.25);
}

.branch-feature-card:hover .branch-feature-card__icon {
    transform: scale(1.12) rotate(3deg);
}

.branch-feature-card:hover .branch-feature-card__title {
    color: var(--ms-primary-dark);
}

@media (max-width: 991.98px) {
    .branches-features-section {
        padding: 60px 0;
    }
    .branch-feature-card {
        padding: 30px 20px;
    }
}

.features-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.features-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ms-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--ms-primary);
    background: rgba(15, 151, 210, 0.08);
    border: 1px solid rgba(15, 151, 210, 0.16);
    padding: 6px 16px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.features-header__title {
    font-family: var(--ms-font-heading);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--ms-dark);
    margin-bottom: 16px;
}

.features-header__title-highlight {
    background: linear-gradient(135deg, var(--ms-primary) 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-header__subtitle {
    font-family: var(--ms-font-body);
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.faq-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.faq-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

.faq-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ms-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--ms-primary);
    background: rgba(15, 151, 210, 0.08);
    border: 1px solid rgba(15, 151, 210, 0.16);
    padding: 6px 16px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.faq-header__title {
    font-family: var(--ms-font-heading);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--ms-dark);
    margin-bottom: 16px;
}

.faq-header__title-highlight {
    background: linear-gradient(135deg, var(--ms-primary) 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-header__subtitle {
    font-family: var(--ms-font-body);
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-accordion__item {
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.faq-accordion__item:hover {
    border-color: rgba(15, 151, 210, 0.25) !important;
    box-shadow: 0 10px 25px rgba(15, 151, 210, 0.05);
}

.faq-accordion__button {
    font-family: var(--ms-font-heading);
    font-size: clamp(16px, 1.8vw, 17.5px);
    font-weight: 600;
    color: var(--ms-dark) !important;
    background-color: #ffffff !important;
    padding: 22px 28px !important;
    box-shadow: none !important;
    border: none !important;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease;
}

.faq-accordion__button:not(.collapsed) {
    color: var(--ms-primary) !important;
}

.faq-accordion__number {
    color: var(--ms-primary);
    font-weight: 700;
    margin-right: 6px;
    opacity: 0.85;
}

.faq-accordion__button::after {
    background-size: 1.1rem !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    filter: grayscale(1) opacity(0.5);
}

.faq-accordion__button:not(.collapsed)::after {
    filter: none;
}

.faq-accordion__body {
    font-family: var(--ms-font-body);
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    padding: 0 28px 24px !important;
    background-color: #ffffff !important;
}

@media (max-width: 767.98px) {
    .faq-section {
        padding: 60px 0;
    }
    .faq-accordion__button {
        padding: 18px 20px !important;
    }
    .faq-accordion__body {
        padding: 0 20px 20px !important;
    }
}

.about-sub-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.about-sub-section--gray {
    background-color: #F8FAFC;
}

.about-sub-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ms-primary);
    background-color: rgba(15, 151, 210, 0.08);
    border-radius: 99px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-sub-section__subtitle {
    color: var(--ms-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 10px auto 40px;
    text-align: center;
}

.about-sub-section__header {
    margin-bottom: 50px;
    text-align: center;
}

.story-timeline {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 20px 0;
}

.story-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, rgba(15, 151, 210, 0.1) 0%, var(--ms-primary) 15%, var(--ms-primary) 85%, rgba(15, 151, 210, 0.1) 100%);
    transform: translateX(-50%);
}

.story-timeline__item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.story-timeline__item--left {
    left: 0;
    text-align: right;
}

.story-timeline__item--right {
    left: 50%;
    text-align: left;
}

.story-timeline__node {
    position: absolute;
    top: 30px;
    width: 16px;
    height: 16px;
    background-color: var(--ms-white);
    border: 3px solid var(--ms-primary);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
}

.story-timeline__item--left .story-timeline__node {
    right: -8px;
}

.story-timeline__item--right .story-timeline__node {
    left: -8px;
}

.story-timeline__card {
    background: var(--ms-white);
    border: 1px solid var(--ms-border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.story-timeline__year {
    font-family: var(--ms-font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--ms-primary);
    margin-bottom: 8px;
    display: inline-block;
}

.story-timeline__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--ms-dark);
    margin-bottom: 10px;
}

.story-timeline__desc {
    font-size: 14px;
    color: var(--ms-muted);
    line-height: 1.6;
    margin: 0;
}

.story-timeline__item:hover .story-timeline__node {
    background-color: var(--ms-primary);
    box-shadow: 0 0 0 6px rgba(15, 151, 210, 0.2);
    transform: scale(1.2);
}
.story-timeline__item:hover .story-timeline__card {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px -5px rgba(15, 151, 210, 0.12), 0 8px 16px -8px rgba(15, 151, 210, 0.08);
    border-color: rgba(15, 151, 210, 0.3);
}

.story-timeline__item {
    opacity: 0;
    transition: all 0.6s ease;
}

.story-timeline__item--left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.story-timeline__item--left:not(.is-visible) {
    transform: translateX(-30px);
}

.story-timeline__item--right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.story-timeline__item--right:not(.is-visible) {
    transform: translateX(30px);
}

@media (max-width: 767.98px) {
    .story-timeline::before {
        left: 20px;
    }
    .story-timeline__item {
        width: 100%;
        padding: 15px 15px 15px 45px;
        text-align: left;
    }
    .story-timeline__item--left {
        left: 0;
    }
    .story-timeline__item--right {
        left: 0;
    }
    .story-timeline__node {
        left: 12px !important;
        right: auto !important;
        top: 25px;
    }
    .story-timeline__item--left:not(.is-visible),
    .story-timeline__item--right:not(.is-visible) {
        transform: translateX(20px);
    }
}

.do-card {
    background: var(--ms-white);
    border: 1px solid var(--ms-border);
    border-radius: 16px;
    padding: 30px 24px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.do-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ms-primary), #06b6d4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.do-card__icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background-color: rgba(15, 151, 210, 0.06);
    color: var(--ms-primary);
    font-size: 26px;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.do-card__title {
    font-size: 19px;
    font-weight: 700;
    color: var(--ms-dark);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.do-card__desc {
    font-size: 14px;
    color: var(--ms-muted);
    line-height: 1.6;
    margin: 0;
}

.do-card__list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    font-size: 13px;
    color: #4b5563;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.do-card__list-item {
    background-color: #f1f5f9;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
}

.do-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(15, 151, 210, 0.1), 0 10px 10px -5px rgba(15, 151, 210, 0.04);
    border-color: rgba(15, 151, 210, 0.2);
}

.do-card:hover::before {
    opacity: 1;
}

.do-card:hover .do-card__icon-wrap {
    background-color: var(--ms-primary);
    color: var(--ms-white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 16px rgba(15, 151, 210, 0.25);
}

.mv-card {
    background: linear-gradient(135deg, rgba(15, 151, 210, 0.04) 0%, rgba(6, 182, 212, 0.01) 100%);
    border: 1px solid rgba(15, 151, 210, 0.12);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.mv-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(15, 151, 210, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.mv-card__icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--ms-primary), #06b6d4);
    color: var(--ms-white);
    font-size: 30px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(15, 151, 210, 0.2);
    transition: all 0.4s ease;
}

.mv-card__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--ms-dark);
    margin-bottom: 15px;
}

.mv-card__desc {
    font-size: 15px;
    color: #374151;
    line-height: 1.8;
    margin: 0;
}

.mv-card:hover {
    transform: translateY(-5px);
    border-color: rgba(15, 151, 210, 0.35);
    background: linear-gradient(135deg, rgba(15, 151, 210, 0.08) 0%, rgba(6, 182, 212, 0.03) 100%);
    box-shadow: 0 15px 30px rgba(15, 151, 210, 0.06);
}

.mv-card:hover::after {
    transform: scale(1.3);
}

.mv-card:hover .mv-card__icon-wrap {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(15, 151, 210, 0.35);
}

.value-card {
    background: var(--ms-white);
    border: 1px solid var(--ms-border);
    border-radius: 14px;
    padding: 25px;
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    overflow: hidden;
}

.value-card__icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: rgba(15, 151, 210, 0.06);
    color: var(--ms-primary);
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.value-card__content {
    flex-grow: 1;
}

.value-card__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--ms-dark);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.value-card__desc {
    font-size: 13.5px;
    color: var(--ms-muted);
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

.value-card:hover {
    background-color: var(--ms-dark);
    border-color: var(--ms-dark);
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}

.value-card:hover .value-card__title {
    color: var(--ms-white);
}

.value-card:hover .value-card__desc {
    color: rgba(255, 255, 255, 0.75);
}

.value-card:hover .value-card__icon-wrap {
    background-color: var(--ms-primary);
    color: var(--ms-white);
    transform: scale(1.1);
}

.compact-point {
    background: var(--ms-white);
    border: 1px solid var(--ms-border);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    height: 100%;
    transition: all 0.3s ease;
}

.compact-point__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background-color: rgba(15, 151, 210, 0.08);
    color: var(--ms-primary);
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.compact-point__content {
    flex-grow: 1;
}

.compact-point__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--ms-dark);
    margin-bottom: 2px;
}

.compact-point__desc {
    font-size: 12.5px;
    color: var(--ms-muted);
    margin: 0;
}

.compact-point:hover {
    border-color: rgba(15, 151, 210, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px -4px rgba(15, 151, 210, 0.08), 0 4px 6px -2px rgba(15, 151, 210, 0.04);
}

.compact-point:hover .compact-point__icon {
    background-color: var(--ms-primary);
    color: var(--ms-white);
}

.about-sub-section--story {
    position: relative;
}

.about-sub-section--story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/sketch-store.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.about-sub-section--story .container {
    position: relative;
    z-index: 1;
}

.about-sub-section--mv-dark {
    background-image: url('../img/square-grid.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.about-sub-section--mv-dark .mv-card {
    background: rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.205);
}

.about-sub-section--mv-dark .mv-card__title {
    color: var(--ms-white);
}

.about-sub-section--mv-dark .mv-card__desc {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.about-sub-section--mv-dark .mv-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(15, 151, 210, 0.4);
    box-shadow: 0 20px 40px rgba(15, 151, 210, 0.15);
}
