html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f4f2ff;
    overflow-x: hidden;
    color: #111;
}

/* Whole-page lavender background wash matching the screenshot */
body.mobile-menu-open {
    overflow: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    /* background:
        radial-gradient(ellipse 70% 60% at 72% 34%, rgba(210, 200, 255, 0.45) 0%, transparent 70%),
        radial-gradient(ellipse 55% 48% at 12% 78%, rgba(214, 244, 229, 0.34) 0%, transparent 62%),
        linear-gradient(154deg, #f5fffb 0%, #f7f4ff 52%, #e9e4ff 100%); */
    background: linear-gradient(
        90deg,
        #EAE6FE 0%,
        #EEF0F8 50%,
        #EBF6F2 100%
    );
    z-index: -2;
    pointer-events: none;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container {
    width: 92%;
    max-width: 1450px;
    margin: auto;
}

/* ============================
          HEADER
   ============================ */

header {
    --header-height: 110px;
    padding: 18px 0 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: visible;
    transition: padding 0.3s ease, background 0.3s ease;
}

header.is-scrolled .navbar {
    box-shadow:
        0 12px 40px rgba(108, 99, 255, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.06);
}

.navbar {
    /* height: 80px; */
    position: relative;
    z-index: 1001;
    overflow: visible;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border-radius: 80px;
    padding: 6px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow:
        0 8px 32px rgba(108, 99, 255, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* subtle gradient halo around navbar */
.navbar::before {
    content: '';
    position: absolute;
    inset: -20px -20px;
    border-radius: 100px;
    background:
        radial-gradient(circle at 15% 50%, rgba(108, 99, 255, 0.10), transparent 50%),
        radial-gradient(circle at 85% 50%, rgba(35, 164, 85, 0.06), transparent 45%);
    filter: blur(18px);
    z-index: -1;
    pointer-events: none;
}

.logo {
    font-size: 42px;
    font-weight: 800;
    color: #2D2A7B;
    line-height: 0.85;
    flex-shrink: 0;
    padding: 10px 0;
}


.logo img,
.footer-logo img {
    width: 100px;
    display: block;
}


.nav-links {
    display: flex;
    gap: 44px;
    align-items: center;
}

.nav-links a {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    position: relative;
    white-space: nowrap;
}

.nav-links a.active {
    color: #2D2A7B;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2.5px;
    background: #2D2A7B;
    left: 0;
    bottom: -8px;
    border-radius: 10px;
}

/* ============================
          MEGA MENU
   ============================ */

.nav-item {
    position: relative;
}

.nav-trigger {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
}

.nav-trigger.active {
    color: #2D2A7B;
}

.nav-trigger.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2.5px;
    background: #2D2A7B;
    left: 0;
    bottom: -8px;
    border-radius: 10px;
}

.nav-trigger i.bi-chevron-down {
    font-size: 10px;
    transition: transform 0.25s ease;
}

body.mega-open .nav-item.has-mega .nav-trigger {
    color: #2D2A7B;
}

body.mega-open .nav-item.has-mega .nav-trigger i.bi-chevron-down {
    transform: rotate(180deg);
}

/* dark fade overlay (below header only) */
.mega-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 25%);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.mega-open .mega-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* centered mega menu (viewport) */
.mega-menu {
    position: fixed;
    top: 108px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: min(1080px, calc(100vw - 32px));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 950;
}

body.mega-open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* bridge gap between nav link and dropdown */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -48px;
    left: 0;
    right: 0;
    height: 48px;
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 24px 60px rgba(45, 42, 123, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    min-height: 380px;
}

/* left: category list */
.mega-categories {
    padding: 18px 14px;
    border-right: 1px solid #eef0f4;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-cat {
    width: 100%;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    text-align: left;
    transition: background 0.2s ease, color 0.2s ease;
    font-family: inherit;
}

.mega-cat:hover,
.mega-cat.active {
    background: #eef3ff;
}

.mega-cat:hover .mega-cat-label,
.mega-cat.active .mega-cat-label {
    color: #2D2A7B;
}

.mega-cat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
}

.mega-cat-icon--blue {
    background: #e8f0fe;
    color: #3b6fd9;
}

.mega-cat-icon--green {
    background: #e6f6ee;
    color: #23a455;
}

.mega-cat-icon--orange {
    background: #fff3e6;
    color: #e67e22;
}

.mega-cat-icon--teal {
    background: #e6f4f8;
    color: #1a8fa8;
}

.mega-cat-label {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.mega-cat-arrow {
    font-size: 11px;
    color: #b0b5c0;
}

.mega-cat.active .mega-cat-arrow,
.mega-cat:hover .mega-cat-arrow {
    color: #2D2A7B;
}

/* right: sub-items */
.mega-panels {
    padding: 20px 24px 18px;
    position: relative;
    overflow: auto;
}

.mega-panel {
    display: none;
    flex-direction: column;
    height: 100%;
    animation: megaFadeIn 0.22s ease;
}

.mega-panel.active {
    display: flex;
}

@keyframes megaFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    flex: 1;
    align-items: stretch;
}

.mega-card {
    border: 1px solid #e8ecf2;
    border-radius: 12px;
    padding: 16px 14px 14px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    background: #fff;
    min-height: 168px;
    height: 100%;
}

.mega-card:hover {
    border-color: #c5d4f5;
    box-shadow: 0 10px 28px rgba(45, 42, 123, 0.08);
    transform: translateY(-3px);
}

.mega-card-thumb {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f6fb;
    margin: 0 auto;
    flex-shrink: 0;
}

.mega-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mega-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #3b6fd9;
    margin: 0 auto;
    flex-shrink: 0;
}

.mega-card-footer {
    margin-top: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    min-height: calc(1px + (13px * 1.4 * 2));
}

.mega-card-divider {
    width: 100%;
    height: 1px;
    background: #e8ecf2;
    margin: 0;
    flex-shrink: 0;
}

.mega-card-title {
    margin-top: 10px !important;
    font-size: 13px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    padding: 0;
    text-align: center;
}

.mega-empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 24px 12px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

.mega-view-all {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #2D2A7B;
    align-self: flex-start;
    transition: gap 0.2s ease;
}

.mega-view-all:hover {
    gap: 12px;
}

.mega-view-all i {
    font-size: 11px;
}

@media (min-width: 1201px) and (max-width: 1320px) {
    .mega-menu {
        width: min(980px, calc(100vw - 24px));
    }

    .mega-menu-inner {
        grid-template-columns: 230px 1fr;
    }

    .mega-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.header-right .hidden {
    display: none !important;
}

.icon {
    width: 46px;
    height: 46px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    color: #444;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.cart-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 19px;
    height: 19px;
    background: #2D2A7B;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    border: 2px solid white;
}

.shop-btn {
    border: none;
    padding: 14px 28px;
    border-radius: 60px;
    background: linear-gradient(135deg, #2D2A7B, #533BFF);
    color: white;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 28px rgba(83, 59, 255, 0.30);
    transition: transform 0.3s, box-shadow 0.3s;
    white-space: nowrap;
}

.shop-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(83, 59, 255, 0.38);
}

.hamburger {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 18px;
    color: #333;
}

/* Mobile Side Drawer Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 10000;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.1);
}

.mobile-nav.show {
    left: 0;
}

.mobile-nav-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px 24px;
    /* Allow the drawer content to scroll on small screens */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
}

.mobile-nav-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.mobile-nav-head img {
    width: 90px;
}

.mobile-nav-close {
    background: #f5f3ff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #2D2A7B;
}

.mobile-nav-copy {
    margin-bottom: 30px;
}

.mobile-nav-copy span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.mobile-nav-copy strong {
    font-size: 16px;
    line-height: 1.5;
    color: #2D2A7B;
    display: block;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    color: #4a5568;
    transition: all 0.2s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: #f0f4ff;
    color: #2D2A7B;
}

.mobile-nav-flat-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    color: #4a5568;
    transition: all 0.2s ease;
}

.mobile-nav-flat-link:hover,
.mobile-nav-flat-link.active {
    background: #f0f4ff;
    color: #2D2A7B;
}

.mobile-nav-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-toggle {
    width: 100%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 16px;
    border-radius: 12px;
    color: #4a5568;
    font-weight: 600;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle.active,
.mobile-nav-group.is-open .mobile-nav-toggle {
    background: #f0f4ff;
    color: #2D2A7B;
}

.mobile-nav-caret {
    margin-left: auto;
    font-size: 11px;
    opacity: 0.5;
    transition: transform 0.2s ease;
}

.mobile-nav-group.is-open .mobile-nav-caret {
    transform: rotate(180deg);
}

.mobile-nav-submenu {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 4px 8px 8px 52px;
}

.mobile-nav-subsection {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-subtitle {
    margin: 0 0 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #a0aec0;
}

.mobile-nav-submenu a {
    display: block;
    padding: 8px 10px;
    border-radius: 10px;
    color: #4a5568;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav-submenu a:hover {
    background: #f3f4f6;
    color: #2D2A7B;
}

.mobile-nav-view-all {
    margin-top: 4px;
    font-weight: 600 !important;
    color: #2D2A7B !important;
}

.mobile-nav-empty {
    display: block;
    padding: 8px 10px;
    font-size: 13px;
    color: #9ca3af;
}

.mobile-nav-icon {
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    color: #2D2A7B;
}

.mobile-nav-arrow {
    margin-left: auto;
    font-size: 11px;
    opacity: 0.3;
}

.mobile-nav-cta {
    margin-top: auto;
    padding: 16px;
    background: linear-gradient(135deg, #2D2A7B, #533BFF);
    color: #fff !important;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(45, 42, 123, 0.15);
}

.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.4);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* ============================
          HERO (Full-width slider)
   ============================ */

.hero-workplace {
    position: relative;
    margin-top: calc(-1 * var(--header-height, 120px));
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
}

.hero-workplace-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-workplace-slider .swiper-wrapper,
.hero-workplace-slider .swiper-slide {
    height: 100%;
}

.hero-workplace-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-workplace-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg,
            rgba(8, 12, 28, 0.78) 0%,
            rgba(8, 12, 28, 0.52) 38%,
            rgba(8, 12, 28, 0.18) 62%,
            rgba(8, 12, 28, 0.05) 100%),
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.18) 0%,
            transparent 28%,
            transparent 72%,
            rgba(0, 0, 0, 0.28) 100%);
}

.hero-workplace-content {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height, 110px) + 56px) 0 88px;
}

.hero-workplace .hero-left {
    width: min(100%, 680px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-build-title {
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.05;
    color: #fff;
    font-weight: 800;
    margin-bottom: 22px;
}

.hero-build-title span {
    color: #2ee676;
}

.hero-taglines {
    color: #2ee676;
    font-size: clamp(15px, 1.55vw, 22px);
    line-height: 1.55;
    font-weight: 700;
    margin-bottom: 28px;
}

.hero-taglines span {
    color: #2ee676;
}

.hero-workplace .hero-text {
    color: rgba(255, 255, 255, 0.9);
    max-width: 520px;
    line-height: 1.75;
    font-size: clamp(14px, 1.1vw, 16px);
    margin-bottom: 36px;
}

.main-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 36px;
    height: 65px;
    border-radius: 70px;
    background: linear-gradient(135deg, #2D2A7B, #533BFF);
    color: white;
    font-size: 17px;
    font-weight: 600;
    box-shadow: 0 18px 32px rgba(83, 59, 255, 0.26);
    transition: transform 0.3s, box-shadow 0.3s;
}

.main-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 40px rgba(83, 59, 255, 0.34);
}

.hero-workplace .hero-cta {
    align-self: flex-start;
    background: linear-gradient(135deg, #2D2A7B, #533BFF);
    box-shadow: 0 14px 28px rgba(45, 42, 123, 0.28);
    min-width: 250px;
    justify-content: center;
}

.hero-workplace .hero-cta:hover {
    background: linear-gradient(135deg, #23206a, #4a32e8);
    box-shadow: 0 18px 32px rgba(45, 42, 123, 0.35);
}

.hero-segment-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 28px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
}

.hero-segment {
    border: none;
    background: transparent;
    padding: 6px 0;
    cursor: pointer;
    line-height: 0;
}

.hero-segment__track {
    display: block;
    width: clamp(56px, 10vw, 88px);
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    overflow: hidden;
    transition: width 0.35s ease, height 0.35s ease, opacity 0.35s ease;
}

.hero-segment[aria-selected="false"] .hero-segment__track {
    width: clamp(24px, 4vw, 36px);
    height: 3px;
    opacity: 0.65;
}

.hero-segment[aria-selected="true"] .hero-segment__track {
    width: clamp(56px, 10vw, 88px);
    height: 4px;
    opacity: 1;
}

.hero-segment__fill {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: #2ee676;
    box-shadow: 0 0 10px rgba(46, 230, 118, 0.4);
}

.hero-segment__fill.is-complete {
    width: 100%;
}

.hero-segment__fill.is-running {
    animation: heroSegmentRun var(--hero-slide-duration, 4.5s) linear forwards;
}

@keyframes heroSegmentRun {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-segment__fill.is-running {
        width: 100%;
        animation: none;
    }
}

/* ============================
          PRODUCTS
   ============================ */

.products {
    padding: 100px 0 100px;
    overflow: hidden;
}

.products-wrapper {
    display: grid;
    grid-template-columns: minmax(300px, 635px) 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: calc((100vw - min(92vw, 1390px)) / 2);
    padding-right: 0;
}

.small-tag {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #555;
    margin-bottom: 30px;
    font-size: 14px;
}

.small-tag .mini-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #ECEBFF;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2D2A7B;
    font-size: 18px;
    flex-shrink: 0;
}

.products-left h2 {
    font-size: 54px;
    line-height: 1.12;
    margin-bottom: 22px;
    letter-spacing: -2px;
    font-weight: 700;
}

.products h2 {
    color: #2D2A7B;
}

.products-left h2 span {
    color: #108948;
}

.products-left p {
    color: #666;
    line-height: 2;
    margin-bottom: 34px;
    font-size: 16px;
}

.buttons {
    display: flex;
    gap: 24px;
    align-items: center;
}

.outline-btn {
    color: #2D2A7B;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 2px solid #2D2A7B;
    padding-bottom: 2px;
}

.products-right {
    min-width: 0;
    width: 100%;
    margin-right: 0;
}

.products-slider {
    overflow: hidden;
    width: 100%;
    margin-right: 0;
}

.products-slider .swiper-slide {
    height: auto;
}

.products-slider .card {
    height: 100%;
    background: white;
    border-radius: 30px;
    padding: 16px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f5;
}

.card-img {
    border-radius: 22px;
    overflow: hidden;
    position: relative;
}

.card-img img {
    height: 240px;
    object-fit: cover;
}

.heart {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
}

.heart:hover {
    color: #e63434;
}

.card-content {
    padding: 16px 6px 6px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 6px;
    font-weight: 700;
}

.card-content p {
    color: #5c5c5c;
    font-size: 14px;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
}

.explore-btn {
    padding: 13px 26px;
    border-radius: 40px;
    background: #2D2A7B;
    color: white;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}

.explore-btn:hover {
    background: #533BFF;
    transform: translateY(-2px);
}

.arrow-buttons {
    /* display: flex; */
    display: none;
    gap: 14px;
    justify-content: start;
    margin-top: 28px;
}

.arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    color: #444;
    border: 1px solid #efefef;
    transition: background 0.2s, color 0.2s, opacity 0.2s;
    font-family: inherit;
    padding: 0;
}

.arrow:disabled,
.arrow.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* ============================
          PRODUCT COLLECTIONS
   ============================ */

.product-collections {
    --pc-primary: #2D3162;
    --pc-gradient-btn: linear-gradient(135deg, #2D2A7B, #533BFF);
    padding: 48px 0 100px;
    /* background:
        radial-gradient(ellipse 70% 60% at 72% 34%, rgba(210, 200, 255, 0.45) 0%, transparent 70%),
        radial-gradient(ellipse 55% 48% at 12% 78%, rgba(214, 244, 229, 0.34) 0%, transparent 62%),
        linear-gradient(154deg, #f5fffb 0%, #f7f4ff 52%, #e9e4ff 100%); */
}

.pc-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 44px;
}

.pc-label {
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 12px;
}

.pc-title {
    font-size: clamp(34px, 4.2vw, 52px);
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 32px;
}

.pc-title span {
    color: var(--pc-primary);
}

.pc-filters {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    padding: 6px 8px;
    border: 1px solid #e4e7ef;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.pc-filter {
    padding: 12px 22px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: #3d3d4e;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.pc-filter:hover {
    color: var(--pc-primary);
}

.pc-filter.active {
    background: var(--pc-primary);
    color: #fff;
}

.pc-panels {
    margin-top: 48px;
}

.pc-panel {
    display: none;
    animation: pcFadeIn 0.35s ease;
}

.pc-panel.active {
    display: block;
}

@keyframes pcFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

.pc-card:nth-child(4n+2),
.pc-card:nth-child(4n+4) {
    margin-top: 56px;
}

.pc-card {
    border-radius: 28px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(45, 49, 98, 0.18);
}

.pc-card-link {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    min-height: 380px;
    color: #fff;
    overflow: hidden;
}

.pc-card-link img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.pc-card:hover .pc-card-link img {
    transform: scale(1.08);
}

.pc-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding: 28px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.28) 38%,
            transparent 68%);
    transition: background 0.4s ease;
}

.pc-card:hover .pc-card-overlay {
    background: linear-gradient(to top,
            rgba(45, 42, 123, 0.92) 0%,
            rgba(45, 42, 123, 0.38) 100%);
}

.pc-card-text h3 {
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 6px;
}

.pc-card-text span {
    font-size: 15px;
    font-weight: 500;
    opacity: 0.92;
}

.pc-card-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.25s ease, background 0.25s ease;
}

.pc-card:hover .pc-card-arrow {
    transform: scale(1.1) rotate(45deg);
}

.pc-explore-wrap {
    text-align: center;
    margin-top: 56px;
}

.pc-explore-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 999px;
    background: var(--pc-gradient-btn);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 14px 32px rgba(79, 110, 247, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pc-explore-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(123, 92, 246, 0.4);
    color: #fff;
}

/* ============================
          RESPONSIVE
   ============================ */

@media (max-width: 1200px) {

    .mega-menu,
    .mega-backdrop {
        display: none !important;
    }

    body.mega-open {
        overflow: auto;
    }

    .hero-workplace {
        margin-top: calc(-1 * var(--header-height, 120px));
        min-height: clamp(560px, 88vh, 760px);
    }

    .hero-workplace-content {
        min-height: clamp(560px, 88vh, 760px);
        padding: calc(var(--header-height, 110px) + 36px) 0 72px;
        align-items: center;
    }

    .hero-workplace .hero-left {
        width: 100%;
    }

    .hero-build-title {
        font-size: clamp(34px, 8vw, 48px);
    }

    .hero-taglines {
        font-size: clamp(14px, 3.8vw, 18px);
    }

    .products-wrapper {
        grid-template-columns: 1fr;
        padding-left: calc((100vw - min(92vw, 1450px)) / 2);
        padding-right: calc((100vw - min(92vw, 1450px)) / 2);
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-right {
        display: none;
    }

    .header-right .icon {
        display: none !important;
    }

    .shop-btn {
        padding: 10px 20px;
        font-size: 14px;
        height: 46px;
    }

    .main-btn,
    .hero-workplace .hero-cta {
        height: auto;
        min-height: 0;
        padding: 16px 36px;
        font-size: 16px;
        gap: 10px;
        min-width: 0;
    }

    .hero-workplace .hero-cta {
        align-self: flex-start;
        width: auto;
        max-width: 100%;
    }

    .newsletter-cta {
        padding: 16px 36px;
        font-size: 16px;
        width: auto;
        max-width: none;
    }
}

@media (max-width: 992px) {
    .pc-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .pc-card:nth-child(4n+2),
    .pc-card:nth-child(4n+4) {
        margin-top: 0;
    }

    .pc-card:nth-child(3n+2) {
        margin-top: 32px;
    }

    .pc-card-link,
    .pc-card-link img {
        min-height: 340px;
    }

    .main-btn,
    .hero-workplace .hero-cta,
    .newsletter-cta {
        padding: 15px 32px;
        font-size: 15px;
    }

    .explore-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .pc-filters {
        max-width: 100%;
        padding: 5px 6px;
    }

    .pc-filter {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {

    .product-collections {
        padding: 36px 0 70px;
    }

    .pc-header {
        margin-bottom: 32px;
    }

    .pc-filters {
        width: 100%;
        border-radius: 20px;
        padding: 8px;
        gap: 6px;
    }

    .pc-filter {
        flex: 1 1 calc(50% - 6px);
        text-align: center;
        padding: 10px 12px;
        font-size: 12px;
    }

    .pc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pc-card:nth-child(4n+2),
    .pc-card:nth-child(4n+4),
    .pc-card:nth-child(3n+2) {
        margin-top: 0;
    }

    .pc-card,
    .pc-card-link,
    .pc-card-link img {
        min-height: 320px;
    }

    .pc-card-overlay {
        padding: 22px;
    }

    .hero-build-title {
        font-size: 38px;
    }

    .hero-taglines {
        font-size: 18px;
    }

    .main-btn,
    .hero-workplace .hero-cta,
    .pc-explore-more,
    .newsletter-cta {
        height: auto;
        min-height: 0;
        padding: 14px 28px;
        font-size: 15px;
        gap: 8px;
        min-width: 0;
    }

    .hero-workplace .hero-cta {
        width: auto;
        max-width: 100%;
    }

    .explore-btn {
        padding: 11px 22px;
        font-size: 13px;
    }

    .hero-workplace-overlay {
        background:
            linear-gradient(180deg,
                rgba(8, 12, 28, 0.72) 0%,
                rgba(8, 12, 28, 0.58) 55%,
                rgba(8, 12, 28, 0.42) 100%);
    }

    .products-left h2 {
        font-size: 38px;
    }

    .navbar {
        padding: 6px 16px;
        border-radius: 40px;
    }

    .logo img {
        width: 75px;
    }

    .shop-btn {
        display: none;
    }
}

/* ============================
          ENQUIRY CTA (newsletter)
   ============================ */

.newsletter {
    padding: 72px 0 88px;
    background:
        radial-gradient(ellipse 70% 50% at 50% 100%, rgba(83, 59, 255, 0.06) 0%, transparent 70%),
        linear-gradient(180deg, #ffffff 0%, #f8f7fc 100%);
}

.newsletter-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    /* min-height: 280px; */
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 32px 80px rgba(45, 42, 123, 0.18),
        0 0 0 1px rgba(45, 42, 123, 0.06);
}

.newsletter-bg {
    position: absolute;
    inset: 0;
    background: url('../img/flexii/cta_banner.webp') center center / cover no-repeat;
}

.newsletter-overlay {
    position: absolute;
    inset: 0;
    background: #00000045;
    /* background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.14) 0%, transparent 34%),
        radial-gradient(circle at 88% 82%, rgba(16, 137, 72, 0.22) 0%, transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.12) 100%); */
    pointer-events: none;
}

.newsletter-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg,
            transparent 30%,
            rgba(255, 255, 255, 0.07) 48%,
            transparent 66%);
    pointer-events: none;
}

.newsletter-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: clamp(40px, 5vw, 56px) clamp(32px, 5vw, 64px);
}

.newsletter-content {
    flex: 1;
    min-width: 0;
    max-width: 760px;
}

.newsletter-content h2 {
    margin: 0 0 16px;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.newsletter-lead {
    display: block;
    font-size: clamp(30px, 4vw, 45px);
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.newsletter-sub {
    display: block;
    font-size: clamp(16px, 1.8vw, 19px);
    font-weight: 500;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 680px;
}

.newsletter-content p {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    max-width: 620px;
    margin: 0;
    /* padding-left: 14px;
    border-left: 3px solid rgba(16, 137, 72, 0.85); */
}

.newsletter-action {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.newsletter-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 210px;
    padding: 18px 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2D2A7B, #533BFF);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.newsletter-cta:hover {
    transform: translateY(-4px);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.24),
        0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

.newsletter-cta i {
    font-size: 18px;
    transition: transform 0.28s ease;
}

.newsletter-cta:hover i {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .newsletter-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .newsletter-action {
        width: 100%;
        align-items: stretch;
    }

    .newsletter-cta {
        width: 100%;
        max-width: 360px;
    }
}

@media (max-width: 768px) {
    .newsletter {
        padding: 56px 0 72px;
    }

    .newsletter-card {
        border-radius: 24px;
        min-height: 0;
    }

    .newsletter-inner {
        padding: 32px 24px;
        gap: 28px;
    }

    .newsletter-lead {
        letter-spacing: -1px;
        margin-bottom: 10px;
    }

    .newsletter-content p {
        padding-left: 12px;
    }

    .newsletter-cta {
        max-width: none;
        width: 100%;
        min-width: 0;
        padding: 16px 28px;
    }
}

/* ============================
          FOOTER
   ============================ */

.flexii-footer {
    background: #ffffff;
    overflow-x: clip;
}

.flexii-footer__main {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.flexii-footer__grid {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px 0 0px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0;
    align-items: flex-start;
}

/* Brand */
.flexii-footer__brand {
    left: -35px;
    position: relative;
    width: fit-content;
    max-width: none;
    min-height: 350px;
    padding-right: 0;
    overflow: visible;
}

.flexii-footer__brand-scene {
    position: relative;
    display: inline-block;
    width: fit-content;
    height: fit-content;
}

.flexii-footer__plant {
    position: absolute;
    right: -26px;
    top: 112px;
    width: 180px;
    height: auto;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.flexii-footer__glass {
    position: relative;
    display: inline-block;
    width: fit-content;
    min-width: 400px;
    min-height: 390px;
    z-index: 2;
}

.flexii-footer__glass-backdrop {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* background: rgba(255, 255, 255, 0.28); */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(12px);
    -webkit-mask-image: url('../img/footer_left_glass_mask.svg');
    mask-image: url('../img/footer_left_glass_mask.svg');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.flexii-footer__glass-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 2;
    pointer-events: none;
    user-select: none;
}

.flexii-footer__brand-content {
    position: relative;
    z-index: 3;
    padding: 85px 110px 30px 87px;
    width: fit-content;
    max-width: none;
}

.flexii-footer__logo img {
    width: 128px;
    max-width: 100%;
    display: block;
}

.flexii-footer__tagline {
    margin: 16px 0 20px;
    color: #2d2a7b;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    max-width: none;
}

.flexii-footer__tagline span {
    display: block;
}

.flexii-footer__social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flexii-footer__social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #2d2a7b;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.flexii-footer__social a:hover {
    background: #1f1d5f;
    transform: translateY(-1px);
}

/* Link columns */
.flexii-footer__col {
    padding: 8px 28px;
    border-left: 1px solid #e5e7ef;
    min-height: 180px;
}

.flexii-footer__col.footer-col-margin {
    margin-top: 75px;
}

.flexii-footer__services.footer-col-margin {
    margin-top: 75px;
}

.flexii-footer__col h4 {
    font-size: 15px;
    font-weight: 700;
    color: #2d2a7b;
    margin-bottom: 20px;
}

.flexii-footer__nav {
    display: contents;
}

.flexii-footer__accordion {
    border: none;
}

.flexii-footer__accordion-head {
    list-style: none;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-weight: 700;
    color: #2d2a7b;
}

.flexii-footer__accordion-head::-webkit-details-marker {
    display: none;
}

.flexii-footer__accordion-icon {
    display: none;
    font-size: 14px;
    color: #2d2a7b;
    transition: transform 0.25s ease;
}

.flexii-footer__accordion[open] .flexii-footer__accordion-icon {
    transform: rotate(180deg);
}

.flexii-footer__accordion-body {
    margin-top: 20px;
}

.flexii-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.flexii-footer__col ul li a {
    font-size: 14px;
    color: #6b7280;
    transition: color 0.2s ease;
}

.flexii-footer__col ul li a:hover {
    color: #2d2a7b;
}

/* Download buttons */
.flexii-footer__actions {
    display: flex;
    flex-direction: row;
    gap: 14px;
    /* padding: 8px 0 8px 18px;
    border-left: 1px solid #e5e7ef; */
}

.flexii-footer__btn {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 12px 16px;
    border-radius: 12px;
    background: #2d2a7b;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    transition: background 0.2s ease, transform 0.2s ease;
}

.flexii-footer__btn i {
    font-size: 18px;
    flex-shrink: 0;
}

.flexii-footer__btn:hover {
    background: #1f1d5f;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Service visuals */
.flexii-footer__services {
    flex-direction: column;
    --footer-service-width: 200px;
    --footer-service-gap: 6px;
    --footer-service-slope: 0.16;
    display: flex;
    align-items: center;
    gap: 40px;
    padding-left: 18px;
    border-left: 1px solid #e5e7ef;
    flex-shrink: 0;
}

.flexii-footer__service-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
}

.flexii-footer__service {
    flex: 0 0 var(--footer-service-width);
    width: var(--footer-service-width);
    min-width: 0;
}

.flexii-footer__service+.flexii-footer__service {
    margin-left: calc(var(--footer-service-gap) - (var(--footer-service-width) * var(--footer-service-slope)));
}

.flexii-footer__service-img {
    height: 160px;
    overflow: hidden;
    clip-path: polygon(16% 0, 100% 0, 84% 100%, 0 100%);
    background: #e8edf5;
}

.flexii-footer__service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.flexii-footer__service-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
    color: #2d2a7b;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.flexii-footer__service-label i {
    font-size: 14px;
}

/* Bottom bar */
.flexii-footer__bar {
    background: #2d2a7b;
    color: #ffffff;
}

.flexii-footer__bar-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
    gap: 1px;
    background: rgba(255, 255, 255, 0.18);
    min-height: 54px;
}

.flexii-footer__bar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    padding: 12px 14px;
    border: none;
    background: #2d2a7b;
    font-size: 11.5px;
    line-height: 1.35;
    text-align: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

a.flexii-footer__bar-item:hover {
    background: #1f1d5f;
    text-decoration: none;
}

.flexii-footer__bar-item span {
    min-width: 0;
    overflow-wrap: break-word;
}

.flexii-footer__bar-item i {
    font-size: 14px;
    flex-shrink: 0;
}

.flexii-footer__bar-item--copy span {
    white-space: nowrap;
}

/* Legacy footer logo helper */
.footer-logo img {
    width: 100px;
    display: block;
}

/* Responsive footer — desktop (1200px+) uses default flex row above */

@media (min-width: 769px) and (max-width: 1199px) {
    .flexii-footer__main {
        padding: 28px 0 24px;
        background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    }

    .flexii-footer__grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-areas:
            "brand services"
            "nav nav";
        /* gap: 28px 24px; */
        padding: 0 28px;
        align-items: start;
    }

    .flexii-footer__glass-backdrop {
        left: -54%;
        mask-size: 56% 99%;
        background: rgba(255, 255, 255, 0.28);
    }

    .flexii-footer__glass-svg {
        left: -97px;
    }

    /* Top-left: brand with glass */
    .flexii-footer__brand {
        grid-area: brand;
        left: 0;
        min-height: auto;
        width: 100%;
        max-width: none;
    }

    .flexii-footer__brand-scene {
        width: 100%;
        max-width: 420px;
    }

    .flexii-footer__glass {
        min-width: 0;
        width: 100%;
        max-width: 400px;
        min-height: 300px;
    }

    .flexii-footer__brand-content {
        padding: 56px 48px 24px 0;
        width: 100%;
        max-width: 260px;
        box-sizing: border-box;
    }

    .flexii-footer__plant {
        width: 140px;
        right: 28%;
        top: 65px;
    }

    .flexii-footer__tagline {
        margin: 14px 0 18px;
        font-size: 13px;
        line-height: 1.4;
        max-width: 100%;
    }

    .flexii-footer__tagline span {
        display: block;
    }

    .flexii-footer__tagline span+span::before {
        content: none;
    }

    /* Top-right: services + buttons */
    .flexii-footer__services.footer-col-margin {
        grid-area: services;
        margin-top: 0;
        padding: 8px 0 0;
        border-left: none;
        gap: 18px;
        align-items: stretch;
        width: 100%;
    }

    .flexii-footer__service-row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        width: 100%;
    }

    .flexii-footer__service {
        flex: none;
        width: 100%;
        margin-left: 0 !important;
    }

    .flexii-footer__service+.flexii-footer__service {
        margin-left: 0;
    }

    .flexii-footer__service-img {
        height: 108px;
        clip-path: none;
        border-radius: 14px;
    }

    .flexii-footer__service-label {
        margin-top: 8px;
        font-size: 9px;
    }

    .flexii-footer__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        width: 100%;
    }

    .flexii-footer__btn {
        min-height: 52px;
        padding: 12px 14px;
        font-size: 12px;
        flex-direction: row;
        justify-content: flex-start;
    }

    /* Middle row: 3 link columns */
    .flexii-footer__nav {
        grid-area: nav;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        width: 100%;
        border-top: 1px solid #e5e7ef;
        padding-top: 28px;
        margin-top: 4px;
    }

    .flexii-footer__accordion.footer-col-margin {
        margin-top: 0;
        min-height: auto;
        padding: 0 24px;
        border-left: 1px solid #e5e7ef;
    }

    .flexii-footer__accordion.footer-col-margin:first-child {
        border-left: none;
        padding-left: 0;
    }

    .flexii-footer__accordion-head {
        cursor: default;
        pointer-events: none;
        padding: 0;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .flexii-footer__accordion-head span {
        position: relative;
        display: inline-block;
        padding-bottom: 10px;
    }

    .flexii-footer__accordion-head span::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 28px;
        height: 2px;
        background: #2d2a7b;
        border-radius: 1px;
    }

    .flexii-footer__accordion-icon {
        display: none;
    }

    .flexii-footer__accordion-body {
        margin-top: 16px;
        padding: 0;
    }

    .flexii-footer__col ul li a {
        font-size: 13px;
    }

    /* Bottom bar: 3 × 2 grid */
    .flexii-footer__bar {
        overflow: hidden;
    }

    .flexii-footer__bar .container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .flexii-footer__bar-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: auto auto;
        min-height: auto;
    }

    .flexii-footer__bar-item {
        padding: 14px 12px;
        font-size: 11px;
        justify-content: center;
        text-align: center;
    }

    .flexii-footer__bar-item--copy span {
        white-space: normal;
    }
}

@media (min-width: 1200px) {
    .flexii-footer__bar-item--quality {
        display: none;
    }
}

@media (max-width: 768px) {
    .flexii-footer__main {
        padding: 24px 0 0;
        background: #ffffff;
    }

    .flexii-footer__grid {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0 20px;
    }

    /* Brand — flat mobile hero */
    .flexii-footer__brand {
        width: 100%;
        left: 0;
        min-height: auto;
        padding: 0 0 20px;
        margin-bottom: 4px;
    }

    .flexii-footer__brand-scene {
        width: 100%;
        max-width: none;
        min-height: 170px;
        display: block;
    }

    .flexii-footer__glass-backdrop,
    .flexii-footer__glass-svg {
        display: none;
    }

    .flexii-footer__glass {
        width: 100%;
        min-width: 0;
        min-height: 0;
        background: transparent;
    }

    .flexii-footer__brand-content {
        padding: 0;
        max-width: calc(100% - 120px);
    }

    .flexii-footer__logo img {
        width: 120px;
    }

    .flexii-footer__tagline {
        margin: 10px 0 14px;
        font-size: 13px;
        line-height: 1.5;
    }

    .flexii-footer__tagline span {
        display: inline;
    }

    .flexii-footer__tagline span+span::before {
        content: ' ';
    }

    .flexii-footer__plant {
        width: 118px;
        right: -4px;
        top: 8px;
    }

    /* Accordion nav */
    .flexii-footer__nav {
        display: flex;
        flex-direction: column;
        width: 100%;
        border-top: 1px solid #e5e7ef;
    }

    .flexii-footer__accordion {
        width: 100%;
        border-bottom: 1px solid #e5e7ef;
    }

    .flexii-footer__accordion.footer-col-margin {
        margin-top: 0;
        padding: 0;
        border-left: none;
        min-height: auto;
        border-top: none;
        border-bottom: none;
    }

    .flexii-footer__accordion-head {
        cursor: pointer;
        padding: 18px 0;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: #2d2a7b;
    }

    .flexii-footer__accordion-icon {
        display: inline-flex;
    }

    .flexii-footer__accordion-body {
        margin-top: 0;
        padding: 0 0 16px;
    }

    .flexii-footer__col ul {
        gap: 10px;
    }

    .flexii-footer__col ul li a {
        font-size: 13px;
        color: #4b5563;
    }

    /* Services — 3-col grid */
    .flexii-footer__services.footer-col-margin {
        margin-top: 0;
        padding: 22px 0 0;
        border-left: none;
        border-top: none;
        gap: 18px;
        align-items: stretch;
    }

    .flexii-footer__service-row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        overflow: visible;
        width: 100%;
    }

    .flexii-footer__service {
        flex: none;
        width: 100%;
        margin-left: 0 !important;
    }

    .flexii-footer__service+.flexii-footer__service {
        margin-left: 0;
    }

    .flexii-footer__service-img {
        height: 92px;
        clip-path: none;
        border-radius: 14px;
    }

    .flexii-footer__service-label {
        margin-top: 8px;
        font-size: 8px;
        gap: 4px;
    }

    .flexii-footer__service-label i {
        font-size: 12px;
    }

    /* CTA buttons — 2 columns */
    .flexii-footer__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        width: 100%;
    }

    .flexii-footer__btn {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        min-height: 72px;
        padding: 10px 8px;
        gap: 8px;
        font-size: 11px;
        line-height: 1.3;
        border-radius: 14px;
    }

    .flexii-footer__btn i {
        font-size: 16px;
    }

    .flexii-footer__btn span {
        display: block;
        max-width: 100%;
    }

    /* Bottom contact bar */
    .flexii-footer__bar {
        margin-top: 20px;
        border-radius: 28px 28px 0 0;
        overflow: hidden;
    }

    .flexii-footer__bar .container {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
    }

    .flexii-footer__bar-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        background: rgba(255, 255, 255, 0.14);
    }

    .flexii-footer__bar-item {
        justify-content: flex-start;
        text-align: left;
        padding: 16px 20px;
        font-size: 12px;
        gap: 14px;
    }

    .flexii-footer__bar-item--quality {
        display: flex;
    }

    .flexii-footer__bar-item i {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.14);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        flex-shrink: 0;
    }

    .flexii-footer__bar-item--copy span {
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .flexii-footer__grid {
        padding: 0 16px;
    }

    .flexii-footer__brand-scene {
        min-height: 150px;
    }

    .flexii-footer__brand-content {
        max-width: calc(100% - 100px);
    }

    .flexii-footer__logo img {
        width: 104px;
    }

    .flexii-footer__plant {
        width: 100px;
        top: 4px;
    }

    .flexii-footer__service-img {
        height: 82px;
        border-radius: 12px;
    }

    .flexii-footer__btn {
        min-height: 68px;
        font-size: 10px;
        border-radius: 12px;
    }

    .flexii-footer__bar {
        border-radius: 22px 22px 0 0;
    }

    .flexii-footer__bar-item {
        padding: 14px 16px;
        font-size: 11px;
    }
}

/* =========================
    SUPERMARKET HOME SECTION
========================= */

.sm-home-section {
    position: relative;
    padding: clamp(56px, 7vw, 88px) 0 clamp(48px, 6vw, 72px);
    background: #f9f9fb;
    overflow: hidden;
}

.sm-home-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto clamp(32px, 5vw, 48px);
}

.sm-home-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #5a6578;
    font-size: 14px;
    font-weight: 600;
}

.sm-home-header h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.15;
    font-weight: 800;
    color: #1a1a5e;
    margin-bottom: 16px;
}

.sm-home-header h2 span {
    color: #533bff;
}

.sm-home-header p {
    margin: 0 auto;
    max-width: 68ch;
    color: #6b7280;
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.75;
}

.sm-home-grid {
    display: none;
    width: min(1320px, 92%);
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 24px);
}

.sm-home-slider {
    display: block;
    width: min(1320px, 92%);
    margin: 0 auto;
    padding: 0 4px 8px;
}

.sm-home-slider .swiper-slide {
    height: auto;
}

.sm-home-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(26, 26, 94, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.sm-home-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(26, 26, 94, 0.12);
}

.sm-home-card__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eef2f7;
}

.sm-home-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.sm-home-card:hover .sm-home-card__media img {
    transform: scale(1.04);
}

.sm-home-card__title {
    margin: 0;
    padding: 16px 18px 18px;
    font-size: clamp(15px, 1.5vw, 17px);
    font-weight: 700;
    color: #1a1a5e;
    line-height: 1.35;
}

.sm-home-slider__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
    padding-bottom: 4px;
}

.sm-home-slider__arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #e3e8ef;
    background: #fff;
    color: #2d2a7b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
}

.sm-home-slider__arrow:hover {
    background: #2d2a7b;
    border-color: #2d2a7b;
    color: #fff;
}

.sm-home-slider__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 10px;
}

.sm-home-slider__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    background: #c5cdd8;
    opacity: 1;
    transition: width 0.2s ease, background 0.2s ease;
}

.sm-home-slider__pagination .swiper-pagination-bullet-active {
    width: 22px;
    border-radius: 999px;
    background: #533bff;
}

@media (min-width: 768px) {
    .sm-home-grid {
        display: grid;
    }

    .sm-home-slider {
        display: none;
    }
}

@media (max-width: 767px) {
    .sm-home-section {
        padding-top: 48px;
        padding-bottom: 40px;
    }

    .sm-home-slider {
        width: 92%;
    }

    .sm-home-card__title {
        padding: 14px 14px 16px;
        font-size: 15px;
    }
}

/* =========================
    CLIENT TESTIMONIALS
========================= */

.client-testimonials {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    /* background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(210, 200, 255, 0.35) 0%, transparent 70%),
        linear-gradient(180deg, #f5f3ff 0%, #edf4fa 100%); */
}

.client-testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background:
        radial-gradient(circle at 10% 80%, rgba(108, 99, 255, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(35, 164, 85, 0.05) 0%, transparent 35%); */
    pointer-events: none;
}

.client-testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 65px;
}

.testimonial-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #2D2A7B;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.testimonial-header h2 {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    color: #2D2A7B;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.testimonial-header p {
    font-size: 18px;
    color: #666;
    max-width: 620px;
    margin: auto;
    line-height: 1.8;
}

.testimonial-marquee-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.testimonial-mobile-wrap {
    display: none;
}

.testimonial-marquee-css {
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.testimonial-marquee-css .swiper-wrapper {
    display: flex;
    width: max-content;
    gap: 28px;
    animation: testimonialMarquee var(--marquee-duration, 80s) linear infinite;
    will-change: transform;
    transition: none !important;
}

.testimonial-marquee-css--reverse .swiper-wrapper {
    animation-direction: reverse;
}

@keyframes testimonialMarquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.testimonial-marquee-css .swiper-slide {
    flex-shrink: 0;
    height: auto;
}

.testimonial-marquee-wrap .testimonial-slider .swiper-slide,
.testimonial-marquee-wrap .testimonial-slider-reverse .swiper-slide {
    width: calc((100vw - 28px) / 1.15);
    height: auto;
    box-sizing: border-box;
}

@media (min-width: 768px) and (max-width: 1199px) {

    .testimonial-marquee-wrap .testimonial-slider .swiper-slide,
    .testimonial-marquee-wrap .testimonial-slider-reverse .swiper-slide {
        width: calc((100vw - 158px) / 1.2);
    }
}

@media (min-width: 1200px) {

    .testimonial-marquee-wrap .testimonial-slider .swiper-slide,
    .testimonial-marquee-wrap .testimonial-slider-reverse .swiper-slide {
        width: calc((100vw - 28px) / 2.2);
    }
}

.testimonial-card {
    width: 100%;
    max-width: none;
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px;
    height: 100%;
    min-height: 220px;
    border: 1px solid #eef0f4;
    box-shadow: 0 8px 30px rgba(45, 42, 123, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* .testimonial-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 28px 50px rgba(108, 99, 255, 0.12),
        0 8px 18px rgba(0,0,0,0.06);
} */

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 28px;
    padding: 1px;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0.1));

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    pointer-events: none;
}

.testimonial-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-info img {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.client-avatar {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: #5c6bc0;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.08));
}

.client-avatar i {
    font-size: 62px;
    line-height: 1;
    width: 1em;
    height: 1em;
    display: block;
}

.client-info h3 {
    font-size: 20px;
    color: #111;
    margin-bottom: 4px;
    font-weight: 700;
}

.client-info span {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
}

.stars {
    color: #f4b400;
    font-size: 16px;
    letter-spacing: 2px;
    white-space: nowrap;
    flex-shrink: 0;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.75;
    color: #555;
}

/* =========================
    RESPONSIVE
========================= */

@media (max-width: 1200px) {

    .testimonial-header h2 {
        font-size: 46px;
    }

    .testimonial-card {
        padding: 28px;
    }

    .client-info h3 {
        font-size: 22px;
    }

    .testimonial-card p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {

    .client-testimonials {
        padding: 80px 0;
    }

    .testimonial-header {
        margin-bottom: 40px;
    }

    .testimonial-header h2 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .testimonial-header p {
        font-size: 15px;
    }

    .testimonial-marquee-wrap {
        display: none;
    }

    .testimonial-mobile-wrap {
        display: block;
        padding: 0 14px;
    }

    .testimonial-mobile-slider {
        overflow: hidden;
    }

    .testimonial-mobile-slider .swiper-slide {
        width: 100%;
        height: auto;
        box-sizing: border-box;
    }

    .testimonial-mobile-wrap .testimonial-card {
        min-height: auto;
        padding: 24px;
        border-radius: 20px;
        box-shadow: 0 12px 36px rgba(45, 42, 123, 0.08);
    }

    .testimonial-mobile-wrap .testimonial-top {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 20px;
    }

    .testimonial-mobile-wrap .client-info h3 {
        font-size: 18px;
    }

    .testimonial-mobile-wrap .client-info span {
        font-size: 13px;
    }

    .testimonial-mobile-wrap .testimonial-card p {
        font-size: 15px;
        line-height: 1.8;
    }

    .testimonial-mobile-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 14px;
        margin-top: 28px;
    }
}

@media (max-width: 768px) {

    .client-testimonials {
        padding: 80px 0;
    }

    .testimonial-header h2 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .testimonial-header p {
        font-size: 15px;
    }

    .testimonial-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonial-card {
        min-height: auto;
        padding: 24px;
    }

    .client-info h3 {
        font-size: 20px;
    }

    .client-info span {
        font-size: 14px;
    }

    .testimonial-card p {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* =========================
    TRUSTED CLIENTS
========================= */

.trusted-clients {
    position: relative;
    padding: 40px 0;
}

.trusted-panel {
    position: relative;
    /* max-width: 1180px;
    margin: 0 auto; */
    /* border-radius: 32px; */
    overflow: hidden;
    background: #ffffff;
    /* border: 1px solid rgba(45, 42, 123, 0.09); */
    /* box-shadow:
        0 32px 80px rgba(45, 42, 123, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.7) inset; */
}

.trusted-panel__head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    padding: clamp(36px, 5vw, 52px) clamp(24px, 4vw, 48px) clamp(28px, 4vw, 36px);
}

.trusted-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 60px;
    background: linear-gradient(135deg, rgba(45, 42, 123, 0.06), rgba(83, 59, 255, 0.08));
    border: 1px solid rgba(45, 42, 123, 0.1);
    color: #2D2A7B;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}

.trusted-label i {
    font-size: 15px;
    color: #108948;
    flex-shrink: 0;
}

.trusted-desc {
    margin: 0;
    font-size: clamp(16px, 1.7vw, 18px);
    line-height: 1.85;
    color: #5c5c5c;
}

.trusted-desc__lead {
    display: block;
    margin-bottom: 12px;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #2D2A7B 0%, #533BFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trusted-desc strong {
    font-weight: 700;
    color: #2D2A7B;
}

.trusted-marquee-wrap {
    position: relative;
    padding: 28px 0 34px;
    /* border-top: 1px solid rgba(45, 42, 123, 0.07); */
    overflow: hidden;
}

.trusted-marquee-wrap::before {
    left: 0;
    background: linear-gradient(90deg, #f3f2f9 20%, rgba(243, 242, 249, 0));
}

.trusted-marquee-wrap::after {
    right: 0;
    background: linear-gradient(-90deg, #f3f2f9 20%, rgba(243, 242, 249, 0));
}

.trusted-slider {
    overflow: hidden;
    width: 100%;
}

.trusted-track {
    display: flex;
    align-items: center;
    gap: 56px;
    width: max-content;
    padding: 6px 28px;
    animation: trustedMarquee var(--trusted-duration, 45s) linear infinite;
    will-change: transform;
}

.trusted-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 168px;
    height: 64px;
    padding: 12px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    /* transition: transform 0.28s ease, box-shadow 0.28s ease; */
}

.trusted-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes trustedMarquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 768px) {
    .trusted-clients {
        padding: 56px 0;
    }

    .trusted-panel__head {
        padding: 28px 20px 22px;
    }

    .trusted-label {
        font-size: 12px;
        padding: 8px 14px;
        gap: 8px;
        margin-bottom: 18px;
    }

    .trusted-desc__lead {
        letter-spacing: -1px;
        margin-bottom: 10px;
    }

    .trusted-marquee-wrap {
        padding: 22px 0 26px;
    }

    .trusted-track {
        gap: 32px;
    }

    .trusted-logo {
        width: 138px;
        height: 56px;
        padding: 10px 14px;
        border-radius: 12px;
    }
}


/* Flexii branded page loader */
.flexii-page-loader {
    align-items: center;
    background: radial-gradient(circle at center, #ffffff 0%, #fbfbfd 48%, #f4f5fa 100%);
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 1;
    position: fixed;
    transition: opacity 0.38s ease, visibility 0.38s ease;
    visibility: visible;
    z-index: 99999;
}

.flexii-page-loader.is-loaded {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.visually-hidden {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.flexii-loader {
    filter: drop-shadow(0 14px 26px rgba(51, 51, 116, 0.1));
    max-width: calc(100vw - 72px);
    position: relative;
    width: clamp(54px, 9vw, 86px);
}

.flexii-loader__empty,
.flexii-loader__fill {
    display: block;
    height: auto;
    width: 100%;
}

.flexii-loader__empty {
    filter: grayscale(1);
    opacity: 0.13;
}

.flexii-loader__fill {
    animation: flexii-logo-fill 1.35s cubic-bezier(0.65, 0, 0.35, 1) infinite;
    clip-path: inset(100% 0 0 0);
    inset: 0;
    position: absolute;
}

.flexii-loader__shine {
    animation: flexii-loader-glow 1.35s ease-in-out infinite;
    background: linear-gradient(90deg, transparent, rgba(51, 51, 116, 0.09), transparent);
    border-radius: 999px;
    bottom: -18px;
    height: 3px;
    left: 12%;
    position: absolute;
    right: 12%;
}

@keyframes flexii-logo-fill {
    0% {
        clip-path: inset(100% 0 0 0);
        opacity: 0.55;
    }

    72%,
    90% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }

    100% {
        clip-path: inset(0 0 0 0);
        opacity: 0;
    }
}

@keyframes flexii-loader-glow {

    0%,
    100% {
        opacity: 0.25;
        transform: scaleX(0.55);
    }

    72% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .flexii-loader__fill {
        animation: none;
        clip-path: inset(0);
    }

    .flexii-loader__shine {
        animation: none;
        opacity: 0.55;
    }
}

/* Scroll to top */
.scroll-to-top {
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    border: 3px solid #c9edff;
    border-radius: 50%;
    bottom: 28px;
    box-shadow: 0 10px 30px rgba(0, 147, 221, 0.12);
    color: #008fe5;
    cursor: pointer;
    display: inline-flex;
    font-size: 28px;
    height: 58px;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 28px;
    transform: translateY(18px) scale(0.92);
    transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    width: 58px;
    z-index: 9999;
}

.scroll-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover,
.scroll-to-top:focus-visible {
    border-color: #8fdcff;
    box-shadow: 0 14px 36px rgba(0, 147, 221, 0.22);
    outline: none;
    transform: translateY(-3px) scale(1.03);
}

.scroll-to-top i {
    line-height: 1;
}

@media (max-width: 575px) {
    .scroll-to-top {
        bottom: 20px;
        font-size: 24px;
        height: 50px;
        right: 18px;
        width: 50px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-to-top {
        transition: opacity 0.01s linear;
    }
}

/* ============================
     CATALOGUE REQUEST MODAL
   ============================ */

body.catalogue-modal-open {
    overflow: hidden;
}

.catalogue-modal[hidden] {
    display: none !important;
}

.catalogue-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.catalogue-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 30, 0.62);
    backdrop-filter: blur(4px);
}

.catalogue-modal__dialog {
    position: relative;
    width: min(100%, 520px);
    z-index: 1;
}

.catalogue-modal__content {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
}

.catalogue-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 24px 0;
}

.catalogue-modal__eyebrow {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.catalogue-modal__title {
    margin: 0;
    font-size: clamp(22px, 4vw, 28px);
    line-height: 1.2;
    color: #151a33;
}

.catalogue-modal__close {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #f3f4f8;
    color: #151a33;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.catalogue-modal__body {
    padding: 18px 24px 8px;
}

.catalogue-modal__intro {
    margin: 0 0 18px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.catalogue-modal__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.catalogue-modal__field label {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.catalogue-modal__field input {
    width: 100%;
    border: 1px solid #dbe2ef;
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
    color: #111827;
    background: #fff;
}

.catalogue-modal__field input:focus {
    outline: none;
    border-color: #533bff;
    box-shadow: 0 0 0 4px rgba(83, 59, 255, 0.12);
}

.catalogue-modal__status {
    min-height: 20px;
    margin-top: 4px;
    font-size: 13px;
}

.catalogue-modal__status.is-success {
    color: #0f766e;
}

.catalogue-modal__status.is-error {
    color: #b42318;
}

.catalogue-modal__footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 24px 24px;
}

.catalogue-modal__cancel,
.catalogue-modal__submit {
    border: none;
    border-radius: 999px;
    padding: 12px 20px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.catalogue-modal__cancel {
    background: #eef2ff;
    color: #2d2a7b;
}

.catalogue-modal__submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2d2a7b, #533bff);
    color: #fff;
}

.catalogue-modal__submit:disabled {
    opacity: 0.7;
    cursor: wait;
}

.flexii-footer__link-btn {
    border: none;
    background: none;
    font: inherit;
    color: rgba(255, 255, 255, 0.82);
    cursor: pointer;
    text-align: left;
    padding: 0;
}

.flexii-footer__link-btn:hover {
    color: #fff;
}

button.flexii-footer__btn {
    border: none;
    cursor: pointer;
    font: inherit;
}

button.shop-hero-btn {
    font: inherit;
    cursor: pointer;
}