@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --primary-bg: #FFFFFF;
    --secondary-bg: #FAFAFF;
    --lavender-bg: #F7F4FF;
    --text-dark: #18182A;
    --text-muted: #5F6170;
    --primary-purple: #6332D7;
    --secondary-purple: #7B2FE0;
    --electric-violet: #8C30E8;
    --electric-blue: #2563EB;
    --soft-blue: #4A8EF5;
    --cyan-accent: #2EC5F4;
    --dark-footer: #071934;
    --navy-purple: #11143D;
    
    --brand-gradient: linear-gradient(135deg, #4F46E5 0%, #6D35DF 45%, #8B2BE2 100%);
    --brand-gradient-animated: linear-gradient(120deg, #2563EB, #6332D7, #8B2BE2, #4A8EF5);
    
    --font-heading: 'Manrope', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-lg: 20px;
    --radius-md: 16px;
    --radius-sm: 8px;
    
    --shadow-card: 0 10px 35px rgba(37, 40, 90, 0.06);
    --shadow-hover: 0 16px 40px rgba(75, 45, 160, 0.12);
    
    --max-width: 1240px;
}

/* Global Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: clip;
    max-width: 100vw;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-muted);
    background-color: var(--primary-bg);
    overflow-x: clip;
    max-width: 100vw;
    width: 100%;
    line-height: 1.6;
    font-size: 15px;
    position: relative;
    padding-top: 100px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
}

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

button {
    font-family: inherit;
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Section Wrapper with generous padding */
section {
    padding: 80px 0;
    position: relative;
}

/* Utility Top Bar */
.utility-bar {
    height: 32px;
    background-color: var(--primary-bg);
    border-bottom: 1px solid rgba(100, 90, 180, 0.08);
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
}

.utility-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.utility-nav {
    display: flex;
    gap: 20px;
}

.utility-nav a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.utility-nav a:hover {
    color: var(--primary-purple);
}

.theme-toggle-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    margin-left: 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
    color: var(--primary-purple);
    background-color: rgba(100, 90, 180, 0.08);
}

.theme-toggle-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Permanently Fixed Floating Curved Navbar with Glassmorphism */
.navbar {
    height: 84px;
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: var(--max-width, 1280px);
    z-index: 9999;
    display: flex;
    align-items: center;
    border-radius: 44px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    box-shadow: 0 10px 35px 0 rgba(31, 38, 135, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: height, top, background, box-shadow;
}

.navbar.scrolled {
    height: 72px;
    top: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(28px) saturate(210%);
    -webkit-backdrop-filter: blur(28px) saturate(210%);
    box-shadow: 0 14px 40px 0 rgba(31, 38, 135, 0.12), 0 1px 0 rgba(99, 50, 215, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-color: rgba(99, 50, 215, 0.18);
}

.navbar-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 28px;
    position: relative;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--navy-purple);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    z-index: 2;
}

.navbar-logo svg {
    width: 44px;
    height: 44px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-logo span {
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-main-logo {
    height: 68px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    vertical-align: middle;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.06));
}

.navbar.scrolled .site-main-logo {
    height: 56px;
    max-width: 230px;
}

.navbar.scrolled .navbar-logo svg {
    width: 36px;
    height: 36px;
    transform: scale(0.92);
}

.navbar.scrolled .navbar-logo span {
    font-size: 24px !important;
}

.navbar-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
    margin: 0 auto;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-item {
    position: relative;
}

.navbar-item .active-bar {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background-color: var(--primary-purple);
    border-radius: 1.5px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled .navbar-item .active-bar {
    bottom: 10px;
}

.navbar-link {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 15px;
    padding: 26px 0;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled .navbar-link {
    padding: 20px 0;
    font-size: 14.5px;
}

.navbar-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 2;
}

.navbar-link:hover, .navbar-item:hover > .navbar-link {
    color: var(--primary-purple);
}

/* Navbar CTA Contact Button */
.btn-nav-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 42px !important;
    padding: 0 24px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #2563EB 0%, #6332D7 50%, #8B2BE2 100%) !important;
    border-radius: 30px !important;
    box-shadow: 0 4px 15px rgba(99, 50, 215, 0.28) !important;
    text-decoration: none !important;
    border: none !important;
    letter-spacing: 0.3px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    white-space: nowrap !important;
}

.btn-nav-cta:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(99, 50, 215, 0.42) !important;
    color: #ffffff !important;
}

.navbar.scrolled .btn-nav-cta {
    height: 38px !important;
    padding: 0 20px !important;
    font-size: 13.5px !important;
}

.navbar-link svg {
    width: 10px;
    height: 10px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}

.navbar-item:hover > .navbar-link svg {
    transform: rotate(180deg);
}

/* Dropdowns */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(14px) scale(0.97);
    transform-origin: top center;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    box-shadow: 0 24px 60px -12px rgba(25, 18, 55, 0.16), 0 0 0 1px rgba(99, 50, 215, 0.08);
    border: 1px solid rgba(100, 90, 180, 0.12);
    padding: 16px 0;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.3s ease;
    z-index: 1010;
}

.navbar-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
}

/* Staggered entrance animation for dropdown items */
.navbar-item:hover .mega-menu-item {
    animation: megaItemEntrance 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.navbar-item:hover .mega-menu-column:nth-child(1) .mega-menu-item:nth-child(1) { animation-delay: 0.04s; }
.navbar-item:hover .mega-menu-column:nth-child(1) .mega-menu-item:nth-child(2) { animation-delay: 0.08s; }
.navbar-item:hover .mega-menu-column:nth-child(1) .mega-menu-item:nth-child(3) { animation-delay: 0.12s; }
.navbar-item:hover .mega-menu-column:nth-child(1) .mega-menu-item:nth-child(4) { animation-delay: 0.16s; }
.navbar-item:hover .mega-menu-column:nth-child(3) .mega-menu-item:nth-child(1) { animation-delay: 0.06s; }
.navbar-item:hover .mega-menu-column:nth-child(3) .mega-menu-item:nth-child(2) { animation-delay: 0.10s; }
.navbar-item:hover .mega-menu-column:nth-child(3) .mega-menu-item:nth-child(3) { animation-delay: 0.14s; }
.navbar-item:hover .mega-menu-column:nth-child(3) .mega-menu-item:nth-child(4) { animation-delay: 0.18s; }

@keyframes megaItemEntrance {
    0% {
        opacity: 0;
        transform: translateY(6px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    display: block;
    padding: 10px 24px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: var(--lavender-bg);
    color: var(--primary-purple);
    padding-left: 28px;
}

/* Products 2-Column Mega Menu */
.dropdown-menu.products-mega-menu {
    min-width: 820px;
    padding: 24px 28px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 24px 60px -12px rgba(25, 18, 55, 0.16), 0 0 0 1px rgba(99, 50, 215, 0.08);
    border: 1px solid rgba(100, 90, 180, 0.12);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
}

/* Services Mega Menu */
.dropdown-menu.services-mega-menu {
    min-width: 440px;
    padding: 20px 22px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 24px 60px -12px rgba(25, 18, 55, 0.16), 0 0 0 1px rgba(99, 50, 215, 0.08);
    border: 1px solid rgba(100, 90, 180, 0.12);
    display: flex;
    flex-direction: column;
}

.dropdown-menu.services-mega-menu .mega-menu-column {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.mega-menu-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mega-menu-divider {
    width: 1px;
    background: rgba(100, 90, 180, 0.12);
    margin: 4px 0;
    align-self: stretch;
    flex-shrink: 0;
}

.mega-menu-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 11px 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-menu-item:hover {
    background: rgba(99, 50, 215, 0.05);
    transform: translateX(4px);
}

.mega-menu-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6332D7;
    margin-top: 2px;
    transition: transform 0.25s ease;
}

.mega-menu-icon svg {
    width: 28px;
    height: 28px;
    display: block;
}

.mega-menu-item:hover .mega-menu-icon {
    transform: scale(1.1);
}

.mega-menu-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mega-menu-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #4A154B;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.mega-menu-item:hover .mega-menu-title {
    color: var(--primary-purple);
}

.mega-menu-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.45;
    font-weight: 400;
}

/* --- Hero Section & Slide Overlays --- */
.hero-section {
    padding: 0;
    background: #0c0827;
    overflow: hidden;
    position: relative;
}

.hero-slider-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hero-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.hero-slide {
    width: 100%;
    flex-shrink: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0c0827;
    overflow: hidden;
}

.hero-slide-picture {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    display: block;
}

.hero-slide-img {
    width: 100%;
    max-width: 1920px;
    height: auto;
    display: block;
    pointer-events: none;
    margin: 0 auto;
}

/* Slide Overlay Container */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

.hero-overlay-container {
    width: 100%;
    max-width: var(--max-width, 1280px);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
}

.hero-overlay-content {
    max-width: 580px;
    color: #ffffff;
    text-align: left;
    pointer-events: auto;
}

/* Hero Brand Logo Badge inside slider (prominent desktop badge) */
.hero-brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.96);
    padding: 6px 16px;
    border-radius: 12px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-brand-badge:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 26px rgba(99, 50, 215, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.hero-brand-logo {
    height: 44px;
    width: auto;
    max-width: 175px;
    object-fit: contain;
    vertical-align: middle;
    display: block;
}

.hero-overlay-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.12;
    color: #ffffff;
    margin-bottom: 0;
    letter-spacing: -1px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.hero-title-highlight {
    background: linear-gradient(90deg, #A855F7 0%, #C084FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Typewriter Cursor & Animation */
.typewriter-cursor {
    display: inline-block;
    color: #C084FC;
    font-weight: 300;
    margin-left: 2px;
    animation: cursorBlink 0.7s infinite ease-in-out;
    text-shadow: 0 0 10px rgba(192, 132, 252, 0.8);
    vertical-align: baseline;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0; transform: scaleY(0.85); }
}

.hero-title-underline {
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #7C3AED 0%, #9333EA 100%);
    border-radius: 3px;
    margin: 14px 0 20px 0;
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.5);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    opacity: 0;
}

.hero-title-underline.active {
    width: 86px;
    opacity: 1;
}

.hero-overlay-desc {
    font-size: 20px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin-bottom: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    min-height: 30px;
}

.hero-desc-highlight {
    color: #C084FC;
    font-weight: 700;
}

.hero-dots-wrapper {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--max-width, 1280px);
    padding: 0 40px;
    z-index: 20;
    pointer-events: none;
}

.hero-dots {
    pointer-events: auto;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: #ffffff;
    width: 24px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

/* Hero Illustration (Right) */
.hero-illustration {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background blob inside illustration */
.hero-illustration-blob {
    position: absolute;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(247, 244, 255, 0.9) 0%, rgba(240, 235, 255, 0.4) 70%, rgba(255, 255, 255, 0) 100%);
    border-radius: 50%;
    z-index: 1;
}

.smartphone-wrapper {
    position: relative;
    width: 210px;
    height: 420px;
    z-index: 3;
}

.smartphone-device {
    width: 100%;
    height: 100%;
    background: #1E1B4B;
    border: 8px solid #1E293B;
    border-radius: 32px;
    box-shadow: 0 25px 60px rgba(17, 20, 61, 0.15);
    position: relative;
    overflow: hidden;
}

.smartphone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 16px;
    background: #1E293B;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 10;
}

.smartphone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1E1B4B 0%, #312E81 100%);
    padding: 30px 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Sample notifications on mobile screen */
.screen-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 8px 12px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
}

.screen-card-header {
    display: flex;
    justify-content: space-between;
    font-size: 8px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 4px;
}

.screen-card-body {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    margin-bottom: 4px;
}

.screen-card-body-short {
    width: 60%;
    height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
}

/* Floating widgets outside phone */
.floating-widget {
    position: absolute;
    z-index: 5;
}

.fw-bubble {
    background: linear-gradient(135deg, #6332D7, #8C30E8);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(99, 50, 215, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fw-bubble svg {
    color: var(--primary-bg);
}

.fw-speech-top {
    top: 50px;
    right: 40px;
    width: 48px;
    height: 48px;
}

.fw-envelope {
    top: 130px;
    right: -10px;
    width: 44px;
    height: 44px;
    background: #2563EB;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.fw-bell {
    bottom: 120px;
    right: 20px;
    width: 46px;
    height: 46px;
    background: #F59E0B;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.fw-avatar-left {
    top: 60px;
    left: 40px;
    width: 40px;
    height: 40px;
    background: #8C30E8;
    box-shadow: 0 8px 24px rgba(140, 48, 232, 0.3);
}

.fw-phone-left {
    bottom: 140px;
    left: 30px;
    width: 44px;
    height: 44px;
    background: #10B981;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.fw-chat-left {
    bottom: 60px;
    left: 80px;
    width: 52px;
    height: 52px;
}

/* Floating mini chat card */
.fw-chat-card {
    background: var(--primary-bg);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(37, 40, 90, 0.08);
    border: 1px solid rgba(100, 90, 180, 0.08);
    padding: 10px 14px;
    width: 160px;
}

.fw-chat-card-user {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.fw-chat-card-avatar {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--lavender-bg);
}

.fw-chat-card-name {
    font-size: 8px;
    font-weight: 700;
    color: var(--text-dark);
}

.fw-chat-card-msg {
    font-size: 8px;
    color: var(--text-muted);
    line-height: 1.3;
}

.fw-card-1 {
    top: 140px;
    left: -60px;
}

.fw-card-2 {
    bottom: 210px;
    right: -70px;
    width: 140px;
}

/* Hand holding phone representation */
.hand-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

/* --- Section Titles --- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header h2 span.highlight {
    color: var(--primary-purple);
}

.section-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Trusted Brands Logo Bar --- */
.trusted-section {
    padding: 50px 0;
    border-top: 1px solid rgba(100, 90, 180, 0.05);
    background-color: var(--secondary-bg);
}

.trusted-title {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 24px;
}

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

/* --- Team Illustration & Statistics Section --- */
.team-stats-section {
    padding-bottom: 120px;
    background-color: var(--primary-bg);
}

.team-illustration-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 4;
}

.team-photo-card {
    position: relative;
    width: 100%;
    max-width: 820px;
    height: 320px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(37, 40, 90, 0.12);
    border: 4px solid #ffffff;
}

.team-real-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-photo-card:hover .team-real-img {
    transform: scale(1.03);
}

.team-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 20, 61, 0.08) 0%, rgba(99, 50, 215, 0.35) 100%);
    pointer-events: none;
}

.team-photo-badge {
    position: absolute;
    bottom: 20px;
    left: 24px;
    background: rgba(17, 20, 61, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.team-photo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    display: inline-block;
}

/* --- Contact Page Styles --- */
.contact-content {
    padding: 100px 0;
    background: var(--secondary-bg);
}

.contact-content > .container {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 60px;
    max-width: 1200px;
}

/* --- Dark Footer Overlay & Styles --- */
.footer {
    background-color: var(--dark-footer);
    background-image: linear-gradient(135deg, #071934, #101B42);
    color: rgba(255, 255, 255, 0.78);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-decor {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.15;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1.5fr 1.5fr 1.8fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--primary-bg);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 15px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-bg);
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-logo-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-logo:hover .footer-logo-card {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(99, 50, 215, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.footer-main-logo {
    height: 64px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    vertical-align: middle;
    display: block;
}

.footer-logo svg {
    width: 28px;
    height: 28px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-bg);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-purple);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 400;
}

.footer-links a:hover {
    color: #A989FF;
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-purple);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Background blob effects */
.background-blob-wrapper {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.blob-purple {
    background: rgba(99, 50, 215, 0.08);
    width: 500px;
    height: 500px;
}

.blob-blue {
    background: rgba(37, 99, 235, 0.07);
    width: 450px;
    height: 450px;
}

.blob-violet {
    background: rgba(139, 43, 226, 0.06);
    width: 480px;
    height: 480px;
}

.blob-cyan {
    background: rgba(46, 197, 244, 0.05);
    width: 400px;
    height: 400px;
}

/* Page Banner Base Styles */
.about-banner {
    padding: 130px 0;
}

.page-banner-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.page-banner-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* ==========================================================================
   Mobile Responsive Media Queries
   ========================================================================== */

/* 1. Viewports < 1200px (Large Tablets / Laptops) */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    .hero-overlay-title {
        font-size: 44px !important;
    }
    .hero-overlay-desc {
        font-size: 18px !important;
        margin-bottom: 22px !important;
    }
    .hero-overlay-content {
        max-width: 500px !important;
    }
    .stats-bar {
        grid-template-columns: repeat(4, 1fr) !important;
        padding: 22px 20px !important;
        gap: 12px !important;
        margin: 30px auto !important;
    }
    .stat-item {
        padding: 0 12px !important;
        gap: 12px !important;
    }
    .stat-number {
        font-size: 24px !important;
    }
    .stat-label {
        font-size: 12px !important;
    }
    .r2t-container {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 30px !important;
    }
    .r2t-left {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* 2. Viewports < 992px (Tablets / Mobiles Menu Drawer) */
@media (max-width: 992px) {
    .utility-bar {
        display: none !important; /* Hide utility bar to save vertical space on mobile */
    }

    body {
        padding-top: 98px !important;
    }

    .navbar {
        top: 10px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: calc(100% - 20px) !important;
        height: 80px !important;
        border-radius: 40px !important;
    }

    .navbar.scrolled {
        top: 8px !important;
        height: 70px !important;
    }

    .navbar-container {
        padding: 0 18px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .navbar-logo {
        display: inline-flex !important;
        align-items: center !important;
        gap: 10px !important;
        margin: 0 !important;
    }

    .site-main-logo {
        height: 66px !important;
        max-width: 250px !important;
    }

    .navbar.scrolled .site-main-logo {
        height: 56px !important;
        max-width: 220px !important;
    }

    .footer-logo-card {
        padding: 8px 16px !important;
    }

    .footer-main-logo {
        height: 58px !important;
        max-width: 220px !important;
    }

    .navbar-logo svg {
        width: 34px !important;
        height: 34px !important;
        flex-shrink: 0 !important;
    }

    .navbar-logo span {
        font-size: 20px !important;
        font-weight: 800 !important;
        white-space: nowrap !important;
        line-height: 1 !important;
    }

    /* Mobile toggle display */
    .mobile-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 16px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        outline: none;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }

    .mobile-toggle span {
        width: 100%;
        height: 2px;
        background-color: var(--navy-purple);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Navbar menu drawer layout (Curved Glassmorphic Drawer) */
    .navbar-menu {
        position: fixed;
        top: 80px;
        left: 12px;
        width: calc(100% - 24px);
        max-height: calc(100vh - 100px);
        background: #ffffff;
        border-radius: 24px;
        border: 1px solid rgba(100, 90, 180, 0.12);
        flex-direction: column;
        gap: 0 !important;
        padding: 20px 24px !important;
        overflow-y: auto;
        align-items: flex-start !important;
        transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
        box-shadow: 0 20px 50px rgba(31, 38, 135, 0.15);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px) scale(0.98);
    }

    .navbar-menu.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) scale(1) !important;
        left: 12px !important;
    }

    .navbar-item {
        width: 100%;
        border-bottom: 1px solid rgba(100, 90, 180, 0.05);
    }

    .navbar-link {
        padding: 16px 0 !important;
        font-size: 16px !important;
        width: 100%;
        justify-content: space-between;
        color: var(--navy-purple) !important;
    }

    .navbar-link svg {
        width: 12px !important;
        height: 12px !important;
    }

    /* Sub-menu dropdown list in drawer */
    .dropdown-menu {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        min-width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        background: rgba(100, 90, 180, 0.04) !important;
        border-radius: 14px !important;
        margin: 6px 0 12px 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none !important;
        padding: 8px 6px !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        pointer-events: auto !important;
        filter: none !important;
    }

    .dropdown-menu.mobile-show {
        display: flex !important;
        flex-direction: column !important;
    }

    .dropdown-menu.products-mega-menu,
    .dropdown-menu.services-mega-menu {
        display: none !important;
        flex-direction: column !important;
        gap: 2px !important;
        padding: 8px 6px !important;
        min-width: 100% !important;
        width: 100% !important;
        background: rgba(100, 90, 180, 0.04) !important;
        box-shadow: none !important;
        border: 1px solid rgba(100, 90, 180, 0.08) !important;
        border-radius: 14px !important;
        transform: none !important;
        left: 0 !important;
        top: 0 !important;
        margin: 6px 0 12px 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        filter: none !important;
    }

    .dropdown-menu.products-mega-menu.mobile-show,
    .dropdown-menu.services-mega-menu.mobile-show {
        display: flex !important;
    }

    .dropdown-menu.products-mega-menu .mega-menu-divider {
        display: none !important;
    }

    .dropdown-menu.products-mega-menu .mega-menu-column,
    .dropdown-menu.services-mega-menu .mega-menu-column {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 2px !important;
    }

    .mega-menu-item {
        padding: 10px 12px !important;
        gap: 12px !important;
        border-radius: 10px !important;
        background: transparent !important;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .mega-menu-item:hover,
    .mega-menu-item:active {
        background: rgba(99, 50, 215, 0.08) !important;
        transform: none !important;
    }

    .mega-menu-icon {
        width: 28px !important;
        height: 28px !important;
        margin-top: 1px !important;
        flex-shrink: 0 !important;
    }

    .mega-menu-icon svg {
        width: 24px !important;
        height: 24px !important;
    }

    .mega-menu-title {
        font-size: 14px !important;
        font-weight: 700 !important;
        color: #4A154B !important;
    }

    .mega-menu-desc {
        font-size: 11.5px !important;
        line-height: 1.4 !important;
        color: #64748B !important;
    }

    .navbar-item.dropdown-open > .navbar-link svg {
        transform: rotate(180deg) !important;
    }

    .dropdown-item {
        padding: 10px 20px !important;
        font-size: 14.5px !important;
    }

    .navbar-right {
        display: none !important;
    }

    .mobile-only-cta {
        display: block !important; /* Show Enquiry button inside menu drawer */
    }

    .btn-nav-cta {
        width: 100% !important;
        height: 46px !important;
        border-radius: 12px !important;
        font-size: 15px !important;
    }

    /* Sub-page Banners Adjustments */
    .about-banner, .products-banner, .resources-banner, .contact-banner {
        padding: 80px 0 !important;
    }
    .page-banner-title, .about-banner h1, .products-banner h1, .resources-banner h1, .contact-banner h1 {
        font-size: 36px !important;
        letter-spacing: -0.5px !important;
    }
    .page-banner-desc, .about-banner p, .products-banner p, .resources-banner p, .contact-banner p {
        font-size: 15.5px !important;
    }

    /* Solutions Section */
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    /* CX Metrics Section */
    .cx-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    /* Hero Overlay Tablet */
    .hero-overlay-container {
        padding: 0 24px !important;
    }
    .hero-overlay-title {
        font-size: 36px !important;
    }
    .hero-overlay-desc {
        font-size: 16px !important;
        margin-bottom: 20px !important;
    }
    .hero-overlay-content {
        max-width: 440px !important;
    }
    .btn-hero-pill {
        padding: 11px 24px !important;
        font-size: 14px !important;
    }
    .hero-dots-wrapper {
        bottom: 22px !important;
        padding: 0 24px !important;
    }
}

/* 3. Viewports < 768px (Mobiles) */
@media (max-width: 768px) {
    .hero-section {
        padding: 0 !important;
        width: 100% !important;
    }
    .hero-slider-viewport {
        width: 100% !important;
        overflow: hidden !important;
    }
    .hero-slide {
        height: auto !important;
        min-height: unset !important;
        width: 100% !important;
        background: #0c0827 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
    }
    .hero-slide picture,
    .hero-slide-picture {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }
    .hero-slide img,
    .hero-slide-img {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
        display: block !important;
    }
    .hero-slide-overlay {
        position: absolute !important;
        inset: 0 !important;
        display: flex !important;
        align-items: flex-start !important;
        padding-top: 36px !important;
    }
    .hero-overlay-container {
        padding: 0 20px !important;
    }
    .hero-overlay-content {
        max-width: 92% !important;
    }
    .hero-brand-badge {
        padding: 3px 8px !important;
        margin-bottom: 8px !important;
        border-radius: 8px !important;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.4) !important;
    }
    .hero-brand-logo {
        height: 20px !important;
        width: auto !important;
        max-width: 75px !important;
    }
    .hero-overlay-title {
        font-size: 29px !important;
        line-height: 1.15 !important;
        letter-spacing: -0.5px !important;
    }
    .hero-title-underline {
        width: 65px !important;
        height: 3px !important;
        margin: 10px 0 14px 0 !important;
    }
    .hero-overlay-desc {
        font-size: 14px !important;
        line-height: 1.4 !important;
        margin-bottom: 18px !important;
    }
    .btn-hero-pill {
        padding: 9px 22px !important;
        font-size: 13px !important;
        border-radius: 40px !important;
    }
    .hero-dots-wrapper {
        bottom: 12px !important;
        padding: 0 16px !important;
    }
    .hero-dots {
        justify-content: center !important;
        width: 100% !important;
        gap: 6px !important;
    }
    .hero-dot {
        width: 6px !important;
        height: 6px !important;
    }
    .hero-dot.active {
        width: 18px !important;
    }

    .team-photo-card {
        height: 200px !important;
        border-radius: 16px !important;
    }
    .team-illustration-wrapper {
        margin-bottom: 28px !important;
    }
    .team-photo-badge {
        bottom: 12px !important;
        left: 14px !important;
        font-size: 11px !important;
        padding: 6px 12px !important;
    }

    /* Compact Mobile Statistics Bar */
    .stats-bar {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px 8px !important;
        padding: 16px 14px !important;
        border-radius: 18px !important;
        margin: 0 auto !important;
        max-width: 100% !important;
    }
    .stat-item {
        padding: 4px 6px !important;
        gap: 10px !important;
    }
    .stat-item::after {
        display: none !important;
    }
    .stat-icon {
        width: 36px !important;
        height: 36px !important;
        border-radius: 10px !important;
    }
    .stat-icon svg {
        width: 18px !important;
        height: 18px !important;
    }
    .stat-number {
        font-size: 17px !important;
        line-height: 1.15 !important;
    }
    .stat-label {
        font-size: 11px !important;
        line-height: 1.25 !important;
        margin-top: 2px !important;
    }

    /* Compact Side-by-Side CX Metrics Section on Mobile */
    .cx-section {
        padding: 50px 0 !important;
    }
    .cx-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px 10px !important;
        margin: 28px 0 !important;
    }
    .cx-card {
        height: auto !important;
        min-height: unset !important;
        padding: 20px 12px 18px !important;
        border-radius: 18px !important;
        box-shadow: 0 8px 24px rgba(37, 40, 90, 0.05) !important;
    }
    .cx-icon-wrapper {
        width: 44px !important;
        height: 44px !important;
        margin-bottom: 12px !important;
    }
    .cx-icon-wrapper svg {
        width: 20px !important;
        height: 20px !important;
    }
    .cx-metric {
        font-size: 24px !important;
        margin-bottom: 4px !important;
    }
    .cx-label {
        font-size: 11.5px !important;
        line-height: 1.35 !important;
    }
    .cx-label br {
        display: none !important;
    }

    /* Mobile Solutions Cards Horizontal Scroll */
    .solutions-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 14px !important;
        padding: 10px 4px 18px 4px !important;
        margin-top: 24px !important;
        scrollbar-width: none !important;
    }
    .solutions-grid::-webkit-scrollbar {
        display: none !important;
    }
    .solution-card {
        flex: 0 0 240px !important;
        min-width: 240px !important;
        max-width: 240px !important;
        scroll-snap-align: start !important;
        padding: 20px 18px !important;
        border-radius: 18px !important;
        background: #ffffff !important;
        border: 1px solid rgba(100, 90, 180, 0.08) !important;
        box-shadow: 0 8px 24px rgba(37, 40, 90, 0.05) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }
    .sol-icon {
        width: 44px !important;
        height: 44px !important;
        border-radius: 12px !important;
        margin-bottom: 14px !important;
    }
    .sol-icon svg {
        width: 22px !important;
        height: 22px !important;
    }
    .sol-title {
        font-size: 16px !important;
        margin-bottom: 6px !important;
        font-weight: 700 !important;
    }
    .sol-desc {
        font-size: 12.5px !important;
        line-height: 1.4 !important;
        margin-bottom: 16px !important;
    }
    .sol-btn {
        font-size: 12px !important;
        padding: 7px 16px !important;
        border-radius: 10px !important;
        align-self: stretch !important;
        text-align: center !important;
    }

    .section-header h2 {
        font-size: 28px !important;
    }

    .about-banner {
        padding: 60px 0 50px !important;
    }
    .page-banner-title {
        font-size: 28px !important;
        letter-spacing: -0.5px !important;
    }
    .page-banner-desc {
        font-size: 14.5px !important;
    }
    .horizon-title {
        font-size: 26px !important;
    }
    .horizon-subtitle {
        font-size: 14px !important;
    }

    .btn-nav {
        font-size: 13px !important;
        padding: 0 12px !important;
        height: 38px !important;
    }

    /* Contact Us Split */
    .contact-content {
        padding: 50px 0 !important;
        overflow: hidden !important;
    }
    .contact-content > .container {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        padding: 0 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Products */
    .products-list > .container > div {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

@media (max-width: 480px) {
    .hero-slide-overlay {
        padding-top: 20px !important;
    }
    .hero-brand-badge {
        padding: 3px 8px !important;
        margin-bottom: 6px !important;
        border-radius: 8px !important;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.4) !important;
    }
    .hero-brand-logo {
        height: 20px !important;
        width: auto !important;
        max-width: 75px !important;
    }
    .hero-overlay-title {
        font-size: 24px !important;
    }
    .hero-overlay-desc {
        font-size: 12.5px !important;
        margin-bottom: 14px !important;
    }
    .btn-hero-pill {
        padding: 8px 18px !important;
        font-size: 12px !important;
    }
}

/* 4. Viewports < 576px (Small Mobiles) */
@media (max-width: 576px) {
    .btn-nav {
        display: none !important; /* Hide Enquiry button from header row to prevent logo squish */
    }

    .navbar {
        height: 76px !important;
        top: 6px !important;
        width: calc(100% - 14px) !important;
    }

    .navbar.scrolled {
        height: 68px !important;
        top: 6px !important;
    }

    .navbar-container {
        padding: 0 14px !important;
    }

    .site-main-logo {
        height: 62px !important;
        max-width: 230px !important;
    }

    .navbar.scrolled .site-main-logo {
        height: 54px !important;
        max-width: 200px !important;
    }

    .footer-main-logo {
        height: 54px !important;
        max-width: 200px !important;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px 6px !important;
        padding: 14px 10px !important;
        border-radius: 14px !important;
    }
    .stat-item {
        padding: 2px 4px !important;
        gap: 8px !important;
    }
    .stat-icon {
        width: 32px !important;
        height: 32px !important;
        border-radius: 8px !important;
    }
    .stat-icon svg {
        width: 16px !important;
        height: 16px !important;
    }
    .stat-number {
        font-size: 15.5px !important;
        line-height: 1.15 !important;
    }
    .stat-label {
        font-size: 10px !important;
        line-height: 1.2 !important;
        margin-top: 1px !important;
    }

    .cx-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px 8px !important;
        margin: 20px 0 !important;
    }
    .cx-card {
        padding: 16px 8px 14px !important;
        border-radius: 16px !important;
    }
    .cx-icon-wrapper {
        width: 38px !important;
        height: 38px !important;
        margin-bottom: 10px !important;
    }
    .cx-icon-wrapper svg {
        width: 18px !important;
        height: 18px !important;
    }
    .cx-metric {
        font-size: 20px !important;
        margin-bottom: 2px !important;
    }
    .cx-label {
        font-size: 10.5px !important;
        line-height: 1.3 !important;
    }

    .solution-card {
        flex: 0 0 220px !important;
        min-width: 220px !important;
        max-width: 220px !important;
        padding: 16px 14px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: 12px !important;
        text-align: center !important;
    }
}
