 
:root {
    --bg-color: #0f0f0f;
    --card-bg: rgba(255, 255, 255, 0.05);
    --primary-color: #f2ce8e;
    --text-color: #ffffff;
    --text-devis: #f2ce8e;
    --text-dim: #b3b3b3;
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }
body { background: var(--bg-color); color: var(--text-color); line-height: 1.6; overflow-x: hidden; }

 
#bg-particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }
.floating-icon { position: absolute; color: var(--primary-color); filter: blur(1px); animation: floatAnim linear infinite; }

 
header {
    height: 120px;  
    padding: 0 3%;
    background: rgba(15, 15, 15, 0.6);  
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

nav {
    width: 100%;
    max-width: 1400px;  
    margin: 0 auto;
    display: flex;
    justify-content: space-between;  
    align-items: center;
    position: relative;
}

 
.nav-group {
    display: flex;
    align-items: center;
    gap: 15px;  
    list-style: none;
    flex: 1;  
}

 
.nav-group.right {
    justify-content: flex-end;
}

 
.logo-container {
     
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    
     
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    
     
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-petit {
    max-width: 150px;  
    height: auto;
    
     
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
    
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


 


 
.logo-container:hover .hero-petit {
     
    transform: scale(1.1);
     
    filter: drop-shadow(0 0 15px rgba(242, 206, 142, 0.3));
}

 
@media (max-width: 768px) {
    .hero-petit {
        max-width: 110px;  
    }

    .logo-container {
        max-width: 350px
    }
}
 

 
.nav-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;  
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);  
    letter-spacing: 0.5px;
    
     
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    
     
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    
    backdrop-filter: blur(10px);
    overflow: hidden;  
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-btn i {
    font-size: 0.9rem;
    color: var(--primary-color);  
    opacity: 0.8;
    transition: 0.4s;
}

 
.nav-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(242, 206, 142, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 
                inset 0 0 20px rgba(242, 206, 142, 0.05);  
}

 
.nav-btn:hover i {
    opacity: 1;
    transform: translateY(-2px);
    filter: drop-shadow(0 0 5px var(--primary-color));
}

 
.nav-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    transition: 0.4s ease;
    transform: translateX(-50%);
}

.nav-btn:hover::after {
    width: 60%;  
}

 
.nav-btn.cta-glow {
    background: rgba(242, 206, 142, 0.05);
    border: 1px solid rgba(242, 206, 142, 0.3);
    color: var(--primary-color);
    padding: 12px 28px;  
    box-shadow: 0 0 20px rgba(242, 206, 142, 0.05);  
}

.nav-btn.cta-glow i {
    opacity: 1;
}

 
.nav-btn.cta-glow:hover {
    background: var(--primary-color);
    color: #000;  
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(242, 206, 142, 0.4);  
}

.nav-btn.cta-glow:hover i {
    color: #000;  
    transform: rotate(-10deg) scale(1.1);  
    filter: none;
}

 
.nav-btn.cta-glow::after {
    display: none;
}

 
section { max-width: 1100px; margin: 0 auto; padding: 80px 20px; }
.hero { height: auto; text-align: center; }
.hero-content { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.hero-logo { 
    max-width: 400px; 
    border-radius: 20px; 
    box-shadow: 0 0 25px rgba(242, 206, 142, 0.3);
    animation: fadeInUp 0.8s ease forwards;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #fffaf0;
    text-shadow: 0 0 8px rgba(242, 206, 142, 0.3);
    animation: neonPulse 4s infinite alternate ease-in-out, fadeInUp 0.8s ease forwards, slowFloat 5s infinite ease-in-out;
    animation-delay: 0s, 0.3s, 0.8s;
}

.hero-bar { width: 90px; height: 3px; background: var(--primary-color); border-radius: 10px; box-shadow: 0 0 15px var(--primary-color); animation: fadeInUp 0.7s ease forwards; animation-delay: 1s; }

.hero p { max-width: 700px; font-size: 1.15rem; color: var(--text-dim); }
.hero p strong { color: #fff; }

 
.trust-bar {
    padding: 0;
    max-width: 1450px;  
    width: 95%;         
    margin: -40px auto 80px; 
    position: relative;
    z-index: 10;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);  
    background: rgba(20, 20, 20, 0.6);  
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;  
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);  
    overflow: hidden;  
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 25px 10px;  
    position: relative;
    transition: all 0.3s ease;
    cursor: default;
}

 
.trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

 
.trust-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.trust-item:hover .icon-box i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px var(--primary-color));
}

 
.icon-box {
    width: 65px;   
    height: 65px;  
    background: rgba(242, 206, 142, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(242, 206, 142, 0.2);
    transition: 0.3s;
    flex-shrink: 0;  
}

.icon-box i {
    font-size: 1.6rem;  
    color: var(--primary-color);
    transition: 0.3s;
}

 
.text-box {
    display: flex;
    flex-direction: column;
}

.trust-title {
    font-size: 1.05rem;  
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;  
}

.trust-desc {
    font-size: 0.95rem;  
    color: var(--text-dim);
    line-height: 1.3;
}

 
@media (max-width: 900px) {
    .trust-bar {
        margin: 0 auto 60px;  
        padding: 0 20px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr 1fr;  
    }
    
    .trust-item {
        padding: 20px;
        justify-content: flex-start;  
    }
    
     
    .trust-item:nth-child(2)::after { display: none; }  
    .trust-item:nth-child(1), .trust-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);  
    }
}

@media (max-width: 600px) {
    .trust-grid {
        grid-template-columns: 1fr;  
    }
    
    .trust-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .trust-item::after { display: none; }  
    .trust-item:last-child { border-bottom: none; }
}

 
.services {
    position: relative;
    padding-top: 100px;  
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.section-header .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

 
.section-header .highlight::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    margin-top: 5px;
    box-shadow: 0 0 10px var(--primary-color);
    border-radius: 10px;
}

.section-header p {
    color: var(--text-dim);
    font-size: 1.1rem;
}

 
.services-grid {
    display: grid;
     
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); 
    gap: 40px;
    padding: 0 20px;
}

 
.service-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;  
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);  
    display: flex;
    flex-direction: column;
    align-items: flex-start;  
    text-align: left;
}

 
.service-card:hover {
    transform: translateY(-15px);
    border-color: rgba(242, 206, 142, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(242, 206, 142, 0.05) inset;  
}

 
.card-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);  
    transition: 0.4s;
    z-index: 0;
    font-family: 'Segoe UI', sans-serif;  
}

.service-card:hover .card-number {
    color: rgba(242, 206, 142, 0.05);  
    transform: scale(1.1) translate(-10px, 10px);
}

 
.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(242, 206, 142, 0.1);
    border-radius: 15px;  
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(242, 206, 142, 0.1);
    z-index: 1;
    transition: 0.4s;
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.service-card:hover .card-icon {
    background: var(--primary-color);
    box-shadow: 0 0 20px rgba(242, 206, 142, 0.4);
    transform: rotate(-5deg);  
}

.service-card:hover .card-icon i {
    color: #000;  
}

 
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    z-index: 1;
    color: #fff;
}

.service-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 25px;
    z-index: 1;
    line-height: 1.6;
}

 
.card-features {
    list-style: none;
    z-index: 1;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.card-features li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

 
@media (max-width: 768px) {
    .section-header h2 { font-size: 2rem; }
    .card-number { font-size: 6rem; }
    .services-grid { padding: 0; }
}
 
.form-section {
    padding: 100px 20px 80px;
    max-width: 900px;  
    margin: 0 auto;
}

.form-container {
    background: rgba(30, 30, 30, 0.4);  
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;  
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

 
.form-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.system-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(242, 206, 142, 0.1);
    border: 1px solid rgba(242, 206, 142, 0.2);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(242, 206, 142, 0.1);
}

.pulse-dot {
    width: 8px; height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: pulse 2s infinite;
}

.form-header h1 {
    font-size: 3rem;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -1px;
}

.form-header .highlight {
    color: transparent;
    -webkit-text-stroke: 1px var(--primary-color);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 20px rgba(242, 206, 142, 0.3);
}

.tech-subtitle {
    font-family: 'Courier New', Courier, monospace;
    color: var(--text-dim);
    font-size: 0.95rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-subtitle .prompt { color: var(--primary-color); margin-right: 10px; font-weight: bold; }

 
.form-block {
    margin-bottom: 40px;  
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 40px;
}

.form-block:last-child { border-bottom: none; padding-bottom: 0; }

.form-block h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;  
}

.form-group {
    margin-bottom: 25px;  
}

 
.form-group label {
    display: block;
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.07);  
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    appearance: none;
}

 
.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f2ce8e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    cursor: pointer;
}

.form-group select option { background-color: #1a1a1a; color: #fff; padding: 10px; }

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(242, 206, 142, 0.1);
}

 
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.checkbox-card {
    position: relative;
    cursor: pointer;
    perspective: 1000px;
}

.checkbox-card input { position: absolute; opacity: 0; cursor: pointer; }

.checkbox-card .card-content {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 150px;
}

.checkbox-card i {
    font-size: 2rem;
    color: #555;
    margin-bottom: 15px;
    transition: 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.checkbox-card span {
    font-size: 0.9rem;
    color: #aaa;
    font-weight: 500;
}

.card-price {
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: #888;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

 
.checkbox-card:hover .card-content {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.checkbox-card:hover i { color: #fff; transform: scale(1.1) rotate(-5deg); }
.checkbox-card:hover .card-price { color: #fff; border-color: rgba(255, 255, 255, 0.2); }

 
.checkbox-card input:checked + .card-content {
    background: linear-gradient(145deg, rgba(242, 206, 142, 0.15) 0%, rgba(20, 20, 20, 0.8) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(242, 206, 142, 0.2), inset 0 0 15px rgba(242, 206, 142, 0.05);
    transform: translateY(-3px);
}

.checkbox-card input:checked + .card-content i {
    color: var(--primary-color);
    filter: drop-shadow(0 0 8px var(--primary-color));
    transform: scale(1.1);
}

.checkbox-card input:checked + .card-content span { color: #fff; text-shadow: 0 0 10px rgba(0,0,0,0.5); }

.checkbox-card input:checked + .card-content .card-price {
    background: var(--primary-color);
    color: #000;
    font-weight: bold;
}

 
.checkbox-card input:checked + .card-content::before {
    content: '';
    position: absolute;
    top: -10px; right: -10px; width: 30px; height: 30px;
    background: var(--primary-color);
    transform: rotate(45deg);
    box-shadow: 0 0 10px var(--primary-color);
}

 
@media (max-width: 768px) {
    .form-container { padding: 30px 20px; }
    .input-grid { grid-template-columns: 1fr; gap: 20px; }  
    .checkbox-grid { grid-template-columns: 1fr 1fr; }  
    .form-header h1 { font-size: 2.2rem; }
}

 
@keyframes floatAnim { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-20px) rotate(10deg); } }
@keyframes slowFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes neonPulse { from { text-shadow: 0 0 8px rgba(242, 206, 142, 0.3); } to { text-shadow: 0 0 15px rgba(242, 206, 142, 0.5); } }

.reveal {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
    transition: 1s ease;
}

.reveal.active {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

 
footer { text-align: center; padding: 60px 20px; border-top: 1px solid var(--glass-border); color: var(--text-dim); }
.footer-bottom { margin-top: 20px; font-size: 0.8rem; opacity: 0.6; }



@media (max-width: 768px) {

     
    header {
        height: 100px !important;  
        padding: 0 20px;
    }

    nav {
        justify-content: center;  
    }

    .hero-petit {
        max-width: 120px;  
        top: 50%;
    }

    .nav-links {
        display: none;  
    }

     
    section {
        padding: 60px 20px;  
    }

    .hero {
        min-height: 70vh;
    }

    .hero-content {
        gap: 20px;  
    }

    .hero h1 {
        font-size: 1.8rem !important;  
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

     
    .services-grid {
        grid-template-columns: 1fr !important;  
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

}
     


 

.pricing-container {
    max-width: 1000px;
     
    margin: 80px auto 0; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 0 20px;
}

 
.base-offer {
    position: relative;
    width: 100%;
    background: radial-gradient(circle at top right, rgba(30,30,30,0.9), rgba(15,15,15,0.95));
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(242, 206, 142, 0.15);  
    display: grid;
    grid-template-columns: 1.2fr 1.5fr;  
}

 
.glow-effect {
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(242, 206, 142, 0.1) 0%, transparent 70%);
    animation: spinRight 20s linear infinite;
    z-index: 0;
    pointer-events: none;
}

.base-header {
    background: rgba(242, 206, 142, 0.05);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
    border-right: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
}

.base-tag {
    background: var(--primary-color);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.7rem;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.base-header h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.base-price {
    font-size: 4.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 20px rgba(242, 206, 142, 0.5);
    line-height: 1;
}

.base-price span {
    font-size: 2rem;
    color: var(--primary-color);
    vertical-align: top;
}

.base-content {
    padding: 40px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.base-features {
    list-style: none;
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;  
    gap: 15px;
}

.base-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #ddd;
}

.base-features li i {
    color: var(--primary-color);
}

.base-footer {
    position: absolute;
    bottom: 20px;
    right: 40px;
    font-size: 0.8rem;
    color: var(--primary-color);
    opacity: 0.8;
}

 
.pricing-divider {
    width: 100%;
    text-align: center;
    position: relative;
    margin: 20px 0;
}

.pricing-divider span {
    background: var(--bg-color);
    padding: 0 20px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    position: relative;
    z-index: 2;
}

.pricing-divider .line {
    position: absolute;
    top: 50%; left: 0; width: 100%; height: 1px;
    background: rgba(255,255,255,0.1);
    z-index: 1;
}

 
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
}

.option-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 15px;
    padding: 30px 25px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

 
.opt-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(255,255,255,0.05);
    padding: 8px 15px;
    border-bottom-left-radius: 15px;
    border-left: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
}

.opt-badge small { font-size: 0.7rem; opacity: 0.8; font-weight: 400; }

.option-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-5px);
    border-color: rgba(242, 206, 142, 0.3);
}

.option-card:hover .opt-badge {
    background: var(--primary-color);
    color: #000;  
}

.opt-icon {
    width: 50px; height: 50px;
    background: rgba(242, 206, 142, 0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(242, 206, 142, 0.15);
}

.opt-icon i { color: var(--primary-color); font-size: 1.4rem; }

.option-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: #fff; }
.option-card p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.5; }

 
.pricing-cta {
    text-align: center;
    padding: 80px 20px 80px;  
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.cta-content h2 span {
    color: var(--primary-color);
     
    text-shadow: 0 0 15px rgba(242, 206, 142, 0.4);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 40px;
}

 
.btn-neon {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 20px 50px;
    border: 2px solid var(--primary-color);
    border-radius: 40px;  
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 0 15px rgba(242, 206, 142, 0.2);
}

 
.btn-neon::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--primary-color);
    transition: 0.4s;
    z-index: -1;
}

.btn-neon:hover {
    color: #000;  
    box-shadow: 0 0 50px rgba(242, 206, 142, 0.6);  
    transform: translateY(-5px);
}

.btn-neon:hover::before {
    left: 0;  
}

.btn-neon i {
    font-size: 1.2rem;
}

 
@media (max-width: 900px) {
    .base-offer { grid-template-columns: 1fr; text-align: center; }
    .base-header { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .base-features { grid-template-columns: 1fr; text-align: left; }
    .base-footer { position: relative; bottom: auto; right: auto; margin-top: 20px; }
    .pricing-container { margin-top: 120px; }
}

 
.tech-orb {
    position: relative;
    width: 160px;   
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
     
    animation: fadeInUp 0.8s ease forwards;
}

 
.orb-core {
    font-size: 3.5rem;
    color: #fff;
    z-index: 2;
     
    text-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--primary-color);
    animation: slowFloat 5s infinite ease-in-out;  
}

 
.orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid transparent;  
    box-shadow: 0 0 15px rgba(242, 206, 142, 0.1);  
}

 
.ring-1 {
    width: 100%;
    height: 100%;
    border-top: 2px solid var(--primary-color);  
    border-bottom: 2px solid var(--primary-color);  
    animation: spinRight 14s linear infinite;
}

 
.ring-2 {
    width: 70%;
    height: 70%;
    border-left: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    animation: spinLeft 10s linear infinite;
    opacity: 0.7;
}

 
@keyframes spinRight {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spinLeft {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(-360deg); }
}


 
.mobile-bottom-nav {
    display: none;
}

 
@media (max-width: 900px) {

     
    header {
        height: 80px;
        padding: 0 20px;
        justify-content: center;  
        background: rgba(15, 15, 15, 0.9);  
    }

     
    .nav-group, .burger-menu, .mobile-nav-overlay {
        display: none !important;
    }

     
    .hero-petit {
        max-width: 100px;
    }

     
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        
        position: fixed;
        bottom: 20px;  
        left: 50%;
        transform: translateX(-50%);
        width: 90%;  
        max-width: 400px;
        height: 70px;
        z-index: 2000;
        
         
        background: rgba(20, 20, 20, 0.85);  
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        
         
        border-radius: 50px;  
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);  
        
        padding: 0 10px;  
    }

     
    .mobile-nav-item {
        display: flex;
        flex-direction: column;  
        align-items: center;
        justify-content: center;
        text-decoration: none;
        flex: 1;  
        height: 100%;
        color: #666;  
        transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        border-radius: 40px;
        position: relative;
    }

    .nav-icon {
        font-size: 1.2rem;
        margin-bottom: 2px;
        transition: 0.3s;
         
        width: 40px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 20px;
    }

    .nav-label {
        font-size: 0.65rem;
        font-weight: 500;
        opacity: 0.8;
    }

     
     
    
    .mobile-nav-item.active {
        color: #fff !important;
    }

    .mobile-nav-item.active .nav-icon {
        background: var(--primary-color);  
        color: #000 !important;  
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(242, 206, 142, 0.4);  
    }
    
    .mobile-nav-item.active .nav-label {
        color: var(--primary-color);
        font-weight: 700;
    }

     
     
    body {
        padding-bottom: 100px;
    }
}

.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.real-select {
    display: none; 
}

.custom-select {
    position: relative;
    width: 100%;
}

.select-trigger {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-trigger:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.select-trigger i {
    font-size: 0.8rem;
    color: var(--primary-color);
    transition: 0.3s;
}

.custom-select.open .select-trigger {
    border-color: var(--primary-color);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: rgba(255, 255, 255, 0.12);
}

.custom-select.open .select-trigger i {
    transform: rotate(180deg);
}

.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border: 1px solid var(--primary-color);
    border-top: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    max-height: 250px;
    overflow-y: auto;
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.custom-option {
    display: block;
    padding: 12px 18px;
    font-size: 0.9rem;
    color: #ccc;
    cursor: pointer;
    transition: 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.custom-option:last-child {
    border-bottom: none;
}

.custom-option:hover, 
.custom-option.selected {
    background: rgba(242, 206, 142, 0.15); 
    color: #fff;
    padding-left: 25px; 
}

.extra-input-container {
    display: none; 
    margin-top: 10px;
    width: 100%;
    animation: fadeIn 0.3s ease;
}

.checkbox-card input:checked + .card-content .extra-input-container {
    display: block;
}

.small-input {
    width: 80% !important;
    padding: 5px 10px !important;
    font-size: 0.9rem !important;
    text-align: center;
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid var(--primary-color) !important;
    color: #fff !important;
    margin: 0 auto;
    border-radius: 8px;
}

.extra-input-container input {
    pointer-events: auto; 
}

.legal-links {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    text-align: center;
}

.legal-links a {
    color: inherit; 
    opacity: 0.7;
    text-decoration: none;
    margin: 0 10px;
    transition: opacity 0.3s;
}

.legal-links a:hover {
    opacity: 1;
    text-decoration: underline;
}


.legal-page-body {
    font-family: 'Arial', sans-serif; 
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
}

.legal-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
    text-align: center;
}

.legal-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 30px;
    color: #222;
    border-left: 4px solid #007bff; 
    padding-left: 10px;
}

.legal-content p, .legal-content ul {
    margin-bottom: 15px;
    text-align: justify;
}

.legal-content ul {
    padding-left: 20px;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    font-weight: bold;
    color: #555;
}


.gdpr-checkbox-group {
    margin: 15px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.gdpr-checkbox-group input {
    margin-top: 4px;
    cursor: pointer;
}

.gdpr-checkbox-group a {
    text-decoration: underline;
    color: inherit;
}

.partner-hero {
    text-align: center;
    padding: 40px 20px 10px; 
}

.partner-hero h1 {
    font-size: 3rem;
    margin-bottom: 5px;
    color: #fff;
    line-height: 1.1;
}

.partner-hero h1.shimmer-text {
    font-size: 3.5rem; 
    margin-bottom: 10px;
    font-weight: 800;
    background: linear-gradient(
        110deg, 
        #fff 20%, 
        var(--primary-color) 40%, 
        #fff 60%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 5s linear infinite;
}

@keyframes textShimmer {
    to {
        background-position: 200% center;
    }
}

.partner-hero h1 .highlight {
    background: linear-gradient(
        to right,
        #bf953f,
        #fcf6ba, 
        #b38728, 
        #fbf5b7, 
        #aa771c  
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: goldShine 5s linear infinite;
    filter: drop-shadow(0 0 2px rgba(242, 206, 142, 0.3));
}

@keyframes goldShine {
    to {
        background-position: 200% center;
    }
}

.partner-hero p {
    color: var(--text-dim);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
}

.partners-showcase {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 20px 80px; 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    justify-content: center;
}

.partner-card {
    background: radial-gradient(circle at top right, rgba(30, 30, 30, 0.6), rgba(15, 15, 15, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0; 
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(242, 206, 142, 0.15); 
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(242, 206, 142, 0.3);
}

.partner-header {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.partner-logo-wrapper {
    width: 60px;
    height: 60px;
    background: #000;
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(242, 206, 142, 0.1);
}

.partner-logo-wrapper i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.partner-title h2 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 5px;
}

.partner-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 20px;
}

.partner-body {
    padding: 30px 30px 10px;
}

.partner-body p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.partner-specs {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.partner-specs li {
    font-size: 0.85rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.partner-deal {
    margin: 20px 30px;
    background: rgba(242, 206, 142, 0.05);
    border: 1px dashed var(--primary-color);
    border-radius: 15px;
    padding: 20px;
    position: relative;
    text-align: center;
}

.deal-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #000;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    padding: 3px 15px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.deal-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 5px;
}

.deal-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.3;
}

.deal-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.deal-item strong {
    color: var(--primary-color);
    font-size: 1rem;
}

.deal-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.deal-note {
    font-size: 0.7rem;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

.btn-partner {
    display: block;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    text-decoration: none;
    padding: 15px;
    margin: 0 30px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
}

.btn-partner:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.partner-card.placeholder {
    border: 2px dashed rgba(255, 255, 255, 0.1);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    box-shadow: none;
}

.partner-card.placeholder .content-wrapper {
    text-align: center;
    padding: 40px;
}

.partner-card.placeholder i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    transition: 0.3s;
}

.partner-card.placeholder:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.partner-card.placeholder:hover i {
    color: var(--primary-color);
    transform: scale(1.1) rotate(90deg);
}

.btn-text {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.btn-text:hover {
    border-bottom-color: var(--primary-color);
}

@media (max-width: 768px) {
    .deal-content {
        flex-direction: column;
        gap: 20px;
    }
    .deal-divider {
        width: 50%;
        height: 1px;
    }
}

@media (min-height: 800px) and (min-width: 1024px) {
    .partner-hero {
        padding-top: 30px;
    }
}

.extra-input-container {
    display: none; 
    width: 100%;
    margin-top: 15px;
}

.checkbox-card input:checked + .card-content .extra-input-container {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.glass-input-small {
    width: 100%;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    color: #fff;
    text-align: center;
    font-family: 'Outfit', sans-serif;
}

.glass-input-small:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(242, 206, 142, 0.3);
}


.glass-input-small::-webkit-inner-spin-button, 
.glass-input-small::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}

.checkbox-card input[type="number"].glass-input-small,
#input-pages-supp {
    position: relative !important;
    opacity: 1 !important;
    cursor: text !important;
}


.final-cta-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 40px 20px 120px; 
    margin: 0 auto;
}

.btn-glass-glow {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: rgba(242, 206, 142, 0.05);
    color: var(--primary-color);
    border: 1px solid rgba(242, 206, 142, 0.4);
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(242, 206, 142, 0.05);
}

.btn-glass-glow:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(242, 206, 142, 0.4);
}

.btn-glass-glow i {
    font-size: 1.1rem;
    transition: transform 0.4s ease;
}

.btn-glass-glow:hover i {
    transform: translateX(6px);
}