/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
    background: #0a0a0a;
}

/* ===== NAVIGATION ===== */
/* ===== DROPDOWN MENU ===== */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid rgba(0, 188, 242, 0.2);
    border-radius: 10px;
    padding: 0.5rem 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    list-style: none;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(0, 188, 242, 0.3);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
}

.dropdown-menu li a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-menu li a:hover {
    background: rgba(0, 188, 242, 0.1);
    color: #00bcf2;
}

.dropdown-menu li a::after {
    display: none;
}

/* Version mobile */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        padding-left: 1rem;
        margin-top: 0;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown-menu li a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 188, 242, 0.1);
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 30px rgba(0, 188, 242, 0.1);
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.nav-logo span {
    color: #00bcf2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0078d4, #00bcf2);
    transition: width 0.3s ease;
}

.nav-menu li a:hover {
    color: #00bcf2;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #00bcf2;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #00bcf2;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 188, 242, 0.5);
    animation: particleFloat 8s infinite;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,120,212,0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: pulse 4s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,188,242,0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    animation: pulse 5s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
    max-width: 1200px;
}

.logo-container {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.network-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
}

h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.tagline {
    font-size: 1.5rem;
    color: #00bcf2;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.phone-number {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: #00bcf2;
}

.client-type-selector {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.toggle-container {
    display: flex;
    position: relative;
    background: linear-gradient(135deg, #0078d4, #00bcf2);
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 5px 20px rgba(0, 188, 242, 0.4);
}

.toggle-background {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(50% - 5px);
    height: calc(100% - 10px);
    background: #1a2332;
    border-radius: 45px;
    transition: transform 0.3s ease;
    z-index: 1;
}

.toggle-container.right .toggle-background {
    transform: translateX(100%);
}

.toggle-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.toggle-option.active {
    color: #fff;
}

.toggle-option svg {
    width: 18px;
    height: 18px;
    transition: stroke 0.3s ease;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #0078d4 0%, #00bcf2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,120,212,0.3);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,120,212,0.5);
}

/* ===== COMMON ELEMENTS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 3rem;
    position: relative;
    display: block;
    left: 50%;
    transform: translateX(-50%);
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0078d4, #00bcf2);
    border-radius: 2px;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: center;
}

.about-text h3 {
    color: #00bcf2;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 188, 242, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 188, 242, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #00bcf2;
    background: rgba(0, 188, 242, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00bcf2;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tech-item {
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.1), rgba(0, 188, 242, 0.1));
    padding: 1.5rem;
    border-radius: 15px;
    color: #fff;
    text-align: center;
    font-weight: 600;
    border: 1px solid rgba(0, 188, 242, 0.3);
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: scale(1.05);
    border-color: #00bcf2;
    box-shadow: 0 10px 30px rgba(0, 188, 242, 0.3);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,188,242,0.2);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #00bcf2;
    box-shadow: 0 20px 40px rgba(0,188,242,0.2);
    background: rgba(255,255,255,0.08);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #00bcf2;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Note de services améliorée */
.services-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.15), rgba(0, 188, 242, 0.15));
    border: 2px solid #00bcf2;
    border-radius: 20px;
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 40px rgba(0, 188, 242, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.services-note::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 188, 242, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.services-note-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.icon-wrapper {
    background: linear-gradient(135deg, #0078d4, #00bcf2);
    border-radius: 50%;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 188, 242, 0.5);
    animation: bounce 2s ease-in-out infinite;
    flex-shrink: 0;
}

.services-note svg {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.services-note strong {
    color: #00bcf2;
    font-weight: 700;
    font-size: 1.15rem;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}
/* ===== PRICING SECTION ===== */
.pricing {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.pricing-intro {
    text-align: center;
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.pricing-approach {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(0, 188, 242, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    text-align: center;
}

.pricing-approach h3 {
    color: #00bcf2;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.pricing-approach p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.factor-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(0, 188, 242, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.factor-card:hover {
    transform: translateY(-10px);
    border-color: #00bcf2;
    box-shadow: 0 20px 40px rgba(0, 188, 242, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.factor-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.factor-card h4 {
    color: #00bcf2;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.factor-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

.pricing-cta {
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.1), rgba(0, 188, 242, 0.1));
    border: 2px solid #00bcf2;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.pricing-cta h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pricing-cta p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ===== CERTIFICATIONS SECTION ===== */
.certifications {
    padding: 5rem 2rem;
    background: #0a0a0a;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cert-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,188,242,0.1), transparent);
    transition: left 0.5s ease;
}

.cert-card:hover::before {
    left: 100%;
}

.cert-card:hover {
    border-color: #0078d4;
    transform: scale(1.05);
}

.cert-badge {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.cert-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.cert-card p {
    color: #00bcf2;
    font-weight: 600;
}
/* ===== REMOTE SUPPORT SECTION ===== */
.remote-support {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.remote-intro {
    text-align: center;
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.remote-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.remote-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(0, 188, 242, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.remote-card:hover {
    border-color: #00bcf2;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 188, 242, 0.15);
}

.remote-icon {
    margin-bottom: 1.5rem;
}

.remote-card h3 {
    color: #00bcf2;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.remote-steps {
    text-align: left;
    color: #ccc;
    padding-left: 1.5rem;
    line-height: 2;
}

.remote-steps li {
    margin-bottom: 0.5rem;
}

.remote-steps li::marker {
    color: #00bcf2;
    font-weight: bold;
}

.download-info {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.download-btn.windows {
    background: linear-gradient(135deg, #0078d4, #00bcf2);
    color: white;
}

.download-btn.mac {
    background: linear-gradient(135deg, #333, #555);
    color: white;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 188, 242, 0.3);
}

.download-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .remote-cards {
        grid-template-columns: 1fr;
    }
    
    .remote-card {
        padding: 2rem;
    }
}
/* ===== CONTACT SECTION ===== */
.contact {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(0, 188, 242, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 188, 242, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00bcf2;
    background: rgba(0, 188, 242, 0.05);
    box-shadow: 0 0 20px rgba(0, 188, 242, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0078d4, #00bcf2);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 120, 212, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 120, 212, 0.5);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-success {
    background: rgba(0, 188, 242, 0.1);
    border: 2px solid #00bcf2;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.form-success h3 {
    color: #00bcf2;
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem;
}

.form-success p {
    color: #ccc;
    font-size: 1.1rem;
}

.contact-info {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    color: #ccc;
    font-size: 1.1rem;
}

.contact-item strong {
    color: #00bcf2;
    display: block;
    margin-bottom: 0.5rem;
}

.mail-link {
    color: #ccc;
    font-size: 1.1rem;
    text-decoration: none;
}

.mail-link:hover {
    color: #00bcf2;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(0, 188, 242, 0.3);
    padding: 1.5rem 2rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    color: #00bcf2;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-text p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-text a {
    color: #00bcf2;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #0078d4, #00bcf2);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 188, 242, 0.3);
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 188, 242, 0.5);
}

.cookie-btn.decline {
    background: rgba(255, 255, 255, 0.05);
    color: #ccc;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.5rem 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}
/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0078d4, #00bcf2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 188, 242, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 188, 242, 0.6);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}
/* ===== FOOTER ===== */
footer {
    background: #000;
    padding: 2rem;
    text-align: center;
    color: #666;
}
/* ===== CGV ====== */
        .cgv {
            min-height: 100vh;
            background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
            padding: 120px 2rem 5rem;
        }

        .cgv-container {
            max-width: 1000px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid rgba(0, 188, 242, 0.2);
            border-radius: 20px;
            padding: 3rem;
            backdrop-filter: blur(10px);
        }

        .cgv-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid rgba(0, 188, 242, 0.2);
        }

        .cgv-header h1 {
            color: #fff;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            animation: fadeInDown 0.6s ease-out;
        }

        .cgv-header p {
            color: #00bcf2;
            font-size: 1.1rem;
            animation: fadeInUp 0.6s ease-out 0.2s both;
        }

        .cgv-article {
            margin-bottom: 2.5rem;
            animation: fadeInUp 0.6s ease-out both;
            scroll-margin-top: 100px;
        }

        .cgv-article h2 {
            color: #00bcf2;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            position: relative;
            transform: none;
            left: 0;
            line-height: 1.4;
        }

        .cgv-article h2::after {
            display: none;
        }

        .cgv-article h2 .article-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #0078d4, #00bcf2);
            border-radius: 8px;
            font-size: 0.85rem;
            color: white;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .cgv-article p {
            color: #ccc;
            line-height: 1.8;
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .cgv-article ul {
            list-style: none;
            padding-left: 0;
            margin: 1rem 0;
        }

        .cgv-article ul li {
            color: #ccc;
            line-height: 1.8;
            font-size: 1rem;
            margin-bottom: 0.8rem;
            padding-left: 2rem;
            position: relative;
        }

        .cgv-article ul li::before {
            content: "•";
            position: absolute;
            left: 0.5rem;
            color: #00bcf2;
            font-weight: bold;
            font-size: 1.5rem;
        }

        .highlight-box {
            background: linear-gradient(135deg, rgba(0, 120, 212, 0.1), rgba(0, 188, 242, 0.1));
            border-left: 4px solid #00bcf2;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }

        .highlight-box p {
            margin-bottom: 0;
        }

        .company-info {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(0, 188, 242, 0.3);
            border-radius: 15px;
            padding: 1.5rem;
            margin: 2rem 0;
            text-align: center;
        }

        .company-info h3 {
            color: #00bcf2;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .company-info p {
            color: #ccc;
            font-size: 1rem;
            margin: 0.5rem 0;
        }

        .company-info strong {
            color: #fff;
        }

        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 2rem;
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(0, 188, 242, 0.3);
            border-radius: 10px;
            color: #00bcf2;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .back-button:hover {
            background: rgba(0, 188, 242, 0.1);
            border-color: #00bcf2;
            transform: translateX(-5px);
        }

        @media (max-width: 768px) {
            .cgv {
                padding: 100px 1rem 3rem;
            }

            .cgv-container {
                padding: 2rem 1.5rem;
            }

            .cgv-header h1 {
                font-size: 1.8rem;
            }

            .cgv-article h2 {
                font-size: 1.2rem;
            }

            .cgv-article p,
            .cgv-article ul li {
                font-size: 0.95rem;
            }
        }
/* ===== PRIVICY POLICY ====== */
        .privacy-policy {
            min-height: 100vh;
            background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
            padding: 120px 2rem 5rem;
        }

        .privacy-container {
            max-width: 900px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid rgba(0, 188, 242, 0.2);
            border-radius: 20px;
            padding: 3rem;
            backdrop-filter: blur(10px);
        }

        .privacy-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid rgba(0, 188, 242, 0.2);
        }

        .privacy-header h1 {
            color: #fff;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            animation: fadeInDown 0.6s ease-out;
        }

        .privacy-header p {
            color: #00bcf2;
            font-size: 1.1rem;
            animation: fadeInUp 0.6s ease-out 0.2s both;
        }

        .privacy-section {
            margin-bottom: 2.5rem;
            animation: fadeInUp 0.6s ease-out both;
        }

        .privacy-section:nth-child(2) { animation-delay: 0.1s; }
        .privacy-section:nth-child(3) { animation-delay: 0.2s; }
        .privacy-section:nth-child(4) { animation-delay: 0.3s; }
        .privacy-section:nth-child(5) { animation-delay: 0.4s; }
        .privacy-section:nth-child(6) { animation-delay: 0.5s; }
        .privacy-section:nth-child(7) { animation-delay: 0.6s; }
        .privacy-section:nth-child(8) { animation-delay: 0.7s; }

        .privacy-section h2 {
            color: #00bcf2;
            font-size: 1.6rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            transform: none;
            left: 0;
        }

        .privacy-section h2::after {
            display: none;
        }

        .privacy-section h2 .section-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #0078d4, #00bcf2);
            border-radius: 50%;
            font-size: 1rem;
            color: white;
            flex-shrink: 0;
        }

        .privacy-section p {
            color: #ccc;
            line-height: 1.8;
            font-size: 1.05rem;
            margin-bottom: 1rem;
        }

        .privacy-section ul {
            list-style: none;
            padding-left: 0;
            margin-top: 1rem;
        }

        .privacy-section ul li {
            color: #ccc;
            line-height: 1.8;
            font-size: 1.05rem;
            margin-bottom: 0.8rem;
            padding-left: 2rem;
            position: relative;
        }

        .privacy-section ul li::before {
            content: "→";
            position: absolute;
            left: 0;
            color: #00bcf2;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .contact-box {
            background: linear-gradient(135deg, rgba(0, 120, 212, 0.1), rgba(0, 188, 242, 0.1));
            border: 2px solid #00bcf2;
            border-radius: 15px;
            padding: 1.5rem;
            margin-top: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-box svg {
            flex-shrink: 0;
        }

        .contact-box a {
            color: #00bcf2;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-box a:hover {
            color: #fff;
        }

        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 2rem;
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(0, 188, 242, 0.3);
            border-radius: 10px;
            color: #00bcf2;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .back-button:hover {
            background: rgba(0, 188, 242, 0.1);
            border-color: #00bcf2;
            transform: translateX(-5px);
        }

        @media (max-width: 768px) {
            .privacy-policy {
                padding: 100px 1rem 3rem;
            }

            .privacy-container {
                padding: 2rem 1.5rem;
            }

            .privacy-header h1 {
                font-size: 2rem;
            }

            .privacy-section h2 {
                font-size: 1.3rem;
            }

            .privacy-section p,
            .privacy-section ul li {
                font-size: 0.95rem;
            }
        }

/* ===== ANIMATIONS ===== */
@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

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

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

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

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        border-bottom: 1px solid rgba(0, 188, 242, 0.1);
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }

    .hero-phone {
        flex-direction: column;
        gap: 0.5rem;
    }

    .phone-number {
        font-size: 1.4rem;
    }

    .client-type-selector {
        flex-direction: row;
        width: auto;
        max-width: none;
    }

    .toggle-option {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .toggle-option svg {
        width: 16px;
        height: 16px;
    }

    .services-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }

    .services-note {
        padding: 1.5rem 1.5rem;
        font-size: 1rem;
        flex-direction: column;
    }

    .services-note strong {
        font-size: 1.05rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-stack {
        grid-template-columns: 1fr;
    }

    .pricing-intro {
        font-size: 1rem;
    }

    .pricing-approach,
    .pricing-cta {
        padding: 2rem;
    }

    .pricing-approach h3 {
        font-size: 1.5rem;
    }

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

    .contact-form {
        padding: 1.5rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ===== CAPTCHA STYLES ===== */
.captcha-container {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.08), rgba(0, 188, 242, 0.08));
    border: 2px solid rgba(0, 188, 242, 0.3);
    border-radius: 15px;
    position: relative;
}

.captcha-label {
    display: block;
    color: #00bcf2;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.captcha-label svg {
    flex-shrink: 0;
}

.captcha-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.captcha-question-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 2px solid rgba(0, 188, 242, 0.2);
    min-width: 200px;
}

.captcha-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    min-width: 35px;
    text-align: center;
}

.captcha-operator,
.captcha-equals {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00bcf2;
}

.captcha-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
    min-width: 150px;
}

#captchaAnswer {
    width: 100px;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 188, 242, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    font-family: inherit;
    transition: all 0.3s ease;
}

#captchaAnswer:focus {
    outline: none;
    border-color: #00bcf2;
    background: rgba(0, 188, 242, 0.1);
    box-shadow: 0 0 20px rgba(0, 188, 242, 0.2);
}

.captcha-refresh {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 188, 242, 0.3);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.captcha-refresh:hover {
    background: rgba(0, 188, 242, 0.2);
    border-color: #00bcf2;
    transform: rotate(180deg);
}

.captcha-refresh svg {
    width: 20px;
    height: 20px;
    stroke: #00bcf2;
}

.captcha-error {
    display: none;
    margin-top: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 77, 77, 0.1);
    border: 2px solid rgba(255, 77, 77, 0.3);
    border-radius: 8px;
    color: #ff6b6b;
    font-size: 0.9rem;
    font-weight: 600;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Responsive */
@media (max-width: 768px) {
    .captcha-content {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha-question-box {
        justify-content: center;
        min-width: auto;
    }

    .captcha-input-wrapper {
        justify-content: space-between;
        min-width: auto;
    }

    #captchaAnswer {
        flex: 1;
    }
}