  :root {
            --primary: #0555cd;
            --primary-dark: #0041a1;
            --primary-glow: rgba(5, 85, 205, 0.25);
            --accent: #1a1a2e;
            --bg-body: #f8fafc;
            --bg-surface: #ffffff;
            --text-main: #0f172a;
            --text-muted: #64748b;
            --border-light: #e2e8f0;
            
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
            --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
            --shadow-glow: 0 8px 30px rgba(5, 85, 205, 0.25);
            --radius-sm: 10px;
            --radius: 16px;
            --radius-lg: 20px;
        }

        * { box-sizing: border-box; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-body);
            font-size: 14px;
            color: var(--text-main);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* --- Compact Sticky Header --- */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1030;
            background: rgba(255, 255, 255, 0.82);
            backdrop-filter: saturate(180%) blur(18px);
            -webkit-backdrop-filter: saturate(180%) blur(18px);
            border-bottom: 1px solid var(--border-light);
            border-top: 3px solid var(--primary); /* subtle premium top color accent */
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .site-header.scrolled {
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
            background: rgba(255, 255, 255, 0.95);
            border-bottom-color: rgba(5, 85, 205, 0.1);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            height: 68px;
        }

        .brand {
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--text-main) !important;
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .brand-icon {
            width: 34px;
            height: 34px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
            box-shadow: var(--shadow-glow);
        }

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

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-link-custom {
            padding: 8px 16px;
            font-weight: 600;
            font-size: 0.88rem;
            color: var(--text-muted) !important;
            border-radius: 999px;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            white-space: nowrap;
        }

        .nav-link-custom:hover {
            color: var(--primary) !important;
            background: rgba(5, 85, 205, 0.06);
        }

        .nav-link-custom.active {
            color: var(--primary) !important;
            background: rgba(5, 85, 205, 0.09);
            font-weight: 700;
        }

        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown-menu {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            min-width: 220px;
            background: var(--bg-surface);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            padding: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            list-style: none;
        }

        .nav-dropdown:hover .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-dropdown-menu a {
            display: block;
            padding: 10px 14px;
            font-size: 0.85rem;
            color: var(--text-muted);
            text-decoration: none;
            border-radius: var(--radius-sm);
            transition: all 0.15s;
        }

        .nav-dropdown-menu a:hover {
            background: rgba(5, 85, 205, 0.06);
            color: var(--primary);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .btn-sm-custom {
            padding: 8px 18px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 0.8rem;
            transition: all 0.25s ease;
            border: none;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .btn-header-email {
            background: var(--primary);
            color: white !important;
            border: 1px solid var(--primary);
        }

        .btn-header-email:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
            box-shadow: 0 4px 12px rgba(5, 85, 205, 0.25);
            transform: translateY(-1px);
        }

        .btn-header-phone {
            background: transparent;
            color: var(--primary) !important;
            border: 1px solid rgba(5, 85, 205, 0.2);
        }

        .btn-header-phone:hover {
            background: rgba(5, 85, 205, 0.05);
            border-color: var(--primary);
            transform: translateY(-1px);
        }

        .btn-ghost {
            background: transparent;
            color: var(--text-main);
            border: 1px solid var(--border-light);
        }

        .btn-ghost:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(5, 85, 205, 0.04);
        }

        .btn-solid {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            box-shadow: 0 4px 15px rgba(5, 85, 205, 0.3);
        }

        .btn-solid:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 25px rgba(5, 85, 205, 0.4);
            color: white;
        }

        .btn-lg-custom {
            padding: 12px 26px;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: 999px;
            transition: all 0.25s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        /* --- Hero Section Slider --- */
        .hero-slider-section {
            position: relative;
            width: 100%;
            height: 600px;
            background: #090d16;
            overflow: hidden;
        }

        .heroSwiper {
            width: 100%;
            height: 100%;
        }

        .heroSwiper .swiper-slide {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
            background: #090d16;
        }

        .heroSwiper .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transform: scale(1.0);
            transition: transform 6s ease-in-out;
        }

        .heroSwiper .swiper-slide-active img {
            transform: scale(1.08);
        }

        /* Swiper Controls */
        .heroSwiper .swiper-button-next,
        .heroSwiper .swiper-button-prev {
            width: 56px;
            height: 56px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            color: #ffffff;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .heroSwiper .swiper-button-next:hover,
        .heroSwiper .swiper-button-prev:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: #ffffff;
            box-shadow: 0 0 20px rgba(5, 85, 205, 0.4);
            transform: scale(1.05);
        }

        .heroSwiper .swiper-button-next::after,
        .heroSwiper .swiper-button-prev::after {
            font-size: 1.2rem;
            font-weight: 800;
        }

        .heroSwiper .swiper-pagination-bullets {
            bottom: 24px !important;
        }

        .heroSwiper .swiper-pagination-bullet {
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.4);
            opacity: 1;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            margin: 0 6px !important;
            border-radius: 999px;
        }

        .heroSwiper .swiper-pagination-bullet-active {
            background: var(--primary);
            width: 28px;
            box-shadow: 0 0 10px rgba(5, 85, 205, 0.5);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-slider-section {
                height: 500px;
            }
        }

        @media (max-width: 991px) {
            .hero-slider-section {
                height: 400px;
            }
            .heroSwiper .swiper-button-next,
            .heroSwiper .swiper-button-prev {
                width: 46px;
                height: 46px;
            }
            .heroSwiper .swiper-button-next::after,
            .heroSwiper .swiper-button-prev::after {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .hero-slider-section {
                height: 280px;
            }
            .heroSwiper .swiper-button-next,
            .heroSwiper .swiper-button-prev {
                display: none;
            }
        }

        /* --- Logo Band (Redesigned) --- */
        .partners-section {
            padding: 80px 0;
            background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-body) 100%);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            position: relative;
        }

        .partners-subtitle {
            font-size: 0.95rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 8px auto 0;
            line-height: 1.6;
        }

        .logo-slider-container {
            position: relative;
            background: var(--bg-surface);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            padding: 45px 30px;
            box-shadow: var(--shadow-md);
            overflow: hidden;
            margin-top: 40px;
        }

        /* Subtle glassmorphism gradient fade masks on edges */
        .logo-slider-container::before,
        .logo-slider-container::after {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            width: 120px;
            z-index: 2;
            pointer-events: none;
        }

        .logo-slider-container::before {
            left: 0;
            background: linear-gradient(to right, var(--bg-surface) 0%, transparent 100%);
        }

        .logo-slider-container::after {
            right: 0;
            background: linear-gradient(to left, var(--bg-surface) 0%, transparent 100%);
        }

        .logoSwiper .swiper-wrapper {
            transition-timing-function: linear !important;
        }

        .logo-slide {
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .logo-slide svg {
            height: 32px;
            width: auto;
            color: var(--text-muted);
            opacity: 0.55;
            transition: all 0.3s ease;
        }

        .logo-slide:hover svg {
            color: var(--primary);
            opacity: 1;
            transform: scale(1.05);
        }

        /* --- Features --- */
        .features {
            padding: 56px 0;
            background: var(--bg-surface);
        }

        .section-eyebrow {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .section-title {
            font-size: 1.75rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 6px;
        }

        .feature-card {
            background: var(--bg-body);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 26px;
            height: 100%;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
            background: white;
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 143, 92, 0.08));
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            margin-bottom: 18px;
        }

        .feature-card h4 {
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 8px;
        }

        .feature-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        /* --- Product Slider --- */
        .showcase {
            padding: 40px 0 60px;
            background: var(--bg-body);
        }

        .product-card {
            background: white;
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }

        .product-card:hover {
            border-color: transparent;
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
        }

        .product-img {
            height: 160px;
            background: linear-gradient(135deg, #fff3ee, #ffe8d9);
            position: relative;
            overflow: hidden;
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-img img { transform: scale(1.05); }

        .product-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: white;
            padding: 5px 10px;
            border-radius: 999px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--primary);
            box-shadow: var(--shadow-sm);
        }

        .product-body {
            padding: 18px;
        }

        .product-body h5 {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 8px;
        }

        .product-meta {
            display: flex;
            gap: 14px;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 14px;
            flex-wrap: wrap;
        }

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .product-price {
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--text-main);
        }

        .btn-sm-primary {
            padding: 7px 14px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 999px;
            font-weight: 600;
            font-size: 0.75rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-sm-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }

        .swiper-pagination-bullet {
            background: var(--primary) !important;
            opacity: 0.25 !important;
        }

        .swiper-pagination-bullet-active {
            opacity: 1 !important;
        }

        /* --- CTA --- */
        .cta-band {
            padding: 44px 0;
            background: var(--bg-surface);
        }

        .cta-card {
            background: linear-gradient(135deg, var(--accent), #16162a);
            border-radius: var(--radius-lg);
            padding: 44px;
            position: relative;
            overflow: hidden;
            color: white;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-content { position: relative; z-index: 2; }

        .cta-card h2 {
            font-weight: 800;
            font-size: 1.85rem;
            letter-spacing: -0.5px;
            margin-bottom: 10px;
        }

        .cta-card p {
            color: rgba(255,255,255,0.7);
            margin-bottom: 24px;
            font-size: 0.95rem;
        }

        .btn-white {
            background: white;
            color: var(--accent);
            font-weight: 700;
            padding: 12px 24px;
            border-radius: 999px;
            border: none;
            text-decoration: none;
            transition: all 0.25s;
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            color: var(--accent);
        }

        .btn-outline-white {
            background: transparent;
            color: white;
            border: 1.5px solid rgba(255,255,255,0.4);
            padding: 12px 24px;
            border-radius: 999px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.25s;
        }

        .btn-outline-white:hover {
            background: rgba(255,255,255,0.1);
            border-color: white;
            color: white;
        }

        /* --- Footer --- */
        footer {
            background: var(--accent);
            color: #94a3b8;
            padding: 52px 0 24px;
        }

        .footer-brand {
            font-size: 1.2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 14px;
            display: inline-block;
        }

        .footer-brand span { color: var(--primary); }

        footer p { font-size: 0.875rem; line-height: 1.7; }

        .footer-heading {
            color: white;
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.875rem;
            display: block;
            padding: 5px 0;
            transition: 0.2s;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .subscribe-form {
            display: flex;
            gap: 8px;
        }

        .subscribe-form input {
            flex: 1;
            padding: 10px 16px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 999px;
            color: white;
            font-size: 0.85rem;
            outline: none;
        }

        .subscribe-form input::placeholder { color: rgba(255,255,255,0.4); }

        .subscribe-form button {
            padding: 10px 20px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 999px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }

        .subscribe-form button:hover { background: var(--primary-dark); }

        /* Footer contact address list styling */
        .footer-contact-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .footer-contact-list li {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            font-size: 0.875rem;
            line-height: 1.5;
            color: #94a3b8;
        }

        .footer-contact-list li i {
            color: var(--primary);
            font-size: 0.95rem;
            margin-top: 3px;
            width: 16px;
            text-align: center;
        }

        .footer-contact-list li div {
            flex: 1;
        }

        .footer-contact-list li strong {
            display: block;
            color: white;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .footer-contact-list li a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-contact-list li a:hover {
            color: white;
        }

        .footer-bottom {
            margin-top: 40px;
            padding-top: 22px;
            border-top: 1px solid rgba(255,255,255,0.08);
            font-size: 0.8rem;
        }

        /* --- Mobile Nav Toggle --- */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            padding: 8px;
            cursor: pointer;
            color: var(--text-main);
        }

        /* --- Responsive --- */
        @media (max-width: 991px) {
            .nav-toggle { display: flex; }

            .nav-links, .header-actions {
                display: none;
            }

            .nav-links.mobile-open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 64px;
                left: 0;
                right: 0;
                background: white;
                padding: 20px;
                border-bottom: 1px solid var(--border-light);
                box-shadow: var(--shadow-lg);
                gap: 4px;
            }

            .nav-dropdown-menu {
                position: static;
                box-shadow: none;
                border: none;
                padding-left: 20px;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
            }

            .nav-dropdown.open .nav-dropdown-menu {
                display: block;
            }

            .header-actions.mobile-open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: calc(64px + var(--nav-height, 0px));
                left: 0;
                right: 0;
                background: white;
                padding: 0 20px 20px;
                border-bottom: 1px solid var(--border-light);
                box-shadow: var(--shadow-lg);
            }

        }

        @media (max-width: 576px) {
            .cta-card { padding: 28px 20px; }
            .cta-card h2 { font-size: 1.4rem; }
        }

        /* --- Team Grid Section --- */
        .team-section {
            padding: 80px 0;
            background: var(--bg-surface);
            border-top: 1px solid var(--border-light);
            position: relative;
            overflow: hidden;
        }

        .team-section::before {
            content: '';
            position: absolute;
            top: 10%;
            left: 80%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .team-content-card {
            background: linear-gradient(135deg, var(--accent) 0%, #252542 100%);
            color: white;
            border-radius: var(--radius-lg);
            padding: 36px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
        }

        .team-content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(26, 26, 46, 0.2);
            border-color: rgba(255, 107, 53, 0.2);
        }

        .team-content-card h3 {
            font-size: 1.5rem;
            font-weight: 800;
            line-height: 1.3;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #ffffff, #dcdcf0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .team-content-card p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .team-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
        }

        .team-stat-item h4 {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 4px;
        }

        .team-stat-item span {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .team-card {
            background: var(--bg-body);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            overflow: hidden;
            height: 100%;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .team-card:hover {
            transform: translateY(-8px);
            background: white;
            border-color: transparent;
            box-shadow: var(--shadow-lg);
        }

        .team-img-wrap {
            position: relative;
            height: 240px;
            overflow: hidden;
            background: #e2e8f0;
        }

        .team-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .team-card:hover .team-img-wrap img {
            transform: scale(1.06);
        }

        .team-socials {
            position: absolute;
            bottom: 16px;
            right: 16px;
            display: flex;
            gap: 8px;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
        }

        .team-card:hover .team-socials {
            opacity: 1;
            transform: translateY(0);
        }

        .team-social-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            text-decoration: none;
            transition: all 0.2s;
            box-shadow: var(--shadow-sm);
        }

        .team-social-btn:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }

        .team-info {
            padding: 20px;
            position: relative;
        }

        .team-info h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--text-main);
        }

        .team-role-badge {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 700;
            color: var(--primary);
            background: rgba(255, 107, 53, 0.08);
            padding: 4px 10px;
            border-radius: 999px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .team-bio {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin: 0;
        }

        .team-join-card {
            background: transparent;
            border: 2px dashed var(--border-light);
            border-radius: var(--radius-lg);
            padding: 36px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            transition: all 0.3s ease;
        }

        .team-join-card:hover {
            border-color: var(--primary);
            background: rgba(255, 107, 53, 0.02);
            transform: translateY(-5px);
        }

        .team-join-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 107, 53, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 20px;
            transition: all 0.3s;
        }

        .team-join-card:hover .team-join-icon {
            background: var(--primary);
            color: white;
            transform: rotate(45deg);
        }

        .team-join-card h4 {
            font-weight: 700;
            font-size: 1.15rem;
            margin-bottom: 8px;
        }

        .team-join-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 20px;
            max-width: 200px;
        }

        /* --- Product Grid Section --- */
        .products-grid-section {
            padding: 90px 0;
            background: linear-gradient(180deg, var(--bg-body) 0%, #f0f7ff 100%);
            border-top: 1px solid var(--border-light);
            position: relative;
        }

        .products-grid-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(5, 85, 205, 0.03) 0%, transparent 70%);
            bottom: 0;
            right: 0;
            pointer-events: none;
        }

        .filter-btn {
            background: white;
            color: var(--text-muted);
            border: 1px solid var(--border-light);
            padding: 8px 20px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .filter-btn:hover {
            color: var(--primary);
            border-color: var(--primary);
            background: rgba(5, 85, 205, 0.02);
            transform: translateY(-1px);
        }

        .filter-btn.active {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border-color: transparent;
            box-shadow: var(--shadow-glow);
        }

        .product-grid-card {
            background: white;
            border: 1px solid rgba(5, 85, 205, 0.06);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
        }

        .product-grid-card:hover {
            transform: translateY(-8px);
            border-color: rgba(5, 85, 205, 0.15);
            box-shadow: 0 20px 40px rgba(5, 85, 205, 0.08);
        }

        .product-grid-img-wrap {
            height: 220px;
            overflow: hidden;
            background: linear-gradient(135deg, #f8fafc, #eef2f6);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            border-bottom: 1px solid rgba(5, 85, 205, 0.05);
        }

        .product-grid-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .product-grid-card:hover .product-grid-img-wrap img {
            transform: scale(1.06);
        }

        .product-grid-tag {
            position: absolute;
            top: 14px;
            left: 14px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(4px);
            padding: 4px 10px;
            border-radius: 999px;
            font-size: 0.68rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--primary);
            box-shadow: var(--shadow-sm);
        }

        .product-grid-status {
            position: absolute;
            top: 14px;
            right: 14px;
            background: rgba(16, 185, 129, 0.95);
            backdrop-filter: blur(4px);
            padding: 4px 10px;
            border-radius: 999px;
            font-size: 0.68rem;
            font-weight: 700;
            color: white;
            box-shadow: var(--shadow-sm);
        }

        .product-grid-status.low-stock {
            background: rgba(245, 158, 11, 0.95);
        }

        .product-grid-body {
            padding: 26px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 16px;
        }

        .product-grid-title {
            font-weight: 800;
            font-size: 1.15rem;
            margin-bottom: 8px;
            color: var(--text-main);
            line-height: 1.4;
            transition: color 0.3s;
        }

        .product-grid-card:hover .product-grid-title {
            color: var(--primary);
        }

        .product-grid-desc {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .product-grid-meta {
            display: flex;
            gap: 16px;
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-bottom: 18px;
            padding-bottom: 14px;
            border-bottom: 1px solid var(--border-light);
        }

        .product-grid-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .product-grid-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            border-top: 1px solid var(--border-light);
            padding-top: 16px;
        }

        .product-grid-price-label {
            font-size: 0.72rem;
            color: var(--text-muted);
            text-transform: uppercase;
            font-weight: 600;
            display: block;
        }

        .product-grid-price {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--text-main);
        }

        .btn-grid-primary {
            padding: 9px 22px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 999px;
            font-weight: 600;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 4px 10px rgba(5, 85, 205, 0.15);
        }

        .btn-grid-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(5, 85, 205, 0.28);
            color: white;
        }

        .btn-grid-primary i {
            transition: transform 0.3s ease;
        }

        .btn-grid-primary:hover i {
            transform: translateX(4px);
        }

        /* --- About Us Section --- */
        .about-us-section {
            padding: 90px 0;
            background: var(--bg-surface);
            position: relative;
            overflow: hidden;
            border-top: 1px solid var(--border-light);
        }

        .about-image-container {
            position: relative;
            padding: 15px;
            z-index: 5;
        }

        .about-image-wrap {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(255, 255, 255, 0.7);
            background: white;
            transition: all 0.5s ease;
        }

        .about-image-wrap img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-image-container:hover .about-image-wrap img {
            transform: scale(1.03);
        }

        .about-image-glow {
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(5, 85, 205, 0.12) 0%, transparent 70%);
            top: -10%;
            left: -10%;
            z-index: -1;
            filter: blur(40px);
        }

        .about-floating-card {
            position: absolute;
            bottom: 30px;
            right: -10px;
            z-index: 10;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            padding: 14px 20px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            gap: 14px;
            animation: floatLeft 6s ease-in-out infinite;
        }

        .about-floating-card .card-badge {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.15rem;
            box-shadow: var(--shadow-glow);
        }

        .about-floating-card .card-text strong {
            display: block;
            font-size: 0.95rem;
            color: var(--text-main);
            font-weight: 700;
        }

        .about-floating-card .card-text span {
            font-size: 0.78rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .about-content {
            padding-left: 20px;
        }

        .about-lead {
            font-size: 1.15rem;
            font-weight: 600;
            line-height: 1.6;
            color: var(--text-main);
            margin-bottom: 16px;
        }

        .about-text {
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 24px;
            font-size: 0.92rem;
        }

        .about-feature-item {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .about-feature-item .feature-icon {
            width: 42px;
            height: 42px;
            background: rgba(5, 85, 205, 0.06);
            border: 1px solid rgba(5, 85, 205, 0.12);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .about-feature-item:hover .feature-icon {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(5, 85, 205, 0.25);
        }

        .about-feature-item h5 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-main);
            margin: 0;
        }

        .about-feature-item p {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin: 0;
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .about-us-section {
                padding: 60px 0;
            }
            .about-content {
                padding-left: 0;
            }
            .about-floating-card {
                right: 15px;
                bottom: 15px;
            }
        }