/* Variables */
:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #06b6d4;
    --accent: #8b5cf6;
    --dark: #0f172a;
    --gray: #475569;
    --light-gray: #cbd5e1;
    --bg: #f8fafc;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    --gradient-3: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Floating Particles Background */
.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    animation: float-particle linear infinite;
}

.particle-1 {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-duration: 25s;
    animation-delay: 0s;
}

.particle-2 {
    width: 60px;
    height: 60px;
    left: 25%;
    animation-duration: 30s;
    animation-delay: 5s;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
}

.particle-3 {
    width: 100px;
    height: 100px;
    left: 45%;
    animation-duration: 35s;
    animation-delay: 10s;
}

.particle-4 {
    width: 70px;
    height: 70px;
    left: 65%;
    animation-duration: 28s;
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
}

.particle-5 {
    width: 90px;
    height: 90px;
    left: 80%;
    animation-duration: 32s;
    animation-delay: 8s;
}

.particle-6 {
    width: 50px;
    height: 50px;
    left: 90%;
    animation-duration: 26s;
    animation-delay: 15s;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

@keyframes float-particle {
    0% {
        bottom: -150px;
        transform: translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 120%;
        transform: translateX(100px) rotate(720deg);
        opacity: 0;
    }
}

body > * {
    position: relative;
    z-index: 1;
}

/* Navigation Header */
.tele-nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0;
}

.tele-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tele-nav .logo h1 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 2px;
    font-weight: 700;
}

.tele-nav .logo .subtitle {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 400;
}

.tele-nav .nav-menu {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tele-nav .nav-menu li {
    margin: 0;
}

.tele-nav .nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}

.tele-nav .nav-menu a:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

.tele-nav .nav-menu a.active {
    background: var(--gradient-2);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.tele-nav .nav-menu a.nav-highlight {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: var(--white);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.tele-nav .nav-menu a.nav-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.tele-nav .nav-menu a.nav-highlight:hover::before {
    left: 100%;
}

.tele-nav .nav-menu a.nav-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.container-tele {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.hero-tele {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: visible;
    padding-top: 80px;
}

.hero-overlay,
.hero-animated-bg {
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.hero-animated-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.signal-wave {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 2px solid rgba(37, 99, 235, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-wave 3s ease-out infinite;
}

.signal-wave:nth-child(2) {
    animation-delay: 1s;
}

.signal-wave:nth-child(3) {
    animation-delay: 2s;
}

@keyframes pulse-wave {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.hero-content-tele {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge i {
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-title-tele {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--white) 0%, #94a3b8 50%, var(--white) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s backwards, shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle-tele {
    font-size: 1.4rem;
    color: var(--light-gray);
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

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

.hero-stats-tele {
    display: flex;
    justify-content: center;
    gap: 60px;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.stat-item-tele {
    text-align: center;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.stat-item-tele::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(6, 182, 212, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item-tele:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

.stat-item-tele:hover::before {
    opacity: 1;
}

.stat-number-tele {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-2);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    animation: shimmer 3s ease-in-out infinite;
}

.stat-label-tele {
    color: var(--light-gray);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.stat-item-tele:hover .stat-label-tele {
    color: var(--white);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-2);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
}

.btn-hero-primary i {
    font-size: 1.2rem;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary i {
    font-size: 1.1rem;
}

/* Hero Dropdown - Transmitters */
.btn-hero-dropdown-wrapper {
    position: relative;
}

.hero-dropdown {
    position: absolute;
    bottom: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    display: flex;
    gap: 4px;
    padding: 10px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(30, 58, 110, 0.95));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 22px;
    border: 1px solid rgba(147, 197, 253, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(37, 99, 235, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    white-space: nowrap;
}

.hero-dropdown::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid rgba(30, 58, 110, 0.95);
}

.btn-hero-dropdown-wrapper:hover .hero-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.hero-dropdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 14px 12px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 120px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid transparent;
}

.hero-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(147, 197, 253, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-dropdown-item img {
    width: 110px;
    height: 80px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-dropdown-item:hover img {
    transform: scale(1.06);
    border-color: rgba(147, 197, 253, 0.4);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

.hero-dropdown-item span {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.btn-hero-tertiary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.btn-hero-tertiary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-tertiary i {
    font-size: 1.1rem;
}

/* Bouton hero actif */
.hero-buttons a.active {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.5), 0 0 40px rgba(37, 99, 235, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Feature Pills */
.hero-features {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.hero-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.hero-feature-pill:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-feature-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-feature-icon i {
    font-size: 0.85rem;
    color: var(--white);
}

.scroll-indicator-tele {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.mouse-scroll {
    width: 26px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0%, 100% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 20px;
        opacity: 0.3;
    }
}

/* Section Styles */
.section-tele {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-tele::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    right: -250px;
    animation: float-bubble 20s ease-in-out infinite;
    pointer-events: none;
}

.section-tele::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    animation: float-bubble 25s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes float-bubble {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.section-header-tele {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.section-tag-tele {
    display: inline-block;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    animation: slideInDown 0.6s ease-out;
}

.section-tag-tele::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-2);
    border-radius: 2px;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title-tele {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--dark) 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: slideInUp 0.8s ease-out;
    position: relative;
}

.section-title-tele::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 4px;
    background: var(--gradient-2);
    border-radius: 2px;
    opacity: 0.3;
}

.section-title-tele::after {
    content: '';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 4px;
    background: var(--gradient-2);
    border-radius: 2px;
    opacity: 0.3;
}

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

.section-desc-tele {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.8;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* What Is Section */
.what-is {
    background: linear-gradient(160deg, #0a1628 0%, #122448 30%, #1e3a6e 60%, #2563eb 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background circles */
.what-is-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.what-is-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.what-is-circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    animation: what-is-float 8s ease-in-out infinite;
}

.what-is-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    animation: what-is-float 10s ease-in-out infinite reverse;
}

.what-is-circle-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 60%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: what-is-float 6s ease-in-out infinite;
}

@keyframes what-is-float {
    0%, 100% {
        transform: scale(1) translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.15) translateY(-20px);
        opacity: 0.8;
    }
}

/* Header overrides for dark bg */
.what-is-header {
    position: relative;
    z-index: 1;
}

.what-is-tag {
    background: rgba(255, 255, 255, 0.1) !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #93c5fd !important;
    background-clip: unset !important;
    color: #93c5fd !important;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(147, 197, 253, 0.25);
}

.what-is-tag::after {
    display: none !important;
}

.what-is-title {
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.what-is-subtitle {
    color: rgba(203, 213, 225, 0.85) !important;
    -webkit-text-fill-color: rgba(203, 213, 225, 0.85) !important;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
    position: relative;
    transition: all 0.4s ease;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 18px;
    background: var(--gradient-2);
    opacity: 0;
    animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.1);
    }
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

/* ============================================
   TÉLÉSURVEILLANCE - 3 STEPS DESIGN
   ============================================ */

/* Steps Grid */
.tele-steps-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.tele-step-card {
    flex: 1;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 40px 30px 35px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tele-step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.tele-step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.tele-step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.15));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tele-step-card:hover .tele-step-icon {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.tele-step-icon i {
    font-size: 2rem;
    color: #93c5fd;
    transition: color 0.4s ease;
}

.tele-step-card:hover .tele-step-icon i {
    color: #ffffff;
}

.tele-step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.tele-step-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(203, 213, 225, 0.85);
}

.tele-step-card p strong {
    color: #93c5fd;
}

/* Connector between cards */
.tele-step-connector {
    display: flex;
    align-items: center;
    gap: 0;
    width: 60px;
    min-width: 40px;
    padding-top: 20px;
}

.connector-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(147, 197, 253, 0.15), rgba(147, 197, 253, 0.4));
}

.connector-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}

/* Flow Visual */
.tele-flow-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 35px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 700px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.tele-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.tele-flow-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.tele-flow-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.tele-flow-step span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #e2e8f0;
    max-width: 100px;
}

.tele-flow-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.flow-arrow-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, rgba(6, 182, 212, 0.4));
    position: relative;
}

.flow-arrow-line::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -3px;
    width: 0;
    height: 0;
    border-left: 8px solid #3b82f6;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.tele-flow-arrow span {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(147, 197, 253, 0.7);
    white-space: nowrap;
}

/* Warning */
.tele-warning {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 18px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.tele-warning-badge {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.tele-warning-badge i {
    font-size: 1.3rem;
    color: white;
}

.tele-warning-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.tele-warning-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 14px;
}

.tele-warning-emergency {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #fef2f2;
    border-radius: 12px;
    border-left: 3px solid #ef4444;
}

.tele-warning-emergency i {
    font-size: 1rem;
    color: #ef4444;
}

.tele-warning-emergency span {
    font-size: 0.9rem;
    color: #1e293b;
    font-weight: 500;
}

.tele-warning-emergency strong {
    color: #ef4444;
}

/* Benefits Grid */
.tele-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.tele-benefit-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 22px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tele-benefit-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.tele-benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: white;
    font-size: 26px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.35);
}

.tele-benefit-card:hover .tele-benefit-icon {
    transform: scale(1.1);
}

.tele-benefit-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.tele-benefit-card p {
    font-size: 0.9rem;
    color: rgba(203, 213, 225, 0.8);
    line-height: 1.6;
}

/* Q/R link card */
a.tele-benefit-link {
    text-decoration: none;
    cursor: pointer;
}

a.tele-benefit-link:hover {
    border-color: rgba(147, 197, 253, 0.35);
}

.tele-benefit-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    margin-top: 12px;
    transition: all 0.3s ease;
}

a.tele-benefit-link:hover .tele-benefit-arrow {
    background: #3b82f6;
    color: white;
    transform: translateX(4px);
}

/* FAQ Télésurveillance */
.faq-tele-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
}

.faq-tele-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-tele-item {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-tele-item:hover {
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.08);
}

.faq-tele-item.active {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.12);
}

.faq-tele-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-tele-question:hover {
    background: rgba(37, 99, 235, 0.03);
}

.faq-tele-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: var(--gradient-2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-tele-icon i {
    font-size: 0.85rem;
    color: var(--white);
}

.faq-tele-question h4 {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.faq-tele-arrow {
    font-size: 0.8rem;
    color: var(--gray);
    transition: transform 0.3s ease;
}

.faq-tele-item.active .faq-tele-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-tele-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-tele-item.active .faq-tele-answer {
    max-height: 600px;
    padding: 0 25px 24px 78px;
}

.faq-tele-answer p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 10px;
}

.faq-tele-answer p:last-child {
    margin-bottom: 0;
}

.faq-tele-answer .faq-answer-highlight {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(6, 182, 212, 0.06));
    border-left: 3px solid var(--primary);
    border-radius: 0 10px 10px 0;
    padding: 12px 16px;
    margin: 12px 0;
}

.faq-tele-answer .faq-answer-highlight p {
    margin-bottom: 0;
    color: var(--dark);
    font-weight: 500;
}

.faq-tele-answer .faq-answer-list {
    list-style: none;
    padding: 0;
    margin: 8px 0;
}

.faq-tele-answer .faq-answer-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray);
}

.faq-tele-answer .faq-answer-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient-2);
}

/* Responsive */
@media (max-width: 768px) {
    .tele-steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .tele-step-card {
        max-width: 100%;
        padding: 35px 25px 30px;
    }

    .tele-step-connector {
        flex-direction: column;
        width: auto;
        height: 30px;
        padding-top: 0;
    }

    .connector-line {
        width: 2px;
        height: 100%;
        flex: 1;
        background: linear-gradient(180deg, rgba(147, 197, 253, 0.15), rgba(147, 197, 253, 0.4));
    }

    .tele-flow-visual {
        flex-direction: column;
        gap: 15px;
        padding: 30px 20px;
    }

    .tele-flow-arrow {
        transform: rotate(90deg);
    }

    .tele-flow-step span {
        max-width: none;
    }

    .tele-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .tele-benefit-card {
        padding: 28px 20px 24px;
    }

    .tele-benefit-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .tele-warning {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .tele-warning-emergency {
        justify-content: center;
        border-left: none;
        border-top: 3px solid #ef4444;
    }

    .faq-tele-item.active .faq-tele-answer {
        padding: 0 15px 20px 15px;
        max-height: 800px;
    }
}

/* Installation Section */
.installation {
    background: var(--bg);
}

.installation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.installation-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-illustration {
    width: 300px;
    height: 300px;
    position: relative;
}

.device-screen {
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.device-screen i {
    font-size: 5rem;
    color: var(--white);
    animation: pulse 2s ease-in-out infinite;
}

.signal-rings {
    position: absolute;
    inset: 0;
}

.ring {
    position: absolute;
    inset: -30px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: ring-expand 3s ease-out infinite;
}

.ring:nth-child(2) {
    animation-delay: 1s;
}

.ring:nth-child(3) {
    animation-delay: 2s;
}

@keyframes ring-expand {
    0% {
        inset: 0;
        opacity: 0.8;
    }
    100% {
        inset: -60px;
        opacity: 0;
    }
}

.installation-info .section-tag-tele,
.installation-info .section-title-tele {
    text-align: left;
}

.info-points {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}

.info-icon i {
    font-size: 1.4rem;
    color: var(--white);
}

.info-point h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.info-point p {
    color: var(--gray);
    line-height: 1.7;
}

/* Compatible Devices Section */
.devices-compatible {
    background: var(--white);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.device-card {
    background: var(--bg);
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.device-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}

.device-icon-large {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
}

.device-icon-large i {
    font-size: 2.5rem;
    color: var(--white);
}

.device-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.device-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.device-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: none;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.device-card-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.device-card-btn:hover::after {
    width: calc(100% - 24px);
}

.device-card-btn:hover {
    color: #1d4ed8;
}

.device-card-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50%;
    color: var(--primary);
}

.device-card-btn:hover i {
    transform: translateX(4px);
    background: var(--primary);
    color: #ffffff;
}

/* Security Section */
.security {
    background: var(--white);
}

.security-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.security-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lock-illustration {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
    animation: float 3s ease-in-out infinite;
}

.lock-illustration i {
    font-size: 6rem;
    color: var(--white);
}

.security-badge {
    position: absolute;
    bottom: -20px;
    background: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
}

.security-badge i {
    font-size: 1.2rem;
    color: #10b981;
}

.security-badge span {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}

.security-content .section-tag-tele,
.security-content .section-title-tele {
    text-align: left;
}

.security-points {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.security-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--bg);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.security-item i {
    font-size: 1.8rem;
    color: var(--primary);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
}

.security-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.security-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* FAQ Section */
.faq {
    background: var(--bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    border-left-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-question i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
}

.faq-answer {
    color: var(--gray);
    line-height: 1.8;
    padding-left: 42px;
}

/* Videos Section */
.videos-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.videos-grid {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.video-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    max-width: 900px;
    width: 100%;
}

.video-card.featured {
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                var(--gradient-2) border-box;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: var(--dark);
    overflow: hidden;
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 30px;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-2);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.video-badge i {
    font-size: 0.9rem;
}

.video-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.video-info p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.video-link:hover .play-button {
    transform: scale(1.15);
    background: var(--gradient-2);
}

.video-link:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.play-button i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-left: 6px;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-overlay p {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    padding: 15px 30px;
    border: 2px solid var(--white);
    border-radius: 50px;
}

.btn-watch-video {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-2);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-watch-video:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    gap: 14px;
}

.btn-watch-video i {
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 0;
}

.cta-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
}

.cta-icon i {
    font-size: 2rem;
    color: var(--white);
}

.cta-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-wrapper p {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--primary);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
    gap: 16px;
}

/* Footer */
.footer-tele {
    background: var(--dark);
    padding: 40px 0;
}

.footer-content-tele {
    text-align: center;
    color: var(--light-gray);
    font-size: 0.95rem;
}

/* Footer WebDuo - Crédit site */
.footer-webduo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-webduo span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.webduo-link {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.webduo-link:hover {
    transform: scale(1.05);
}

.webduo-logo {
    height: 30px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.webduo-link:hover .webduo-logo {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .container-tele {
        padding: 0 20px;
    }

    .hero-title-tele {
        font-size: 2.5rem;
    }

    .hero-subtitle-tele {
        font-size: 1.1rem;
    }

    .hero-features {
        gap: 10px;
        margin-top: 24px;
    }

    .hero-feature-pill {
        padding: 10px 18px;
        font-size: 0.9rem;
        gap: 8px;
    }

    .hero-feature-icon {
        width: 28px;
        height: 28px;
        border-radius: 6px;
    }

    .hero-feature-icon i {
        font-size: 0.75rem;
    }

    .hero-stats-tele {
        flex-direction: column;
        gap: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-hero-tertiary {
        padding: 16px 28px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .btn-hero-dropdown-wrapper {
        width: 100%;
    }

    .hero-dropdown {
        display: none;
    }

    .section-tele {
        padding: 60px 0;
    }

    .section-title-tele {
        font-size: 2rem;
    }

    .installation-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .device-illustration {
        width: 200px;
        height: 200px;
    }

    .device-screen i {
        font-size: 3rem;
    }

    .cta-wrapper h2 {
        font-size: 1.8rem;
    }

    .devices-grid {
        grid-template-columns: 1fr;
    }

    .security-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lock-illustration {
        width: 200px;
        height: 200px;
    }

    .lock-illustration i {
        font-size: 4rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .video-card {
        margin: 0 10px;
    }

    .video-info {
        padding: 20px;
    }

    .video-info h3 {
        font-size: 1.3rem;
    }
}

/* ============================================
   TRANSMITTERS SELECTION SECTION
   ============================================ */

.transmitters-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Section cachée par défaut */
.hidden-section {
    display: none !important;
    opacity: 0;
    max-height: 0;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
}

/* Animation d'apparition */
.visible-section {
    display: block !important;
    animation: revealSection 0.8s ease-out forwards;
}

@keyframes revealSection {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.transmitters-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-glow 6s ease-in-out infinite;
}

/* ============================================
   TRANSMITTER SHOWCASE - DESIGN SPECTACULAIRE
   ============================================ */

/* ============================================
   TRANSMITTER SHOWCASE - DESIGN SIMPLE
   ============================================ */

.transmitter-showcase {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 700px;
    margin: 60px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   CENTRAL HUB - Simple et propre
   ============================================ */

.central-hub {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff 0%, #f0f4ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow:
        0 15px 40px rgba(37, 99, 235, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(37, 99, 235, 0.1);
}

.hub-content {
    text-align: center;
    z-index: 2;
}

.hub-content i {
    font-size: 2.5rem;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.hub-content span {
    color: #475569;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hub-rings {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hub-ring {
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    border-top-color: rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    animation: hubRingSpin 4s linear infinite;
}

.hub-ring:nth-child(1) {
    inset: -15px;
    animation-duration: 5s;
}

.hub-ring:nth-child(2) {
    inset: -30px;
    animation-duration: 7s;
    animation-direction: reverse;
    border-top-color: rgba(6, 182, 212, 0.15);
}

.hub-ring:nth-child(3) {
    inset: -45px;
    animation-duration: 9s;
    border-top-color: rgba(139, 92, 246, 0.1);
}

@keyframes hubRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   ORBIT CONTAINER
   ============================================ */

.transmitter-orbit {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* ============================================
   TRANSMITTER CARDS - Design Simple
   ============================================ */

.transmitter-card {
    position: absolute;
    width: 150px;
    height: 180px;
    left: 50%;
    top: 50%;
    margin-left: -75px;
    margin-top: -90px;
    text-decoration: none;
    transition: all 0.4s ease;
    will-change: transform;
}

.transmitter-card .card-inner {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border: 2px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.card-glow {
    display: none;
}

.transmitter-card:hover,
.transmitter-card.hovered {
    z-index: 100;
    transform: translateY(-10px) scale(1.05);
}

.transmitter-card:hover .card-inner,
.transmitter-card.hovered .card-inner {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

/* Brand Logo */
.brand-logo {
    width: 130px;
    height: 130px;
    border-radius: 14px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.brand-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    object-position: center;
}

.brand-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    border-radius: 12px;
}

.brand-letter {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
}

.transmitter-card:hover .brand-logo,
.transmitter-card.hovered .brand-logo {
    transform: scale(1.05);
}

/* Brand Name */
.brand-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.transmitter-card:hover .brand-name,
.transmitter-card.hovered .brand-name {
    color: var(--primary);
}

/* Device Tags */
.device-tags {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-bottom: 10px;
}

.device-tag {
    font-size: 0.5rem;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
    background: #f1f5f9;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.device-tag.pacemaker {
    background: #ecfdf5;
    color: #059669;
}

.device-tag.defibrillateur {
    background: #fef2f2;
    color: #dc2626;
}

.device-tag.holter {
    background: #f5f3ff;
    color: #7c3aed;
}

/* Brand Phone */
.brand-phone {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #64748b;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 5px 10px;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.brand-phone i {
    font-size: 0.6rem;
    color: var(--primary);
}

.transmitter-card:hover .brand-phone,
.transmitter-card.hovered .brand-phone {
    background: var(--primary);
    color: white;
}

.transmitter-card:hover .brand-phone i,
.transmitter-card.hovered .brand-phone i {
    color: white;
}

/* Card Arrow */
.card-arrow {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.card-arrow i {
    font-size: 0.6rem;
    color: var(--primary);
}

.transmitter-card:hover .card-arrow,
.transmitter-card.hovered .card-arrow {
    opacity: 1;
    background: var(--primary);
}

.transmitter-card:hover .card-arrow i,
.transmitter-card.hovered .card-arrow i {
    color: white;
}

/* Connection Lines SVG */
.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.orbit-path {
    fill: none;
    stroke: rgba(37, 99, 235, 0.1);
    stroke-width: 1;
    stroke-dasharray: 5 8;
}

/* Mobile Grid View */
.transmitter-grid-mobile {
    display: none;
    flex-direction: column;
    gap: 15px;
    margin-top: 50px;
}

.transmitter-card-mobile {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 16px;
    text-decoration: none;
    border: 2px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.transmitter-card-mobile:hover {
    border-color: var(--primary);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.transmitter-card-mobile .card-icon {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.transmitter-card-mobile .card-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    object-position: center;
}

.transmitter-card-mobile .card-content {
    flex: 1;
}

.transmitter-card-mobile .card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.transmitter-card-mobile .card-content .device-types {
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 5px;
}

.transmitter-card-mobile .card-content p {
    font-size: 0.9rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.transmitter-card-mobile .card-content p i {
    color: var(--primary);
    font-size: 0.8rem;
}

.transmitter-card-mobile > i {
    color: var(--gray);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.transmitter-card-mobile:hover > i {
    color: var(--primary);
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 900px) {
    .transmitter-showcase {
        display: none;
    }

    .transmitter-grid-mobile {
        display: flex;
    }
}

@media (max-width: 500px) {
    .transmitter-card-mobile {
        padding: 15px 20px;
        gap: 15px;
    }

    .transmitter-card-mobile .card-icon {
        width: 50px;
        height: 50px;
    }

    .transmitter-card-mobile .card-icon img {
        width: 45px;
        height: 45px;
    }

    .transmitter-card-mobile .card-content h3 {
        font-size: 1rem;
    }

    .transmitter-card-mobile .card-content p {
        font-size: 0.85rem;
    }
}

/* ============================================
   FINDER - QUIZ INTERACTIF
   ============================================ */
.finder-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.finder-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: 20%;
    left: -10%;
    animation: float-slow 15s ease-in-out infinite;
}

.finder-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 10%;
    right: -5%;
    animation: float-slow 12s ease-in-out infinite reverse;
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.finder-container {
    max-width: 700px;
    margin: 60px auto 0;
    position: relative;
    z-index: 2;
}

/* Progress Bar */
.finder-progress {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 25%;
    background: var(--gradient-2);
    border-radius: 10px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
}

/* Questions */
.finder-questions {
    position: relative;
    min-height: 380px;
}

.finder-question {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.finder-question.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.finder-question.exit {
    opacity: 0;
    transform: translateX(-50px);
}

.question-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.25);
}

.question-icon i {
    font-size: 2rem;
    color: white;
}

.finder-question h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    margin-bottom: 10px;
}

.finder-question > p {
    font-size: 1rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 35px;
}

/* Options */
.question-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.question-options.three-cols {
    grid-template-columns: repeat(3, 1fr);
}

.question-options.four-cols {
    grid-template-columns: repeat(4, 1fr);
}

.option-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.option-btn:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.option-btn:active {
    transform: translateY(-2px);
}

.option-btn i {
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.option-btn:hover i {
    transform: scale(1.1);
}

.option-btn span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
}

.option-btn.selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

/* Result */
.finder-result {
    display: none;
    animation: fadeInUp 0.6s ease-out;
}

.finder-result.active {
    display: block;
}

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

.result-card {
    background: white;
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-2);
}

.result-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.result-badge i {
    color: #f59e0b;
}

.result-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: #f1f5f9;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.result-logo img {
    width: 85px;
    height: 85px;
    object-fit: contain;
}

.result-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.result-content > p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.result-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.result-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #334155;
}

.result-feature i {
    color: #10b981;
}

/* Barre de compatibilité */
.result-match {
    margin-bottom: 30px;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: 16px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.match-bar {
    height: 12px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.match-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #06b6d4 50%, #2563eb 100%);
    border-radius: 10px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
}

.match-text {
    font-size: 1rem;
    color: #475569;
}

.match-text strong {
    color: #10b981;
    font-size: 1.2rem;
}

.result-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-2);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.result-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
    gap: 16px;
}

.restart-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 25px;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.restart-btn:hover {
    background: #f1f5f9;
    color: var(--primary);
}

/* ============================================
   COMPARATIF SECTION
   ============================================ */
.compare-section {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    padding: 100px 0;
    position: relative;
}

.compare-table-wrapper {
    margin-top: 60px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.compare-table {
    min-width: 900px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.compare-row {
    display: grid;
    grid-template-columns: 200px repeat(5, 1fr);
    border-bottom: 1px solid #f1f5f9;
}

.compare-row:last-child {
    border-bottom: none;
}

.compare-row.header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.compare-row.header .compare-cell {
    padding: 25px 15px;
}

.compare-row.footer-row {
    background: #f8fafc;
}

.compare-cell {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.compare-cell.feature-name {
    align-items: flex-start;
    text-align: left;
    background: #fafafa;
    border-right: 1px solid #f1f5f9;
}

.compare-row.header .compare-cell.feature-name {
    background: rgba(0, 0, 0, 0.1);
}

.compare-row.header .compare-cell.feature-name span {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
}

.compare-cell.feature-name i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.compare-cell.feature-name span {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

/* Brand Headers */
.brand-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.brand-label {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
}

.brand-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-badge.unique {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.brand-badge.flexible {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.brand-badge.popular {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.brand-badge.reliable {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
}

.brand-badge.modern {
    background: linear-gradient(135deg, #f43f5e, #e11d48);
    color: white;
}

/* Compare Values */
.compare-value {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}

.compare-value.highlight {
    color: #10b981;
    background: #ecfdf5;
    padding: 5px 12px;
    border-radius: 8px;
}

.compare-note {
    font-size: 0.75rem;
    color: #64748b;
}

.compare-icon {
    font-size: 1.3rem;
}

.compare-icon.yes {
    color: #10b981;
}

.compare-icon.no {
    color: #cbd5e1;
}

/* Rating Stars */
.compare-rating {
    display: flex;
    gap: 3px;
}

.compare-rating i {
    font-size: 0.85rem;
    color: #fbbf24;
}

.compare-rating i.far {
    color: #e2e8f0;
}

/* Compare Link */
.compare-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.compare-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    gap: 12px;
}

/* Hover effect on columns */
.compare-cell[data-brand]:hover {
    background: rgba(37, 99, 235, 0.03);
}

/* Mobile Compare Cards */
.compare-cards-mobile {
    display: none;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.compare-card-mobile {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.compare-card-mobile:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.12);
}

.compare-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.compare-card-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
}

.compare-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.compare-card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    font-size: 0.95rem;
}

.compare-card-features li:last-child {
    border-bottom: none;
}

.compare-card-features li i {
    color: #10b981;
    font-size: 0.9rem;
}

.compare-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.compare-card-link:hover {
    gap: 12px;
}

/* Responsive */
@media (max-width: 900px) {
    .compare-table-wrapper {
        display: none;
    }

    .compare-cards-mobile {
        display: flex;
    }
}

@media (max-width: 768px) {
    .finder-container {
        padding: 0 20px;
    }

    .question-options {
        grid-template-columns: 1fr;
    }

    .question-options.three-cols {
        grid-template-columns: 1fr;
    }

    .question-options.four-cols {
        grid-template-columns: 1fr 1fr;
    }

    .option-btn {
        flex-direction: row;
        padding: 20px;
        gap: 15px;
    }

    .option-btn i {
        font-size: 1.5rem;
    }

    .finder-question h3 {
        font-size: 1.3rem;
    }

    .result-card {
        padding: 35px 25px;
    }

    .result-content h3 {
        font-size: 1.5rem;
    }

    .result-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .question-options.four-cols {
        grid-template-columns: 1fr;
    }

    .result-match {
        padding: 15px 20px;
    }
}

/* ============================================
   CHATBOT FAQ - VERSION ROBOT
   ============================================ */
.chatbot-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    font-family: 'Segoe UI', sans-serif;
}

/* Bouton flottant avec robot */
.chatbot-toggle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.5);
}

.chatbot-toggle:hover .robot-eye {
    background: #22c55e;
}

/* Robot icon dans le bouton */
.robot-icon {
    position: relative;
    width: 35px;
    height: 35px;
}

.robot-head {
    width: 35px;
    height: 28px;
    background: white;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.robot-eye {
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 50%;
    animation: robotBlink 3s infinite;
}

.robot-antenna {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
}

.robot-antenna::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: antennaPulse 1.5s infinite;
}

@keyframes robotBlink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

@keyframes antennaPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px #22c55e; }
    50% { opacity: 0.5; box-shadow: 0 0 20px #22c55e; }
}

/* Pulse autour du bouton */
.chatbot-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(37, 99, 235, 0.4);
    animation: chatPulse 2s infinite;
}

@keyframes chatPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Fenêtre de chat */
.chatbot-window {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 420px;
    max-height: 650px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.chatbot-window.active {
    display: flex;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Header avec robot animé */
.chatbot-header {
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-robot {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: robotFloat 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.chatbot-robot::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: linear-gradient(to top, #2563eb, #06b6d4);
    border-radius: 2px;
}

.chatbot-robot::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #22c55e, #10b981);
    border-radius: 50%;
    animation: robotAntennaPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}

@keyframes robotFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-4px) rotate(-2deg); }
    75% { transform: translateY(-2px) rotate(2deg); }
}

@keyframes robotAntennaPulse {
    0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.7; transform: translateX(-50%) scale(1.2); }
}

.robot-face {
    width: 40px;
    height: 36px;
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
    gap: 10px;
    border: 2px solid #bae6fd;
}

.robot-eye-big {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 50%;
    animation: robotEyeBlink 4s infinite;
    position: relative;
    box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.robot-eye-big::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

@keyframes robotEyeBlink {
    0%, 45%, 55%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.1); }
}

.robot-mouth {
    width: 16px;
    height: 6px;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    border-radius: 0 0 8px 8px;
    margin-top: 0;
    animation: robotSmile 3s ease-in-out infinite;
}

@keyframes robotSmile {
    0%, 100% { width: 16px; border-radius: 0 0 8px 8px; }
    50% { width: 12px; border-radius: 0 0 6px 6px; }
}

.chatbot-header-info h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.chatbot-status {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: statusPulse 1.5s infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.chatbot-close i {
    color: white;
    font-size: 1rem;
}

/* Zone des messages */
.chatbot-messages {
    padding: 20px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 120px;
    max-height: 300px;
    overflow-y: auto;
}

.chat-message {
    display: flex;
    gap: 12px;
    animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.chat-message.bot {
    align-self: flex-start;
}

.bot-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.bot-avatar i {
    color: white;
    font-size: 1.1rem;
}

.bot-avatar::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 6px;
    background: white;
    border-radius: 2px;
}

.bot-avatar::after {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: avatarAntenna 1.5s infinite;
}

@keyframes avatarAntenna {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.message-content {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
    background: white;
    color: #334155;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-bottom-left-radius: 4px;
}

.message-content p {
    margin: 0;
}

/* Zone des questions par catégories */
.chatbot-questions {
    padding: 15px;
    background: white;
    max-height: 280px;
    overflow-y: auto;
}

.questions-category {
    margin-bottom: 15px;
}

.questions-category:last-child {
    margin-bottom: 0;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    padding-left: 5px;
}

.category-title i {
    font-size: 0.8rem;
    color: #2563eb;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.q-btn {
    padding: 10px 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
}

.q-btn:hover {
    background: linear-gradient(135deg, #e0f2fe 0%, #cffafe 100%);
    border-color: #06b6d4;
    color: #0891b2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.2);
}

.q-btn:active {
    transform: translateY(0);
}

/* Bouton retour */
.back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: none;
    border-top: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: #2563eb;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: linear-gradient(135deg, #e0f2fe 0%, #cffafe 100%);
}

.back-btn i {
    font-size: 0.8rem;
}

/* Animation de réflexion - Robot stylé */
.thinking-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
    gap: 15px;
}

.thinking-robot-big {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.robot-body {
    position: relative;
    animation: robotFloat 2s ease-in-out infinite;
}

@keyframes robotFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Antennes du robot */
.robot-antenna-think {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: -5px;
    position: relative;
    z-index: 2;
}

.antenna-ball {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
    animation: antennaGlow 1s ease-in-out infinite;
}

.antenna-ball::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 12px;
    background: linear-gradient(to bottom, #94a3b8, #64748b);
    border-radius: 2px;
}

.antenna-ball:first-child {
    animation-delay: 0s;
}

.antenna-ball:last-child {
    animation-delay: 0.5s;
}

@keyframes antennaGlow {
    0%, 100% {
        box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(34, 197, 94, 1), 0 0 30px rgba(34, 197, 94, 0.5);
        transform: scale(1.2);
    }
}

/* Tête du robot - style casque tech */
.robot-head-think {
    width: 90px;
    height: 75px;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border-radius: 20px 20px 25px 25px;
    position: relative;
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        0 0 0 3px #334155;
    overflow: visible;
}

/* Visière / écran du robot */
.robot-head-think::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 8px;
    right: 8px;
    height: 35px;
    background: linear-gradient(180deg, #0c4a6e 0%, #0369a1 50%, #0284c7 100%);
    border-radius: 12px;
    box-shadow:
        inset 0 2px 10px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(14, 165, 233, 0.3);
}

/* Oreilles/côtés du robot */
.robot-head-think::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -8px;
    width: 8px;
    height: 30px;
    background: linear-gradient(180deg, #475569, #334155);
    border-radius: 4px 0 0 4px;
    box-shadow:
        106px 0 0 #475569,
        inset 2px 0 0 rgba(255, 255, 255, 0.1);
}

/* Conteneur des yeux */
.robot-eyes-container {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 2;
}

.robot-eye-think {
    width: 18px;
    height: 18px;
    background: radial-gradient(circle at 30% 30%, #67e8f9, #06b6d4);
    border-radius: 50%;
    position: relative;
    box-shadow:
        0 0 15px rgba(6, 182, 212, 0.8),
        0 0 30px rgba(6, 182, 212, 0.4),
        inset 0 -3px 6px rgba(0, 0, 0, 0.3);
    animation: eyeGlowPulse 1.5s ease-in-out infinite;
}

.robot-eye-think::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    opacity: 0.9;
}

.robot-eye-think::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #0e7490;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pupilMove 2s ease-in-out infinite;
}

.robot-eye-think.left::after {
    animation-delay: 0s;
}

.robot-eye-think.right::after {
    animation-delay: 0.1s;
}

@keyframes eyeGlowPulse {
    0%, 100% {
        box-shadow:
            0 0 10px rgba(6, 182, 212, 0.6),
            0 0 20px rgba(6, 182, 212, 0.3);
    }
    50% {
        box-shadow:
            0 0 20px rgba(6, 182, 212, 1),
            0 0 40px rgba(6, 182, 212, 0.6);
    }
}

@keyframes pupilMove {
    0%, 100% { transform: translate(-50%, -50%); }
    25% { transform: translate(-70%, -70%); }
    50% { transform: translate(-30%, -50%); }
    75% { transform: translate(-70%, -30%); }
}

/* Bouche / grille speaker */
.robot-mouth-think {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 12px;
    background: #1e293b;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0 6px;
    border: 2px solid #334155;
}

.robot-mouth-think span {
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #22c55e, #16a34a);
    border-radius: 2px;
    animation: speakerBar 0.4s ease-in-out infinite;
}

.robot-mouth-think span:nth-child(1) { animation-delay: 0s; height: 4px; }
.robot-mouth-think span:nth-child(2) { animation-delay: 0.1s; height: 8px; }
.robot-mouth-think span:nth-child(3) { animation-delay: 0.2s; height: 6px; }
.robot-mouth-think span:nth-child(4) { animation-delay: 0.3s; height: 10px; }
.robot-mouth-think span:nth-child(5) { animation-delay: 0.15s; height: 5px; }

@keyframes speakerBar {
    0%, 100% { opacity: 0.4; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Cou du robot */
.robot-neck {
    width: 30px;
    height: 15px;
    background: linear-gradient(180deg, #334155, #1e293b);
    margin: 0 auto;
    border-radius: 0 0 8px 8px;
    position: relative;
}

.robot-neck::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #475569;
    border-radius: 2px;
}

/* Bulles de réflexion */
.thinking-bubbles {
    position: absolute;
    right: -35px;
    top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.bubble {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.3), rgba(14, 165, 233, 0.2));
    border-radius: 50%;
    border: 2px solid rgba(6, 182, 212, 0.5);
    animation: bubbleFloat 1.5s ease-in-out infinite;
    backdrop-filter: blur(4px);
}

.bubble.b1 {
    width: 10px;
    height: 10px;
    animation-delay: 0s;
}

.bubble.b2 {
    width: 16px;
    height: 16px;
    animation-delay: 0.3s;
    margin-left: 8px;
}

.bubble.b3 {
    width: 22px;
    height: 22px;
    animation-delay: 0.6s;
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #06b6d4;
}

.bubble.b3::after {
    content: '?';
    animation: questionPulse 1s ease-in-out infinite;
}

@keyframes questionPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-5px) scale(1.1);
        opacity: 1;
    }
}

.thinking-label {
    font-size: 0.9rem;
    color: #475569;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: labelPulse 1.5s ease-in-out infinite;
}

@keyframes labelPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Message sans avatar (réponse seule) */
.message-content.solo {
    margin: 0;
    max-width: 100%;
    border-radius: 16px;
}

/* Responsive chatbot */
@media (max-width: 480px) {
    .chatbot-container {
        bottom: 15px;
        right: 15px;
    }

    .chatbot-toggle {
        width: 60px;
        height: 60px;
    }

    .robot-icon {
        width: 30px;
        height: 30px;
    }

    .robot-head {
        width: 30px;
        height: 24px;
    }

    .chatbot-window {
        width: calc(100vw - 30px);
        max-height: 80vh;
        bottom: 75px;
        right: 0;
    }

    .chatbot-messages {
        max-height: 200px;
    }

    .chatbot-questions {
        max-height: 250px;
    }

    .q-btn {
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    .thinking-container {
        padding: 20px 15px;
    }

    .robot-head-think {
        width: 75px;
        height: 62px;
    }

    .robot-eye-think {
        width: 14px;
        height: 14px;
    }

    .robot-eyes-container {
        gap: 14px;
    }

    .thinking-bubbles {
        right: -25px;
    }

    .thinking-label {
        font-size: 0.8rem;
    }
}
