/* =====================================================
       DESIGN TOKENS  
       Color palette: Enterprise-grade, trustworthy blues
       Typography: Heebo (supports Hebrew natively)
       ===================================================== */
:root {
    /* Primary palette */
    --b2e-primary: #1A56DB;
    --b2e-primary-dark: #1340A5;
    --b2e-primary-light: #E8EFFC;
    --b2e-primary-hover: #1E429F;
    /* Accent */
    --b2e-accent: #06B6D4;
    --b2e-accent-light: #E0F7FA;
    /* Neutrals */
    --b2e-dark: #111827;
    --b2e-gray-900: #1F2937;
    --b2e-gray-700: #374151;
    --b2e-gray-600: #4B5563;
    --b2e-gray-500: #6B7280;
    --b2e-gray-400: #9CA3AF;
    --b2e-gray-200: #E5E7EB;
    --b2e-gray-100: #F3F4F6;
    --b2e-gray-50: #F9FAFB;
    --b2e-white: #FFFFFF;
    /* Semantic */
    --b2e-success: #059669;
    --b2e-warning: #D97706;
    /* Shadows */
    --b2e-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --b2e-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --b2e-shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --b2e-shadow-xl: 0 20px 50px -12px rgba(0,0,0,0.12);
    /* Radius */
    --b2e-radius-sm: 8px;
    --b2e-radius-md: 12px;
    --b2e-radius-lg: 16px;
    --b2e-radius-xl: 24px;
    /* Transitions */
    --b2e-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================================================
       GLOBAL RESETS & BASE 
       ===================================================== */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Heebo', sans-serif;
    color: var(--b2e-gray-700);
    background: var(--b2e-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Heebo', sans-serif;
    color: var(--b2e-dark);
    font-weight: 700;
    line-height: 1.3;
}

/* =====================================================
       UTILITY CLASSES 
       ===================================================== */
.b2e-section {
    padding: 100px 0;
    position: relative;
}

.b2e-section-sm {
    padding: 70px 0;
}

.b2e-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.b2e-section-subtitle {
    font-size: 1.15rem;
    color: var(--b2e-gray-500);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.b2e-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--b2e-primary-light);
    color: var(--b2e-primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

/* ── Hero badge: glassmorphism + shimmer for high visibility ── */
.b2e-hero .b2e-badge {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(103, 232, 249, 0.25);
    color: #67E8F9;
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    gap: 10px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 24px rgba(6, 182, 212, 0.12),
               inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: heroBadgeGlow 4s ease-in-out infinite;
}

/* Animated shimmer streak across badge */
.b2e-hero .b2e-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(255, 255, 255, 0.12) 50%,
        transparent 80%
    );
    animation: heroBadgeShimmer 4s ease-in-out infinite;
}

/* Live indicator dot */
.b2e-hero .b2e-badge .b2e-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34D399;
    box-shadow: 0 0 6px rgba(52, 211, 153, 0.6);
    animation: heroBadgeDotPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.b2e-hero .b2e-badge i {
    font-size: 0.8rem;
    opacity: 0.85;
}

@keyframes heroBadgeGlow {
    0%, 100% { box-shadow: 0 0 24px rgba(6, 182, 212, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1); }
    50%      { box-shadow: 0 0 32px rgba(6, 182, 212, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.15); }
}

@keyframes heroBadgeShimmer {
    0%        { left: -100%; }
    40%, 100% { left: 140%; }
}

@keyframes heroBadgeDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.75); }
}

.b2e-gradient-text {
    background: linear-gradient(135deg, var(--b2e-primary), var(--b2e-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================================
       BUTTONS
       ===================================================== */
.b2e-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--b2e-primary), var(--b2e-primary-dark));
    color: var(--b2e-white) !important;
    border: none;
    padding: 14px 32px;
    border-radius: var(--b2e-radius-sm);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Heebo', sans-serif;
    cursor: pointer;
    transition: var(--b2e-transition);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(26, 86, 219, 0.35);
}

    .b2e-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(26, 86, 219, 0.45);
        color: var(--b2e-white) !important;
    }

.b2e-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--b2e-white);
    color: var(--b2e-primary) !important;
    border: 2px solid var(--b2e-primary);
    padding: 12px 28px;
    border-radius: var(--b2e-radius-sm);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Heebo', sans-serif;
    cursor: pointer;
    transition: var(--b2e-transition);
    text-decoration: none;
}

    .b2e-btn-secondary:hover {
        background: var(--b2e-primary-light);
        transform: translateY(-2px);
        color: var(--b2e-primary) !important;
    }

.b2e-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--b2e-white) !important;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 12px 28px;
    border-radius: var(--b2e-radius-sm);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Heebo', sans-serif;
    cursor: pointer;
    transition: var(--b2e-transition);
    text-decoration: none;
}

    .b2e-btn-ghost:hover {
        background: rgba(255,255,255,0.15);
        border-color: rgba(255,255,255,0.7);
        color: var(--b2e-white) !important;
    }

/* =====================================================
       NAVBAR 
       ===================================================== */
.b2e-navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--b2e-transition);
    background: transparent;
}

    .b2e-navbar.scrolled {
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: var(--b2e-shadow-md);
        padding: 10px 0;
    }

    .b2e-navbar .nav-brand {
        font-size: 1.6rem;
        font-weight: 800;
        color: var(--b2e-white);
        text-decoration: none;
        transition: var(--b2e-transition);
    }

    .b2e-navbar.scrolled .nav-brand {
        color: var(--b2e-primary);
    }

    .b2e-navbar .nav-link-custom {
        color: rgba(255,255,255,0.85);
        font-weight: 500;
        font-size: 0.95rem;
        padding: 8px 16px;
        transition: var(--b2e-transition);
        text-decoration: none;
        position: relative;
        overflow: hidden;
    }

    .b2e-navbar .nav-link-custom::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 16px;
        right: 16px;
        height: 2px;
        background: linear-gradient(90deg, var(--b2e-accent), rgba(255,255,255,0.8));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 1px;
    }

    .b2e-navbar.scrolled .nav-link-custom {
        color: var(--b2e-gray-700);
    }

    .b2e-navbar.scrolled .nav-link-custom::after {
        background: linear-gradient(90deg, var(--b2e-primary), var(--b2e-accent));
    }

    .b2e-navbar .nav-link-custom:hover {
        color: var(--b2e-white);
    }

    .b2e-navbar .nav-link-custom:hover::after {
        transform: scaleX(1);
    }

    .b2e-navbar.scrolled .nav-link-custom:hover {
        color: var(--b2e-primary);
    }

/* =====================================================
       NAV DROPDOWN
       ===================================================== */
.b2e-nav-dropdown {
    position: relative;
}

.b2e-nav-dropdown .nav-link-custom {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.b2e-nav-dropdown .nav-arrow {
    font-size: 0.65rem;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    margin-top: 1px;
}

.b2e-nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.b2e-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 50%;
    transform: translateX(50%);
    min-width: 260px;
    background: var(--b2e-white);
    border: 1px solid var(--b2e-gray-200);
    border-radius: var(--b2e-radius-md);
    box-shadow: var(--b2e-shadow-xl);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50%) translateY(10px);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.3s;
    z-index: 1100;
}

/* Invisible bridge to prevent gap hover loss */
.b2e-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    right: 0;
    left: 0;
    height: 14px;
}

.b2e-nav-dropdown:hover .b2e-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(50%) translateY(0);
}

.b2e-dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: var(--b2e-radius-sm);
    text-decoration: none;
    color: var(--b2e-gray-700);
    transition: var(--b2e-transition);
    position: relative;
    overflow: hidden;
}

.b2e-dropdown-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--b2e-primary-light), rgba(6, 182, 212, 0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
    z-index: 0;
}

.b2e-dropdown-item:hover {
    color: var(--b2e-primary);
}

.b2e-dropdown-item:hover::before {
    opacity: 1;
}

.b2e-dropdown-item > * {
    position: relative;
    z-index: 1;
}

.b2e-dropdown-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--b2e-transition);
}

.b2e-dropdown-item:hover .b2e-dropdown-icon {
    transform: scale(1.1);
}

.b2e-dropdown-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.b2e-dropdown-label {
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.3;
}

.b2e-dropdown-desc {
    font-size: 0.78rem;
    color: var(--b2e-gray-500);
    line-height: 1.4;
}

.b2e-dropdown-item:hover .b2e-dropdown-desc {
    color: var(--b2e-gray-700);
}

.b2e-dropdown-divider {
    height: 1px;
    background: var(--b2e-gray-200);
    margin: 6px 8px;
}

.b2e-dropdown-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: var(--b2e-radius-sm);
    text-decoration: none;
    color: var(--b2e-primary);
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--b2e-transition);
}

.b2e-dropdown-footer:hover {
    background: var(--b2e-primary-light);
    color: var(--b2e-primary-dark);
}

.b2e-dropdown-footer i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.b2e-dropdown-footer:hover i {
    transform: translateX(-4px);
}

/* =====================================================
       LANGUAGE TOGGLE
       ===================================================== */
.b2e-lang-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 100px;
    padding: 3px;
    gap: 0;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--b2e-transition);
}

.b2e-navbar.scrolled .b2e-lang-toggle {
    background: var(--b2e-gray-100);
    border-color: var(--b2e-gray-200);
}

.b2e-lang-option {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 14px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.6);
    font-family: 'Heebo', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 100px;
    transition: color 0.3s ease;
    white-space: nowrap;
    line-height: 1.4;
}

.b2e-lang-option:hover {
    color: rgba(255,255,255,0.9);
}

.b2e-lang-option.active {
    color: var(--b2e-primary);
}

.b2e-navbar.scrolled .b2e-lang-option {
    color: var(--b2e-gray-400);
}

.b2e-navbar.scrolled .b2e-lang-option:hover {
    color: var(--b2e-gray-700);
}

.b2e-navbar.scrolled .b2e-lang-option.active {
    color: var(--b2e-primary);
}

.b2e-lang-slider {
    position: absolute;
    top: 3px;
    right: 3px;
    width: calc(50% - 3px);
    height: calc(100% - 6px);
    background: var(--b2e-white);
    border-radius: 100px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12), 0 0 1px rgba(0,0,0,0.08);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

/* When English (left option) is active, slide left (in RTL context) */
.b2e-lang-toggle[data-active="en"] .b2e-lang-slider {
    transform: translateX(-100%);
}

/* Mobile language toggle */
.b2e-mobile-lang-section {
    padding: 20px 0 8px;
    border-top: 1px solid var(--b2e-gray-200);
    margin-top: 12px;
}

.b2e-mobile-lang-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--b2e-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.b2e-lang-toggle-mobile {
    background: var(--b2e-gray-100);
    border-color: var(--b2e-gray-200);
    width: 100%;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.b2e-lang-toggle-mobile .b2e-lang-option {
    flex: 1;
    justify-content: center;
    color: var(--b2e-gray-400);
    font-size: 0.88rem;
    padding: 8px 14px;
}

.b2e-lang-toggle-mobile .b2e-lang-option:hover {
    color: var(--b2e-gray-700);
}

.b2e-lang-toggle-mobile .b2e-lang-option.active {
    color: var(--b2e-primary);
}

.b2e-lang-toggle-mobile .b2e-lang-slider {
    box-shadow: 0 1px 6px rgba(0,0,0,0.1), 0 0 1px rgba(0,0,0,0.06);
}

.b2e-nav-cta {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--b2e-white) !important;
    padding: 8px 20px;
    border-radius: var(--b2e-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--b2e-transition);
    text-decoration: none;
}

.b2e-nav-cta:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 86, 219, 0.3);
}

.b2e-navbar.scrolled .b2e-nav-cta {
    background: var(--b2e-primary);
    border-color: var(--b2e-primary);
    color: var(--b2e-white) !important;
}

/* =====================================================
       HERO SECTION 
       ===================================================== */
.b2e-hero {
    min-height: 100vh;
    background: linear-gradient(160deg, #0F2B5B 0%, var(--b2e-primary) 50%, #1340A5 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

    .b2e-hero::before {
        content: '';
        position: absolute;
        top: -40%;
        left: -20%;
        width: 80%;
        height: 80%;
        background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 70%);
        border-radius: 50%;
    }

    .b2e-hero::after {
        content: '';
        position: absolute;
        bottom: -30%;
        right: -10%;
        width: 60%;
        height: 60%;
        background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
        border-radius: 50%;
    }

/* Decorative frame overlay — sits above the gradient but behind hero content */
.b2e-hero-frame {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .b2e-hero-frame img {
        width: 85%;
        max-width: 1200px;
        height: auto;
        opacity: 0.07;
        filter: brightness(1.6) saturate(0.3);
        transform: scale(1.05);
        animation: heroFrameFloat 18s ease-in-out infinite;
        user-select: none;
    }

@keyframes heroFrameFloat {
    0%, 100% { transform: scale(1.05) translateY(0); }
    50%      { transform: scale(1.05) translateY(-12px); }
}

.b2e-hero-content {
    position: relative;
    z-index: 2;
}

.b2e-hero h1 {
    font-size: 2.7rem;
    font-weight: 900;
    color: var(--b2e-white);
    margin-bottom: 24px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.b2e-hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 560px;
    line-height: 1.9;
}

.b2e-hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

    .b2e-hero-stats .stat-item {
        text-align: center;
    }

    .b2e-hero-stats .stat-number {
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--b2e-white);
        display: inline;
        line-height: 1;
        font-variant-numeric: tabular-nums;
    }

    .b2e-hero-stats .stat-label {
        font-size: 1rem;
        color: rgba(255,255,255,0.6);
        margin-top: 6px;
    }

/* Hero visual / mockup */
.b2e-hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline-start: 100px;
}

/* Decorative glow orb behind the image */
.b2e-hero-visual::before {
    content: '';
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 75%;
    background: radial-gradient(circle, rgba(6,182,212,0.28) 0%, rgba(26,86,219,0.15) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    animation: heroGlowPulse 6s ease-in-out infinite;
    pointer-events: none;
}

/* Accent ring decoration */
.b2e-hero-visual::after {
    content: '';
    position: absolute;
    bottom: 40px;
    inset-inline-end: -10px;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(6,182,212,0.25);
    border-radius: 50%;
    z-index: 0;
    animation: heroRingSpin 20s linear infinite;
    pointer-events: none;
}

@keyframes heroGlowPulse {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
    50%      { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

@keyframes heroRingSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.b2e-hero-visual img {
    width: 80%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 60px;
}

.b2e-hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--b2e-radius-xl);
    object-fit: cover;
    position: relative;
    z-index: 1;
    /* Multi-layered shadow for depth */
    box-shadow:
        0 4px 12px rgba(0,0,0,0.12),
        0 16px 40px rgba(0,0,0,0.18),
        0 30px 80px rgba(0,0,0,0.22),
        0 0 0 1px rgba(255,255,255,0.08);
    /* Gradient border glow via outline */
    outline: 2px solid rgba(6,182,212,0.2);
    outline-offset: 4px;
}

/* Hero image wrapper & floating accent dots */
.b2e-hero-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.b2e-hero-accent-dot {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.b2e-hero-accent-dot.dot-1 {
    width: 14px;
    height: 14px;
    background: var(--b2e-accent);
    top: 12%;
    inset-inline-end: -8px;
    opacity: 0.6;
    animation: heroDotFloat1 5s ease-in-out infinite;
}

.b2e-hero-accent-dot.dot-2 {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    bottom: 25%;
    inset-inline-start: -12px;
    animation: heroDotFloat2 7s ease-in-out infinite;
}

.b2e-hero-accent-dot.dot-3 {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(6,182,212,0.35);
    top: 60%;
    inset-inline-end: -18px;
    animation: heroDotFloat3 9s ease-in-out infinite;
}

@keyframes heroDotFloat1 {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50%      { transform: translateY(-14px) scale(1.2); opacity: 0.9; }
}

@keyframes heroDotFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(8px, -10px); }
}

@keyframes heroDotFloat3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-8px) rotate(180deg); }
}

.b2e-hero-mockup {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--b2e-radius-lg);
    padding: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.b2e-mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.b2e-mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}

    .b2e-mockup-dot:nth-child(1) {
        background: #FF6B6B;
    }

    .b2e-mockup-dot:nth-child(2) {
        background: #FFD93D;
    }

    .b2e-mockup-dot:nth-child(3) {
        background: #6BCB77;
    }

.b2e-mockup-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.b2e-mockup-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--b2e-radius-sm);
    padding: 20px;
}

    .b2e-mockup-card .card-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: rgba(6,182,212,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 12px;
        color: var(--b2e-accent);
        font-size: 1rem;
    }

    .b2e-mockup-card .card-title {
        color: var(--b2e-white);
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 6px;
    }

.b2e-mockup-bar {
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.1);
    margin-top: 8px;
}

    .b2e-mockup-bar .fill {
        height: 100%;
        border-radius: 3px;
        background: linear-gradient(90deg, var(--b2e-accent), var(--b2e-primary));
    }

/* =====================================================
       SOCIAL PROOF / LOGO BAR 
       ===================================================== */
.b2e-social-proof {
    background: var(--b2e-gray-50);
    border-top: 1px solid var(--b2e-gray-200);
    border-bottom: 1px solid var(--b2e-gray-200);
}

.b2e-social-proof-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--b2e-gray-600);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 36px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

    .b2e-social-proof-intro::before,
    .b2e-social-proof-intro::after {
        content: '';
        flex: 1;
        max-width: 100px;
        height: 1px;
        background: var(--b2e-gray-200);
    }

.b2e-logo-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}

/* Logo Carousel Styles */
.b2e-logo-carousel {
    margin: 0 auto;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.b2e-logo-carousel .splide__track {
    overflow: hidden;
}

.b2e-logo-carousel .splide__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
}

.b2e-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--b2e-transition);
    white-space: nowrap;
    height: 100%;
}

.b2e-logo-image {
    max-height: 50px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--b2e-transition);
}

    .b2e-logo-item:hover .b2e-logo-image {
        filter: grayscale(0%);
        opacity: 1;
    }

/* Carousel animation enhancements */
.b2e-logo-carousel .splide__slide {
    opacity: 0.7;
    transform: scale(0.9);
    transition: var(--b2e-transition);
}

.b2e-logo-carousel .splide__slide.is-active {
    opacity: 1;
    transform: scale(1);
}

/* Smooth fade for carousel edges */
.b2e-logo-carousel::before,
.b2e-logo-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.b2e-logo-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--b2e-white), transparent);
}

.b2e-logo-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--b2e-white), transparent);
}

/* =====================================================
       PRODUCT SHOWCASE SECTION 
       ===================================================== */
.b2e-product-showcase-bg {
    background: var(--b2e-gray-50);
    padding: 0 0 56px;
}

/* Trust logos embedded inside showcase — remove its own section padding */
.b2e-product-showcase-bg .b2e-social-proof {
    padding: 32px 0 24px;
    border-bottom: none;
}

.b2e-product-showcase-bg .b2e-social-proof .b2e-social-proof-intro {
    font-size: 0.85rem;
    margin-bottom: 16px;
    letter-spacing: 1.5px;
}

/* Tighter section header inside showcase */
.b2e-product-showcase-bg .b2e-section-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.b2e-product-showcase-bg .b2e-section-subtitle {
    font-size: 1rem;
    margin-bottom: 28px;
}

.b2e-product-showcase-bg .b2e-badge {
    margin-bottom: 10px;
}

.b2e-product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.b2e-product-card {
    background: var(--b2e-white);
    border-radius: var(--b2e-radius-sm);
    overflow: hidden;
    box-shadow: var(--b2e-shadow-sm);
    transition: var(--b2e-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--b2e-gray-200);
}

.b2e-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--b2e-shadow-xl);
    border-color: var(--b2e-primary);
}

.b2e-product-card-image {
    position: relative;
    height: 130px;
    overflow: hidden;
    background: linear-gradient(135deg, #EEF2FF, #E0F2FE);
}

.b2e-product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.b2e-product-card:hover .b2e-product-card-image img {
    transform: scale(1.06);
}

.b2e-product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.5) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.b2e-product-card:hover .b2e-product-card-overlay {
    opacity: 1;
}

.b2e-product-highlight {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--b2e-primary);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    letter-spacing: 0.01em;
}

[dir="ltr"] .b2e-product-highlight {
    right: auto;
    left: 10px;
}

.b2e-product-highlight i {
    font-size: 0.65rem;
    color: var(--b2e-success);
}

.b2e-product-card-body {
    padding: 14px 18px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.b2e-product-card-slug {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--b2e-primary);
    margin-bottom: 3px;
    opacity: 0.85;
}

.b2e-product-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--b2e-dark);
    margin-bottom: 6px;
    line-height: 1.35;
}

.b2e-product-card-desc {
    font-size: 0.84rem;
    color: var(--b2e-gray-600);
    line-height: 1.55;
    margin-bottom: 10px;
    flex-grow: 1;
}

.b2e-product-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--b2e-primary-light);
    color: var(--b2e-primary);
    font-size: 0.78rem;
    transition: var(--b2e-transition);
    align-self: flex-start;
}

.b2e-product-card:hover .b2e-product-card-arrow {
    background: var(--b2e-primary);
    color: var(--b2e-white);
    transform: translateX(-4px);
}

[dir="ltr"] .b2e-product-card:hover .b2e-product-card-arrow {
    transform: translateX(4px);
}

/* Product Showcase responsive */
@media (max-width: 767px) {
    .b2e-product-showcase-bg {
        padding: 0 0 40px;
    }

    .b2e-product-card-image {
        height: 110px;
    }

    .b2e-product-card-body {
        padding: 12px 14px 14px;
    }

    .b2e-product-card-title {
        font-size: 0.98rem;
    }

    .b2e-product-card-desc {
        font-size: 0.82rem;
    }
}

/* =====================================================
       FEATURES SECTION 
       ===================================================== */
.b2e-features-bg {
    background: var(--b2e-white);
}

.b2e-features-bg .row.g-4 {
    position: relative;
}

.b2e-features-bg .row.g-4::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -50px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.28) 0%, rgba(6, 182, 212, 0.12) 40%, rgba(6, 182, 212, 0.04) 60%, transparent 75%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

.b2e-features-bg .row.g-4::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -50px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.24) 0%, rgba(6, 182, 212, 0.10) 40%, rgba(6, 182, 212, 0.03) 60%, transparent 75%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

.b2e-feature-card {
    background: var(--b2e-white);
    z-index: 1;
    border: 1px solid var(--b2e-gray-200);
    border-radius: var(--b2e-radius-md);
    padding: 36px 28px;
    transition: var(--b2e-transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .b2e-feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--b2e-primary), var(--b2e-accent));
        opacity: 0;
        transition: var(--b2e-transition);
    }

    .b2e-feature-card:hover {
        border-color: transparent;
        box-shadow: var(--b2e-shadow-lg);
        transform: translateY(-4px);
    }

        .b2e-feature-card:hover::before {
            opacity: 1;
        }

.b2e-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--b2e-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: var(--b2e-transition);
}

.b2e-feature-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.b2e-feature-card p {
    font-size: 0.95rem;
    color: var(--b2e-gray-500);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Feature icon color variants */
.feat-blue {
    background: #EBF5FF;
    color: #1A56DB;
}

.feat-cyan {
    background: #E0F7FA;
    color: #06B6D4;
}

.feat-green {
    background: #ECFDF5;
    color: #059669;
}

.feat-amber {
    background: #FFF7ED;
    color: #D97706;
}

.feat-purple {
    background: #F3E8FF;
    color: #7C3AED;
}

.feat-rose {
    background: #FFF1F2;
    color: #E11D48;
}

/* =====================================================
       USE CASES TAB SECTION 
       ===================================================== */
.b2e-usecases-bg {
    background: var(--b2e-white);
}

.b2e-usecase-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.b2e-usecase-tab {
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid var(--b2e-gray-200);
    background: var(--b2e-white);
    color: var(--b2e-gray-500);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--b2e-transition);
    font-family: 'Heebo', sans-serif;
}

    .b2e-usecase-tab:hover {
        border-color: var(--b2e-primary);
        color: var(--b2e-primary);
    }

    .b2e-usecase-tab.active {
        background: var(--b2e-primary);
        border-color: var(--b2e-primary);
        color: var(--b2e-white);
    }

.b2e-usecase-content {
    background: var(--b2e-white);
    border-radius: var(--b2e-radius-lg);
    box-shadow: var(--b2e-shadow-lg);
    padding: 48px;
    border: 1px solid var(--b2e-gray-200);
}

.b2e-usecase-icon-lg {
    width: 72px;
    height: 72px;
    border-radius: var(--b2e-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.b2e-usecase-list li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--b2e-gray-700);
}

    .b2e-usecase-list li i {
        color: var(--b2e-success);
        margin-top: 5px;
        font-size: 0.85rem;
    }

/* =====================================================
       BENEFITS SECTION 
       ===================================================== */
.b2e-benefits-bg {
    background: var(--b2e-white);
}

.b2e-benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    border-radius: var(--b2e-radius-md);
    transition: var(--b2e-transition);
}

    .b2e-benefit-item:hover {
        background: var(--b2e-gray-50);
    }

.b2e-benefit-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--b2e-primary-light);
    color: var(--b2e-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.b2e-benefit-item h5 {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.b2e-benefit-item p {
    color: var(--b2e-gray-500);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Big benefit stat card */
.b2e-benefit-stat {
    background: linear-gradient(160deg, var(--b2e-primary), var(--b2e-primary-dark));
    border-radius: var(--b2e-radius-lg);
    padding: 48px 36px;
    color: var(--b2e-white);
    text-align: center;
    box-shadow: var(--b2e-shadow-xl);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .b2e-benefit-stat .big-number {
        font-size: 3rem;
        font-weight: 900;
        line-height: 1;
        margin-bottom: 8px;
    }

    .b2e-benefit-stat .big-label {
        font-size: 1.1rem;
        opacity: 0.85;
    }

/* =====================================================
       ARCHITECTURE SECTION 
       ===================================================== */
.b2e-arch-bg {
    background: var(--b2e-gray-900);
    color: var(--b2e-white);
}

    .b2e-arch-bg .b2e-section-title {
        color: var(--b2e-white);
    }

    .b2e-arch-bg .b2e-section-subtitle {
        color: var(--b2e-gray-400);
    }

.b2e-arch-layer {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--b2e-radius-md);
    padding: 28px 24px;
    text-align: center;
    transition: var(--b2e-transition);
}

    .b2e-arch-layer:hover {
        background: rgba(255,255,255,0.08);
        transform: translateY(-2px);
    }

    .b2e-arch-layer .layer-icon {
        width: 52px;
        height: 52px;
        margin: 0 auto 16px;
        border-radius: var(--b2e-radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
    }

    .b2e-arch-layer h5 {
        color: var(--b2e-white);
        font-weight: 700;
        margin-bottom: 8px;
        font-size: 1rem;
    }

    .b2e-arch-layer p {
        color: var(--b2e-gray-400);
        font-size: 0.9rem;
        margin-bottom: 0;
    }

.b2e-arch-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--b2e-gray-500);
    font-size: 1.5rem;
    padding: 12px 0;
}

/* =====================================================
       SECURITY SECTION 
       ===================================================== */
.b2e-security-bg {
    background: var(--b2e-gray-50);
}

.b2e-security-card {
    text-align: center;
    padding: 36px 24px;
    border: 1px solid var(--b2e-gray-200);
    border-radius: var(--b2e-radius-md);
    transition: var(--b2e-transition);
    height: 100%;
}

    .b2e-security-card:hover {
        box-shadow: var(--b2e-shadow-md);
        border-color: var(--b2e-primary-light);
    }

.b2e-security-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.b2e-security-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

/* =====================================================
       WHO WE ARE (ABOUT) SECTION
       ===================================================== */
.b2e-about-bg {
    background: var(--b2e-gray-50);
}

/* Founder Cards */
.b2e-founder-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--b2e-white);
    border: 1px solid var(--b2e-gray-200);
    border-radius: var(--b2e-radius-md);
    padding: 28px;
    transition: var(--b2e-transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .b2e-founder-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--b2e-primary), var(--b2e-accent));
        opacity: 0;
        transition: var(--b2e-transition);
    }

    .b2e-founder-card:hover {
        box-shadow: var(--b2e-shadow-lg);
        transform: translateY(-4px);
        border-color: transparent;
    }

        .b2e-founder-card:hover::before {
            opacity: 1;
        }

.b2e-founder-avatar {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--b2e-primary), var(--b2e-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.b2e-founder-initials {
    color: var(--b2e-white);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
}

.b2e-founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.b2e-founder-info h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--b2e-dark);
}

.b2e-founder-role {
    display: inline-block;
    background: var(--b2e-primary-light);
    color: var(--b2e-primary);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.b2e-founder-info p {
    font-size: 0.9rem;
    color: var(--b2e-gray-500);
    line-height: 1.75;
    margin: 0;
}

/* Story Block */
.b2e-about-text {
    font-size: 1.05rem;
    color: var(--b2e-gray-700);
    line-height: 1.9;
    margin-bottom: 16px;
}

    .b2e-about-text strong {
        color: var(--b2e-dark);
        font-weight: 700;
    }

.b2e-about-values {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.b2e-about-value {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: var(--b2e-white);
    border: 1px solid var(--b2e-gray-200);
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--b2e-gray-700);
    transition: var(--b2e-transition);
}

    .b2e-about-value:hover {
        border-color: var(--b2e-primary);
        color: var(--b2e-primary);
        background: var(--b2e-primary-light);
    }

    .b2e-about-value i {
        color: var(--b2e-primary);
        font-size: 0.85rem;
    }

/* Industries Tag Cloud */
.b2e-industries-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--b2e-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .b2e-industries-title i {
        color: var(--b2e-primary);
    }

.b2e-industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.b2e-industry-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    background: var(--b2e-white);
    border: 1px solid var(--b2e-gray-200);
    border-radius: var(--b2e-radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--b2e-gray-700);
    transition: var(--b2e-transition);
    cursor: default;
}

    .b2e-industry-tag:hover {
        border-color: var(--b2e-primary);
        color: var(--b2e-primary);
        background: var(--b2e-primary-light);
        transform: translateY(-2px);
        box-shadow: var(--b2e-shadow-sm);
    }

    .b2e-industry-tag i {
        color: var(--b2e-accent);
        font-size: 0.85rem;
    }

.b2e-security-card p {
    color: var(--b2e-gray-500);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* =====================================================
       TESTIMONIALS 
       ===================================================== */
.b2e-testimonials-bg {
    background: var(--b2e-gray-50);
}

.b2e-testimonial-card {
    background: var(--b2e-white);
    border: 1px solid var(--b2e-gray-200);
    border-radius: var(--b2e-radius-md);
    padding: 36px;
    height: 100%;
    transition: var(--b2e-transition);
    position: relative;
}

    .b2e-testimonial-card:hover {
        box-shadow: var(--b2e-shadow-lg);
        transform: translateY(-4px);
    }

.b2e-testimonial-stars {
    color: #FBBF24;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.b2e-testimonial-quote {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--b2e-gray-700);
    margin-bottom: 24px;
    font-style: italic;
}

.b2e-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.b2e-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--b2e-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--b2e-primary);
    font-size: 1rem;
}

.b2e-testimonial-name {
    font-weight: 700;
    color: var(--b2e-dark);
    font-size: 0.95rem;
}

.b2e-testimonial-role {
    font-size: 0.85rem;
    color: var(--b2e-gray-500);
}

/* =====================================================
       FINAL CTA 
       ===================================================== */
.b2e-final-cta {
    background: linear-gradient(160deg, #0F2B5B 0%, var(--b2e-primary) 50%, #1340A5 100%);
    position: relative;
    overflow: hidden;
}

    .b2e-final-cta::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 60%;
        height: 120%;
        background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 70%);
        border-radius: 50%;
    }

    .b2e-final-cta h2 {
        color: var(--b2e-white);
        font-size: 2.5rem;
        font-weight: 900;
    }

    .b2e-final-cta p {
        color: rgba(255,255,255,0.75);
        font-size: 1.15rem;
        max-width: 560px;
        margin: 0 auto 36px;
    }

/* =====================================================
       FOOTER 
       ===================================================== */
.b2e-footer {
    background: var(--b2e-dark);
    color: var(--b2e-gray-400);
    padding: 48px 0 32px;
}

/* Top section: brand + contact */
.b2e-footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.b2e-footer-brand-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.b2e-footer-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--b2e-white);
    letter-spacing: -0.01em;
    text-align: center;
}

.b2e-footer-tagline {
    font-size: 0.88rem;
    color: var(--b2e-gray-400);
    margin: 0;
    line-height: 1.6;
}

/* Contact items row */
.b2e-footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.b2e-footer-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--b2e-gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--b2e-transition);
}

a.b2e-footer-contact-item:hover {
    color: var(--b2e-white);
}

.b2e-footer-contact-item i {
    font-size: 0.8rem;
    color: var(--b2e-primary);
    width: 16px;
    text-align: center;
}

/* Divider */
.b2e-footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 28px 0;
}

/* Bottom section: copyright + social + privacy */
.b2e-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.b2e-footer-copy {
    font-size: 0.84rem;
    color: var(--b2e-gray-400);
}

.b2e-footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.b2e-footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--b2e-gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--b2e-transition);
}

.b2e-footer-social-link:hover {
    background: var(--b2e-primary);
    border-color: var(--b2e-primary);
    color: var(--b2e-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 86, 219, 0.3);
}

.b2e-footer-privacy {
    font-size: 0.88rem;
    color: var(--b2e-gray-400);
    text-decoration: none;
    transition: var(--b2e-transition);
    position: relative;
}

.b2e-footer-privacy::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 1px;
    background: var(--b2e-white);
    transition: width 0.3s ease;
}

.b2e-footer-privacy:hover {
    color: var(--b2e-white);
}

.b2e-footer-privacy:hover::after {
    width: 100%;
}

/* Footer responsive */
@media (max-width: 767px) {
    .b2e-footer {
        padding: 36px 0 28px;
    }

    .b2e-footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .b2e-footer-brand-block {
        align-items: center;
    }

    .b2e-footer-contact {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .b2e-footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .b2e-footer-social {
        order: -1;
    }
}

/* =====================================================
       ANIMATIONS (Vue transition classes) 
       ===================================================== */
.fade-up-enter-active {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up-enter-from {
    opacity: 0;
    transform: translateY(30px);
}

.fade-up-enter-to {
    opacity: 1;
    transform: translateY(0);
}

.b2e-animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

    .b2e-animate-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Staggered delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

/* =====================================================
       MOBILE MENU
       ===================================================== */

/* Hamburger Toggle Button */
.b2e-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--b2e-radius-sm);
    cursor: pointer;
    padding: 0;
    transition: var(--b2e-transition);
    position: relative;
    z-index: 1200;
}

.b2e-navbar.scrolled .b2e-mobile-toggle {
    background: var(--b2e-gray-100);
    border-color: var(--b2e-gray-200);
}

.b2e-burger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--b2e-white);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.b2e-navbar.scrolled .b2e-burger-line {
    background: var(--b2e-gray-700);
}

/* Hamburger to X animation */
.b2e-mobile-toggle.active .b2e-burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.b2e-mobile-toggle.active .b2e-burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.b2e-mobile-toggle.active .b2e-burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Overlay */
.b2e-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.b2e-mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Slide-in Menu Panel (from right for RTL) */
.b2e-mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: var(--b2e-white);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.b2e-mobile-menu.open {
    right: 0;
}

/* Menu Header */
.b2e-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--b2e-gray-200);
    flex-shrink: 0;
}

.b2e-mobile-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--b2e-gray-100);
    border: none;
    border-radius: 50%;
    color: var(--b2e-gray-600);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--b2e-transition);
}

.b2e-mobile-close:hover {
    background: var(--b2e-gray-200);
    color: var(--b2e-dark);
}

/* Navigation Links */
.b2e-mobile-nav {
    flex: 1;
    padding: 12px 0;
    overflow-y: auto;
}

.b2e-mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--b2e-gray-700);
    text-decoration: none;
    transition: var(--b2e-transition);
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
    font-family: 'Heebo', sans-serif;
}

.b2e-mobile-link:hover {
    background: var(--b2e-primary-light);
    color: var(--b2e-primary);
}

.b2e-mobile-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: var(--b2e-gray-400);
}

/* Accordion Submenu */
.b2e-mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--b2e-gray-50);
}

.b2e-mobile-accordion.open .b2e-mobile-submenu {
    max-height: 400px;
}

.b2e-mobile-accordion.open .b2e-mobile-arrow {
    transform: rotate(180deg);
}

.b2e-mobile-accordion.open .b2e-mobile-accordion-toggle {
    color: var(--b2e-primary);
    background: var(--b2e-primary-light);
}

.b2e-mobile-sublink {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 32px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--b2e-gray-700);
    text-decoration: none;
    transition: var(--b2e-transition);
}

.b2e-mobile-sublink:hover {
    background: var(--b2e-primary-light);
    color: var(--b2e-primary);
}

.b2e-mobile-sublink .b2e-dropdown-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 8px;
    font-size: 0.85rem;
}

.b2e-mobile-sublink-all {
    color: var(--b2e-primary);
    font-weight: 600;
    border-top: 1px solid var(--b2e-gray-200);
    margin-top: 4px;
    padding-top: 14px;
}

/* Menu Footer */
.b2e-mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid var(--b2e-gray-200);
    flex-shrink: 0;
}

.b2e-mobile-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1rem;
}

.b2e-mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--b2e-gray-100);
}

.b2e-mobile-contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--b2e-gray-500);
    text-decoration: none;
    transition: var(--b2e-transition);
}

.b2e-mobile-contact-info a:hover {
    color: var(--b2e-primary);
}

.b2e-mobile-contact-info a i {
    width: 16px;
    text-align: center;
    font-size: 0.8rem;
}

@media (max-width: 991px) {
    .b2e-mobile-toggle {
        display: flex;
    }
}

/* =====================================================
       RESPONSIVE 
       ===================================================== */
@media (max-width: 991px) {
    .b2e-hero h1 {
        font-size: 2.4rem;
    }

    .b2e-section-title {
        font-size: 2rem;
    }

    .b2e-hero-stats {
        gap: 32px;
    }

    .b2e-hero-visual {
        margin-top: 48px;
    }

    /* Tablet: constrain tab row and reduce content padding */
    .b2e-usecase-tabs {
        gap: 8px;
        margin-bottom: 36px;
    }

    .b2e-usecase-content {
        padding: 36px 32px;
    }
}

@media (max-width: 767px) {
    .hide-mobile {
        display: none;
    }
    .b2e-hero {
        min-height: auto;
        padding: 80px 0 80px;
    }

    .b2e-hero-frame img {
        width: 120%;
        opacity: 0.05;
    }

    .b2e-hero h1 {
        font-size: 1.5rem;
    }

    .b2e-section {
        padding: 64px 0;
    }

    .b2e-hero .hero-subtitle {
        margin-bottom: 20px;
        line-height: 1.5;
    }
    .b2e-hero-stats {
        flex-wrap: wrap;
        gap: 0;
        margin-top: 20px;
        padding-top: 20px;
        justify-content: center;
        background: rgba(255,255,255,0.04);
        border-radius: 16px;
        padding: 24px 16px;
        border-top: none;
    }

    .b2e-hero-stats .stat-item {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 16px 8px;
        position: relative;
    }

    /* Subtle divider lines between stat items */
    .b2e-hero-stats .stat-item:nth-child(1),
    .b2e-hero-stats .stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .b2e-hero-stats .stat-item:nth-child(odd) {
        border-left: 1px solid rgba(255,255,255,0.1);
    }

    /* Last item alone in its row — center it */
    .b2e-hero-stats .stat-item:last-child:nth-child(odd) {
        flex: 0 0 100%;
        max-width: 100%;
        border-left: none;
        padding-top: 20px;
    }

    .b2e-hero-stats .stat-number {
        font-size: 1.6rem;
    }

    .b2e-hero-stats .stat-label {
        font-size: 0.78rem;
        line-height: 1.4;
        margin-top: 4px;
    }

    .b2e-section-title {
        font-size: 1.7rem;
    }

    /* ── Use Cases Section: Mobile Optimizations ── */

    /* Horizontally scrollable tab strip — prevents wrapping & cramping */
    .b2e-usecase-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;          /* Firefox */
        justify-content: flex-start;
        gap: 10px;
        margin-bottom: 32px;
        padding-bottom: 4px;
        /* Fade-out hint on scroll edges */
        mask-image: linear-gradient(to left, transparent 0%, #000 8%, #000 92%, transparent 100%);
        -webkit-mask-image: linear-gradient(to left, transparent 0%, #000 8%, #000 92%, transparent 100%);
    }

    .b2e-usecase-tabs::-webkit-scrollbar {
        display: none;                  /* Chrome / Safari */
    }

    .b2e-usecase-tab {
        flex: 0 0 auto;                /* don't shrink or wrap */
        padding: 10px 20px;
        font-size: 0.88rem;
        white-space: nowrap;
    }

    /* Content card — tighter padding, centered layout */
    .b2e-usecase-content {
        padding: 28px 20px;
        border-radius: var(--b2e-radius-md);
    }

    /* Center icon + heading on mobile for visual balance */
    .b2e-usecase-content .col-lg-5 {
        text-align: center;
    }

    .b2e-usecase-icon-lg {
        margin-left: auto;
        margin-right: auto;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .b2e-usecase-content h3 {
        font-size: 1.3rem;
        text-align: center;
    }

    .b2e-usecase-content .text-muted {
        font-size: 0.92rem;
        line-height: 1.8;
        text-align: center;
    }

    /* Separator between description and checklist */
    .b2e-usecase-content .col-lg-7 {
        border-top: 1px solid var(--b2e-gray-200);
        padding-top: 20px;
        margin-top: 8px;
    }

    /* Roomier list items — better touch targets & readability */
    .b2e-usecase-list li {
        padding: 10px 0;
        font-size: 0.9rem;
        gap: 10px;
    }

    .b2e-usecase-list li i {
        font-size: 0.9rem;
        margin-top: 3px;
    }

    .b2e-final-cta h2 {
        font-size: 1.8rem;
    }

    .b2e-hero-visual {
        display: none;
    }

    .b2e-hero-content .b2e-badge {
        display: flex;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .b2e-hero-content {
        text-align: center;
    }

    .b2e-hero-content .d-flex {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .b2e-hero .b2e-btn-primary,
    .b2e-hero .b2e-btn-ghost {
        padding: 10px 18px;
        font-size: 0.9rem;
        gap: 6px;
        white-space: nowrap;
    }

    /* ── Industry Tags: Mobile Optimizations ── */
    .b2e-industries-title {
        font-size: 0.95rem;
        text-align: center;
        justify-content: center;
    }

    .b2e-industry-tags {
        gap: 6px;
        justify-content: center;
    }

    .b2e-industry-tag {
        padding: 6px 12px;
        font-size: 0.78rem;
        gap: 5px;
    }

    .b2e-industry-tag i {
        font-size: 0.72rem;
    }
}

@media (max-width: 400px) {
    .b2e-hero .b2e-btn-primary,
    .b2e-hero .b2e-btn-ghost {
        padding: 8px 14px;
        font-size: 0.78rem;
        gap: 4px;
    }

    .b2e-hero-stats .stat-number {
        font-size: 1.35rem;
    }

    .b2e-hero-stats .stat-label {
        font-size: 0.72rem;
    }

    .b2e-hero-stats {
        padding: 20px 12px;
    }

    /* Extra-small: industry tags */
    .b2e-industry-tag {
        padding: 5px 10px;
        font-size: 0.72rem;
        gap: 4px;
    }

    .b2e-industry-tag i {
        font-size: 0.65rem;
    }

    /* Extra-small: even tighter use-case panel */
    .b2e-usecase-content {
        padding: 20px 14px;
    }

    .b2e-usecase-tab {
        padding: 8px 16px;
        font-size: 0.82rem;
    }

    .b2e-usecase-icon-lg {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }

    .b2e-usecase-content h3 {
        font-size: 1.15rem;
    }

    .b2e-usecase-list li {
        font-size: 0.85rem;
        padding: 8px 0;
    }
}

/* =====================================================
       ACCESSIBILITY: Focus states 
       ===================================================== */
:focus-visible {
    outline: 3px solid var(--b2e-primary);
    outline-offset: 2px;
}

/* Skip to content (screen reader) */
.b2e-skip-link {
    position: absolute;
    top: -100%;
    right: 0;
    background: var(--b2e-primary);
    color: var(--b2e-white);
    padding: 12px 24px;
    z-index: 9999;
    border-radius: 0 0 0 var(--b2e-radius-sm);
    font-weight: 600;
    text-decoration: none;
}

    .b2e-skip-link:focus {
        top: 0;
    }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Counter animation */
.b2e-counter {
    display: inline-block;
}

/* =====================================================
       SCROLL TO TOP BUTTON
       ===================================================== */
.b2e-scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--b2e-primary), var(--b2e-primary-dark));
    color: var(--b2e-white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(26, 86, 219, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s ease,
                background 0.3s ease;
}

    .b2e-scroll-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .b2e-scroll-top.visible:hover {
        box-shadow: 0 6px 20px rgba(26, 86, 219, 0.5);
        transform: translateY(-3px);
        background: linear-gradient(135deg, var(--b2e-primary-dark), var(--b2e-primary));
    }

    .b2e-scroll-top.visible:active {
        transform: translateY(-1px);
    }


.embla {
  overflow: hidden;
  width: 100%;
}

.embla__container {
  display: flex;
  backface-visibility: hidden;
  touch-action: pan-y;
}

.embla__slide {
    flex: 0 0 14.285%; /* Shows 7 logos (100 / 14.285 ≈ 7) */
    min-width: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

@media (max-width: 991px) {
  .embla__slide {
    flex: 0 0 16.666%; /* 6 logos on tablet */
  }
}

@media (max-width: 767px) {
  .embla__slide {
    flex: 0 0 25%; /* 4 logos on small tablet */
  }
}

@media (max-width: 480px) {
  .embla__slide {
    flex: 0 0 33.333%; /* 3 logos on mobile */
  }

  .logo-img {
    height: 45px;
  }
}

.logo-img {
  display: block;
  height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
  transition: filter 0.3s ease;
}

/* =====================================================
       CONTACT MODAL
       ===================================================== */
.b2e-contact-modal {
    border: none;
    border-radius: var(--b2e-radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.b2e-contact-modal .modal-content {
    border: none;
}

.b2e-modal-close {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--b2e-gray-100);
    color: var(--b2e-gray-500);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--b2e-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.b2e-modal-close:hover {
    background: var(--b2e-gray-200);
    color: var(--b2e-gray-700);
    transform: rotate(90deg);
}

.b2e-modal-body {
    display: flex;
    min-height: 520px;
}

/* Left decorative side panel */
.b2e-modal-side {
    width: 340px;
    min-width: 340px;
    background: linear-gradient(160deg, #0F2B5B 0%, var(--b2e-primary) 50%, #1340A5 100%);
    padding: 48px 36px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.b2e-modal-side::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.b2e-modal-side::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.12);
}

.b2e-modal-side-content {
    position: relative;
    z-index: 1;
    color: var(--b2e-white);
}

.b2e-modal-side-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--b2e-radius-md);
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.b2e-modal-side-content h3 {
    color: var(--b2e-white);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.4;
}

.b2e-modal-side-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.b2e-modal-side-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.b2e-modal-side-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
}

.b2e-modal-side-feature i {
    color: var(--b2e-accent);
    font-size: 0.85rem;
}

/* Right form panel */
.b2e-modal-form-panel {
    flex: 1;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
}

.b2e-modal-form-panel h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--b2e-dark);
    margin-bottom: 6px;
}

.b2e-modal-form-subtitle {
    font-size: 0.9rem;
    color: var(--b2e-gray-500);
    margin-bottom: 28px;
}

/* Form elements */
.b2e-form-group {
    margin-bottom: 18px;
}

.b2e-form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--b2e-gray-700);
    margin-bottom: 6px;
}

.b2e-required {
    color: #E11D48;
    font-weight: 700;
}

.b2e-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.b2e-input-icon {
    position: absolute;
    right: 14px;
    color: var(--b2e-gray-400);
    font-size: 0.88rem;
    transition: color 0.2s ease;
    pointer-events: none;
    z-index: 1;
}

.b2e-textarea-icon {
    top: 14px;
}

.b2e-form-input {
    width: 100%;
    padding: 11px 40px 11px 14px;
    border: 1.5px solid var(--b2e-gray-200);
    border-radius: var(--b2e-radius-sm);
    font-family: 'Heebo', sans-serif;
    font-size: 0.92rem;
    color: var(--b2e-dark);
    background: var(--b2e-gray-50);
    transition: var(--b2e-transition);
    outline: none;
}

.b2e-form-input::placeholder {
    color: var(--b2e-gray-400);
}

.b2e-form-input:focus {
    border-color: var(--b2e-primary);
    background: var(--b2e-white);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.b2e-form-input:focus + .b2e-input-icon,
.b2e-input-wrapper:focus-within .b2e-input-icon {
    color: var(--b2e-primary);
}

.b2e-form-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.7;
}

.b2e-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Validation error state */
.has-error .b2e-form-input {
    border-color: #E11D48;
    background: #FFF5F7;
}

.has-error .b2e-form-input:focus {
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

.has-error .b2e-input-icon {
    color: #E11D48;
}

.b2e-error-msg {
    display: block;
    font-size: 0.78rem;
    color: #E11D48;
    margin-top: 5px;
    font-weight: 500;
    padding-right: 2px;
}

/* Submit button */
.b2e-submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    padding: 14px 32px;
    font-size: 1.02rem;
}

.b2e-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Inline toast notification */
.b2e-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: var(--b2e-radius-sm);
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.4;
    animation: b2eToastSlideIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.b2e-toast--error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #991B1B;
}

.b2e-toast--success {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #065F46;
}

.b2e-toast-icon {
    flex-shrink: 0;
    font-size: 1.15rem;
}

.b2e-toast--error .b2e-toast-icon { color: #DC2626; }
.b2e-toast--success .b2e-toast-icon { color: var(--b2e-success); }

.b2e-toast-msg {
    flex: 1;
}

.b2e-toast-close {
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    font-size: 0.85rem;
    opacity: 0.5;
    transition: opacity 0.2s;
    color: inherit;
}

.b2e-toast-close:hover { opacity: 1; }

/* Toast transition */
.b2e-toast-enter-active {
    animation: b2eToastSlideIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.b2e-toast-leave-active {
    animation: b2eToastSlideIn 0.25s cubic-bezier(0.4, 0, 0.2, 1) reverse;
}

@keyframes b2eToastSlideIn {
    0% { opacity: 0; transform: translateY(-8px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Loading spinner */
.b2e-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--b2e-white);
    border-radius: 50%;
    animation: b2eSpin 0.7s linear infinite;
}

@keyframes b2eSpin {
    to { transform: rotate(360deg); }
}

/* Success state */
.b2e-contact-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 20px;
    flex: 1;
}

.b2e-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
    color: var(--b2e-success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    animation: b2eSuccessPop 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes b2eSuccessPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

.b2e-contact-success h5 {
    font-weight: 800;
    color: var(--b2e-dark);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.b2e-contact-success p {
    color: var(--b2e-gray-500);
    font-size: 0.92rem;
}

/* Modal backdrop custom */
#contactModal .modal-backdrop {
    backdrop-filter: blur(4px);
}

/* Responsive: hide side panel on smaller screens */
@media (max-width: 767px) {
    .b2e-modal-side {
        display: none;
    }

    .b2e-modal-body {
        min-height: auto;
    }

    .b2e-modal-form-panel {
        padding: 32px 24px;
    }

    .b2e-form-row {
        grid-template-columns: 1fr;
    }

    .b2e-modal-close {
        top: 12px;
        left: 12px;
    }
}

/* =====================================================
       LTR (ENGLISH) OVERRIDES
       When <html dir="ltr">, flip RTL-specific positioning,
       margins, paddings, transforms, and font-family.
       ===================================================== */

/* ── Font Family ────────────────────────────────── */
[dir="ltr"] body {
    font-family: 'Inter', 'Heebo', sans-serif;
}

[dir="ltr"] h1,
[dir="ltr"] h2,
[dir="ltr"] h3,
[dir="ltr"] h4,
[dir="ltr"] h5,
[dir="ltr"] h6 {
    font-family: 'Inter', 'Heebo', sans-serif;
}

[dir="ltr"] .b2e-btn-primary,
[dir="ltr"] .b2e-btn-secondary,
[dir="ltr"] .b2e-btn-ghost,
[dir="ltr"] .b2e-usecase-tab,
[dir="ltr"] .b2e-mobile-link,
[dir="ltr"] .b2e-lang-option,
[dir="ltr"] .b2e-form-input,
[dir="ltr"] .products-filter-btn,
[dir="ltr"] .product-btn-primary,
[dir="ltr"] .product-btn-secondary {
    font-family: 'Inter', 'Heebo', sans-serif;
}

/* ── Dropdown Menu Position ─────────────────────── */
[dir="ltr"] .b2e-dropdown-menu {
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
}

[dir="ltr"] .b2e-nav-dropdown:hover .b2e-dropdown-menu {
    transform: translateX(-50%) translateY(0);
}

/* Dropdown footer arrow — flip direction */
[dir="ltr"] .b2e-dropdown-footer:hover i {
    transform: scaleX(-1) translateX(-4px);
}

/* ── Language Toggle Slider ─────────────────────── */
[dir="ltr"] .b2e-lang-slider {
    right: auto;
    left: 3px;
}

[dir="ltr"] .b2e-lang-toggle[data-active="en"] .b2e-lang-slider {
    transform: translateX(100%);
}

/* ── Mobile Menu (slide from left in LTR) ───────── */
[dir="ltr"] .b2e-mobile-menu {
    right: auto;
    left: -320px;
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.15);
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

[dir="ltr"] .b2e-mobile-menu.open {
    right: auto;
    left: 0;
}

/* ── Footer Privacy Link Underline ──────────────── */
[dir="ltr"] .b2e-footer-privacy::after {
    right: auto;
    left: 0;
}

/* ── Skip-to-Content Link ──────────────────────── */
[dir="ltr"] .b2e-skip-link {
    right: auto;
    left: 0;
    border-radius: 0 0 var(--b2e-radius-sm) 0;
}

/* ── Scroll-to-Top Button ──────────────────────── */
[dir="ltr"] .b2e-scroll-top {
    left: auto;
    right: 32px;
}

/* ── Contact Modal Close Button ─────────────────── */
[dir="ltr"] .b2e-modal-close {
    left: auto;
    right: 16px;
}

/* ── Form Input Icon & Padding ──────────────────── */
[dir="ltr"] .b2e-input-icon {
    right: auto;
    left: 14px;
}

[dir="ltr"] .b2e-form-input {
    padding: 11px 14px 11px 40px;
}

[dir="ltr"] .b2e-error-msg {
    padding-right: 0;
    padding-left: 2px;
}

/* =====================================================
       MID-PAGE CTA BANNER
       ===================================================== */
.b2e-mid-cta {
    background: linear-gradient(135deg, #EFF6FF 0%, #F0F9FF 50%, #EEF2FF 100%);
    border-top: 1px solid var(--b2e-gray-200);
    border-bottom: 1px solid var(--b2e-gray-200);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

    .b2e-mid-cta::before {
        content: '';
        position: absolute;
        top: -40%;
        left: -10%;
        width: 40%;
        height: 180%;
        background: radial-gradient(circle, rgba(6,182,212,0.06) 0%, transparent 70%);
        border-radius: 50%;
    }

    .b2e-mid-cta h3 {
        font-size: 1.6rem;
        font-weight: 800;
        color: var(--b2e-dark);
        margin-bottom: 8px;
    }

    .b2e-mid-cta p {
        color: var(--b2e-gray-600);
        font-size: 0.95rem;
        margin-bottom: 20px;
        letter-spacing: 0.5px;
    }

    .b2e-mid-cta .b2e-btn-primary {
        padding: 12px 28px;
        font-size: 0.98rem;
    }

@media (max-width: 767px) {
    .b2e-mid-cta {
        padding: 36px 0;
    }
    .b2e-mid-cta h3 {
        font-size: 1.3rem;
    }
}

/* =====================================================
       SOCIAL PROOF SUBTEXT
       ===================================================== */
.b2e-social-proof-subtext {
    text-align: center;
    color: var(--b2e-gray-500);
    font-size: 0.9rem;
    margin-top: -28px;
    margin-bottom: 32px;
    letter-spacing: 0.3px;
}

/* =====================================================
       CONTACT FORM MICRO-COPY
       ===================================================== */
.b2e-form-microcopy {
    text-align: center;
    color: var(--b2e-gray-500);
    font-size: 0.82rem;
    margin-bottom: 4px;
    margin-top: 4px;
}

    .b2e-form-microcopy i {
        margin-inline-end: 4px;
        font-size: 0.78rem;
    }

.b2e-form-privacy {
    text-align: center;
    color: var(--b2e-gray-400);
    font-size: 0.78rem;
    margin-top: 12px;
    margin-bottom: 0;
}

    .b2e-form-privacy i {
        margin-inline-end: 4px;
        font-size: 0.72rem;
    }

/* ── LTR Mobile Overrides ──────────────────────── */
@media (max-width: 767px) {
    [dir="ltr"] .b2e-hero-stats .stat-item:nth-child(odd) {
        border-left: none;
        border-right: 1px solid rgba(255,255,255,0.1);
    }

    [dir="ltr"] .b2e-modal-close {
        left: auto;
        right: 12px;
    }
}

/* ── LTR Arrow Flip ──────────────────────────── */
[dir="ltr"] .b2e-arrow-flip {
    transform: scaleX(-1);
}