/* Premium Design System - Derived from market_premium */
:root {

    /* Brand Colors - Exact Match */
    /* --primary: oklch(0.28 0.15 270);
    --accent: oklch(0.52 0.18 300); */




    /* --primary: ##000C40;
    --accent: #4389A2; */


    --primary: #667eea;
    --accent: #764ba2;
    /* #262261 */
    --primary-foreground: oklch(1.0 0.0 0);

    /* #7F3F97 */
    --accent-foreground: oklch(1.0 0.0 0);

    --background: #ffffff;
    --foreground: #303030;

    --font-sans: 'SF Pro Display', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --radius-lg: 10px;
    --radius-xl: 24px;

    --container-max-width: 96rem;

    /* Glassmorphism Colors */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgb(142 82 165 / 15%);
    --glass-shadow: rgba(102, 51, 255, 0.18);

}

body {
    font-family: var(--font-sans) !important;
    background-color: var(--background);
    color: var(--foreground);
}

/* Glassmorphism Styles */
.glass-backdrop {
    background: linear-gradient(135deg,
            rgba(38, 34, 97, 0.1) 0%,
            rgba(127, 63, 151, 0.08) 25%,
            rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
}

.glass-nav-bar {
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border-bottom: 1px solid var(--glass-border);



    box-shadow:
        0 8px 24px rgba(102, 51, 255, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(102, 51, 255, 0.1);
    backdrop-filter: blur(32px) saturate(160%) brightness(1.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%);
}

/* Premium Buttons */
.btn-premium {
    /* background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); */
    /* background: linear-gradient(45deg, var(--primary), var(--accent), var(--primary)); */
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: #ffffff !important;
    font-weight: 500;
    border-radius: var(--radius-lg);
    padding: 12px 32px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(38, 34, 97, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-transform: none;
}

.btn-premium:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(127, 63, 151, 0.5);
    opacity: 0.9;
    text-decoration: none;
}


.text-primary {
    color: var(--primary) !important;
}

/* Navbar specific styles */
.premium-nav {
    height: 80px;
    transition: all 0.5s ease;
}

.premium-nav.scrolled {
    /* background: rgba(255, 255, 255, 0.8) !important; */
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, #6633ff1a, #9333ea14, #a855f70f, #c4b5fd0a, #ffffff05);
}

.premium-nav .nav-link {
    color: var(--foreground) !important;
    font-weight: 600;
    font-size: 14px;
    padding: 0.5rem 1.5rem !important;
    transition: all 0.2s ease;
}

.premium-nav .nav-link.active {
    color: var(--primary) !important;
    position: relative;
}

.premium-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--glass-shadow);
}

.premium-nav .nav-link:hover {
    color: var(--primary) !important;
    transform: translateY(-1px);
}

.premium-logo {
    height: auto;
    width: 166px;
    max-width: 166px;
}

.container-premium {
    width: 100%;
    padding-right: 2rem;
    padding-left: 2rem;
    margin-right: auto;
    margin-left: auto;
    max-width: var(--container-max-width);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

/* Responsive Menu Fixes */
@media (max-width: 991.98px) {

    #navbarSeven.collapse.show,
    #navbarSeven.collapsing {
        background-color: #ffffff !important;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        padding: 1.5rem 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        display: block !important;
    }

    #navbarSeven .navbar-nav {
        width: 100%;
        text-align: center;
    }

    #navbarSeven .nav-link {
        padding: 1rem !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    #navbarSeven .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

/* --- Hero Concept Styles --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* padding-top: 180px;
    padding-bottom: 150px; */


    /* Offset for header */
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(38, 34, 97, 0.1), rgba(127, 63, 151, 0.05), var(--background));
    z-index: 0;
}

/* Cyberpunk Grid */
.cyberpunk-grid-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.cyberpunk-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, var(--primary) 1px, transparent 1px), linear-gradient(to bottom, var(--primary) 1px, transparent 1px);
    background-size: 100px 100px;
    transform: perspective(1200px) rotateX(65deg);
    transform-origin: center bottom;
}

/* Floating Animations */
@keyframes float-1 {

    0%,
    100% {
        transform: translateY(0) rotate(-10deg);
    }

    50% {
        transform: translateY(-30px) rotate(-10deg);
    }
}

@keyframes float-2 {

    0%,
    100% {
        transform: translateY(0) rotate(10deg);
    }

    50% {
        transform: translateY(20px) rotate(5deg);
    }
}

@keyframes float-3 {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-20px) rotate(-10deg);
    }
}

.floating-elements-container {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.float-shape {
    position: absolute;
}

.shape-1 {
    top: 25%;
    right: 25%;
    width: 320px;
    height: 192px;
    animation: float-1 6s ease-in-out infinite;
}

.shape-2 {
    bottom: 33%;
    left: 8%;
    width: 256px;
    height: 160px;
    animation: float-2 8s ease-in-out infinite 2s;
}

.shape-3 {
    top: 50%;
    left: 25%;
    width: 192px;
    height: 128px;
    animation: float-3 6s ease-in-out infinite 1s;
}

/* Content Typography */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Premium Glassmorphism 2026 Core Utilities (Restored & Perfected) */

.bg-gradient-expertise {
    background: linear-gradient(135deg, rgba(38, 34, 97, 0.05) 0%, transparent 50%, rgba(127, 63, 151, 0.05) 100%);
}

.glass-popup {
    background-color: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 28px;
    box-shadow:
        0 20px 60px rgba(102, 51, 255, 0.25),
        0 8px 24px rgba(102, 51, 255, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.8),
        inset 0 -2px 0 rgba(102, 51, 255, 0.12);
    backdrop-filter: blur(50px) saturate(180%) brightness(1.2);
    -webkit-backdrop-filter: blur(50px) saturate(180%) brightness(1.2);
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(102, 51, 255, 0.05) 100%);
    box-shadow: 0 15px 45px rgba(102, 51, 255, 0.1) !important;
}

.glass-badge {
    background-color: rgb(255 255 255 / 0%);
    border: none;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    box-shadow:
        0 4px 12px rgba(102, 51, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(102, 51, 255, 0.05);
    backdrop-filter: blur(28px) saturate(160%) brightness(1.1);
    -webkit-backdrop-filter: blur(28px) saturate(160%) brightness(1.1);
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    color: var(--primary);
}

.glass-icon {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 0.75rem;
}

.glass-icon:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(102, 51, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.glass-icon-sm {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.5rem;
    box-shadow:
        0 1px 4px rgba(102, 51, 255, 0.04),
        inset 0 0.5px 0 rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px) saturate(110%);
    -webkit-backdrop-filter: blur(12px) saturate(110%);
    transition: all 0.25s ease;
}

.glass-icon-sm:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.03);
    box-shadow: 0 2px 6px rgba(102, 51, 255, 0.08), inset 0 0.5px 0 rgba(255, 255, 255, 0.35);
}

.glass-icon-outlined {
    stroke-width: 1.5;
    fill: none;
    transition: all 0.3s ease;
}

.glass-icon-outlined:hover {
    stroke-width: 2;
    filter: drop-shadow(0 0 4px rgba(102, 51, 255, 0.3));
}

.glass-card-hover {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.glass-card-hover:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.02) translateY(-0.5rem);
    box-shadow: 0 16px 48px rgba(102, 51, 255, 0.2), 0 4px 12px rgba(102, 51, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.7), inset 0 -1px 0 rgba(102, 51, 255, 0.15);
}

.text-gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, rgba(38, 34, 97, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.title-vt-dispo-v2 {
    background: transparent;
    background-clip: text;
    -webkit-text-fill-color: #303030;
    color: #303030;
}


@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spin-slow {
    animation: spin-slow 50s linear infinite;
}

@keyframes pulse-success {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.9);
    }
}

.pulse-indicator {
    animation: pulse-success 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}



.hero-headline {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, rgba(38, 34, 97, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 20px 0;
}

.hero-subheadline {
    font-size: 1.875rem;
    /* color: #64748b; */
    font-weight: 400;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto 40px;
}

.btn-premium-outline {
    background: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--foreground) !important;
    font-weight: 500;
    border-radius: var(--radius-lg);
    padding: 12px 32px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: 0 15px 45px rgb(102 51 255 / 28%);

}

.gradientBlue-outline {
    color: var(--accent) !important;
    background: #fff;
    border: 1px solid var(--accent);
    text-transform: none;
    padding: .6rem 1.6rem !important;
    font-weight: 500;
    font-size: 12px !important;
    margin: 0 !important;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
}

.btn-transparent {
    color: var(--primary) !important;
    background: #fff;
    border: 1px solid #dee2e68f !important;
    text-transform: none;
    padding: .6rem 1.6rem !important;
    font-weight: 500;
    font-size: 12px !important;
    margin: 0 !important;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px !important;
    border-radius: var(--radius-lg);
}

.btn-premium-outline:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.02);
    text-decoration: none;
}

/* Fade In Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fadeIn {
    opacity: 0;
    animation-name: fadeIn;
    /* Nom de l'animation */
    animation-duration: 1s;
    /* Durée de l'animation */
    animation-fill-mode: forwards;
    /* Garde l'état final */
    animation-timing-function: ease-in;
    /* Accélération douce */
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.9s;
}

.delay-5 {
    animation-delay: 1.2s;
}

.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* height: 128px; */
    height: 263px;
    background: linear-gradient(to top, var(--background), transparent);
    z-index: 9;
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 40px;
    }

    .hero-subheadline {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .premium-nav.scrolled {
        background-color: #fff !important;
    }
}

/* Glassmorphism Variants for Market Section */
.glass-surface {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-glow {
    box-shadow: 0 0 40px rgba(127, 63, 151, 0.15);
}

.glass-shimmer {
    position: relative;
    overflow: hidden;
}

.glass-shimmer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* Market Floating Animations */
.animate-market-1 {
    animation: market-float-1 10s ease-in-out infinite;
}

.animate-market-2 {
    animation: market-float-2 14s ease-in-out infinite;
}

.animate-market-3 {
    animation: market-float-3 8s ease-in-out infinite;
}

@keyframes market-float-1 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-20px) rotate(6deg) scale(1.05);
    }
}

@keyframes market-float-2 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(25px) rotate(-8deg);
    }
}

@keyframes market-float-3 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(12deg);
    }
}

/* Opacity Helpers */
/* .opacity-10 {
    opacity: 0.1;
}

.opacity-20 {
    opacity: 0.2;
} */

/* .opacity-25 {
    opacity: 0.25;
}

.opacity-30 {
    opacity: 0.3;
}

.opacity-35 {
    opacity: 0.35;
} */

/* Stat Card specific */
.bg-stat-node,
.bg-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.bg-gradient {
    color: #fff;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.text-success {
    color: #10b981 !important;
}

.bg-success {
    background-color: #10b981 !important;
}

@keyframes pulse-soft {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.animate-pulse-soft {
    animation: pulse-soft 2s infinite;
}

/* Timeline Animations */
@keyframes timeline-particle {

    0%,
    100% {
        transform: translate(-50%, 0) scale(0.8);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -20px) scale(1.2);
        opacity: 1;
    }
}

.timeline-particle {
    background: #ffffff !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px var(--accent);
    animation: timeline-particle 4s ease-in-out infinite;
}

@keyframes ray-float {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }

    50% {
        opacity: 0.6;
        transform: scaleX(1.2);
    }
}

.animate-ray {
    animation: ray-float 4s ease-in-out infinite;
}

@keyframes node-entrance {
    from {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

.animate-node {
    animation: node-entrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Background Orb Animations */
@keyframes background-orb-1 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-30px) rotate(180deg) scale(1.2);
    }
}

@keyframes background-orb-2 {

    0%,
    100% {
        transform: translateY(0) rotate(360deg) scale(1);
    }

    50% {
        transform: translateY(25px) rotate(180deg) scale(0.8);
    }
}

.animate-orb-1 {
    animation: background-orb-1 15s ease-in-out infinite;
}

.animate-orb-2 {
    animation: background-orb-2 12s ease-in-out infinite;
}

/* Timeline helpers */
.timeline-spine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom,
            var(--primary) 0%,
            var(--accent) 50%,
            var(--primary) 100%);
    transform: translateX(-50%);
    border-radius: 10px;
    z-index: 0;
}

.timeline-spine::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), transparent, rgba(255, 255, 255, 0.1));
}

.timeline-node-premium {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffffff;
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 15px 45px rgba(38, 34, 97, 0.15),
        0 5px 15px rgba(38, 34, 97, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.6);
    z-index: 20;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}



.timeline-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: 3px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(38, 34, 97, 0.2);
    z-index: 30;
}

.timeline-node-glow {
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 63, 151, 0.2) 0%, transparent 70%);
    filter: blur(10px);
    animation: pulse-soft 3s infinite;
}




/* Glass Pattern for cards */
.glass-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 80%, var(--primary) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, var(--accent) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Progress Ring SVG styles */
.progress-ring-circle {
    transition: stroke-dashoffset 1.5s ease-in-out;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

/* Footer Premium Styles */
.footer-premium {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, rgba(38, 34, 97, 0.6) 100%);
    color: #ffffff;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(5px);
    text-decoration: none;
}

.footer-logo-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Card Hover Helpers */
.group:hover .group-hover-scale {
    transform: scale(1.08);
}

.group:hover .group-hover-text-primary {
    color: var(--primary) !important;
}

.group-hover-scale {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.group-hover-text-primary {
    transition: color 0.3s ease;
}

.transition-colors {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Utility Helpers */
.rounded-xl {
    border-radius: 1rem !important;
}

.rounded-2xl {
    border-radius: 1.5rem !important;
}

.w-12 {
    width: 3rem !important;
}

.h-12 {
    height: 3rem !important;
}

.w-14 {
    width: 3.5rem !important;
}

.h-14 {
    height: 3.5rem !important;
}

.w-16 {
    width: 4rem !important;
}

.h-16 {
    height: 4rem !important;
}

.w-20 {
    width: 5rem !important;
}

.h-20 {
    height: 5rem !important;
}

.object-cover {
    object-fit: cover !important;
}

.leading-relaxed {
    line-height: 1.625 !important;
}

.relative {
    position: relative !important;
}

.absolute {
    position: absolute !important;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.bottom-4 {
    bottom: 1rem !important;
}

.left-4 {
    left: 1rem !important;
}

/* Removed duplicated .glass-icon definitions */

/* Guarantee Section specific */
/* Combined Card Properties for Premium Aesthetics */
.guarantee-card,
.quality-card,
.network-card,
.step-card {
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 45px rgba(102, 51, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.guarantee-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 28px;
    padding: 32px;
}

.guarantee-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 60px rgba(102, 51, 255, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.guarantee-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    flex-shrink: 0;
}

.guarantee-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a3a;
    margin-bottom: 0.5rem;
}

/* Provenance & Quality Redesign */
.quality-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 0 15px var(--primary);
}

.quality-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
}

.quality-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(102, 51, 255, 0.15);
}

.quality-card-index {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(100, 50, 255, 0.05);
    line-height: 1;
}

.quality-icon-box {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(102, 51, 255, 0.2);
}

.quality-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    margin-top: 25px;
    opacity: 0.8;
}

.commitment-container {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(100, 50, 255, 0.1);
    padding: 40px;
    margin-top: 60px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
}

.commitment-badge {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(102, 51, 255, 0.2);
}

/* Final CTA Redesign */
.marketplace-badge {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 51, 255, 0.1);
    border-radius: 50px;
    padding: 6px 16px;
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #444;
}

.marketplace-badge i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    margin-right: 8px;
}

.network-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.network-orb {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(102, 51, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.req-card {
    background: white !important;
    border-radius: 20px !important;
    padding: 20px !important;
    box-shadow: 0 15px 35px rgba(100, 50, 255, 0.08) !important;
    border: 1px solid rgba(102, 51, 255, 0.03) !important;
    transition: all 0.4s ease;
    text-align: center;
}

.req-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(102, 51, 255, 0.15);
}

.req-img-box {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f8f9ff;
}

.req-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.req-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a3a;
    line-height: 1.4;
    padding-bottom: 12px;
    position: relative;
}

.req-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0.7;
}

.dot-indicator-group {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.dot-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ddd;
}

.dot-indicator.active {
    background: var(--primary);
    width: 14px;
    border-radius: 3px;
}

/* Floating Animation Utilities */
.float-anim-1 {
    animation: float-icon-1 2s ease-in-out infinite;
}

.float-anim-2 {
    animation: float-icon-2 2.5s ease-in-out infinite 0.5s;
}

.float-anim-3 {
    animation: float-icon-3 3s ease-in-out infinite 1s;
}

@keyframes float-icon-1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes float-icon-2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

@keyframes float-icon-3 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* Contact Form Styles */
.form-input-group {
    position: relative;
}

.form-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #999;
    z-index: 2;
    pointer-events: none;
}

.form-input,
.form-control {
    width: 100%;
    padding: 12px 16px 12px 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-size: 14px !important;
    color: var(--foreground) !important;
    transition: all 0.3s ease;
    outline: none;
}

.form-input-group .form-input,
.form-input-group .form-control {
    padding: 12px 16px 12px 16px;
}

/* si le parent contient un <i>, ajouter plus de padding */
.form-input-group:has(i) .form-input,
.form-input-group:has(i) .form-control {
    padding: 12px 16px 12px 42px;
}

.form-input:focus,
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(38, 34, 97, 0.1);
}

.form-input::placeholder,
.form-control::placeholder {
    color: #aaa;
}

.form-input:not(.form-input-group .form-input) {
    padding-left: 16px;
}

.contact-textarea {
    resize: none;
    min-height: 120px;
}

/* Timeline Layout */
.timeline-wrapper {
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    transform: translateX(-50%);
    opacity: 0.6;
    z-index: 0;
}

.timeline-row {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.timeline-row:last-child {
    margin-bottom: 0;
}

.timeline-col-left {
    flex: 1;
    padding-right: 40px;
    display: flex;
    justify-content: flex-end;
}

.timeline-col-center {
    flex: 0 0 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.timeline-col-right {
    flex: 1;
    padding-left: 40px;
    display: flex;
    justify-content: flex-start;
}

.timeline-circle {
    width: 59px;
    height: 59px;
    border-radius: 50%;
    background: #ffffff;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(102, 51, 255, 0.12);
    z-index: 2;
}

.timeline-circle span {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

/* Step Card */
.step-card {
    background: white;
    border-radius: 16px;
    padding: 24px 28px;
    max-width: 400px;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(102, 51, 255, 0.12);
}

.step-icon-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(102, 51, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive: stack on mobile */
@media (max-width: 991px) {
    .timeline-line {
        left: 30px;
    }

    .timeline-row {
        flex-wrap: nowrap;
        margin-bottom: 30px;
        display: flex;
        align-items: center;
    }

    .timeline-col-left {
        display: flex;
        order: 2;
        padding-right: 0;
        padding-left: 20px;
        justify-content: flex-start;
        flex: 1;
    }

    .timeline-col-center {
        flex: 0 0 60px;
        order: 1;
    }

    /* Hide concept timeline elements */
    .timeline-spine,
    .timeline-node-glow,
    .timeline-node-premium {
        display: none !important;
    }

    .timeline-col-right {
        flex: 1;
        order: 2;
        padding-left: 20px;
    }

    /* Hide the empty columns to avoid extra space and layout shifts */
    .timeline-col-left:empty,
    .timeline-col-right:empty {
        display: none;
    }

    .timeline-col-right .step-card,
    .timeline-col-left .step-card {
        max-width: 100%;
        width: 100%;
    }
}

/* Seven Premium Toasts */
.seven-toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
}

.seven-toast {
    min-width: 320px;
    max-width: 450px;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px -5px rgba(38, 34, 97, 0.1), 0 8px 10px -6px rgba(38, 34, 97, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    pointer-events: auto;
    animation: toast-slide-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: all 0.3s ease;
}

.seven-toast.hide {
    animation: toast-slide-out 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.seven-toast-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.seven-toast-content {
    flex-grow: 1;
}

.seven-toast-message {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Toast Variants */
.seven-toast-success .seven-toast-icon {
    background: rgba(34, 197, 94, 0.15);
    color: #15803d;
}

.seven-toast-success {
    border-left: 4px solid #14c555;
}

.seven-toast-error .seven-toast-icon {
    background: rgba(239, 68, 68, 0.15);
    color: #b91c1c;
}

.seven-toast-error {
    border-left: 4px solid #ef4444;
}

.seven-toast-warning .seven-toast-icon {
    background: rgba(245, 158, 11, 0.15);
    color: #b45309;
}

.seven-toast-warning {
    border-left: 4px solid #f59e0b;
}

.seven-toast-info .seven-toast-icon {
    background: rgba(59, 130, 246, 0.15);
    color: #1d4ed8;
}

.seven-toast-info {
    border-left: 4px solid #3b82f6;
}

@keyframes toast-slide-in {
    from {
        opacity: 0;
        transform: translateX(2rem) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes toast-slide-out {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateX(2rem) scale(0.95);
    }
}


/* Select2 Premium Glassmorphism Overrides */
.select2-container--default {
    width: 100% !important;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid var(--glass-border) !important;
    border-radius: 12px !important;
    height: auto !important;
    min-height: 45px !important;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--foreground) !important;
    padding-left: 16px !important;
    font-size: 14px;
    line-height: 44px !important;
}

/* If the select2 is inside a form-input-group, we need to make space for the icon if we had one,
   but the user removed the icons for now. If they put them back, we'd adjust padding-left to 42px.
*/

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px !important;
    right: 10px !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #aaa !important;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(38, 34, 97, 0.1) !important;
}

/* Dropdown styling */
.select2-dropdown {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden;
    margin-top: 5px;
    z-index: 9999;
}

.select2-results__option {
    padding: 10px 15px !important;
    font-size: 14px !important;
    transition: all 0.2s ease;
}

.select2-results__option--highlighted[aria-selected] {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%) !important;
    color: white !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: var(--accent) !important;
    color: white;
    font-weight: 600;
}

/* Multiple Selection Tags */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%) !important;
    border: none !important;
    border-radius: 6px !important;
    color: white !important;
    padding: 2px 10px !important;
    margin-top: 5px !important;
    margin-left: 5px !important;
    font-size: 14px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: white !important;
    margin-right: 5px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #eee !important;
}

.select2-search--dropdown .select2-search__field {
    border: 1px solid var(--glass-border) !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    outline: none !important;
}

.select2-container .select2-search--inline .select2-search__field {
    font-size: 14px !important;
    margin-top: 10px !important;
    padding: 0 16px !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    margin-right: 6px;
}

.card {
    border: 0;
}

.font-medium {
    font-size: 21px;
    opacity: 0.8;
}

label {
    font-size: 13px;
}

.h3 {
    font-size: 1.25rem;
}

.h2 {
    font-size: 48px;
}

.text-medium {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Utility Classes for Refactoring --- */
.z-10 {
    z-index: 10 !important;
}

.z-2 {
    z-index: 2 !important;
}

.z-1 {
    z-index: 1 !important;
}

.max-w-400 {
    max-width: 400px;
}

.max-w-700 {
    max-width: 700px;
}

.max-w-800 {
    max-width: 800px;
}

.max-w-900 {
    max-width: 900px;
}

.text-10 {
    font-size: 10px !important;
}

.text-13 {
    font-size: 13px !important;
}

.text-14 {
    font-size: 14px !important;
}

.text-15 {
    font-size: 15px !important;
}

.text-16 {
    font-size: 16px !important;
}

.text-17 {
    font-size: 17px !important;
}

.text-18 {
    font-size: 18px !important;
}

.text-20 {
    font-size: 20px !important;
}

.text-22 {
    font-size: 22px !important;
}

.text-24 {
    font-size: 24px !important;
}

.text-28 {
    font-size: 28px !important;
}

.text-32 {
    font-size: 32px !important;
}

.text-40 {
    font-size: 40px !important;
}

.text-42 {
    font-size: 42px !important;
}

.text-48 {
    font-size: 48px !important;
}

.text-60 {
    font-size: 60px !important;
}

.opacity-40 {
    opacity: 0.4 !important;
}

.opacity-60 {
    opacity: 0.6 !important;
}

.opacity-70 {
    opacity: 0.7 !important;
}

.opacity-80 {
    opacity: 0.8 !important;
}

.rounded-12 {
    border-radius: 12px !important;
}

.rounded-15 {
    border-radius: 15px !important;
}

.rounded-16 {
    border-radius: 16px !important;
}

.rounded-20 {
    border-radius: 20px !important;
}

.rounded-24 {
    border-radius: 24px !important;
}

.rounded-28 {
    border-radius: 28px !important;
}

.size-48 {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
}

.size-56 {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
}

.size-64 {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
}

.leading-relaxed {
    line-height: 1.6 !important;
}

.leading-tight {
    line-height: 1.1 !important;
}

.h-200 {
    height: 200px !important;
    object-fit: cover;
}

.h-240 {
    height: 240px !important;
    object-fit: cover;
}

.h-320 {
    height: 320px !important;
    object-fit: cover;
}

.bg-soft {
    background: radial-gradient(circle, rgb(100 50 255 / 7%) 100%, transparent 70%);
    border-radius: 25px;
    text-align: center;
    margin: auto;
}

.text-xl {
    font-size: 20px;
}

.text-shadow {
    text-shadow: 0 0 30px rgba(127, 63, 151, 0.3);
}

.text-muted {
    opacity: 0.8;
}

.glass-shadow {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(60px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(38, 34, 97, 0.1), inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.uppercase {
    text-transform: uppercase;
}

.bg-gradient-gray {
    background: linear-gradient(90deg, #e6e9f0, #eef1f5);
}


.banner-item {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    opacity: 0.3;
}


.title-vt-dispo-v2::before,
.title-vt-dispo-v2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.title-vt-dispo-v2::before {
    left: 5%;
    transform: translateY(-50%) rotate(180deg);
}

.title-vt-dispo-v2::after {
    right: 5%;
    transform: translateY(-50%);
}

/* Filter Section - Using Premium Outline Buttons */
.filters-container-v2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.gap-16 {
    gap: 16px;
}

@media (max-width: 768px) {

    .title-vt-dispo-v2::before,
    .title-vt-dispo-v2::after {
        display: none;
    }

    .hero-content {
        padding: 1rem;
    }

    .h2 {
        font-size: 2rem;
    }

}

[data-animate] {
    opacity: 0;
}