@charset "UTF-8";
/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION BAR
   ═══════════════════════════════════════════════════════════════════════════ */
#frontNav {
    background: #0d1b2a !important;
}

#attentionItem {
    color: #ffe01b !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA VIDEO BUTTON - Premium Design (From 222.css)
   ═══════════════════════════════════════════════════════════════════════════ */
.videoButton {
    margin-top: 50px !important;
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    width: auto !important;
    min-height: 68px !important;
    padding: 8px 32px !important;
    font-size: clamp(1.05rem, 1vw + 0.85rem, 1.22rem) !important;
    text-transform: uppercase !important;
    text-align: center !important;
    letter-spacing: 1.4px !important;
    line-height: 1.3 !important;
    color: #ffffff !important;
    background: linear-gradient(135deg,#c84d00 0%,#e86610 52%,#ff8a2d 100%) !important;
    border: 2px solid rgba(255,255,255,0.42) !important;
    border-radius: 48px !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    outline: none !important;
    overflow: hidden !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.35) !important;
    backdrop-filter: saturate(140%) contrast(105%) !important;
    -webkit-backdrop-filter: saturate(140%) contrast(105%) !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform: translateY(0) scale(1) !important;
    -webkit-font-smoothing: antialiased !important;
    height: auto !important;
    box-shadow: 0 8px 18px -6px rgba(0,0,0,0.38), 0 3px 6px -3px rgba(0,0,0,0.3) !important;
}


/* Shine sweep effect on hover - OVERRIDE external CSS */
@keyframes shineSwipe {
    0% {
        left: -50% !important;
    }
    100% {
        left: 120% !important;
    }
}

.videoButton::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: -50% !important;
    right: auto !important;
    bottom: auto !important;
    width: 40% !important;
    height: 100% !important;
    border-radius: 0 !important;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 30%,
        rgba(255, 255, 255, 0.95) 50%,
        rgba(255, 255, 255, 0.4) 70%,
        transparent 100%
    ) !important;
    transform: none !important;
    pointer-events: none !important;
    z-index: 10 !important;
    opacity: 1 !important;
    transition: left 0.6s ease-out !important;
}

.videoButton:hover::before {
    left: 120% !important;
    transform: none !important;
    opacity: 1 !important;
}




.videoButton span,
.videoButton .icon {
    position: relative !important;
    z-index: 2 !important;
}

.videoButton:hover {
    background: linear-gradient(145deg,#031937 0%, #052b54 35%, #093f78 58%, #0d3c6b 78%, #00458f 100%) !important;
    color: #ffffff !important;
    transform: translateY(-6px) scale(1.05) !important;
    border-color: rgba(255,255,255,0.95) !important;
    box-shadow: 
        0 25px 50px -15px rgba(6,34,82,0.8),
        0 15px 30px -10px rgba(20,70,140,0.6),
        0 0 30px 5px rgba(100, 180, 255, 0.4),
        0 0 60px 10px rgba(50, 130, 220, 0.2) !important;
}

/* Active tactile press */
.videoButton:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 10px 24px -10px rgba(12,34,70,0.65), 0 4px 10px -4px rgba(20,60,120,0.42) !important;
}

/* Icon inside the button */
.videoButton .icon {
    width: 30px !important;
    height: 30px !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
    opacity: 0.92 !important;
    stroke: currentColor !important;
    stroke-width: 1.5 !important;
    transition: transform 0.4s cubic-bezier(.4,.2,.2,1), opacity 0.35s ease !important;
}

.videoButton:hover .icon {
    transform: translateX(7px) scale(1.05) !important;
    opacity: 1 !important;
}

.videoButton:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.6), 0 6px 16px -6px rgba(0,0,0,0.45) !important;
    border-color: #ffffffa0 !important;
}


/* Mobile adjustments */
@media (max-width: 600px) {
    .heroCtaLink {
        display: flex !important;
        width: 100% !important;
        justify-content: center !important;
    }
    .videoButton {
        margin: 24px auto 0 !important;
        width: min(100%, 440px) !important;
        min-height: 56px !important;
        padding: 15px 22px !important;
        font-size: clamp(16px, 4.4vw, 18px) !important;
        letter-spacing: 0.6px !important;
        line-height: 1.3 !important;
        gap: 10px !important;
    }
    .videoButton .icon { 
        width: 24px !important; 
        height: 24px !important; 
    }
}

@media (max-width: 520px) {
    .videoButton {
        margin: 20px auto 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        width: calc(100% - 40px) !important;
        max-width: 420px !important;
        padding: 15px 20px !important;
    }
    .videoButton span {
        display: block !important;
        font-size: clamp(16px, 4.6vw, 18px) !important;
        line-height: 1.3 !important;
        font-weight: 700 !important;
        letter-spacing: 0.6px !important;
        text-wrap: balance !important;
    }
    .videoButton .icon {
        display: none !important;
    }
}


/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .videoButton:hover { transform: none !important; }
    .videoButton::before, .videoButton:hover::before { animation: none !important; opacity: 0 !important; }
    .videoButton::after { display: none !important; }
    .videoButton { transition: none !important; }
    .videoButton .shimmer-effect { animation: none !important; opacity: 0 !important; }
}


/* Mobile */
@media (max-width: 480px) {
    /* ═══════════════════════════════════════════════════════════════════════════
       GLOBAL MOBILE RESET - Force all sections to be perfectly centered
       ═══════════════════════════════════════════════════════════════════════════ */
    body {
        overflow-x: hidden !important;
    }
    
    section,
    .productsShowcaseSection,
    .howItWorksPremiumSection,
    .trustPremiumSection,
    .certPremiumSection,
    .faqPremiumSection,
    .whyChoosePremiumSection,
    .reviewsPremiumSection,
    .studyAnywhereSection,
    .teamsTrainingSection {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    .productsShowcaseInner,
    .howItWorksInner,
    .trustPremiumInner,
    .certPremiumInner,
    .faqPremiumInner,
    .whyChooseInner,
    .reviewsPremiumInner,
    .studyAnywhereInner,
    .teamsTrainingInner {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Main Banner - balanced height and spacing.
       CLS FIX: reserve a stable min-height so the banner doesn't grow as
       the web fonts and dynamic subtitle swap in. Value chosen to comfortably
       fit title + subtitle + description + CTA at 480px width without forcing
       extra blank space when fonts are already loaded. */
    #mainBanner {
        height: auto !important;
        min-height: 620px !important;
        padding-bottom: 40px !important;
        row-gap: 0 !important;
    }
    
    .mainBannerContent {
        padding-top: 30px !important;
        row-gap: 12px !important;
    }
    
    .mainBannerRight {
        max-width: 100% !important;
        padding: 0 20px !important;
        width: 100% !important;
    }
    
    /* Video Button: full width, readable label on maximum two balanced lines */
    .videoButton {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 420px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 15px 20px !important;
    }
    
    .videoButton span {
        display: block !important;
        font-size: clamp(16px, 4.6vw, 18px) !important;
        font-weight: 700 !important;
        letter-spacing: 0.6px !important;
        line-height: 1.3 !important;
        text-wrap: balance !important;
    }
    
    /* Hide the ::before pulse effect on mobile */
    .videoButton::before {
        display: none !important;
    }
    
    /* ═══════════════════════════════════════════════════════════════════════════
       PRODUCTS SECTION - Perfect centering on mobile with symmetric spacing
       ═══════════════════════════════════════════════════════════════════════════ */
    .productsShowcaseSection {
        width: 100% !important;
        max-width: 100vw !important;
        padding: 32px 20px 40px 20px !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .productsShowcaseInner {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    
    .productsShowcaseHeader {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    
    .productsShowcaseKicker {
        margin: 0 auto 16px auto !important;
        padding: 5px 7px 5px 5px !important;
        gap: 8px !important;
        font-size: 14px !important;
        letter-spacing: 1.2px !important;
        max-width: calc(100vw - 40px) !important;
        white-space: nowrap !important;
        box-sizing: border-box !important;
    }
    
    .productsShowcaseTitle {
        text-align: center !important;
        width: 100% !important;
        max-width: 340px !important;
        margin: 0 auto 10px auto !important;
        padding: 0 !important;
        font-size: 27px !important;
        line-height: 1.15 !important;
        letter-spacing: -0.8px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        box-sizing: border-box !important;
    }
    
    .productsShowcaseSubtitle {
        text-align: center !important;
        width: 100% !important;
        max-width: 330px !important;
        margin: 0 auto 24px auto !important;
        padding: 0 !important;
        font-size: 16px !important;
        line-height: 1.6 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        box-sizing: border-box !important;
    }
    
    .overImgDashWrapLanding {
        margin: 0 auto 24px auto !important;
        display: block !important;
    }
    
    .landingProductsGrid {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .productsShowcaseHeader {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .landingProductsGrid {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 20px !important;
        margin: 0 auto !important;
        gap: 20px !important;
        box-sizing: border-box !important;
    }
    
    .landingProductCard {
        width: 100% !important;
        max-width: 340px !important;
        margin: 0 auto !important;
    }
    
    /* ═══════════════════════════════════════════════════════════════════════════
       DIVIDER LINE - Perfectly centered on mobile
       ═══════════════════════════════════════════════════════════════════════════ */
    .productsDividerWrapper {
        width: 100% !important;
        max-width: 100% !important;
        padding: 35px 0 !important;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }
    
    .productsDividerLine {
        width: 200px !important;
        max-width: 200px !important;
        min-width: 200px !important;
        height: 2px !important;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(0, 102, 255, 0.2) 20%,
            rgba(0, 102, 255, 0.4) 50%,
            rgba(0, 102, 255, 0.2) 80%,
            transparent 100%) !important;
        position: relative !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        margin: 0 auto !important;
    }
    
    .productsDividerLine::before {
        width: 10px !important;
        height: 10px !important;
        opacity: 1 !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    /* ═══════════════════════════════════════════════════════════════════════════
       LANGUAGES SECTION - Perfectly centered on mobile
       ═══════════════════════════════════════════════════════════════════════════ */
    .productsLanguagesWrapper {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .productsLanguagesText {
        font-size: 18px !important;
        line-height: 1.65 !important;
        text-align: center !important;
        padding: 0 !important;
        margin: 0 auto 25px auto !important;
        width: 100% !important;
        max-width: 350px !important;
        display: block !important;
    }
    
    /* ═══════════════════════════════════════════════════════════════════════════
       GLOBAL MOBILE CENTERING - All sections perfectly centered
       ═══════════════════════════════════════════════════════════════════════════ */
    
    /* How It Works Section */
    .howItWorksPremiumSection {
        width: 100% !important;
        max-width: 100% !important;
        padding: 50px 20px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    .howItWorksInner {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .howItWorksContent {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        text-align: center !important;
        align-items: center !important;
    }
    
    .howItWorksImageWrapper {
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .howItWorksImageFrame {
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
    }
    
    .howItWorksImageFrame img {
        width: 100% !important;
        height: auto !important;
    }
    
    /* Trust Section */
    .trustPremiumSection {
        width: 100% !important;
        max-width: 100% !important;
        padding: 50px 20px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    .trustPremiumInner {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .trustImageWrapper {
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto !important;
    }
    
    .trustContentWrapper {
        width: 100% !important;
        text-align: center !important;
        align-items: center !important;
    }
    
    /* Certificate Section */
    .certPremiumSection {
        width: 100% !important;
        max-width: 100% !important;
        padding: 50px 20px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    .certPremiumInner {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .certCTAButton {
        width: auto !important;
        max-width: none !important;
        padding: 16px 32px !important;
        font-size: 18px !important;
        display: inline-flex !important;
    }
    
    /* FAQ Section */
    .faqPremiumSection {
        width: 100% !important;
        max-width: 100% !important;
        padding: 50px 20px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    .faqPremiumInner {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    /* Why Choose Section */
    .whyChoosePremiumSection {
        width: 100% !important;
        max-width: 100% !important;
        padding: 50px 20px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    .whyChooseInner {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    /* Reviews Section */
    .reviewsPremiumSection {
        width: 100% !important;
        max-width: 100% !important;
        padding: 50px 20px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    .reviewsPremiumInner {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    /* ═══════════════════════════════════════════════════════════════════════════
       STUDY ANYWHERE SECTION - Perfect mobile centering
       ═══════════════════════════════════════════════════════════════════════════ */
    .studyAnywhereSection {
        width: 100% !important;
        max-width: 100% !important;
        padding: 50px 20px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    .studyAnywhereInner {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
    }
    
    .studyContentWrapper {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .studyImageWrapper {
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        order: -1 !important;
    }
    
    .studyImageFrame {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    
    .studyImageFrame img {
        width: 100% !important;
        height: auto !important;
    }
    
    .studyTitle {
        padding: 0 10px !important;
        text-align: center !important;
    }
    
    .studyIntro {
        font-size: 16px !important;
        text-align: center !important;
        padding: 0 5px !important;
        max-width: 100% !important;
    }
    
    .studyGrid {
        width: 100% !important;
        text-align: left !important;
    }
    
    .studyCTAButton {
        width: auto !important;
        max-width: none !important;
        padding: 16px 32px !important;
        font-size: 18px !important;
        display: inline-flex !important;
    }
    
    .studyEyebrow {
        margin: 0 auto !important;
    }
    
    .studyFloatingBadge {
        display: none !important;
    }
    
    /* ═══════════════════════════════════════════════════════════════════════════
       TEAMS TRAINING SECTION - Perfect mobile centering
       ═══════════════════════════════════════════════════════════════════════════ */
    .teamsTrainingSection {
        width: 100% !important;
        max-width: 100% !important;
        padding: 50px 20px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    .teamsTrainingInner {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .teamsContentWrapper {
        width: 100% !important;
        text-align: center !important;
        align-items: center !important;
    }
    
    .teamsImageWrapper {
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
    }
    
    .teamsTitle {
        text-align: center !important;
    }
    
    .teamsIntro {
        font-size: 16px !important;
        text-align: center !important;
    }
    
    .teamsCTAButton {
        width: auto !important;
        padding: 16px 32px !important;
        display: inline-flex !important;
    }
    
    .teamsImageFrame {
        position: relative !important;
    }
    
    .teamsFloatingBadge {
        padding: 12px 18px !important;
        font-size: clamp(16px, 4.5vw, 20px) !important;
        left: 50% !important;
        right: auto !important;
        bottom: 10px !important;
        transform: translateX(-50%) !important;
        white-space: nowrap !important;
        animation: teamsBadgeFloat 4s ease-in-out infinite !important;
    }
    
    /* ═══════════════════════════════════════════════════════════════════════════
       FLAGS MARQUEE - Premium Mobile Design 2025
       Seamless infinite scroll with glassmorphism container
       ═══════════════════════════════════════════════════════════════════════════ */
    .productsLanguagesWrapper .languagesMarquee {
        position: relative !important;
        overflow: hidden !important;
        width: 100% !important;
        padding: 12px 0 !important;
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.95) 0%, 
            rgba(248, 250, 252, 0.98) 50%,
            rgba(255, 255, 255, 0.95) 100%) !important;
        border-radius: 16px !important;
        border: 1px solid rgba(0, 102, 255, 0.08) !important;
        box-shadow: 
            0 4px 20px rgba(0, 102, 255, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
        margin: 0 auto !important;
        max-width: calc(100% - 20px) !important;
    }
    
    /* Fade edges for smooth visual */
    .productsLanguagesWrapper .languagesMarquee::before,
    .productsLanguagesWrapper .languagesMarquee::after {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        bottom: 0 !important;
        width: 30px !important;
        z-index: 2 !important;
        pointer-events: none !important;
    }
    
    .productsLanguagesWrapper .languagesMarquee::before {
        left: 0 !important;
        background: linear-gradient(90deg, 
            rgba(255, 255, 255, 1) 0%, 
            rgba(255, 255, 255, 0) 100%) !important;
    }
    
    .productsLanguagesWrapper .languagesMarquee::after {
        right: 0 !important;
        background: linear-gradient(270deg, 
            rgba(255, 255, 255, 1) 0%, 
            rgba(255, 255, 255, 0) 100%) !important;
    }
    
    .productsLanguagesWrapper .flags-track {
        display: flex !important;
        flex-wrap: nowrap !important;
        width: max-content !important;
        animation: flagsMarqueeLanding 25s linear infinite !important;
    }
    
    .productsLanguagesWrapper .flags-group {
        display: flex !important;
        flex-shrink: 0 !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        gap: 16px !important;
        padding-right: 16px !important;
    }
    
    .productsLanguagesWrapper .languagesMarquee img {
        height: 36px !important;
        width: auto !important;
        min-width: 36px !important;
        flex-shrink: 0 !important;
        border-radius: 6px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
        filter: saturate(1.05) !important;
    }
    
    @keyframes flagsMarqueeLanding {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   STATS COUNTER SECTION - Premium UI/UX 2025 (4 Columns) - Compact Design
   ═══════════════════════════════════════════════════════════════════════════ */
#statsCounter {
    background: linear-gradient(135deg, #003049 0%, #00456b 35%, #005a8c 65%, #003049 100%) !important;
    height: 105px !important;
    min-height: 105px !important;
    max-height: 105px !important;
    position: relative;
    overflow: hidden;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 20px !important;
}

#statsCounter::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 50% 80% at 20% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 40% 60% at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

#counterWrap {
    position: relative;
    z-index: 1;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(50px, 8vw, 120px) !important;
    width: 100% !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
}

#statsCounter .counterContent {
    position: relative;
    padding: 0 10px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    flex: 0 0 auto !important;
}

#statsCounter .counterNumbers {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif !important;
    font-size: clamp(22px, 2.8vw, 32px) !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    opacity: 1 !important;
    letter-spacing: 0.3px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 3px !important;
}

#statsCounter .counterNumbers .star-icon {
    color: #ffffff !important;
    font-size: 0.85em !important;
    text-shadow: none !important;
    margin-left: 2px !important;
}

#statsCounter .counterDescription {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif !important;
    font-size: clamp(14px, 1.1vw, 14px) !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    opacity: 1 !important;
    letter-spacing: 1.5px;
    line-height: 1.4;
    text-transform: uppercase;
    margin-top: 6px;
    white-space: nowrap !important;
}

/* Subtle separator between counters */
#statsCounter .counterContent:not(:last-child)::after {
    content: '';
    position: absolute;
    right: clamp(-35px, -4.5vw, -60px);
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

@media (max-width: 992px) {
    #statsCounter {
        height: 95px !important;
        min-height: 95px !important;
        max-height: 95px !important;
    }
    
    #counterWrap {
        gap: clamp(30px, 5vw, 60px) !important;
    }
    
    #statsCounter .counterNumbers {
        font-size: clamp(20px, 2.5vw, 26px) !important;
    }
    
    #statsCounter .counterDescription {
        font-size: 14px !important;
        letter-spacing: 1.2px;
    }
    
    #statsCounter .counterContent:not(:last-child)::after {
        right: clamp(-20px, -3vw, -30px);
        height: 35px;
    }
}

@media (max-width: 768px) {
    #statsCounter {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        padding: 20px 15px !important;
    }
    
    #counterWrap {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px 24px !important;
    }
    
    #statsCounter .counterContent:not(:last-child)::after {
        display: none;
    }
    
    #statsCounter .counterNumbers {
        font-size: 20px !important;
    }
    
    #statsCounter .counterDescription {
        font-size: 14px !important;
        letter-spacing: 1px;
        white-space: normal !important;
        margin-top: 4px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE STATS COUNTER - Premium 2x2 Grid Layout (Compact)
   4 stats in a 2x2 grid for optimal mobile display
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    /* Force full width and remove any constraints */
    #statsCounter {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        padding: 18px 12px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    #counterWrap {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        align-items: center !important;
        justify-items: center !important;
        gap: 12px 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }
    
    #statsCounter .counterContent {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 6px 4px !important;
        position: relative !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        min-width: 0 !important;
    }
    
    /* Remove separator on mobile - grid handles spacing */
    #statsCounter .counterContent:not(:last-child)::after {
        display: none !important;
    }
    
    #statsCounter .counterNumbers {
        font-size: 19px !important;
        font-weight: 600 !important;
        letter-spacing: -0.2px !important;
        line-height: 1.1 !important;
        margin-bottom: 3px !important;
        color: #ffffff !important;
    }
    
    #statsCounter .counterNumbers .star-icon {
        font-size: 0.8em !important;
        color: #ffffff !important;
    }
    
    #statsCounter .counterDescription {
        font-size: 14px !important;
        font-weight: 500 !important;
        letter-spacing: 1.2px !important;
        text-transform: uppercase !important;
        opacity: 0.9 !important;
        line-height: 1.2 !important;
        color: rgba(255,255,255,0.85) !important;
        white-space: nowrap !important;
        margin-top: 2px !important;
    }
}

/* Tablet breakpoint - 4 items in row with compact spacing */
@media (max-width: 768px) and (min-width: 481px) {
    #statsCounter {
        width: 100% !important;
        max-width: 100% !important;
        height: 85px !important;
        min-height: 85px !important;
        max-height: 85px !important;
        padding: 0 16px !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    #counterWrap {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: clamp(20px, 4vw, 40px) !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    #statsCounter .counterContent {
        flex: 0 0 auto !important;
        min-width: 0 !important;
        text-align: center !important;
    }
    
    #statsCounter .counterContent:not(:last-child)::after {
        display: none !important;
    }
    
    #statsCounter .counterNumbers {
        font-size: 18px !important;
        font-weight: 600 !important;
    }
    
    #statsCounter .counterDescription {
        font-size: 14px !important;
        letter-spacing: 1px !important;
        white-space: nowrap !important;
        margin-top: 4px !important;
    }
}
/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCTS SHOWCASE SECTION - Premium UI/UX 2025
   ═══════════════════════════════════════════════════════════════════════════ */

.productsShowcaseSection {
    --products-primary: #0066FF;
    --products-primary-light: #3B82F6;
    --products-primary-dark: #1E40AF;
    --products-accent: #10B981;
    
    /* ═══════════════════════════════════════════════════════════════════════
       PSYCHOLOGY-BASED GRADIENT for Health & Safety Training
       ───────────────────────────────────────────────────────────────────────
       • Blue (Trust, Safety, Professionalism) - dominant
       • Green (Growth, Success, Health) - secondary  
       • Soft warm tones (Approachability, Comfort) - accent
       • White base (Clarity, Clean, Focus on content)
       ═══════════════════════════════════════════════════════════════════════ */
    --products-bg: linear-gradient(
        155deg,
        #ffffff 0%,
        #f8fbff 6%,
        #eef5ff 14%,
        #e8f2ff 22%,
        #f2f9f6 34%,
        #edf7f3 46%,
        #f8f5fc 58%,
        #fef8f5 68%,
        #f5faff 80%,
        #fafcff 90%,
        #ffffff 100%
    );
    --products-glass: rgba(255, 255, 255, 0.95);
    --products-glass-border: rgba(255, 255, 255, 1);
    --products-shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.04);
    --products-shadow-medium: 0 12px 40px rgba(0, 0, 0, 0.06);
    --products-shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.08);
    
    position: relative;
    background: var(--products-bg);
    padding: clamp(32px, 5vw, 50px) clamp(16px, 4vw, 40px);
    overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SUBTLE AMBIENT GLOW - Creates depth without distraction
   • Positioned at corners/edges to frame content
   • Very low opacity (2-4%) - felt but not seen
   • Blue & Green dominant (Trust + Health theme)
   ═══════════════════════════════════════════════════════════════════════════ */
.productsShowcaseGlow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: 
        /* Top-left: Trust Blue - subtle corner accent */
        radial-gradient(ellipse 50% 40% at 5% 5%, rgba(59, 130, 246, 0.035) 0%, transparent 60%),
        /* Top-right: Professional Blue - balance */
        radial-gradient(ellipse 45% 35% at 95% 10%, rgba(37, 99, 235, 0.025) 0%, transparent 55%),
        /* Center-left: Health Green - growth feeling */
        radial-gradient(ellipse 40% 50% at 0% 50%, rgba(16, 185, 129, 0.03) 0%, transparent 50%),
        /* Center-right: Success Green - achievement */
        radial-gradient(ellipse 35% 45% at 100% 55%, rgba(34, 197, 94, 0.025) 0%, transparent 50%),
        /* Bottom-left: Warm touch - approachability */
        radial-gradient(ellipse 45% 35% at 10% 95%, rgba(251, 191, 36, 0.02) 0%, transparent 55%),
        /* Bottom-right: Soft lavender - premium feel */
        radial-gradient(ellipse 40% 30% at 90% 90%, rgba(139, 92, 246, 0.018) 0%, transparent 50%),
        /* Center: Very subtle warm glow - comfort */
        radial-gradient(ellipse 60% 40% at 50% 50%, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
    opacity: 1;
}

@keyframes productsGlowPulse {
    0% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
    100% { opacity: 0.8; transform: scale(1.01); }
}

.productsShowcaseInner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER - Kicker, Title & Subtitle
   Brand palette only: deep navy text + amber accent (matches CTA and offer)
   ═══════════════════════════════════════════════════════════════════════════ */
.productsShowcaseHeader {
    text-align: center;
    margin-bottom: clamp(24px, 4vw, 36px);
}

.productsShowcaseKicker {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    line-height: 1;
    padding: 6px 9px 6px 6px;
    margin: 0 auto clamp(18px, 2.4vw, 24px) auto;
    max-width: calc(100vw - 40px);
    white-space: nowrap;
    border: 1px solid transparent;
    border-radius: 999px;
    background:
        linear-gradient(180deg, #FFFFFF 0%, #F6FBF8 100%) padding-box,
        linear-gradient(90deg, rgba(4, 120, 87, 0.5) 0%, rgba(52, 211, 153, 0.4) 32%, rgba(203, 213, 225, 0.8) 50%, rgba(251, 146, 60, 0.4) 68%, rgba(234, 88, 12, 0.5) 100%) border-box;
    box-shadow: 0 6px 20px rgba(4, 120, 87, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #123058;
}

.productsShowcaseKickerRank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    padding: 5px 13px;
    border-radius: 999px;
    background: linear-gradient(135deg, #059669 0%, #047857 50%, #065F46 100%);
    box-shadow: 0 2px 10px rgba(5, 150, 105, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #FFFFFF;
}

.productsShowcaseKickerFlag {
    flex: none;
    width: 22px;
    height: 16.5px;
    border-radius: 3.5px;
    box-shadow: 0 1px 3px rgba(13, 34, 64, 0.18), 0 0 0 1px rgba(13, 34, 64, 0.05);
}

/* One line everywhere: full copy on desktop, short copy on small screens */
.productsShowcaseKickerTextShort {
    display: none;
}

@media (max-width: 640px) {
    .productsShowcaseKickerTextFull {
        display: none;
    }
    
    .productsShowcaseKickerTextShort {
        display: inline;
    }
    
    .productsShowcaseKicker {
        gap: 8px;
        padding: 5px 7px 5px 5px;
        font-size: 14px;
        letter-spacing: 1.2px;
    }
    
    .productsShowcaseKickerRank {
        padding: 4px 10px;
        font-size: 14px;
    }
    
    .productsShowcaseKickerFlag {
        width: 18px;
        height: 13.5px;
        border-radius: 3px;
    }
}

.productsShowcaseTitle {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(31px, 4.5vw, 49px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.3px;
    text-align: center;
    color: #0D2240;
    max-width: 940px;
    margin: 0 auto clamp(12px, 1.6vw, 18px) auto;
    padding: 0 24px;
    text-wrap: balance;
}

.productsShowcaseSubtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(16px, 1.7vw, 19px);
    font-weight: 500;
    color: #46586F;
    line-height: 1.65;
    letter-spacing: 0.1px;
    text-align: center;
    max-width: 780px;
    margin: 0 auto clamp(22px, 3vw, 32px) auto;
    padding: 0 24px;
    text-wrap: pretty;
}

/* Override for sale image wrapper in this section */
.productsShowcaseHeader .overImgDashWrapLanding {
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCTS GRID - Premium Card Shadows
   ═══════════════════════════════════════════════════════════════════════════ */
.productsShowcaseSection .landingProductsGrid {
    margin-bottom: clamp(28px, 4vw, 40px);
}


/* Premium shadows for product cards - exterior only */
.productsShowcaseSection .landingProductCard {
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: box-shadow 0.3s ease;
}

.productsShowcaseSection .landingProductCard:hover {
    box-shadow: 
        0 12px 35px rgba(16, 185, 129, 0.25),
        0 6px 20px rgba(5, 150, 105, 0.15),
        0 0 0 1px rgba(16, 185, 129, 0.1);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM DIVIDER LINE
   ═══════════════════════════════════════════════════════════════════════════ */
.productsDividerWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(28px, 4vw, 44px) clamp(20px, 5vw, 60px);
}

.productsDividerLine {
    width: 100%;
    max-width: 280px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 102, 255, 0.08) 15%,
        rgba(0, 102, 255, 0.18) 35%,
        rgba(0, 102, 255, 0.25) 50%,
        rgba(0, 102, 255, 0.18) 65%,
        rgba(0, 102, 255, 0.08) 85%,
        transparent 100%
    );
    border-radius: 4px;
    position: relative;
}

.productsDividerLine::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--products-primary) 0%, var(--products-primary-dark) 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════════════
   LANGUAGES SECTION - Premium Carousel Design 2025
   ═══════════════════════════════════════════════════════════════════════════ */
.productsLanguagesWrapper {
    text-align: center;
    padding-top: clamp(14px, 2vw, 20px);
}

.productsLanguagesText {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #374151;
    line-height: 1.7;
    letter-spacing: 0.2px;
    max-width: 900px;
    margin: 0 auto clamp(20px, 3vw, 32px) auto;
    padding: 0 20px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FLAGS CAROUSEL - Premium UI/UX with Arrows
   ═══════════════════════════════════════════════════════════════════════════ */
.flagsCarouselContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 24px);
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(14px, 2vw, 20px);
    position: relative;
}

/* Arrow Buttons - Premium Glass Design */
.flagsCarouselArrow {
    flex-shrink: 0;
    width: clamp(42px, 5vw, 52px);
    height: clamp(42px, 5vw, 52px);
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.9) 100%);
    box-shadow: 
        0 4px 16px rgba(0, 60, 120, 0.1),
        0 2px 6px rgba(0, 60, 120, 0.06),
        inset 0 1px 0 rgba(255,255,255,1),
        inset 0 -1px 0 rgba(0,0,0,0.03);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.flagsCarouselArrow::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 40%, rgba(0, 102, 204, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.flagsCarouselArrow svg {
    width: clamp(20px, 2.5vw, 26px);
    height: clamp(20px, 2.5vw, 26px);
    stroke: #1e3a5f;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.flagsCarouselArrow:hover {
    transform: scale(1.08);
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(240,248,255,0.98) 100%);
    box-shadow: 
        0 8px 28px rgba(0, 102, 204, 0.18),
        0 4px 12px rgba(0, 60, 120, 0.08),
        inset 0 1px 0 rgba(255,255,255,1);
}

.flagsCarouselArrow:hover::before {
    opacity: 1;
}

.flagsCarouselArrow:hover svg {
    stroke: #0066cc;
    transform: scale(1.1);
}

.flagsCarouselArrow:active {
    transform: scale(0.96);
    box-shadow: 
        0 2px 8px rgba(0, 60, 120, 0.12),
        inset 0 2px 4px rgba(0,0,0,0.04);
}

.flagsCarouselArrow--prev:hover svg {
    transform: scale(1.1) translateX(-2px);
}

.flagsCarouselArrow--next:hover svg {
    transform: scale(1.1) translateX(2px);
}

/* Viewport - Masked Container */
.flagsCarouselViewport {
    flex: 1;
    max-width: 860px;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    padding: 12px 0;
}

/* Subtle edge fade effect */
.flagsCarouselViewport::before,
.flagsCarouselViewport::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    z-index: 5;
    pointer-events: none;
}

.flagsCarouselViewport::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, transparent 100%);
}

.flagsCarouselViewport::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255,255,255,0.9) 0%, transparent 100%);
}

/* Track - Contains all flags */
.flagsCarouselTrack {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 22px);
    transition: transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
    padding: 4px 0;
    transform: translateX(0); /* Always start from first flag */
}

/* Flag Images - Premium Style */
.flagsCarouselTrack img {
    width: clamp(42px, 4.5vw, 52px);
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
    border-radius: 6px;
    image-rendering: -webkit-optimize-contrast;
    filter: saturate(1.02);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.flagsCarouselTrack img:hover {
    transform: translateY(-5px) scale(1.12);
    filter: saturate(1.15) brightness(1.02);
    box-shadow: 
        0 12px 28px rgba(0, 102, 204, 0.18),
        0 4px 8px rgba(0,0,0,0.08);
    z-index: 10;
    position: relative;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FLAGS CAROUSEL - Responsive Design (Premium Mobile UI/UX)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 900px) {
    .flagsCarouselContainer {
        gap: 16px;
    }
    
    .flagsCarouselViewport::before,
    .flagsCarouselViewport::after {
        width: 20px;
    }
}

/* Mobile - Premium Centered Design */
@media (max-width: 767px) {
    .productsLanguagesWrapper {
        padding: 0 12px;
    }
    
    .productsLanguagesText {
        font-size: 16px;
        line-height: 1.6;
        padding: 0 8px;
        margin-bottom: 20px;
    }
    
    .flagsCarouselContainer {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 0;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .flagsCarouselArrow {
        width: 44px;
        height: 44px;
        min-width: 44px;
        flex-shrink: 0;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        box-shadow: 
            0 3px 12px rgba(0, 60, 120, 0.12),
            0 2px 4px rgba(0, 60, 120, 0.08);
    }
    
    .flagsCarouselArrow svg {
        width: 20px;
        height: 20px;
        stroke-width: 2.5;
    }
    
    .flagsCarouselViewport {
        flex: 1;
        max-width: calc(100% - 120px);
        overflow: hidden;
        padding: 10px 0;
        border-radius: 12px;
        display: block;
        position: relative;
    }
    
    .flagsCarouselTrack {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 16px;
        padding: 4px 8px;
        position: relative;
        left: 0;
    }
    
    /* Bigger, clearer flags on mobile */
    .flagsCarouselTrack img {
        width: 48px;
        height: auto;
        min-width: 48px;
        flex-shrink: 0;
        border-radius: 6px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.12);
    }
    
    .flagsCarouselTrack img:hover {
        transform: translateY(-3px) scale(1.08);
    }
    
    /* Softer edge fade on mobile */
    .flagsCarouselViewport::before,
    .flagsCarouselViewport::after {
        width: 12px;
        display: none;
    }
}

/* Small Mobile - Extra clarity */
@media (max-width: 480px) {
    .productsLanguagesText {
        font-size: 16px;
        line-height: 1.55;
        padding: 0 4px;
    }
    
    .flagsCarouselContainer {
        gap: 10px;
    }
    
    .flagsCarouselArrow {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .flagsCarouselArrow svg {
        width: 18px;
        height: 18px;
    }
    
    .flagsCarouselViewport {
        max-width: calc(100% - 100px);
        padding: 8px 0;
    }
    
    .flagsCarouselTrack {
        gap: 14px;
        padding: 4px 4px;
    }
    
    .flagsCarouselTrack img {
        width: 44px;
        min-width: 44px;
        border-radius: 5px;
    }
}

/* Very small screens - Maximum clarity */
@media (max-width: 380px) {
    .flagsCarouselContainer {
        gap: 8px;
    }
    
    .flagsCarouselArrow {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    
    .flagsCarouselArrow svg {
        width: 16px;
        height: 16px;
    }
    
    .flagsCarouselViewport {
        max-width: calc(100% - 88px);
    }
    
    .flagsCarouselTrack {
        gap: 12px;
    }
    
    .flagsCarouselTrack img {
        width: 40px;
        min-width: 40px;
        border-radius: 4px;
    }
}

@media (max-width: 480px) {
    .productsShowcaseSection {
        padding: clamp(36px, 6vw, 50px) clamp(14px, 3vw, 20px);
    }
    
    .productsShowcaseKicker {
        padding: 5px 7px 5px 5px;
        gap: 8px;
        font-size: 14px;
        letter-spacing: 1.2px;
    }
    
    .productsShowcaseKickerRank {
        padding: 4px 10px;
        font-size: 14px;
    }
    
    .productsShowcaseTitle {
        font-size: clamp(26px, 7.4vw, 30px);
        letter-spacing: -0.8px;
    }
    
    .productsShowcaseSubtitle {
        font-size: clamp(16px, 4.2vw, 16px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .productsShowcaseGlow {
        animation: none;
    }
    .flagsCarouselTrack {
        transition: none !important;
    }
    .flagsCarouselTrack img {
        transition: none !important;
    }
}
