@charset "UTF-8";        
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #0a0a0a;
            color: #fff;
            min-height: 100vh;
        }

        /* Fond avec effet de grille */
        .grid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(79, 70, 229, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(79, 70, 229, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 0;
        }

        /* Header */
        .header {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(79, 70, 229, 0.2);
            padding: 1rem 5%;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
        }

        .delnet-logo-container {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .delnet-logo {
            height: 60px;
            width: auto;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .delnet-logo:hover {
            transform: scale(1.05);
        }

        .insta-btn {
            height: 40px;
            width: auto;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .insta-btn:hover {
            transform: scale(1.05);
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
        }

        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(79, 70, 229, 0.6);
        }

        .gradient-btn {
            font-size: 1.2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-decoration: none;
            padding: 0.6rem 1.2rem;
            border: 2px solid;
            border-image: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%) 1;
            border-radius: 10px;
            transition: all 0.3s ease;
            display: inline-block;
            }

            .gradient-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
            }

        /* Navigation */
        .nav-menu {
            display: flex;
            gap: 0.5rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-menu li a {
            display: block;
            padding: 0.7rem 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            border-radius: 10px;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            white-space: nowrap;
        }

        .nav-menu li a:hover,
        .nav-menu li a.active {
            background: rgba(79, 70, 229, 0.2);
            color: #fff;
        }

        .mobile-menu-btn {
            display: none;
            background: rgba(79, 70, 229, 0.2);
            border: 1px solid rgba(79, 70, 229, 0.3);
            color: white;
            padding: 0.6rem 1rem;
            border-radius: 10px;
            font-size: 1.2rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            position: relative;
            z-index: 1;
            max-width: 1400px;
            margin: 0 auto;
            padding: 6rem 5% 4rem;
            text-align: center;
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #fff 0%, #4f46e5 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease;
        }

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

        .hero-subtitle {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1rem;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .hero-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .hero-profile {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .profile-image-container {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid rgba(79, 70, 229, 0.5);
            box-shadow: 0 10px 40px rgba(79, 70, 229, 0.4);
            background: rgba(255, 255, 255, 0.05);
        }

        .profile-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .profile-content {
            text-align: left;
        }

        .hero-description-box {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(79, 70, 229, 0.3);
            border-radius: 20px;
            padding: 2rem 3rem;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        /* Container */
        .container {
            position: relative;
            z-index: 1;
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem 5% 6rem;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1rem;
            text-align: center;
            background: linear-gradient(135deg, #fff 0%, #4f46e5 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 4rem;
        }

        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 5rem;
        }

        .card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(79, 70, 229, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s ease;
        }

        .card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(79, 70, 229, 0.5);
            box-shadow: 0 20px 60px rgba(79, 70, 229, 0.3);
        }

        .card-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: inline-block;
        }

        .card-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #fff;
        }

        .card-content {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        .card-content ul {
            list-style: none;
            padding: 0;
            margin-top: 1rem;
        }

        .card-content li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
        }

        .card-content li::before {
            content: "▸";
            position: absolute;
            left: 0;
            color: #4f46e5;
        }

        /* Procedure Cards */
        .procedure-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(79, 70, 229, 0.2);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
            cursor: pointer;
        }

        .procedure-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(79, 70, 229, 0.5);
            box-shadow: 0 20px 60px rgba(79, 70, 229, 0.3);
        }

        .procedure-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .procedure-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            color: #fff;
        }

        .procedure-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.5;
            margin-bottom: 1rem;
        }

        .procedure-badge {
            display: inline-block;
            padding: 0.4rem 0.8rem;
            background: rgba(79, 70, 229, 0.2);
            border: 1px solid rgba(79, 70, 229, 0.4);
            border-radius: 20px;
            font-size: 0.85rem;
            color: #a5b4fc;
            font-weight: 600;
        }

        /* Timeline */
        .timeline {
            position: relative;
            padding-left: 2rem;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, #4f46e5, #7c3aed);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 3rem;
            padding-left: 2rem;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2.5rem;
            top: 0.5rem;
            width: 12px;
            height: 12px;
            background: #4f46e5;
            border-radius: 50%;
            border: 3px solid #0a0a0a;
        }

        .timeline-date {
            color: #4f46e5;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .timeline-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.5rem;
        }

        .timeline-subtitle {
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 0.5rem;
        }

        .timeline-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        /* Footer */
        .footer {
            background: rgba(10, 10, 10, 0.95);
            border-top: 1px solid rgba(79, 70, 229, 0.2);
            padding: 3rem 5%;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-text {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .footer-link {
            color: #4f46e5;
            text-decoration: none;
            font-weight: 600;
        }

        .footer-link:hover {
            color: #7c3aed;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

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

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

            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .nav-menu.active {
                display: flex;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
            }

            .hero-profile {
                flex-direction: column;
                text-align: center;
            }

            .profile-content {
                text-align: center;
            }

            .profile-image-container {
                width: 150px;
                height: 150px;
            }

            .hero-description-box {
                padding: 1.5rem 2rem;
            }

            .delnet-logo {
                height: 30px;
            }

        }