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

body {
    font-family: 'Montserrat', sans-serif;
    color: white;
    background-color: #050505;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

html { scroll-behavior: smooth; }

#fixed-background {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-color: #050505;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(112,0,255,0.2) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(112,0,255,0.15) 0%, transparent 40%);
}

nav {
    position: fixed;
    top: 0; 
    width: 100%;
    padding: 20px 5%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s ease;
}

nav.scrolled { 
    padding: 15px 5%; 
    background: rgba(5, 5, 5, 0.95); 
}

.Logo { width: 27%; }

.nav-center { 
    display: flex; 
    gap: 40px; 
    justify-self: center; 
}

.nav-center a { 
    color: white; 
    text-decoration: none; 
    font-size: 1.1rem; 
    font-weight: bold; 
    text-transform: uppercase; 
    transition: 0.3s; 
}

.nav-center a:hover, .nav-center a.active-link { 
    color: #7000ff; 
}

.services-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 100px 5% 60px 5%; 
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.surtitre { 
    color: #C084FC; 
    font-weight: 700; 
    letter-spacing: 3px; 
    font-size: 2.5rem;
    margin-top: 30px;
    margin-bottom: 10px; 
    display: block; 
}

.page-header h1 {
    font-size: 3rem; 
    margin-bottom: 15px; 
    text-transform: uppercase; 
    color: white;
}

.intro-text {
    font-size: 1.5rem; 
    color: #ccc; 
    max-width: 1250px; 
    margin: 0 auto; 
    line-height: 1.6;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover { 
    border-color: rgba(112, 0, 255, 0.3); 
    transform: translateY(-5px); 
}

.number-bg {
    position: absolute; 
    top: -20px; 
    right: -10px; 
    font-size: 120px;
    font-weight: 900; 
    font-family: 'Nunito', sans-serif;
    color: rgba(255, 255, 255, 0.03); 
    z-index: 0; 
    pointer-events: none; 
    line-height: 1;
}

.card-content { position: relative; z-index: 1; }

.icon-header {
    font-size: 22px; 
    color: #C084FC; 
    margin-bottom: 20px;
    display: inline-block; 
    background: rgba(112, 0, 255, 0.1);
    padding: 15px; 
    border-radius: 12px;
}

.card h3 { 
    font-weight: 700; 
    margin: 0 0 15px 0; 
    font-size: 1.3rem; 
}

.card p { 
    font-size: 0.95rem; 
    line-height: 1.6; 
    color: #CCCCCC; 
    margin-bottom: 15px; 
}

.clean-link {
    color: inherit;
    text-decoration: underline;
    transition: 0.3s;
}
.clean-link:hover {
    color: orange;
}

.highlight-box {
    background: rgba(112, 0, 255, 0.08); 
    border-left: 3px solid #7000ff;
    padding: 15px; 
    margin-top: 20px; 
    border-radius: 0 8px 8px 0;
    transition: 0.4s ease;
}

.highlight-box.hover-only{
    opacity: 0;
    transform: translateY(10px);
    margin-top: auto;
}

.price-card:hover .highlight-box.hover-only{
    opacity: 1;
    transform: translateY(0);
}
.highlight-title { 
    color: #fff; 
    font-weight: 600; 
    font-size: 0.9rem; 
    display: block; 
    margin-bottom: 5px; 
}

.highlight-text { 
    color: #C084FC; 
    font-size: 0.85rem; 
    line-height: 1.4; 
}

.section-title { 
    text-align: center; 
    font-size: 2rem; 
    margin-bottom: 40px; 
    margin-top: 20px; 
    text-transform: uppercase;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

.price-card {
    background: #0f0f0f;
    backdrop-filter: blur(20px);
    border: 1px solid #222;
    border-radius: 20px; 
    padding: 30px;
    text-align: left; 
    position: relative;
    display: flex; 
    flex-direction: column;
    transition: 0.3s;
}

.price-card:hover { 
    border-color: rgba(112, 0, 255, 0.3); 
    transform: translateY(-5px); 
}

.price-card.featured {
    border-color: #e50914;
    background: linear-gradient(145deg, #0f0f0f 0%, #2e0b0b 100%);
    transform: scale(1.05); 
    z-index: 10;
}

.price-card.featured:hover{
    border-color: #ff333d;
    transform: scale(1.05) translateY(-5px);
}

.price-title { 
    font-size: 1.1rem; 
    font-weight: 700; 
    color: #fff; 
    margin-bottom: 5px; 
    text-transform: uppercase; 
}

.price-desc { 
    font-size: 0.85rem; 
    color: #888; 
    margin-bottom: 20px; 
    height: 35px; 
    line-height: 1.4; 
}

.price-tag { 
    font-size: 1.5rem; 
    font-weight: 800; 
    color: #fff; 
    margin-bottom: 5px; 
}

.price-tag span { 
    font-size: 0.85rem; 
    font-weight: 400; 
    color: #888; 
    display: block; 
}

.feature-list { list-style: none; 
    margin: 20px 0 30px 0; 
    flex-grow: 1; 
    padding: 0; 
}

.feature-list li {
    font-size: 0.9rem; 
    color: #ccc; 
    margin-bottom: 12px;
    padding-left: 20px; 
    position: relative;
}

.feature-list li::before { 
    content: '✓'; 
    color: #7000ff; 
    position: absolute; 
    left: 0; 
    font-weight: bold; 
}

.btn-price {
    display: block; 
    width: 100%; 
    padding: 12px;
    background: transparent; 
    border: 1px solid #444; 
    color: white;
    text-align: center; 
    border-radius: 8px; 
    text-decoration: none;
    font-size: 0.9rem; 
    transition: 0.3s;
    margin-top: auto; 
    font-weight: 600;
}

.featured .btn-price { 
    background: blue;
    border-color: blue; 
}

.btn-price:hover { 
    background: #fff;
    color: #000;
    border-color: #fff; 
}

.faq-container { 
    max-width: 800px; 
    margin: 0 auto; 
    margin-bottom: 60px; 
}

.faq-item { 
    border-bottom: 1px solid #222; 
    padding: 20px 0; 
}

.faq-question { 
    font-weight: 600; 
    color: #fff; 
    margin-bottom: 10px; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

.faq-question i { 
    color: #7000ff; 
    font-size: 0.8rem; 
}

.faq-answer { 
    color: #999; 
    font-size: 0.95rem; 
    line-height: 1.6; 
    padding-left: 20px; 
}

.tech-stack { 
    text-align: center; 
    margin-top: 40px; 
    opacity: 0.4; 
}

.tech-icons { 
    display: flex; 
    justify-content: center; 
    gap: 30px; 
    font-size: 2rem; 
    margin-top: 20px; 
}

footer {
    width: 100%; 
    padding: 30px 5%; 
    background: rgba(5, 5, 5, 0.8);
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex; 
    justify-content: center; 
    align-items: center;
    gap: 300px; 
    font-size: 0.9rem; 
    color: #666; 
    flex-wrap: wrap;
}

.footer-links { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}

.footer-links a { 
    color: #666; 
    text-decoration: none; 
    transition: 0.3s; 
    display: flex; 
    align-items: center; 
    font-size: 0.9rem; 
    line-height: 1; 
}

.footer-links a:hover { 
    color: white; 
}

.footer-links i { 
    font-size: 1.2rem; 
    display: block; 
}

.modal-overlay {
    position: fixed;
    top: 0; left: 0; 
    width: 100vw; height: 100vh;
    background-color: rgba(0, 0, 0, 0.85); 
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none; 
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-card {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2); 
    border-radius: 25px;
    padding: 40px; 
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 0 60px rgba(112, 0, 255, 0.27);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex; 
    flex-direction: column;
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    background: transparent;
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}

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

.modal-header { 
    text-align: center; 
    margin-bottom: 35px; 
}

.modal-header h3 { 
    font-size: 1.4rem; 
    margin-bottom: 10px; 
    color: white; 
    font-weight: 800;
    text-transform: uppercase; 
    letter-spacing: 1px;
}

.modal-header p { 
    color: #3b82f6;
    font-size: 0.95rem; 
    margin: 0; 
}

.step-item { 
    display: flex; 
    gap: 20px; 
    margin-bottom: 25px; 
    align-items: flex-start; 
} 

.step-icon {
    width: 35px; height: 35px;
    background: #444;
    color: white; 
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; 
    font-family: 'Nunito', sans-serif;
    flex-shrink: 0;
    margin-top: -2px;
}

.step-text h4 { 
    color: white; 
    margin: 0 0 5px 0; 
    font-size: 1rem; 
    font-weight: 700; 
}

.step-text p { 
    color: #888; 
    font-size: 0.9rem; 
    margin: 0; 
    line-height: 1.5; 
}

.modal-cta {
    background: #5b21b6;
    border: 0.5px solid white; 
    color: white;
    margin-top: 20px;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: block;
    width: 100%;
}

.modal-cta:hover {
    background: #4c1d95;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(91, 33, 182, 0.4);
}

@media (max-width: 900px) {
    nav { 
        grid-template-columns: 1fr; 
        gap: 20px; 
        justify-items: center; 
        position: relative; 
        background: #050505; 
    }

    .nav-center { 
        flex-direction: column; 
        gap: 15px; 
        text-align: center; 
    }

    .process-grid, .pricing-grid { 
        grid-template-columns: 1fr; 
    }

    .price-card.featured { 
        transform: scale(1); 
    }

    footer { 
        flex-direction: column;
        gap: 15px; 
    }
}

.mobile-page-title, 
.burger-icon, 
#mobile-menu-overlay {
    display: none; 
}

@media (max-width: 1024px) {
    
    nav {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 15px 5%;
    }

    .desktop-only { display: none !important; }

    .mobile-page-title {
        display: block;
        color: #7000ff; 
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 1.1rem;
        letter-spacing: 2px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        text-transform: uppercase;
        white-space: nowrap;
    }

    .burger-icon {
        display: block;
        font-size: 1.5rem;
        color: white;
        cursor: pointer;
        padding: 10px;
    }

    #mobile-menu-overlay {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0;
        width: 100vw; height: 100vh;
        background-color: #050505;
        z-index: 2000;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        opacity: 0;
    }

    #mobile-menu-overlay.active {
        transform: translateX(0);
        opacity: 1;
    }

    .mobile-menu-header {
        display: flex; justify-content: space-between; align-items: center;
        padding: 25px 5%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .mobile-menu-header .logo-text { font-weight: 800; color: #7000ff; letter-spacing: 2px; }
    .close-btn { font-size: 2rem; color: white; cursor: pointer; }

    .mobile-links {
        flex: 1; display: flex; flex-direction: column;
        justify-content: center; align-items: center; gap: 35px;
    }
    .mobile-links a {
        font-size: 1.8rem; color: white; text-decoration: none;
        font-weight: 700; text-transform: uppercase; transition: 0.3s;
    }
    .mobile-links a:hover { color: #7000ff; }

    @media (min-width: 700px) {
        .mobile-page-title { font-size: 1.6rem; }
        .mobile-links a { font-size: 2.5rem; }
        .burger-icon { font-size: 2rem; }
    }
}