/* ============================================
   VIPLE - Styles Optimisés et Propres
   Version 2.0 - Sans duplication
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --viple-primary: #667eea;
    --viple-secondary: #764ba2;
    --viple-success: #10b981;
    --viple-info: #3b82f6;
    --viple-warning: #f59e0b;
    --viple-danger: #ef4444;
    --viple-purple: #8b5cf6;
    --viple-dark: #1e293b;
    --viple-light: #f8fafc;
}

/* ============================================
   HERO SECTION V2
   ============================================ */
.viple-hero-v2 {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--viple-primary) 0%, var(--viple-secondary) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.viple-hero-v2 .container {
    padding-top: 100px;
    padding-bottom: 100px;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.hero-title-v2 {
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    line-height: 1.3;
}

.brand-name-animated {
    display: block;
    background: linear-gradient(120deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    height: 90px;
    line-height: 1.1;
}

.tagline-typed {
    display: inline-block;
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    height: 60px;
    line-height: 60px;
    vertical-align: middle;
    position: relative;
}

/* Cursor Typed.js - Alignement parfait */
.typed-cursor {
    display: inline-block;
    color: white;
    font-weight: 400;
    font-size: 2rem;
    line-height: 60px;
    vertical-align: middle;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-subtitle-v2 {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.hero-stats-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.stat-item-v2 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item-v2:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-number-animated {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Hero CTA - Boutons optimisés avec meilleur espacement */
.hero-cta-v2 {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    margin-bottom: 4rem;
}

/* Bouton principal - Taille optimisée */
.btn-hero-primary {
    padding: 1rem 2.25rem;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    color: var(--viple-primary);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
    transition: left 0.6s;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    color: var(--viple-primary);
}

.btn-hero-primary i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(6px);
}

/* Bouton secondaire - Taille optimisée */
.btn-hero-secondary {
    padding: 1rem 2.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.btn-hero-secondary i {
    font-size: 1.15rem;
}

/* Scroll Indicator - Repositionné plus bas */
.scroll-indicator-v2 {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-indicator-v2:hover {
    opacity: 1;
}

.mouse-v2 {
    width: 28px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    margin: 0 auto 8px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
}

.wheel-v2 {
    width: 3px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(18px); }
}

.scroll-indicator-v2 span {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 500;
    display: block;
    margin-top: 5px;
}

/* ============================================
   SECTIONS COMMUNES
   ============================================ */
.section-header-v2 {
    margin-bottom: 4rem;
}

.section-tag-v2 {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--viple-primary) 0%, var(--viple-secondary) 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title-v2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--viple-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle-v2 {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.viple-services-v2 {
    padding: 6rem 0;
}

.services-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover {
    border-color: var(--viple-primary);
    color: var(--viple-primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--viple-primary) 0%, var(--viple-secondary) 100%);
    color: white;
    border-color: var(--viple-primary);
}

.service-card-v2 {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.service-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--viple-primary), var(--viple-secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-v2:hover::before {
    transform: scaleX(1);
}

.service-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--viple-primary);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-icon-v2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--viple-primary) 0%, var(--viple-secondary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.service-icon-v2.bg-success {
    background: linear-gradient(135deg, var(--viple-success) 0%, #059669 100%);
}

.service-icon-v2.bg-info {
    background: linear-gradient(135deg, var(--viple-info) 0%, #2563eb 100%);
}

.service-icon-v2.bg-warning {
    background: linear-gradient(135deg, var(--viple-warning) 0%, #d97706 100%);
}

.service-icon-v2.bg-danger {
    background: linear-gradient(135deg, var(--viple-danger) 0%, #dc2626 100%);
}

.service-icon-v2.bg-purple {
    background: linear-gradient(135deg, var(--viple-purple) 0%, #7c3aed 100%);
}

.service-badge {
    padding: 0.4rem 1rem;
    background: var(--viple-primary);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-badge.badge-new {
    background: var(--viple-success);
}

.service-card-v2 h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--viple-dark);
    margin-bottom: 1rem;
}

.service-card-v2 > p {
    color: #64748b;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

.service-features-v2 {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features-v2 li {
    padding: 0.5rem 0;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features-v2 i {
    color: var(--viple-success);
    font-size: 1.1rem;
}

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px solid #f1f5f9;
    margin-top: auto;
}

.service-price {
    font-size: 0.9rem;
    color: #64748b;
}

.service-price strong {
    font-size: 1.5rem;
    color: var(--viple-primary);
    font-weight: 900;
    display: block;
}

.service-link-v2 {
    color: var(--viple-primary);
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link-v2:hover {
    gap: 1rem;
}

.btn-viple-outline-v2 {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--viple-primary);
    border: 2px solid var(--viple-primary);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-viple-outline-v2:hover {
    background: linear-gradient(135deg, var(--viple-primary) 0%, var(--viple-secondary) 100%);
    color: white;
    transform: translateY(-3px);
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--viple-primary);
    opacity: 0.2;
    width: 100px;
    text-align: center;
}

.step-content {
    flex-grow: 1;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateX(10px);
    border-color: var(--viple-primary);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--viple-primary) 0%, var(--viple-secondary) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--viple-dark);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: #64748b;
    margin: 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-image-wrapper {
    position: relative;
}

.about-badge-v2 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--viple-primary) 0%, var(--viple-secondary) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    border: 5px solid white;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.about-badge-v2 .badge-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.about-badge-v2 .badge-number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.about-badge-v2 .badge-text {
    font-size: 0.85rem;`n    letter-spacing: -0.5px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-shape {
    position: absolute;
    background: linear-gradient(135deg, var(--viple-primary) 0%, var(--viple-secondary) 100%);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
}

.about-shape.shape-1 {
    width: 200px;
    height: 200px;
    top: -40px;
    left: -40px;
    animation: morph 8s ease-in-out infinite;
}

.about-shape.shape-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: -30px;
    animation: morph 8s ease-in-out infinite reverse;
}

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

.about-tabs {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid #e2e8f0;
}

.tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn.active {
    color: var(--viple-primary);
    border-bottom-color: var(--viple-primary);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.values-list i {
    color: var(--viple-success);
    font-size: 1.2rem;
}

/* ============================================
   TECHNOLOGIES
   ============================================ */
.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.tech-item {
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
    color: var(--viple-dark);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.tech-item:hover {
    border-color: var(--viple-primary);
    transform: translateY(-5px);
}

.tech-item i {
    font-size: 2.5rem;
    color: var(--viple-primary);
}

/* ============================================
   CTA BANNER
   ============================================ */
.viple-cta-banner {
    background: linear-gradient(135deg, var(--viple-primary) 0%, var(--viple-secondary) 100%);
}

.cta-banner-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 3rem;
}

.cta-banner-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--viple-dark);
    margin-bottom: 1rem;
}

.cta-banner-text {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.cta-features {
    list-style: none;
    padding: 0;
}

.cta-features li {
    padding: 0.5rem 0;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-features i {
    color: var(--viple-success);
    font-size: 1.2rem;
}

.cta-form-box {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-form-box h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--viple-dark);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-carousel {
    position: relative;
    min-height: 300px;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-card-v2 {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
}

.testimonial-stars-v2 {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text-v2 {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #475569;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author-v2 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-avatar-v2 {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--viple-primary);
}

.author-info-v2 h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--viple-dark);
    margin: 0;
}

.author-info-v2 p {
    color: #64748b;
    margin: 0;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    color: var(--viple-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--viple-primary);
    color: white;
}

.carousel-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--viple-primary);
    transform: scale(1.3);
}

/* ============================================
   FAQ
   ============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--viple-primary);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--viple-dark);
}

.faq-question i {
    color: var(--viple-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #64748b;
    margin: 0;
}

/* ============================================
   TECHNOLOGIES PAGE
   ============================================ */
.tech-item-more {
    background: linear-gradient(135deg, var(--viple-primary) 0%, var(--viple-secondary) 100%);
    color: white !important;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

.tech-item-more:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
}

.tech-item-more i {
    font-size: 3rem;
    color: white;
    margin-bottom: 0.5rem;
}

.tech-item-more span {
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

/* Page Hero Technologies */
.page-hero-tech {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--viple-primary) 0%, var(--viple-secondary) 100%);
    color: white;
}

.page-hero-tech .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
}

.page-hero-tech .breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
}

.page-hero-tech .breadcrumb-item.active {
    color: white;
}

.page-hero-tech .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.page-hero-tech .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.text-gradient {
    background: linear-gradient(120deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tech-icon {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

.hero-tech-icon i {
    font-size: 8rem;
    color: white;
}

/* Tech Category */
.tech-category {
    background: white;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--viple-primary) 0%, var(--viple-secondary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--viple-dark);
    margin: 0;
}

.category-description {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0;
}

/* Tech Cards */
.tech-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    border-color: var(--viple-primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.tech-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tech-card-header i {
    font-size: 2.5rem;
}

.tech-card-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--viple-dark);
    margin: 0;
}

.tech-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    padding: 0.35rem 0.85rem;
    background: var(--viple-light);
    color: var(--viple-primary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* CTA Tech */
.cta-tech {
    background: linear-gradient(135deg, var(--viple-primary) 0%, var(--viple-secondary) 100%);
}

.cta-tech-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Logiciels Propriétaires Viple - Style Spécial */
.tech-card-viple {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border: 2px solid var(--viple-primary);
}

.tech-card-viple::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--viple-primary) 0%, var(--viple-secondary) 100%);
    opacity: 0.1;
    border-radius: 0 0 0 100%;
}

.tech-card-viple:hover {
    border-color: var(--viple-secondary);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.25);
    transform: translateY(-15px);
}

.tech-card-viple .tech-card-header i {
    font-size: 3rem;
}

.tech-card-viple .tech-card-header h3 {
    color: var(--viple-primary);
    font-size: 1.5rem;
}

.tech-tag-viple {
    background: linear-gradient(135deg, var(--viple-primary) 0%, var(--viple-secondary) 100%);
    color: white !important;
    font-weight: 700;
}

/* ============================================
   HERO VISUAL - FLOATING CARDS (SECTION MANQUANTE)
   ============================================ */
/* Hero Clients */
.hero-clients {
    margin-top: 3rem;
}

.clients-logos {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.client-logo {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero Visual - Floating Cards */
.hero-visual-v2 {
    position: relative;
    height: 600px;
}

.floating-card-v2 {
    position: absolute;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.floating-card-v2.card-1 { top: 10%; left: 0; animation-delay: 0s; }
.floating-card-v2.card-2 { top: 30%; right: 10%; animation-delay: 0.5s; }
.floating-card-v2.card-3 { bottom: 30%; left: 10%; animation-delay: 1s; }
.floating-card-v2.card-4 { bottom: 10%; right: 0; animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-card-v2:hover {
    transform: scale(1.05) translateY(-10px) !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.floating-card-v2 .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--viple-primary) 0%, var(--viple-secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.floating-card-v2 .card-content {
    flex-grow: 1;
}

.floating-card-v2 .card-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    color: var(--viple-dark);
}

.floating-card-v2 .card-content p {
    font-size: 0.85rem;
    margin: 0;
    color: #64748b;
}

/* Cercle central - Amélioré */
.hero-center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--viple-primary) 0%, var(--viple-secondary) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    animation: pulse-circle 2s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(102, 126, 234, 0.6), inset 0 0 30px rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

@keyframes pulse-circle {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 60px rgba(102, 126, 234, 0.6);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 0 80px rgba(102, 126, 234, 0.8);
    }
}

.hero-center-circle i {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.hero-center-circle span {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-viple-v2 {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--viple-primary) 0%, var(--viple-secondary) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-viple-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: white;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .viple-hero-v2 .container {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .hero-badge {
        margin-bottom: 1.5rem;
    }

    .hero-title-v2 {
        font-size: 3rem;
        margin-top: 1rem;
    }

    .brand-name-animated {
        height: 70px;
    }

    .tagline-typed {
        font-size: 1.5rem;
        height: 45px;
        line-height: 45px;
    }

    .typed-cursor {
        font-size: 1.5rem;
        line-height: 45px;
    }

    .hero-stats-v2 {
        grid-template-columns: repeat(2, 1fr);
        margin: 2rem 0;
    }

    .hero-cta-v2 {
        margin-top: 2rem;
        margin-bottom: 3rem;
    }

    .hero-visual-v2 {
        display: none;
    }

    .section-title-v2 {
        font-size: 2.5rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.9rem 1.75rem;
        font-size: 1.05rem;
    }

    .scroll-indicator-v2 {
        bottom: 25px;
    }

    .scroll-indicator-v2 span {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .viple-hero-v2 .container {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero-badge {
        margin-bottom: 1.25rem;
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

    .hero-title-v2 {
        font-size: 2.5rem;
        margin-top: 0.75rem;
    }

    .brand-name-animated {
        height: 60px;
    }

    .tagline-typed {
        font-size: 1.25rem;
        height: 38px;
        line-height: 38px;
    }

    .typed-cursor {
        font-size: 1.25rem;
        line-height: 38px;
    }

    .hero-subtitle-v2 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats-v2 {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .section-title-v2 {
        font-size: 2rem;
    }

    .tab-buttons {
        flex-direction: column;
    }

    .about-badge-v2 {
        width: 120px;
        height: 120px;
    }

    .process-step {
        flex-direction: column;
    }

    .hero-cta-v2 {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }

    .btn-hero-primary i,
    .btn-hero-secondary i {
        font-size: 1.1rem;
    }

    .scroll-indicator-v2 {
        bottom: 20px;
    }

    .scroll-indicator-v2 span {
        display: none;
    }
}

@media (max-width: 576px) {
    .viple-hero-v2 .container {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.85rem;
        margin-bottom: 1rem;
    }

    .hero-title-v2 {
        font-size: 2rem;
        margin-top: 0.5rem;
    }

    .brand-name-animated {
        font-size: 2rem;
        height: 50px;
    }

    .tagline-typed {
        font-size: 1.1rem;
        height: 32px;
        line-height: 32px;
    }

    .typed-cursor {
        font-size: 1.1rem;
        line-height: 32px;
    }

    .hero-subtitle-v2 {
        font-size: 1rem;
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .stat-number-animated {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-cta-v2 {
        margin-top: 1.25rem;
        margin-bottom: 2rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        font-size: 0.95rem;
        padding: 0.8rem 1.25rem;
    }

    .btn-hero-primary i,
    .btn-hero-secondary i {
        font-size: 1rem;
    }

    .scroll-indicator-v2 {
        bottom: 15px;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
    }

    .category-title {
        font-size: 2rem;
    }

    .hero-tech-icon {
        width: 200px;
        height: 200px;
    }

    .hero-tech-icon i {
        font-size: 6rem;
    }

    .page-hero-tech {
        padding: 80px 0 60px;
    }
}

