@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;
    }
}
/* ═══════════════════════════════════════════════════════════════════════════
   HOW IT WORKS SECTION - Premium UI/UX 2025
   ═══════════════════════════════════════════════════════════════════════════ */
.howItWorksPremiumSection {
    --hiw-primary: #F59E0B;
    --hiw-primary-light: #FBBF24;
    --hiw-primary-dark: #D97706;
    --hiw-accent: #10B981;
    --hiw-bg: linear-gradient(165deg, #fffbeb 0%, #fef3c7 35%, #fde68a 70%, #fcd34d 100%);
    --hiw-glass: rgba(255, 255, 255, 0.95);
    --hiw-glass-border: rgba(255, 255, 255, 1);
    --hiw-shadow-soft: 0 4px 20px rgba(245, 158, 11, 0.08);
    --hiw-shadow-medium: 0 12px 40px rgba(245, 158, 11, 0.12);
    --hiw-shadow-strong: 0 24px 60px rgba(245, 158, 11, 0.16);
    --hiw-text-primary: #78350f;
    --hiw-text-secondary: #92400e;
    --hiw-text-muted: #a16207;
    --hiw-radius: 28px;
    --hiw-radius-sm: 16px;
    
    width: 100%;
    padding: clamp(70px, 9vw, 110px) clamp(20px, 5vw, 60px);
    background: var(--hiw-bg);
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
}

/* Background decoration */
.howItWorksPremiumSection::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 10% 90%, rgba(245, 158, 11, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 90% 10%, rgba(16, 185, 129, 0.06) 0%, transparent 55%);
    pointer-events: none;
}

.howItWorksInner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(50px, 7vw, 100px);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Content column */
.howItWorksContent {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(26px, 3.2vw, 34px);
}

/* Eyebrow badge */
.hiwEyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 9px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 100px;
    box-shadow:
        0 6px 18px rgba(217, 119, 6, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hiwEyebrowIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--hiw-primary) 0%, var(--hiw-primary-dark) 100%);
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 3px 8px rgba(217, 119, 6, 0.35);
}

.hiwEyebrowText {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--hiw-primary-dark);
}

/* Heading */
.hiwHeading {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hiwTitle {
    font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: clamp(28px, 3.8vw, 42px);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.5px;
    color: var(--hiw-text-primary);
    margin: 0;
}

.hiwTitleAccent {
    background: linear-gradient(120deg, #ea580c 0%, #d97706 55%, #b45309 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.hiwIntro {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: clamp(16.5px, 1.8vw, 18px);
    line-height: 1.72;
    letter-spacing: 0.1px;
    color: var(--hiw-text-secondary);
    margin: 0;
    max-width: 62ch;
}

/* Steps timeline */
.hiwSteps {
    list-style: none;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hiwSteps::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(180deg,
        rgba(245, 158, 11, 0.55) 0%,
        rgba(217, 119, 6, 0.35) 60%,
        rgba(16, 185, 129, 0.45) 100%);
}

.hiwStep {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: start;
}

.hiwStepMarker {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-top: 4px;
    background: linear-gradient(135deg, var(--hiw-primary-light) 0%, var(--hiw-primary) 45%, var(--hiw-primary-dark) 100%);
    border: 3px solid rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    box-shadow:
        0 8px 20px rgba(217, 119, 6, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hiwStepCard {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    padding: 18px 22px 19px;
    box-shadow:
        0 10px 30px rgba(217, 119, 6, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, border-color 0.25s ease-out;
}

.hiwStep:hover .hiwStepCard {
    transform: translateY(-3px);
    border-color: rgba(251, 191, 36, 0.65);
    box-shadow:
        0 16px 38px rgba(217, 119, 6, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hiwStepHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 8px;
}

.hiwStepTitle {
    font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: clamp(17.5px, 1.9vw, 19.5px);
    font-weight: 800;
    letter-spacing: -0.2px;
    line-height: 1.3;
    color: var(--hiw-text-primary);
    margin: 0;
}

.hiwStepMeta {
    flex-shrink: 0;
    padding: 5px 13px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.16) 0%, rgba(217, 119, 6, 0.12) 100%);
    border: 1px solid rgba(217, 119, 6, 0.22);
    border-radius: 100px;
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--hiw-primary-dark);
    white-space: nowrap;
}

.hiwStepText {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: clamp(16px, 1.7vw, 17px);
    line-height: 1.65;
    letter-spacing: 0.1px;
    color: var(--hiw-text-secondary);
    margin: 0;
}

/* Bulk discounts offer card */
.hiwSavings {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 640px;
    padding: 20px 24px 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(236, 253, 245, 0.8) 100%);
    border: 1px solid rgba(16, 185, 129, 0.24);
    border-radius: 20px;
    box-shadow:
        0 10px 28px rgba(5, 150, 105, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hiwSavingsTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.hiwSavingsTitle {
    font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.1px;
    line-height: 1.35;
    color: #065f46;
}

.hiwSavingsBadge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: linear-gradient(135deg, #10B981 0%, #047857 100%);
    border-radius: 100px;
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #fff;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.28);
    white-space: nowrap;
}

.hiwSavingsTiers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hiwSavingsTier {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 12px 10px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(5, 150, 105, 0.06);
}

.hiwSavingsTierValue {
    font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.3px;
    line-height: 1.15;
    background: linear-gradient(120deg, #059669 0%, #047857 60%, #065f46 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hiwSavingsTierLabel {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-align: center;
    color: #33534a;
}

.hiwSavingsNote {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 14.5px;
    line-height: 1.5;
    letter-spacing: 0.1px;
    text-align: center;
    color: #2c5245;
}

/* Image Wrapper */
.howItWorksImageWrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 84px;
}

.hiwImageBox {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.howItWorksImageGlow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--hiw-primary) 0%, var(--hiw-accent) 100%);
    border-radius: var(--hiw-radius);
    filter: blur(70px);
    opacity: 0.2;
    animation: hiwGlowPulse 5s ease-in-out infinite;
}

@keyframes hiwGlowPulse {
    0%, 100% { opacity: 0.15; transform: scale(0.95); }
    50% { opacity: 0.25; transform: scale(1.02); }
}

.howItWorksImageFrame {
    position: relative;
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.98) 0%, 
            rgba(255, 251, 235, 0.95) 25%,
            rgba(255, 255, 255, 0.97) 50%,
            rgba(236, 253, 245, 0.93) 75%,
            rgba(255, 255, 255, 0.98) 100%
        );
    border-radius: 20px;
    padding: 10px;
    border: 2px solid rgba(255, 255, 255, 1);
    box-shadow: 
        0 25px 70px rgba(245, 158, 11, 0.15),
        0 12px 35px rgba(245, 158, 11, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.howItWorksImageFrame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 0% 0%, rgba(245, 158, 11, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    border-radius: 22px;
    pointer-events: none;
}

.howItWorksImageFrame:hover {
    transform: scale(1.02);
    box-shadow: 
        0 35px 90px rgba(245, 158, 11, 0.2),
        0 18px 45px rgba(245, 158, 11, 0.12),
        inset 0 2px 0 rgba(255, 255, 255, 1);
}

.howItWorksImageFrame img {
    display: block;
    width: 100%;
    max-width: 620px;
    height: auto;
    border-radius: 14px;
    position: relative;
    z-index: 1;
}

/* Floating Badge */
.howItWorksFloatingBadge .hiwBadgeTextShort {
    display: none;
}

@media (max-width: 600px) {
    .howItWorksFloatingBadge .hiwBadgeTextFull {
        display: none;
    }

    .howItWorksFloatingBadge .hiwBadgeTextShort {
        display: inline;
    }
}

.howItWorksFloatingBadge {
    position: absolute;
    bottom: -56px;
    left: 53%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 32px 16px 18px;
    background: linear-gradient(140deg, #059669, #047857, #065f46);
    color: white;
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.5px;
    line-height: 1.4;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 
        0 4px 12px rgba(5, 150, 105, 0.3),
        0 8px 28px rgba(5, 150, 105, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    z-index: 2;
    animation: hiwBadgeFloat 4s ease-in-out infinite;
}

@keyframes hiwBadgeFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-6px); }
}

.howItWorksFloatingBadge svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-sizing: content-box;
    color: #047857;
    stroke: #047857;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .howItWorksInner {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .howItWorksImageWrapper {
        order: -1;
        gap: 48px;
    }
    
    .howItWorksContent {
        align-items: center;
    }
    
    .hiwHeading {
        align-items: center;
    }
    
    .hiwIntro {
        max-width: 68ch;
    }
    
    .hiwSteps {
        max-width: 640px;
        margin: 0 auto;
        text-align: left;
    }
    
    .hiwSavings {
        max-width: 640px;
        text-align: left;
    }
    
    .howItWorksFloatingBadge {
        bottom: -18px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .howItWorksImageFrame img {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .howItWorksPremiumSection {
        padding: 50px 16px;
    }
    
    .howItWorksImageFrame {
        padding: 12px;
    }
    
    .howItWorksImageFrame img {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .hiwTitle {
        font-size: clamp(26px, 7vw, 32px);
        letter-spacing: -0.4px;
    }
    
    .hiwIntro {
        font-size: 16px;
        line-height: 1.65;
    }
    
    .hiwEyebrow {
        padding: 7px 15px 7px 8px;
    }
    
    .hiwEyebrowText {
        font-size: 14px;
        letter-spacing: 1.1px;
    }
    
    .hiwSteps {
        gap: 14px;
    }
    
    .hiwSteps::before {
        left: 19px;
        top: 24px;
        bottom: 24px;
    }
    
    .hiwStep {
        grid-template-columns: 40px 1fr;
        gap: 12px;
    }
    
    .hiwStepMarker {
        width: 40px;
        height: 40px;
        margin-top: 2px;
        border-width: 2.5px;
        border-radius: 13px;
        font-size: 17px;
    }
    
    .hiwStepCard {
        padding: 15px 16px 16px;
        border-radius: 15px;
    }
    
    .hiwStepHead {
        margin-bottom: 6px;
    }
    
    .hiwStepTitle {
        font-size: 17px;
    }
    
    .hiwStepMeta {
        padding: 4px 11px;
        font-size: 14px;
    }
    
    .hiwStepText {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .howItWorksFloatingBadge {
        padding: 10px 16px 10px 10px;
        font-size: 19px;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .howItWorksImageWrapper {
        gap: 44px;
    }
    
    .hiwSavings {
        gap: 12px;
        padding: 18px 16px 16px;
    }
    
    .hiwSavingsTop {
        justify-content: center;
        text-align: center;
    }
    
    .hiwSavingsTitle {
        font-size: 16.5px;
    }
    
    .hiwSavingsTiers {
        gap: 10px;
    }
    
    .hiwSavingsTierValue {
        font-size: 19px;
    }
    
    .hiwSavingsTierLabel {
        text-align: center;
    }
    
    .hiwSavingsNote {
        font-size: 14px;
    }
}

/* Very narrow screens: let the info pills wrap instead of overflowing the card */
@media (max-width: 359px) {
    .hiwStepMeta {
        white-space: normal;
        text-align: left;
        line-height: 1.35;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .howItWorksImageGlow,
    .howItWorksFloatingBadge {
        animation: none;
    }
    
    .howItWorksImageFrame:hover {
        transform: none;
    }
    
    .hiwStepCard,
    .hiwStep:hover .hiwStepCard {
        transform: none;
        transition: none;
    }
}
/* ═══════════════════════════════════════════════════════════════════════════
   TRUST & ACCREDITATION SECTION - Premium UI/UX 2025
   ═══════════════════════════════════════════════════════════════════════════ */
.trustPremiumSection {
    --trust-primary: #2563EB;
    --trust-primary-light: #3B82F6;
    --trust-primary-dark: #1D4ED8;
    --trust-accent: #8B5CF6;
    --trust-bg: linear-gradient(165deg, #eff6ff 0%, #dbeafe 35%, #bfdbfe 70%, #93c5fd 100%);
    --trust-glass: rgba(255, 255, 255, 0.95);
    --trust-glass-border: rgba(255, 255, 255, 1);
    --trust-shadow-soft: 0 4px 20px rgba(37, 99, 235, 0.08);
    --trust-shadow-medium: 0 12px 40px rgba(37, 99, 235, 0.12);
    --trust-shadow-strong: 0 24px 60px rgba(37, 99, 235, 0.16);
    --trust-text-primary: #1e3a5f;
    --trust-text-secondary: #334155;
    --trust-text-muted: #475569;
    --trust-radius: 28px;
    --trust-radius-sm: 16px;
    
    width: 100%;
    padding: clamp(70px, 9vw, 110px) clamp(20px, 5vw, 60px);
    background: var(--trust-bg);
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.trustPremiumSection::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 90% 90%, rgba(37, 99, 235, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 10% 10%, rgba(139, 92, 246, 0.06) 0%, transparent 55%);
    pointer-events: none;
}

.trustPremiumInner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(50px, 7vw, 100px);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Image Wrapper
   ───────────────────────────────────────────────────────────────────────────── */
.trustImageWrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trustImageGlow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--trust-primary) 0%, var(--trust-accent) 100%);
    border-radius: var(--trust-radius);
    filter: blur(70px);
    opacity: 0.2;
    animation: trustGlowPulse 5s ease-in-out infinite;
}

@keyframes trustGlowPulse {
    0%, 100% { opacity: 0.15; transform: scale(0.95); }
    50% { opacity: 0.25; transform: scale(1.02); }
}

.trustImageFrame {
    position: relative;
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.98) 0%, 
            rgba(239, 246, 255, 0.95) 25%,
            rgba(255, 255, 255, 0.97) 50%,
            rgba(236, 253, 245, 0.93) 75%,
            rgba(255, 255, 255, 0.98) 100%
        );
    border-radius: 24px;
    padding: 10px;
    border: 2px solid rgba(255, 255, 255, 1);
    box-shadow: 
        0 25px 70px rgba(37, 99, 235, 0.15),
        0 12px 35px rgba(37, 99, 235, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 1),
        inset 0 0 60px rgba(37, 99, 235, 0.03);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.trustImageFrame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 0% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    border-radius: 22px;
    pointer-events: none;
}

.trustImageFrame:hover {
    transform: scale(1.02);
    box-shadow: 
        0 35px 90px rgba(37, 99, 235, 0.2),
        0 18px 45px rgba(37, 99, 235, 0.12),
        inset 0 2px 0 rgba(255, 255, 255, 1),
        inset 0 0 80px rgba(37, 99, 235, 0.05);
}

.trustImageFrame img {
    display: block;
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Content Wrapper
   ───────────────────────────────────────────────────────────────────────────── */
.trustContentWrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(26px, 3.2vw, 34px);
}

/* Eyebrow badge */
.trustEyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 9px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 100px;
    box-shadow:
        0 6px 18px rgba(29, 78, 216, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.trustEyebrowIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--trust-primary-light) 0%, var(--trust-primary-dark) 100%);
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 3px 8px rgba(29, 78, 216, 0.35);
}

.trustEyebrowText {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--trust-primary-dark);
}

/* Heading */
.trustHeading {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trustTitle {
    font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: clamp(27px, 3.5vw, 38px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.5px;
    color: var(--trust-text-primary);
    margin: 0;
}

.trustTitleAccent {
    background: linear-gradient(120deg, #2563EB 0%, #4F46E5 55%, #6D28D9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.trustIntro {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: clamp(16.5px, 1.8vw, 18px);
    line-height: 1.72;
    letter-spacing: 0.1px;
    color: var(--trust-text-secondary);
    margin: 0;
    max-width: 62ch;
}

/* Trust points */
.trustPoints {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.trustPoint {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow:
        0 10px 30px rgba(29, 78, 216, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, border-color 0.25s ease-out;
}

.trustPoint:hover {
    transform: translateY(-3px);
    border-color: rgba(147, 197, 253, 0.85);
    box-shadow:
        0 16px 38px rgba(29, 78, 216, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.trustPointIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin-top: 2px;
    background: linear-gradient(135deg, var(--trust-primary-light) 0%, var(--trust-primary-dark) 100%);
    border-radius: 13px;
    color: #fff;
    box-shadow: 0 6px 16px rgba(29, 78, 216, 0.28);
}

.trustPointBody {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trustPointTitle {
    font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.1px;
    line-height: 1.35;
    color: var(--trust-text-primary);
}

.trustPointText {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.62;
    letter-spacing: 0.1px;
    color: var(--trust-text-secondary);
}

/* Accreditation Grid */
.trustAccreditationGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
}

/* 13-14 inch laptops: the two-column layout leaves the badge row one pill short,
   so the 4th badge drops alone to a second line - hide it in this band only */
@media (min-width: 1201px) and (max-width: 1440px) {
    .trustAccreditationGrid .trustAccreditItem:nth-child(4) {
        display: none;
    }
}

.trustAccreditItem {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
    transition: all 0.3s ease;
}

.trustAccreditItem:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.trustAccreditIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--trust-primary-light) 0%, var(--trust-primary) 100%);
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.trustAccreditIcon svg {
    width: 18px;
    height: 18px;
}

/* EU icon - blue circle background like others, gold stars */
.trustAccreditIcon.trustAccreditIcon--eu {
    background: linear-gradient(135deg, var(--trust-primary-light) 0%, var(--trust-primary) 100%) !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25) !important;
}

.trustAccreditIcon.trustAccreditIcon--eu svg {
    width: 18px !important;
    height: 18px !important;
}

.trustAccreditName {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--trust-text-primary);
    letter-spacing: 0.3px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .trustPremiumInner {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .trustImageWrapper {
        order: -1;
    }
    
    .trustContentWrapper {
        align-items: center;
    }
    
    .trustHeading {
        align-items: center;
    }
    
    .trustIntro {
        max-width: 68ch;
    }
    
    .trustPoints {
        max-width: 640px;
        margin: 0 auto;
        text-align: left;
    }
    
    .trustAccreditationGrid {
        justify-content: center;
    }
    
    .trustImageFrame img {
        max-width: 100%;
    }
    
    .trustTitle {
        font-size: clamp(26px, 4vw, 34px);
    }
}

@media (max-width: 600px) {
    .trustPremiumSection {
        padding: 50px 16px;
    }
    
    .trustImageFrame img {
        max-width: 100%;
        border-radius: 16px;
    }
    
    .trustTitle {
        font-size: clamp(26px, 7vw, 32px);
        letter-spacing: -0.4px;
    }
    
    .trustIntro {
        font-size: 16px;
        line-height: 1.65;
    }
    
    .trustEyebrow {
        padding: 7px 15px 7px 8px;
    }
    
    .trustEyebrowText {
        font-size: 14px;
        letter-spacing: 1.1px;
    }
    
    .trustPoints {
        gap: 12px;
    }
    
    .trustPoint {
        padding: 14px 15px;
        gap: 12px;
        border-radius: 14px;
    }
    
    .trustPointIcon {
        width: 36px;
        height: 36px;
        border-radius: 11px;
    }
    
    .trustPointTitle {
        font-size: 16.5px;
    }
    
    .trustPointText {
        font-size: 15.5px;
        line-height: 1.58;
    }
    
    .trustAccreditItem {
        padding: 10px 14px;
    }
    
    .trustAccreditIcon {
        width: 32px;
        height: 32px;
    }
    
    .trustAccreditName {
        font-size: 16px;
    }
    
    .trustAccreditationGrid {
        gap: 10px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .trustImageGlow {
        animation: none;
    }
    
    .trustImageFrame:hover,
    .trustAccreditItem:hover,
    .trustPoint:hover {
        transform: none;
    }
}
/* ═══════════════════════════════════════════════════════════════════════════
   CERTIFICATE PREMIUM SECTION - Modern UI/UX 2025
   ═══════════════════════════════════════════════════════════════════════════ */
.certPremiumSection {
    --cert-primary: #059669;
    --cert-primary-light: #10B981;
    --cert-primary-dark: #047857;
    --cert-accent: #0D9488;
    --cert-gold: #D97706;
    --cert-bg: linear-gradient(165deg, #f0fdf4 0%, #dcfce7 30%, #bbf7d0 70%, #a7f3d0 100%);
    --cert-glass: rgba(255, 255, 255, 0.95);
    --cert-glass-border: rgba(255, 255, 255, 1);
    --cert-shadow-soft: 0 4px 20px rgba(5, 150, 105, 0.08);
    --cert-shadow-medium: 0 12px 40px rgba(5, 150, 105, 0.12);
    --cert-shadow-strong: 0 24px 60px rgba(5, 150, 105, 0.16);
    --cert-text-primary: #052e16;
    --cert-text-secondary: #166534;
    --cert-text-muted: #15803d;
    --cert-radius: 28px;
    --cert-radius-sm: 16px;
    
    width: 100%;
    padding: clamp(80px, 10vw, 130px) clamp(20px, 5vw, 60px);
    background: var(--cert-bg);
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.certPremiumSection::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 5% 100%, rgba(5, 150, 105, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 95% 0%, rgba(217, 119, 6, 0.05) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.certPremiumInner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(50px, 6vw, 80px);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Content Wrapper
   ───────────────────────────────────────────────────────────────────────────── */
.certContentWrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(24px, 3vw, 32px);
}

/* Eyebrow badge */
.certEyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 9px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 100px;
    box-shadow:
        0 6px 18px rgba(4, 120, 87, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.certEyebrowIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--cert-primary-light) 0%, var(--cert-primary-dark) 100%);
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 3px 8px rgba(4, 120, 87, 0.35);
}

.certEyebrowText {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--cert-primary-dark);
}

/* Heading */
.certHeading {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.certTitle {
    font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: clamp(27px, 3.5vw, 38px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.5px;
    color: var(--cert-text-primary);
    margin: 0;
}

.certTitleAccent {
    background: linear-gradient(120deg, #059669 0%, #0D9488 55%, #047857 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.certIntro {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: clamp(16.5px, 1.8vw, 18px);
    line-height: 1.72;
    letter-spacing: 0.1px;
    color: var(--cert-text-secondary);
    margin: 0;
    max-width: 62ch;
}

/* Perk cards */
.certPerks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.certPerk {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow:
        0 10px 30px rgba(4, 120, 87, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, border-color 0.25s ease-out;
}

.certPerk:hover {
    transform: translateY(-3px);
    border-color: rgba(110, 231, 183, 0.9);
    box-shadow:
        0 16px 38px rgba(4, 120, 87, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.certPerkIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin-top: 2px;
    background: linear-gradient(135deg, var(--cert-primary-light) 0%, var(--cert-primary-dark) 100%);
    border-radius: 13px;
    color: #fff;
    box-shadow: 0 6px 16px rgba(4, 120, 87, 0.28);
}

.certPerkBody {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.certPerkTitle {
    font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.1px;
    line-height: 1.35;
    color: var(--cert-text-primary);
}

.certPerkText {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.62;
    letter-spacing: 0.1px;
    color: var(--cert-text-secondary);
}

/* Social proof strip */
.certProof {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.10) 0%, rgba(5, 150, 105, 0.05) 100%);
    border: 1px solid rgba(5, 150, 105, 0.18);
    border-radius: 14px;
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.1px;
    color: var(--cert-text-secondary);
    margin: 0;
}

.certProof strong {
    font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--cert-primary-dark);
}

/* CTA Button - Compact with Clear Text */
.certCTAButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 36px;
    margin-top: 8px;
    background: linear-gradient(135deg, var(--cert-primary) 0%, var(--cert-primary-dark) 100%);
    color: white;
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-decoration: none;
    border-radius: 14px;
    border: none;
    box-shadow: 
        0 10px 28px rgba(5, 150, 105, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    width: fit-content;
    cursor: pointer;
}

.certCTAButton::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.certCTAButton:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 16px 40px rgba(5, 150, 105, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

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

/* Premium Shimmer Effect - Hover Only */
.certCTAButton::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.35),
        rgba(255, 255, 255, 0.08),
        transparent
    );
    transform: skewX(-20deg);
    transition: none;
    pointer-events: none;
    z-index: 2;
}

.certCTAButton:hover::after {
    animation: certShimmerSweep 0.7s ease-out forwards;
}

@keyframes certShimmerSweep {
    0% { left: -100%; opacity: 1; }
    100% { left: 150%; opacity: 1; }
}

.certCTAArrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.35s ease;
}

.certCTAButton:hover .certCTAArrow {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(4px);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Image Wrapper - LARGE & PROMINENT
   ───────────────────────────────────────────────────────────────────────────── */
.certImageWrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 560px;
    z-index: 10;
    overflow: visible;
}

.certImageGlow {
    position: absolute;
    width: 110%;
    height: 110%;
    background: linear-gradient(135deg, var(--cert-primary) 0%, var(--cert-accent) 50%, var(--cert-gold) 100%);
    border-radius: 30px;
    filter: blur(90px);
    opacity: 0.28;
    animation: certGlowPulse 5s ease-in-out infinite;
}

@keyframes certGlowPulse {
    0%, 100% { opacity: 0.22; transform: scale(0.96); }
    50% { opacity: 0.32; transform: scale(1.04); }
}

.certImageFrame {
    position: relative;
    background: transparent;
    border-radius: 20px;
    padding: 0;
    border: none;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.certImageFrame:hover {
    transform: scale(1.02);
}

.certImageFrame img {
    display: block;
    width: 100%;
    max-width: 650px;
    min-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 30px 80px rgba(5, 150, 105, 0.22),
        0 15px 40px rgba(5, 150, 105, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.08);
    filter: contrast(1.04) brightness(1.02) saturate(1.06);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.certImageFrame:hover img {
    box-shadow: 
        0 40px 100px rgba(5, 150, 105, 0.28),
        0 20px 50px rgba(5, 150, 105, 0.18),
        0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Floating Badges - Premium UI/UX 2025 */
.certFloatingBadge {
    position: absolute !important;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px 14px 14px;
    color: white;
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 0.4px;
    line-height: 1.5;
    border-radius: 100px;
    z-index: 99999 !important;
    white-space: nowrap;
}

.certFloatingBadge span {
    padding-right: 4px;
}

.certFloatingBadge svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-sizing: content-box;
}

.certBadgeTop svg {
    color: var(--cert-primary);
    stroke: var(--cert-primary);
}

.certBadgeBottom svg {
    color: #dc2626;
    stroke: #dc2626;
}

.certBadgeTop {
    top: 25px;
    right: 10px;
    background: linear-gradient(140deg, #059669, #047857, #065f46);
    box-shadow: 
        0 4px 12px rgba(5, 150, 105, 0.3),
        0 8px 28px rgba(5, 150, 105, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    animation: certBadgeFloat 4s ease-in-out infinite;
}

.certBadgeBottom {
    bottom: 35px;
    left: 10px;
    background: linear-gradient(140deg, #dc2626, #b91c1c, #991b1b);
    box-shadow: 
        0 4px 12px rgba(220, 38, 38, 0.3),
        0 8px 28px rgba(220, 38, 38, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    animation: certBadgeFloat 4s ease-in-out infinite 0.6s;
}

@keyframes certBadgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Responsive Design
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .certPremiumInner {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .certImageWrapper {
        order: -1;
        min-height: auto;
    }
    
    .certContentWrapper {
        align-items: center;
    }
    
    .certHeading {
        align-items: center;
    }
    
    .certIntro {
        max-width: 68ch;
    }
    
    .certPerks {
        max-width: 640px;
        margin: 0 auto;
        text-align: left;
    }
    
    .certProof {
        max-width: 640px;
    }
    
    .certImageFrame img {
        max-width: 100%;
        min-width: auto;
    }
    
    .certTitle {
        font-size: clamp(26px, 4vw, 34px);
    }
    
    .certBadgeTop {
        right: 15px;
        top: 25px;
    }
    
    .certBadgeBottom {
        left: 15px;
        bottom: 35px;
    }
}

@media (max-width: 600px) {
    .certPremiumSection {
        padding: 50px 16px;
    }
    
    .certImageFrame img {
        max-width: 100%;
        min-width: auto;
        border-radius: 16px;
    }
    
    .certTitle {
        font-size: clamp(26px, 7vw, 32px);
        letter-spacing: -0.4px;
    }
    
    .certIntro {
        font-size: 16px;
        line-height: 1.65;
    }
    
    .certEyebrow {
        padding: 7px 15px 7px 8px;
    }
    
    .certEyebrowText {
        font-size: 14px;
        letter-spacing: 1.1px;
    }
    
    .certPerks {
        gap: 12px;
    }
    
    .certPerk {
        padding: 14px 15px;
        gap: 12px;
        border-radius: 14px;
    }
    
    .certPerkIcon {
        width: 36px;
        height: 36px;
        border-radius: 11px;
    }
    
    .certPerkTitle {
        font-size: 17px;
    }
    
    .certPerkText {
        font-size: 16px;
        line-height: 1.58;
    }
    
    .certProof {
        font-size: 15.5px;
        padding: 13px 16px;
    }
    
    .certFloatingBadge {
        padding: 10px 14px 10px 10px;
        font-size: 14px;
        gap: 8px;
    }
    
    .certFloatingBadge svg {
        padding: 6px;
        width: 14px;
        height: 14px;
    }
    
    .certBadgeTop {
        right: 10px;
        top: 0px;
        z-index: 99999 !important;
        position: absolute !important;
    }
    
    .certBadgeBottom {
        left: 10px;
        bottom: -15px;
        z-index: 99999 !important;
        position: absolute !important;
    }
    
    .certImageWrapper {
        overflow: visible !important;
        z-index: 10 !important;
    }
    
    .certCTAButton {
        width: 100%;
        max-width: 340px;
        box-sizing: border-box;
        justify-content: center;
        padding: 16px 28px;
        font-size: 18px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .certImageGlow,
    .certFloatingBadge {
        animation: none;
    }
    
    .certImageFrame:hover,
    .certCTAButton:hover,
    .certPerk:hover {
        transform: none;
    }
    
    .certCTAButton:hover::after {
        animation: none;
    }
}
