/* =========================================================
       HOME HERO â€” Premium Slideshow
       ========================================================= */
    .home-hero-section {
        position: relative;
        width: 100%;
        min-height: 75vh;
        /* overflow:hidden removed — it was clipping the navbar (position:absolute) that overlaps the hero */
        overflow: visible;
    }

    /* Each slide */
    .home-slide {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        width: 100%;
        min-height: 75vh;
        overflow: hidden; /* clipping per-slide instead of on the parent section */
        /* Fill the hero width while keeping the upper part of the image visible. */
        background-size: 100% auto;
        background-position: center top;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: center;
        opacity: 0;
        transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
        z-index: 0;
    }
    .home-slide--active {
        opacity: 1;
        pointer-events: auto;
        position: relative;
        z-index: 1;
        min-height: 75vh;
        overflow: hidden; /* keep clipping on active slide too */
    }

    /* Dark overlay â€” same as other pages */
    .home-slide .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            135deg,
            rgba(10, 15, 30, 0.52) 0%,
            rgba(15, 23, 42, 0.46) 50%,
            rgba(10, 15, 30, 0.42) 100%
        );
        z-index: 1;
    }
    .home-slide .container {
        position: relative;
        z-index: 2;
        padding-top: 80px;
        padding-bottom: 70px;
    }

    /* Badge */
    .hero-badge-wrap { }
    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 4px 12px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        color: #38bdf8;
    }

    /* Title */
    .home-hero-section .hero-title {
        font-size: 2.4rem !important;
        font-weight: 800 !important;
        line-height: 1.25 !important;
        color: #ffffff !important;
        text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
        margin-bottom: 16px !important;
    }

    /* Subtitle */
    .home-hero-section .hero-subtitle {
        font-size: 1.05rem;
        color: rgba(255, 255, 255, 0.72) !important;
        line-height: 1.5;
        max-width: 580px;
    }

    /* CTA Buttons */
    .hero-cta-group {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 24px;
    }
    .hero-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 10px 20px;
        border-radius: 8px;
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.3px;
        text-decoration: none !important;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    .hero-btn--primary {
        background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
        color: #ffffff !important;
        box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35);
        /* border: 2px solid transparent; */
    }
    .hero-btn--primary:hover {
        background: linear-gradient(135deg, #0284c7 0%, #1d4ed8 100%);
        box-shadow: 0 10px 28px rgba(14, 165, 233, 0.5);
        transform: translateY(-2px);
        color: #ffffff !important;
    }
    .hero-btn--outline {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(8px);
        color: #ffffff !important;
        border: 2px solid rgba(255, 255, 255, 0.35);
    }
    .hero-btn--outline:hover {
        background: rgba(255, 255, 255, 0.18);
        border-color: rgba(255, 255, 255, 0.7);
        transform: translateY(-2px);
        color: #ffffff !important;
    }

    /* Bottom Accent */
    .home-slide .hero-bottom-accent {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, transparent, #0ea5e9 30%, #2563eb 70%, transparent);
        opacity: 0.7;
        z-index: 3;
    }

    /* Slide Dots */
    .home-hero-dots {
        position: absolute;
        bottom: 32px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 10;
    }
    .hero-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: 2px solid rgba(255,255,255,0.5);
        background: transparent;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }
    .hero-dot--active {
        background: #0ea5e9;
        border-color: #0ea5e9;
        transform: scale(1.3);
    }

    /* Scroll Indicator */
    .hero-scroll-indicator {
        position: absolute;
        bottom: 36px;
        right: 48px;
        z-index: 10;
    }
    .hero-scroll-indicator span {
        display: block;
        width: 2px;
        height: 44px;
        background: linear-gradient(to bottom, transparent, #38bdf8);
        margin: 0 auto;
        border-radius: 2px;
        animation: scrollPulse 1.8s ease-in-out infinite;
    }
    @keyframes scrollPulse {
        0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
        50%       { opacity: 1;   transform: scaleY(1); }
    }

    /* Responsive */
    @media (max-width: 767.98px) {
        .home-slide {
            background-size: cover;
            background-position: center top;
        }
        .home-slide .container {
            padding-top: 70px;
            padding-bottom: 60px;
        }
        .home-hero-section .hero-title {
            font-size: 1.85rem !important;
            line-height: 1.25 !important;
            margin-bottom: 8px !important;
        }
        .home-hero-section .hero-subtitle {
            font-size: 0.88rem !important;
            line-height: 1.5 !important;
            margin-bottom: 15px !important;
        }
        .hero-badge {
            font-size: 0.62rem !important;
            padding: 3px 9px !important;
        }
        .hero-cta-group {
            flex-wrap: nowrap;
            gap: 8px;
            margin-top: 16px;
        }
        .hero-btn {
            flex: 1;
            justify-content: center;
            padding: 6px 10px;
            font-size: 0.68rem;
            border-radius: 22px;
            gap: 4px;
        }
        .hero-scroll-indicator { display: none; }
    }

/* =========================================================
       ABOUT SECTION v3 â€” Enterprise Visual Composition
       ========================================================= */
    .pyramide-about-v3 {
        position: relative;
        padding: 95px 0 105px;
        background: #ffffff;
        overflow: hidden;
    }
    .about-bg-decoration {
        position: absolute;
        top: -100px;
        right: -100px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, rgba(37, 99, 235, 0.02) 50%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }
    .pyramide-about-v3 .container {
        position: relative;
        z-index: 1;
    }

    /* Header */
    .about-badge-v3 {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 16px;
        background: rgba(14, 165, 233, 0.09);
        border: 1px solid rgba(14, 165, 233, 0.22);
        border-radius: 30px;
        margin-bottom: 14px;
        font-size: 0.74rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #0284c7;
    }
    .badge-dot-live {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #0ea5e9;
        box-shadow: 0 0 8px #0ea5e9;
        animation: pulseDotLive 2s infinite ease-in-out;
    }
    .about-v3-header {
        max-width: 820px;
        margin-bottom: 20px;
    }
    .about-v3-title {
        font-family: 'Space Grotesk', 'Poppins', sans-serif;
        font-size: 2.15rem;
        font-weight: 800;
        line-height: 1.25;
        color: #0284c7;
        margin-top: 8px;
        margin-bottom: 10px;
        letter-spacing: -0.02em;
    }
    .about-v3-subtitle {
        font-size: 0.94rem;
        line-height: 1.6;
        color: #64748b;
        margin-bottom: 0;
        max-width: 680px;
    }

    /* Concise company overview */
    .about-company-preview {
        position: relative;
        max-width: 540px;
        padding: 20px 0 20px 38px;
    }
    .about-company-preview::before {
        position: absolute;
        top: 24px;
        bottom: 24px;
        left: 0;
        width: 3px;
        border-radius: 3px;
        background: linear-gradient(#38bdf8, #0284c7);
        content: '';
    }
    .about-company-kicker {
        display: block;
        margin-bottom: 10px;
        color: #0284c7;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }
    .about-company-preview h2 {
        margin: 0 0 18px;
        color: #0f172a;
        font-family: 'Space Grotesk', 'Poppins', sans-serif;
        font-size: clamp(1.8rem, 2.5vw, 2.45rem);
        font-weight: 800;
        letter-spacing: -0.035em;
        line-height: 1.16;
    }
    .about-company-preview > p {
        margin: 0;
        color: #64748b;
        font-size: 1rem;
        line-height: 1.8;
    }
    .about-company-statement {
        display: grid;
        gap: 9px;
        margin: 22px 0 24px;
        padding: 18px 0 0;
        border-top: 1px solid #e2e8f0;
        list-style: none;
        color: #334155;
        font-size: 0.9rem;
        font-weight: 600;
        line-height: 1.65;
    }
    .about-company-statement li::before {
        margin-right: 9px;
        color: #0ea5e9;
        content: '✓';
    }
    .about-company-link {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        color: #0284c7;
        font-size: 0.9rem;
        font-weight: 800;
        text-decoration: none !important;
    }
    .about-company-link:hover {
        color: #0369a1;
    }
    .about-company-link i {
        transition: transform 0.2s ease;
    }
    .about-company-link:hover i {
        transform: translateX(4px);
    }

    /* Modern Services Stack (Left Column) */
    .services-modern-stack {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .service-feature-card {
        position: relative;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 18px;
        padding: 16px 20px;
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04);
        overflow: hidden;
    }
    .card-accent-edge {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(180deg, #0ea5e9 0%, #2563eb 100%);
        opacity: 0;
        transform: scaleY(0.4);
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .service-feature-card:hover {
        border-color: #38bdf8;
        box-shadow: 0 16px 32px -8px rgba(14, 165, 233, 0.18), 0 4px 12px rgba(0, 0, 0, 0.03);
        transform: translateY(-3px);
    }
    .service-feature-card:hover .card-accent-edge {
        opacity: 1;
        transform: scaleY(1);
    }
    .service-card-inner {
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }
    .service-icon-box {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 14px;
        background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(37, 99, 235, 0.06) 100%);
        border: 1px solid rgba(14, 165, 233, 0.22);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #0284c7;
        font-size: 1.25rem;
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        flex-shrink: 0;
    }
    .service-feature-card:hover .service-icon-box {
        background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
        border-color: transparent;
        color: #ffffff;
        transform: rotate(-6deg) scale(1.08);
        box-shadow: 0 8px 20px rgba(14, 165, 233, 0.35);
    }
    .service-text-content {
        flex: 1;
        min-width: 0;
    }
    .service-title {
        font-size: 1.02rem;
        font-weight: 700;
        line-height: 1.35;
        margin: 0 0 6px 0;
        color: #0f172a;
    }
    .service-title a {
        color: inherit;
        text-decoration: none !important;
        transition: color 0.25s ease;
    }
    .service-feature-card:hover .service-title a {
        color: #0284c7;
    }
    .service-desc {
        font-size: 0.84rem;
        line-height: 1.55;
        color: #64748b;
        margin: 0;
    }
    .service-card-arrow {
        width: 34px;
        height: 34px;
        min-width: 34px;
        border-radius: 50%;
        background: #f1f5f9;
        color: #64748b;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        text-decoration: none !important;
        align-self: center;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }
    .service-feature-card:hover .service-card-arrow {
        background: #0ea5e9;
        color: #ffffff;
        transform: translateX(4px);
        box-shadow: 0 4px 12px rgba(14, 165, 233, 0.35);
    }
    /* Right Column: Layered Image Composition */
    .about-image-composition {
        position: relative;
        padding: 20px 20px 40px 10px;
    }
    .composition-glow {
        position: absolute;
        top: 20%;
        right: 10%;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(14, 165, 233, 0.18) 0%, rgba(37, 99, 235, 0.05) 50%, transparent 70%);
        filter: blur(35px);
        pointer-events: none;
        z-index: 0;
    }
    .main-image-box {
        position: relative;
        z-index: 1;
        border-radius: 24px;
        overflow: hidden;
        height: 480px;
        width: 92%;
        margin-right: auto;
        margin-left: 0;
        box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.22);
        border: 1px solid rgba(226, 232, 240, 0.8);
    }
    .comp-img-main {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 15%;
        display: block;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .main-image-box:hover .comp-img-main {
        transform: scale(1.03);
    }
    .main-img-gradient {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.5) 100%);
        pointer-events: none;
    }
    .main-img-tag {
        position: absolute;
        bottom: 20px;
        left: 20px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(8px);
        padding: 8px 16px;
        border-radius: 30px;
        display: inline-flex;
        align-items: center;
        font-size: 0.78rem;
        font-weight: 700;
        color: #0f172a;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    /* Floating Sub Image Card */
    .floating-tech-card {
        position: absolute;
        bottom: 10px;
        left: 0;
        z-index: 3;
        width: 270px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(226, 232, 240, 0.95);
        border-radius: 18px;
        padding: 12px;
        box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.22);
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .floating-card-thumb {
        width: 100%;
        height: 110px;
        border-radius: 12px;
        overflow: hidden;
    }
    .comp-img-sub {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .floating-card-body {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }
    .floating-kicker {
        font-size: 0.70rem;
        font-weight: 700;
        color: #0ea5e9;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    .floating-title {
        font-size: 0.88rem;
        font-weight: 700;
        color: #0f172a;
        margin: 0;
    }
    .floating-metric {
        font-size: 0.74rem;
        font-weight: 600;
        color: #64748b;
    }

    /* Floating Stat Pill (Top Right) */
    .floating-stat-pill {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 3;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(226, 232, 240, 0.95);
        border-radius: 16px;
        padding: 10px 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 14px 30px -8px rgba(15, 23, 42, 0.16);
    }
    .stat-icon-gold {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: linear-gradient(135deg, #0ea5e9, #2563eb);
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }
    .stat-big {
        display: block;
        font-size: 0.96rem;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.15;
    }
    .stat-small {
        display: block;
        font-size: 0.70rem;
        font-weight: 600;
        color: #64748b;
    }

    /* Animations */
    @keyframes pulseDotLive {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.4; transform: scale(0.85); }
    }

    /* Responsive */
    @media (max-width: 991.98px) {
        .pyramide-about-v3 {
            padding: 60px 0 70px;
        }
        .about-v3-title {
            font-size: 1.48rem;
        }
        .main-image-box {
            width: 100%;
            height: 360px;
            margin-left: 0;
            margin-top: 30px;
        }
        .floating-tech-card {
            position: relative;
            bottom: auto;
            left: auto;
            width: 100%;
            margin-top: 16px;
        }
        .floating-stat-pill {
            top: 40px;
            right: 10px;
        }
    }
    @media (max-width: 767.98px) {
        .about-v3-title {
            font-size: 1.45rem;
        }
        .service-feature-card {
            padding: 12px 14px;
        }
        .service-icon-box {
            width: 36px;
            height: 36px;
            min-width: 36px;
            font-size: 0.92rem;
            border-radius: 10px;
        }
        .service-title {
            font-size: 0.84rem;
            line-height: 1.25;
            margin-bottom: 3px;
        }
        .service-title a {
            font-size: inherit;
        }
        .service-desc {
            font-size: 0.72rem;
            line-height: 1.4;
        }
        .service-card-arrow {
            display: none;
        }
        .main-image-box {
            height: 280px;
        }
    }

/* =========================================================
       PYRAMIDE STATS SECTION â€” Enterprise Glassmorphism
       ========================================================= */
    .pyramide-stats-section.fact-counter {
        position: relative;
        background-image: none !important;
        background-size: cover !important;
        background-position: center center !important;
        background-attachment: fixed !important;
        padding: 85px 0 90px !important;
        overflow: hidden;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    /* Dark overlay on top of background image */
    .pyramide-stats-section.fact-counter:before {
        content: '' !important;
        display: block !important;
        position: absolute !important;
        inset: 0 !important;
        background: linear-gradient(135deg, rgba(4, 8, 20, 0.88) 0%, rgba(7, 15, 35, 0.82) 50%, rgba(10, 20, 45, 0.88) 100%) !important;
        z-index: 0 !important;
    }
    .stats-ambient-glow-1 {
        position: absolute;
        top: -120px;
        left: 10%;
        width: 450px;
        height: 450px;
        background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 65%);
        filter: blur(55px);
        pointer-events: none;
        z-index: 1;
    }
    .stats-ambient-glow-2 {
        position: absolute;
        bottom: -120px;
        right: 10%;
        width: 450px;
        height: 450px;
        background: radial-gradient(circle, rgba(37, 99, 235, 0.13) 0%, transparent 65%);
        filter: blur(55px);
        pointer-events: none;
        z-index: 1;
    }
    .stat-enterprise-card {
        background: rgba(15, 23, 42, 0.65);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 14px 12px;
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.45);
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    .stat-enterprise-card:hover {
        transform: translateY(-4px);
        border-color: rgba(255, 255, 255, 0.08);
        background: rgba(15, 23, 42, 0.88);
        box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.5);
    }
    .stat-card-glow-bar {
        display: none;
    }
    .stat-card-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 8px;
    }
    .stat-icon-wrapper {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        background: linear-gradient(135deg, rgba(14, 165, 233, 0.12) 0%, rgba(37, 99, 235, 0.06) 100%);
        border: 1px solid rgba(14, 165, 233, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #38bdf8;
        font-size: 0.8rem;
        transition: all 0.35s ease;
    }
    .stat-enterprise-card:hover .stat-icon-wrapper {
        background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(37, 99, 235, 0.12));
        color: #38bdf8;
        transform: scale(1.05);
    }
    .stat-card-pill {
        font-size: 0.70rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: #94a3b8;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 4px 10px;
        border-radius: 20px;
    }
    .live-support-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: #4ade80;
        border-color: rgba(74, 222, 128, 0.25);
        background: rgba(74, 222, 128, 0.08);
    }
    .pulse-green-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #4ade80;
        box-shadow: 0 0 6px #4ade80;
        animation: pulseGreen 1.6s infinite ease-in-out;
    }
    @keyframes pulseGreen {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.4; transform: scale(0.85); }
    }
    .stat-digits-wrap {
        display: flex;
        align-items: baseline;
        gap: 2px;
        margin-bottom: 5px;
    }
    .stat-counter-val {
        font-family: 'Space Grotesk', 'Poppins', sans-serif !important;
        font-size: 1.7rem !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        background: linear-gradient(180deg, #ffffff 30%, #cbd5e1 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .stat-suffix {
        font-family: 'Space Grotesk', 'Poppins', sans-serif !important;
        font-size: 1.1rem !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        color: #38bdf8 !important;
        margin-left: 2px;
    }
    .stat-label-text {
        font-size: 0.78rem;
        font-weight: 700;
        color: #f1f5f9;
        margin-bottom: 3px;
        line-height: 1.3;
    }
    .stat-sub-text {
        font-size: 0.67rem;
        font-weight: 500;
        color: #64748b;
        line-height: 1.35;
        margin-top: auto;
    }
    @media (max-width: 991.98px) {
        .pyramide-stats-section.fact-counter {
            padding: 50px 0 55px !important;
        }
        .stat-enterprise-card {
            margin-bottom: 8px;
        }
    }
    @media (max-width: 767.98px) {
        .pyramide-stats-section.fact-counter {
            padding: 42px 0 46px !important;
        }
        .pyramide-stats-section .row {
            --bs-gutter-x: 12px;
            --bs-gutter-y: 14px;
        }
        .pyramide-stats-section .counter-column {
            padding-right: 8px;
            padding-left: 8px;
            margin-bottom: 16px;
        }
        .stat-counter-val {
            font-size: 1.3rem !important;
        }
        .stat-suffix {
            font-size: 0.9rem !important;
        }
        .stat-enterprise-card {
            padding: 9px 8px;
        }
        .stat-icon-wrapper {
            width: 27px;
            height: 27px;
            font-size: 0.72rem;
        }
        .stat-card-header {
            margin-bottom: 6px;
        }
        .stat-label-text {
            font-size: 0.68rem;
        }
        .stat-sub-text {
            font-size: 0.58rem;
            line-height: 1.3;
            margin-top: 4px;
        }
    }

/* =========================================================
       PYRAMIDE REALISATIONS SECTION â€” Modern Automated Slider
       ========================================================= */
    .pyramide-realisations-section {
        position: relative;
        background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
        padding: 80px 0 85px;
        overflow: hidden;
        border-top: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
    }
    .realisations-header-box {
        margin-bottom: 25px;
    }
    .realisations-section-title {
        font-size: 2.15rem;
        font-weight: 800;
        color: #0284c7;
        margin-bottom: 10px;
        font-family: 'Space Grotesk', 'Poppins', sans-serif;
        line-height: 1.25;
    }
    .realisations-section-subtitle {
        font-size: 0.95rem;
        color: #64748b;
        max-width: 640px;
        margin: 0 0 35px 0;
        line-height: 1.6;
    }
    .realisation-item-wrap {
        padding: 8px 4px 16px;
        height: 100%;
    }
    .realisation-modern-card {
        background: #ffffff;
        border-radius: 18px;
        border: 1px solid rgba(226, 232, 240, 0.9);
        overflow: hidden;
        box-shadow: 0 8px 24px -6px rgba(15, 23, 42, 0.06);
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .realisation-modern-card:hover {
        transform: translateY(-7px);
        border-color: rgba(14, 165, 233, 0.35);
        box-shadow: 0 20px 35px -10px rgba(14, 165, 233, 0.18), 0 4px 12px rgba(0, 0, 0, 0.04);
    }
    .realisation-media-box {
        position: relative;
        height: 215px;
        overflow: hidden;
        background: #0f172a;
    }
    .realisation-card-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        display: block;
    }
    .realisation-modern-card:hover .realisation-card-img {
        transform: scale(1.08);
    }
    .realisation-media-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(15, 23, 42, 0) 40%, rgba(15, 23, 42, 0.65) 100%);
        pointer-events: none;
    }
    .realisation-service-tag {
        position: absolute;
        top: 14px;
        left: 14px;
        background: rgba(15, 23, 42, 0.82);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        color: #ffffff;
        font-size: 0.70rem;
        font-weight: 700;
        padding: 5px 12px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        z-index: 2;
        letter-spacing: 0.03em;
    }
    .realisation-content-box {
        padding: 22px 20px 20px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    .realisation-item-title {
        font-size: 1.05rem;
        font-weight: 700;
        line-height: 1.45;
        margin: 0 0 10px;
        color: #0f172a;
        overflow: visible;
    }
    .realisation-item-title a {
        color: inherit;
        text-decoration: none !important;
        transition: color 0.25s ease;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.45;
        padding-bottom: 4px;
    }
    .realisation-modern-card:hover .realisation-item-title a {
        color: #0284c7;
    }
    .realisation-item-desc {
        font-size: 0.82rem;
        color: #64748b;
        line-height: 1.55;
        margin-bottom: 18px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        padding-bottom: 2px;
    }
    .realisation-card-action {
        margin-top: auto;
        padding-top: 14px;
        border-top: 1px solid rgba(241, 245, 249, 0.9);
    }
    .realisation-link-btn {
        display: inline-flex;
        align-items: center;
        font-size: 0.82rem;
        font-weight: 700;
        color: #0284c7;
        text-decoration: none !important;
        transition: all 0.25s ease;
    }
    .realisation-link-btn i {
        transition: transform 0.25s ease;
    }
    .realisation-modern-card:hover .realisation-link-btn {
        color: #0369a1;
    }
    .realisation-modern-card:hover .realisation-link-btn i {
        transform: translateX(4px);
    }
    /* Strict suppression of navigation arrows and pagination dots */
    .realisations-carousel .owl-nav,
    .realisations-carousel .owl-dots {
        display: none !important;
    }

    /* Mobile Responsiveness */
    @media (max-width: 767.98px) {
        .pyramide-realisations-section {
            padding: 55px 0 60px;
        }
        .realisations-section-title {
            font-size: 1.45rem;
        }
        .realisations-section-subtitle {
            font-size: 0.82rem;
            margin-bottom: 28px;
        }
        .realisation-media-box {
            height: 185px;
        }
        .realisation-content-box {
            padding: 16px 14px 14px;
        }
        .realisation-item-title {
            font-size: 0.95rem;
            line-height: 1.4;
            margin-bottom: 6px;
        }
        .realisation-item-desc {
            font-size: 0.76rem;
            margin-bottom: 14px;
        }
    }

.our-protection .sec-title h2,
    .news-section .sec-title h2 {
        font-family: 'Space Grotesk', 'Poppins', sans-serif !important;
        font-size: 2.15rem !important;
        font-weight: 800 !important;
        color: #0284c7 !important;
        line-height: 1.25 !important;
        text-transform: none !important;
        padding-top: 0 !important;
        margin-bottom: 10px !important;
        letter-spacing: -0.01em;
    }
    .our-protection .sec-title h2:before,
    .news-section .sec-title h2:before {
        display: none !important;
    }
    .our-protection .title-text {
        font-size: 0.95rem !important;
        color: #64748b !important;
        max-width: 680px;
        margin: 0 auto 40px !important;
        line-height: 1.6 !important;
        text-transform: none !important;
    }
    @media (max-width: 767.98px) {
        .our-protection .sec-title h2,
        .news-section .sec-title h2 {
            font-size: 1.45rem !important;
        }
        .our-protection .title-text {
            font-size: 0.82rem !important;
            margin-bottom: 22px !important;
        }
    }

/* =========================================================
       PYRAMIDE PARTNERS SECTION â€” Modern Enterprise Logo Carousel
       ========================================================= */
    .pyramide-partners-section {
        position: relative;
        background: #ffffff;
        padding: 70px 0 75px;
        overflow: hidden;
        border-top: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
    }
    .partners-header-box {
        margin-bottom: 25px;
    }
    .partners-section-title {
        font-size: 2.15rem;
        font-weight: 800;
        color: #0284c7;
        margin-bottom: 10px;
        font-family: 'Space Grotesk', 'Poppins', sans-serif;
        line-height: 1.25;
    }
    .partners-section-subtitle {
        font-size: 0.95rem;
        color: #64748b;
        max-width: 640px;
        margin: 0 0 32px 0;
        line-height: 1.6;
    }
    .partner-logo-item {
        padding: 6px 2px 10px;
    }
    .partner-logo-card {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 14px;
        height: 96px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px 18px;
        box-shadow: 0 4px 12px -2px rgba(15, 23, 42, 0.04);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .partner-logo-card:hover {
        transform: translateY(-2px);
        border-color: rgba(14, 165, 233, 0.3);
        box-shadow: 0 6px 14px -2px rgba(15, 23, 42, 0.08);
    }
    .partner-logo-img {
        max-height: 52px;
        max-width: 125px;
        width: auto !important;
        height: auto !important;
        object-fit: contain;
        mix-blend-mode: multiply; /* Rend le fond blanc/clair des logos entiÃ¨rement transparent */
        transition: all 0.35s ease;
        display: inline-block;
    }
    .partner-logo-card:hover .partner-logo-img {
        transform: scale(1.06);
    }
    .partners-carousel .owl-nav,
    .partners-carousel .owl-dots {
        display: none !important;
    }

    @media (max-width: 767.98px) {
        .pyramide-partners-section {
            padding: 50px 0 55px;
        }
        .partners-section-title {
            font-size: 1.45rem;
        }
        .partners-section-subtitle {
            font-size: 0.82rem;
            margin-bottom: 22px;
        }
        .partner-logo-card {
            height: 80px;
            padding: 10px 12px;
            border-radius: 12px;
        }
        .partner-logo-img {
            max-height: 42px;
            max-width: 100px;
            mix-blend-mode: multiply;
        }
    }

/* =========================================================
       PYRAMIDE TESTIMONIALS SECTION â€” Compact Glassmorphism Cards
       ========================================================= */
    .pyramide-testimonials-section {
        position: relative;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: scroll;
        padding: 70px 0 75px;
        overflow: hidden;
    }
    .testimonials-dark-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(8, 15, 30, 0.93) 0%, rgba(15, 23, 42, 0.88) 50%, rgba(8, 15, 30, 0.95) 100%);
        z-index: 1;
    }
    .testimonials-header-box {
        margin-bottom: 24px;
    }
    .testimonials-badge-wrap {
        margin-bottom: 6px;
    }
    .testimonials-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 4px 12px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 50px;
        font-size: 0.70rem;
        font-weight: 700;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        color: #38bdf8;
    }
    .testimonials-section-title {
        font-size: 2.15rem;
        font-weight: 800;
        color: #0284c7;
        margin-bottom: 8px;
        font-family: 'Space Grotesk', 'Poppins', sans-serif;
        line-height: 1.25;
    }
    .testimonials-section-subtitle {
        font-size: 0.92rem;
        color: #cbd5e1;
        max-width: 660px;
        line-height: 1.6;
    }
    .btn-give-review {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
        color: #ffffff !important;
        border: 1px solid rgba(56, 189, 248, 0.5);
        padding: 9px 20px;
        border-radius: 50px;
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.4px;
        box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
        transition: all 0.3s ease;
        cursor: pointer;
        outline: none;
    }
    .btn-give-review:hover {
        background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
        box-shadow: 0 8px 20px rgba(2, 132, 199, 0.45);
        transform: translateY(-2px);
        border-color: #38bdf8;
        color: #ffffff !important;
    }

    /* Compact Testimonial Card */
    .testimonial-slide-item {
        padding: 6px 3px 12px;
    }
    .testimonial-card {
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 16px;
        padding: 20px 18px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 220px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
        transition: all 0.3s ease;
    }
    .testimonial-card:hover {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.09);
        border-color: rgba(56, 189, 248, 0.3);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
    }
    .testimonial-stars {
        font-size: 0.72rem;
        letter-spacing: 1.5px;
    }
    .testimonial-quote-icon {
        font-size: 1.15rem;
        color: rgba(56, 189, 248, 0.4);
    }
    .testimonial-text {
        color: #e2e8f0;
        font-size: 0.84rem;
        line-height: 1.55;
        margin-bottom: 14px;
        font-style: italic;
        flex-grow: 1;
    }
    .testimonial-author-box {
        padding-top: 10px !important;
        display: flex;
        gap: 10px;
        border-color: rgba(255, 255, 255, 0.12) !important;
    }
    .testimonial-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        object-fit: cover;
        /* border: 2px solid #38bdf8; */
        box-shadow: 0 0 8px rgba(56, 189, 248, 0.25);
        flex-shrink: 0;
    }
    .testimonial-author-info {
        overflow: hidden;
    }
    .testimonial-name {
        color: #ffffff;
        font-size: 0.92rem;
        font-weight: 700;
        margin-bottom: 1px;
        line-height: 1.3;
    }
    .testimonial-post {
        color: #38bdf8;
        font-size: 0.72rem;
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 2px;
    }
    .testimonial-company {
        color: #94a3b8;
        font-size: 0.70rem;
        font-weight: 500;
    }

    /* Owl Carousel Dots */
    .testimonials-carousel .owl-dots {
        margin-top: 20px;
        text-align: center;
    }
    .testimonials-carousel .owl-dots .owl-dot span {
        width: 8px;
        height: 8px;
        margin: 4px 5px;
        background: rgba(255, 255, 255, 0.25);
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    .testimonials-carousel .owl-dots .owl-dot.active span {
        width: 24px;
        border-radius: 10px;
        background: #0284c7;
        box-shadow: 0 0 10px rgba(2, 132, 199, 0.6);
    }

    /* === RESPONSIVE MOBILE === */
    @media (max-width: 767.98px) {
        .pyramide-testimonials-section {
            padding: 50px 0 55px;
        }
        .testimonials-section-title {
            font-size: 1.45rem !important;
            line-height: 1.25 !important;
        }
        .testimonials-section-subtitle {
            font-size: 0.82rem !important;
        }
        .btn-give-review {
            font-size: 0.76rem !important;
            padding: 7px 16px !important;
        }
        .testimonials-badge {
            font-size: 0.62rem !important;
            padding: 3px 9px !important;
        }
        .testimonial-card {
            padding: 16px 14px;
            min-height: auto;
        }
        .testimonial-text {
            font-size: 0.82rem !important;
            line-height: 1.5 !important;
            margin-bottom: 12px;
        }
        .testimonial-avatar {
            width: 40px;
            height: 40px;
        }
        .testimonial-name {
            font-size: 0.88rem !important;
        }
        .testimonial-post {
            font-size: 0.70rem !important;
        }
        .testimonial-company {
            font-size: 0.68rem !important;
        }
    }

/* =========================================================
       PYRAMIDE NEWS SECTION â€” Full-Width Single-Slide Showcase
       ========================================================= */
    .pyramide-news-section {
        position: relative;
        background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
        padding: 80px 0 85px;
        overflow: hidden;
        border-top: 1px solid #e2e8f0;
    }
    .news-header-box {
        margin-bottom: 25px;
    }
    .news-section-title {
        font-size: 2.15rem;
        font-weight: 800;
        color: #0284c7;
        margin-bottom: 10px;
        font-family: 'Space Grotesk', 'Poppins', sans-serif;
        line-height: 1.25;
    }
    .news-section-subtitle {
        font-size: 0.95rem;
        color: #64748b;
        max-width: 640px;
        margin: 0 0 35px 0;
        line-height: 1.6;
    }
    .news-hero-slide-item {
        padding: 4px 2px 10px;
        width: 100%;
    }
    .news-hero-slide-card {
        position: relative;
        width: 100%;
        min-height: 440px;
        border-radius: 20px;
        overflow: hidden;
        background: #0b1329;
        border: 1px solid rgba(226, 232, 240, 0.35);
        box-shadow: 0 14px 34px -10px rgba(15, 23, 42, 0.22);
        display: flex;
        align-items: flex-end;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .news-hero-bg-img {
        position: absolute;
        inset: 0;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        object-position: center;
        transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        display: block;
    }
    .news-hero-slide-card:hover .news-hero-bg-img {
        transform: scale(1.04);
    }
    .news-hero-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        /* Voile assombri plus léger pour laisser l'image bien visible */
        background: linear-gradient(180deg, rgba(7, 15, 35, 0.12) 0%, rgba(7, 15, 35, 0.48) 50%, rgba(7, 15, 35, 0.85) 100%);
    }

    /* Badge monté en haut de la photo et diminué */
    .news-hero-badge-top {
        position: absolute;
        top: 18px;
        left: 22px;
        z-index: 3;
    }
    .news-hero-pill-badge {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: rgba(14, 165, 233, 0.28);
        border: 1px solid rgba(56, 189, 248, 0.5);
        color: #38bdf8;
        font-size: 0.60rem;
        font-weight: 700;
        padding: 3px 10px;
        border-radius: 20px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    }
    .badge-dot-live {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #38bdf8;
        box-shadow: 0 0 6px #38bdf8;
    }

    .news-hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 100%;
        padding: 36px 26px 24px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    .news-hero-title {
        font-size: 1.16rem !important;
        font-weight: 700 !important;
        line-height: 1.35 !important;
        color: #ffffff;
        margin-bottom: 8px !important;
        font-family: 'Space Grotesk', 'Poppins', sans-serif;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    }
    .news-hero-title a {
        color: #ffffff;
        text-decoration: none !important;
        transition: color 0.25s ease;
    }
    .news-hero-slide-card:hover .news-hero-title a {
        color: #38bdf8;
    }
    .news-hero-desc {
        font-size: 0.82rem !important;
        color: #e2e8f0 !important;
        line-height: 1.5 !important;
        margin-bottom: 14px !important;
        max-width: 100%;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
    }
    .news-hero-footer {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .news-hero-meta-row {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .news-hero-author {
        font-size: 0.75rem !important;
        color: #f1f5f9;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    }
    .news-hero-author i {
        color: #38bdf8;
        font-size: 0.88rem !important;
    }
    .meta-separator {
        color: #94a3b8;
        font-size: 0.8rem;
        user-select: none;
    }
    .news-hero-date {
        font-size: 0.73rem !important;
        color: #cbd5e1;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    }
    .news-hero-date i {
        color: #38bdf8;
        font-size: 0.80rem !important;
    }
    .news-hero-action-box {
        display: block;
    }
    .btn-news-hero-action {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #0ea5e9, #2563eb);
        color: #ffffff !important;
        padding: 7px 18px !important;
        border-radius: 20px !important;
        font-weight: 700;
        font-size: 0.78rem !important;
        box-shadow: 0 6px 18px rgba(14, 165, 233, 0.35);
        text-decoration: none !important;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .btn-news-hero-action:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(14, 165, 233, 0.55);
        color: #ffffff !important;
    }
    .btn-news-hero-action i {
        font-size: 0.72rem;
        transition: transform 0.25s ease;
    }
    .btn-news-hero-action:hover i {
        transform: translateX(4px);
    }

    /* Strict suppression of navigation arrows and pagination dots */
    .news-carousel .owl-nav,
    .news-carousel .owl-dots {
        display: none !important;
    }

    /* About News Widget Header */
    .about-news-wrapper {
        position: relative;
    }
    .about-news-header {
        padding: 0 4px;
    }
    .about-news-kicker {
        font-size: 0.76rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #0284c7;
        display: inline-flex;
        align-items: center;
    }
    .about-news-more-link {
        font-size: 0.82rem;
        font-weight: 700;
        color: #64748b;
        text-decoration: none !important;
        transition: color 0.2s ease, transform 0.2s ease;
        display: inline-flex;
        align-items: center;
    }
    .about-news-more-link:hover {
        color: #0284c7;
        transform: translateX(2px);
    }

    /* Mobile Responsiveness */
    @media (max-width: 767.98px) {
        .pyramide-news-section {
            padding: 55px 0 60px;
        }
        .news-section-title {
            font-size: 1.45rem;
        }
        .news-section-subtitle {
            font-size: 0.82rem;
            margin-bottom: 22px;
        }
        .news-hero-slide-card {
            min-height: 380px;
            border-radius: 16px;
            align-items: flex-end;
        }
        .news-hero-overlay {
            /* Voile assombri plus léger également sur mobile */
            background: linear-gradient(180deg, rgba(7, 15, 35, 0.10) 0%, rgba(7, 15, 35, 0.45) 45%, rgba(7, 15, 35, 0.88) 100%);
        }
        .news-hero-badge-top {
            top: 14px;
            left: 14px;
        }
        .news-hero-pill-badge {
            font-size: 0.56rem;
            padding: 2px 8px;
            gap: 4px;
        }
        .news-hero-content {
            padding: 30px 16px 18px;
            max-width: 100%;
            justify-content: flex-end;
        }
        .news-hero-title {
            font-size: 1.05rem !important;
            line-height: 1.35 !important;
            margin-bottom: 6px !important;
        }
        .news-hero-desc {
            font-size: 0.76rem !important;
            line-height: 1.45 !important;
            margin-bottom: 12px !important;
            -webkit-line-clamp: 2;
        }
        .news-hero-footer {
            gap: 10px;
        }
        .news-hero-meta-row {
            flex-direction: row;
            align-items: center;
            gap: 8px;
        }
        .meta-separator {
            display: inline;
        }
        .news-hero-author {
            font-size: 0.72rem !important;
            gap: 5px;
        }
        .news-hero-date {
            font-size: 0.70rem !important;
            gap: 5px;
        }
        .btn-news-hero-action {
            padding: 6px 14px !important;
            font-size: 0.72rem !important;
            border-radius: 16px !important;
            gap: 5px;
        }
        .btn-news-hero-action i {
            font-size: 0.68rem;
        }
    }
