/**
 * Platform Web - Page Index Styles
 * Styles spécifiques à la page d'accueil
 */

/* ============================================
   HERO SECTION - MODERN REDESIGN
   ============================================ */

.musto-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: var(--color-white);
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.min-vh-hero {
    min-height: calc(100vh - var(--header-height));
    padding: calc(var(--header-height) + var(--spacing-8)) 0 var(--spacing-16);
}

/* Gradient overlay */
.musto-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 102, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

/* Animated bubbles container */
.musto-hero-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

/* Individual bubble styling */
.bubble {
    position: absolute;
    bottom: -150px;
    border-radius: 50%;
    opacity: 0;
    animation: bubbleRise 15s infinite ease-in;
}

.bubble-1 {
    left: 5%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.3) 0%, rgba(255, 102, 0, 0.1) 100%);
    animation-delay: 0s;
    animation-duration: 12s;
}

.bubble-2 {
    left: 15%;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.1) 100%);
    animation-delay: 2s;
    animation-duration: 14s;
}

.bubble-3 {
    left: 25%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0.1) 100%);
    animation-delay: 4s;
    animation-duration: 16s;
}

.bubble-4 {
    left: 40%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.2) 0%, rgba(255, 102, 0, 0.05) 100%);
    animation-delay: 1s;
    animation-duration: 18s;
}

.bubble-5 {
    left: 55%;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(16, 185, 129, 0.1) 100%);
    animation-delay: 3s;
    animation-duration: 13s;
}

.bubble-6 {
    left: 65%;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.05) 100%);
    animation-delay: 5s;
    animation-duration: 15s;
}

.bubble-7 {
    left: 75%;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.35) 0%, rgba(255, 102, 0, 0.1) 100%);
    animation-delay: 2.5s;
    animation-duration: 11s;
}

.bubble-8 {
    left: 85%;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.05) 100%);
    animation-delay: 6s;
    animation-duration: 17s;
}

.bubble-9 {
    left: 92%;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(16, 185, 129, 0.1) 100%);
    animation-delay: 4.5s;
    animation-duration: 12s;
}

.bubble-10 {
    left: 50%;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.25) 0%, rgba(255, 102, 0, 0.08) 100%);
    animation-delay: 7s;
    animation-duration: 14s;
}

@keyframes bubbleRise {
    0% {
        transform: translateY(0) scale(0.5) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-120vh) scale(1.2) rotate(360deg);
        opacity: 0;
    }
}

/* Hero content */
.musto-hero-content {
    position: relative;
    z-index: 2;
}

/* Hero badge */
.musto-hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 102, 0, 0.15);
    border: 1px solid rgba(255, 102, 0, 0.3);
    color: #ff8533;
    padding: var(--spacing-2) var(--spacing-4);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-6);
    backdrop-filter: blur(10px);
}

/* Hero title */
.musto-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: var(--font-weight-black);
    line-height: 1.1;
    margin-bottom: var(--spacing-6);
    color: var(--color-white);
}

.musto-hero-highlight {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 50%, #ffa366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Hero subtitle */
.musto-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-8);
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
}

/* Hero CTA buttons */
.musto-hero-cta {
    display: flex;
    gap: var(--spacing-4);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-10);
}

.musto-btn-hero-primary {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    color: var(--color-white);
    border: none;
    padding: var(--spacing-4) var(--spacing-8);
    border-radius: var(--border-radius-lg);
    font-weight: var(--font-weight-bold);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.4);
}

.musto-btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.5);
    color: var(--color-white);
}

.musto-btn-hero-primary .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.musto-btn-hero-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: var(--spacing-4) var(--spacing-8);
    border-radius: var(--border-radius-lg);
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.musto-btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Hero stats */
.musto-hero-stats {
    display: flex;
    align-items: center;
    gap: var(--spacing-6);
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-value {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: #ff8533;
}

.hero-stat-label {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero visual section */
.musto-hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-main {
    position: relative;
    z-index: 2;
}

.hero-visual-screen {
    width: 300px;
    height: 220px;
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 0 80px rgba(255, 102, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.screen-header {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.screen-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff6600;
}

.screen-dot:nth-child(2) { background: #fbbf24; }
.screen-dot:nth-child(3) { background: #10b981; }

.screen-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100% - 44px);
    color: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-4);
}

.screen-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-3);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
    animation: logoFloat 3s ease-in-out infinite;
}

.screen-logo i {
    font-size: 1.75rem;
    color: white;
}

.screen-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

.screen-title {
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-3);
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.screen-modules {
    display: flex;
    gap: 8px;
}

.screen-module-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: modulePulse 1.5s ease-in-out infinite;
}

.screen-module-dot:nth-child(1) { animation-delay: 0s; }
.screen-module-dot:nth-child(2) { animation-delay: 0.2s; }
.screen-module-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes modulePulse {
    0%, 100% { background: rgba(255, 255, 255, 0.3); transform: scale(1); }
    50% { background: #ff6600; transform: scale(1.2); }
}

/* Floating cards */
.hero-visual-card {
    position: absolute;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-2) var(--spacing-3);
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    color: var(--color-white);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 3;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.hero-visual-card:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-visual-card i {
    font-size: 1rem;
}

/* Card positions and animations */
.hero-visual-card-1 {
    top: 5%;
    left: 10%;
    animation: float1 6s ease-in-out infinite;
}
.hero-visual-card-1 i { color: #3b82f6; }

.hero-visual-card-2 {
    top: 0%;
    right: 15%;
    animation: float2 7s ease-in-out infinite 0.5s;
}
.hero-visual-card-2 i { color: #10b981; }

.hero-visual-card-3 {
    top: 35%;
    left: -5%;
    animation: float3 5s ease-in-out infinite 1s;
}
.hero-visual-card-3 i { color: #8b5cf6; }

.hero-visual-card-4 {
    bottom: 25%;
    right: -5%;
    animation: float4 6.5s ease-in-out infinite 1.5s;
}
.hero-visual-card-4 i { color: #ff6600; }

.hero-visual-card-5 {
    top: 35%;
    right: -10%;
    animation: float5 5.5s ease-in-out infinite 0.8s;
}
.hero-visual-card-5 i { color: #f59e0b; }

.hero-visual-card-6 {
    bottom: 5%;
    left: 15%;
    animation: float6 6s ease-in-out infinite 1.2s;
}
.hero-visual-card-6 i { color: #ec4899; }

.hero-visual-card-7 {
    bottom: 10%;
    left: 45%;
    transform: translateX(-50%);
    animation: float7 5s ease-in-out infinite 0.3s;
}
.hero-visual-card-7 i { color: #06b6d4; }

.hero-visual-card-8 {
    bottom: 5%;
    right: 10%;
    animation: float8 6.5s ease-in-out infinite 2s;
}
.hero-visual-card-8 i { color: #84cc16; }

/* Different float animations for variety */
@keyframes float1 {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(-15px) translateX(0); }
    75% { transform: translateY(-8px) translateX(-5px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(3deg); }
}

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

@keyframes float4 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.02); }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(-3deg); }
}

@keyframes float6 {
    0%, 100% { transform: translateY(0) translateX(0); }
    33% { transform: translateY(-8px) translateX(5px); }
    66% { transform: translateY(-12px) translateX(-3px); }
}

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

@keyframes float8 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(2deg); }
}

/* Connection lines SVG */
.hero-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.connection-line {
    stroke: rgba(255, 102, 0, 0.2);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 8 4;
    animation: dashMove 20s linear infinite;
}

@keyframes dashMove {
    to { stroke-dashoffset: -100; }
}

/* Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ff6600;
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle-2 {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
    background: #3b82f6;
}

.particle-3 {
    top: 80%;
    left: 30%;
    animation-delay: 2s;
    background: #10b981;
}

.particle-4 {
    top: 30%;
    left: 70%;
    animation-delay: 3s;
    background: #8b5cf6;
}

.particle-5 {
    top: 50%;
    left: 50%;
    animation-delay: 4s;
    background: #f59e0b;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(20px, -30px) scale(1.5);
        opacity: 0.8;
    }
    50% {
        transform: translate(-10px, -50px) scale(1);
        opacity: 0.4;
    }
    75% {
        transform: translate(15px, -20px) scale(1.2);
        opacity: 0.7;
    }
}

/* Scroll indicator */
.musto-hero-scroll {
    position: absolute;
    bottom: var(--spacing-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-2);
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--font-size-sm);
    animation: fadeInUp 1s ease 2s both;
    z-index: 2;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #ff6600;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* Animations */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.musto-features {
    padding: var(--spacing-16) 0;
    background-color: var(--color-gray-50);
}

/* ============================================
   STATS SECTION
   ============================================ */

.musto-stats {
    padding: var(--spacing-16) 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
}

.musto-stat-item {
    text-align: center;
}

.musto-stat-value {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: var(--font-weight-black);
    margin-bottom: var(--spacing-2);
}

.musto-stat-label {
    font-size: var(--font-size-lg);
    opacity: 0.9;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.musto-how-it-works {
    padding: var(--spacing-16) 0;
    background-color: var(--color-white);
}

.musto-step-card {
    padding: var(--spacing-6);
}

.musto-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-4);
}

.musto-step-icon {
    margin-bottom: var(--spacing-4);
}

.musto-step-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-3);
    color: var(--color-gray-900);
}

.musto-step-text {
    color: var(--color-gray-600);
    line-height: var(--line-height-relaxed);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.musto-benefits {
    padding: var(--spacing-16) 0;
    background-color: var(--color-gray-50);
}

.musto-benefit-list {
    margin-top: var(--spacing-6);
}

.musto-benefit-item {
    display: flex;
    gap: var(--spacing-4);
    align-items: flex-start;
}

.musto-benefit-icon {
    flex-shrink: 0;
    margin-top: var(--spacing-1);
}

.musto-benefit-content {
    flex: 1;
}

.musto-benefit-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-2);
    color: var(--color-gray-900);
}

.musto-benefit-text {
    color: var(--color-gray-600);
    line-height: var(--line-height-relaxed);
    margin: 0;
}

.musto-benefit-image {
    padding: var(--spacing-8);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.musto-testimonials {
    padding: var(--spacing-16) 0;
    background-color: var(--color-white);
}

.musto-card-testimonial {
    height: 100%;
}

.musto-testimonial-rating {
    display: flex;
    gap: var(--spacing-1);
}

.musto-testimonial-text {
    font-style: italic;
    color: var(--color-gray-700);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-4);
}

.musto-testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    margin-top: var(--spacing-4);
    padding-top: var(--spacing-4);
    border-top: var(--border-width-1) solid var(--color-gray-200);
}

.musto-testimonial-avatar {
    flex-shrink: 0;
}

.musto-testimonial-info {
    flex: 1;
}

.musto-testimonial-name {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-1);
    color: var(--color-gray-900);
}

.musto-testimonial-role {
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
    margin: 0;
}

/* ============================================
   PRICING PREVIEW SECTION
   ============================================ */

.musto-pricing-preview {
    padding: var(--spacing-16) 0;
    background-color: var(--color-gray-50);
}

.musto-card-pricing {
    position: relative;
    height: 100%;
    transition: all var(--transition-base) var(--ease-in-out);
}

.musto-card-pricing:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.musto-card-pricing-featured {
    border: var(--border-width-2) solid var(--color-primary);
}

.musto-pricing-badge {
    position: absolute;
    top: -15px;
    right: var(--spacing-4);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    padding: var(--spacing-2) var(--spacing-4);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
}

.musto-pricing-plan {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-4);
    color: var(--color-gray-900);
}

.musto-pricing-price {
    margin-bottom: var(--spacing-6);
}

.musto-pricing-amount {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-black);
    color: var(--color-primary);
}

.musto-pricing-currency {
    font-size: var(--font-size-xl);
    color: var(--color-gray-600);
}

.musto-pricing-period {
    font-size: var(--font-size-base);
    color: var(--color-gray-600);
}

.musto-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-6) 0;
    text-align: left;
}

.musto-pricing-features li {
    padding: var(--spacing-2) 0;
    color: var(--color-gray-700);
}

/* ============================================
   DEMO VIDEO SECTION
   ============================================ */

.musto-demo-video {
    padding: var(--spacing-16) 0;
    background-color: var(--color-white);
}

.musto-demo-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.musto-demo-features li {
    padding: var(--spacing-2) 0;
    color: var(--color-gray-700);
}

.musto-video-placeholder {
    background-color: var(--color-gray-100);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-12);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.musto-video-thumbnail {
    cursor: pointer;
    transition: all var(--transition-base) var(--ease-in-out);
}

.musto-video-thumbnail:hover {
    transform: scale(1.1);
}

/* ============================================
   FAQ PREVIEW SECTION
   ============================================ */

.musto-faq-preview {
    padding: var(--spacing-16) 0;
    background-color: var(--color-gray-50);
}

.musto-faq-item {
    background-color: var(--color-white);
    padding: var(--spacing-6);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-base);
    height: 100%;
}

.musto-faq-question {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-3);
    color: var(--color-gray-900);
    display: flex;
    align-items: center;
}

.musto-faq-answer {
    color: var(--color-gray-600);
    line-height: var(--line-height-relaxed);
    margin: 0;
}

/* ============================================
   QUOTE PREVIEW SECTION
   ============================================ */

.musto-quote-preview {
    padding: var(--spacing-16) 0;
    background-color: var(--color-white);
}

.musto-quote-benefits {
    margin-top: var(--spacing-4);
}

.musto-quote-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-3);
    padding: var(--spacing-2) 0;
}

.musto-quote-benefit-item i {
    flex-shrink: 0;
    margin-top: var(--spacing-1);
}

.musto-quote-image {
    padding: var(--spacing-8);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.musto-final-cta {
    padding: var(--spacing-20) 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
}

.musto-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.musto-cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: var(--font-weight-black);
    margin-bottom: var(--spacing-4);
}

.musto-cta-subtitle {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-8);
    opacity: 0.95;
}

.musto-cta-buttons {
    display: flex;
    gap: var(--spacing-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   SECTION TITLES (Génériques)
   ============================================ */

.musto-section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: var(--spacing-4);
    color: var(--color-gray-900);
}

.musto-section-subtitle {
    font-size: var(--font-size-lg);
    text-align: center;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-12);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1199.98px) {
    .musto-hero-visual {
        height: 420px;
    }
    
    .hero-visual-screen {
        width: 260px;
        height: 180px;
    }
    
    .hero-visual-card-5,
    .hero-visual-card-7 {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .min-vh-hero {
        min-height: auto;
        padding: calc(var(--header-height) + var(--spacing-8)) 0 var(--spacing-12);
    }
    
    .musto-hero {
        min-height: auto;
    }
    
    .musto-hero-visual {
        height: 350px;
        margin-top: var(--spacing-8);
    }
    
    /* Show only 4 cards on tablet */
    .hero-visual-card-5,
    .hero-visual-card-6,
    .hero-visual-card-7,
    .hero-visual-card-8 {
        display: none;
    }
    
    .hero-connections,
    .hero-particles {
        display: none;
    }
    
    .musto-hero-scroll {
        display: none;
    }
    
    .musto-step-number {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-xl);
    }
    
    .musto-pricing-badge {
        top: -12px;
        font-size: var(--font-size-xs);
        padding: var(--spacing-1) var(--spacing-3);
    }
    
    /* Reduce bubbles on tablet */
    .bubble-4, .bubble-8, .bubble-10 {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .musto-hero-title {
        font-size: 2rem;
    }
    
    .musto-hero-cta,
    .musto-cta-buttons {
        flex-direction: column;
    }
    
    .musto-hero-cta .musto-btn,
    .musto-cta-buttons .musto-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .musto-hero-stats {
        justify-content: center;
        gap: var(--spacing-4);
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .musto-hero-visual {
        height: 280px;
    }
    
    .hero-visual-screen {
        width: 220px;
        height: 160px;
    }
    
    .screen-logo {
        width: 45px;
        height: 45px;
    }
    
    .screen-logo i {
        font-size: 1.25rem;
    }
    
    .screen-title {
        font-size: var(--font-size-base);
    }
    
    /* Hide all floating cards on mobile, keep only screen */
    .hero-visual-card {
        display: none;
    }
    
    /* Hide more bubbles on mobile */
    .bubble-2, .bubble-3, .bubble-5, .bubble-6, .bubble-7, .bubble-9 {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .musto-hero-badge {
        font-size: var(--font-size-xs);
        padding: var(--spacing-1) var(--spacing-3);
    }
    
    .musto-hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-3);
    }
    
    .hero-stat {
        flex-direction: row;
        align-items: center;
        gap: var(--spacing-2);
    }
    
    .hero-stat-value {
        font-size: var(--font-size-xl);
    }
    
    .musto-hero-visual {
        height: 220px;
    }
    
    .hero-visual-screen {
        width: 180px;
        height: 130px;
    }
}

